/* ==========================================================================
   Atelier SiedePUNKT — atelier-siedepunkt.ch
   Stylesheet  |  Struktur: Tokens › Basis › Layout › Komponenten › Sektionen
   ========================================================================== */

/* --- Schriften (selbst gehostet, keine Requests an Dritte) ---------------- */

@font-face {
  font-family: 'Outfit Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(../fonts/outfit-latin-ext-wght-normal.woff2) format('woff2-variations');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face {
  font-family: 'Outfit Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(../fonts/outfit-latin-wght-normal.woff2) format('woff2-variations');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(../fonts/lato-latin-400-normal.woff2) format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(../fonts/lato-latin-700-normal.woff2) format('woff2');
}

/* --- Tokens -------------------------------------------------------------- */

:root {
  /* Farben – abgeleitet aus Flyer und Icons */
  --kessel:      #10302a;
  --kessel-80:   #1a4239;
  --brand:       #206e5c;
  --brand-mid:   #3e8873;
  --brand-tint:  #e3ede9;
  --glut:        #c4442a;
  --glut-tint:   #f6e7e1;
  --papier:      #fbf9f5;
  --papier-warm: #f3efe7;
  --tinte:       #17201d;
  --tinte-mid:   #4f5b57;
  --weiss:       #ffffff;
  --linie:       rgba(16, 48, 42, .14);
  --linie-hell:  rgba(255, 255, 255, .22);

  /* Typografie */
  --display: 'Outfit Variable', 'Outfit', 'Segoe UI', system-ui, sans-serif;
  --body:    'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* Raster */
  --breite:      1200px;
  --breite-eng:  760px;
  --gutter:      clamp(1.25rem, 5vw, 3.5rem);
  --sektion:     clamp(4rem, 9vw, 7.5rem);
  --radius:      18px;
  --radius-s:    10px;

  --schatten:    0 1px 2px rgba(16,48,42,.05), 0 12px 32px -18px rgba(16,48,42,.35);
  --schatten-lg: 0 2px 4px rgba(16,48,42,.06), 0 30px 60px -30px rgba(16,48,42,.45);
}

/* --- Basis --------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--papier);
  color: var(--tinte);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg { max-width: 100%; display: block; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.018em;
  margin: 0 0 .6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.35rem, 5.6vw, 4.15rem); line-height: .99; letter-spacing: -.028em; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.85rem); }
h3 { font-size: clamp(1.1rem, 1.6vw, 1.3rem); font-weight: 600; letter-spacing: -.01em; line-height: 1.25; }
h4 { font-size: 1.0625rem; font-weight: 600; letter-spacing: 0; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

strong, b { font-weight: 700; }

hr { border: 0; border-top: 1px solid var(--linie); margin: 0; }

ul { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: .45em; }

:focus-visible {
  outline: 3px solid var(--glut);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--brand); color: #fff; }

.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 {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -140%);
  z-index: 200; background: var(--kessel); color: #fff;
  padding: .7rem 1.2rem; border-radius: 0 0 10px 10px;
  font-family: var(--display); font-weight: 600; text-decoration: none;
  transition: transform .18s ease;
}
.skip-link:focus { transform: translate(-50%, 0); }

/* --- Layout -------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--breite);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--eng { max-width: calc(var(--breite-eng) + 2 * 3.5rem); }

.section { padding-block: var(--sektion); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--dunkel { background: var(--kessel); color: var(--papier); }
.section--warm { background: var(--papier-warm); }
.section--tint { background: var(--brand-tint); }

.eyebrow {
  font-family: var(--display);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--glut);
  flex: none;
}
.section--dunkel .eyebrow { color: #93c4b5; }

.lead {
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.6;
  color: var(--tinte-mid);
  max-width: 62ch;
}
.section--dunkel .lead { color: rgba(251, 249, 245, .78); }

.kopf { max-width: 46ch; margin-bottom: clamp(2.5rem, 4vw, 3.75rem); }
.kopf .lead { margin-top: -.2em; }

/* --- Buttons ------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -.005em;
  line-height: 1;
  padding: 1.05em 1.6em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primaer { background: var(--glut); color: #fff; }
.btn--primaer:hover { background: #a93820; }

.btn--gruen { background: var(--brand); color: #fff; }
.btn--gruen:hover { background: var(--kessel); }

.btn--linie { background: transparent; color: var(--tinte); border-color: var(--linie); }
.btn--linie:hover { border-color: var(--kessel); background: rgba(16,48,42,.04); }

.btn--hell { background: var(--papier); color: var(--kessel); }
.btn--hell:hover { background: #fff; }

.btn--linie-hell { background: transparent; color: var(--papier); border-color: var(--linie-hell); }
.btn--linie-hell:hover { border-color: var(--papier); background: rgba(255,255,255,.08); }

.btn--klein { font-size: .9rem; padding: .8em 1.25em; }

.btn .pfeil { transition: transform .18s ease; }
.btn:hover .pfeil { transform: translateX(3px); }

.btn-reihe { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

/* --- Header -------------------------------------------------------------- */

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 249, 245, .86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background-color .25s ease;
}
.header.ist-gescrollt { border-bottom-color: var(--linie); }

.header__inner {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 74px;
}

.logo {
  font-family: var(--display);
  font-size: 1.075rem;
  font-weight: 500;
  letter-spacing: -.015em;
  text-decoration: none;
  color: var(--kessel);
  display: inline-flex; align-items: center; gap: .55rem;
  margin-right: auto;
  white-space: nowrap;
}
.logo b { font-weight: 800; letter-spacing: -.01em; }
.logo__punkt {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--glut); flex: none;
}

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }
.nav a:not(.btn) {
  font-family: var(--display);
  font-size: .95rem; font-weight: 500;
  text-decoration: none; color: var(--tinte-mid);
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
  transition: color .16s ease, border-color .16s ease;
  white-space: nowrap;
}
.nav a:not(.btn):hover,
.nav a:not(.btn).ist-aktiv { color: var(--kessel); border-bottom-color: var(--glut); }

.nav-toggle {
  display: none;
  background: transparent; border: 1.5px solid var(--linie);
  border-radius: 999px; padding: .55rem .95rem;
  font-family: var(--display); font-weight: 600; font-size: .9rem;
  color: var(--kessel); cursor: pointer; align-items: center; gap: .5rem;
}
.nav-toggle__balken { width: 17px; height: 9px; position: relative; display: block; }
.nav-toggle__balken::before, .nav-toggle__balken::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1.8px;
  background: var(--kessel); transition: transform .22s ease, opacity .22s ease;
}
.nav-toggle__balken::before { top: 0; }
.nav-toggle__balken::after { bottom: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__balken::before { transform: translateY(3.6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__balken::after { transform: translateY(-3.6px) rotate(-45deg); }

/* --- Hero ---------------------------------------------------------------- */

.hero { position: relative; padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5rem); overflow: hidden; }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero__kreis {
  position: relative;
  background: var(--brand);
  color: var(--papier);
  border-radius: 50%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 13%;
  max-width: 620px;
}
.hero__kreis > div { max-width: 100%; }
.hero__kreis h1 {
  margin: 0; color: #fff;
  font-size: clamp(1.45rem, 2.55vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -.02em;
}
.hero__kreis .hero__sub {
  margin-top: 1rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(.94rem, 1.15vw, 1.08rem);
  color: rgba(255,255,255,.82);
  line-height: 1.4;
}

.hero__bild {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--schatten-lg);
}
.hero__bild img { width: 100%; aspect-ratio: 4 / 3.05; object-fit: cover; }

.hero__unten {
  margin-top: clamp(2.25rem, 4vw, 3.25rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}
.hero__claim {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.3vw, 1.85rem);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -.018em;
  margin: 0;
  text-wrap: balance;
}
.hero__claim em { font-style: normal; color: var(--brand); font-weight: 700; }

.schleife {
  position: absolute;
  width: clamp(90px, 11vw, 150px);
  color: var(--brand-mid);
  pointer-events: none;
  opacity: .9;
}
.schleife--format { right: 5%; top: 12%; display: none; transform: rotate(-8deg); }
@media (min-width: 1080px) { .schleife--format { display: block; } }

/* --- Faktenband ---------------------------------------------------------- */

.fakten {
  background: var(--kessel);
  color: var(--papier);
}
.fakten__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--linie-hell);
  border-radius: var(--radius-s);
  overflow: hidden;
}
.fakten__zelle {
  background: var(--kessel);
  padding: clamp(1.4rem, 2.5vw, 2rem) clamp(1rem, 2vw, 1.75rem);
}
.fakten__label {
  font-family: var(--display);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: #8fbfb0;
  margin: 0 0 .45rem;
}
.fakten__wert {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 700; letter-spacing: -.015em;
  line-height: 1.2; margin: 0;
}
.fakten__wert small { display: block; font-size: .8rem; font-weight: 400; color: rgba(251,249,245,.6); letter-spacing: 0; margin-top: .2rem; }

/* --- Signature: Siedekurve / Avatar-Wahl --------------------------------- */

.siede { position: relative; }

.skala {
  margin: clamp(2rem, 4vw, 3rem) 0 clamp(2.25rem, 4vw, 3rem);
}
.skala__marken { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: .7rem; }
.skala__label {
  font-family: var(--display);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  margin: 0;
}
.skala__bahn {
  position: relative;
  height: 12px;
  border-radius: 999px;
  background: rgba(16, 48, 42, .11);
  overflow: hidden;
}
.skala__fuellung {
  position: absolute; inset: 0 auto 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-mid) 42%, #c58c3f 72%, var(--glut) 100%);
  width: 34%;
  transition: width .5s cubic-bezier(.65,.05,.36,1);
}
.wahl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.wahl__btn {
  position: relative;
  text-align: left;
  background: var(--weiss);
  border: 1.5px solid var(--linie);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 2.4vw, 1.85rem);
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background-color .2s ease;
}
.wahl__btn:hover { transform: translateY(-3px); box-shadow: var(--schatten); }
.wahl__btn[aria-selected="true"] { border-color: var(--brand); box-shadow: var(--schatten); }
.wahl__btn[data-hitze="hoch"][aria-selected="true"] { border-color: var(--glut); }

.wahl__grad {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--brand);
  display: block;
  margin-bottom: .5rem;
}
.wahl__btn[data-hitze="hoch"] .wahl__grad { color: var(--glut); }

.wahl__titel {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  font-weight: 700; letter-spacing: -.015em;
  display: block; margin-bottom: .4rem; line-height: 1.2;
}
.wahl__text { display: block; font-size: .95rem; line-height: 1.55; color: var(--tinte-mid); margin: 0; }

.wahl__haken {
  position: absolute; top: 1.1rem; right: 1.1rem;
  width: 24px; height: 24px; border-radius: 50%;
  border: 1.5px solid var(--linie);
  display: grid; place-items: center;
  transition: background-color .2s ease, border-color .2s ease;
}
.wahl__haken svg { opacity: 0; transition: opacity .2s ease; color: #fff; }
.wahl__btn[aria-selected="true"] .wahl__haken { background: var(--brand); border-color: var(--brand); }
.wahl__btn[data-hitze="hoch"][aria-selected="true"] .wahl__haken { background: var(--glut); border-color: var(--glut); }
.wahl__btn[aria-selected="true"] .wahl__haken svg { opacity: 1; }

.panel { margin-top: clamp(2rem, 3.5vw, 2.75rem); }
.panel[hidden] { display: none; }

.panel__karte {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3.5vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: start;
  animation: einblenden .45s cubic-bezier(.2,.7,.3,1) both;
}
@keyframes einblenden {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.panel__titel { font-size: clamp(1.4rem, 2.4vw, 2rem); margin-bottom: .7em; }

.mitnahme { list-style: none; padding: 0; margin: 0 0 1.75rem; }
.mitnahme li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: .8rem;
  font-size: .98rem;
  line-height: 1.55;
}
.mitnahme li::before {
  content: "";
  position: absolute; left: 0; top: .52em;
  width: 11px; height: 11px; border-radius: 50%;
  border: 2.5px solid var(--brand);
}
.panel[data-hitze="hoch"] .mitnahme li::before { border-color: var(--glut); }

.mitnahme__titel {
  font-family: var(--display); font-weight: 600;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--tinte-mid); margin: 0 0 1rem;
}

/* --- Zeitstrahl: Der Tag ------------------------------------------------- */

.tag-liste { list-style: none; padding: 0; margin: 0; }

.tag-liste li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 170px) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.35rem, 2.4vw, 1.85rem) 0;
  border-top: 1px solid var(--linie-hell);
  margin: 0;
}
.tag-liste li:first-child { border-top: 0; padding-top: 0; }

.tag__zeit {
  font-family: var(--display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8fbfb0;
  padding-top: .3em;
}
.tag__titel { font-family: var(--display); font-weight: 600; font-size: clamp(1.05rem, 1.8vw, 1.3rem); letter-spacing: -.012em; margin: 0 0 .35rem; }
.tag__text { margin: 0; color: rgba(251,249,245,.72); font-size: .98rem; }

.tag-liste li[data-rand="true"] .tag__zeit { color: var(--glut); }
.tag-liste li[data-rand="true"] .tag__titel { color: rgba(251,249,245,.9); }

/* --- Was euch erwartet: Icon-Karten -------------------------------------- */

.karten {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.karte {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  transition: transform .2s ease, box-shadow .2s ease;
}
.karte:hover { transform: translateY(-4px); box-shadow: var(--schatten); }
.karte img { width: 60px; height: 60px; margin-bottom: 1.1rem; }
.karte h3 { margin-bottom: .5rem; }
.karte p { font-size: .96rem; color: var(--tinte-mid); margin: 0; }

/* --- Impressionen -------------------------------------------------------- */

.galerie {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(140px, 17vw, 215px);
  gap: clamp(.7rem, 1.4vw, 1.1rem);
}
.galerie figure { margin: 0; overflow: hidden; border-radius: var(--radius-s); background: var(--papier-warm); }
.galerie picture { display: block; width: 100%; height: 100%; }
.galerie img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.galerie figure:hover img { transform: scale(1.045); }
.galerie figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.galerie figure:nth-child(2) { grid-column: span 2; }
.galerie figure:nth-child(3),
.galerie figure:nth-child(4) { grid-column: span 1; }

/* --- Investition --------------------------------------------------------- */

.invest {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.preis-box {
  background: var(--kessel);
  color: var(--papier);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  position: sticky;
  top: 100px;
}
.preis-box__zahl {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800; letter-spacing: -.035em; line-height: 1;
  margin: 0 0 .35rem;
}
.preis-box__zahl span { font-size: .42em; font-weight: 600; letter-spacing: -.01em; vertical-align: .55em; margin-right: .25em; color: #93c4b5; }
.preis-box__zusatz { font-size: .95rem; color: rgba(251,249,245,.72); margin: 0 0 1.5rem; }
.preis-box hr { border-top-color: var(--linie-hell); margin: 1.5rem 0; }
.preis-box .btn { width: 100%; justify-content: center; }

.leistungen { list-style: none; padding: 0; margin: 0; columns: 1; }
.leistungen li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: .7rem;
  font-size: .99rem;
  line-height: 1.5;
  break-inside: avoid;
}
.leistungen li::before {
  content: "";
  position: absolute; left: .15rem; top: .58em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand);
}

/* --- Wir: Dario & Regula ------------------------------------------------- */

.wir { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.5rem, 3.5vw, 3rem); }

.person {
  display: grid;
  grid-template-columns: clamp(88px, 12vw, 128px) minmax(0, 1fr);
  gap: clamp(1.1rem, 2.2vw, 1.75rem);
  align-items: start;
}
.person img { border-radius: 50%; aspect-ratio: 1; object-fit: cover; width: 100%; }
.person h3 { margin-bottom: .15rem; font-size: clamp(1.15rem, 1.8vw, 1.4rem); font-weight: 700; }
.person__rolle {
  font-family: var(--display); font-weight: 600;
  font-size: .76rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--brand); margin: 0 0 .8rem;
}
.person p { font-size: .98rem; color: var(--tinte-mid); }
.person__link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--display); font-weight: 600; font-size: .9rem;
  color: var(--kessel); text-decoration: none;
  border-bottom: 1.5px solid var(--glut); padding-bottom: 1px;
  margin-top: .9rem;
}
.person__link:hover { color: var(--glut); }

.mission {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  background: var(--brand-tint);
  border-radius: var(--radius);
  border-left: 4px solid var(--brand);
}
.mission p {
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  font-weight: 500; line-height: 1.42; letter-spacing: -.015em;
  color: var(--kessel);
  max-width: 60ch;
}

/* --- FAQ ----------------------------------------------------------------- */

.faq { border-top: 1px solid var(--linie); }
.faq details {
  border-bottom: 1px solid var(--linie);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.35rem 3rem 1.35rem 0;
  position: relative;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  letter-spacing: -.012em;
  line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute; right: .4rem; top: 50%;
  width: 13px; height: 13px;
  border-right: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .22s ease;
}
.faq details[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
.faq details > div { padding: 0 3rem 1.5rem 0; color: var(--tinte-mid); max-width: 68ch; }

/* --- Kontakt / Formular -------------------------------------------------- */

.kontakt__grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.kontakt__direkt { list-style: none; padding: 0; margin: 1.75rem 0 0; }
.kontakt__direkt li { margin-bottom: 1.15rem; }
.kontakt__direkt .label {
  display: block;
  font-family: var(--display); font-weight: 600;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: #8fbfb0; margin-bottom: .15rem;
}
.kontakt__direkt a {
  font-family: var(--display); font-size: 1.05rem; font-weight: 500;
  color: var(--papier); text-decoration: none;
  border-bottom: 1.5px solid var(--linie-hell);
}
.kontakt__direkt a:hover { border-bottom-color: var(--glut); }

.form {
  background: var(--papier);
  color: var(--tinte);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.form__reihe { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 1.1rem; }
.form__feld { display: flex; flex-direction: column; margin-bottom: 1.1rem; }
.form__reihe .form__feld { margin-bottom: 0; }
.form__feld--voll { grid-column: 1 / -1; }

.form label {
  font-family: var(--display);
  font-size: .84rem; font-weight: 600; letter-spacing: .01em;
  margin-bottom: .4rem; color: var(--tinte);
}
.form label .opt { font-weight: 400; color: var(--tinte-mid); letter-spacing: 0; }

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form select,
.form textarea {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--tinte);
  background: var(--weiss);
  border: 1.5px solid var(--linie);
  border-radius: var(--radius-s);
  padding: .78rem .9rem;
  width: 100%;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.form textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%234f5b57' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; background-size: 12px; padding-right: 2.4rem; }
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(32,110,92,.14);
  outline: none;
}

.check { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: .7rem; margin-bottom: .9rem; align-items: start; }
.check input { width: 19px; height: 19px; margin: .18rem 0 0; accent-color: var(--brand); flex: none; }
.check label { font-family: var(--body); font-size: .9rem; font-weight: 400; line-height: 1.5; color: var(--tinte-mid); margin: 0; }
.check label a { color: var(--brand); }

.form__fuss { margin-top: 1.4rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.form__hinweis { font-size: .82rem; color: var(--tinte-mid); margin: 0; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* --- Footer -------------------------------------------------------------- */

.footer { background: var(--kessel); color: rgba(251,249,245,.72); padding-block: clamp(3rem, 5vw, 4.5rem) 2rem; }
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.75rem, 3vw, 3rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--linie-hell);
}
.footer .logo { color: var(--papier); margin-right: 0; font-size: 1.075rem; }
.footer h4 {
  font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  color: #8fbfb0; margin-bottom: .9rem; font-weight: 600;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: .5rem; }
.footer a { color: rgba(251,249,245,.78); text-decoration: none; font-size: .95rem; }
.footer a:hover { color: var(--papier); text-decoration: underline; text-underline-offset: 3px; }
.footer__claim { font-size: .95rem; max-width: 34ch; margin-top: 1rem; }
.footer__unten {
  padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem;
  justify-content: space-between;
  font-size: .85rem;
}

/* --- Reveal-Animation ---------------------------------------------------- */

.reveal { opacity: 0; transform: translateY(18px); }
.reveal.ist-sichtbar {
  opacity: 1; transform: none;
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
}

/* --- Rechtstexte (Impressum / Datenschutz) ------------------------------- */

.legal { max-width: 72ch; }
.legal h2 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); margin-top: 2.5rem; }
.legal h3 { margin-top: 1.75rem; }
.legal p, .legal li { color: var(--tinte-mid); }
.legal a { color: var(--brand); }
.platzhalter {
  background: var(--glut-tint);
  border-left: 4px solid var(--glut);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-s) var(--radius-s) 0;
  margin: 1.25rem 0;
  font-size: .95rem;
}
.platzhalter strong { color: var(--glut); }
.legal code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .9em; background: rgba(16,48,42,.07);
  padding: .1em .4em; border-radius: 4px;
}

/* --- Danke-Seite --------------------------------------------------------- */

.danke { min-height: 68vh; display: grid; place-items: center; text-align: center; }
.danke__inner { max-width: 52ch; }

/* --- Responsive ---------------------------------------------------------- */

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__kreis { max-width: 100%; aspect-ratio: auto; border-radius: var(--radius); padding: clamp(1.75rem, 6vw, 3rem); }
  .hero__unten { grid-template-columns: minmax(0, 1fr); }
  .panel__karte { grid-template-columns: minmax(0, 1fr); }
  .invest { grid-template-columns: minmax(0, 1fr); }
  .preis-box { position: static; }
  .wir { grid-template-columns: minmax(0, 1fr); }
  .kontakt__grid { grid-template-columns: minmax(0, 1fr); }
  .fakten__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch;
    background: var(--papier);
    border-bottom: 1px solid var(--linie);
    padding: 1rem var(--gutter) 1.75rem;
    gap: 0;
    box-shadow: var(--schatten);
    transform: translateY(-8px);
    opacity: 0; visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .nav.ist-offen { opacity: 1; visibility: visible; transform: none; }
  .nav a:not(.btn) { padding: .85rem 0; border-bottom: 1px solid var(--linie); font-size: 1.05rem; }
  .nav a:not(.btn):last-child { border-bottom: 0; }
  .nav .btn { margin-top: 1rem; justify-content: center; border-bottom: 0; }
}

@media (max-width: 700px) {
  .wahl { grid-template-columns: minmax(0, 1fr); }
  .galerie { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 40vw; }
  .galerie figure:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .galerie figure:nth-child(2) { grid-column: span 2; }
  .tag-liste li { grid-template-columns: minmax(0, 1fr); gap: .3rem; }
  .form__reihe { grid-template-columns: minmax(0, 1fr); }
  .person { grid-template-columns: minmax(0, 1fr); }
  .person img { max-width: 110px; }
  .fakten__grid { grid-template-columns: minmax(0, 1fr); }
  .footer__grid { grid-template-columns: minmax(0, 1fr); }
}

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

@media print {
  .header, .nav, .footer, .form, .schleife { display: none !important; }
  body { background: #fff; }
}

/* --- Kontaktdaten: Schutz vor automatisiertem Auslesen ------------------- */

.enthuellen {
  font-family: var(--display);
  font-size: .95rem; font-weight: 600;
  color: var(--papier);
  background: transparent;
  border: 1.5px solid var(--linie-hell);
  border-radius: 999px;
  padding: .45rem .95rem;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: .45rem;
  transition: border-color .16s ease, background-color .16s ease;
}
.enthuellen::after { content: "\2192"; font-size: .9em; }
.enthuellen:hover { border-color: var(--papier); background: rgba(255,255,255,.08); }
.enthuellen--fuss { font-size: .9rem; padding: .3rem .75rem; }
.enthuellen--hell { color: var(--kessel); border-color: var(--linie); font-size: .9rem; padding: .35rem .8rem; }
.enthuellen--hell:hover { border-color: var(--kessel); background: rgba(16,48,42,.05); }
.danke .enthuellt { color: var(--brand); border-bottom-color: rgba(32,110,92,.35); }

.enthuellt {
  font-family: var(--display); font-size: 1.05rem; font-weight: 500;
  color: var(--papier); text-decoration: none;
  border-bottom: 1.5px solid var(--linie-hell);
}
.enthuellt:hover { border-bottom-color: var(--glut); }
.footer .enthuellt { font-size: .95rem; }

/* --- Pilotphase / Early Bird -------------------------------------------- */

.pilot {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.pilot__text h2 { max-width: 20ch; }
.pilot__text p:last-child { color: var(--tinte-mid); max-width: 58ch; margin-top: 1.1em; }

.earlybird {
  background: var(--weiss);
  border: 2px solid var(--glut);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--schatten);
}
.earlybird__label {
  font-family: var(--display); font-weight: 600;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--glut); margin: 0 0 1rem;
}
.earlybird__preis {
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  font-weight: 800; letter-spacing: -.035em; line-height: 1.05;
  margin: 0 0 .4rem; color: var(--kessel);
}
.earlybird__alt {
  display: block;
  font-size: .42em; font-weight: 600; letter-spacing: -.01em;
  color: var(--tinte-mid); text-decoration: line-through;
  text-decoration-color: var(--glut); text-decoration-thickness: 2px;
  margin-bottom: .15rem;
}
.earlybird__zusatz { font-size: .92rem; color: var(--tinte-mid); margin: 0 0 1.35rem; }

.earlybird__bedingungen { list-style: none; padding: 0; margin: 0 0 1.35rem; }
.earlybird__bedingungen li {
  position: relative; padding-left: 1.6rem; margin-bottom: .55rem;
  font-size: .95rem; line-height: 1.5;
}
.earlybird__bedingungen li::before {
  content: ""; position: absolute; left: 0; top: .5em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--glut);
}

.earlybird .btn { width: 100%; justify-content: center; }

.preis-box__pilot { margin: -.6rem 0 0; }
.preis-box__pilot a {
  font-family: var(--display); font-size: .92rem; font-weight: 600;
  color: #f0a68f; text-decoration: none;
  border-bottom: 1.5px solid rgba(240,166,143,.4);
}
.preis-box__pilot a:hover { color: #fff; border-bottom-color: #fff; }

@media (max-width: 980px) {
  .pilot { grid-template-columns: minmax(0, 1fr); }
}

/* --- Bildband über die volle Breite -------------------------------------- */

.band {
  position: relative;
  isolation: isolate;
  min-height: clamp(340px, 42vw, 540px);
  display: grid;
  align-items: center;
  background: var(--kessel);
  overflow: hidden;
}
.band__medium {
  position: absolute; inset: 0; z-index: -2;
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  /* Der Topf sitzt im unteren Bildbereich — der Ausschnitt wird nach unten
     gezogen, damit Topfrand und Dampf sichtbar bleiben. */
  object-position: 50% 74%;
  background: var(--kessel);
}
.band::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(16,48,42,.93) 0%, rgba(16,48,42,.74) 42%, rgba(16,48,42,.22) 100%);
}
.band__inhalt { padding-block: clamp(3rem, 6vw, 4.5rem); }
.band .eyebrow { color: #93c4b5; }
.band__satz {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.7vw, 2.15rem);
  font-weight: 500; line-height: 1.28; letter-spacing: -.02em;
  color: var(--papier);
  max-width: 26ch; margin: 0;
  text-wrap: balance;
}
.band__satz em { font-style: normal; font-weight: 800; color: #fff; }

/* --- Zwei Räume: Küche und Workshop -------------------------------------- */

.raeume {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.75rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.raum { margin: 0; }
.raum picture { display: block; border-radius: var(--radius); overflow: hidden; }
.raum img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.raum figcaption {
  margin-top: .9rem;
  font-family: var(--display);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 600; letter-spacing: -.012em;
  color: var(--papier);
}
.raum__zeit {
  display: block;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--glut); margin-bottom: .2rem;
}

@media (max-width: 640px) {
  .raeume { grid-template-columns: minmax(0, 1fr); }
}
