/* ============================================================
   EXCLUSIVE INVITATION TO LX DISCOVERY
   FRESH OPS × LXL × FRESH LEGAL GROUP
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap");

:root {
  --bg-deep: #07111a;
  --bg-mid: #0c1c25;
  --bg-elev: #122633;
  --ink: #f5ece0;
  --ink-soft: #c9bfb1;
  --ink-mute: #8a8174;
  --line: rgba(212, 184, 138, 0.18);
  --line-strong: rgba(212, 184, 138, 0.4);
  --gold: #d4b88a;
  --gold-bright: #e9cf9e;
  --gold-deep: #a07e48;
  --teal-deep: #173e40;
  --orange: #ff6b35;

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-deep);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  cursor: default;
}

::selection { background: var(--gold); color: var(--bg-deep); }

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

/* ---------- Top frame ---------- */
.top-bar {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 36px;
  z-index: 100;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.45), 0 0 12px rgba(0,0,0,0.35);
}

.top-bar .brands {
  display: flex; gap: 22px; align-items: center;
}
.top-bar .brands span { opacity: 0.85; }
.top-bar .brands .sep { opacity: 0.4; }
.top-bar .brands .lxl {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--gold-bright);
}

.top-bar .corner {
  font-family: var(--serif);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--ink-soft);
}

/* ---------- Top-right horizontal nav (LX Club style) ---------- */
.side-index {
  position: fixed;
  top: 64px;
  right: 40px;
  left: auto;
  transform: none;
  z-index: 95;
  display: flex;
  flex-direction: row;
  gap: 26px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.55), 0 0 10px rgba(0,0,0,0.4);
}
.side-index a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 2px;
  border-bottom: 1px solid transparent;
  transition: color 250ms ease, border-color 250ms ease;
}
.side-index a::before { display: none; }
.side-index a:hover { color: var(--gold); }
.side-index a.is-active {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-bright);
}
.side-index .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--gold);
  opacity: 0.85;
}

/* ---------- Persistent section nav arrows (bottom-right) ---------- */
.nav-arrows {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 96;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav-arrow {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(7,17,26,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  color: var(--gold-bright);
  cursor: pointer;
  border-radius: 50%;
  transition: transform 220ms cubic-bezier(.2,.8,.2,1),
              background 220ms ease,
              border-color 220ms ease,
              opacity 220ms ease;
  padding: 0;
  font-family: var(--sans);
}
.nav-arrow svg {
  width: 22px;
  height: 22px;
  display: block;
}
.nav-arrow:hover {
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(212,184,138,0.25);
}
.nav-arrow:disabled,
.nav-arrow[aria-disabled="true"] {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

@media (max-width: 560px) {
  .nav-arrows { right: 16px; bottom: 16px; gap: 8px; }
  .nav-arrow { width: 42px; height: 42px; }
  .nav-arrow svg { width: 20px; height: 20px; }
}

/* ---------- Progress bar ---------- */
.progress {
  position: fixed; top: 0; left: 0;
  height: 1px; width: 0%;
  background: var(--gold);
  z-index: 200;
  transition: width 80ms linear;
}

/* ---------- Scroll behaviour ---------- */
html { scroll-behavior: smooth; }
/* scroll-snap intentionally disabled so the sunset animation reads gradually */

/* ---------- Section base ---------- */
section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 120px 36px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.eyebrow::before, .eyebrow.has-line::after {
  content: "";
  width: 32px; height: 1px;
  background: var(--gold);
  opacity: 0.55;
}
.eyebrow.no-line::before { display: none; }

h1, h2, h3 {
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
}

.p-lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 560px;
  text-wrap: pretty;
}

.kicker {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* ============================================================
   STAR WARS-STYLE CRAWL INTRO
   (technique via css-tricks Star Wars crawl)
   ============================================================ */
.intro-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 1000;
  overflow: hidden;
  animation: intro-fade-out 1.6s ease-in 60s forwards;
}
.intro-overlay.dismissed {
  animation: intro-fade-out 0.6s ease-in forwards;
}
@keyframes intro-fade-out {
  to { opacity: 0; pointer-events: none; visibility: hidden; }
}

.intro-stars {
  position: absolute; inset: 0;
  z-index: 1;
}
.intro-stars span {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  opacity: 0.7;
  animation: twinkle 3s ease-in-out infinite;
}

/* Top fade so the text dissolves into the distance */
.intro-fade {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 60vh;
  background-image: linear-gradient(0deg, transparent, #000 75%);
  z-index: 3;
  pointer-events: none;
}

.star-wars {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  perspective: 400px;
  text-align: center;
  z-index: 2;
  overflow: hidden;
}

.crawl {
  position: relative;
  top: 60vh;
  width: min(720px, 88vw);
  font-size: clamp(20px, 2.4vw, 32px);
  transform-origin: 50% 100%;
  animation: crawl 60s linear forwards;
}

.crawl p {
  margin: 0 0 28px;
  text-wrap: pretty;
}
.crawl em {
  font-style: italic;
  color: #ffe9b8;
}

.crawl-title {
  text-align: center;
  margin-bottom: 80px;
}
.crawl-title p {
  font-style: normal;
  font-size: 0.7em;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.crawl-title h1 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 2em;
  line-height: 1;
  margin: 0;
  color: var(--ink);
  text-transform: none;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

@keyframes crawl {
  0% {
    top: 60vh;
    transform: rotateX(20deg) translateZ(0);
    opacity: 0;
  }
  3%   { opacity: 1; }
  96%  { opacity: 1; }
  100% {
    top: -2400px;
    transform: rotateX(26deg) translateZ(-1400px);
    opacity: 0.2;
  }
}

.intro-skip {
  position: absolute;
  bottom: 32px;
  right: 36px;
  z-index: 5;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 12px 22px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 500;
  cursor: pointer;
  transition: all 250ms ease;
}
.intro-skip:hover {
  background: var(--gold);
  color: #000;
}

/* ============================================================
   3D DEPTH SCENE
   ============================================================ */
.depth-scene {
  position: absolute;
  inset: 0 0 25% 0;
  perspective: 1200px;
  perspective-origin: 50% 60%;
  z-index: 3;
  pointer-events: none;
}
.depth-layer {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 200ms ease-out;
}

/* Distant clouds / atmospheric band */
.depth-clouds {
  background:
    radial-gradient(ellipse 60% 30% at 30% 60%, rgba(212,184,138,0.10), transparent 70%),
    radial-gradient(ellipse 80% 25% at 70% 65%, rgba(180,150,110,0.08), transparent 70%);
  transform: translateZ(-400px) scale(1.4);
  filter: blur(2px);
  opacity: 0.85;
}

/* Distant landmass (low silhouette of Lisbon hills) */
.depth-landmass {
  bottom: 0;
  background-image:
    radial-gradient(ellipse 30% 60% at 12% 100%, #0a1820 30%, transparent 32%),
    radial-gradient(ellipse 45% 80% at 35% 100%, #0c1c25 36%, transparent 38%),
    radial-gradient(ellipse 38% 70% at 68% 100%, #0a1820 34%, transparent 36%),
    radial-gradient(ellipse 28% 55% at 92% 100%, #0c1c25 30%, transparent 32%);
  transform: translateZ(-200px) scale(1.18);
  opacity: 0.9;
}

/* Halo behind yacht */
.depth-yacht-glow {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(-60px);
}
.depth-yacht-glow::after {
  content: "";
  width: 60%;
  height: 30%;
  background: radial-gradient(ellipse at center, rgba(212,184,138,0.18), transparent 65%);
  filter: blur(20px);
}

/* The yacht photo layer — image-slot lives here */
.depth-yacht {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(0);
}
.depth-yacht image-slot {
  width: 75%;
  max-width: 1100px;
  aspect-ratio: 16 / 5;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.7));
  animation: yacht-drift 14s ease-in-out infinite;
}

/* Foreground mist/spray */
.depth-foreground {
  bottom: 0;
  height: 40%;
  top: auto;
  background: linear-gradient(180deg, transparent, rgba(2,8,12,0.5));
  transform: translateZ(120px);
  pointer-events: none;
}

/* ============================================================
   SECTION 2 — DAYLIGHT CATAMARAN / LISBON VIEW
   ============================================================ */
.daylight-section {
  position: relative;
  overflow: hidden;
  padding: 0 !important;
  /* Night sky → deep horizon → dark river */
  background:
    radial-gradient(ellipse 60% 35% at 30% 22%, rgba(180,200,235,0.18), transparent 60%),
    linear-gradient(180deg,
      #050a18 0%,
      #0a1428 28%,
      #122742 52%,
      #1a2f48 70%,
      #0e1c2a 85%,
      #050d18 100%);
  color: #f0e6d2;
}
/* Voyage section no longer needs its own moon — the page-wide .celestial
   body is fixed-positioned and provides the moon when scrolled into night. */
.daylight-sun { display: none; }
/* Stars (replacing clouds in night sky) */
.daylight-clouds {
  position: absolute; left: 0; right: 0; top: 0;
  height: 65%;
  z-index: 1;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 14%, #fff 50%, transparent 60%),
    radial-gradient(1.2px 1.2px at 28% 22%, #fff 50%, transparent 60%),
    radial-gradient(1.4px 1.4px at 46% 8%,  #fff 50%, transparent 60%),
    radial-gradient(1.0px 1.0px at 62% 18%, #fff 50%, transparent 60%),
    radial-gradient(1.6px 1.6px at 78% 12%, #fff 50%, transparent 60%),
    radial-gradient(1.2px 1.2px at 88% 28%, #fff 50%, transparent 60%),
    radial-gradient(1.0px 1.0px at 18% 32%, #fff 50%, transparent 60%),
    radial-gradient(1.4px 1.4px at 56% 38%, #fff 50%, transparent 60%),
    radial-gradient(1.2px 1.2px at 8%  46%, #fff 50%, transparent 60%),
    radial-gradient(1.0px 1.0px at 36% 50%, #fff 50%, transparent 60%),
    radial-gradient(1.5px 1.5px at 72% 44%, #fff 50%, transparent 60%),
    radial-gradient(1.0px 1.0px at 94% 56%, #fff 50%, transparent 60%);
  opacity: 0.85;
}
.daylight-skyline {
  position: absolute; left: 0; right: 0;
  bottom: 38%; height: 14%;
  z-index: 2; opacity: 0.78;
  filter: brightness(0.55) saturate(0.9);
}
.daylight-skyline svg { width: 100%; height: 100%; display: block; }
/* Dark night river with moonlight shimmer */
.daylight-river {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 38%;
  background:
    radial-gradient(ellipse 50% 80% at 78% 0%, rgba(220,225,240,0.12), transparent 70%),
    linear-gradient(180deg, #1a2838 0%, #0d1a26 50%, #050d18 100%);
  z-index: 2; overflow: hidden;
}
.daylight-catamaran {
  position: absolute;
  bottom: 26%;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, 70vw);
  z-index: 3;
  filter:
    drop-shadow(0 12px 18px rgba(0,0,0,0.55))
    brightness(0.78) saturate(0.85);
  animation: yacht-drift 12s ease-in-out infinite;
}
.daylight-content {
  position: relative;
  z-index: 5;
  padding: 0 56px;
  margin-top: 12vh;
  color: #f6efe1;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.daylight-content .eyebrow { color: #fff7e2; }
.daylight-content .eyebrow::before { background: #fff7e2; opacity: 0.85; }
.daylight-content h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 6.5vw, 100px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 16px 0 18px;
  max-width: 900px;
}
.daylight-content h2 em { font-style: italic; color: #fff; }
.daylight-content p {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
}

/* Sparkling stars on water in hero (night Tagus) */
.tagus-sparkles {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 36%;
  z-index: 3;
  pointer-events: none;
}
.tagus-sparkles span {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px rgba(255,240,200,0.9);
  animation: sparkle 3s ease-in-out infinite;
}
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0.4); }
  50%      { opacity: 1; transform: scale(1.2); }
}

/* ============================================================
   HERO — DAY → SUNSET → NIGHT (scroll-driven)
   ============================================================ */
.hero {
  /* Sky colors are CSS variables so JS can interpolate them on scroll.
     Defaults below are mid-afternoon (progress=0). */
  --sky-top:     #6fa6c4;
  --sky-upper:   #8fbcd4;
  --sky-mid:     #c8c1b1;
  --sky-lower:   #e8b08a;
  --sky-horizon: #d1825a;
  --sky-water1:  #5a7a8c;
  --sky-water2:  #1f3540;
  --sky-glow:    rgba(255,180,110,0.35);

  height: 100vh;
  min-height: 760px;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background:
    radial-gradient(ellipse 70% 38% at 50% 72%, var(--sky-glow), transparent 70%),
    linear-gradient(180deg,
      var(--sky-top)     0%,
      var(--sky-upper)  18%,
      var(--sky-mid)    42%,
      var(--sky-lower)  58%,
      var(--sky-horizon) 70%,
      var(--sky-water1) 84%,
      var(--sky-water2) 100%);
  transition: background 80ms linear;
}

/* Atmospheric haze layer (fades with the sun) */
.hero-haze {
  position: absolute;
  left: -10%; right: -10%;
  bottom: 32%;
  height: 240px;
  background: radial-gradient(ellipse 70% 100% at 50% 100%, var(--sky-glow), transparent 75%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 200ms linear;
}

/* ============================================================
   CELESTIAL BODY — one orb that traverses hero + voyage.
   At the top of the page it's a bright sun. As the user scrolls,
   it descends, reddens through golden-hour and crimson, then
   morphs into a pale moon. Position: fixed so it persists across
   sections; JS sets the --c-* custom props on each scroll frame.
   ============================================================ */
.celestial {
  --c-x: 75%;
  --c-y: 14vh;
  --c-size: 220px;
  --c-scale: 1;
  --c-opacity: 1;
  --c-c1: #fff4d3;
  --c-c2: #ffd791;
  --c-c3: #f4a35a;
  --c-c4: rgba(244,140,80,0.25);
  --c-glow: 90px;
  --c-glow-color: rgba(255,200,130,0.55);

  position: fixed;
  top: var(--c-y);
  left: var(--c-x);
  width: var(--c-size);
  height: var(--c-size);
  z-index: 4;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(var(--c-scale));
  opacity: var(--c-opacity);
  will-change: top, left, opacity, transform;
  filter: drop-shadow(0 0 var(--c-glow) var(--c-glow-color));
  transition: opacity 250ms linear, filter 200ms linear;
}
.celestial-disc {
  width: 100%; height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%,
      var(--c-c1) 0%,
      var(--c-c2) 28%,
      var(--c-c3) 56%,
      var(--c-c4) 76%,
      transparent 90%);
  animation: celestial-pulse 7s ease-in-out infinite;
}
@keyframes celestial-pulse {
  0%, 100% { transform: scale(1);    filter: brightness(1); }
  50%      { transform: scale(1.025); filter: brightness(1.04); }
}

@media (max-width: 900px) {
  .celestial { --c-size: 170px; }
}
@media (max-width: 560px) {
  .celestial { --c-size: 140px; }
}

/* Soft drifting daytime clouds */
.hero-clouds {
  position: absolute;
  left: 0; right: 0;
  top: 0;
  height: 45%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 24% 8% at 14% 32%, rgba(255,255,255,0.55), transparent 70%),
    radial-gradient(ellipse 18% 6% at 38% 18%, rgba(255,255,255,0.4),  transparent 70%),
    radial-gradient(ellipse 22% 7% at 68% 28%, rgba(255,255,255,0.45), transparent 70%),
    radial-gradient(ellipse 16% 5% at 88% 42%, rgba(255,255,255,0.35), transparent 70%);
}

/* Starfield (hidden in daytime hero, JS fades it in as sun sets) */
.hero-stars {
  position: absolute; inset: 0 0 50% 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 200ms linear;
}
.hero-stars span {
  position: absolute;
  width: 2px; height: 2px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.6;
  animation: twinkle 4s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.6); }
  50%      { opacity: 1;   transform: scale(1); }
}

/* Slow horizon light sweep (becomes the warm horizon glow at sunset) */
.hero-sweep {
  position: absolute;
  left: -40%;
  bottom: 30%;
  width: 60%;
  height: 220px;
  background: radial-gradient(ellipse at center, rgba(255,210,160,0.28), rgba(255,180,110,0.08) 30%, transparent 60%);
  filter: blur(40px);
  z-index: 1;
  animation: sweep 22s linear infinite;
  pointer-events: none;
}
@keyframes sweep {
  0%   { transform: translateX(0); opacity: 0.6; }
  50%  { opacity: 1; }
  100% { transform: translateX(220vw); opacity: 0.6; }
}

/* Distant city lights along horizon (fade in as sun sets) */
.hero-skyline {
  position: absolute;
  left: 0; right: 0;
  bottom: 36%;
  width: 100%;
  height: 50px;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  transition: opacity 200ms linear;
}

/* The yacht / catamaran */
.hero-yacht {
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: min(1100px, 96vw);
  transform: translateX(-50%);
  filter:
    drop-shadow(0 0 40px rgba(212,184,138,0.15))
    drop-shadow(0 20px 30px rgba(0,0,0,0.6));
  z-index: 4;
  animation: yacht-drift 14s ease-in-out infinite;
}

@keyframes yacht-drift {
  0%, 100% { transform: translateX(calc(-50% - 10px)) translateY(0); }
  50%      { transform: translateX(calc(-50% + 10px)) translateY(-3px); }
}

/* Yacht reflection */
.hero-reflection {
  position: absolute;
  left: 50%;
  bottom: -22%;
  width: min(1100px, 96vw);
  transform: translateX(-50%) scaleY(-1);
  opacity: 0.2;
  z-index: 3;
  filter: blur(2px);
  mask: linear-gradient(180deg, black 0%, transparent 80%);
  -webkit-mask: linear-gradient(180deg, black 0%, transparent 80%);
  animation: yacht-drift 14s ease-in-out infinite;
}

/* Water — the .hero gradient already paints the water band, this layer only
   adds a warm "sunset on the river" reflection that fades into the sky glow. */
.hero-water {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 36%;
  background:
    radial-gradient(ellipse 50% 65% at 50% 0%, var(--sky-glow), transparent 75%);
  z-index: 2;
  overflow: hidden;
}
.hero-water::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(180deg,
      transparent 0,
      transparent 8px,
      rgba(212,184,138,0.025) 8px,
      rgba(212,184,138,0.025) 9px);
  mask: linear-gradient(180deg, black, transparent 70%);
  -webkit-mask: linear-gradient(180deg, black, transparent 70%);
}

/* Animated wake under yacht */
.hero-wake {
  position: absolute;
  left: 50%;
  bottom: 18%;
  width: 60vw;
  height: 6px;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}
.hero-wake::before, .hero-wake::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,184,138,0.5), transparent);
  animation: wake 4s ease-in-out infinite;
}
.hero-wake::after { top: 4px; animation-delay: 1.2s; opacity: 0.5; }
@keyframes wake {
  0%   { transform: scaleX(0.3); opacity: 0; }
  50%  { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(0.3); opacity: 0; }
}

/* Floating particles (mist / light flecks) */
.hero-particles {
  position: absolute; inset: 0;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}
.hero-particles span {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: rgba(255, 240, 210, 0.55);
  box-shadow: 0 0 4px rgba(255, 220, 160, 0.6);
  animation: float-up 14s linear infinite;
}
@keyframes float-up {
  0%   { transform: translateY(20px); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-100vh); opacity: 0; }
}

/* Cinematic letterbox */
.hero::before, .hero::after {
  content: "";
  position: absolute; left: 0; right: 0;
  height: 56px;
  background: linear-gradient(180deg, rgba(0,0,0,1), rgba(0,0,0,0));
  z-index: 10;
  pointer-events: none;
}
.hero::before { top: 0; }
.hero::after  { bottom: 0; transform: scaleY(-1); }

/* Hero text */
.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 0 56px 80px;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px;
}

.hero-title-wrap { max-width: 820px; }
.hero-title-wrap .hero-meta-row { margin-top: 32px; }

.hero-pretitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  font-weight: 500;
  color: #fff7e0;
  letter-spacing: 0.08em;
  margin: 0 0 20px;
  padding: 9px 18px 9px 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(7,17,26,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}
.hero-pretitle::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--gold-bright);
}

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  color: #fff;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.45),
    0 6px 30px rgba(0,0,0,0.55);
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
}

.hero-sub {
  max-width: 480px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 300;
}

.hero-meta-row {
  display: flex;
  align-items: stretch;
  gap: 18px;
  flex-shrink: 0;
}

.hero-meta {
  text-align: right;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.8;
}
.hero-meta.hero-meta-framed {
  position: relative;
  padding: 18px 28px 16px;
  background: rgba(7,17,26,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-meta.hero-meta-framed .label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
  margin: 0;
  line-height: 1;
}
.hero-meta.hero-meta-framed .date {
  margin-top: 10px;
}
.hero-meta.hero-meta-framed .place {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 10px;
  line-height: 1;
}

.hero-meta .frame-corner {
  position: absolute;
  width: 14px; height: 14px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
}
.hero-meta .frame-corner.tl { top: -1px; left: -1px;  border-top-width: 1px; border-left-width: 1px; }
.hero-meta .frame-corner.tr { top: -1px; right: -1px; border-top-width: 1px; border-right-width: 1px; }
.hero-meta .frame-corner.bl { bottom: -1px; left: -1px;  border-bottom-width: 1px; border-left-width: 1px; }
.hero-meta .frame-corner.br { bottom: -1px; right: -1px; border-bottom-width: 1px; border-right-width: 1px; }

.hero-meta .date {
  font-family: var(--serif);
  font-style: italic;
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--gold-bright);
  display: block;
  line-height: 1;
}

.hero-cta {
  align-self: stretch;
  display: inline-flex;
}

.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint::after {
  content: "";
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: hint 1.8s ease-in-out infinite;
}
@keyframes hint {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; opacity: 0.4; }
  50%      { transform: scaleY(1); opacity: 1; }
}

/* ============================================================
   ROTATING WORDS BLOCK
   ============================================================ */
.rotator-section {
  padding: 160px 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-mid);
}

.rotator {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.rotator-line {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5.5vw, 76px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.rotator-line .swap {
  display: inline-block;
  position: relative;
  min-width: 6ch;
  color: var(--gold-bright);
  font-style: italic;
  font-weight: 400;
  text-align: left;
}
.rotator-line .swap span {
  position: absolute;
  left: 0; top: 0;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.rotator-line .swap span.is-active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}
.rotator-line .swap::after {
  content: "_";
  margin-left: 4px;
  color: var(--gold);
  animation: blink 1s steps(2, end) infinite;
  font-weight: 200;
}
@keyframes blink { 50% { opacity: 0; } }

.rotator-tail {
  margin-top: 40px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
}

/* ============================================================
   VISION / VOYAGE
   ============================================================ */
.section-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.section-grid .left-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.section-grid .left-eyebrow::before {
  content: "—— ";
}

.big-statement {
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.big-statement em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 400;
}

.section-body {
  margin-top: 32px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 560px;
}

/* ============================================================
   PILLARS
   ============================================================ */
.pillars-section { background: var(--bg-deep); }

.pillars-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 80px;
  gap: 40px;
}
.pillars-head h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  max-width: 700px;
}
.pillars-head h2 em { font-style: italic; color: var(--gold-bright); }
.pillars-head .index { 
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pillar {
  background: var(--bg-deep);
  padding: 44px 28px 36px;
  position: relative;
  transition: background 400ms ease;
}
.pillar:hover { background: var(--bg-elev); }
.pillar .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.pillar .ico {
  margin: 22px 0 28px;
  width: 48px; height: 48px;
  color: var(--gold-bright);
}
.pillar h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--ink);
}
.pillar p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  font-weight: 300;
}

/* ============================================================
   CAPTAIN
   ============================================================ */
.captain-section {
  background: var(--bg-mid);
  border-top: 1px solid var(--line);
}

.captain-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.captain-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #1a3a44 0%, #0a1820 100%);
  border: 1px solid var(--line-strong);
  overflow: hidden;
}
.captain-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(212,184,138,0.15), transparent 60%);
  pointer-events: none;
}
.captain-portrait .frame-corner {
  position: absolute;
  width: 22px; height: 22px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
  z-index: 3;
}
.captain-portrait .frame-corner.tl { top: 12px; left: 12px; border-top-width: 1px; border-left-width: 1px; }
.captain-portrait .frame-corner.tr { top: 12px; right: 12px; border-top-width: 1px; border-right-width: 1px; }
.captain-portrait .frame-corner.bl { bottom: 12px; left: 12px; border-bottom-width: 1px; border-left-width: 1px; }
.captain-portrait .frame-corner.br { bottom: 12px; right: 12px; border-bottom-width: 1px; border-right-width: 1px; }

.captain-portrait .badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(7,17,26,0.65);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  padding: 14px 20px;
  z-index: 4;
}
.captain-portrait .badge .role {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 6px;
}
.captain-portrait .badge .name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}

.captain-portrait svg.captain-illus {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

.captain-body h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 18px 0 32px;
}
.captain-body h2 em { font-style: italic; color: var(--gold-bright); }
.captain-body p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 540px;
}
.captain-body .quote {
  margin-top: 36px;
  padding-left: 24px;
  border-left: 1px solid var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  max-width: 520px;
}

/* ============================================================
   JOURNEY MAP
   ============================================================ */
.journey-section { background: var(--bg-deep); }

.journey-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 60px; gap: 40px;
}
.journey-head h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.journey-head h2 em { font-style: italic; color: var(--gold-bright); }

.journey-map {
  position: relative;
  background: linear-gradient(180deg, #0a1820 0%, #122a32 100%);
  border: 1px solid var(--line);
  padding: 60px 40px;
  min-height: 360px;
}
.journey-map svg { width: 100%; height: auto; display: block; }

.journey-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 40px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.journey-meta .item {
  background: var(--bg-deep);
  padding: 28px 24px;
}
.journey-meta .item .label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}
.journey-meta .item .value {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.journey-meta .item .value .sub {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ============================================================
   CLOSING / RSVP
   ============================================================ */
.closing-section {
  padding: 180px 36px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(212,184,138,0.12), transparent 70%),
    linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 100%);
  text-align: center;
  border-top: 1px solid var(--line);
}

.closing-statement {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  max-width: 1100px;
  margin: 0 auto;
}
.closing-statement em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 400;
}
.closing-divider {
  margin: 56px auto;
  width: 1px; height: 56px;
  background: var(--gold);
  opacity: 0.6;
}
.closing-tagline {
  font-size: 12px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 56px;
}

.cta-row {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 22px 34px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-bright);
  cursor: pointer;
  transition: all 300ms cubic-bezier(.2,.8,.2,1);
  font-family: var(--sans);
}
.btn:hover {
  background: var(--gold);
  color: var(--bg-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212,184,138,0.2);
}
.btn.primary {
  background: var(--gold);
  color: var(--bg-deep);
}
.btn.primary:hover {
  background: var(--gold-bright);
}
.btn .arrow {
  width: 28px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width 250ms ease;
}
.btn .arrow::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.btn:hover .arrow { width: 40px; }

/* ============================================================
   RSVP FORM (in closing section)
   ============================================================ */
.rsvp-form {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
  text-align: left;
}
.rsvp-field { display: flex; flex-direction: column; gap: 8px; }
.rsvp-field-full { grid-column: 1 / -1; }
.rsvp-field label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 500;
}
.rsvp-field input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.01em;
  transition: border-color 250ms ease, background 250ms ease;
  outline: none;
}
.rsvp-field input:hover { border-color: var(--line-strong); }
.rsvp-field input:focus {
  border-color: var(--gold);
  background: rgba(212,184,138,0.06);
}
.rsvp-field input::placeholder { color: var(--ink-mute); }
.rsvp-form .cta-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.rsvp-thanks {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 32px 24px;
  border: 1px solid var(--line-strong);
  background: rgba(212,184,138,0.04);
}
.rsvp-thanks-eyebrow {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.rsvp-thanks-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 4.5vw, 44px);
  color: var(--gold-bright);
  margin-bottom: 14px;
  line-height: 1;
}
.rsvp-thanks p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.rsvp-thanks-link {
  display: inline-block;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 200ms ease, border-color 200ms ease;
}
.rsvp-thanks-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 40px 36px;
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
footer .brands {
  display: flex; gap: 18px; align-items: center;
}
footer .brands .sep { opacity: 0.4; }
footer .brands .lxl {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--gold-bright);
}

/* ============================================================
   ENTRANCE ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1000ms cubic-bezier(.2,.8,.2,1),
              transform 1000ms cubic-bezier(.2,.8,.2,1);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 120ms; }
.reveal.delay-2 { transition-delay: 240ms; }
.reveal.delay-3 { transition-delay: 360ms; }
.reveal.delay-4 { transition-delay: 480ms; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .side-index { display: none; }
  .top-bar { padding: 14px 18px; font-size: 9px; }
  .top-bar .brands { gap: 10px; }
  .top-bar .brands span { font-size: 8px; }
  .top-bar .brands .lxl { font-size: 14px; }
  .top-bar .corner { display: none; }

  section { padding: 80px 22px; }

  /* Hero */
  .hero { min-height: 100vh; min-height: 100svh; }
  .hero-content { padding: 0 22px 56px; flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-meta { text-align: left; }
  .hero-meta-row { flex-direction: column; align-items: stretch; width: 100%; gap: 14px; }
  .hero-meta.hero-meta-framed { padding: 14px 20px 14px; }
  .hero-meta .date { font-size: 30px; }
  .hero-cta { width: 100%; justify-content: center; }
  .hero-title { font-size: clamp(32px, 9vw, 56px); line-height: 0.98; }
  .hero-sub { font-size: 14px; }
  .hero-yacht, .hero-reflection { width: 130vw; }
  .scroll-hint { font-size: 9px; bottom: 16px; }

  /* Star Wars intro crawl — center & smaller */
  .star-wars { perspective: 320px; }
  .crawl { width: min(560px, 92vw); font-size: clamp(17px, 4.6vw, 24px); }
  .crawl-title { margin-bottom: 56px; }
  .intro-skip { bottom: 22px; right: 22px; padding: 10px 16px; font-size: 9px; }

  /* Section 02 — Daylight catamaran */
  .daylight-section { min-height: 100vh; min-height: 100svh; padding: 0 !important; }
  .daylight-sun { width: 90px; height: 90px; right: 8%; top: 8%; }
  .daylight-clouds { height: 38%; }
  .daylight-skyline { bottom: 32%; height: 9%; }
  .daylight-river { height: 32%; }
  .daylight-catamaran {
    bottom: 22%;
    width: min(420px, 80vw);
  }
  .daylight-content {
    padding: 0 22px;
    margin-top: 12vh;
    max-width: 100%;
  }
  .daylight-content h2 {
    font-size: clamp(34px, 9vw, 56px);
    line-height: 1.02;
    margin: 14px 0 14px;
  }
  .daylight-content p {
    font-size: 15px;
    max-width: 100%;
  }

  .section-grid { grid-template-columns: 1fr; gap: 32px; }
  .captain-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Pillars: stack to 1 column on small phones, keep 2 columns on larger phones */
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar { padding: 32px 22px 28px; }
  .pillar h4 { font-size: 19px; }
  .pillar p { font-size: 13px; }
  .pillars-head { margin-bottom: 48px; }
  .pillars-head h2 { font-size: clamp(32px, 8vw, 48px); }

  /* Journey */
  .journey-meta { grid-template-columns: 1fr; }
  .journey-map { padding: 30px 18px; min-height: 240px; }
  .journey-head h2 { font-size: clamp(32px, 8vw, 48px); }
  .pillars-head, .journey-head { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* Closing / RSVP */
  .closing-section { padding: 120px 22px; }
  .closing-statement { font-size: clamp(32px, 9vw, 52px); }
  .closing-divider { margin: 40px auto; height: 40px; }
  .closing-tagline { font-size: 10px; letter-spacing: 0.32em; }
  .btn { padding: 18px 24px; font-size: 10px; }
  .rsvp-form { grid-template-columns: 1fr; gap: 14px; }
  .rsvp-form .cta-row { margin-top: 10px; }
  .hero-cta { margin-top: 22px; }

  /* Announcement */
  .announcement-section { padding: 110px 22px; }
  .announcement-grid { grid-template-columns: 1fr; gap: 18px; }
  .ann-card { padding: 28px 22px 26px; }
  .announcement-meta { grid-template-columns: 1fr; gap: 22px; padding: 26px 0; }
  .announcement-head { flex-direction: column; align-items: flex-start; gap: 18px; margin: 28px 0 22px; }
  .ann-mark { width: 80px; height: 80px; }
  .announcement-title { font-size: clamp(44px, 12vw, 72px); }
  .announcement-lede { font-size: 16px; margin-bottom: 44px; }
  .ann-meta-value { font-size: 24px; }

  /* Rotator */
  .rotator-section { padding: 100px 22px; }
  .rotator-line { font-size: clamp(28px, 8vw, 44px); }

  /* Footer */
  footer { padding: 28px 22px; font-size: 9px; flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 560px) {
  .pillars { grid-template-columns: 1fr; }
  .daylight-content h2 { font-size: clamp(30px, 8.5vw, 44px); }
  .top-bar .brands { gap: 8px; }
  .top-bar .brands span { font-size: 7.5px; }

  /* Hero title compressed once more for narrow phones */
  .hero-title { font-size: clamp(28px, 9vw, 42px); line-height: 1.0; margin-bottom: 22px; }
  .hero-pretitle { font-size: 11px; padding: 7px 14px 7px 12px; }

  /* Tighten celestial moon lock so it doesn't crowd the headline on narrow phones */
  .celestial { --c-size: 160px; }
}

/* ============================================================
   ANNOUNCEMENT — LX CLUB
   ============================================================ */
.announcement-section {
  position: relative;
  overflow: hidden;
  padding: 140px 36px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 35%, rgba(40,70,82,0.45), transparent 70%),
    linear-gradient(180deg, #050d15 0%, #08161f 40%, #0a1c26 100%);
  color: var(--ink-soft);
}
.announcement-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 1100px;
  background: radial-gradient(circle, rgba(212,184,138,0.10) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.announcement-wrap { position: relative; z-index: 2; max-width: 1180px; margin: 0 auto; }
.announcement-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 18px;
  border: 1px solid rgba(212,184,138,0.35);
  border-radius: 999px;
  background: rgba(212,184,138,0.04);
}
.announcement-eyebrow .ann-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 10px var(--gold-bright);
  animation: ann-pulse 2s ease-in-out infinite;
}
@keyframes ann-pulse {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 1; }
}

.announcement-head {
  display: flex; align-items: flex-end; gap: 36px;
  margin: 36px 0 28px;
}
.ann-mark { width: 110px; height: 110px; flex-shrink: 0; opacity: 0.95; }
.ann-mark svg { width: 100%; height: 100%; }
.announcement-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(60px, 8vw, 130px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: #f6efe1;
  margin: 0;
}
.announcement-title em {
  font-style: italic;
  color: var(--gold-bright);
}

.announcement-lede {
  max-width: 760px;
  font-size: 19px;
  line-height: 1.6;
  font-weight: 300;
  color: rgba(246,239,225,0.85);
  margin: 0 0 64px;
}

.announcement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}
.ann-card {
  position: relative;
  padding: 36px 28px 32px;
  border: 1px solid rgba(212,184,138,0.18);
  background: linear-gradient(180deg, rgba(212,184,138,0.04), rgba(0,0,0,0.15));
  border-radius: 4px;
}
.ann-card .ann-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: 0.85;
}
.ann-card h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  color: #f6efe1;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.ann-card p {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 300;
  color: rgba(246,239,225,0.78);
  margin: 0;
}

.announcement-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 36px 0;
  border-top: 1px solid rgba(212,184,138,0.18);
  border-bottom: 1px solid rgba(212,184,138,0.18);
  margin-bottom: 36px;
}
.ann-meta-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 12px;
}
.ann-meta-value {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  color: #f6efe1;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.ann-meta-value .sub {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  font-weight: 300;
  color: rgba(246,239,225,0.6);
  letter-spacing: 0;
  margin-top: 6px;
}

.announcement-tag {
  text-align: center;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--gold);
  opacity: 0.85;
}
.announcement-tag em { font-style: italic; }
