/* =========================================================================
   Praxis für Stress- und Angstbewältigung — Stylesheet
   Sauberer Rewrite der ehemaligen IONOS/CM4all-Baukastenseite.
   Farben & Schriften originalgetreu übernommen (Trinity-Theme-Palette).
   ========================================================================= */

/* ---------- Schriften (lokal, DSGVO-konform) ---------------------------- */
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Variable.woff2') format('woff2-variations');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Libre Baskerville';
  src: url('../fonts/LibreBaskerville-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Libre Baskerville';
  src: url('../fonts/LibreBaskerville-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Libre Baskerville';
  src: url('../fonts/LibreBaskerville-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ---------- Design-Tokens ----------------------------------------------- */
:root {
  --navy-strong: #0b2c3c;
  --navy:        #36475c;
  --slate:       #65768b;
  --blue:        #75a8c2;
  --blue-light:  #90c8e3;
  --blue-lighter:#9dd4ed;
  --contact-bg:  #cfe6f1;
  --bg-tint:     #f3f7f9;
  --white:       #ffffff;
  --line:        #e2e8ee;

  --font-serif: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --font-sans:  'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --maxw: 1140px;
  --gap:  clamp(1.5rem, 4vw, 3.5rem);
  --radius: 14px;
}

/* ---------- Reset / Grundlagen ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;           /* 16px – Paragraph */
  line-height: 1.75;
  color: var(--slate);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy); }

/* ---------- Typografie --------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--navy); margin: 0 0 .6em; line-height: 1.2; font-weight: 400; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

/* Content-Sektionen: feste Typo-Hierarchie (Header 38 / Subhead 24 / Paragraph 16) */
.section h2 { font-size: 2.375rem; line-height: 1.18; }   /* 38px */
.section h3 { font-size: 1.5rem;   line-height: 1.3;  }   /* 24px */
.section h4 { font-size: 1.25rem; }
.section p  { font-size: 1rem; }                          /* 16px */

/* Kleine Überzeile / Tagline über einer Sektion */
.tagline {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 .8rem;
}

/* Sekundäre Überschrift (Manrope, gesperrt) */
.subhead {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 1.5rem;          /* 24px – Subhead */
  line-height: 1.3;
  color: var(--slate);
  margin: 0 0 1.2rem;
}

/* Symptom-/Stichwortzeile mit Trennpunkten */
.keywords { color: var(--slate); font-size: .98rem; }

/* ---------- Layout-Helfer ------------------------------------------------ */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.2rem, 5vw, 2rem); }
.section { padding-block: clamp(3.5rem, 8vw, 6rem); }
.section--tint { background: var(--bg-tint); }
.section--center { text-align: center; }
.narrow { max-width: 760px; margin-inline: auto; }

/* Zweispaltiges Bild/Text-Layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}
.split + .split { margin-top: clamp(2.5rem, 6vw, 4.5rem); }
.split__media img { width: 100%; border-radius: var(--radius); box-shadow: 0 18px 40px rgba(11, 44, 60, .12); }
.split__media picture { display: block; }
.hero picture, .quote-cover picture { display: contents; }
.split--reverse .split__media { order: 2; }

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .85em 1.7em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--navy); color: #fff; }
.btn--slate { background: var(--slate); color: #fff; }
.btn--slate:hover { background: var(--navy); color: #fff; }
.btn--outline { background: transparent; border-color: currentColor; color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--light { background: rgba(255,255,255,.9); color: var(--navy); }
.btn--light:hover { background: #fff; color: var(--navy); }
.btn--on-blue { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.75); color: #fff; }
.btn--on-blue:hover { background: #fff; color: var(--blue); border-color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }
.btn-row--center { justify-content: center; }

/* ---------- Header / Navigation ----------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; min-height: 74px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand img { width: 54px; height: 54px; }
/* Textlogo: visuell versteckt, aber im DOM (für Suchmaschinen-Crawler & Screenreader) */
.brand__name {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.main-nav ul { list-style: none; display: flex; align-items: center; gap: .3rem; margin: 0; padding: 0; }
.main-nav a {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--navy);
  padding: .5rem .85rem;
  border-radius: 999px;
  transition: background .2s, color .2s;
}
.main-nav a:hover { background: var(--bg-tint); }
.main-nav a.is-active { background: var(--blue-light); color: var(--navy); }

.nav-toggle { display: none; }

/* sanfte Übergänge für die Startseiten-Variante (unten) */
.site-header { transition: background .3s ease, border-color .3s ease, box-shadow .3s ease; }
.site-header .container { transition: min-height .3s ease; }
.brand img { transition: filter .3s ease, width .3s ease, height .3s ease; }

/* ---------- Header-Variante: transparentes Overlay auf der Startseite ----
   Default (ganz oben): Header liegt über dem Hero, transparent & etwas größer,
   Logo/Navigation hell. Beim Scrollen (.is-scrolled) ODER bei geöffnetem
   Mobilmenü klappt er in den bekannten soliden, kompakten Zustand zurück. */
body.home .site-header {
  position: fixed; left: 0; right: 0; top: 0;
  background: transparent;
  -webkit-backdrop-filter: none; backdrop-filter: none;
  border-bottom-color: transparent;
}
body.home .site-header .container { min-height: 100px; }
body.home .brand img { width: 60px; height: 60px; filter: brightness(0) invert(1); }
body.home .main-nav a { color: #fff; }
body.home .main-nav a:hover { background: rgba(255,255,255,.16); }
body.home .main-nav a.is-active { background: rgba(255,255,255,.22); color: #fff; }

/* Solider Zustand: gescrollt oder Mobilmenü offen */
body.home .site-header.is-scrolled,
body.home .site-header:has(.main-nav.open) {
  background: rgba(255,255,255,.94);
  -webkit-backdrop-filter: saturate(1.2) blur(8px); backdrop-filter: saturate(1.2) blur(8px);
  border-bottom-color: var(--line);
}
body.home .site-header.is-scrolled .container,
body.home .site-header:has(.main-nav.open) .container { min-height: 74px; }
body.home .site-header.is-scrolled .brand img,
body.home .site-header:has(.main-nav.open) .brand img { width: 54px; height: 54px; filter: none; }
body.home .site-header.is-scrolled .main-nav a,
body.home .site-header:has(.main-nav.open) .main-nav a { color: var(--navy); }
body.home .site-header.is-scrolled .main-nav a:hover,
body.home .site-header:has(.main-nav.open) .main-nav a:hover { background: var(--bg-tint); }
body.home .site-header.is-scrolled .main-nav a.is-active,
body.home .site-header:has(.main-nav.open) .main-nav a.is-active { background: var(--blue-light); color: var(--navy); }

/* ---------- Hero: Startseite (Foto-Cover) ------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;      /* Fallback für Browser ohne dvh */
  min-height: 100dvh;     /* füllt den sichtbaren Bereich (mobile Leisten berücksichtigt) */
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding-block: clamp(3rem, 8vw, 6rem);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,44,60,.12), rgba(11,44,60,.18)); z-index: -1; }
/* Ink-Reveal: schwarze Maske über dem Hero-Bild, per Maus „freigepinselt" (siehe assets/js/ink-reveal.js).
   Liegt über Bild + Verlauf (z-index 0), aber unter dem Inhalt; nimmt keine Klicks entgegen. */
.hero__ink { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__inner { position: relative; z-index: 1; max-width: 900px; padding-inline: 1.2rem; }
.hero h1 { color: #fff; font-size: clamp(1.4rem, 5.2vw, 3rem); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 1.6rem; overflow-wrap: break-word; hyphens: manual; }
.hero__points { display: flex; justify-content: center; align-items: flex-start; flex-wrap: nowrap; gap: 1rem; margin: 1.4rem auto 2rem; max-width: 600px; }
.hero__point { flex: 1 1 0; display: flex; flex-direction: column; align-items: center; gap: .6rem; font-weight: 600; letter-spacing: .04em; font-size: .95rem; }
.hero__point .ico { width: 54px; height: 54px; display: grid; place-items: center; border: 2px solid rgba(255,255,255,.85); border-radius: 999px; }
.hero__point .ico svg { width: 24px; height: 24px; stroke: #fff; }
.hero__point small { font-weight: 400; opacity: .85; }

/* ---------- Hero: Unterseiten (solide Farbe, KOMPAKT) ------------------- */
.pagehero {
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding-block: clamp(2.4rem, 5vw, 3.4rem);
}
.pagehero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0;
}
.pagehero .btn-row { margin-top: 1.3rem; }

/* ---------- Methoden-/Häkchenliste -------------------------------------- */
.check-list { list-style: none; margin: 1rem 0 0; padding: 0; }
.check-list li { position: relative; padding-left: 1.9rem; margin-bottom: .5rem; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .35em;
  width: 1.1rem; height: 1.1rem; border-radius: 999px;
  background: #4bb37b;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ---------- Team --------------------------------------------------------- */
.team { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--gap); max-width: 820px; margin: 2.5rem auto 0; }
.team figure { margin: 0; text-align: center; }
.team img { width: 190px; height: 190px; border-radius: 999px; object-fit: cover; margin: 0 auto 1.2rem; box-shadow: 0 14px 30px rgba(11,44,60,.18); }
.team h4 { margin-bottom: .4rem; }
.team p { font-size: .95rem; }
/* Einzelperson: zentriert, größeres Portrait */
.team--single { grid-template-columns: 1fr; max-width: 560px; }
.team--single img { width: 260px; height: 260px; }
.team--single p { font-size: 1rem; }

/* ---------- Philosophie (Foto-Cover mit Overlay) ------------------------ */
.quote-cover { position: relative; color: #fff; overflow: hidden; border-radius: 0; }
.quote-cover__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.quote-cover::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(11,44,60,.72), rgba(11,44,60,.35)); z-index:-1; }
.quote-cover .container { padding-block: clamp(4rem, 9vw, 7rem); }
.quote-cover .inner { max-width: 620px; }
.quote-cover h2 { color: #fff; }
.quote-cover h3 { color: #fff; font-style: italic; font-size: clamp(1.5rem, 3vw, 2.1rem); }

/* ---------- Kontakt ------------------------------------------------------ */
.contact { background: var(--contact-bg); }
.contact .grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); align-items: start; }
.contact h2 { text-transform: uppercase; letter-spacing: .04em; }
.contact__meta { margin-top: 1.6rem; font-size: .98rem; }
.contact__meta strong { display:block; font-family: var(--font-serif); color: var(--navy); font-size: 1.05rem; margin-bottom: .4rem; }
.contact__meta a { color: var(--navy); text-decoration: underline; }
.divider { border: 0; border-top: 1px solid rgba(11,44,60,.18); margin: 1.4rem 0; }

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  box-shadow: 0 20px 50px rgba(11,44,60,.14);
}
.card h3 { text-transform: uppercase; letter-spacing: .03em; font-size: 1.3rem; }
.form-note { font-size: .82rem; color: var(--slate); margin-bottom: 1.2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .8rem; font-weight: 600; letter-spacing: .04em; color: var(--navy); }
.field label .req { color: #d64545; }
.field input, .field textarea {
  font: inherit; font-size: .95rem;
  padding: .7rem .85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfe;
  color: var(--navy);
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--blue-light); border-color: var(--blue); }
.field textarea { min-height: 120px; resize: vertical; }
.consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .82rem; margin: .3rem 0 1.2rem; }
.consent input { margin-top: .25rem; }
/* Honeypot – für Menschen unsichtbar */
.hp-field { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; }
/* Statusmeldung des Formulars */
.form-status { padding: .8rem 1rem; border-radius: 8px; font-size: .9rem; margin-bottom: 1.2rem; }
.form-status.is-ok    { background: #e4f4ea; color: #1c6b3f; border: 1px solid #b6e0c5; }
.form-status.is-error { background: #fdeceb; color: #a12f2a; border: 1px solid #f3c5c2; }

/* ---------- Rechtstext-Seiten (Impressum, Datenschutz) ------------------ */
.legal-page { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.legal { max-width: 820px; margin-inline: auto; }
.legal h2 { font-size: 1.7rem; margin: 2.2rem 0 .6rem; }
.legal h3 { font-size: 1.3rem; margin: 1.8rem 0 .5rem; }
.legal h4 { font-size: 1.05rem; margin: 1.4rem 0 .4rem; color: var(--navy); font-family: var(--font-sans); font-weight: 700; letter-spacing: .02em; }
.legal p  { font-size: .95rem; }
.legal a  { color: var(--blue); text-decoration: underline; word-break: break-word; }
.legal ul { padding-left: 1.2rem; }
.legal li { font-size: .95rem; margin-bottom: .4rem; }

/* ---------- Footer ------------------------------------------------------- */
.site-footer { background: var(--white); border-top: 1px solid var(--line); }
.footer-brand { text-align: center; padding: clamp(2.5rem,6vw,3.5rem) 0 1.5rem; }
.footer-brand img { width: 58px; height: 58px; margin: 0 auto .8rem; }
.footer-brand span { display:block; font-family: var(--font-serif); letter-spacing: .12em; text-transform: uppercase; color: var(--navy); font-size: .92rem; }
.footer-cols { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: var(--gap); padding-bottom: 3rem; }
.footer-cols h4 { text-transform: uppercase; letter-spacing: .1em; font-family: var(--font-sans); font-weight: 700; font-size: .78rem; color: var(--navy); margin-bottom: 1rem; }
.footer-cols p, .footer-cols li { font-size: .9rem; }
.footer-cols a { color: var(--slate); }
.footer-cols a:hover { color: var(--navy); }
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.socials { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.socials a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 999px; background: var(--blue); color: #fff; transition: background .2s, transform .2s; }
.socials a:hover { background: var(--navy); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; fill: currentColor; }
.footer-map { margin-bottom: 0; }
.map-load {
  width: 100%; min-height: 180px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem;
  background: var(--bg-tint); border: 1px dashed #c9d6e0; border-radius: var(--radius);
  cursor: pointer; color: var(--navy); font-family: var(--font-sans); text-align: center; padding: 1.5rem;
  transition: background .2s;
}
.map-load strong { font-size: .95rem; font-weight: 700; letter-spacing: .03em; }
.map-load small { color: var(--slate); font-size: .8rem; }
.map-load:hover { background: #e6eef4; }
.footer-map-frame { width: 100%; height: 340px; border: 0; border-radius: var(--radius); display: block; }
.footer-bottom { border-top: 1px solid var(--line); }
.footer-bottom .container { display: flex; flex-wrap: wrap; gap: .5rem 1rem; justify-content: space-between; padding-block: 1.2rem; font-size: .82rem; color: var(--slate); }
.footer-bottom a { color: var(--slate); }
.footer-bottom a:hover { color: var(--navy); }

/* ---------- Buchungs-Modal (termin2go) ---------------------------------- */
.booking-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: flex-start; justify-content: center; padding: 4vh 1rem; overflow-y: auto; }
.booking-modal[hidden] { display: none; }
.booking-modal__overlay { position: fixed; inset: 0; background: rgba(11,44,60,.55); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); }
.booking-modal__box { position: relative; z-index: 1; background: #fff; border-radius: var(--radius); width: 100%; max-width: 920px; margin: auto; box-shadow: 0 30px 80px rgba(11,44,60,.35); }
.booking-modal__bar { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; border-bottom: 1px solid var(--line); }
.booking-modal__title { font-family: var(--font-serif); color: var(--navy); font-size: 1.1rem; }
.booking-modal__close { width: 40px; height: 40px; border-radius: 999px; border: 0; background: var(--bg-tint); color: var(--navy); font-size: 1.5rem; line-height: 1; cursor: pointer; transition: background .2s; }
.booking-modal__close:hover { background: #e6eef4; }
.booking-modal__frame-wrap { padding: .5rem; }
.booking-modal__frame { width: 100%; height: 640px; border: 0; border-radius: 8px; display: block; }
.booking-modal__loading { padding: 3rem 1rem; text-align: center; color: var(--slate); }

/* ---------- Consent-Banner (Cookie-/GTM-Einwilligung) ------------------- */
.consent-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1100;
  background: #fff; border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(11,44,60,.15);
  padding: 1rem clamp(1rem, 4vw, 2rem);
}
.consent-banner__inner {
  max-width: var(--maxw); margin-inline: auto;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: space-between;
}
.consent-banner__text { font-size: .88rem; line-height: 1.6; margin: 0; max-width: 62ch; color: var(--slate); }
.consent-banner__text a { color: var(--blue); text-decoration: underline; }
.consent-banner__actions { display: flex; gap: .7rem; flex-shrink: 0; }
.consent-banner__actions .btn { padding: .7em 1.5em; }
@media (max-width: 600px) {
  .consent-banner__actions { width: 100%; }
  .consent-banner__actions .btn { flex: 1; }
}

/* ---------- Responsive --------------------------------------------------- */
@media (max-width: 860px) {
  .split, .contact .grid, .footer-cols, .team, .form-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .section h2 { font-size: 1.95rem; }   /* ~31px auf kleinen Screens */
  .subhead { font-size: 1.25rem; }
  .booking-modal { padding: 2vh .5rem; }
  .booking-modal__frame { height: 76vh; }
  .team { max-width: 420px; }
  .quote-cover::after { background: rgba(11,44,60,.6); }

  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 5px;
    background: none; border: 0; padding: .5rem; cursor: pointer;
  }
  .nav-toggle span { width: 26px; height: 2px; background: var(--navy); border-radius: 2px; transition: background .2s, .2s; }

  /* Startseite mobil: Header kompakt lassen (Off-Canvas-Menü liegt bei top:74px),
     Toggle-Striche im transparenten Default hell */
  body.home .site-header .container { min-height: 74px; }
  body.home .brand img { width: 54px; height: 54px; }
  body.home .site-header:not(.is-scrolled) .nav-toggle span { background: #fff; }
  body.home .site-header:has(.main-nav.open) .nav-toggle span { background: var(--navy); }
  .main-nav {
    position: fixed; top: 74px; left: 0; right: 0; z-index: 40;
    background: #fff;
    max-height: 0; overflow: hidden; transition: max-height .35s ease;
  }
  .main-nav.open { max-height: calc(100vh - 74px); box-shadow: 0 24px 40px rgba(11, 44, 60, .12); }
  .main-nav ul {
    flex-direction: column; align-items: center; justify-content: flex-start;
    gap: 1.6rem; padding: 2.2rem 1.2rem 3rem;
    min-height: calc(100vh - 74px);
  }
  .main-nav a { font-size: 1.7rem; padding: .5rem 2.4rem; letter-spacing: .04em; }
}

/* Kleine Handys: Hero-Titel & Icon-Punkte kompakter, kein Überlauf */
@media (max-width: 560px) {
  .hero__inner { padding-inline: 1rem; }
  /* Drei Punkte exakt gleich breit -> gleichmäßige Abstände, Icons oben ausgerichtet */
  .hero__points { gap: .5rem; margin: 1.2rem 0 1.8rem; align-items: flex-start; }
  .hero__point { flex: 1 1 0; max-width: none; font-size: .8rem; letter-spacing: .02em; }
  .hero__point small { font-size: .72rem; }
  .hero__point .ico { width: 46px; height: 46px; }
  .hero__point .ico svg { width: 20px; height: 20px; }
}
