/* ═══════════════════════════════════════════════════════════════
   SKIN CAPITAL  —  Premium Design System
   Palette: Pure White (#FFFFFF) + Cobalt (#1E3A8A) only
   ═══════════════════════════════════════════════════════════════ */

:root {
  --cobalt:            #1E3A8A;
  --cobalt-deep:       #152d6e;
  --cobalt-mid:        #2548b3;
  --white:             #FFFFFF;
  --off-white:         #FFFAF5;

  /* Brand-kit warm accents — used sparingly for editorial texture */
  --paper:             #FFFAF5;
  --cream:             #F0E5DD;
  --mocha:             #B5998D;
  --blush:             #EEC6D2;

  --body-on-white:     #2C3E68;   /* dark-cobalt, readable on white */
  --muted-on-white:    #64748B;   /* slate for captions & labels on white */
  --rule-on-white:     rgba(30, 58, 138, 0.12);  /* hairline dividers on white */

  --body-on-cobalt:    rgba(255,255,255,0.82);
  --muted-on-cobalt:   rgba(255,255,255,0.52);
  --rule-on-cobalt:    rgba(255,255,255,0.12);

  --body-on-cream:     #3C3128;
  --muted-on-cream:    #8A7566;
  --rule-on-cream:     rgba(30, 58, 138, 0.14);

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Manrope', system-ui, sans-serif;
  /* Legacy aliases — kept so existing utility classes below don't need touching */
  --font-classic:  var(--font-display);
  --font-serif:    'Skin Apple Garamond', var(--font-display);
  --font-sans:     var(--font-body);

  --pad-v:  clamp(88px, 10vw, 154px);
  --pad-h:  clamp(24px, 5vw, 72px);
  --max-w:  1320px;
  --nav-h:  88px;
  --nav-h-scrolled: 72px;

  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard:  cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow:   0.6s  var(--ease-out-expo);
  --t-fast:   0.22s var(--ease-standard);
}

@font-face {
  font-family: 'Skin Vogue';
  src: url('../fonts/Vogue.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Skin Apple Garamond';
  src: url('../fonts/AppleGaramond-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Skin Apple Garamond';
  src: url('../fonts/AppleGaramond-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* Type system loads from Google Fonts (see index.html <head>):
   Cormorant Garamond for display/editorial, Manrope for UI/body. */

/* ── RESET ──────────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; scroll-padding-top:var(--nav-h); }
html, body { max-width: 100%; overflow-x: clip; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--body-on-white);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display:block; max-width:100%; height:auto; }
a   { text-decoration:none; color:inherit; }
ul  { list-style:none; }
button { cursor:pointer; font-family:inherit; }

/* ── LAYOUT HELPERS ─────────────────────────────────────────────── */
.container {
  width:100%;
  max-width:var(--max-w);
  margin:0 auto;
  padding-left:var(--pad-h);
  padding-right:var(--pad-h);
}
.container.narrow { max-width:860px; }
.section { padding:var(--pad-v) 0; }

/* surface tokens */
.bg-white  { background:var(--white); }
.bg-off    { background:var(--off-white); }
.bg-cobalt { background:var(--cobalt); }
.bg-paper  { background:var(--paper); }
.bg-cream  { background:var(--cream); }

/* text tokens */
.tc-cobalt { color:var(--cobalt); }
.tc-white  { color:var(--white); }
.tc-muted  { color:var(--muted-on-white); }
.tc-body-cobalt { color:var(--body-on-cobalt); }
.tc-mocha  { color:var(--mocha); }

/* cream/paper sections read like the white sections — cobalt eyebrow, warm body ink */
.bg-paper .eyebrow,
.bg-cream .eyebrow { color:var(--cobalt); }

/* font tokens */
.ff-display { font-family:var(--font-display); }
.ff-classic { font-family:var(--font-classic); }
.ff-serif   { font-family:var(--font-serif); }

/* ── TYPOGRAPHY SCALE ───────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-sans);
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 22px;
}
/* white sections → cobalt eyebrow */
.bg-white .eyebrow,
.bg-off   .eyebrow { color:var(--cobalt); }
/* cobalt sections → white eyebrow */
.bg-cobalt .eyebrow { color:rgba(255,255,255,0.7); }

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(44px, 7.5vw, 96px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.body-lg {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
  font-weight: 300;
}
.body-md  { font-size:clamp(15px,1.15vw,17px); line-height:1.75; }
.label-sm {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  height: 52px;
  padding: 0 36px;
  border: 1.5px solid transparent;
  border-radius: 1px;
  white-space: nowrap;
  transition: background var(--t-fast),
              color var(--t-fast),
              border-color var(--t-fast),
              transform var(--t-fast),
              box-shadow var(--t-fast);
}
.btn:hover { transform:translateY(-2px); }

/* Cobalt fill — on white sections */
.btn-cobalt {
  background: var(--cobalt);
  color: var(--white);
  border-color: var(--cobalt);
}
.btn-cobalt:hover {
  background: var(--cobalt-deep);
  border-color: var(--cobalt-deep);
  box-shadow: 0 12px 28px rgba(30,58,138,0.18);
}

/* White fill — on cobalt sections */
.btn-white {
  background: var(--white);
  color: var(--cobalt);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off-white);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* Outline cobalt — secondary on white sections */
.btn-outline-cobalt {
  background: transparent;
  color: var(--cobalt);
  border-color: var(--cobalt);
}
.btn-outline-cobalt:hover {
  background: var(--cobalt);
  color: var(--white);
}

/* Outline white — secondary on cobalt sections */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--cobalt);
  border-color: var(--white);
}

.btn-sm { height:40px; padding:0 22px; font-size:11px; }
.btn-full { width:100%; justify-content:center; }

/* ── SITE HEADER ────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 900;
  display: flex;
  align-items: center;
  /* A permanent dark scrim — not fully transparent — so nav stays legible
     over any hero image, regardless of what's behind it. Fades to nothing
     just below the bar so it still reads as "floating over the photo". */
  background: linear-gradient(180deg, rgba(8,14,36,0.56) 0%, rgba(8,14,36,0.30) 74%, rgba(8,14,36,0) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.45s var(--ease-standard),
              box-shadow 0.45s var(--ease-standard),
              height 0.45s var(--ease-standard),
              backdrop-filter 0.45s var(--ease-standard);
}
/* Once the user scrolls: denser, blurred, slightly shorter bar */
.site-header.scrolled {
  height: var(--nav-h-scrolled);
  background: rgba(10, 18, 44, 0.78);
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
  box-shadow: 0 12px 36px rgba(6,12,32,0.18);
}

.header-inner {
  /* True 3-column grid: logo | nav | actions — nav is centred on the
     viewport regardless of how wide the logo or actions column is,
     which a flex "space-between" layout cannot guarantee. */
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(48px, 5vw, 72px);
}

/* Logo — large, always visible, generous breathing room */
.logo {
  display: flex;
  align-items: center;
  justify-self: start;
  flex-shrink: 0;
  z-index: 901;
}
.logo-img {
  height: 92px;
  width: auto;
  display: block;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.24));
  transition: height 0.45s var(--ease-standard), filter 0.45s var(--ease-standard);
}
.site-header.scrolled .logo-img { height: 76px; }

/* Desktop nav — sits in the true centre column of the grid, vertically
   centred with the logo and actions on a single shared baseline */
.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-links {
  display: flex;
  align-items: center;
  height: 100%;
  gap: clamp(26px, 2.8vw, 44px);
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0;
  position: relative;
  transition: color var(--t-fast), opacity var(--t-fast);
}
.nav-links a:hover { color: rgba(255,255,255,0.96); }
/* Subtle active state — current section only, never on hover */
.nav-links a.is-active { color: var(--white); }
.nav-links a.is-active::after {
  content: '';
  position: absolute;
  left: 12%; right: 12%; bottom: 4px;
  height: 1px;
  background: var(--white);
  border-radius: 1px;
  opacity: 0.85;
}

/* Header actions — anchored to the right column of the grid */
.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  justify-content: flex-end;
  flex-shrink: 0;
  gap: 14px;
  min-width: 0;
}

/* Language switcher — minimal text row, not a boxed control */
.lang-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 44px;
}
.lang-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 44px;
  min-width: 86px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 1px;
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.06em;
  line-height: 1;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.lang-trigger:hover,
.lang-dropdown.is-open .lang-trigger {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.34);
}
.lang-globe { font-size: 14px; line-height: 1; }
.lang-chevron {
  font-size: 10px;
  opacity: 0.72;
  transform: translateY(-1px);
  transition: transform var(--t-fast);
}
.lang-dropdown.is-open .lang-chevron { transform: translateY(-1px) rotate(180deg); }
.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 178px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 2px;
  background: rgba(11, 19, 43, 0.90);
  box-shadow: 0 18px 44px rgba(4,10,24,0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--t-fast), visibility var(--t-fast), transform var(--t-fast);
}
.lang-dropdown.is-open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-option {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  width: 100%;
  min-height: 38px;
  padding: 0 10px;
  border: 0;
  border-radius: 1px;
  background: transparent;
  color: rgba(255,255,255,0.76);
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  transition: background var(--t-fast), color var(--t-fast);
}
.lang-option:hover,
.lang-option.is-active {
  background: rgba(255,255,255,0.10);
  color: var(--white);
}
.lang-option.is-active .lang-check::before { content: '\2713'; }

/* Header CTA — stands out, stays proportionate to the header's scale */
.header-cta {
  height: 44px;
  padding: 0 34px;
  font-size: 11px;
  letter-spacing: 0.14em;
  border-color: rgba(255,255,255,0.92);
  box-shadow: 0 10px 28px rgba(3,8,22,0.12);
}
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(3,8,22,0.20);
}

/* Burger */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  background: none;
  border: none;
  padding: 0;
  z-index: 901;
}
.burger-btn span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: var(--t-slow);
}
.burger-btn.is-open span:nth-child(1) { transform:translateY(7.25px) rotate(45deg); }
.burger-btn.is-open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.burger-btn.is-open span:nth-child(3) { transform:translateY(-7.25px) rotate(-45deg); }

/* ── MOBILE MENU ────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 899;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 24px) var(--pad-h) 56px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-slow);
}
.mobile-menu.is-open { opacity:1; pointer-events:all; }
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  max-width: 480px;
  width: 100%;
}
.mob-nav { display:flex; flex-direction:column; gap:4px; }
.mob-nav li {
  border-bottom: 1px solid var(--rule-on-white);
  opacity: 0; transform:translateY(16px);
  transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
}
.mob-nav li:first-child { border-top:1px solid var(--rule-on-white); }
.mobile-menu.is-open .mob-nav li { opacity:1; transform:translateY(0); }
.mobile-menu.is-open .mob-nav li:nth-child(1){transition-delay:.08s}
.mobile-menu.is-open .mob-nav li:nth-child(2){transition-delay:.13s}
.mobile-menu.is-open .mob-nav li:nth-child(3){transition-delay:.18s}
.mobile-menu.is-open .mob-nav li:nth-child(4){transition-delay:.23s}
.mobile-menu.is-open .mob-nav li:nth-child(5){transition-delay:.28s}
.mobile-menu.is-open .mob-nav li:nth-child(6){transition-delay:.33s}
.mob-nav a {
  display:block;
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 40px);
  color: var(--cobalt);
  padding: 14px 0;
  letter-spacing: -0.01em;
  transition: color var(--t-fast);
}
.mob-nav a:hover { color:var(--cobalt-mid); }
.mob-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 16px;
  opacity: 0; transform:translateY(12px);
  transition: opacity 0.5s var(--ease-out-expo) 0.42s,
              transform 0.5s var(--ease-out-expo) 0.42s;
}
.mobile-menu.is-open .mob-footer { opacity:1; transform:translateY(0); }
.lang-dropdown-mob {
  align-self: flex-start;
}
.lang-dropdown-mob .lang-trigger {
  border-color: var(--rule-on-white);
  background: rgba(30, 58, 138, 0.04);
  color: var(--cobalt);
}
.lang-dropdown-mob .lang-trigger:hover,
.lang-dropdown-mob.is-open .lang-trigger {
  border-color: rgba(30,58,138,0.24);
  background: rgba(30, 58, 138, 0.08);
}
.lang-dropdown-mob .lang-menu {
  top: auto;
  bottom: calc(100% + 10px);
  left: 0;
  right: auto;
  border-color: var(--rule-on-white);
  background: rgba(255,255,255,0.94);
  box-shadow: 0 18px 44px rgba(30,58,138,0.14);
}
.lang-dropdown-mob .lang-option {
  color: var(--body-on-white);
}
.lang-dropdown-mob .lang-option:hover,
.lang-dropdown-mob .lang-option.is-active {
  background: rgba(30,58,138,0.08);
  color: var(--cobalt);
}

/* ── HERO ───────────────────────────────────────────────────────── */
.hero-scroll {
  position: relative;
  height: 100dvh;
  min-height: 780px;
  overflow: hidden;
  background: var(--cobalt-deep);
}
.hero-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg-container {
  position: absolute;
  inset: 0;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  /* Lifted brightness — photo breathes and reads as a real venue */
  filter: brightness(0.78) saturate(0.88);
  animation: heroZoom 24s ease-in-out infinite alternate;
}
/* Strong left-to-right scrim: text sits in a fully legible zone on the
   left, the right side stays open as pure photographic atmosphere.
   A slight blur softens the busy parts of the photo (signage, people)
   without a heavy filter on the image itself. */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 14, 42, 0.92) 0%,
    rgba(5, 14, 42, 0.65) 45%,
    rgba(5, 14, 42, 0.35) 100%
  );
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
}
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 140px rgba(6,12,32,0.45);
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 56px) clamp(28px, 5vw, 64px) clamp(24px, 4vw, 48px);
}

/* Single focal column — everything left-aligned, right side left open
   as breathing room over the photo. */
.hero-copy { max-width: 820px; }

.hero-content .eyebrow {
  color: rgba(255,255,255,0.90);
  margin-bottom: clamp(16px, 2vw, 24px);
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 820px;
  text-shadow: 0 2px 28px rgba(0,0,0,0.35);
}

.hero-bottom-row {
  margin-top: clamp(42px, 5.8vw, 64px);
  padding-top: clamp(30px, 4vw, 44px);
  border-top: 1px solid rgba(255,255,255,0.24);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(34px, 4.4vw, 48px);
}
.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 300;
  color: rgba(255,255,255,0.90);
  line-height: 1.6;
  max-width: min(860px, calc(100vw - 128px));
  white-space: nowrap;
  text-shadow: 0 1px 10px rgba(0,0,0,0.28);
}
.hero-actions-container {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Primary hero CTA — solid, the one unmissable action */
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 34px;
  background: var(--white);
  color: var(--cobalt);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.hero-cta-primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.22);
}

/* Secondary hero links — minimal underline links, not competing boxes */
.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 28px;
  border: 1px solid rgba(255,255,255,0.52);
  background: rgba(255,255,255,0.04);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86);
  white-space: nowrap;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.hero-cta-secondary:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.86);
  transform: translateY(-2px);
}

/* Staggered hero entrance */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  animation: fadeUpIn 1.1s var(--ease-out-expo) forwards;
}
.hero-content .eyebrow.fade-up { animation-delay: 0.08s; }
.hero-title.fade-up            { animation-delay: 0.22s; }
.hero-bottom-row.fade-up       { animation-delay: 0.42s; }

@keyframes fadeUpIn { to { opacity:1; transform:translateY(0); } }
@keyframes heroZoom {
  0%   { transform:scale(1.08) translateX(0); }
  100% { transform:scale(1.00) translateX(-8px); }
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
}
.hero-scroll-cue span {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hero-scroll-cue i {
  display: block;
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.5);
  overflow: hidden;
  position: relative;
}
.hero-scroll-cue i::after {
  content: '';
  position: absolute;
  left: 0; top: -100%;
  width: 100%; height: 100%;
  background: var(--white);
  animation: scrollCue 2.2s ease-in-out infinite;
}
@keyframes scrollCue {
  0%   { top: -100%; }
  60%  { top: 100%; }
  100% { top: 100%; }
}
@media (max-width: 640px), (max-height: 760px) { .hero-scroll-cue { display:none; } }

/* Thin cobalt rule at bottom of hero as transition signal */
.hero-scroll::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cobalt-mid);
  opacity: 0.6;
  z-index: 4;
}

@media (max-width: 640px) {
  .hero-sub { max-width: 100%; white-space: normal; }
  .hero-actions-container { width:100%; flex-direction:column; align-items:stretch; }
  .hero-actions-container > a { width:100%; }
}

/* ── TWO-COLUMN GRID ────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ── EDITORIAL / ABOUT ─────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(48px, 7vw, 104px);
  align-items: start;
}
.about-sticky { position: sticky; top: calc(var(--nav-h) + 32px); }
.about-img-frame {
  margin-top: 36px;
  border-left: 2px solid var(--cobalt);
  padding-left: 28px;
  overflow: hidden;
}
.about-img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.92);
  transition: transform 1.4s var(--ease-out-expo);
}
.about-img:hover { transform: scale(1.025); }

/* Story typography */
.story-stack { display:flex; flex-direction:column; gap:clamp(22px, 2.4vw, 34px); }
.story-lead {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 300;
  line-height: 1.35;
  color: var(--cobalt);
}
.story-body { display:flex; flex-direction:column; gap:20px; color:var(--body-on-white); }
.story-body p { font-size:16px; line-height:1.8; }
.editorial-quote {
  position: relative;
  border-top: 1px solid rgba(181,153,141,0.28);
  border-bottom: 1px solid rgba(181,153,141,0.22);
  padding: clamp(34px, 4vw, 52px) 0;
  margin: clamp(12px, 2vw, 24px) 0;
}
.editorial-quote .q-mark {
  position: absolute;
  top: -10px; left: -6px;
  font-size: 96px;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(30,58,138,0.06);
  user-select: none;
}
.story-finale {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--cobalt);
}

/* ── STORY BEATS — editorial rhythm system (About flow) ──────────── */
.story-beat { position: relative; overflow: hidden; }
.story-beat > .container { position: relative; z-index: 1; }

/* Oversized decorative serif mark — pure typography-as-texture, no imagery required */
.ghost-mark {
  position: absolute;
  font-family: Georgia, serif;
  font-size: clamp(220px, 30vw, 420px);
  line-height: 1;
  color: var(--cobalt);
  opacity: 0.032;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}
.bg-cobalt .ghost-mark { color: var(--white); opacity: 0.035; }
.ghost-mark.top-left     { top: -0.28em; left: -0.06em; }
.ghost-mark.bottom-right { bottom: -0.4em; right: -0.06em; }

/* Premium product framing — for the hero_serum macro shot */
.product-frame {
  position: relative;
  background: linear-gradient(135deg, var(--paper), var(--cream));
  padding: clamp(30px, 4.4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-frame-card {
  width: 100%;
  max-width: 380px;
  overflow: hidden;
  box-shadow: 0 34px 70px -30px rgba(60,49,40,0.34);
}
.product-frame-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.6s var(--ease-out-expo);
}
.product-frame:hover .product-frame-card img { transform: scale(1.04); }
.product-frame-caption {
  position: absolute;
  left: clamp(20px, 3vw, 32px);
  bottom: clamp(18px, 3vw, 28px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mocha);
}

/* Thin botanical line-art accent — pure SVG stroke, brand-neutral */
.line-deco {
  position: absolute;
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}
.line-deco.right { right: clamp(8px, 4vw, 64px); top: 50%; transform: translateY(-50%); }


/* ── KEYWORD LIST ───────────────────────────────────────────────── */
/* ── VISUAL COLLAGE ─────────────────────────────────────────────── */
.collage {
  position: relative;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.collage-ring {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.10);
}
.collage-img {
  position: relative;
  z-index: 2;
  width: 82%;
  height: 88%;
  object-fit: cover;
  box-shadow: 0 34px 80px -34px rgba(0,0,0,0.35);
}
.collage-stat {
  position: absolute;
  bottom: 36px; right: 16px;
  z-index: 3;
  background: var(--white);
  color: var(--cobalt);
  padding: 18px 26px;
  text-align: center;
  box-shadow: 0 18px 48px -26px rgba(0,0,0,0.28);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  display: block;
  color: var(--cobalt);
}
.stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-top: 4px;
  display: block;
}

/* ── IMAGE FRAME (B2B) ──────────────────────────────────────────── */
.img-frame {
  position: relative;
  height: 500px;
}
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}
.img-frame-border {
  position: absolute;
  top: 14px; left: -14px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--cobalt);
  z-index: 1;
  pointer-events: none;
  /* on cobalt bg, use white outline */
  opacity: 0.18;
}
.bg-cobalt .img-frame-border { border-color:var(--white); opacity:0.14; }

/* ── PARTNER PILLARS ─────────────────────────────────────────────  */
.pillar-stack { display:flex; flex-direction:column; gap:2px; }
.pillar {
  padding: 28px 32px;
  border: 1px solid var(--rule-on-cobalt);
  display: flex;
  align-items: flex-start;
  gap: 22px;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.pillar:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.28);
}
.pillar-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.pillar-body {}
.pillar-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}
.pillar-desc { font-size:14px; line-height:1.65; color:var(--body-on-cobalt); }

/* ── TICKETS ─────────────────────────────────────────────────────── */
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 72px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.18);
}
.ticket-card {
  background: var(--white);
  padding: clamp(44px, 4vw, 58px) clamp(32px, 3.2vw, 44px);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
/* vertical rule between cards */
.ticket-card + .ticket-card { border-left:0; }

.ticket-card:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 18px 48px -36px rgba(30,58,138,0.34);
}
.ticket-card.is-featured {
  background: var(--cobalt);
  color: var(--white);
}
/* Higher specificity than the responsive ".ticket-card + .ticket-card"
   divider rule below, so this always wins regardless of viewport width */
.ticket-grid .ticket-card.is-featured {
  border-top: 0;
  border-bottom: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.ticket-card.is-featured:hover { background: var(--cobalt-mid); }

.featured-tag {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  background: var(--cobalt);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  white-space: nowrap;
}
.is-featured .featured-tag {
  background: var(--cobalt-deep);
  color: var(--white);
}

.ticket-type {
  font-family: var(--font-classic);
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: var(--cobalt);
}
.is-featured .ticket-type { color:var(--white); }

.ticket-price-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 28px;
}
.price-cur { font-size:18px; font-weight:500; color:var(--cobalt); line-height:1; }
.is-featured .price-cur { color:rgba(255,255,255,0.7); }
.price-num {
  font-family: var(--font-display);
  font-size: clamp(52px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
  color: var(--cobalt);
}
.is-featured .price-num { color:var(--white); }

.ticket-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 28px;
  flex: 1;
  color: var(--muted-on-white);
}
.is-featured .ticket-desc { color:var(--body-on-cobalt); }

.ticket-features {
  border-top: 1px solid var(--rule-on-white);
  padding-top: 24px;
  margin-bottom: 36px;
}
.is-featured .ticket-features { border-top-color:var(--rule-on-cobalt); }
.ticket-features li {
  font-size: 13px;
  line-height: 1.6;
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
  color: var(--body-on-white);
}
.is-featured .ticket-features li { color:var(--body-on-cobalt); }
.ticket-features li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--cobalt);
  font-weight: 700;
}
.is-featured .ticket-features li::before { color:rgba(255,255,255,0.55); }

/* ── WETICKET EMBED ─────────────────────────────────────────────── */
.wt-container {
  /* Matches .ticket-grid's width — both fill the section container */
}
.wt-card {
  background: var(--white);
  border: 1px solid var(--rule-on-white);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px);
}
.wt-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 24px;
  display: block;
}
.wt-placeholder-box {
  background: var(--off-white);
  border: 1px solid var(--rule-on-white);
  border-radius: 14px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 40px 24px;
}
.wt-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(30,58,138,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cobalt);
}
.wt-placeholder-title {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--cobalt);
  text-align: center;
  max-width: 380px;
}
.wt-placeholder-sub {
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--muted-on-white);
  text-align: center;
}

/* ── FAQ ACCORDION ──────────────────────────────────────────────── */
.faq-list { display:flex; flex-direction:column; margin-top:clamp(48px, 5vw, 72px); }
.faq-item { border-top: 1px solid rgba(30,58,138,0.10); }
.faq-item:last-child { border-bottom: 1px solid var(--rule-on-white); }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  text-align: left;
  gap: 24px;
}
.faq-q {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--cobalt);
  line-height: 1.45;
}
.faq-icon {
  width: 20px; height: 20px;
  position: relative;
  flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--cobalt);
  border-radius: 1px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.faq-icon::before { top:9px; left:0; width:100%; height:2px; }
.faq-icon::after  { top:0; left:9px; width:2px; height:100%; }
.faq-btn[aria-expanded="true"] .faq-icon::after { transform:rotate(90deg); opacity:0; }
.faq-btn[aria-expanded="true"] .faq-icon::before { transform:rotate(180deg); }
.faq-panel { max-height:0; overflow:hidden; transition:max-height 0.44s var(--ease-out-expo); }
.faq-panel-inner {
  padding: 0 0 28px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted-on-white);
  max-width: 640px;
}

/* ── FOOTER ─────────────────────────────────────────────────────── */
.site-footer {
  background: var(--cobalt);
  color: var(--white);
  padding: clamp(92px, 9vw, 128px) 0 52px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.9fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  margin-bottom: 72px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--white);
  display: block;
  margin-bottom: 18px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--body-on-cobalt);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 40px;
}
/* Newsletter form */
.nl-form { display:flex; border-bottom:1.5px solid rgba(255,255,255,0.22); max-width:400px; }
.nl-form:focus-within { border-bottom-color:var(--white); }
.nl-input {
  flex: 1;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--white);
  padding: 10px 0;
}
.nl-input::placeholder { color:rgba(255,255,255,0.36); }
.nl-input:focus { outline: none; }
.nl-submit {
  background: none;
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 8px 0 8px 12px;
  opacity: 0.7;
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.nl-submit:hover { opacity:1; transform:translateX(3px); }

/* Footer col */
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
  margin-bottom: 24px;
}
.footer-links { display:flex; flex-direction:column; gap:12px; }
.footer-links a { font-size:14px; color:var(--body-on-cobalt); transition:color var(--t-fast), transform var(--t-fast); }
.footer-links a:hover { color:var(--white); }
.footer-contact p { font-size:14px; color:var(--body-on-cobalt); margin-bottom:10px; }
.footer-contact a { transition:color var(--t-fast); }
.footer-contact a:hover { color:var(--white); }

/* Footer bottom */
.footer-rule { height:1px; background:var(--rule-on-cobalt); margin-bottom:36px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--muted-on-cobalt);
}
.footer-legal { display:flex; gap:24px; }
.footer-legal a { transition:color var(--t-fast); }
.footer-legal a:hover { color:var(--white); }

/* ── SCROLL REVEAL ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal.in { opacity:1; transform:translateY(0); }
.reveal.delay-1 { transition-delay:0.12s; }
.reveal.delay-2 { transition-delay:0.22s; }
.reveal.delay-3 { transition-delay:0.32s; }

/* ── TEXT DIVIDER LINE ──────────────────────────────────────────── */
.h-rule { height:1px; background:var(--rule-on-white); margin:0; }
.h-rule.on-cobalt { background:var(--rule-on-cobalt); }

/* ── SECTION HEADER SHARED ──────────────────────────────────────── */
.section-hdr { margin-bottom:clamp(48px, 6vw, 80px); }
.section-hdr.center { text-align:center; }
.section-hdr.center .eyebrow { display:block; }

/* ── LEGAL / STATIC PAGES ──────────────────────────────────────── */
.legal-hero {
  padding: calc(var(--nav-h) + 76px) 0 48px;
  border-bottom: 1px solid var(--rule-on-white);
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 28px;
  transition: gap var(--t-fast);
}
.legal-back:hover { gap: 12px; }
.legal-updated {
  font-size: 13px;
  color: var(--muted-on-white);
  margin-top: 14px;
}
.legal-body { max-width: 760px; padding-top: clamp(56px, 6vw, 80px); }
.legal-body h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  color: var(--cobalt);
  margin: 52px 0 18px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--body-on-white);
  margin-bottom: 16px;
}
.legal-body ul {
  margin: 0 0 20px 0;
  padding-left: 22px;
  list-style: disc;
}
.legal-body li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--body-on-white);
  margin-bottom: 6px;
}
.legal-body a { color: var(--cobalt); text-decoration: underline; text-underline-offset: 2px; }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
/* Tablet — same Logo | Nav | Language | CTA layout, tightened proportions */
@media (max-width: 1280px) {
  .header-inner { padding: 0 clamp(36px, 4vw, 56px); }
  .nav-links { gap: clamp(18px, 2vw, 28px); }
  .nav-links a { font-size: 11px; }
  .logo-img { height: 80px; }
  .site-header.scrolled .logo-img { height: 66px; }
  .header-actions { gap: 12px; }
  .header-cta { padding: 0 26px; }
  .lang-trigger { min-width: 78px; padding: 0 12px; }
}
@media (max-width: 1100px) {
  .ticket-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    gap: 0;
  }
  .ticket-card + .ticket-card { border-left:0; border-top:1px solid rgba(30,58,138,0.10); }
  .about-grid { grid-template-columns: 1fr; }
  .about-sticky { position: static; }
}
@media (max-width: 900px) {
  .two-col { grid-template-columns:1fr; gap:48px; }
  .two-col.reverse { direction:ltr; }
  .footer-grid { grid-template-columns:1fr; gap:40px; }
  .footer-grid > :nth-child(2),
  .footer-grid > :nth-child(3) { order:unset; }
  .img-frame { height:340px; }
  .collage { height:420px; }
}
@media (max-width: 768px) {
  .site-nav { display:none; }
  .header-actions .lang-dropdown,
  .header-actions .header-cta { display:none; }
  .burger-btn { display:flex; }
  .site-header { height: var(--nav-h-scrolled); }
  .header-inner {
    display: flex;
    justify-content: space-between;
    padding: 0 var(--pad-h);
  }
  .header-actions { margin-left: auto; }
  .logo-img,
  .site-header.scrolled .logo-img { height: 58px; }
}
@media (max-width: 520px) {
  .hero-title {
    font-size: clamp(3.25rem, 15vw, 4.6rem);
    line-height: 0.98;
    letter-spacing:-0.01em;
  }
  main,
  section,
  .hero,
  .hero-media,
  .collage { overflow-x: clip; }
  .ghost-mark.top-left { left: 0; }
  .ghost-mark.bottom-right { right: 0; }
  .collage-ring { max-width: calc(100% - 8px); }
  .hero-actions-container { flex-direction:column; align-items:stretch; }
  .hero-actions-container > a { width:100%; }
  .footer-bottom { flex-direction:column; align-items:flex-start; }
}

/* ── REDUCE MOTION ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity:1; transform:none; }
}
