/* ============================================================
   LONGEVITY RESORTS — Coming-Soon / Baustellen-Landingpage
   Design-Tokens & Sprache übernommen aus html-demo (Brand Guidelines)
   Quiet Luxury · Editorial · Science meets Nature
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --ivory:        #F4F1EC;
  --ivory-deep:   #ECE6DB;
  --stone:        #D9CBB8;
  --bronze:       #B89B6A;
  --bronze-deep:  #9C8255;
  --charcoal:     #2D2D2D;
  --forest:       #4B524C;
  --soft-black:   #1A1B19;

  --ink:          #2D2D2D;
  --ink-soft:     rgba(45, 45, 45, 0.70);
  --ink-faint:    rgba(45, 45, 45, 0.45);
  --line:         rgba(45, 45, 45, 0.14);
  --line-strong:  rgba(45, 45, 45, 0.28);
  --on-dark:      #EFEAE0;
  --on-dark-soft: rgba(239, 234, 224, 0.66);
  --line-on-dark: rgba(239, 234, 224, 0.18);

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body:    "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;

  --fs-eyebrow:   clamp(0.8rem, 0.74rem + 0.3vw, 0.9rem);
  --fs-body:      clamp(1.1rem, 1.02rem + 0.3vw, 1.22rem);
  --fs-lead:      clamp(1.28rem, 1.12rem + 0.8vw, 1.6rem);
  --fs-h3:        clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem);
  --fs-h2:        clamp(2.1rem, 1.4rem + 3vw, 3.6rem);
  --fs-h1:        clamp(2.6rem, 1.4rem + 5vw, 5rem);

  --space-section: clamp(5rem, 4rem + 9vh, 11rem);
  --gutter:        clamp(1.4rem, 0.6rem + 4vw, 5rem);
  --maxw:          1380px;
  --measure:       62ch;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --header-h:  92px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  hyphens: auto;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.72;
  font-weight: 350;
  color: var(--ink);
  background-color: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

img, picture, video, svg { display: block; max-width: 100%; }
img, video { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }
input, textarea, select, button { font: inherit; }
::selection { background: var(--bronze); color: var(--ivory); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
h2, .h2 { font-size: var(--fs-h2); }
h3, .h3 { font-size: var(--fs-h3); line-height: 1.12; }

.lead {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-lead);
  line-height: 1.4;
  color: var(--ink);
}
p { max-width: var(--measure); }
em, .italic { font-style: italic; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85em;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bronze-deep);
}
.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: var(--bronze);
  display: inline-block;
}
.eyebrow.is-centered { justify-content: center; }
.eyebrow.is-centered::after {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: var(--bronze);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--stone); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 820px; }
.section { padding-block: var(--space-section); position: relative; }
.section--tight { padding-block: clamp(3.5rem, 3rem + 4vh, 6rem); }
.center { text-align: center; }

.bg-ivory      { background: var(--ivory); }
.bg-ivory-deep { background: var(--ivory-deep); }
.bg-dark       { background: var(--soft-black); color: var(--on-dark); }
.bg-forest     { background: var(--forest); color: var(--on-dark); }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-forest h1, .bg-forest h2, .bg-forest h3,
.bg-dark .lead, .bg-forest .lead { color: var(--on-dark); }

.hairline { height: 1px; background: var(--line); border: 0; width: 100%; }
.text-bronze { color: var(--bronze-deep); }

/* ---------- Buttons ---------- */
.btn {
  --bd: var(--charcoal);
  --fg: var(--charcoal);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  padding: 1.05em 2.1em;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg);
  border: 1px solid var(--bd);
  border-radius: 0;
  overflow: hidden;
  transition: color 0.5s var(--ease-soft);
  z-index: 0;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--charcoal);
  transform: translateY(101%);
  transition: transform 0.55s var(--ease-out);
  z-index: -1;
}
.btn:hover { color: var(--ivory); }
.btn:hover::after { transform: translateY(0); }
.btn:disabled { opacity: 0.55; cursor: progress; }

.btn--solid { --fg: var(--ivory); background: var(--charcoal); }
.btn--solid::after { background: var(--bronze); }
.btn--solid:hover { color: var(--soft-black); }

.btn--bronze { --bd: var(--bronze); --fg: var(--soft-black); background: var(--bronze); }
.btn--bronze::after { background: var(--soft-black); }
.btn--bronze:hover { color: var(--ivory); }

.btn--block { width: 100%; }

/* Text link with underline reveal */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  padding-bottom: 0.35em;
  position: relative;
  width: fit-content;
}
.link-arrow .arw { transition: transform 0.45s var(--ease-out); }
.link-arrow::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.link-arrow:hover::after { transform: scaleX(1); }
.link-arrow:hover .arw { transform: translateX(5px); }

/* ---------- Brand logo (Bilddatei) ---------- */
.brand-logo { height: clamp(96px, 9vw, 140px); width: auto; }
.footer-logo { height: 120px; width: auto; margin-bottom: 1.4rem; }
.thanks-logo { height: clamp(160px, 18vw, 220px); width: auto; margin: 0 auto; }
.legal-logo { height: 92px; width: auto; }
@media (max-width: 560px) {
  .brand-logo { height: 84px; }
}

/* ---------- Brand mark (inline SVG, Legacy) ---------- */
.brand-mark .logo-ink { fill: none; stroke: currentColor; }
.brand-mark .logo-accent { fill: var(--bronze); }

/* ---------- Header ---------- */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  padding-block: 1.2rem;
}
.header-inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.9rem; color: var(--on-dark); }
.brand-mark { height: 46px; width: 46px; color: var(--on-dark); }
.brand-word { display: flex; flex-direction: column; line-height: 1.1; }
.bw-main {
  font-family: var(--font-display);
  font-size: 1.18rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.bw-sub {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  margin-top: 0.25rem;
}
.header-badge {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  border: 1px solid var(--line-on-dark);
  padding: 0.55em 1em;
}

/* ---------- Hero (Split: links Logo + Text, rechts Bild) ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1.618fr; /* Goldener Schnitt — Bild größer */
  isolation: isolate;
}

/* Linke Hälfte */
.hero__left {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

/* Logo auf hellem Originalhintergrund */
.hero__brandpanel {
  background: var(--ivory);
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 3vw, 2.6rem) clamp(1.5rem, 4vw, 4rem);
}
.hero-logo-orig {
  height: clamp(120px, 12vw, 190px);
  width: auto;
}

/* Texte + Anmeldung auf dunklem Hintergrund */
.hero__textpanel {
  flex: 1;
  background: var(--soft-black);
  color: var(--on-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 4vw, 4.5rem) clamp(1.5rem, 4vw, 4.5rem);
}

/* Rechte Hälfte: Bild mit Anmelde-Card darüber */
.hero__right {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 3vw, 2rem);
  justify-items: end;
  align-items: end;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: 50% 45%;
  will-change: transform;
  animation: heroPan 48s ease-in-out infinite alternate;
}
@keyframes heroPan {
  from { transform: scale(1.05); }
  to   { transform: scale(1.16) translateY(-1.8%); }
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  /*background:*/
  /*  linear-gradient(180deg, rgba(26,27,25,0.14), rgba(26,27,25,0.34)),*/
  /*  radial-gradient(62% 62% at 50% 50%, rgba(26,27,25,0.34), transparent 74%);*/
}

/* Notice / Texte */
.hero__notice {
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
  width: fit-content;
  margin-bottom: clamp(1.4rem, 2.5vw, 2.2rem);
  font-size: clamp(0.82rem, 0.74rem + 0.4vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #E7DCC6;
}
.hero__notice::before {
  content: "";
  width: clamp(1.6rem, 4vw, 3rem);
  height: 1px;
  background: var(--bronze);
}
.hero__title {
  font-size: var(--fs-h1);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: #FBF9F4;
  margin-bottom: 1.1rem;
}
.hero__title em { color: #E7DCC6; }
.hero__sub {
  max-width: 44ch;
  margin: 0 0 clamp(1.4rem, 2.2vw, 1.9rem);
  font-size: clamp(1rem, 0.94rem + 0.35vw, 1.18rem);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.5;
  color: #E4DDD0;
}

/* Marken-Siegel mit Domain (Etablierung im Gedächtnis) */
.hero__seal {
  align-self: start;
  width: fit-content;
  max-width: 100%;
  text-align: center;
  padding: clamp(0.85rem, 1.8vw, 1.1rem) clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid rgba(184, 155, 106, 0.5);
  border-radius: 4px;
  background: rgba(184, 155, 106, 0.06);
  box-shadow:
    inset 0 0 0 4px var(--soft-black),
    inset 0 0 0 5px rgba(184, 155, 106, 0.22);
}
.hero__seal-top,
.hero__seal-bot {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}
.hero__seal-domain {
  display: block;
  margin: 0.5rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1rem + 0.7vw, 1.55rem);
  letter-spacing: 0.015em;
  white-space: nowrap;
  color: #E7DCC6;
}

/* Scroll-Hinweis (über dem Bild, rechts) */
.hero__scroll {
  position: absolute;
  left: clamp(1.4rem, 3vw, 2.6rem);
  bottom: 1.8rem;
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
}
.hero__scroll .bar {
  width: 1px; height: 46px;
  background: linear-gradient(#fff, transparent);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__left { min-height: 0; }
  /* Mobil: Textbereich (Notice, Titel, Untertext, Siegel) mittig */
  .hero__textpanel { align-items: center; text-align: center; }
  .hero__notice { margin-inline: auto; }
  .hero__sub { margin-inline: auto; }
  .hero__seal { align-self: center; }
  .hero__right {
    min-height: clamp(560px, 92vh, 780px);
    padding-block: clamp(2rem, 9vw, 5rem);
  }
  .signup { max-width: 460px; }
  /* Gestapeltes Layout: Formular füllt den Bildbereich — Scroll-Hinweis
     würde es überlagern, daher hier ausblenden (natürliches Scrollen) */
  .hero__scroll { display: none; }
}

/* ---------- Signup card ---------- */
.signup {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  margin: 0;
  background: rgba(244, 241, 236, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(45, 45, 45, 0.18);
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  padding: clamp(1.6rem, 1rem + 2vw, 2.4rem);
  text-align: left;
}
.signup__label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  margin-bottom: 1.1rem;
}
.signup__row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.signup__row .field { flex: 1 1 220px; margin: 0; }

.field { position: relative; margin-bottom: 1.4rem; }
.field label {
  display: block;
  font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 0.6rem;
}
.field input[type="email"],
.field input[type="text"] {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 0.7rem 0;
  font-size: 1.15rem;
  color: var(--charcoal);
  transition: border-color 0.4s;
}
.signup .field label { color: var(--ink); }
.signup .field input::placeholder { color: var(--ink-soft); }
.signup .form-note { color: var(--ink-soft); }
.signup .consent { color: var(--ink); }
/* Maus-Klick: dezente Bronze-Unterkante; Tastatur-Fokus: deutlicher Outline-Ring */
.field input:focus { border-color: var(--bronze); }
.field input:focus:not(:focus-visible) { outline: none; }
.field input:focus-visible { outline: 2px solid var(--bronze); outline-offset: 3px; }

/* Consent / honeypot */
.consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin: 0.4rem 0 1.4rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: none;
}
.consent input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 1.05rem; height: 1.05rem;
  accent-color: var(--bronze);
  flex: 0 0 auto;
}
.consent a { color: var(--bronze-deep); text-decoration: underline; text-underline-offset: 2px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-status {
  margin-top: 1.1rem;
  font-size: 0.96rem;
  letter-spacing: 0.02em;
  min-height: 1.3em;
  color: var(--forest);
}
.form-status.is-error { color: #9c4a3c; }
.form-note {
  font-size: 0.84rem;
  color: var(--ink-faint);
  margin-top: 1.1rem;
  max-width: none;
}

/* ---------- Pillars ---------- */
.brandblock { text-align: center; margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.brandblock img { height: clamp(120px, 14vw, 168px); width: auto; margin: 0 auto 1.5rem; }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
}
.pillar {
  background: var(--ivory);
  padding: clamp(1.8rem, 1.2rem + 1.5vw, 2.6rem);
}
.pillar .idx {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--bronze-deep);
  letter-spacing: 0.1em;
}
.pillar h3 {
  font-size: 1.5rem;
  margin: 0.8rem 0 0.6rem;
}
.pillar p { font-size: 1.06rem; color: var(--ink-soft); max-width: none; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.6rem, 1.2vw, 1rem);
}
.gallery figure { position: relative; overflow: hidden; }
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.gallery figure:hover img { transform: scale(1.05); }
/* Verlauf am unteren Bildrand: sichert die Lesbarkeit der Beschriftung
   auch auf hellen Bildern */
.gallery figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0) 85%);
  pointer-events: none;
  z-index: 1;
}
.gallery figcaption {
  position: absolute;
  z-index: 2;
  left: 1.1rem; bottom: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55), 0 2px 14px rgba(0, 0, 0, 0.5);
}
.g-wide   { grid-column: span 8; aspect-ratio: 16 / 9; }
.g-tall   { grid-column: span 4; aspect-ratio: 3 / 4; }
.g-half   { grid-column: span 6; aspect-ratio: 16 / 10; }
.g-third  { grid-column: span 4; aspect-ratio: 4 / 3; }

/* ---------- Programmes list ---------- */
.prog-list { margin-top: clamp(2rem, 3vw, 3rem); border-top: 1px solid var(--line-on-dark); }
.prog-row {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  gap: 1.5rem;
  align-items: baseline;
  padding-block: 1.7rem;
  border-bottom: 1px solid var(--line-on-dark);
}
.prog-row .num { font-family: var(--font-display); color: var(--bronze); font-size: 1.1rem; }
.prog-row .name { font-family: var(--font-display); font-size: clamp(1.4rem, 1rem + 1.5vw, 2rem); color: var(--on-dark); }
.prog-row .meta { font-size: 0.86rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--soft-black); color: var(--on-dark); padding-top: clamp(4rem, 8vh, 7rem); }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--line-on-dark);
}
.footer-brand svg { height: 56px; width: auto; margin-bottom: 1.4rem; color: var(--on-dark); }
.footer-brand p { color: var(--on-dark-soft); font-size: 1.04rem; max-width: 42ch; }
.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark);
  margin-bottom: 0.5rem;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bronze); margin-bottom: 1.3rem;
}
.footer-col li { margin-bottom: 0.8rem; }
.footer-col a, .footer-col address {
  color: var(--on-dark-soft); font-size: 1.04rem; font-style: normal; transition: color 0.3s;
}
.footer-col a:hover { color: var(--on-dark); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding-block: 1.8rem;
  font-size: 0.86rem; letter-spacing: 0.06em; color: var(--on-dark-soft);
}
.footer-bottom .legal { display: flex; gap: 1.6rem; flex-wrap: wrap; }

/* ---------- Legal pages ---------- */
.legal-page { padding-top: calc(var(--header-h) + clamp(2rem, 6vh, 5rem)); }
.legal-header {
  background: var(--soft-black);
  color: var(--on-dark);
  padding-block: clamp(3rem, 6vh, 5rem) clamp(2rem, 4vh, 3rem);
}
.legal-header .brand { color: var(--on-dark); margin-bottom: 2rem; }
.legal-body { padding-block: clamp(3rem, 6vh, 5rem); }
.legal-body h2 {
  font-size: clamp(1.4rem, 1rem + 1.4vw, 2rem);
  margin: 2.6rem 0 0.9rem;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 1.25rem; margin: 1.8rem 0 0.6rem; }
.legal-body p, .legal-body li { color: var(--ink-soft); margin-bottom: 0.9rem; max-width: var(--measure); }
.legal-body ul { list-style: disc; padding-left: 1.4rem; }
.legal-body ul li { margin-bottom: 0.5rem; }
.legal-body a { color: var(--bronze-deep); text-decoration: underline; text-underline-offset: 2px; }
.legal-body .placeholder {
  background: rgba(184, 155, 106, 0.16);
  border-left: 2px solid var(--bronze);
  padding: 0.05em 0.4em;
  font-style: italic;
}
.legal-body .updated { font-size: 0.95rem; color: var(--ink-faint); margin-top: 3rem; }

/* ---------- Thank-you ---------- */
.thanks {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--soft-black);
  color: var(--on-dark);
  padding: var(--gutter);
}
.thanks h1 { color: var(--on-dark); font-size: var(--fs-h1); margin: 1.4rem 0; }
.thanks p { color: var(--on-dark-soft); margin: 0 auto 2rem; }
.thanks .brand-mark { color: var(--on-dark); height: 64px; width: 64px; margin: 0 auto; }

/* ---------- Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}
[data-reveal="fade"] { transform: none; }
[data-reveal].is-in { opacity: 1; transform: none; }

:focus-visible { outline: 2px solid var(--bronze); outline-offset: 3px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Skip-Link: visuell versteckt, bei Tastatur-Fokus sichtbar */
.skip-link {
  position: absolute; left: 1rem; top: -100%;
  z-index: 999;
  padding: 0.75rem 1.25rem;
  background: var(--soft-black); color: var(--ivory);
  font-size: 0.9rem; letter-spacing: 0.04em; text-decoration: none;
  border-radius: 4px;
  transition: top 0.2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .g-wide, .g-tall, .g-half, .g-third { grid-column: span 6; aspect-ratio: 4 / 3; }
  .header-badge { display: none; }
}
@media (max-width: 560px) {
  .pillars { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .g-wide, .g-tall, .g-half, .g-third { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
  .bw-sub { display: none; }
  .prog-row { grid-template-columns: 2.5rem 1fr; }
  .prog-row .meta { grid-column: 2; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__media img { animation: none; transform: none; }
}
