@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #B48F56;
  --gold-light: #D4B87A;
  --gold-dark: #8B6D3F;
  --navy: #283680;
  --navy-deep: #0F1A3E;
  --cream: #F5F2ED;
  --sand: #EDE8E0;
  --white: #FFFFFF;
  --dark: #1A1F2E;
  --text: #3A3F50;
  --text-light: #7A7F90;
  --border-color: #E0D9CE;
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ========== UTILITY ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media(min-width:768px) { .container { padding: 0 64px; } }

.section-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.section-label::before {
  content: '';
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  color: var(--dark);
}
.section-title span { font-style: italic; color: var(--gold); }

/* ========== REVEAL ANIMATION ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
@media(min-width:768px) { .navbar { padding: 20px 64px; } }

.navbar.scrolled {
  background: rgba(15, 26, 62, 0.95);
  backdrop-filter: blur(10px);
  padding-top: 12px;
  padding-bottom: 12px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.navbar__logo { height: 40px; filter: brightness(0) invert(1); }
@media(min-width:768px) { .navbar__logo { height: 52px; } }

.navbar__links { display: none; gap: 40px; }
@media(min-width:1024px) { .navbar__links { display: flex; } }

.navbar__links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
  position: relative;
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.navbar__links a:hover { color: var(--gold); }
.navbar__links a:hover::after { width: 100%; }

.navbar__cta {
  display: none;
  background: var(--gold);
  color: var(--white);
  padding: 12px 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s, box-shadow 0.3s;
}
@media(min-width:768px) { .navbar__cta { display: inline-block; } }
.navbar__cta:hover {
  background: var(--gold-dark);
  box-shadow: 0 8px 30px -5px rgba(180,143,86,0.4);
}

.defaultbutton {
  display: none;
  background: var(--gold);
  color: var(--white);
  padding: 12px 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s, box-shadow 0.3s;
}
@media(min-width:0px) { .defaultbutton { display: inline-block; } }
.defaultbutton:hover {
  background: var(--gold-dark);
  box-shadow: 0 8px 30px -5px rgba(180,143,86,0.4);
}

.navbar__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
@media(min-width:1024px) { .navbar__hamburger { display: none; } }
.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.navbar__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy-deep);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero__slide.active { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,26,62,0.7) 0%, rgba(15,26,62,0.35) 50%, rgba(15,26,62,0.8) 100%);
}

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 24px 80px;
}
@media(min-width:768px) { .hero__content { padding: 0 64px 100px; } }

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--white);
  max-width: 800px;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}
.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  transition: border-color 0.3s, background 0.3s;
}
.hero__btn:hover { border-color: var(--gold); background: rgba(180,143,86,0.1); }
.hero__btn svg { transition: transform 0.3s; }
.hero__btn:hover svg { transform: translateX(4px); }

.hero__location {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: none;
}
@media(min-width:768px) { .hero__location { display: inline; } }

/* Slide indicators */
.hero__indicators {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media(min-width:768px) { .hero__indicators { right: 64px; } }

.hero__indicator {
  width: 2px;
  height: 16px;
  background: rgba(255,255,255,0.2);
  transition: height 0.5s, background 0.5s;
  cursor: pointer;
  border: none;
}
.hero__indicator.active { height: 40px; background: var(--gold); }

.hero__counter {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.15em;
  margin-top: 8px;
}

.hero__gold-line {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180,143,86,0.3), transparent);
  z-index: 20;
}

/* ========== ABOUT ========== */
.about {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
}
@media(min-width:1024px) { .about { grid-template-columns: 1fr 1fr; } }

.about__image { position: relative; overflow: hidden; min-height: 400px; }
.about__image img { width: 100%; height: 100%; object-fit: cover; }

.about__badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 20px;
}
.about__badge p:first-child {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}
.about__badge p:last-child { font-size: 9px; color: var(--text-light); }

.about__content {
  display: flex;
  align-items: center;
  background: var(--white);
  padding: 64px 24px;
}
@media(min-width:768px) { .about__content { padding: 64px; } }
@media(min-width:1024px) { .about__content { padding: 0 80px; } }

.about__inner { max-width: 480px; }

.about__text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 40px;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--border-color);
  gap: 0;
}

.about__stat {
  min-height: 112px;
  padding: 28px 24px 16px 0;
  border-right: 1px solid var(--border-color);
}
.about__stat:nth-child(2n) {
  padding-left: 24px;
  padding-right: 0;
  border-right: none;
}
.about__stat:nth-child(n + 3) {
  border-top: 1px solid var(--border-color);
}
.about__stat:nth-child(3) {
  padding-left: 0;
}
.about__stat:nth-child(4) {
  padding-left: 24px;
}

.about__stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.15;
  white-space: nowrap;
}
.about__stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 8px;
  line-height: 1.5;
}

/* ========== HIGHLIGHTS ========== */
.highlights__banner {
  position: relative;
  height: 60vh;
  overflow: hidden;
}
@media(min-width:768px) { .highlights__banner { height: 70vh; } }
.highlights__banner img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.highlights__banner.visible img { transform: scale(1.05); }

.highlights__banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,26,62,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.highlights__banner-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.highlights__banner-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 500;
  color: var(--white);
  max-width: 700px;
  line-height: 1.1;
}
.highlights__banner-title em { font-style: italic; }

.highlights__row { display: grid; grid-template-columns: 1fr; }
@media(min-width:768px) { .highlights__row { grid-template-columns: 1fr 1fr; } }

.highlights__text-block {
  padding: 64px 24px;
  display: flex;
  align-items: center;
}
@media(min-width:768px) { .highlights__text-block { padding: 80px 64px; } }

.highlights__text-block--navy { background: var(--navy); }
.highlights__text-block--navy .section-label { color: var(--gold-light); }
.highlights__text-block--navy .section-title { color: var(--white); }
.highlights__text-block--navy .section-title span { color: var(--gold-light); }
.highlights__text-block--navy p { color: rgba(255,255,255,0.55); }

.highlights__text-inner { max-width: 440px; }
.highlights__text-inner .section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 24px; }
.highlights__text-inner p { font-size: 14px; line-height: 1.9; color: var(--text-light); }

.highlights__img { overflow: hidden; min-height: 400px; }
.highlights__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.highlights__img:hover img { transform: scale(1.03); }

.highlights__row--reverse .highlights__img { order: 2; }
@media(min-width:768px) { .highlights__row--reverse .highlights__img { order: -1; } }

/* ========== NEIGHBOURHOOD ========== */
.neighbourhood { padding: 96px 0; background: var(--sand); }
@media(min-width:768px) { .neighbourhood { padding: 128px 0; } }

.neighbourhood .section-title { font-size: clamp(2rem, 4vw, 3rem); }

.neighbourhood__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 48px;
}
@media(min-width:640px) { .neighbourhood__grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px) { .neighbourhood__grid { grid-template-columns: repeat(4, 1fr); } }

.neighbourhood__card {
  background: var(--white);
  padding: 32px;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  transition: transform 0.4s, box-shadow 0.4s;
}
.neighbourhood__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -15px rgba(40,54,128,0.12);
}

.neighbourhood__card-icon { font-size: 24px; margin-bottom: 20px; }
.neighbourhood__card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
  transition: color 0.3s;
}
.neighbourhood__card:hover .neighbourhood__card-title { color: var(--gold); }

.neighbourhood__card li {
  font-size: 13px;
  color: var(--text-light);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.neighbourhood__card li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  flex-shrink: 0;
}

/* ========== SPECIFICATIONS ========== */
.specifications {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--navy), var(--navy-deep));
}
@media(min-width:768px) { .specifications { padding: 128px 0; } }

.specifications .section-label { color: var(--gold-light); }
.specifications .section-label::before { background: linear-gradient(90deg, transparent, var(--gold-light), transparent); }
.specifications .section-title { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }

.specs-list { margin-top: 48px; max-width: 800px; }

.spec-item { border-bottom: 1px solid rgba(255,255,255,0.08); }

.spec-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  font-family: inherit;
}
.spec-header:hover .spec-title { color: var(--gold); }

.spec-number {
  font-size: 10px;
  color: rgba(180,143,86,0.4);
  letter-spacing: 0.15em;
  margin-right: 16px;
  min-width: 24px;
}

.spec-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  transition: color 0.3s;
  flex: 1;
}
@media(min-width:768px) { .spec-title { font-size: 20px; } }

.spec-toggle {
  color: var(--gold);
  font-size: 20px;
  transition: transform 0.3s;
  width: 24px;
  text-align: center;
}
.spec-item.open .spec-toggle { transform: rotate(45deg); }

.spec-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.spec-item.open .spec-body { max-height: 200px; padding-bottom: 20px; }

.spec-body p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.45);
  padding-left: 40px;
}

.specifications__note {
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  font-style: italic;
  margin-top: 40px;
  padding-left: 40px;
}

/* ========== CONTACT ========== */
.contact { padding: 96px 0; background: var(--white); }
@media(min-width:768px) { .contact { padding: 128px 0; } }

.contact .section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 32px; }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media(min-width:1024px) { .contact__grid { grid-template-columns: 2fr 3fr; gap: 80px; } }

.contact__info-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact__info-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact__map {
  aspect-ratio: 4/3;
  border: 1px solid var(--border-color);
  overflow: hidden;
  margin-top: 16px;
}
.contact__map iframe { width: 100%; height: 100%; border: 0; }

.contact__form-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 32px;
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
@media(min-width:640px) { .contact__form-row { grid-template-columns: 1fr 1fr; } }

.form-field { position: relative; margin-bottom: 24px; }

.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  outline: none;
  transition: border-color 0.3s;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(122,127,144,0.5); }
.form-field input:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field textarea { resize: none; }

.form-error {
  font-size: 12px;
  color: #E04040;
  margin-top: 4px;
  display: none;
}
.form-error.show { display: block; }

.contact__submit {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--white);
  padding: 16px 48px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.contact__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px -5px rgba(180,143,86,0.4);
}

.contact__success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.contact__success.show { display: flex; }
.contact__success-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.contact__success h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 8px;
}
.contact__success p { font-size: 14px; color: var(--text-light); max-width: 360px; }

/* ========== FOOTER ========== */
.footer { background: var(--navy); }

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 64px 24px;
  align-items: center;
}
@media(min-width:768px) {
  .footer__inner { grid-template-columns: 1fr auto 1fr; padding: 64px; }
}

.footer__logo { height: 44px; filter: brightness(0) invert(1); }
.footer__tagline {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.footer__links { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.footer__links a {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--gold); }

.footer__address {
  text-align: right;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
}
@media(min-width:768px) { .footer__bottom { padding: 20px 64px; } }
.footer__bottom p { font-size: 10px; color: rgba(255,255,255,0.2); }

/* ========== FLOATING CTA ========== */
.floating-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px -5px rgba(180,143,86,0.5);
  transition: transform 0.3s;
}
.floating-cta:hover { transform: scale(1.1); }
.floating-cta svg { width: 20px; height: 20px; }

/* ========== KEYFRAMES ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== HIGHLIGHTS CAROUSEL ========== */
.highlights-carousel {
  position: relative;
  background: var(--navy-deep);
  padding: 80px 0;
  overflow: hidden;
}
@media(min-width:768px) { .highlights-carousel { padding: 100px 0; } }

.highlights-carousel__header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 24px;
}
.highlights-carousel__header .section-label {
  justify-content: center;
}
.highlights-carousel__header .section-title {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
}
.highlights-carousel__header .section-title span {
  color: var(--gold-light);
}

.highlights-carousel__track-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 24px;
}
@media(min-width:768px) { .highlights-carousel__track-wrapper { padding: 0 64px; } }

.highlights-carousel__track {
  display: flex;
  gap: 24px;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.highlights-carousel__card {
  flex: 0 0 calc(100% - 0px);
  min-width: 0;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.4s, box-shadow 0.4s;
}
@media(min-width:640px) {
  .highlights-carousel__card { flex: 0 0 calc(50% - 12px); }
}
@media(min-width:1024px) {
  .highlights-carousel__card { flex: 0 0 calc(33.333% - 16px); }
}

.highlights-carousel__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px -15px rgba(0,0,0,0.5);
}

.highlights-carousel__card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
@media(min-width:768px) { .highlights-carousel__card-img { height: 280px; } }

.highlights-carousel__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.highlights-carousel__card:hover .highlights-carousel__card-img img {
  transform: scale(1.05);
}

.highlights-carousel__card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(transparent, var(--navy));
  pointer-events: none;
}

.highlights-carousel__card-body {
  padding: 28px 28px 32px;
}

.highlights-carousel__card-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.highlights-carousel__card-tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.highlights-carousel__card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
}
@media(min-width:768px) { .highlights-carousel__card-title { font-size: 24px; } }

.highlights-carousel__card-title em {
  font-style: italic;
  color: var(--gold-light);
}

.highlights-carousel__card-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.4);
}

/* Carousel Controls */
.highlights-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.highlights-carousel__btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  background: transparent;
}
.highlights-carousel__btn:hover {
  border-color: var(--gold);
  background: rgba(180,143,86,0.1);
}
.highlights-carousel__btn svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255,255,255,0.6);
  transition: stroke 0.3s;
}
.highlights-carousel__btn:hover svg { stroke: var(--gold); }

.highlights-carousel__dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.highlights-carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  transition: background 0.4s, width 0.4s, border-radius 0.4s;
  padding: 0;
}
.highlights-carousel__dot.active {
  width: 24px;
  border-radius: 3px;
  background: var(--gold);
}

/* Progress bar */
.highlights-carousel__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  width: 0%;
  transition: width 2s linear;
}
.highlights-carousel__progress.running {
  width: 100%;
}