/* ===========================================================
   cig-arrêt – gemeinsames Stylesheet (alle Seiten)
   Energiegeladene Version
   =========================================================== */
:root {
  --amber: #E88C2A;
  --amber-dark: #B5701F;
  --amber-soft: #FDEBD1;
  --hot: #D8461C;
  --hot-dark: #B2380F;
  --ink: #241F1A;
  --ink-soft: #3A332B;
  --muted: #6E655A;
  --line: #ECE3D6;
  --cream: #FCF8F1;
  --white: #FFFFFF;
  --teal: #2F7E73;
  --teal-soft: #E4F0EC;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(42,37,32,.05), 0 14px 38px rgba(42,37,32,.09);
  --maxw: 1140px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;      /* der sticky Header darf Sprungziele nicht verdecken */
  -webkit-text-size-adjust: 100%;  /* iOS soll Text beim Drehen nicht vergrößern */
}
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;       /* lange Komposita dürfen die Seite nicht breiter machen */
  overflow-x: hidden;
}
:focus-visible { outline: 2px solid var(--hot); outline-offset: 2px; }
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; font-weight: 600; line-height: 1.08; color: var(--ink); margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.3rem, 6vw, 4rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
a { color: var(--amber-dark); text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: 90%; max-width: var(--maxw); margin: 0 auto; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 1.6rem; border-radius: 999px; font-weight: 600;
  font-size: .98rem; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none; border: 2px solid transparent;
}
.btn:hover { text-decoration: none; }
/* Hover-Effekte nur auf Geräten mit echtem Zeiger – auf Touch bleiben sie sonst
   nach dem Antippen "kleben". */
@media (hover: hover) {
  a:hover { text-decoration: underline; }
  .btn:hover { transform: translateY(-2px); }
  .card:hover { transform: translateY(-4px); }
}
.btn-primary { background: linear-gradient(135deg, var(--amber), var(--hot)); color: #fff; box-shadow: 0 10px 26px rgba(216,70,28,.34); }
.btn-primary:hover { box-shadow: 0 14px 32px rgba(216,70,28,.42); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber-dark); }
.btn-light { background: #fff; color: var(--hot-dark); box-shadow: none; }
.btn-light:hover { background: var(--cream); }
nav.links .btn-primary { background: var(--teal); box-shadow: none; }
nav.links .btn-primary:hover { background: #256358; box-shadow: none; }

/* Header */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(252,248,241,.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: .8rem 0; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand .mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--amber), var(--hot)); color: #fff;
  display: grid; place-items: center; font-size: 1.35rem;
}
.brand .name { font-family: "Fraunces", serif; font-size: 1.35rem; font-weight: 600; letter-spacing: .2px; }
.brand .tag { font-size: .72rem; color: var(--muted); letter-spacing: .4px; text-transform: uppercase; }
.brand-logo { height: 46px; width: auto; display: block; }
.footer-logo { height: 54px; width: auto; display: block; margin-bottom: 1rem; }
nav.links { display: flex; align-items: center; gap: 1.4rem; }
nav.links a { color: var(--ink); font-size: .92rem; font-weight: 500; }
nav.links a:hover { color: var(--hot); text-decoration: none; }
.lang { display: flex; gap: .35rem; font-size: .82rem; color: var(--muted); }
.lang a { color: var(--muted); }
.lang a.active { color: var(--hot); font-weight: 700; }
/* Burger-Button: 46px Trefferfläche, verwandelt sich im offenen Zustand in ein X */
.menu-btn {
  display: none; align-items: center; justify-content: center;
  width: 46px; height: 46px; margin-right: -.4rem; padding: 0;
  background: none; border: 0; cursor: pointer; color: var(--ink);
  -webkit-tap-highlight-color: transparent;
}
.menu-icon, .menu-icon::before, .menu-icon::after {
  display: block; width: 23px; height: 2px; border-radius: 2px;
  background: currentColor; transition: transform .22s ease, background-color .15s ease;
}
.menu-icon { position: relative; }
.menu-icon::before, .menu-icon::after { content: ""; position: absolute; left: 0; }
.menu-icon::before { top: -7px; }
.menu-icon::after  { top: 7px; }
.menu-btn[aria-expanded="true"] .menu-icon { background: transparent; }
.menu-btn[aria-expanded="true"] .menu-icon::before { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] .menu-icon::after  { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(60% 90% at 85% -10%, rgba(232,140,42,.28), transparent 60%),
    radial-gradient(50% 80% at -5% 10%, rgba(216,70,28,.12), transparent 55%),
    linear-gradient(180deg, #FFF9F0, var(--cream));
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.2rem; }
.pill { display: inline-flex; align-items: center; gap: .45rem; background: #fff; color: var(--hot-dark); font-size: .78rem; font-weight: 600; padding: .45rem .9rem; border-radius: 999px; border: 1px solid var(--amber-soft); box-shadow: 0 2px 8px rgba(42,37,32,.05); }
.pill.teal { color: var(--teal); border-color: var(--teal-soft); }
.hero h1 .accent { color: var(--hot); }
.hero p.lead { font-size: 1.18rem; color: #4a423a; max-width: 34rem; margin-top: 1.1rem; }
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.8rem; }
.hero-art {
  position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 4/3;
  background: linear-gradient(150deg, var(--amber), var(--hot));
  display: grid; place-items: center; box-shadow: 0 24px 50px rgba(216,70,28,.28);
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.hero-art .ph { text-align: center; color: #fff; }
.hero-art .ph .ic { font-size: 3.4rem; }

/* Impact band */
.impact { background: linear-gradient(120deg, var(--ink), var(--ink-soft)); color: #fff; }
.impact-inner { padding: clamp(2rem, 4vw, 3rem) 0; }
.impact .eyebrow { color: var(--amber); }
.impact-lead { font-family: "Fraunces", serif; font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 600; max-width: 42rem; margin: 0 0 1.8rem; line-height: 1.2; }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.impact-grid .n { font-family: "Fraunces", serif; font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 600; color: var(--amber); line-height: 1; }
.impact-grid .t { font-size: .9rem; color: rgba(255,255,255,.75); margin-top: .4rem; }
.impact .btn { margin-top: 2rem; }

/* Section base */
section.block { padding: clamp(2.8rem, 6vw, 5rem) 0; }
.eyebrow { text-transform: uppercase; letter-spacing: 2.5px; font-size: .76rem; font-weight: 700; color: var(--hot); margin-bottom: .6rem; }
.center { text-align: center; max-width: 44rem; margin: 0 auto 2.8rem; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow); transition: transform .18s ease; }
.card .ic { width: 50px; height: 50px; border-radius: 14px; background: linear-gradient(135deg, var(--amber-soft), #fff); color: var(--hot); display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 1rem; border: 1px solid var(--amber-soft); }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--muted); font-size: .95rem; margin: 0; }

/* About */
.about { background: linear-gradient(160deg, #FFF3E0 0%, #FDE9DD 55%, #FCE3E6 100%); }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3rem; align-items: center; }
.about-photo { border-radius: 24px; aspect-ratio: 1/1; background: linear-gradient(150deg, var(--teal-soft), #cfe6df); display: grid; place-items: center; color: var(--teal); }
.quals { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.quals span { background: #fff; border: 1px solid #F3CF9E; border-radius: 999px; padding: .45rem 1rem; font-size: .84rem; font-weight: 500; color: var(--hot-dark); box-shadow: 0 2px 10px rgba(216,70,28,.07); }
.quals span:nth-child(even) { border-color: #AEDBCF; color: var(--teal); box-shadow: 0 2px 10px rgba(47,126,115,.09); }

.highlight { background: linear-gradient(135deg, var(--hot), var(--amber)); color: #fff; border-radius: 24px; padding: clamp(2rem,4vw,3rem); text-align: center; box-shadow: 0 20px 44px rgba(216,70,28,.3); }
.highlight h2 { color: #fff; }
.highlight p { color: rgba(255,255,255,.94); max-width: 40rem; margin: 0 auto; font-size: 1.05rem; }

/* CTA */
.cta-band { background: linear-gradient(120deg, var(--ink), var(--ink-soft)); color: #fff; border-radius: 24px; padding: clamp(2rem,5vw,3.4rem); display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: .3rem; }
.cta-band p { color: rgba(255,255,255,.75); margin: 0; }

/* ===== Rauchrechner ===== */
.calc-intro { padding: clamp(2.4rem,5vw,3.8rem) 0 1.4rem; background:
    radial-gradient(60% 90% at 85% -20%, rgba(232,140,42,.22), transparent 60%),
    linear-gradient(180deg, #FFF9F0, var(--cream)); }
.calc-wrap { display: grid; grid-template-columns: .95fr 1.05fr; gap: 1.6rem; align-items: start; padding-bottom: clamp(2.5rem,6vw,4.5rem); }
.calc-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); position: sticky; top: 90px; }
.calc-card h3 { font-family: "Inter", sans-serif; font-size: .82rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--hot); margin-bottom: 1.2rem; }
.fields-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem 1.1rem; }
/* Label oben, Feld unten – so stehen die Eingaben einer Zeile auf einer Linie,
   auch wenn ein Label zweizeilig umbricht (passiert auf dem Handy ständig). */
.field { margin: 0; display: grid; grid-template-rows: 1fr auto; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 500; font-size: .86rem; margin-bottom: .35rem; color: var(--ink); }
.field .hint { color: var(--muted); font-size: .76rem; font-weight: 400; }
.field input {
  width: 100%; padding: .7rem .8rem; font-size: 1rem; font-family: inherit;
  border: 1.5px solid var(--line); border-radius: 10px; background: var(--cream); color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus { outline: none; border-color: var(--hot); background: #fff; }

.calc-results { display: flex; flex-direction: column; gap: 1.2rem; }
.calc-panel { border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow); }
.panel-cost { background: linear-gradient(155deg, var(--amber), var(--hot)); color: #fff; }
.panel-health { background: linear-gradient(155deg, var(--ink), var(--ink-soft)); color: #fff; }
.panel-head { display: flex; align-items: center; gap: .5rem; font-weight: 600; font-size: 1.05rem; margin-bottom: 1.1rem; }
.panel-head .ic { font-size: 1.2rem; }
.panel-cost .lbl { font-size: .85rem; opacity: .9; }
.big-num { font-family: "Fraunces", serif; font-size: clamp(2.4rem, 6vw, 3.6rem); font-weight: 600; line-height: 1; }
.big-sub { opacity: .9; font-size: .9rem; margin-top: .3rem; }
.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin: 1.4rem 0 0; }
.mini-grid > div { background: rgba(255,255,255,.15); border-radius: 10px; padding: .75rem .5rem; text-align: center; }
.mini-grid .n { font-size: 1.1rem; font-weight: 700; }
.mini-grid .t { font-size: .7rem; opacity: .9; margin-top: .15rem; }
.panel-note { border-top: 1px solid rgba(255,255,255,.28); margin-top: 1.2rem; padding-top: .9rem; font-size: .9rem; opacity: .96; }
.hgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.hstat { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: .9rem 1rem; }
.hstat .n { font-family: "Fraunces", serif; font-size: 1.55rem; font-weight: 600; color: var(--amber); line-height: 1.05; }
.hstat .t { font-size: .8rem; color: rgba(255,255,255,.8); margin-top: .25rem; }
.panel-cost .btn { margin-top: 1.4rem; }

/* Footer */
footer.site { background: var(--white); border-top: 1px solid var(--line); padding: 3rem 0 1.5rem; margin-top: 3rem; }
.foot-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.4fr; gap: 2.5rem; }
.foot-grid h4 { font-family: "Fraunces", serif; font-size: 1.05rem; margin: 0 0 .8rem; }
.foot-grid p, .foot-grid a { color: var(--muted); font-size: .92rem; }
.contact-line { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .6rem; }
.contact-line .ic { color: var(--hot); }
.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); height: 220px; }
.map iframe { width: 100%; height: 100%; border: 0; }
.legal { border-top: 1px solid var(--line); margin-top: 2rem; padding-top: 1.2rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; font-size: .8rem; color: var(--muted); }

.icon { font-style: normal; }

.card-img { display: block; width: 110px; height: 110px; object-fit: contain; margin: 0 0 .9rem; }

/* ===== FAQ ===== */
.faq-list { max-width: 840px; margin: 0 auto; }
.faq-group-title { font-family: "Fraunces", serif; font-size: 1.2rem; font-weight: 600; color: var(--hot-dark); margin: 2.2rem 0 1rem; }
.faq-group-title:first-child { margin-top: 0; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 12px; margin-bottom: .7rem; box-shadow: var(--shadow); overflow: hidden; }
.faq-item summary { cursor: pointer; list-style: none; padding: 1.05rem 1.3rem; font-weight: 600; font-size: 1.01rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; line-height: 1; color: var(--hot); flex: 0 0 auto; }
.faq-item[open] summary::after { content: "\2013"; }
.faq-item[open] summary { color: var(--hot-dark); }
.faq-item .a { padding: 0 1.3rem 1.2rem; color: var(--muted); font-size: .96rem; }
.faq-note { max-width: 840px; margin: 1rem auto 0; font-size: .84rem; color: var(--muted); font-style: italic; }

/* ===== Körper-Timeline ===== */
.timeline { max-width: 820px; margin: 0 auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: .6rem 1.6rem; }
.tl-item { display: flex; gap: 1.2rem; align-items: baseline; padding: .85rem 0; border-bottom: 1px solid var(--line); }
.tl-item:last-child { border-bottom: 0; }
.tl-when { flex: 0 0 150px; font-weight: 600; color: var(--hot); font-size: .92rem; }
.tl-what { color: var(--ink); font-size: .96rem; }

/* ===== Über-mich-Kachel (statt Portrait) ===== */
.about-badge { aspect-ratio: 1/1; border-radius: 24px; background: radial-gradient(circle at 22% 15%, rgba(255,255,255,.28), transparent 45%), linear-gradient(150deg, #F0A128, var(--hot) 85%); color:#fff; display:flex; flex-direction:column; justify-content:center; gap:.9rem; padding:2.2rem; box-shadow:0 20px 44px rgba(216,70,28,.28); }
.about-badge .ab-num { font-family:"Fraunces",serif; font-size:clamp(3.4rem,7vw,4.8rem); font-weight:600; line-height:.9; }
.about-badge .ab-icon { width:56px; height:56px; border-radius:16px; background:rgba(255,255,255,.2); display:grid; place-items:center; font-size:1.7rem; }
.about-badge .ab-head { font-family:"Fraunces",serif; font-size:clamp(1.3rem,2.2vw,1.6rem); font-weight:600; line-height:1.15; }
.about-badge .ab-sub { font-size:.98rem; opacity:.92; line-height:1.5; }

/* ===== Cookie-Banner ===== */
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 200; background: var(--ink); color:#fff; padding: 1rem 1.2rem; display:flex; gap:1.2rem; align-items:center; justify-content:center; flex-wrap:wrap; box-shadow:0 -6px 24px rgba(0,0,0,.18); }
.cookie-banner p { margin:0; font-size:.88rem; line-height:1.5; max-width:62ch; color:rgba(255,255,255,.92); }
.cookie-banner a { color:#fff; }
.cookie-banner .cb-btns { display:flex; gap:.6rem; flex-shrink:0; }
.cookie-banner button { border:0; cursor:pointer; font-family:inherit; font-weight:600; font-size:.9rem; padding:.6rem 1.2rem; border-radius:999px; }
.cookie-banner .cb-accept { background:linear-gradient(135deg,var(--amber),var(--hot)); color:#fff; }
.cookie-banner .cb-reject { background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.45); }
.map-consent { width:100%; height:100%; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:.7rem; background:var(--amber-soft); color:var(--muted); text-align:center; padding:1rem; font-size:.85rem; }
.map-consent button { border:1.5px solid var(--amber); background:#fff; color:var(--hot-dark); font-weight:600; padding:.55rem 1.1rem; border-radius:999px; cursor:pointer; font-family:inherit; }

/* ===== Rechtsseiten ===== */
.legal-page { max-width:800px; margin:0 auto; }
.legal-page h2 { margin-top:2.4rem; }
.legal-page h3 { margin-top:1.6rem; font-family:"Inter",sans-serif; font-size:1.02rem; }
.legal-page p, .legal-page li { color:var(--muted); font-size:.96rem; line-height:1.7; }
.legal-page a { color:var(--hot-dark); }
.legal-note { background:var(--amber-soft); border:1px solid #F3CF9E; border-radius:12px; padding:.85rem 1.1rem; font-size:.85rem; color:var(--hot-dark); }

/* ===========================================================
   Responsive – alle Breakpoints gebündelt, von groß nach klein.
   Muss am Dateiende stehen, damit die Overrides sicher greifen.
   =========================================================== */

/* ---------- Tablet & kleiner Desktop: Navigation klappt zusammen ---------- */
@media (max-width: 980px) {
  .hero-grid, .about-grid, .foot-grid, .calc-wrap { grid-template-columns: 1fr; }
  .hero-grid, .about-grid, .foot-grid { gap: 2.2rem; }
  .cards, .impact-grid { grid-template-columns: 1fr 1fr; }
  .calc-card { position: static; }
  .about-badge { aspect-ratio: auto; }

  .menu-btn { display: inline-flex; }

  /* Aufklapp-Menü unter dem Header */
  nav.links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(42,37,32,.16);
    padding: .2rem 1.15rem 1.2rem;
    max-height: calc(100vh - 4.4rem);
    max-height: calc(100dvh - 4.4rem);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  nav.links.open { display: flex; }
  nav.links > a {
    display: flex; align-items: center;
    min-height: 52px;                       /* bequeme Trefferfläche für den Daumen */
    font-size: 1.03rem; font-weight: 500;
    border-bottom: 1px solid var(--line);
  }
  nav.links .lang { gap: .5rem; padding: 1rem 0 .2rem; }
  nav.links .lang > span { display: none; }  /* die "·" zwischen den Sprachen */
  nav.links .lang a {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 58px; min-height: 44px;
    border: 1px solid var(--line); border-radius: 999px;
    font-size: .9rem; font-weight: 600;
  }
  nav.links .lang a.active { border-color: var(--hot); background: var(--amber-soft); }
  nav.links .btn-primary { width: 100%; justify-content: center; margin-top: .9rem; padding: 1rem 1.4rem; }

  /* Seite abdunkeln und Scrollen sperren, solange das Menü offen ist */
  body.nav-open { overflow: hidden; }
  body.nav-open::before {
    content: ""; position: fixed; inset: 0; z-index: 40;
    background: rgba(36,31,26,.45);
  }
}

/* ---------- Telefon ---------- */
@media (max-width: 660px) {
  .wrap { width: 100%; padding-left: 1.15rem; padding-right: 1.15rem; }
  h1, h2, h3 { hyphens: auto; }

  .cards { grid-template-columns: 1fr; gap: 1rem; }
  .card { padding: 1.35rem; }
  .card-img { width: 88px; height: 88px; }
  .impact-grid { gap: 1rem 1.1rem; }
  .impact .btn { margin-top: 1.5rem; }

  .hero p.lead { font-size: 1.08rem; }
  .hero-cta { gap: .65rem; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  .cta-band { text-align: center; justify-content: center; gap: 1.4rem; }
  .cta-band > div:last-child { width: 100%; flex-direction: column; }
  .cta-band .btn { width: 100%; justify-content: center; }

  .quals span { font-size: .8rem; padding: .4rem .85rem; }
  .about-badge { padding: 1.6rem; gap: .7rem; }

  .calc-card, .calc-panel { padding: 1.3rem; }
  .mini-grid { gap: .5rem; }
  .mini-grid > div { padding: .65rem .35rem; }
  .mini-grid .n { font-size: 1rem; }
  .mini-grid .t { font-size: .66rem; }
  .hstat { padding: .8rem .85rem; }

  .faq-item summary { padding: .95rem 1.05rem; font-size: .98rem; }
  .faq-item .a { padding: 0 1.05rem 1.05rem; }
  .timeline { padding: .3rem 1.1rem; }
  .tl-item { flex-direction: column; gap: .15rem; }
  .tl-when { flex: none; }

  .map { height: 190px; }
  footer.site { padding: 2.2rem 0 1.2rem; margin-top: 2.2rem; }
  .contact-line { margin-bottom: .85rem; }
  /* Telefon-/Mail-/Rechtslinks im Fuß auf Daumengröße bringen */
  .foot-grid a, .legal a { display: inline-block; padding: .45rem 0; }
  .legal { flex-direction: column; align-items: center; text-align: center; gap: .45rem; }

  /* Cookie-Banner gestapelt, Buttons volle Breite, iPhone-Safe-Area beachten */
  .cookie-banner {
    flex-direction: column; align-items: stretch; gap: .8rem;
    padding: 1rem 1.15rem calc(1rem + env(safe-area-inset-bottom));
    max-height: 80dvh; overflow-y: auto;
  }
  .cookie-banner p { font-size: .84rem; max-width: none; }
  .cookie-banner .cb-btns { flex-direction: column; }
  .cookie-banner button { width: 100%; padding: .85rem 1.2rem; }
}

@media (max-width: 520px) {
  .brand-logo { height: 38px; }
  .footer-logo { height: 46px; }
  .fields-grid { gap: .8rem; }
  .highlight, .cta-band, .hero-art, .about-badge { border-radius: 18px; }
}

/* ---------- Sehr schmale Geräte (unter iPhone-SE-Breite) ----------
   Die Zahlenfelder des Rauchrechners bleiben bewusst zweispaltig – sonst
   scrollt man auf dem Handy ewig, bevor das Ergebnis sichtbar wird. */
@media (max-width: 360px) {
  .impact-grid, .hgrid { grid-template-columns: 1fr; }
  .mini-grid { grid-template-columns: 1fr 1fr; }
  .pill { font-size: .74rem; padding: .4rem .75rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
