/* ============================================================
   SCHLOSS Spa Zermatt — Spa Landingpage
   Brand optics derived from live www.schlosszermatt.swiss
   Display: Boogy Brut (uppercase) · Body: Circular XX Mono
   Palette (FERUS guideline p.27): black #000000 / white #ffffff / beige #c6bbaa
   + secondary mint #daebe3 / petrol #265963 / neon green #00ff00
   Substance-free content. Boxed responsive. Breakpoints 480 / 768 / 1024.
   ============================================================ */

/* ---------- Fonts (brand, downloaded locally) ---------- */
@font-face {
  font-family: "Boogy Brut";
  src: url("../fonts/BoogyBrut-Regular.woff2") format("woff2"),
       url("../fonts/BoogyBrut-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Boogy Brut";
  src: url("../fonts/BoogyBrut-Italic.woff2") format("woff2"),
       url("../fonts/BoogyBrut-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Circular Mono";
  src: url("../fonts/CircularXXMonoWeb-Regular.woff2") format("woff2"),
       url("../fonts/CircularXXMonoWeb-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design tokens ---------- */
:root {
  /* Key identity colors — exact FERUS guideline values (SCZ_VI_Guideline p.27) */
  --black: #000000;      /* guideline Black #000000 (was #111110) */
  --white: #ffffff;      /* guideline White */
  --sand: #c6bbaa;       /* guideline Beige #c6bbaa (was #c9bba8) */
  /* Secondary identity colors (guideline p.27) */
  --mint: #daebe3;       /* guideline Mint #daebe3 (was #d6ece3) */
  --petrol: #265963;     /* guideline secondary Petrol #265963 (newly added) */
  --accent: #00ff00;     /* guideline Neon Green #00ff00 / Pantone 802C */
  /* Functional tints (NOT guideline colors — derived for web readability) */
  --ink: #000000;        /* body text = strict black per guideline */
  --sand-text: #8a7a5f;  /* darker sand for readable labels on light bg (WCAG AA) — derived tint */
  --cream: #f7f4ee;      /* near-white warm bg — derived tint */
  --muted: #6b675f;      /* muted text — derived tint */
  --line: #e4ded3;       /* hairline border — derived tint */

  --font-display: "Boogy Brut", "Arial Narrow", sans-serif;
  --font-body: "Circular Mono", "Courier New", monospace;

  /* Disciplined Circular Mono scale — guideline favours few sizes, hierarchy via
     Boogy Brut titles + whitespace (SCZ_VI_Guideline p.20/36). Body type = 4 steps only. */
  --fs-lead: clamp(17px, 1.5vw, 19px); /* intro / lead paragraphs */
  --fs-body: 16px;                     /* default body */
  --fs-small: 14px;                    /* secondary text, notes, lists, cards */
  --fs-caption: 12px;                  /* eyebrows, labels, uppercase tags (smallest) */

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 25px;        /* card / image radius — matches schlosszermatt.swiss */
  --radius-pill: 36px;   /* button pill radius — matches schlosszermatt.swiss */

  --shadow-soft: 0 18px 50px -28px rgba(28, 27, 25, .35);
  --shadow-card: 0 26px 60px -34px rgba(28, 27, 25, .45);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.5; /* 16px/1.5 — same as schlosszermatt.swiss body; was 1.7 */
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout: boxed container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
/* Padding matches schlosszermatt.swiss's `main > section` exactly — note it is
   asymmetric: far more air below than above (110/160 vs 60/110). Was a symmetric
   clamp(64px, 9vw, 130px). */
.section {
  padding-top: 110px;
  padding-bottom: 160px;
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius);
}
@media (max-width: 1023.98px) {
  .section { padding-top: 80px; padding-bottom: 130px; }
}
@media (max-width: 767.98px) {
  .section { padding-top: 60px; padding-bottom: 110px; }
}
.section--cream { background: var(--cream); }
.section--mint { background: var(--mint); }
/* compact section — less vertical padding for short content */
.section--compact { padding-block: clamp(48px, 6vw, 84px); }
.section--compact .feature__head { margin-bottom: clamp(24px, 3vw, 36px); }
/* Stacked rounded panels, as on schlosszermatt.swiss. Verified against the live
   site's computed styles: every `main > section` has radius 25px and margin-top
   -50px (all but the first) — i.e. TWICE the radius, not once.
   That factor is the whole trick. At -1x the two roundings meet exactly and the
   page background shows through at the corners as white nicks. At -2x the section
   covers the previous one's rounding entirely, so its own rounding sits on solid
   colour. Overlap = 2 * radius. Don't "simplify" this to -1x.
   The footer is in the list too: on the main site it is a <section> inside <main>
   and gets the same -50px. Ours is a standalone <footer>, so it needs saying
   explicitly — without it the award section's rounding is the one seam left white. */
.hero + .section,
.section + .section,
.section + .trust,
.trust + .section,
.section + .site-footer { margin-top: calc(-2 * var(--radius)); }

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: normal;
  line-height: .9;
  letter-spacing: normal; /* as on schlosszermatt.swiss — was .01em */
  /* 32px below the headline, as on the main site (h1/h2 margin-bottom:32px).
     Was 0, which left body copy sitting right under the headline. */
  margin: 0 0 32px;
}
/* type scale matches schlosszermatt.swiss (H1 clamp(54,5vw,90) / H2 clamp(42,4vw,72)) */
h1.display { font-size: clamp(54px, 5vw, 90px); }
/* H2 = Boogy Brut ITALIC per FERUS guideline p.36 (titling hierarchy).
   NOTE: schlosszermatt.swiss itself sets h2 upright and italicises only <em> spans
   inside a headline ("<em>Wohin bringt</em> dich dein FLOW?"). Guideline p.36 and the
   live site disagree — left italic pending a decision from FERUS. */
h2.display { font-size: clamp(42px, 4vw, 72px); font-style: italic; }
h3.display { font-size: clamp(22px, 2.6vw, 34px); }

/* Responsive type scale, lifted 1:1 from schlosszermatt.swiss.
   The .98 breakpoints are deliberate — they are the main site's (Bootstrap
   convention), and 1024/768 are real iPad widths, so rounding them would show a
   different headline size on the exact devices the guest is holding.
   Note the staggering: h2 tightens at 1024, h1 only at 768. */
@media (max-width: 1023.98px) {
  h1.display { font-size: 52px; }
  h2.display { font-size: 36px; margin-bottom: 24px; }
}
@media (max-width: 767.98px) {
  h1.display { font-size: 44px; margin-bottom: 24px; }
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: var(--fs-caption);
  color: var(--muted);
  margin: 0 0 20px;
  display: block;
}
/* Boogy Brut's content box is 1.25em while .display runs line-height:.9, so a
   headline's ascenders (the umlaut dots on "HÄUFIGE") hang (1.25-.9)/2 = .175em
   above its line box — ~10px at 58px — and eat the eyebrow's gap. Give it back,
   but only where a headline actually follows: after "Day-Spa-Pass" comes a <div>,
   which has no overhang and needs no compensation. In em, so it scales with the
   headline instead of needing a value per breakpoint. Padding, not margin — margin
   would collapse against the eyebrow's and do nothing. */
.eyebrow + .display { padding-top: .175em; }
.lead { font-size: var(--fs-lead); line-height: 1.75; color: var(--ink); }
p { margin: 0 0 16px; } /* main site: p margin-bottom:1rem — was 18px */
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 19px 40px;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--white);
  transition: transform .4s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: var(--black); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--accent); border-color: var(--accent); color: var(--black); }
.btn--light { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--light:hover { background: var(--accent); color: var(--black); border-color: var(--accent); }
/* ghost button on dark backgrounds (e.g. hero) */
.btn--on-dark { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn--on-dark:hover { background: var(--accent); color: var(--black); border-color: var(--accent); transform: translateY(-2px); }
/* primary accent CTA (neon-green) — like schlosszermatt.swiss */
.btn--accent { background: var(--accent); color: var(--black); border-color: var(--accent); }
.btn--accent:hover { background: var(--black); color: var(--white); border-color: var(--black); transform: translateY(-2px); }

/* ============================================================
   HEADER
   ============================================================ */
/* --hp = scroll progress 0…1, set by main.js. Everything in the bar interpolates
   on it, so the header follows the scroll instead of snapping at a threshold. */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  /* transparent → black, like the main site's header on scroll */
  background: rgb(0 0 0 / calc(var(--hp, 0) * 100%));
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  /* 30px → 12px, same figures as the main site */
  padding-block: calc(30px - 18px * var(--hp, 0));
  /* Boxung passt sich automatisch dem Inhalt an: die Header-Box ist genau so breit
     wie Nav + Sprachwahl + Logo zusammen (zentriert). Kommt ein Nav-Punkt dazu, wird
     sie automatisch breiter; faellt einer weg, schmaler. Auf schmaleren Screens
     greift die 100%-Breite (minus Gutter). */
  max-width: fit-content;
}
/* Phone: the logo stays put (see .brand__logo below), so the padding has to carry
   the shrink instead — 30px → 13px, which with the 38px logotype lands the header
   at the 64px the main site animates to. */
@media (max-width: 767.98px) {
  .site-header__inner { padding-block: calc(30px - 17px * var(--hp, 0)); }
}
/* Brand/logo positioned on the RIGHT (client request, Alex Perren 18.06.) */
.site-header__inner .brand { order: 3; margin-left: auto; }
.site-header__inner .main-nav { order: 1; }
.site-header__inner .header-tools { order: 2; margin-left: 0; }
.brand { display: inline-flex; align-items: center; }
/* official SCHLOSS Spa signature logo (white on transparent header).
   Guideline min logotype width is 450px (p.18). At the ~4.28:1 aspect the main site
   uses, 108px tall = ~462px wide — so the guideline IS met at rest. It only has to
   shrink out of the way once you scroll, exactly as schlosszermatt.swiss does
   (there: max-height 180px → 60px). We cap the top end lower than the main site
   because our bar also carries the nav, which theirs hides behind a burger. */
.brand__logo {
  --logo-h-top: clamp(64px, 7.5vw, 108px);  /* at rest — meets the 450px guideline */
  --logo-h-bar: clamp(38px, 4vw, 54px);     /* scrolled — nav-bar size */
  --logo-h: calc(var(--logo-h-top) - (var(--logo-h-top) - var(--logo-h-bar)) * var(--hp, 0));
  height: var(--logo-h);
  width: auto;
  display: block;
}
/* Narrow phones: --logo-h-top bottoms out at 64px, which at this 4.21:1 aspect is
   269px wide — wider than a 320px screen has left next to the burger. Cap the height
   by what the row can actually give: (viewport - 2*20px gutter - 30px burger - 20px
   gap) / aspect. Below ~360px the logo then scales with the screen instead of
   overflowing; above it, --logo-h wins and nothing changes. */
@media (max-width: 767.98px) {
  .brand__logo { height: min(var(--logo-h), calc((100vw - 90px) / 4.21)); }
}
/* The logo shrinks on phones too (64px → 38px). Note this differs from the main
   site, where the header logotype is desktop-only shrink (structure.js: `if
   (window.innerWidth <= 767) animation.to("#header", {height:"64px"})`). But the
   main site still gives phones the same big-to-small gesture — via a full-width
   SCHLOSS logotype below the header that fades out on scroll (#logo-wrapper,
   opacity → 0). We have no such block, so the header logo carries the gesture.
   Same feel, one element instead of two. Scrolled header still lands on the main
   site's 64px (13px padding + 38px logo + 13px). */
.header-tools { display: flex; align-items: center; gap: 22px; }

/* nav — Boogy Brut uppercase, matches schlosszermatt.swiss navigation */
.main-nav ul { display: flex; gap: 28px; align-items: center; }
.main-nav a {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
  transition: color .4s var(--ease);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width .35s var(--ease);
}
.main-nav a:hover::after { width: 100%; }

/* language switcher */
.lang-switch { display: flex; align-items: center; gap: 2px; }
.lang-switch a {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  padding: 6px 8px;
  opacity: .65;
  transition: opacity .3s var(--ease), color .4s var(--ease);
}
.lang-switch a:hover { opacity: 1; }
.lang-switch a[aria-current="true"] { opacity: 1; font-style: italic; }
.lang-switch .sep { opacity: .4; font-size: var(--fs-caption); }

/* Header scrolled: the bar goes black (see .site-header background above), so nav,
   lang switch and logotype all stay white — no colour flip needed. The main site
   does the same; the previous white bar + inverted logo was our own invention. */

/* burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 6px;
}
.burger span {
  width: 26px; height: 2px;
  background: var(--white);
  transition: background .4s var(--ease), transform .3s var(--ease), opacity .3s var(--ease);
}
/* burger stays white — the scrolled bar is black now, not white */

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(17,17,16,.45) 0%, rgba(17,17,16,.08) 38%, rgba(17,17,16,.78) 100%);
}
.hero__inner { padding-bottom: clamp(48px, 8vh, 96px); padding-top: 140px; width: 100%; }
.hero__eyebrow { color: rgba(255,255,255,.85); }
.hero__eyebrow::before { background: rgba(255,255,255,.55); }
.hero h1 { max-width: 16ch; margin-bottom: 26px; }
.hero__sub { max-width: 60ch; font-size: var(--fs-lead); line-height: 1.7; color: rgba(255,255,255,.92); margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ============================================================
   AWARD / SOCIAL PROOF (TripAdvisor Travelers' Choice 2026)
   Dark section, strict black #000000, white type — per CI.
   ============================================================ */
.award {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}
.award__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(48px, 6vw, 88px);
}
.award__media { position: relative; }
.award__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
/* official TripAdvisor badge, bottom-right over the photo.
   The asset stays unmodified; the white card keeps it legible on any crop. */
.award__media img.award__badge {
  position: absolute;
  aspect-ratio: auto;
  object-fit: contain;
  right: clamp(14px, 2vw, 26px);
  bottom: clamp(14px, 2vw, 26px);
  width: clamp(96px, 12vw, 150px);
  height: auto;
  padding: clamp(10px, 1.2vw, 16px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(0,0,0,.22);
}
.award__eyebrow { color: rgba(255,255,255,.7); }
.award h2 { color: var(--white); margin-bottom: 18px; }
.award__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.15;
  margin: 0 0 20px;
}
.award__body { color: rgba(255,255,255,.85); margin-bottom: 24px; }
.award__quote {
  font-style: italic;
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  margin: 0 0 28px;
  color: rgba(255,255,255,.92);
}
.award__quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: var(--fs-small);
  color: rgba(255,255,255,.65);
  letter-spacing: .04em;
}
/* round arrow link button */
.award__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4);
  font-family: var(--font-body);
  font-size: 22px;
  color: var(--white);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.award__link:hover { background: var(--accent); color: var(--black); border-color: var(--accent); transform: translateY(-2px); }

/* ============================================================
   INTRO
   ============================================================ */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}
.intro__media { position: relative; }
.intro__media img { border-radius: var(--radius); box-shadow: var(--shadow-card); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.intro__badge {
  position: absolute;
  left: -22px; bottom: 28px;
  background: var(--ink); color: var(--white);
  padding: 16px 22px;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1;
}
.intro__badge b { font-size: 30px; display: block; }
.intro__badge span { font-family: var(--font-body); font-size: var(--fs-caption); letter-spacing: .2em; }

/* ============================================================
   FEATURE / SAUNA + POOL
   ============================================================ */
.feature__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 30px; margin-bottom: clamp(32px, 5vw, 56px);
  flex-wrap: wrap;
}
.feature__head p { max-width: 42ch; margin: 0; }

.sauna-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.sauna-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 300px;
  display: flex; align-items: flex-end;
  color: var(--white);
}
.sauna-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}
.sauna-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,17,16,0) 35%, rgba(17,17,16,.82) 100%);
}
.sauna-card:hover img { transform: scale(1.07); }
.sauna-card__body { position: relative; padding: 22px; z-index: 2; }
.sauna-card__body h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 20px; margin: 0 0 4px; line-height: 1; }
.sauna-card__body p { margin: 0; font-size: var(--fs-small); color: rgba(255,255,255,.85); line-height: 1.5; }
.sauna-card--tall { grid-row: span 2; }

/* sauna feature list */
.sauna-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px 36px;
  margin-top: 44px;
}
.sauna-list li {
  display: flex; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-small);
}
.sauna-list li b { color: var(--ink); }
.sauna-list .tick { color: var(--accent); flex-shrink: 0; font-family: var(--font-display); }

/* pool callout */
.pool-callout {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}
.pool-callout__text { padding: clamp(30px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center; }
.pool-callout__text h3 { color: var(--white); margin-bottom: 14px; }
.pool-callout__text p { color: rgba(255,255,255,.85); margin: 0; }
.pool-callout__media { position: relative; min-height: 260px; }
.pool-callout__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.pill {
  border: 1px solid rgba(255,255,255,.3);
  padding: 8px 14px; border-radius: 100px;
  font-size: var(--fs-caption); letter-spacing: .08em; text-transform: uppercase;
}

/* ============================================================
   TREATMENTS / MASSAGE (split)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media img { width: 100%; aspect-ratio: 5/6; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-card); }
.signature-tag {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--mint); color: var(--ink);
  padding: 10px 16px; border-radius: 100px;
  font-size: var(--fs-caption); letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 22px;
}
.signature-tag b { font-family: var(--font-display); font-size: 14px; }
.treatment-points { margin: 24px 0 30px; }
.treatment-points li { padding: 12px 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 18px; font-size: var(--fs-small); }
.treatment-points li:last-child { border-bottom: 1px solid var(--line); }
.treatment-points span { color: var(--muted); }

/* ============================================================
   FITNESS & GYM
   ============================================================ */
.gym__media img { width: 100%; aspect-ratio: 5/6; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-card); }
.gym-points { margin: 24px 0 30px; }
.gym-points li { padding: 12px 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 18px; font-size: var(--fs-small); }
.gym-points li:last-child { border-bottom: 1px solid var(--line); }
.gym-points span { color: var(--muted); }
/* free-classes USP banner (Alex Perren request: highlight free yoga & gym) */
.free-banner {
  display: flex; align-items: center; gap: 16px;
  background: var(--mint); color: var(--ink);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 22px;
}
.free-banner .free-banner__tag {
  flex-shrink: 0;
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 13px; letter-spacing: .14em;
  background: var(--ink); color: var(--white);
  padding: 8px 14px; border-radius: 100px;
}
.free-banner p { margin: 0; font-size: var(--fs-small); line-height: 1.6; }
.free-banner b { font-family: var(--font-display); }
.gym__cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ============================================================
   DAY SPA (pass card)
   ============================================================ */
.dayspa__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.pass-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.pass-card::before {
  content: "DAY SPA";
  position: absolute; top: 20px; right: 24px;
  font-family: var(--font-display); font-size: 13px; letter-spacing: .2em;
  color: var(--sand-text);
}
.pass-price { display: flex; align-items: baseline; gap: 10px; margin: 10px 0 6px; }
.pass-price b { font-family: var(--font-display); font-size: clamp(46px, 6vw, 72px); line-height: .85; }
.pass-price .cur { font-family: var(--font-display); font-size: 22px; color: var(--muted); }
.pass-price .unit { font-size: var(--fs-small); color: var(--muted); letter-spacing: .08em; }
.pass-note { font-size: var(--fs-small); color: var(--muted); margin-bottom: 22px; }
.pass-incl { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin: 24px 0; }
.pass-incl li { font-size: var(--fs-small); display: flex; gap: 10px; align-items: center; }
.pass-incl .tick { color: var(--accent); font-family: var(--font-display); }
.pass-meta { display: flex; gap: 26px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid var(--line); }
.pass-meta div span { display: block; font-size: var(--fs-caption); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.pass-meta div b { font-family: var(--font-display); font-size: 17px; }

/* ============================================================
   TRUST
   ============================================================ */
.trust {
  position: relative;
  color: var(--white);
  overflow: hidden;
  border-radius: var(--radius);
  /* override the white .section background — it sits above the negative-z image and
     otherwise hides it, rendering the whole tall section as an empty white gap.
     Dark fallback keeps the section filled even if the image fails to load. */
  background: #111110;
}
/* explicit stacking: background image (0) -> dark gradient overlay (1) -> content (2) */
.trust__media { position: absolute; inset: 0; z-index: 0; }
.trust__media img { width: 100%; height: 100%; object-fit: cover; }
.trust::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(17,17,16,.85), rgba(17,17,16,.35)); }
.trust__inner { position: relative; z-index: 2; max-width: 60ch; }
.trust h2 { color: var(--white); }
.trust__perks { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 30px; }
.trust__perk { display: flex; gap: 14px; align-items: flex-start; }
.trust__perk b { font-family: var(--font-display); font-size: 26px; display: block; line-height: 1; }
.trust__perk span { font-size: var(--fs-small); color: rgba(255,255,255,.85); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { text-align: center; }
.final-cta h2 { max-width: 18ch; margin-inline: auto; margin-bottom: 18px; }
.final-cta p { max-width: 50ch; margin-inline: auto 28px; margin-inline: auto; margin-bottom: 28px; }
.final-cta__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-cta__contact { margin-top: 26px; font-size: var(--fs-small); color: var(--muted); display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; }
.final-cta__contact a:hover { color: var(--ink); text-decoration: underline; }

/* ============================================================
   SERVICE PILLS (links to spazermatt.ch booking pages)
   ============================================================ */
.services { padding-block: clamp(48px, 6vw, 84px); }
.services__head { text-align: center; margin-bottom: clamp(26px, 4vw, 44px); }
.services__head .eyebrow { text-align: center; }
/* clear, labelled link list — explicitly reads as links, not filters */
.service-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px 48px;
  max-width: 880px;
  margin-inline: auto;
}
.service-link {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: color .3s var(--ease), padding-left .3s var(--ease);
}
.service-link__label {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(17px, 1.9vw, 22px);
  line-height: 1.1;
}
.service-link__arrow {
  font-family: var(--font-body);
  font-size: var(--fs-lead);
  color: var(--sand-text);
  transition: transform .3s var(--ease), color .3s var(--ease);
}
.service-link:hover { padding-left: 10px; }
.service-link:hover .service-link__arrow { transform: translateX(6px); color: var(--ink); }

/* ============================================================
   FOOTER
   ============================================================ */
/* footer 1:1 with schlosszermatt.swiss — black bg, mono text, lime accent */
.site-footer {
  background: #000;
  color: #fff;
  padding-block: clamp(48px, 6vw, 72px) 32px;
  font-family: var(--font-body);
}
.footer-badge { margin-bottom: clamp(40px, 6vw, 72px); text-align: center; }
.footer-badge img { width: clamp(120px, 14vw, 160px); height: auto; margin-inline: auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.site-footer a { color: #fff; transition: color .3s var(--ease); }
.site-footer a:hover { color: var(--accent); }
.footer-col ul { margin-bottom: 22px; }
.footer-col li {
  font-size: var(--fs-small);
  line-height: 1.9;
  letter-spacing: .02em;
}
.footer-col--links li { text-transform: uppercase; }
.footer-contact { margin-top: 8px; }
.footer-member { font-size: var(--fs-small); margin: 0; letter-spacing: .02em; }
.site-footer .accent { color: var(--accent); }
.footer-social-list li { text-transform: uppercase; }
/* big SCHLOSS Spa signature, bottom-right like main site.
   Sized to the guideline minimum logotype width of 450px (p.18) where the column allows. */
.footer-col--logo { justify-self: end; align-self: end; max-width: 450px; width: 100%; }
.footer-col--logo img { width: 100%; height: auto; }
.footer-bottom {
  margin-top: clamp(40px, 6vw, 64px); padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.18);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: var(--fs-small); text-transform: uppercase; letter-spacing: .02em;
}
.footer-bottom__legal { color: rgba(255,255,255,.55); }
/* Legal links — the main site carries these in its footer link column; a campaign
   page has no Newsletter/Press/Career column to sit in, so they live in the bottom
   bar next to the copyright. Required by Google Ads (a landing page must reach a
   privacy policy) and by the revised Swiss DPA. */
.footer-legal {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-legal a { color: rgba(255,255,255,.55); transition: color .25s var(--ease); }
.footer-legal a:hover,
.footer-legal a:focus-visible { color: var(--white); }

/* ============================================================
   FAQ (accordion)
   ============================================================ */
.faq-list { max-width: 880px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 24px 0;
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(17px, 2vw, 22px); line-height: 1.1;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex-shrink: 0;
  font-family: var(--font-display); font-size: 26px; line-height: 1;
  color: var(--sand-text); transition: transform .3s var(--ease), color .3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--ink); }
.faq-answer { padding: 0 0 24px; max-width: 70ch; }
.faq-answer p { margin: 0; color: var(--muted); font-size: var(--fs-body); line-height: 1.7; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
/* Trust section uses an absolutely-positioned background image with no intrinsic height —
   its height comes from the content. Never hide that content via reveal, or the tall
   section renders as a large empty gap until the observer fires. Always keep it visible. */
.trust .trust__inner.reveal { opacity: 1; transform: none; }

/* mobile nav drawer */
.nav-drawer {
  position: fixed; inset: 0; z-index: 70;
  background: var(--ink); color: var(--white);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  transform: translateX(100%);
  transition: transform .5s var(--ease);
}
.nav-drawer.is-open { transform: none; }
.nav-drawer ul { display: flex; flex-direction: column; gap: 8px; }
.nav-drawer a { font-family: var(--font-display); text-transform: uppercase; font-size: 32px; line-height: 1.2; }
.nav-drawer__close { position: absolute; top: 22px; right: var(--gutter); background: none; border: 0; color: var(--white); font-size: 30px; line-height: 1; }
.nav-drawer__lang { margin-top: 40px; display: flex; gap: 16px; }
.nav-drawer__lang a { font-family: var(--font-body); font-size: var(--fs-small); letter-spacing: .12em; }
.nav-drawer__lang a[aria-current="true"] { color: var(--mint); }

/* ============================================================
   RESPONSIVE — 1024 / 768 / 480
   ============================================================ */
@media (max-width: 1024px) {
  .sauna-grid { grid-template-columns: repeat(2, 1fr); }
  .sauna-card--tall { grid-row: auto; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .burger { display: flex; }
  .header-tools .lang-switch { display: none; }


  .intro__grid,
  .award__grid,
  .split,
  .split--reverse .split__media,
  .dayspa__grid,
  .pool-callout,
  .footer-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .pool-callout__media { min-height: 240px; order: -1; }

  .sauna-grid { grid-template-columns: 1fr 1fr; }
  .sauna-list { grid-template-columns: 1fr; }
  .pass-incl { grid-template-columns: 1fr; }
  .service-links { grid-template-columns: 1fr; max-width: 520px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-col--logo { justify-self: start; align-self: auto; max-width: 300px; }
  .footer-bottom { flex-direction: column; }
  .intro__badge { left: 12px; }
}

@media (max-width: 480px) {
  :root { --gutter: 18px; }
  .sauna-grid { grid-template-columns: 1fr; }
  .pass-meta { gap: 18px; }
  .btn { width: 100%; }
  .hero__cta .btn { width: 100%; }
  .final-cta__buttons .btn { width: 100%; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__media img { transform: none; animation: none; }
}





/* ============================================================
   WELLNESS WEEKS — eigene Kampagnenseite
   Baut auf den bestehenden Bausteinen auf: .sauna-card liefert
   Bild, Verlauf und Textblock, hier nur Raster und Zeitplan.
   ============================================================ */
.elements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.elements-grid .sauna-card { min-height: 380px; }
/* Der Standard-Verlauf setzt erst bei 35% ein. Die Elementkarten tragen ueber
   dem Titel noch ein Kicker-Label, das dort auf hellen Motiven untergeht —
   deshalb hier frueher und kraeftiger abdunkeln. */
.elements-grid .sauna-card::after {
  background: linear-gradient(180deg, rgba(17,17,16,0) 8%, rgba(17,17,16,.55) 45%, rgba(17,17,16,.9) 100%);
}
.element-card__kicker {
  font-family: var(--font-body);
  font-size: var(--fs-caption);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}

/* Angebotskasten: was im 3-fuer-2 enthalten ist */
.offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: stretch;
  background: var(--mint);
  border-radius: var(--radius);
  padding: 40px;
}
/* Inklusive-Aufzaehlung in eigener Karte, wie die pass-card auf der Startseite */
.offer__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: clamp(28px, 3.4vw, 40px);
  display: flex;
  align-items: center;
}
.offer__price {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.05;
  margin: 8px 0 14px;
}
.offer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; width: 100%; }
.offer__list li { display: flex; gap: 12px; font-size: var(--fs-small); line-height: 1.5; }
.offer__list .tick { color: var(--accent); flex: 0 0 auto; }

/* Tagesablauf */
.schedule { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
.schedule__col { background: var(--cream); border-radius: var(--radius); padding: 32px; }
.schedule__col h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 20px;
  margin: 0 0 20px;
}
.schedule__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.schedule__list li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: var(--fs-small);
  line-height: 1.45;
}
.schedule__list li:first-child { border-top: 0; }
.schedule__list time {
  font-family: var(--font-body);
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
}
.schedule__list span small { display: block; opacity: .62; }

@media (max-width: 1024px) {
  .elements-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .offer,
  .schedule { grid-template-columns: 1fr; }
  .offer { padding: 28px; }
  .schedule__col { padding: 24px; }
}
@media (max-width: 480px) {
  .elements-grid { grid-template-columns: 1fr; }
  .elements-grid .sauna-card { min-height: 320px; }
}
