/* =============================================
   HIGHBURY HILL — Luxury Minimalist Stylesheet
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* === HIGHBURY HILL — Clean Minimalist Luxury Edition === */

  /* Base Backgrounds — 80% White/Snow */
  --brand-green:      #FFFFFF;     /* primary white base */
  --brand-green-mid:  #FAFAFA;     /* snow off-white */
  --brand-green-light:#F5F1EC;     /* warm light */

  /* Section Backgrounds */
  --greige:           #F7F4F0;     /* warm off-white (alt sections) */
  --cream:            #FFFFFF;     /* pure white */
  --off-white:        #FAFAFA;     /* snow white */
  --white:            #FFFFFF;

  /* Warm Walnut Brown — used sparingly for accents */
  --navy:             #8B5E3C;
  --navy-light:       #A67C5B;

  /* Champagne Gold — CTAs, logo, thin borders */
  --gold:             #D4AF37;
  --gold-dark:        #C5A059;

  /* Typography — Dark on Light */
  --charcoal:         #1A1209;     /* near-black headings */
  --dark:             #0D0905;     /* deepest dark (footer/hero) */
  --text:             rgba(26,18,9,0.78);  /* body text — soft charcoal */
  --text-muted:       #6B5B45;    /* warm brown-grey */
  --text-faint:       #9E8C76;    /* very muted */

  /* Borders — Brown tinted */
  --stone:            #8B5E3C;
  --stone-light:      rgba(139,94,60,0.08);
  --border:           rgba(139,94,60,0.18);

  /* Latin glyphs use Cormorant/Inter; Thai glyphs fall back to the matching
     Thai webfonts (Trirong serif, Noto Sans Thai) so Thai meets the CI look */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', 'Trirong', Georgia, serif;
  --font-sans:  'Inter', 'Noto Sans Thai', system-ui, sans-serif;

  --max-w: 1240px;
  --section-pad: 110px 0;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}

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

/* =============================================
   INTRO ANIMATION OVERLAY
   ============================================= */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #FAF7F2;   /* CI warm off-white */
  overflow: hidden;
}

.intro-stage {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Centre logo wrap */
.intro-logo-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;                                /* GSAP fades this in/out */
  will-change: transform, opacity;
}

/* Soft, blurred cream glow behind the logo — feathers naturally */
.intro-logo-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 165%;
  height: 280%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at center,
    rgba(250,247,242,0.78) 0%,
    rgba(250,247,242,0.40) 40%,
    rgba(250,247,242,0) 72%);
  filter: blur(45px);                        /* organic, edgeless glow */
}

/* Logo image (dark) sits on the glow */
.intro-logo {
  position: relative;
  width: 340px;
  max-width: 56vw;
  height: auto;
  filter: brightness(0);                     /* dark logo */
}

/* Scattered lifestyle tiles (Rekha-style collage) */
.intro-img {
  position: absolute;
  width: 16vw;
  height: 21vh;
  object-fit: cover;
  opacity: 0;                                /* GSAP fades in */
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  will-change: transform, opacity;
}

/* 12 collage positions */
.i-item-1  { top: 6vh;   left: 4vw;   z-index: 5; }
.i-item-3  { top: 9vh;   left: 21vw;  z-index: 4; }
.i-item-4  { top: 5vh;   right: 22vw; z-index: 4; }
.i-item-5  { top: 7vh;   right: 4vw;  z-index: 5; }
.i-item-6  { top: 33vh;  left: 1vw;   z-index: 6; }
.i-item-7  { top: 30vh;  right: 1vw;  z-index: 6; }
.i-item-8  { bottom: 7vh; left: 5vw;  z-index: 5; }
.i-item-9  { bottom: 10vh; left: 23vw; z-index: 4; }
.i-item-10 { bottom: 6vh; right: 23vw; z-index: 4; }
.i-item-11 { bottom: 8vh; right: 5vw;  z-index: 5; }
.i-item-12 { bottom: 34vh; left: 2vw;  z-index: 3; }
.i-item-2  { top: 35vh;  right: 2vw;  z-index: 3; } /* (re-using class names, decorative) */

/* The hero tile — sits prominent, then expands to fullscreen in the finale */
.intro-hero-tile {
  top: 18vh;
  left: 30vw;
  width: 40vw;
  height: 46vh;
  z-index: 30;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .intro-img { width: 22vw; height: 18vh; }
  .intro-hero-tile { width: 50vw; height: 40vh; left: 25vw; }
  .i-item-3, .i-item-4, .i-item-9, .i-item-10 { display: none; } /* thin the collage */
}

/* Mobile — balanced: 4 corner tiles around a large central hero tile */
@media (max-width: 768px) {
  .intro-img { width: 38vw; height: 13vh; }
  .intro-logo { width: 62vw; max-width: 260px; }

  /* show only 4 corners + hero tile */
  .i-item-3, .i-item-4, .i-item-6, .i-item-7,
  .i-item-9, .i-item-10, .i-item-12, .i-item-2 { display: none; }

  .i-item-1  { top: 5vh;    left: 4vw;  right: auto; bottom: auto; }
  .i-item-5  { top: 7vh;    right: 4vw; left: auto;  bottom: auto; }
  .i-item-8  { bottom: 6vh; left: 4vw;  top: auto;   right: auto; }
  .i-item-11 { bottom: 8vh; right: 4vw; top: auto;   left: auto; }

  .intro-hero-tile { top: 30vh; left: 8vw; width: 84vw; height: 32vh; }
}

@media (prefers-reduced-motion: reduce) {
  .intro-overlay { display: none; }          /* skip the intro entirely */
}

/* --- Container --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 64px;
}

/* --- Typography --- */
.section-label {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-label.center { text-align: center; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--charcoal);
  margin-bottom: 48px;
  letter-spacing: 0.01em;
}
.section-title.center { text-align: center; }
.section-title em { font-style: italic; color: var(--gold); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(to right, var(--gold), var(--gold-dark));
  color: var(--dark);
  border: 1.5px solid var(--gold);
}
.btn-primary:hover {
  background: linear-gradient(to right, var(--gold-dark), #B8922A);
  border-color: var(--gold-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-outline {
  background: transparent;
  color: #1A120B;
  border: 1.5px solid #1A120B;
}
.btn-outline:hover { background: #1A120B; color: var(--gold); }

.btn.full-width { width: 100%; justify-content: center; }

/* --- Image Placeholder --- */
.image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, var(--stone-light) 0%, var(--greige) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-placeholder span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139,94,60,0.12);
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 64px;
  height: 134px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Nav logo — transparent header (over dark hero video):
   PNG has white bg → brightness(0) invert(1) = pure white logo on dark  */
.nav-logo {
  height: 112px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}

/* Nav logo — scrolled header (white bg): darken logo to show on light background */
.site-header.scrolled .nav-logo {
  filter: brightness(0);
  mix-blend-mode: normal;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.main-nav a {
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
}
.main-nav a:hover { color: var(--white); }
.site-header.scrolled .main-nav a { color: #6B5B45; }
.site-header.scrolled .main-nav a:hover { color: var(--charcoal); }

/* Center-out underline grow */
.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
}
.main-nav a:not(.nav-cta):hover::after,
.main-nav a:not(.nav-cta).active::after { width: 100%; }

.main-nav .nav-cta {
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.main-nav .nav-cta:hover { background: var(--white); color: var(--charcoal); }
.site-header.scrolled .main-nav .nav-cta {
  border-color: var(--gold);
  color: var(--gold);
}
.site-header.scrolled .main-nav .nav-cta:hover {
  background: var(--gold);
  color: var(--dark);
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}
.site-header.scrolled .lang-toggle { color: #6B5B45; }

.lang-btn {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.lang-btn.active,
.lang-btn:hover { color: var(--white); font-weight: 500; }
.site-header.scrolled .lang-btn { color: var(--text-muted); }
.site-header.scrolled .lang-btn.active,
.site-header.scrolled .lang-btn:hover { color: var(--charcoal); }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}
.site-header.scrolled .mobile-menu-btn span { background: var(--dark); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 20px 40px;
  gap: 16px;
}
.mobile-nav a {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--dark); /* fallback while video loads */
}

/* ---- Still hero image ---- */
.hero-still {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  /* slow ken-burns drift for life */
  animation: heroDrift 20s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.04) translateY(0); }
  to   { transform: scale(1.12) translateY(-1.5%); }
}

/* Cinematic filter over the still — lightened ~40% for a brighter image */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(13,9,5,0.18) 0%, rgba(13,9,5,0.33) 100%),
    linear-gradient(to bottom,
      rgba(13,9,5,0.33) 0%,
      rgba(13,9,5,0.24) 40%,
      rgba(13,9,5,0.33) 100%
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10; /* above video, overlays, and all corner masks */
  text-align: center;
  color: var(--white);
  padding: 0 40px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0.02em;
  margin-bottom: 36px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.55);
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-cta {
  /* gold offer button sitting under the tagline */
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

/* --- Artistic vertical gold divider between tagline and CTA (slow luxury glow) --- */
.hero-divider {
  width: 1px;
  height: 88px;
  margin: 20px auto 48px;       /* breathing room — pushes the CTA gracefully down */
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(212,175,55,0.9), transparent);
  animation: heroLineGlow 3.6s ease-in-out infinite;
}
.hero-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--gold);
  animation: heroDiamond 3.6s ease-in-out infinite;
}
@keyframes heroLineGlow {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 1; }
}
@keyframes heroDiamond {
  0%, 100% { opacity: 0.5; box-shadow: 0 0 5px rgba(212,175,55,0.35); }
  50%      { opacity: 1;   box-shadow: 0 0 18px rgba(212,175,55,0.95); }
}

.hero-tagline {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 0.2em;
  z-index: 10;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  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; }
}

/* =============================================
   CONCEPT
   ============================================= */
.concept {
  padding: 110px 0 0;
  background: var(--off-white);
}

/* Centered headline block */
.concept-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}
.concept-header .section-title { margin-bottom: 0; }

/* Elegant italic philosophy quote */
.concept-philosophy {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  max-width: 820px;
  margin: 0 auto 72px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* img-clip-reveal compatible wrapper */
.concept-img-wrap {
  overflow: hidden;
  position: relative;
}
.concept-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Three big alternating concept sections — sticky card stack ---- */
.concept-section {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 580px;
  align-items: stretch;
  border-top: 1px solid var(--border);

  /* Sticky stack: each section pins to top and the next one slides over it */
  position: sticky;
  top: 134px;   /* = header height */
  box-shadow: 0 -8px 40px rgba(0,0,0,0.07);
}

/* Increasing z-index so each card lands on top of the previous */
.concept > .concept-section:nth-child(2) { z-index: 10; }
.concept > .concept-section:nth-child(3) { z-index: 20; }
.concept > .concept-section:nth-child(4) { z-index: 30; }

/* Reverse: text left (45%), image right (55%) */
.concept-section--reverse {
  grid-template-columns: 45fr 55fr;
}
.concept-section--reverse .concept-section-img { order: 1; }
.concept-section--reverse .concept-section-text { order: 0; }

.concept-section-img {
  overflow: hidden;
  background: var(--greige);
  position: relative;
}
.concept-section-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.concept-section:hover .concept-section-img img { transform: scale(1.03); }

.concept-section-text {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  background: var(--cream);
}

.concept-section-num {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  font-family: var(--font-sans);
}

.concept-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.concept-section-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 400px;
}

/* =============================================
   FACT SHEET
   ============================================= */
.factsheet {
  padding: 56px 0;
  background: #F5EDE0;  /* warm champagne — accent break between white sections */
  border-top: 1px solid rgba(139,94,60,0.12);
  border-bottom: 1px solid rgba(139,94,60,0.12);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.fact-item {
  padding: 8px;
  text-align: center;
}

.fact-number {
  font-family: var(--font-serif);   /* CI brand display serif */
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1.05;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
  white-space: nowrap;              /* keep 285–484 on one line */
  /* force lining + tabular figures so 1/133/10.9M read clearly in the serif */
  font-feature-settings: "lnum" 1, "tnum" 1;
  font-variant-numeric: lining-nums tabular-nums;
}

.fact-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

/* =============================================
   AMENITIES
   ============================================= */
.amenities {
  padding: 72px 0;
  background: var(--cream);  /* warm cream from greige family */
}

.amenities .section-title { margin-bottom: 40px; }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 40px;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.amenity-icon {
  width: 48px;
  height: 48px;
  color: var(--navy);
}
.amenity-icon svg { width: 100%; height: 100%; }

.amenity-item p {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =============================================
   HOUSE TYPES
   ============================================= */
.units {
  padding: var(--section-pad);
  background: var(--off-white);
}

.units .section-title { margin-bottom: 28px; }

/* --- Tabs --- */
.unit-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

.unit-tab {
  padding: 12px 48px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition);
}
.unit-tab:hover { color: var(--charcoal); }
.unit-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.unit-panel { display: none; }
.unit-panel.active { display: block; }

/* --- Side-by-side: image left, info+floorplan right --- */
.unit-split {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: center;
  gap: 0;
}

.unit-main-photo {
  overflow: hidden;
  background: var(--off-white);
  aspect-ratio: 16 / 9;
}
/* Show the FULL house render — no cropping */
.unit-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Right panel — info stacked above floor plan */
.unit-detail {
  padding: 56px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  background: var(--off-white);
  border-left: 1px solid var(--border);
}

/* --- Legacy: keep .unit-lower in case referenced elsewhere --- */
.unit-lower {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.unit-name {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.unit-subtitle {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
}

/* Clean inline specs — replaces the stat grid */
.unit-specs {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  line-height: 1.9;
  margin-bottom: 36px;
}

.unit-actions { margin-top: 4px; }

/* --- Floor Plans --- */
.floorplan-toggle {
  display: flex;
  gap: 28px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

/* Text-style floor plan switcher — no box buttons */
.fp-btn {
  padding: 0;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  background: transparent;
  border: none;
  transition: color var(--transition);
  cursor: pointer;
  position: relative;
}
.fp-btn::after {
  content: '';
  position: absolute;
  bottom: -17px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.fp-btn.active { color: var(--charcoal); }
.fp-btn.active::after { width: 100%; }
.fp-btn:not(.active):hover { color: var(--text-muted); }

.floorplan-img-wrap {
  background: var(--greige);
  overflow: hidden;
}

.floorplan-img {
  width: 100%;
  display: block;
  margin-top: -11%;
  margin-bottom: -4%;
  transition: opacity 0.35s ease;
}
/* Amaryllis plans are already cleanly framed (no baked-in title band) */
.floorplan-img--nocrop { margin-top: 0; margin-bottom: 0; }

/* =============================================
   LOCATION
   ============================================= */
.location {
  padding: var(--section-pad);
  background: var(--cream);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}

.location-address {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 2;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.location-distances {
  display: flex;
  flex-direction: column;
}

.distance-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid var(--stone-light);
  gap: 16px;
}
.distance-item:last-child { border-bottom: none; }

.distance-item span:first-child {
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.02em;
}

.distance-item span:last-child {
  font-size: 12px;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
}

.distance-hidden { display: none; }

.location-show-more {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0;
  transition: opacity 0.2s;
}
.location-show-more:hover { opacity: 0.7; }
.location-show-more svg { transition: transform 0.3s; }
.location-show-more.expanded svg { transform: rotate(180deg); }

.map-toggle-bar {
  display: flex;
  gap: 0;
  margin-bottom: 12px;
}

.map-toggle {
  padding: 9px 22px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--white);
}
.map-toggle:first-child { border-radius: 2px 0 0 2px; }
.map-toggle:last-child { border-radius: 0 2px 2px 0; border-left: none; }
.map-toggle.active { background: var(--gold); color: var(--dark); border-color: var(--gold); }

.map-view { display: none; }
.map-view.active { display: block; }
.map-placeholder { min-height: 360px; }

#googleMap {
  width: 100%;
  height: 360px;
  border: none;
}

.graphic-map-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.map-legend {
  display: flex;
  gap: 20px;
  margin-top: 12px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  letter-spacing: 0.07em;
  color: var(--text-faint);
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.legend-venue  { background: var(--gold); }
.legend-nearby { background: var(--navy); }

/* =============================================
   GALLERY
   ============================================= */
.gallery {
  padding: var(--section-pad);
  background: var(--off-white);
}

.gallery .section-title { margin-bottom: 48px; }

/* ---- Two opposing marquee rows (Rekha-style) ---- */
.gallery-marquee {
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: hidden;
}

.gallery-row { width: 100%; overflow: hidden; }

/* Continuous linear scroll — override Swiper's eased timing */
.gallery-row .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* Uniform image tiles — all the same size */
.gallery-row .swiper-slide {
  width: 598px;
  height: 390px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--greige);
}
.gallery-row .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s;
}
.gallery-row .swiper-slide:hover img { transform: scale(1.05); filter: brightness(1.05); }

/* Caption label (kept for compatibility, unused in marquee) */
.gallery-label {
  position: absolute;
  bottom: 18px;
  left: 22px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  z-index: 3;
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(13, 9, 5, 0.97);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lb-img {
  max-width: 90vw;
  max-height: 86vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 32px 100px rgba(0,0,0,0.7);
}

.lb-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 36px;
  color: rgba(255,255,255,0.5);
  line-height: 1;
  transition: color 0.2s;
}
.lb-close:hover { color: var(--white); }

.lb-prev, .lb-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 56px;
  color: rgba(255,255,255,0.35);
  padding: 16px 20px;
  transition: color 0.2s;
  font-weight: 200;
  line-height: 1;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover { color: var(--white); }

.lb-counter {
  position: absolute;
  bottom: 24px;
  left: 50%; transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

/* =============================================
   REGISTER
   ============================================= */
.register {
  padding: var(--section-pad);
  /* CI corporate-identity backdrop: visibly warm cocoa brown with a soft
     radial glow, matching the official brand announcement (brown + gold) */
  background:
    radial-gradient(ellipse 95% 85% at 50% 30%, #4A2E18 0%, #2E1C10 45%, #1A120B 100%);
}

/* Text overrides for dark register section */
.register .section-label  { color: var(--gold); }
.register .section-title  { color: #FFFFFF; }
.register .register-desc  { color: rgba(255,255,255,0.62); }
.register .contact-link   { color: rgba(255,255,255,0.80); }
.register .contact-link:hover { color: var(--gold); }

.register-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 96px;
  align-items: start;
}

.register-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--charcoal);
  transition: var(--transition);
}
.contact-link:hover { color: var(--gold); }
.contact-link svg { width: 18px; height: 18px; flex-shrink: 0; }

/* --- Form --- */
.register-form-wrap {
  background: var(--off-white);
  padding: 48px;
  box-shadow: 0 12px 64px rgba(0,0,0,0.45), 0 0 0 1px rgba(212,175,55,0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group label span { color: var(--olive); }

.form-group input,
.form-group select {
  padding: 12px 16px;
  border: 1px solid rgba(139,94,60,0.22);
  background: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--charcoal);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: #FFFFFF;
}
.form-group input::placeholder { color: rgba(139,94,60,0.45); }
.form-group select { color: var(--charcoal); }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}
.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}
.form-checkbox label {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
}
.form-checkbox label a {
  color: var(--gold);
  text-decoration: underline;
}

/* Thank-you popup modal */
.form-success {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(13, 9, 5, 0.6);
  backdrop-filter: blur(3px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.form-success.show { display: flex; }
.success-inner {
  position: relative;
  background: var(--off-white);
  text-align: center;
  padding: 56px 44px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 30px 90px rgba(0,0,0,0.45);
  border-top: 3px solid var(--gold);
  animation: lbZoomIn 0.4s cubic-bezier(0.22,1,0.36,1) both;
}
.success-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 26px;
  line-height: 1;
  color: var(--text-faint);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.success-close:hover { color: var(--charcoal); }
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 12px;
}
.form-success p { color: var(--text-muted); font-size: 14px; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #1A120B;
  color: var(--white);
  padding: 60px 0 32px;
}

.footer-top {
  display: flex;
  gap: 80px;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Footer logo — PNG white bg → invert to white, warm gold glow ties back to brand gold */
.footer-logo-img {
  width: 160px;
  height: auto;
  display: block;
  margin-bottom: 16px;
  filter: brightness(0) invert(1)
          drop-shadow(0 0 16px rgba(200, 168, 60, 0.4));
}
.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a { transition: var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* =============================================
   LUXURY BOUTIQUE REFINEMENTS
   ============================================= */

/* Section label — no decorative rule, spacing carries the hierarchy */
.section-label {
  display: block;
}

/* Thin gold rule — reusable boutique divider */
.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 48px;
}

/* Section title sizing bump */
.section-title {
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  letter-spacing: 0.01em;
}

/* Hero — single clean shadow for legibility */
.hero-title {
  letter-spacing: 0.06em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.55);
}
.hero-tagline {
  letter-spacing: 0.25em;
  font-size: 13px;
  text-shadow: 0 1px 20px rgba(0,0,0,0.50);
}
.hero-eyebrow {
  letter-spacing: 0.35em;
  font-size: 10.5px;
  color: var(--gold);
  text-shadow: none;
}

/* Buttons — sharper, more boutique */
.btn {
  letter-spacing: 0.16em;
  font-size: 11px;
}
.btn-primary {
  padding: 15px 36px;
}
.btn-outline {
  padding: 14px 34px;
}
.btn-ghost {
  padding: 14px 34px;
}

/* Concept section refined */
.concept-desc { color: var(--text-muted); }

/* Fact sheet — clean sans-serif numbers, no dividers (simpler, easier to read) */
.fact-label { letter-spacing: 0.14em; }

/* Amenities — refined hover + icon sizing */
.amenity-icon {
  width: 48px;
  height: 48px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.amenity-item:hover .amenity-icon {
  color: var(--gold);
  transform: translateY(-5px);
}
.amenity-item p {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--text-faint);
}

/* Unit stats removed — replaced by .unit-specs inline text */

/* Map toggle buttons refined */
.map-toggle {
  font-size: 10.5px;
  letter-spacing: 0.14em;
}

/* Register section form card */
.register-form-wrap {
  border-top: 1px solid rgba(212,175,55,0.5);
}

/* Form labels */
.form-group label {
  letter-spacing: 0.14em;
  font-size: 10.5px;
}

/* Footer logo image now handled by .footer-logo-img above */

/* Scrolled header brand refinement */
.site-header.scrolled {
  border-bottom: 1px solid var(--stone-light);
}

/* Active navigation link styling */
.main-nav a.active { color: var(--white); font-weight: 500; }
.site-header.scrolled .main-nav a.active { color: var(--gold); }

/* =============================================
   ANIMATION SYSTEM — Luxury Motion Profile
   ============================================= */

/* Hero text removed — pure cinematic video background */

/* --- Scroll reveal: slide up --- */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; }
.reveal.in-view {
  animation: revealUp 0.8s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: calc(var(--reveal-delay, 0) * 1ms);
}

/* --- Scroll reveal: slide from left (gallery, unit photos) --- */
@keyframes revealLeft {
  from { opacity: 0; transform: translateX(-55px); }
  to   { opacity: 1; transform: translateX(0); }
}
.reveal-left { opacity: 0; }
.reveal-left.in-view {
  animation: revealLeft 0.95s cubic-bezier(0.16,1,0.3,1) both;
  animation-delay: calc(var(--reveal-delay, 0) * 1ms);
}

/* --- Tab cross-fade --- */
@keyframes fadePanel {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.unit-panel.active {
  animation: fadePanel 0.45s cubic-bezier(0.22,1,0.36,1) both;
}

/* --- Lightbox image zoom-in on open --- */
@keyframes lbZoomIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox.open .lb-img {
  animation: lbZoomIn 0.35s cubic-bezier(0.22,1,0.36,1) forwards;
}

/* --- Architectural image: overflow-mask slide reveal + depth scale --- */
.concept-img-wrap { overflow: hidden; }

/* Image starts translated fully left (clipped by parent overflow:hidden) */
.img-clip-reveal img {
  transform: translateX(-100%) scale(1.06);
  opacity: 0;
  transition:
    transform 1.2s cubic-bezier(0.16,1,0.3,1),
    opacity   0.8s ease;
  will-change: transform;
}
/* Revealed: slide into place + zoom-out depth */
.img-clip-reveal.revealed img {
  transform: translateX(0) scale(1);
  opacity: 1;
}
/* Hover interaction after reveal */
.img-clip-reveal.revealed:hover img {
  transform: scale(1.04);
  transition-duration: 0.7s;
}


/* --- Mobile: swap reveal-left → reveal-up (overflow:hidden on sections clips horizontal translate) --- */
@media (max-width: 768px) {
  .reveal-left.in-view {
    animation-name: revealUp;
  }
}

/* --- Reduce-motion override --- */
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero-title, .hero-tagline, .hero-actions, .hero-scroll-hint {
    opacity: 1 !important; animation: none !important;
  }
  .hero-still { animation: none !important; transform: none !important; }
  .hero-divider, .hero-divider::before { animation: none !important; opacity: 1 !important; }
  .reveal, .reveal-left { opacity: 1 !important; }
  .reveal.in-view, .reveal-left.in-view { animation: none !important; }
  .img-clip-reveal img { transform: none !important; opacity: 1 !important; transition: none !important; }
  .gallery-item img { transition: none !important; }
  .unit-panel.active { animation: none !important; }
  .lightbox.open .lb-img { animation: none !important; }
}

/* =============================================
   PARALLAX SYSTEM
   ============================================= */
[data-parallax] {
  will-change: transform;
}
/* Clip parallax drift inside sections so nothing bleeds */
/* NOTE: .concept excluded — overflow:hidden breaks position:sticky on concept-section cards */
.factsheet, .amenities, .units, .gallery, .register {
  overflow: hidden;
}
.concept { overflow: visible; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .facts-grid { grid-template-columns: repeat(3, 1fr); gap: 36px 24px; }

  .concept-section,
  .concept-section--reverse { grid-template-columns: 1fr; min-height: auto; top: 100px; }
  .concept-section-img { aspect-ratio: 4 / 3; }
  .concept-section--reverse .concept-section-img { order: 0; }
  .concept-section--reverse .concept-section-text { order: 1; }
  .concept-section-text { padding: 36px 28px; gap: 14px; }
  .concept-section-desc { max-width: 100%; }
  .concept-section-title { font-size: clamp(1.6rem, 6vw, 2rem); }
  /* Philosophy: drop forced line breaks so it wraps within the screen */
  .concept-philosophy { font-size: 1.15rem; margin-bottom: 48px; }
  .concept-philosophy br { display: none; }

  .unit-lower,
  .location-grid,
  .register-grid { grid-template-columns: 1fr; gap: 40px; }

  .concept-image { order: -1; }

  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 70px 0; }

  .container { padding: 0 28px; }

  /* Smaller titles so they never run off narrow screens */
  .section-title { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .concept-header { max-width: 100%; }

  .main-nav { display: none; }
  .mobile-menu-btn { display: flex; margin-left: 16px; }

  /* Show the language toggle directly in the mobile header (next to ☰) */
  .header-inner > .lang-toggle {
    display: flex;
    margin-left: auto;
    gap: 6px;
  }
  .header-inner > .lang-toggle .lang-btn { font-size: 12.5px; }

  /* Language toggle inside the mobile menu (cream bg → dark text) */
  .mobile-nav .lang-toggle.mobile-lang {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
  .mobile-nav .lang-btn {
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 0.1em;
  }
  .mobile-nav .lang-btn.active { color: var(--gold); font-weight: 600; }
  .mobile-nav .lang-toggle span { color: var(--text-faint); }

  .header-inner { height: 100px; }
  .nav-logo { height: 78px; }

  .hero-title {
    font-size: clamp(3rem, 12.5vw, 5rem);
    margin-bottom: 24px;
    white-space: nowrap;        /* keep "Where Luxury" on one line */
    letter-spacing: 0.01em;
  }
  .hero-divider { height: 66px; margin: 14px auto 38px; }

  .facts-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }

  .amenities-grid { grid-template-columns: repeat(2, 1fr); }

  .unit-tabs { flex-wrap: wrap; }
  .unit-tab { padding: 12px 20px; }

  /* House types mobile — stack photo above detail */
  .unit-split { grid-template-columns: 1fr; min-height: auto; }
  .unit-main-photo { aspect-ratio: 16 / 9; }
  .unit-detail { padding: 36px 0; border-left: none; border-top: 1px solid var(--border); gap: 32px; }
  .unit-name { font-size: 2rem; }
  .unit-specs { font-size: 12px; }
  .unit-actions .btn { width: 100%; text-align: center; }

  /* Gallery marquee mobile — smaller tiles */
  .gallery-row .swiper-slide { width: 364px; height: 247px; }
  .gallery-marquee { gap: 21px; }

  /* Mobile lightbox touch targets */
  .lb-close { top: 14px; right: 14px; font-size: 40px; padding: 8px; }
  .lb-prev  { left: 4px; padding: 16px 12px; font-size: 44px; }
  .lb-next  { right: 4px; padding: 16px 12px; font-size: 44px; }
  .lb-img   { max-width: 98vw; max-height: 78vh; }

  .register-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .unit-actions { flex-direction: column; gap: 12px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .gallery-row .swiper-slide { width: 312px; height: 208px; }
  .footer-links { flex-direction: column; gap: 32px; }
}

/* =============================================
   ACCESSIBILITY
   ============================================= */

/* Skip to content — visible on keyboard focus only */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--gold);
  color: var(--dark);
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 9999;
  transition: top 0.2s;
  outline: none;
}
.skip-to-content:focus { top: 16px; }

/* Visible focus ring for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 1px;
}

/* Hero video poster — native <video poster=""> attribute handles this */
