/* ==========================================================================
   Christopher Köster – Kommunikation & Fotografie
   Schrift: Archivo (lokal eingebunden, SIL Open Font License) – kein Google-Server-Aufruf.
   ========================================================================== */

@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-latin-italic.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #121212;
  --ink-2: #2a2a28;
  --paper: #fbfbf8;
  --paper-2: #f1f1ec;
  --muted: #5d5d57;
  --line: #deddd5;
  --line-dark: #333330;

  --accent: #85a07f;       /* Markengrün – Flächen, Akzente auf Schwarz */
  --accent-ink: #4a6644;   /* Grün für Text auf hellem Grund (kontraststark) */
  --accent-soft: #e5ece2;

  --font: "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --max: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-lg: 22px;
  --header-h: 72px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { text-decoration-color: var(--accent); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--accent); color: var(--ink); }

h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.05; font-weight: 750; letter-spacing: -.02em; font-stretch: 104%; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.container { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }
.container--narrow { width: min(100% - 2 * var(--gutter), 780px); margin-inline: auto; }

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 100;
  background: var(--ink); color: var(--paper); padding: .6rem 1rem; border-radius: 8px;
}
.skip-link:focus { top: 1rem; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- Typo-Bausteine ---------- */
.display {
  font-size: clamp(2.6rem, 6.4vw, 5.6rem);
  font-weight: 800;
  font-stretch: 108%;
  line-height: .97;
  letter-spacing: -.03em;
  margin-bottom: .35em;
}
.h2 { font-size: clamp(2rem, 4.4vw, 3.6rem); font-weight: 780; letter-spacing: -.028em; }
.h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
.lead { font-size: clamp(1.15rem, 1.7vw, 1.35rem); line-height: 1.5; color: var(--ink-2); max-width: 38em; }
.muted { color: var(--muted); }
.accent-text { color: var(--accent-ink); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .65rem;
  margin: 0 0 1.1rem;
  font-size: .78rem; font-weight: 650; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-ink);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--accent); }
.section--dark .eyebrow, .strand--dark .eyebrow { color: var(--accent); }

/* Platzhalter: noch zu ergänzende Inhalte – vor dem Livegang entfernen */
.todo {
  background: #fff1b8; color: #5a4700;
  outline: 1.5px dashed #d4a800; outline-offset: 1px;
  border-radius: 3px; padding: 0 .3em;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink); --btn-fg: var(--paper); --btn-bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 50px; padding: .8rem 1.35rem;
  font: inherit; font-size: 1rem; font-weight: 650; line-height: 1.1; text-decoration: none;
  color: var(--btn-fg); background: var(--btn-bg);
  border: 1.5px solid var(--btn-bd); border-radius: 999px;
  cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s, color .25s, border-color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.btn--accent { --btn-bg: var(--accent); --btn-fg: var(--ink); --btn-bd: var(--accent); }
.btn--accent:hover { --btn-bg: #95ae8f; --btn-bd: #95ae8f; }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--ink); }
.btn--ghost:hover { --btn-bg: var(--ink); --btn-fg: var(--paper); }
.btn--ghost-light { --btn-bg: transparent; --btn-fg: var(--paper); --btn-bd: rgba(255,255,255,.5); }
.btn--ghost-light:hover { --btn-bg: var(--paper); --btn-fg: var(--ink); --btn-bd: var(--paper); }
.btn--sm { min-height: 42px; padding: .55rem 1.05rem; font-size: .92rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 650; text-decoration: none;
  border-bottom: 1.5px solid currentColor; padding-bottom: 2px;
}
.link-arrow:hover .arrow { transform: translateX(4px); }
.link-arrow .arrow { transition: transform .25s var(--ease); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
/* Weichzeichner auf Pseudo-Element, damit das mobile Menü (position: fixed) nicht im Header gefangen ist */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(251, 251, 248, .86);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  backdrop-filter: saturate(160%) blur(12px);
}
.site-header.is-scrolled { border-color: var(--line); }
.site-header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.brand {
  display: inline-flex; align-items: baseline; gap: .15rem;
  font-weight: 800; font-stretch: 112%; font-size: 1.15rem; letter-spacing: -.02em;
  text-decoration: none; white-space: nowrap;
}
.brand-dot { width: .42em; height: .42em; background: var(--accent); border-radius: 2px; display: inline-block; transform: translateY(-.05em); margin-left: .12em; }
.brand small { display: block; }

.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav ul { display: flex; gap: 1.75rem; list-style: none; margin: 0; padding: 0; }
.site-nav a:not(.btn) {
  text-decoration: none; font-weight: 550; font-size: .98rem;
  position: relative; padding: .35rem 0;
}
.site-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.site-nav a:not(.btn):hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px; border: 0; background: transparent; cursor: pointer;
  position: relative; z-index: 60; margin-right: -10px;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  position: absolute; left: 11px; width: 24px; height: 2px; background: var(--ink);
  transition: transform .3s var(--ease), top .3s var(--ease), background-color .2s;
  content: "";
}
.nav-toggle span { top: 22px; }
.nav-toggle span::before { left: 0; top: -7px; }
.nav-toggle span::after { left: 0; top: 7px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; inset: 0; z-index: 55;
    flex-direction: column; justify-content: center; align-items: flex-start; gap: 2.5rem;
    padding: calc(var(--header-h) + 1rem) var(--gutter) 2rem;
    background: var(--paper);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .3s, transform .3s var(--ease), visibility .3s;
  }
  .nav-open .site-nav { opacity: 1; visibility: visible; transform: none; }
  .nav-open { overflow: hidden; }
  .site-nav ul { flex-direction: column; gap: 1rem; }
  .site-nav a:not(.btn) { font-size: clamp(2rem, 9vw, 2.75rem); font-weight: 780; font-stretch: 106%; letter-spacing: -.02em; }
}

/* ---------- Sektionen ---------- */
.section { padding-block: clamp(4.5rem, 10vw, 8.5rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--alt { background: var(--paper-2); }
.section--dark { background: var(--ink); color: var(--paper); }
.section--dark .lead, .section--dark .muted { color: #c9c9c2; }
.section--accent { background: var(--accent); color: var(--ink); }

.section-head { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
@media (min-width: 900px) {
  .section-head--split { grid-template-columns: 1.1fr .9fr; align-items: end; gap: 4rem; }
}

/* ---------- Hero ---------- */
.hero { padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3.5rem, 8vw, 6.5rem); overflow: clip; }
.hero-grid { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.08fr .92fr; } }

.hero-media { position: relative; }
.hero-media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 58% 40%;
  border-radius: var(--radius-lg);
}
.hero-badge {
  position: absolute; left: -1rem; bottom: 2rem;
  display: flex; align-items: center; gap: .85rem;
  padding: .9rem 1.2rem .9rem .9rem;
  background: var(--paper); border-radius: 999px;
  box-shadow: 0 18px 40px -18px rgba(0,0,0,.35);
  font-size: .92rem; line-height: 1.25; text-decoration: none;
  transition: transform .3s var(--ease);
}
.hero-badge:hover { transform: translateY(-3px); }
.hero-badge strong { display: block; font-weight: 700; }
.hero-badge-icon {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; background: var(--accent); font-weight: 800; font-stretch: 80%;
}
@media (max-width: 959px) { .hero-media img { aspect-ratio: 4 / 3.4; } .hero-badge { left: .75rem; bottom: .75rem; } }

.hero-points { display: flex; flex-wrap: wrap; gap: .5rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.hero-points li {
  font-size: .88rem; font-weight: 550; padding: .38rem .8rem;
  border: 1px solid var(--line); border-radius: 999px; background: #fff;
}

/* ---------- Zwei Stränge ---------- */
.strands { display: grid; gap: 1.25rem; }
@media (min-width: 820px) { .strands { grid-template-columns: 1fr 1fr; } }
.strand {
  position: relative; display: flex; flex-direction: column; justify-content: space-between;
  min-height: 340px; padding: clamp(1.75rem, 3.5vw, 2.75rem);
  border-radius: var(--radius-lg); text-decoration: none; overflow: hidden;
  transition: transform .4s var(--ease);
}
.strand:hover { transform: translateY(-4px); }
.strand--dark { background: var(--ink); color: var(--paper); }
.strand--accent { background: var(--accent); color: var(--ink); }
.strand h3 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 780; max-width: 12em; }
.strand p { max-width: 30em; opacity: .9; }
.strand-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 2rem; font-weight: 650; }
.strand-arrow {
  width: 54px; height: 54px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-size: 1.35rem;
  border: 1.5px solid currentColor; transition: transform .35s var(--ease), background-color .3s, color .3s;
}
.strand--dark:hover .strand-arrow { background: var(--accent); color: var(--ink); border-color: var(--accent); transform: rotate(-45deg); }
.strand--accent:hover .strand-arrow { background: var(--ink); color: var(--accent); border-color: var(--ink); transform: rotate(-45deg); }
.strand-num {
  position: absolute; right: -.08em; top: -.2em;
  font-size: clamp(9rem, 16vw, 13rem); font-weight: 900; font-stretch: 70%; line-height: 1;
  opacity: .08; pointer-events: none; letter-spacing: -.04em;
}

/* ---------- Angebote ---------- */
.offers { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.offer {
  display: grid; gap: 1rem 3rem;
  padding-block: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 900px) { .offer { grid-template-columns: 90px 1.1fr 1fr; } }
.offer-num { font-size: 1rem; font-weight: 700; color: var(--accent-ink); font-variant-numeric: tabular-nums; padding-top: .45rem; }
.offer h3 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 760; }
.offer-meta { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.25rem; }
.tag { font-size: .8rem; font-weight: 600; padding: .3rem .7rem; border-radius: 999px; background: var(--accent-soft); color: #33492e; }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.checklist li { position: relative; padding-left: 1.9rem; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .32em; width: 1.1rem; height: 1.1rem; border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.2l2.6 2.6L12 5.4' fill='none' stroke='%23121212' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 80% no-repeat;
}
.checklist-title { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 650; color: var(--muted); margin-bottom: 1rem; }
.offer .link-arrow { margin-top: 1.5rem; }

.principle {
  display: grid; gap: 2rem; align-items: center;
  margin-top: clamp(3rem, 6vw, 5rem); padding: clamp(1.75rem, 4vw, 3rem);
  background: var(--ink); color: var(--paper); border-radius: var(--radius-lg);
}
@media (min-width: 900px) { .principle { grid-template-columns: 1.2fr 1fr; gap: 4rem; } }
.principle blockquote { margin: 0; font-size: clamp(1.5rem, 2.8vw, 2.25rem); font-weight: 700; line-height: 1.15; letter-spacing: -.02em; }
.principle blockquote em { font-style: normal; color: var(--accent); }
.principle p { color: #cfcfc8; }

/* ---------- Galerie ---------- */
.gallery { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--paper-2); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery figure:hover img { transform: scale(1.03); }
.gallery .g-tall { grid-row: span 2; }
@media (min-width: 820px) {
  .gallery { grid-template-columns: 1fr 1.25fr 1.25fr; grid-template-rows: 1fr 1fr; height: clamp(420px, 48vw, 600px); }
  .gallery .g-wide { grid-column: span 2; }
}
@media (max-width: 819px) { .gallery .g-tall { grid-row: auto; grid-column: span 2; aspect-ratio: 4/3; } .gallery figure:not(.g-tall) { aspect-ratio: 1; } .gallery .g-wide { grid-column: span 2; aspect-ratio: 16/9; } }
.gallery-caption { margin-top: 1rem; font-size: .9rem; color: var(--muted); }

/* ---------- Kalender-Bereich ---------- */
.kalender-grid { display: grid; gap: clamp(3rem, 6vw, 5rem); align-items: center; }
@media (min-width: 960px) { .kalender-grid { grid-template-columns: 1fr 1fr; } }

.countdown { margin-top: 2.25rem; }
.countdown-units { display: grid; grid-template-columns: repeat(4, 1fr); gap: .6rem; max-width: 520px; }
.countdown-unit {
  padding: 1rem .5rem .8rem; text-align: center;
  border: 1px solid var(--line-dark); border-radius: var(--radius);
  background: rgba(255,255,255,.03);
}
.countdown-value {
  display: block; font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; font-stretch: 72%;
  line-height: 1; font-variant-numeric: tabular-nums; color: var(--accent);
}
.countdown-label { display: block; margin-top: .4rem; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: #a9a9a2; }
.countdown-caption { margin-top: 1rem; font-size: .95rem; color: #c9c9c2; }
.countdown-caption strong { color: var(--paper); }
.section:not(.section--dark) .countdown-unit, .countdown--light .countdown-unit { border-color: var(--line); background: #fff; }
.countdown--light .countdown-value { color: var(--ink); }
.countdown--light .countdown-label { color: var(--muted); }
.countdown--light .countdown-caption { color: var(--muted); }
.countdown--light .countdown-caption strong { color: var(--ink); }

/* Kalender-Stapel: zwei leere Blätter als Tiefe, oben das echte Titelfoto */
.cal-stack { position: relative; width: min(100%, 400px); margin-inline: auto; aspect-ratio: 5 / 7; }
.cal-sheet {
  position: absolute; inset: 0;
  background: var(--paper); color: var(--ink);
  border-radius: 10px; box-shadow: 0 30px 60px -30px rgba(0,0,0,.6);
  overflow: hidden;
}
.cal-sheet:nth-child(1) { transform: rotate(6deg) translate(18px, 6px); background: #dcdcd4; }
.cal-sheet:nth-child(2) { transform: rotate(-3deg) translate(-10px, 4px); background: #ecece6; }
.cal-sheet--photo { transform: rotate(1deg); }
.cal-sheet--photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cal-note {
  position: absolute; right: -6px; top: 22%; z-index: 2;
  padding: .55rem .85rem; border-radius: 999px;
  background: var(--accent); color: var(--ink); font-size: .85rem; font-weight: 700;
  transform: rotate(4deg); box-shadow: 0 10px 25px -12px rgba(0,0,0,.5);
}

/* Monatsblätter als Beispiel in der Geschichte-Sektion */
.cal-pages { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2.5rem; }
.cal-pages figure { margin: 0; }
.cal-pages img {
  width: 100%; aspect-ratio: 5 / 7; object-fit: cover; border-radius: var(--radius);
  box-shadow: 0 24px 44px -28px rgba(0,0,0,.45);
}

.facts { display: grid; gap: 0; margin: 2rem 0 0; border-top: 1px solid var(--line-dark); }
.facts > div { display: grid; grid-template-columns: 9.5rem 1fr; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid var(--line-dark); }
.facts dt { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: #a9a9a2; padding-top: .15rem; }
.facts dd { margin: 0; font-weight: 550; }
.facts--light { border-color: var(--line); }
.facts--light > div { border-color: var(--line); }
.facts--light dt { color: var(--muted); }
@media (max-width: 520px) { .facts > div { grid-template-columns: 1fr; gap: .15rem; } }

/* ---------- Features ---------- */
.features { display: grid; gap: 1.25rem; }
@media (min-width: 820px) { .features { grid-template-columns: repeat(3, 1fr); } }
.feature { padding: 2rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.feature-big { display: block; font-size: 3.2rem; font-weight: 900; font-stretch: 72%; line-height: 1; color: var(--accent-ink); margin-bottom: 1rem; }
.feature h3 { font-size: 1.3rem; }
.feature p { color: var(--muted); }

/* ---------- Story / Zitat ---------- */
.story { display: grid; gap: clamp(2rem, 5vw, 5rem); }
@media (min-width: 900px) { .story { grid-template-columns: .9fr 1.1fr; align-items: start; } }
.big-quote {
  margin: 0; font-size: clamp(1.9rem, 4vw, 3.1rem); font-weight: 760; line-height: 1.08; letter-spacing: -.025em;
}
.big-quote::before { content: "„"; display: block; font-size: 1.8em; line-height: .6; color: var(--accent); margin-bottom: .1em; }
.big-quote footer { margin-top: 1.25rem; font-size: 1rem; font-weight: 500; letter-spacing: 0; color: var(--muted); }
.prose { font-size: 1.1rem; }
.prose p { margin-bottom: 1.1em; }
.prose h2 { font-size: 1.6rem; margin-top: 2.2em; }
.prose h3 { font-size: 1.2rem; margin-top: 1.8em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .4em; }

/* ---------- Shop ---------- */
.shop-wrap {
  padding: clamp(1rem, 3vw, 2.5rem);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  min-height: 420px;
}
.shop-fallback { text-align: center; padding: 3rem 1rem; color: var(--muted); }
.shop-note { margin-top: 1rem; font-size: .9rem; color: var(--muted); }

.stores { display: grid; gap: 1.25rem; }
@media (min-width: 720px) { .stores { grid-template-columns: 1fr 1fr; } }
.store {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.75rem; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line);
}
.store-pin { flex: none; width: 48px; height: 48px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; }
.store h3 { font-size: 1.3rem; margin-bottom: .25rem; }

.sold-out {
  display: inline-flex; align-items: center; gap: .6rem;
  margin-top: 1.5rem; padding: .5rem .95rem; border-radius: 999px;
  background: rgba(133,160,127,.14); color: var(--accent); font-size: .92rem; font-weight: 600;
}
.sold-out::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

/* ---------- Über mich ---------- */
.about-grid { display: grid; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
@media (min-width: 900px) { .about-grid { grid-template-columns: .9fr 1.1fr; } .about-grid--flip { grid-template-columns: 1.1fr .9fr; } .about-grid--flip .about-media { order: 2; } }
.about-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); }
.about-media--wide img { aspect-ratio: 4 / 3; }

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.stat { padding-top: 1rem; border-top: 2px solid var(--ink); }
.stat b { display: block; font-size: clamp(2.4rem, 4vw, 3.2rem); font-weight: 850; font-stretch: 76%; line-height: 1; letter-spacing: -.02em; }
.stat span { display: block; margin-top: .45rem; color: var(--muted); font-size: .95rem; }
.section--dark .stat { border-color: var(--accent); }
.section--dark .stat span { color: #bdbdb6; }

/* ---------- Kontakt ---------- */
.contact { text-align: left; }
.contact-mail {
  display: inline-block; margin: .5rem 0 2rem;
  font-size: clamp(1.6rem, 5.2vw, 4.2rem); font-weight: 800; font-stretch: 96%; letter-spacing: -.03em; line-height: 1.05;
  text-decoration: none; word-break: break-word;
  background: linear-gradient(var(--accent), var(--accent)) 0 100% / 0 .12em no-repeat;
  transition: background-size .5s var(--ease);
}
.contact-mail:hover { background-size: 100% .12em; }
.contact-list { display: flex; flex-wrap: wrap; gap: .75rem; list-style: none; margin: 0; padding: 0; }

/* ---------- Seitenkopf Unterseiten ---------- */
.page-hero { padding-block: clamp(3rem, 8vw, 6rem) clamp(2.5rem, 5vw, 4rem); }
.page-hero--dark { background: var(--ink); color: var(--paper); }
.page-hero--dark .lead { color: #cfcfc8; }

.legal { padding-block: clamp(2rem, 5vw, 4rem) clamp(4rem, 8vw, 7rem); }
.legal h2 { font-size: 1.45rem; margin-top: 2.4em; }
.legal h3 { font-size: 1.12rem; margin-top: 1.8em; }
.legal p, .legal li { color: var(--ink-2); }
.legal address { font-style: normal; margin-bottom: 1em; }
.form-sample {
  margin: 1.5rem 0 0; padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
}
.form-sample p { margin-bottom: .9em; }
.form-sample p:last-child { margin-bottom: 0; }

/* ---------- Widerrufsfunktion (Formular + Ergebnis) ---------- */
.form { display: grid; gap: 1.35rem; margin-top: 2rem; }
.field label { display: block; font-weight: 650; margin-bottom: .45rem; }
.field .hint { display: block; margin-top: .15rem; font-weight: 400; font-size: .9rem; color: var(--muted); }
.field label > .hint:first-child { display: inline; }
.field input, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  padding: .8rem 1rem; background: #fff;
  border: 1.5px solid var(--line); border-radius: 10px;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent-ink); box-shadow: 0 0 0 3px var(--accent-soft); }
.field textarea { min-height: 7rem; resize: vertical; }
.req { color: var(--accent-ink); font-weight: 700; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.notice { padding: 1.1rem 1.35rem; border-radius: var(--radius); background: var(--accent-soft); color: #2f432b; }
.notice--error { background: #fbe9e6; color: #7a1d12; }
.receipt {
  white-space: pre-wrap; word-break: break-word;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .92rem;
  padding: 1.25rem; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
}
.footer-withdraw { margin-top: 1.25rem; }
@media print { .site-header, .site-footer, .btn { display: none !important; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #cfcfc8; padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem; font-size: .95rem; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 820px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand .brand { color: var(--paper); font-size: 1.4rem; }
.footer-brand p { margin-top: 1rem; max-width: 26em; }
.footer-title { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: #8b8b84; margin-bottom: 1rem; font-weight: 600; }
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line-dark); color: #8b8b84; font-size: .85rem;
}

/* ---------- Animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
@media print { .site-header, .site-footer, .nav-toggle { display: none; } .reveal { opacity: 1; transform: none; } }
