/* =============================================================
   GOLF LINKS CHANDIGARH
   Design Language: Castelfalfi / Base Design editorial system
   
   PALETTE
   ─ Background:  #f5f0e8  (warm ivory — Castelfalfi cream)
   ─ Surface:     #faf7f2  (lighter cream for cards/panels)
   ─ Text:        #1a1510  (warm near-black — not cold)
   ─ Text mid:    #5c5148  (warm mid-brown)
   ─ Text light:  #a8998a  (warm ash)
   ─ Accent:      #8b5e3c  (terracotta / Tuscan rust)
   ─ Accent light:#c4936a  (lighter terracotta)
   ─ Line:        rgba(26,21,16,0.10)
   ─ Dark panel:  #1a1510  (near-black for dark sections)

   TYPOGRAPHY
   ─ Display:  'Playfair Display' — high-contrast editorial serif
               (closest Google Font to Canela/custom Castelfalfi face)
   ─ Sans:     'Jost' — geometric, light weight for labels/nav/UI
   ─ Body:     'EB Garamond' — classical, refined for paragraphs
   ============================================================= */

/* ── GOOGLE FONTS imported in HTML ────────────────────────── */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  /* Colors */
  --cream:          #f5f0e8;
  --cream-light:    #faf7f2;
  --color-bg:       #f5f0e8;
  --color-text:     #1a1510;
  --color-text-mid: #5c5148;
  --color-text-light:#a8998a;
  --color-terra:    #8b5e3c;       /* terracotta — primary accent */
  --color-terra-lt: #c4936a;       /* lighter terracotta */
  --color-line:     rgba(26,21,16,0.10);
  --color-dark:     #1a1510;
  --color-white:    #ffffff;
  --color-off-white:#faf7f2;

  /* Legacy aliases kept for cinematic.js compatibility */
  --color-gold:       #8b5e3c;
  --color-gold-light: #c4936a;
  --color-green:      #3d4a3e;
  --color-green-mid:  #4e6150;

  /* Typography */
  --font-display: 'Playfair Display', serif;  /* high-contrast serif — display headings */
  --font-sans:    'Jost', sans-serif;          /* geometric sans — UI / labels / nav */
  --font-body:    'EB Garamond', serif;        /* classical body text */
  --font-serif:   'Playfair Display', serif;   /* alias */

  /* Spacing */
  --section-pad:  clamp(100px, 14vw, 200px);
  --container:    1320px;

  /* Easing */
  --ease-luxury:  cubic-bezier(0.76, 0, 0.24, 1);
  --ease-soft:    cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; /* prevent horizontal scroll without creating BFC on body */
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
}

body.loading { overflow: hidden; }

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a { text-decoration: none; color: inherit; }

/* ── SCROLLBAR ──────────────────────────────────────────────── */
/* Ultra-thin, barely-there scrollbar — doesn't look like a stray line */
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(139,94,60,0.25); /* very muted terracotta */
  border-radius: 2px;
  transition: background 0.3s ease;
}
::-webkit-scrollbar-thumb:hover { background: rgba(139,94,60,0.55); }
/* Firefox */
* { scrollbar-width: thin; scrollbar-color: rgba(139,94,60,0.25) transparent; }

/* ── TYPOGRAPHY SYSTEM ─────────────────────────────────────── */

/*
 * CASTELFALFI HEADING SYSTEM
 * 
 * Single-font editorial: Playfair Display (high-contrast, thick/thin strokes)
 * Line 1: small-caps or spaced uppercase sans (Jost 200) — label/eyebrow
 * Line 2: Large italic Playfair — the cinematic "hero word"
 * 
 * Pure editorial — NO gradient, NO mixed colours on same heading
 */

.heading-sans {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--color-text);
  font-size: clamp(0.72rem, 1.05vw, 0.92rem);
}

.heading-serif {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--color-text);
}

/* Section heading — stacked pair */
.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.6em;
  margin-bottom: clamp(32px, 4vw, 60px);
}

.section-heading .heading-sans {
  font-size: clamp(0.72rem, 1.05vw, 0.92rem);
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--color-text);
}

.section-heading .heading-serif {
  font-size: clamp(2.8rem, 6vw, 6.5rem);
  font-weight: 400;
  line-height: 1.0;
}

/* Eyebrow — small spaced uppercase label above heading */
.section-eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-terra);
  display: block;
  margin-bottom: clamp(20px, 2.5vw, 36px);
}

/* Body paragraph */
.section-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 2.0;
  color: var(--color-text);
  letter-spacing: 0.01em;
  max-width: 580px;
  margin-bottom: clamp(24px, 2.5vw, 40px);
  opacity: 0.85;
}

.section-body--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ── REVEAL ANIMATIONS ──────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity  1s var(--ease-out),
    transform 1s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── CINEMATIC SECTION BASE ─────────────────────────────────── */
section, .about, .invest, .weddings, .discover {
  -webkit-transform-style: flat;
  transform-style: flat;
}

/* ── TEXT LINK WITH ARROW (Castelfalfi CTA style) ──────────── */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-line);
  padding-bottom: 4px;
  transition: border-color 0.4s ease, color 0.4s ease, gap 0.4s ease;
}
.link-arrow:hover {
  color: var(--color-terra);
  border-color: var(--color-terra);
  gap: 16px;
}
.link-arrow svg { flex-shrink: 0; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-text);
  padding: 16px 44px;
  border: 1px solid var(--color-text);
  transition: background 0.5s var(--ease-luxury), color 0.5s var(--ease-luxury), gap 0.3s ease;
  cursor: pointer;
}
.btn-primary:hover {
  background: transparent;
  color: var(--color-text);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text);
  background: transparent;
  padding: 14px 36px;
  border: 1px solid var(--color-line);
  transition: border-color 0.4s ease, background 0.4s ease, color 0.4s ease;
  cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--color-text);
  background: var(--color-text);
  color: var(--color-white);
}

/* ── SECONDARY BUTTON (outline variant — pairs with btn-primary) ── */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text);
  background: transparent;
  padding: 15px 40px;
  border: 1px solid rgba(26,21,16,0.35);
  transition: border-color 0.4s ease, background 0.4s ease, color 0.4s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: var(--color-text);
  background: var(--color-text);
  color: var(--color-white);
}

/* btn-secondary on a dark background (inside dark sections) */
.golf-academy .btn-secondary,
[class*="dark"] .btn-secondary,
[style*="#1a1510"] .btn-secondary {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.28);
}
.golf-academy .btn-secondary:hover,
[class*="dark"] .btn-secondary:hover,
[style*="#1a1510"] .btn-secondary:hover {
  border-color: var(--color-terra);
  background: var(--color-terra);
  color: var(--color-white);
}

/* ── COMING SOON TOAST ──────────────────────────────────────── */
.coming-soon-toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--color-text);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 32px;
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  white-space: nowrap;
}
.coming-soon-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════════════════════════════════════ */
.announce-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300; /* below nav */
  background: #2a3d2e;
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              opacity  0.45s ease;
  will-change: transform;
}

.announce-bar.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.announce-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 48px;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}

/* Animated pulse dot */
.announce-bar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c4936a;
  flex-shrink: 0;
  position: relative;
}
.announce-bar__dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(196,147,106,0.5);
  animation: announcePulse 2.2s ease-in-out infinite;
}
@keyframes announcePulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%       { transform: scale(1.9); opacity: 0; }
}

.announce-bar__text {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(220, 210, 185, 0.92);
  text-align: center;
  line-height: 1.5;
}

.announce-bar__close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(220,210,185,0.4);
  padding: 6px;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
  line-height: 0;
}
.announce-bar__close:hover { color: rgba(220,210,185,0.9); }

/* Push nav + page content down when bar is visible */
body.has-announce-bar .nav {
  top: var(--announce-h, 37px);
}
body.has-announce-bar {
  padding-top: var(--announce-h, 37px);
}

/* ═══════════════════════════════════════════════════════════
   LOADING SCREEN
═══════════════════════════════════════════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s var(--ease-luxury), transform 0.8s var(--ease-luxury);
}
.loader.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.03);
}

.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.loader__logo-wrap {
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.88);
  animation: logoReveal 1s var(--ease-luxury) 0.4s forwards;
}

.loader__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes logoReveal { to { opacity: 1; transform: scale(1); } }

.loader__wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-luxury) 1.2s forwards;
}

.loader__wordmark-line1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 2.9rem;
  letter-spacing: 0.02em;
  color: var(--color-text);
  line-height: 1;
  text-align: center;
  display: block;
}

.loader__wordmark-line2 {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 0.72rem;
  letter-spacing: 0.5em;
  padding-right: 0.5em;
  text-transform: uppercase;
  color: var(--color-text-light);
  line-height: 2;
  display: block;
  text-align: center;
}

.loader__progress {
  width: 130px;
  height: 1px;
  background: var(--color-line);
  margin-top: 36px;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 0.3s ease 2s forwards;
}

.loader__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--color-terra);
  animation: loadBar 1.8s var(--ease-luxury) 1.5s forwards;
}

@keyframes loadBar  { to { width: 100%; } }
@keyframes fadeIn   { to { opacity: 1; } }
@keyframes fadeUp   { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION — Castelfalfi style
   Transparent over hero. Centered logo. Nav items left+right.
   On scroll: cream background appears.
═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 400;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 28px clamp(24px, 5vw, 64px);
  transition: padding 0.5s ease, background 0.5s ease, box-shadow 0.5s ease;
}

.nav.is-scrolled {
  padding: 16px clamp(24px, 5vw, 64px);
  background: rgba(245, 240, 232, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: none;
}

/* Left nav items */
.nav__left {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}

/* Right nav items */
.nav__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(24px, 3vw, 48px);
}

/* Nav link style */
.nav__link {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text);
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--color-terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-luxury);
}

.nav__link:hover { color: var(--color-terra); }
.nav__link:hover::after { transform: scaleX(1); }

/* nav--on-video: white text over dark video */
.nav--on-video .nav__link,
.nav--on-video .nav__link--drop,
.nav--on-video .nav__logo-wordmark,
.nav--on-video .nav__explore-label {
  color: rgba(255,255,255,0.92);
}
.nav--on-video .nav__logo-img { filter: brightness(0) invert(1); }
.nav--on-video .nav__logo-sans { color: rgba(255,255,255,0.95); }
.nav--on-video .nav__logo-sub  { color: rgba(255,255,255,0.55); }
.nav--on-video .nav__drop-arrow { color: rgba(255,255,255,0.7); }
.nav--on-video:not(.is-scrolled) {
  background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 60%, transparent 100%);
}

/* Scrolled — back to dark text on cream bg */
.nav--on-video.is-scrolled .nav__link,
.nav--on-video.is-scrolled .nav__link--drop,
.nav--on-video.is-scrolled .nav__logo-wordmark,
.nav--on-video.is-scrolled .nav__explore-label {
  color: var(--color-text);
}
.nav--on-video.is-scrolled .nav__logo-img  { filter: none; }

.nav--on-video.is-scrolled .nav__logo-sans { color: var(--color-text); }
.nav--on-video.is-scrolled .nav__logo-sub  { color: var(--color-text-light); }
.nav--on-video.is-scrolled .nav__drop-arrow { color: var(--color-text); }

/* Non-video sections — ensure nav links are always dark and readable */
.nav:not(.nav--on-video) .nav__link--drop {
  color: var(--color-text);
}
.nav.is-scrolled .nav__link--drop {
  color: var(--color-text);
}

/* ── Center logo block ── */
.nav__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  justify-self: center;
}

.nav__logo-img {
  width: auto;
  height: 68px;
  object-fit: contain;
  flex-shrink: 0;
  transition: height 0.3s ease;
}

.nav.is-scrolled .nav__logo-img { height: 62px; }

.nav__logo-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav__logo-sans {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--color-text);
  line-height: 1;
  transition: color 0.3s ease;
}

.nav__logo-sub {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 0.38rem;
  letter-spacing: 0.45em;
  padding-right: 0.45em;
  text-transform: uppercase;
  color: var(--color-text-light);
  line-height: 1.8;
  text-align: center;
  transition: color 0.3s ease;
}

/* ── Explore / hamburger (mobile) ── */
.nav__explore {
  display: none; /* hidden on desktop — mobile only */
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 0;
  color: var(--color-text);
  transition: color 0.3s ease;
  justify-self: end;
}

.nav__explore-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.nav__explore-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 20px;
}

.nav__explore-icon span {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}
.nav__explore-icon span:nth-child(1) { width: 20px; }
.nav__explore-icon span:nth-child(2) { width: 13px; }
.nav__explore-icon span:nth-child(3) { width: 20px; }

/* ── DROPDOWN NAV ITEMS ─────────────────────────────────── */
.nav__item {
  position: relative;
}

/* Dropdown trigger button — same look as nav__link */
.nav__link--drop {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text);
  white-space: nowrap;
  transition: color 0.3s ease;
  position: relative;
}

.nav__link--drop::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--color-terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-luxury);
}

.nav__link--drop:hover,
.nav__item--dropdown:hover .nav__link--drop { color: var(--color-terra); }
.nav__item--dropdown:hover .nav__link--drop::after { transform: scaleX(1); }

/* Accent style for Golf Links Chandigarh — colour only on hover/open */
.nav__item--dropdown:hover .nav__link--accent { color: var(--color-terra) !important; }
.nav__link--accent::after { background: var(--color-terra); }

/* Arrow chevron rotates on open */
.nav__drop-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  opacity: 0.6;
}
.nav__item--dropdown:hover .nav__drop-arrow,
.nav__item--open .nav__drop-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

/* ── DROPDOWN PANEL ─────────────────────────────────────── */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 200px;
  background: var(--cream);
  border: 1px solid var(--color-line);
  border-radius: 4px;
  box-shadow: 0 16px 48px rgba(26,21,16,0.12), 0 2px 8px rgba(26,21,16,0.06);
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 500;
}

/* Right-aligned dropdowns (Events, More) */
.nav__dropdown--right {
  left: auto;
  right: 0;
  transform: translateY(-6px);
}

/* Show on hover */
.nav__item--dropdown:hover .nav__dropdown,
.nav__item--open .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__item--dropdown:hover .nav__dropdown--right,
.nav__item--open .nav__dropdown--right {
  transform: translateY(0);
}

/* Small bridge so mouse can travel from button to dropdown */
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0; right: 0;
  height: 18px;
}

/* Dropdown items */
.nav__dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-text);
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  text-transform: none;
}

.nav__dropdown-item:hover {
  background: rgba(139,94,60,0.06);
  color: var(--color-terra);
  padding-left: 24px;
}

/* "→ Golf" tag on linked items */
.nav__dropdown-tag {
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  color: var(--color-terra);
  opacity: 0.7;
  margin-left: 12px;
}

/* Divider between groups */
.nav__dropdown-divider {
  height: 1px;
  background: var(--color-line);
  margin: 6px 0;
}

/* ── CTA "Enquire" pill button in right nav ─────────────────── */
.nav__link--cta {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--color-terra);
  border: none;
  padding: 8px 18px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
  /* Reset the underline pseudo-element inherited from .nav__link */
  position: static;
}

/* Kill the underline bar — not needed on a pill */
.nav__link--cta::after {
  display: none !important;
}

.nav__link--cta:hover {
  background: var(--color-dark);
  color: var(--cream);
}

/* On video (dark overlay) — keep pill readable */
.nav--on-video .nav__link--cta {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.3);
}
.nav--on-video .nav__link--cta:hover {
  background: var(--color-terra);
  color: var(--cream);
  border-color: var(--color-terra);
}

/* Once scrolled — back to solid terracotta pill */
.nav--on-video.is-scrolled .nav__link--cta {
  background: var(--color-terra);
  color: var(--cream);
  border: none;
}

/* nav--on-video: dropdown accent override — only on hover */
.nav--on-video .nav__item--dropdown:hover .nav__link--accent {
  color: rgba(255,200,150,0.95) !important;
}
.nav--on-video.is-scrolled .nav__item--dropdown:hover .nav__link--accent {
  color: var(--color-terra) !important;
}

/* ── FULLSCREEN MENU — ACCORDION GROUPS ─────────────────── */
.fs-menu__group {
  border-bottom: 1px solid var(--color-line);
  padding: 4px 0;
}

.fs-menu__link--parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 6px 0;
  color: var(--color-text);   /* dark text — clearly visible on cream */
}

.fs-menu__arrow {
  transition: transform 0.3s ease;
  opacity: 0.45;
  flex-shrink: 0;
  color: var(--color-text);   /* dark arrow on cream */
}

.fs-menu__group--open .fs-menu__arrow {
  transform: rotate(180deg);
  opacity: 1;
}

.fs-menu__link--accent {
  color: var(--color-terra) !important;   /* terracotta — clearly visible on cream */
}

/* Children — hidden by default, expand on open */
.fs-menu__children {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding-left: 16px;
  border-left: 2px solid rgba(139,94,60,0.2);  /* soft terracotta indent line */
  margin-left: 4px;
}

.fs-menu__group--open .fs-menu__children {
  max-height: 400px;
}

.fs-menu__child {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--color-text-mid);    /* clear dark text on cream background */
  padding: 11px 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
  border-bottom: 1px solid var(--color-line);
}

.fs-menu__child:last-child { border-bottom: none; }
.fs-menu__child:hover {
  color: var(--color-terra);
  padding-left: 6px;
}

/* Show mobile button, hide desktop links on small screens */
@media (max-width: 900px) {
  .nav {
    grid-template-columns: auto 1fr auto;
    padding: 20px clamp(20px, 4vw, 32px);
  }
  .nav__left, .nav__right { display: none; }
  .nav__logo { justify-self: start; grid-column: 2; justify-self: center; }
  .nav__explore { display: flex; grid-column: 3; }
}

/* ═══════════════════════════════════════════════════════════
   FULLSCREEN MENU OVERLAY
═══════════════════════════════════════════════════════════ */
.fs-menu {
  position: fixed;
  inset: 0;
  z-index: 600; /* above nav (400) and dropdown (500) */
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 8vh, 80px) clamp(40px, 10vw, 120px);
  /* Hide all content when closed — prevents border lines bleeding through */
  visibility: hidden;
}
.fs-menu.is-open {
  visibility: visible;
}

.fs-menu__bg {
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}

.fs-menu.is-open .fs-menu__bg { transform: scaleY(1); }

.fs-menu__close {
  position: absolute;
  top: 28px;
  right: clamp(24px, 5vw, 60px);
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease 0.5s;
  z-index: 1;
}
.fs-menu.is-open .fs-menu__close { opacity: 1; pointer-events: all; }
.fs-menu__close span {
  position: absolute;
  width: 26px;
  height: 1px;
  background: var(--color-text);   /* dark X on cream */
  transition: background 0.2s ease;
}
.fs-menu__close span:nth-child(1) { transform: rotate(45deg); }
.fs-menu__close span:nth-child(2) { transform: rotate(-45deg); }
.fs-menu__close:hover span { background: var(--color-terra); }

.fs-menu__logo {
  position: absolute;
  top: calc(var(--announce-h, 0px) + 18px);
  left: clamp(40px, 10vw, 120px);
  display: flex;
  align-items: center;
  gap: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.5s ease 0.4s, transform 0.5s ease 0.4s;
  z-index: 1;
}
/* Shift logo down when announce bar is visible */
body.has-announce-bar .fs-menu__logo {
  top: calc(var(--announce-h, 37px) + 18px);
}
.fs-menu.is-open .fs-menu__logo { opacity: 1; transform: translateY(0); }
.fs-menu__logo img { width: auto; height: 56px; object-fit: contain; }
/* Hide the old text lines — logo image contains the branding */
.fs-menu__logo-line1,
.fs-menu__logo-line2 {
  display: none;
}

.fs-menu__nav {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;                        /* groups have their own border — no extra gap */
  overflow-y: auto;              /* scroll if many items on small screen */
  max-height: calc(100vh - 240px);
  padding-right: 8px;            /* breathing room for scrollbar */
}

/* Castelfalfi-style large italic serif links */
.fs-menu__link {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 3.8rem);   /* reduced — was 2.8–7rem */
  color: var(--color-text);                /* dark text on cream background */
  text-decoration: none;
  line-height: 1.15;
  letter-spacing: -0.01em;
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition: color 0.3s ease;
}
.fs-menu.is-open .fs-menu__link {
  animation: menuLinkIn 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.fs-menu__link:hover { color: var(--color-terra); }
.fs-menu__link--dim {
  color: var(--color-text-light);           /* muted dark on cream */
  font-size: clamp(0.9rem, 1.8vw, 1.6rem);
  font-style: normal;
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: 0.2em;
}
.fs-menu__link--dim:hover { color: var(--color-terra); }

@keyframes menuLinkIn {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fs-menu__footer {
  position: absolute;
  bottom: clamp(32px, 6vh, 60px);
  left: clamp(40px, 10vw, 120px);
  right: clamp(40px, 10vw, 120px);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease 0.7s, transform 0.5s ease 0.7s;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--color-line);
  padding-top: 24px;
}
.fs-menu.is-open .fs-menu__footer { opacity: 1; transform: translateY(0); }

.fs-menu__cta {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-terra);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.fs-menu__cta:hover { opacity: 0.6; }

.fs-menu__address {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: var(--color-text-light);
  text-transform: uppercase;
}

/* Thin vertical line left edge */
.fs-menu::before {
  content: '';
  position: absolute;
  left: clamp(40px, 10vw, 120px);
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent 10%, var(--color-line) 40%, var(--color-line) 60%, transparent 90%);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s ease 0.3s;
}
.fs-menu.is-open::before { opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   SECTION 1 — SCROLL-SCRUBBED VIDEO HERO
   300vh sticky scroll container
═══════════════════════════════════════════════════════════ */
.video-hero {
  position: relative;
  width: 100%;
  height: 160vh;
  overflow: visible;
  background: #080604;
}

.video-hero__sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background: #080604;
}

.video-hero__wrap {
  position: absolute;
  inset: 0;
}

/* Scroll progress bar */
.video-hero__progress {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.10);
  z-index: 10;
}
.video-hero__progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--color-terra), var(--color-terra-lt), var(--color-terra));
  transition: width 0.3s ease-out;
  box-shadow: 0 0 8px rgba(139,94,60,0.5);
}

.video-hero__iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}

/* Bottom fade — deep black shadow into next section */
.video-hero__fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 320px;
  background: linear-gradient(to bottom, transparent 0%, rgba(8,6,4,0.55) 40%, rgba(8,6,4,0.92) 75%, #080604 100%);
  pointer-events: none;
  z-index: 3;
}

/* Scroll nudge */
.video-hero__scroll-nudge {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: videoNudgeFade 3s ease-in-out infinite;
  transition: opacity 0.5s ease;
}
.video-hero__scroll-line {
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.8));
  animation: videoNudgeLine 1.8s ease-in-out infinite;
}
.video-hero__scroll-label {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

@keyframes videoNudgeLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}
@keyframes videoNudgeFade {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

/* Video overlay text */
.video-hero__overlay-text {
  position: absolute;
  bottom: clamp(80px, 12vh, 160px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease 0.3s;
  white-space: nowrap;
}
.video-hero__overlay-text.is-visible { opacity: 1; }

.video-hero__overlay-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 10px;
}
.video-hero__overlay-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.8rem);
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.02em;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 2 — HERO TEXT
   Overlaps Section 1 like a card sliding up from below.
   position:sticky + translateY entrance + border-radius top
   creates the cinema card-peel effect on scroll.
═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--cream);
  padding: 140px 40px 100px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.8s ease;
  /* Card overlap effect */
  z-index: 10;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -32px 80px rgba(0,0,0,0.55), 0 -4px 20px rgba(0,0,0,0.35);
  margin-top: -28px; /* pulls it up to overlap the video bottom edge */
}

.hero.hero-animate { opacity: 1; }

/* Subtle radial warm center */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, #fdf9f3 0%, transparent 100%);
  pointer-events: none;
}

.hero__content {
  max-width: 720px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Eyebrow */
.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 200;
  letter-spacing: 0.42em;
  padding-right: 0.42em;
  text-transform: uppercase;
  color: var(--color-terra);
  margin-bottom: clamp(20px, 3vw, 36px);
  display: block;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease 0.1s, transform 0.8s ease 0.1s;
}
.hero.hero-animate .hero__eyebrow { opacity: 1; transform: translateY(0); }

/* ── Main heading ─── */
.hero__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(28px, 3.5vw, 48px);
  overflow: visible;
  gap: clamp(6px, 1vw, 10px);
}

/* "WHERE LUXURY Finds Its" — single line, full Playfair Display italic, all one voice */
.hero__heading-line1-wrap {
  overflow: hidden;
  padding-bottom: 0.12em;
}
.hero__heading-line1 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.8vw, 4.2rem);
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: var(--color-text-mid);
  display: block;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1s var(--ease-out) 0.3s, transform 1s var(--ease-out) 0.3s;
}
/* "Finds Its" — same font, warmer terracotta tint to mark the accent phrase */
.hero__heading-line1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-terra);
  letter-spacing: inherit;
}
.hero.hero-animate .hero__heading-line1 { opacity: 1; transform: translateY(0); }

/* "meets the Wilderness" — enormous italic Playfair Display */
.hero__heading-script-wrap {
  overflow: hidden;
  padding-bottom: 0.06em;
  position: relative;
}
.hero__heading .hero__heading-script {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(3.15rem, 8.4vw, 9.1rem);
  letter-spacing: -0.03em;
  line-height: 0.9;
  color: var(--color-text);
  display: block;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 1.1s var(--ease-out) 0.55s, transform 1.1s var(--ease-out) 0.55s;
}

/* Thin terracotta underline draws under the big word */
.hero__heading-script-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 1px;
  width: 0;
  background: linear-gradient(to right, var(--color-terra), transparent);
  transition: width 1.2s var(--ease-luxury) 1.3s;
}

.hero.hero-animate .hero__heading-script { opacity: 1; transform: translateY(0); }
.hero.hero-animate .hero__heading-script-wrap::after { width: 100%; }

/* ── Stats ── */
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: clamp(48px, 6vw, 72px);
  flex-wrap: nowrap;       /* force single row */
  width: 100%;
}

.hero__stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;                  /* equal width for each stat */
  padding: 0 clamp(16px, 2.5vw, 40px);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s var(--ease-out) calc(1.1s + var(--si,0s)), transform 0.9s var(--ease-out) calc(1.1s + var(--si,0s));
}
.hero__stat-item:nth-child(1) { --si: 0s; }
.hero__stat-item:nth-child(3) { --si: 0.15s; }
.hero__stat-item:nth-child(5) { --si: 0.3s; }
.hero.hero-animate .hero__stat-item { opacity: 1; transform: translateY(0); }

.hero__stat-number {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--color-text);
}

.hero__stat-plus,
.hero__stat-unit {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 300;
  font-size: 0.5em;
  color: var(--color-terra);
  vertical-align: super;
  margin-left: 1px;
  letter-spacing: 0.05em;
}

.hero__stat-label {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(0.55rem, 0.75vw, 0.68rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-mid);
  white-space: nowrap;
}

.hero__stat-divider {
  width: 1px;
  height: 0;
  background: var(--color-line);
  opacity: 0;
  flex-shrink: 0;           /* dividers don't flex */
  align-self: center;
  animation: growDivider 0.7s var(--ease-luxury) 2.2s forwards;
}
@keyframes growDivider { to { height: 44px; opacity: 1; } }

/* ── Scroll cue ── */
.hero__scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.58rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--color-text-mid);
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.9s var(--ease-out) 2.4s forwards;
  transition: color 0.3s ease;
  text-decoration: none;
}
.hero__scroll-cue:hover { color: var(--color-terra); }
.hero__scroll-cue svg { animation: bounceDown 2.2s ease-in-out infinite; opacity: 0.5; }
.hero__scroll-cue:hover svg { opacity: 1; }
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* (hero__heading-sans-accent removed — now inline inside hero__heading-line1) */

/* ── Supporting text block ── */
.hero__support {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 620px;
  width: 100%;
  margin: 0 auto clamp(32px, 4vw, 52px);
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.9s var(--ease-out) 1.8s forwards;
}

.hero__support-text {
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 1vw, 0.96rem);
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text-mid);
  text-align: center;
  letter-spacing: 0.01em;
  max-width: 520px;
}

.hero__tagline {
  font-family: var(--font-sans);
  font-size: clamp(0.55rem, 0.75vw, 0.65rem);
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--color-text-light);
  text-align: center;
  padding-left: 0.42em; /* optical compensation for tracking */
}

/* ── CTA Buttons ── */
.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 5vw, 64px);
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.9s var(--ease-out) 2.1s forwards;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease,
              transform 0.25s ease, box-shadow 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  padding: 14px 30px;
}

/* Primary — dark filled */
.hero__cta--primary {
  background: var(--color-dark);
  color: var(--cream);
  border: 1px solid var(--color-dark);
}
.hero__cta--primary svg {
  opacity: 0.7;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hero__cta--primary:hover {
  background: #2e2820;
  border-color: #2e2820;
  box-shadow: 0 8px 28px rgba(26,21,16,0.22);
  transform: translateY(-1px);
}
.hero__cta--primary:hover svg {
  transform: translateX(4px);
  opacity: 1;
}

/* Ghost — outline */
.hero__cta--ghost {
  background: transparent;
  color: var(--color-text-mid);
  border: 1px solid rgba(26,21,16,0.25);
}
.hero__cta--ghost:hover {
  background: rgba(26,21,16,0.05);
  color: var(--color-text);
  border-color: rgba(26,21,16,0.5);
  transform: translateY(-1px);
}

/* ── Hero after line ── */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--color-terra));
  opacity: 0;
  transition: opacity 1s var(--ease-luxury) 1.6s;
}
.hero.hero-animate::after { opacity: 0.4; }

/* Mobile */
@media (max-width: 768px) {
  /* Announcement bar mobile */
  .announce-bar__inner { padding: 9px 40px 9px 16px; }
  .announce-bar__text  { font-size: 0.65rem; }

  /* Hero heading mobile */
  .hero__heading-line1 {
    font-size: clamp(1.2rem, 5.5vw, 2.4rem);
    white-space: normal;
    text-align: center;
  }
  .hero__heading .hero__heading-script {
    font-size: clamp(2.5rem, 9vw, 5rem);
    white-space: normal;
  }
  /* Hero support text mobile */
  .hero__support { max-width: 90%; }
  .hero__support-text { font-size: 0.9rem; }
  /* CTA buttons mobile */
  .hero__ctas { flex-direction: column; align-items: center; gap: 10px; }
  .hero__cta  { width: 100%; max-width: 280px; justify-content: center; }
  /* Stats: stay on one line on mobile, shrink numbers */
  .hero__stats {
    flex-wrap: nowrap;
    width: 100%;
  }
  .hero__stat-item {
    padding: 0 clamp(8px, 2vw, 16px);
  }
  .hero__stat-number {
    font-size: clamp(1.4rem, 5vw, 2.2rem);
  }
  .hero__stat-label {
    font-size: clamp(0.42rem, 1.6vw, 0.58rem);
    letter-spacing: 0.14em;
    white-space: normal;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════════
   MARQUEE STRIP
═══════════════════════════════════════════════════════════ */
.marquee {
  overflow: hidden;
  width: 100%;
  padding: 18px 0;
  background: var(--color-dark);
  position: relative;
  cursor: default;
  user-select: none;
}

/* Forest green marquee variant (between hero and about) */
.marquee--forest {
  background: #2a3d2e;
  padding: 22px 0;
}
.marquee--forest .marquee__item {
  color: rgba(220, 210, 185, 0.92);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
}
.marquee--forest .marquee__item span {
  color: #c4936a;
}
.marquee--light {
  background: transparent;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: 16px 0;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  will-change: transform;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 36px;
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.marquee--light .marquee__item { color: var(--color-text-light); }
.marquee__item span {
  color: var(--color-terra);
  font-size: 1em;
  line-height: 1;
  display: inline-block;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT SECTION
   Castelfalfi: Centered, generous whitespace, large text
═══════════════════════════════════════════════════════════ */
.about {
  padding: var(--section-pad) clamp(32px, 8vw, 120px);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about__intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.about__intro .section-heading { align-items: center; }
.about__intro .section-body {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}

/* Large decorative watermark number */
.about__deco-number {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(12rem, 28vw, 32rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(139,94,60,0.05);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  white-space: nowrap;
  z-index: 0;
}

/* ═══════════════════════════════════════════════════════════
   SECTION RULE
═══════════════════════════════════════════════════════════ */
.section-rule {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--color-terra), transparent);
  margin: 0 auto;
  opacity: 0.35;
  transform: scaleY(0);
  transition: transform 1.2s var(--ease-luxury);
}
.section-rule.is-visible { transform: scaleY(1); }

/* ═══════════════════════════════════════════════════════════
   PARALLAX IMAGE STRIP
═══════════════════════════════════════════════════════════ */
.parallax-strip {
  position: relative;
  height: clamp(340px, 44vw, 580px);
  overflow: hidden;
  width: 100%;
}

.parallax-strip__img {
  position: absolute;
  top: -120px; bottom: -120px;
  left: 0; right: 0;
  background-image: url('../images/parallax-villa.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  will-change: transform;
  transform: translateY(0);
  filter: brightness(0.75);
}

/* Top and bottom cream fades */
.parallax-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    var(--cream) 0%,
    transparent 20%,
    transparent 80%,
    var(--cream) 100%
  );
}

/* Dark veil for text readability */
.parallax-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 12, 9, 0.55);
  pointer-events: none;
  z-index: 1;
}

/* Caption */
.parallax-strip__caption {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s var(--ease-luxury), transform 1.2s var(--ease-luxury);
}
.parallax-strip__caption.is-visible { opacity: 1; transform: translateY(0); }

.parallax-strip__caption-eyebrow {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: clamp(0.55rem, 0.85vw, 0.7rem);
  letter-spacing: 0.42em;
  padding-right: 0.42em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: block;
}

.parallax-strip__caption-line {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1.0;
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   INVESTMENT OPTIONS SECTION
   Castelfalfi: centered header, large cards below
═══════════════════════════════════════════════════════════ */
.invest {
  padding: clamp(40px, 5vw, 60px) clamp(32px, 7vw, 100px) var(--section-pad);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

/* Hairline top rule */
.invest::before {
  content: '';
  position: absolute;
  top: 0; left: clamp(32px,7vw,100px); right: clamp(32px,7vw,100px);
  height: 1px;
  background: var(--color-line);
}

/* Section watermark */
.section-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(8rem, 20vw, 22rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(139,94,60,0.04);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: -0.04em;
  z-index: 0;
}

.invest__header {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: clamp(64px, 8vw, 100px);
  position: relative;
  z-index: 2;
}
.invest__header .section-heading { align-items: center; }
.invest__header .section-body { max-width: 600px; margin-left: auto; margin-right: auto; }

/* Cards grid */
.invest__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  max-width: var(--container);
  margin: 0 auto;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* Individual card */
.invest-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  opacity: 0;
  transform: perspective(800px) translateY(80px) rotateX(8deg) scale(0.96);
  transition:
    opacity 1s var(--ease-out),
    transform 1s var(--ease-out);
  will-change: transform;
}

.invest-card.cinema-reveal,
.invest-card.reveal-up.is-visible {
  opacity: 1;
  transform: perspective(800px) translateY(0) rotateX(0) scale(1);
}

/* Photo */
.invest-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 28px;
  background: var(--color-text-light);
}

.invest-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85);
  transition: transform 1.4s var(--ease-out), filter 1.2s ease;
}

.invest__cards.in-view .invest-card__photo img {
  filter: grayscale(1) brightness(0.92);
}
.invest__cards.in-view .invest-card:hover .invest-card__photo img {
  filter: grayscale(0) saturate(1) brightness(1);
  transform: scale(1.06);
}

/* Photo tag */
.invest-card__photo-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  background: rgba(14,12,9,0.35);
  backdrop-filter: blur(8px);
  padding: 5px 12px 4px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}
.invest-card.cinema-reveal .invest-card__photo-tag { opacity: 1; transform: translateY(0); }

/* Tilt glare */
.tilt-glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  z-index: 5;
  transition: opacity 0.3s ease;
}

/* Card body */
.invest-card__body { padding: 0 2px; }

.invest-card__index {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 200;
  letter-spacing: 0.3em;
  color: var(--color-terra);
  display: block;
  margin-bottom: 10px;
}

.invest-card__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  gap: 0.02em;
}

.invest-card__title-sans {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(0.6rem, 0.85vw, 0.76rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text);
}

.invest-card__title-serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 2.8vw, 3rem);
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: 1.0;
}

.invest-card__desc {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 1vw, 1rem);
  line-height: 1.95;
  color: var(--color-text);
  opacity: 0.82;
  margin-bottom: 24px;
}

.invest-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text);
  border-bottom: 1px solid rgba(26,21,16,0.4);
  padding-bottom: 4px;
  transition: color 0.3s ease, border-color 0.3s ease, gap 0.3s ease;
}
.invest-card__link:hover {
  color: var(--color-terra);
  border-color: var(--color-terra);
  gap: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
  .invest__cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .invest__cards { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   LEADERSHIP NOTES SECTION
   Two editorial note cards — Director + Chairman/MD
   Each card: photo column + content column (mirrored on 2nd)
═══════════════════════════════════════════════════════════ */
.notes-section {
  padding: var(--section-pad) clamp(24px, 6vw, 100px) clamp(40px, 5vw, 60px);
  background: var(--cream);
  position: relative;
}

.notes-section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(56px, 7vw, 100px);
}

.notes-section__heading {
  align-items: center;
  margin-bottom: 0;
}

/* Stacked grid — one note below the other, full editorial width */
.notes-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(64px, 9vw, 120px);
  max-width: 1100px;
  margin: 0 auto;
}

/* ── INDIVIDUAL NOTE CARD ───────────────────────────────── */
.note-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  position: relative;
}

/* Alternate: content left, photo right */
.note-card--alt {
  grid-template-columns: 1fr 300px;
}

/* Subtle top hairline per card */
.note-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-line), transparent);
}

/* ── PHOTO COLUMN ───────────────────────────────────────── */
.note-card__photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: sticky;
  top: 120px; /* sticks while content scrolls */
}

.note-card__photo-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: #1a1510;
  box-shadow: 0 20px 60px rgba(26,21,16,0.18);
}

.note-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s var(--ease-luxury);
}
.note-card:hover .note-card__photo {
  transform: scale(1.04);
}

/* Subtle dark vignette overlay at bottom of photo */
.note-card__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,21,16,0.35) 0%,
    transparent 50%
  );
  pointer-events: none;
}

/* Identity block under photo */
.note-card__identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
  padding: 4px 0;
  border-top: 1px solid var(--color-line);
  width: 100%;
  padding-top: 16px;
}

.note-card__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.2;
}

.note-card__role {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-terra);
  margin-top: 4px;
}

.note-card__org {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

/* ── CONTENT COLUMN ─────────────────────────────────────── */
.note-card__content-col {
  padding-top: clamp(32px, 4vw, 56px);
}

.note-card__label-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.note-card__label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-terra);
  white-space: nowrap;
  flex-shrink: 0;
}

.note-card__deco-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(139,94,60,0.35), transparent);
}

.note-card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: clamp(24px, 3vw, 40px);
}

/* Quote paragraphs */
.note-card__quote {
  border-left: 2px solid rgba(139,94,60,0.25);
  padding-left: clamp(20px, 2.5vw, 32px);
  margin: 0 0 clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.note-card__quote p {
  font-family: var(--font-body);
  font-size: clamp(0.96rem, 1.1vw, 1.08rem);
  line-height: 1.95;
  color: var(--color-text);
  opacity: 0.82;
  letter-spacing: 0.01em;
}

/* Signature */
.note-card__sig {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.note-card__sig-line {
  width: 44px;
  height: 1px;
  background: var(--color-terra);
  opacity: 0.5;
}

.note-card__sig-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-text-mid);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .note-card,
  .note-card--alt {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* On mobile, always show photo on top */
  .note-card--alt .note-card__content-col { order: 2; }
  .note-card--alt .note-card__photo-col   { order: 1; }

  .note-card__photo-col {
    position: static;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }

  .note-card__photo-frame {
    width: 120px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .note-card__photo {
    object-position: center 15%;
  }

  .note-card__identity {
    align-items: flex-start;
    text-align: left;
    border-top: none;
    padding-top: 0;
    justify-content: center;
  }

  .note-card__content-col { padding-top: 0; }
  .note-card__title { font-size: clamp(1.35rem, 4.5vw, 2rem); }
  .note-card__quote p { font-size: 0.92rem; }
}

@media (max-width: 600px) {
  .notes-section { padding: clamp(60px, 10vw, 80px) 24px; }
  .notes-grid { gap: 52px; }
  .note-card__photo-col { flex-direction: column; align-items: center; }
  .note-card__photo-frame {
    width: 140px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
  }
  .note-card__identity { align-items: center; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   LEADERSHIP SLIDER
   3-slide horizontal carousel with avatar-tab navigation
═══════════════════════════════════════════════════════════ */

/* ── SLIDER SHELL ──────────────────────────────────────── */
.leadership-slider {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
}

/* Overflow-hidden viewport for the track */
.leadership-slider__viewport {
  overflow: hidden;
}

/* ── TRACK (3 slides side-by-side, shifted by JS) ──────── */
.leadership-slider__track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

/* ── SINGLE SLIDE ──────────────────────────────────────── */
.leadership-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  padding: 0 0 clamp(48px, 6vw, 80px);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease 0.15s, transform 0.5s ease 0.15s;
  pointer-events: none;
}

.leadership-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ── PHOTO COLUMN ──────────────────────────────────────── */
.leadership-slide__photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: sticky;
  top: 120px;
}

.leadership-slide__photo-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: var(--color-dark);
  box-shadow: 0 20px 60px rgba(26,21,16,0.18);
}

.leadership-slide__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s var(--ease-luxury);
}

.leadership-slide.is-active .leadership-slide__photo {
  transform: scale(1.02);
}

.leadership-slide__photo-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,21,16,0.35) 0%, transparent 55%);
  pointer-events: none;
}

.leadership-slide__identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid var(--color-line);
  width: 100%;
}

.leadership-slide__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.2;
}

.leadership-slide__role {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-terra);
  margin-top: 4px;
}

.leadership-slide__org {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

/* ── CONTENT COLUMN ────────────────────────────────────── */
.leadership-slide__content-col {
  padding-top: clamp(28px, 4vw, 48px);
}

.leadership-slide__label-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.leadership-slide__label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-terra);
  white-space: nowrap;
  flex-shrink: 0;
}

.leadership-slide__deco {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(139,94,60,0.35), transparent);
  display: block;
}

.leadership-slide__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: clamp(24px, 3vw, 40px);
}

.leadership-slide__quote {
  border-left: 2px solid rgba(139,94,60,0.25);
  padding-left: clamp(20px, 2.5vw, 32px);
  margin: 0 0 clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.leadership-slide__quote p {
  font-family: var(--font-body);
  font-size: clamp(0.93rem, 1.1vw, 1.06rem);
  line-height: 1.95;
  color: var(--color-text);
  opacity: 0.82;
  letter-spacing: 0.01em;
}

.leadership-slide__sig {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.leadership-slide__sig-bar {
  width: 44px;
  height: 1px;
  background: var(--color-terra);
  opacity: 0.5;
}

.leadership-slide__sig-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-text-mid);
}

/* ── NAV BAR (tabs + arrows) ───────────────────────────── */
.leadership-slider__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(20px, 3vw, 32px) 0 0;
  border-top: 1px solid var(--color-line);
  flex-wrap: wrap;
}

/* ── AVATAR TABS ───────────────────────────────────────── */
.leadership-slider__tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ls-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 8px 14px 8px 8px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, opacity 0.25s;
  opacity: 0.5;
}

.ls-tab:hover {
  opacity: 0.8;
  background: rgba(139,94,60,0.05);
}

.ls-tab--active {
  opacity: 1;
  border-color: var(--color-terra);
  background: rgba(139,94,60,0.06);
}

.ls-tab__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid transparent;
  transition: border-color 0.25s;
}

.ls-tab--active .ls-tab__avatar {
  border-color: var(--color-terra);
}

.ls-tab__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.ls-tab__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
}

.ls-tab__info strong {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.ls-tab__info span {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-terra);
}

/* ── ARROWS + COUNTER ──────────────────────────────────── */
.leadership-slider__arrows {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.ls-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-mid);
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}

.ls-arrow:hover {
  border-color: var(--color-terra);
  background: var(--color-terra);
  color: var(--cream);
}

.ls-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.ls-arrow:disabled:hover {
  border-color: var(--color-line);
  background: none;
  color: var(--color-text-mid);
}

.ls-counter {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--color-text-mid);
  min-width: 36px;
  text-align: center;
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 960px) {
  .leadership-slide {
    grid-template-columns: 220px 1fr;
    gap: clamp(28px, 4vw, 48px);
  }

  .leadership-slider__nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .leadership-slider__arrows {
    align-self: flex-end;
  }
}

@media (max-width: 700px) {
  .leadership-slide {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .leadership-slide__photo-col {
    position: static;
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
  }

  .leadership-slide__photo-frame {
    width: 110px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .leadership-slide__photo {
    object-position: center 15%;
  }

  .leadership-slide__identity {
    align-items: flex-start;
    text-align: left;
    border-top: none;
    padding-top: 0;
    justify-content: center;
  }

  .leadership-slide__content-col {
    padding-top: 0;
  }

  .leadership-slide__title {
    font-size: clamp(1.3rem, 5vw, 1.9rem);
  }

  .ls-tab__info {
    display: none; /* show only avatar on tiny screens */
  }

  .ls-tab {
    padding: 6px;
  }

  .ls-tab__avatar {
    width: 38px;
    height: 38px;
  }
}

/* ═══════════════════════════════════════════════════════════
   WEDDINGS & EVENTS
   Full split layout: image left (55%), text right (45%)
═══════════════════════════════════════════════════════════ */
.weddings {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: clamp(600px, 85vh, 960px);
  background: var(--cream);
  overflow: hidden;
}

.weddings__visual {
  position: relative;
  overflow: hidden;
  background: #1a1510;
  will-change: transform, opacity;
}

.weddings__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 1.6s var(--ease-luxury);
  will-change: filter;
}
.weddings:hover .weddings__visual img { transform: scale(1.03); }

.weddings__visual-overlay { display: none; }

/* Floating badge */
.weddings__badge {
  position: absolute;
  bottom: 36px;
  right: 36px;
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-line);
  padding: 22px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s ease;
}
.weddings__visual:hover .weddings__badge {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.16);
}
.weddings__badge-line1 {
  font-family: var(--font-sans);
  font-size: 0.5rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--color-text-light);
  display: block;
}
.weddings__badge-line2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.9rem, 1.5vw, 1.3rem);
  color: var(--color-text);
  display: block;
}
.weddings__badge-divider {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--color-terra);
  opacity: 0.5;
  margin: 4px 0;
}
.weddings__badge-line3 {
  font-family: var(--font-sans);
  font-size: 0.48rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-terra);
  display: block;
}

/* Copy panel */
.weddings__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 8vw, 120px) clamp(44px, 6vw, 96px);
  background: var(--cream);
  will-change: transform, opacity;
}
.weddings__copy .section-heading { align-items: flex-start; }
.weddings__copy .section-body { max-width: 480px; }

/* Tags */
.weddings__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: clamp(20px, 2.5vw, 32px) 0 clamp(32px, 4vw, 52px);
  padding: 0;
}
.weddings__tags li {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text);
  border: 1px solid rgba(26,21,16,0.3);
  padding: 8px 18px 7px;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.weddings__tags li:hover {
  border-color: var(--color-terra);
  color: var(--color-white);
  background: var(--color-terra);
  transform: translateY(-2px);
}

/* CTA — clean dark filled button */
.weddings__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-text);
  border: 1px solid var(--color-text);
  padding: 16px 44px;
  transition: background 0.4s var(--ease-luxury), color 0.4s var(--ease-luxury), gap 0.3s ease;
}
.weddings__cta:hover {
  background: transparent;
  color: var(--color-text);
  gap: 18px;
}

@media (max-width: 900px) {
  .weddings {
    grid-template-columns: 1fr;
    grid-template-rows: 60vw auto;
    min-height: unset;
  }
  .weddings__copy { padding: 48px 28px 64px; }
  .weddings__copy .section-body { max-width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   DISCOVER / AMENITIES SECTION
═══════════════════════════════════════════════════════════ */
.discover {
  background: var(--cream);
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--color-line);
}

.discover__header {
  text-align: center;
  padding: clamp(80px, 11vw, 140px) clamp(24px, 5vw, 60px) clamp(10px, 2vw, 20px);
}

.discover__header-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.discover__header-sans {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(0.65rem, 1.25vw, 0.92rem);
  letter-spacing: 0.4em;
  padding-right: 0.4em;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1;
}

.discover__header-serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 7rem);
  color: var(--color-text);
  letter-spacing: -0.03em;
  line-height: 1;
}

/* Two-panel layout */
.discover__panels {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) clamp(28px, 6vw, 80px);
  align-items: start;
}

.discover__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 clamp(28px, 4vw, 56px);
  color: var(--color-terra);
  align-self: stretch;
  justify-content: center;
  gap: 0;
}

.discover__divider-line {
  display: block;
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, transparent, var(--color-line) 30%, var(--color-line) 70%, transparent);
  min-height: 60px;
}

.discover__divider-icon {
  margin: 16px 0;
  color: var(--color-terra);
  flex-shrink: 0;
}

.discover__panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  will-change: transform, opacity;
}

.discover__panel-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 32px;
}

.discover__panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) brightness(0.9);
  transition: transform 1.4s var(--ease-out), filter 1.2s ease;
}
.discover__panel:hover .discover__panel-img img {
  transform: scale(1.06);
  filter: grayscale(0) brightness(1) saturate(1.05);
}

.discover__panel-num {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 200;
  letter-spacing: 0.3em;
  color: var(--color-terra);
  display: block;
  margin-bottom: 10px;
}

.discover__panel-title {
  display: flex;
  flex-direction: column;
  gap: 0.02em;
  margin-bottom: 20px;
}

.discover__panel-sans {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(0.65rem, 0.95vw, 0.85rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text);
  padding-right: 0.3em;
}

.discover__panel-serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.4rem, 3.5vw, 3.8rem);
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: 1.0;
}

.discover__panel-desc {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  line-height: 2.0;
  color: var(--color-text);
  opacity: 0.85;
  margin-bottom: 24px;
}

/* Golf panel uses box pills like the adventure activities */
.discover__panel-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.discover__panel-pills span {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text);
  border: 1px solid rgba(26,21,16,0.3);
  padding: 9px 18px 8px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: default;
}
.discover__panel-pills span:hover {
  background: var(--color-terra);
  color: var(--color-white);
  border-color: var(--color-terra);
}

/* Activity pills */
.discover__activities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}
.discover__activities span {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text);
  border: 1px solid rgba(26,21,16,0.3);
  padding: 9px 18px 8px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: default;
}
.discover__activities span:hover {
  background: var(--color-terra);
  color: var(--color-white);
  border-color: var(--color-terra);
}

@media (max-width: 900px) {
  .discover__panels {
    grid-template-columns: 1fr;
    padding: 48px 24px;
  }
  .discover__divider {
    flex-direction: row;
    padding: 24px 0;
    align-self: unset;
  }
  .discover__divider-line {
    flex: 1;
    min-height: 1px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-line) 30%, var(--color-line) 70%, transparent);
  }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  padding: clamp(80px, 10vw, 140px) clamp(32px, 8vw, 120px) 52px;
  background: var(--color-dark);
  color: rgba(255,255,255,0.6);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-luxury), transform 1s var(--ease-luxury);
}
.footer.footer-revealed { opacity: 1; transform: translateY(0); }

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
}

.footer__logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__logo-sans {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 0.58rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.footer__logo-serif {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: rgba(255,255,255,0.88);
}

.footer__tagline p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: rgba(255,255,255,0.35);
  font-weight: 400;
}

.footer__mid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-bottom: 60px;
}

.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 22px;
  white-space: nowrap;
}

/* Accent heading — now same style as other footer headings */
.footer__col-h4--accent {
  white-space: normal; /* allow wrap on narrow columns */
}

.footer__col a,
.footer__col p {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}
.footer__col a:hover { color: var(--color-terra-lt); }

.footer__bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 200;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.2);
}

/* Admin Access button in footer */
.footer__admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 7px 16px 6px;
  border-radius: 2px;
  text-decoration: none;
  transition: color 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.footer__admin-btn svg {
  opacity: 0.5;
  transition: opacity 0.35s ease;
}
.footer__admin-btn:hover {
  color: rgba(255,255,255,0.55);
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
}
.footer__admin-btn:hover svg { opacity: 0.8; }

/* Footer responsive — 6 → 3 → 2 → 1 columns */
@media (max-width: 1200px) {
  .footer__mid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .footer__mid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .footer__top { flex-direction: column; }
}
@media (max-width: 480px) {
  .footer__mid { grid-template-columns: 1fr; gap: 28px; }
}

/* ═══════════════════════════════════════════════════════════
   CURSOR GLOW (legacy — handled by cinematic.js)
═══════════════════════════════════════════════════════════ */
.cursor-glow {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139,94,60,0.04) 0%, transparent 70%);
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: transform 0.1s linear;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .section-heading .heading-sans  { font-size: clamp(0.5rem, 3.5vw, 0.72rem); }
  .section-heading .heading-serif { font-size: clamp(2.4rem, 9vw, 4.5rem); }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION
   Castelfalfi: centered, generous whitespace, cream background
═══════════════════════════════════════════════════════════ */
.contact-section {
  background: var(--cream);
  padding: var(--section-pad) clamp(32px, 8vw, 120px);
  position: relative;
  border-top: 1px solid var(--color-line);
}

.contact-section__inner {
  max-width: 820px;
  margin: 0 auto;
}

.contact-section__header {
  text-align: center;
  margin-bottom: clamp(56px, 7vw, 96px);
}
.contact-section__header .section-heading { align-items: center; }
.contact-section__header .section-body { margin-left: auto; margin-right: auto; }

/* Form layout */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  margin-bottom: clamp(20px, 2.5vw, 36px);
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form__field--full {
  margin-bottom: clamp(20px, 2.5vw, 36px);
}

.contact-form__label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.contact-form__input {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-line);
  padding: 12px 0;
  outline: none;
  transition: border-color 0.4s ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.contact-form__input::placeholder {
  color: var(--color-text-light);
  opacity: 0.7;
  font-style: italic;
}

.contact-form__input:focus {
  border-color: var(--color-terra);
}

.contact-form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23a8998a' stroke-width='1' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 20px;
}

.contact-form__select option {
  background: var(--cream);
  color: var(--color-text);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.9;
}

.contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: clamp(16px, 2vw, 28px);
}

.contact-form__note {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-text-mid);
  flex: 1;
  min-width: 200px;
}

.contact-form__submit {
  white-space: nowrap;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-text);
  border: 1px solid var(--color-text);
  padding: 16px 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background 0.5s var(--ease-luxury), color 0.5s var(--ease-luxury), gap 0.3s ease;
}
.contact-form__submit:hover {
  background: transparent;
  color: var(--color-text);
}
.contact-form__submit:disabled {
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width: 640px) {
  .contact-form__row { grid-template-columns: 1fr; }
  .contact-form__footer { flex-direction: column; align-items: stretch; }
  .contact-form__submit { justify-content: center; }
}

/* Unused legacy stubs kept to avoid JS errors */
.video-reveal { display: none; }
.video-reveal__trigger { display: none; }
.gallery { display: none; }
.contact { display: none; }
.stay { display: none; }
.golf { display: none; }
.own-removed { display: none; }
