/* ============================================================
   WESH — Jungle Nightclub & Spa, Koh Phangan
   Premium dark candlelight aesthetic. Self-contained, no CDNs.
   ============================================================ */

/* ---------- Fonts (self-hosted, DSGVO) ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-var.woff2") format("woff2");
  font-weight: 300 600;
  font-stretch: 100%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../fonts/jost-var.woff2") format("woff2");
  font-weight: 300 600;
  font-style: normal;
  font-display: swap;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { min-height: 100%; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- Tokens ---------- */
:root {
  --green: #2F5D46;
  --green-lit: #3f7d5f;
  --green-deep: #1c3a2b;
  --charcoal: #33393F;
  --wine: #6E1F2E;
  --wine-lit: #9a3347;
  --gold: #d8b26a;
  --gold-soft: #e9cf9e;

  --night: #0c110e;
  --night-2: #10160f;
  --surface: #161d18;
  --surface-2: #1c2620;
  --line: rgba(216, 178, 106, 0.14);
  --line-soft: rgba(255, 255, 255, 0.07);

  --ink: #f2efe6;
  --ink-dim: #c3c9bf;
  --ink-mute: #8b948a;

  --ff-display: "Fraunces", Georgia, "Times New Roman", serif;
  --ff-body: "Jost", "Helvetica Neue", system-ui, sans-serif;

  --wrap: 1240px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --radius: 4px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Base ---------- */
body {
  font-family: var(--ff-body);
  background: var(--night);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0.01em;
  overflow-x: clip;
  position: relative;
}

/* film grain + vignette atmosphere */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(216,178,106,0.06), transparent 55%),
    radial-gradient(140% 120% at 50% 120%, rgba(28,58,43,0.35), transparent 60%);
  mix-blend-mode: screen;
}
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.wrap--wide { --wrap: 1440px; }

section { position: relative; z-index: 2; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}
.display {
  font-size: clamp(2.9rem, 9vw, 7.5rem);
  font-weight: 300;
}
h2.section-title { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 300; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); }

.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.eyebrow--center::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.lead { font-size: clamp(1.05rem, 1.8vw, 1.35rem); color: var(--ink-dim); font-weight: 300; }
.muted { color: var(--ink-mute); }
em, .serif-italic { font-family: var(--ff-display); font-style: italic; font-weight: 300; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: var(--pad-y) 1.9rem;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  transition: transform 0.5s var(--ease), background 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease);
  will-change: transform;
}
.btn svg { width: 15px; height: 15px; transition: transform 0.5s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary {
  background: var(--gold);
  color: #241c0d;
}
.btn--primary:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(255,255,255,0.22);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn--wine { background: var(--wine); color: var(--ink); }
.btn--wine:hover { background: var(--wine-lit); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.1rem, 2.4vw, 1.9rem) var(--gutter);
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease), padding 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(10, 14, 11, 0.72);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom-color: var(--line-soft);
  padding-top: clamp(0.8rem, 1.6vw, 1.1rem);
  padding-bottom: clamp(0.8rem, 1.6vw, 1.1rem);
}
.brand {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.42em;
  padding-left: 0.42em;
  color: var(--ink);
  position: relative;
}
.brand span { color: var(--gold); }
.nav { display: flex; align-items: center; gap: clamp(1.4rem, 2.6vw, 2.6rem); }
.nav a {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  position: relative;
  padding: 0.2rem 0;
  transition: color 0.4s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: inline-flex; }
.nav-desktop { display: flex; align-items: center; gap: clamp(1.4rem, 2.6vw, 2.6rem); }

/* burger */
.burger {
  display: none;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  position: relative;
  cursor: pointer;
}
.burger span { position: absolute; left: 11px; width: 20px; height: 1.5px; background: var(--ink); transition: transform 0.4s var(--ease), opacity 0.3s; }
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 25px; }
body.menu-open .burger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: linear-gradient(160deg, var(--night-2), #0a0f0b);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  padding: var(--gutter);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
body.menu-open .drawer { opacity: 1; visibility: visible; pointer-events: auto; }
.drawer a {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 9vw, 3rem);
  font-weight: 300;
  color: var(--ink);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line-soft);
  transform: translateY(18px);
  opacity: 0;
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease), color 0.3s;
}
.drawer a:hover { color: var(--gold); }
body.menu-open .drawer a { transform: translateY(0); opacity: 1; }
body.menu-open .drawer a:nth-child(1) { transition-delay: 0.08s; }
body.menu-open .drawer a:nth-child(2) { transition-delay: 0.14s; }
body.menu-open .drawer a:nth-child(3) { transition-delay: 0.20s; }
body.menu-open .drawer a:nth-child(4) { transition-delay: 0.26s; }
body.menu-open .drawer a:nth-child(5) { transition-delay: 0.32s; }
body.menu-open .drawer a:nth-child(6) { transition-delay: 0.38s; }
.drawer-foot { margin-top: 2rem; color: var(--ink-mute); font-size: 0.8rem; letter-spacing: 0.15em; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: clamp(6rem, 12vh, 9rem) var(--gutter) clamp(3rem, 7vh, 5rem);
  overflow: clip;
  z-index: 2;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--night) 4%, rgba(12,17,14,0.35) 45%, rgba(12,17,14,0.55) 100%),
    linear-gradient(105deg, rgba(28,58,43,0.55), transparent 60%);
}
.hero__inner { width: min(100%, var(--wrap)); margin-inline: auto; position: relative; }
.hero__place {
  font-size: 0.74rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.hero__place::before { content: ""; width: 2.2rem; height: 1px; background: var(--gold); opacity: 0.7; }
.hero h1 { max-width: 15ch; margin-bottom: 1.6rem; }
.hero h1 .line { display: block; overflow: hidden; }
.hero__claim { max-width: 44ch; margin-bottom: 2.6rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(3rem, 7vh, 5rem);
  writing-mode: vertical-rl;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex; align-items: center; gap: 1rem;
}
.scroll-cue::after { content: ""; width: 1px; height: 3rem; background: linear-gradient(var(--gold), transparent); animation: cue 2.4s var(--ease) infinite; }
@keyframes cue { 0%,100% { transform: scaleY(0.5); opacity: 0.4; transform-origin: top; } 50% { transform: scaleY(1); opacity: 1; } }

/* ---------- Sections generic ---------- */
.section { padding: clamp(5rem, 12vh, 9rem) 0; }
.section-head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .eyebrow { margin-bottom: 1.4rem; }
.section-head p { margin-top: 1.4rem; }
.center { text-align: center; margin-inline: auto; }
.center .eyebrow { justify-content: center; }

/* intro split */
.split { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr 0.95fr; } .split--rev > :first-child { order: 2; } }
.split figure { position: relative; border-radius: var(--radius); overflow: hidden; }
.split figure img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; transition: transform 1.4s var(--ease); }
.split figure:hover img { transform: scale(1.05); }
.frame { position: relative; }
.frame::before {
  content: "";
  position: absolute; inset: 12px;
  border: 1px solid var(--line);
  z-index: 3;
  pointer-events: none;
}

.stat-row { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3.5rem); margin-top: 2.6rem; }
.stat { }
.stat b { font-family: var(--ff-display); font-weight: 300; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--gold); display: block; line-height: 1; }
.stat span { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); }

/* ---------- Highlights / bento ---------- */
.bento { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(0.9rem, 1.6vw, 1.3rem); }
@media (min-width: 760px) { .bento { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; } }
.tile {
  position: relative;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--surface), var(--night-2));
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: border-color 0.6s var(--ease), transform 0.6s var(--ease);
}
.tile:hover { border-color: var(--line); transform: translateY(-4px); }
.tile::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 100% 0%, rgba(216,178,106,0.10), transparent 55%);
  opacity: 0; transition: opacity 0.6s var(--ease);
}
.tile:hover::after { opacity: 1; }
.tile__num { font-family: var(--ff-display); font-style: italic; color: var(--gold); opacity: 0.7; font-size: 1.1rem; margin-bottom: auto; }
.tile h3 { margin-bottom: 0.5rem; }
.tile p { color: var(--ink-dim); font-size: 0.95rem; }
.tile--span2 { grid-column: span 2; }
@media (max-width: 759px) { .tile--span2 { grid-column: span 2; } }
.tile--img { justify-content: flex-end; min-height: 300px; border: 1px solid var(--line-soft); background: var(--night-2); }
.tile--img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.tile--img::after { display: none; }
.tile--img::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,11,9,0.94), rgba(8,11,9,0.18) 70%); z-index: 1; opacity: 1; }
.tile--img .tile__num, .tile--img h3, .tile--img p { position: relative; z-index: 2; }
.tile--img:hover img { transform: scale(1.05); }
.tile--img img { transition: transform 1.4s var(--ease); }

/* ---------- Service feature blocks ---------- */
.feature { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 940px) { .feature { grid-template-columns: 1fr 1fr; } .feature--rev .feature__media { order: 2; } }
.feature + .feature { margin-top: clamp(4rem, 9vh, 7rem); }
.feature__media { position: relative; border-radius: var(--radius); overflow: hidden; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 5/4; transition: transform 1.5s var(--ease); }
.feature__media:hover img { transform: scale(1.06); }
.feature__media .tag {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.5rem 1rem; border-radius: 999px;
  background: rgba(10,14,11,0.7); backdrop-filter: blur(8px);
  border: 1px solid var(--line); color: var(--gold-soft); z-index: 2;
}
.feature__body .eyebrow { margin-bottom: 1.3rem; }
.feature__body h2 { margin-bottom: 1.2rem; }
.feature__body p + p { margin-top: 1rem; }
.list-check { margin-top: 1.8rem; display: grid; gap: 0.85rem; }
.list-check li { display: flex; gap: 0.9rem; align-items: flex-start; color: var(--ink-dim); }
.list-check li::before { content: ""; flex: none; margin-top: 0.55rem; width: 6px; height: 6px; rotate: 45deg; background: var(--gold); }
.price-note { margin-top: 1.8rem; font-family: var(--ff-display); font-style: italic; font-size: 1.25rem; color: var(--gold); }
.price-note small { font-family: var(--ff-body); font-style: normal; color: var(--ink-mute); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; display: block; margin-top: 0.3rem; }

/* ---------- Ribbon / quote ---------- */
.ribbon { padding: clamp(4.5rem, 10vh, 8rem) 0; text-align: center; position: relative; }
.ribbon::before, .ribbon::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  width: min(90%, 900px); height: 1px; background: var(--line);
}
.ribbon::before { top: 0; }
.ribbon::after { bottom: 0; }
.ribbon blockquote { font-family: var(--ff-display); font-weight: 300; font-size: clamp(1.7rem, 4.5vw, 3.2rem); line-height: 1.25; letter-spacing: -0.02em; max-width: 20ch; margin-inline: auto; }
.ribbon blockquote em { color: var(--gold); }
.ribbon cite { display: block; margin-top: 1.8rem; font-style: normal; font-size: 0.74rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-mute); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: clip; padding: clamp(4.5rem, 11vh, 8rem) 0; text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(80% 130% at 50% 0%, rgba(46,93,70,0.5), transparent 60%), var(--night-2); }
.cta-band h2 { margin-bottom: 1.4rem; }
.cta-band p { max-width: 50ch; margin: 0 auto 2.4rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.4rem, 3vw, 2.2rem); }
@media (min-width: 720px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.member { border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; background: var(--surface); transition: border-color 0.6s var(--ease), transform 0.6s var(--ease); }
.member:hover { border-color: var(--line); transform: translateY(-4px); }
.member__ph { aspect-ratio: 4/5; position: relative; display: grid; place-items: center; overflow: hidden; }
.member__ph svg { width: 46%; height: auto; opacity: 0.85; }
.member__mono { position: absolute; inset: auto 0 0.7rem 0; text-align: center; font-family: var(--ff-display); font-style: italic; color: rgba(255,255,255,0.16); font-size: 3.4rem; }
.member__body { padding: 1.5rem 1.6rem 1.8rem; }
.member__body h3 { font-size: 1.35rem; }
.member__role { color: var(--gold); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; margin: 0.5rem 0 0.9rem; }
.member__body p { color: var(--ink-dim); font-size: 0.92rem; }
.ph-badge { display: inline-block; margin-top: 1rem; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); border: 1px dashed var(--line-soft); padding: 0.3rem 0.7rem; border-radius: 999px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line-soft); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.5rem 3rem 1.5rem 0;
  position: relative; font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem); letter-spacing: -0.01em;
  transition: color 0.4s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold); }
.faq summary::after {
  content: ""; position: absolute; right: 0.4rem; top: 50%; margin-top: -6px;
  width: 12px; height: 12px;
  background:
    linear-gradient(var(--gold), var(--gold)) center/12px 1.5px no-repeat,
    linear-gradient(var(--gold), var(--gold)) center/1.5px 12px no-repeat;
  transition: transform 0.5s var(--ease), background-size 0.4s;
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq .faq__a { overflow: hidden; max-height: 0; transition: max-height 0.6s var(--ease); }
.faq details[open] .faq__a { max-height: 400px; }
.faq .faq__a p { padding: 0 3rem 1.7rem 0; color: var(--ink-dim); }

/* ---------- Forms / contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); }
@media (min-width: 940px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; } }
.info-block + .info-block { margin-top: 2.2rem; }
.info-block h4 { font-family: var(--ff-body); font-weight: 400; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.info-block p { color: var(--ink-dim); }
.info-block a:hover { color: var(--gold); }

.form { display: grid; gap: 1.3rem; }
.field { position: relative; display: grid; gap: 0.5rem; }
.field label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); }
.field input, .field textarea, .field select {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 0.95rem 1.1rem;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 300;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); background: var(--surface-2); }
.field textarea { resize: vertical; min-height: 140px; }
.field-row { display: grid; gap: 1.3rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
.consent { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.85rem; color: var(--ink-dim); }
.consent input { margin-top: 0.25rem; accent-color: var(--gold); width: 16px; height: 16px; flex: none; }
.consent a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.form-note { font-size: 0.78rem; color: var(--ink-mute); }
.form-success { display: none; padding: 1.2rem 1.4rem; border: 1px solid var(--green-lit); background: rgba(46,93,70,0.14); border-radius: var(--radius); color: var(--gold-soft); }
.form-success.show { display: block; }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding: clamp(9rem, 20vh, 13rem) var(--gutter) clamp(3rem, 7vh, 5rem); position: relative; overflow: clip; }
.page-hero__inner { width: min(100%, var(--wrap)); margin-inline: auto; }
.page-hero .eyebrow { margin-bottom: 1.6rem; }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 5.5rem); font-weight: 300; max-width: 16ch; }
.page-hero p { margin-top: 1.6rem; max-width: 52ch; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(90% 120% at 15% 0%, rgba(46,93,70,0.35), transparent 55%), radial-gradient(70% 90% at 100% 20%, rgba(110,31,46,0.22), transparent 55%);
}
.crumbs { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 2rem; }
.crumbs a:hover { color: var(--gold); }

/* ---------- Legal ---------- */
.legal { max-width: 780px; }
.legal h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin: 2.4rem 0 0.9rem; font-weight: 300; }
.legal p, .legal li { color: var(--ink-dim); margin-bottom: 0.7rem; }
.legal ul { padding-left: 1.2rem; list-style: disc; }
.legal .note-box { border: 1px dashed var(--line); border-radius: var(--radius); padding: 1.2rem 1.4rem; color: var(--gold-soft); background: rgba(216,178,106,0.05); margin-bottom: 2rem; }

/* ---------- Footer ---------- */
.site-footer { position: relative; z-index: 2; border-top: 1px solid var(--line-soft); padding: clamp(3.5rem, 8vh, 6rem) 0 2rem; background: linear-gradient(to bottom, var(--night), #080b09); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand .brand { font-size: 2rem; display: inline-block; margin-bottom: 1.2rem; }
.footer-brand p { color: var(--ink-mute); max-width: 34ch; font-size: 0.92rem; }
.foot-col h5 { font-family: var(--ff-body); font-weight: 400; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.foot-col a, .foot-col p { display: block; color: var(--ink-dim); font-size: 0.92rem; padding: 0.28rem 0; transition: color 0.3s; }
.foot-col a:hover { color: var(--gold); }
.footer-bottom { margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.6rem; border-top: 1px solid var(--line-soft); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; }
.footer-bottom small { color: var(--ink-mute); font-size: 0.78rem; }
.footer-bottom nav { display: flex; gap: 1.4rem; }
.footer-bottom nav a { font-size: 0.78rem; color: var(--ink-mute); }
.footer-bottom nav a:hover { color: var(--gold); }
.test-note { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; letter-spacing: 0.1em; color: var(--ink-mute); border: 1px dashed var(--line-soft); padding: 0.35rem 0.8rem; border-radius: 999px; }
.test-note::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); opacity: 0.7; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive nav ---------- */
@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .burger { display: block; }
  .brand { font-size: 1.3rem; }
}

/* fluid helpers */
.mt-s { margin-top: 1.4rem; }
.mt-l { margin-top: clamp(2.5rem, 5vw, 4rem); }
.divider { height: 1px; background: var(--line-soft); border: 0; margin: 0; }
