/* =========================================================
   Mayaabdominaltherapie – Stylesheet (Prototyp)
   Warme, klare Maya-Palette: Sand/Creme, Terrakotta, Jade, Gold
   ========================================================= */

:root {
  /* Farben */
  --sand:        #f7f1e7;   /* Seitenhintergrund, warm */
  --sand-2:      #efe6d6;   /* Abschnitts-Wechsel */
  --cream:       #fffaf3;   /* Karten */
  --terra:       #b5623c;   /* Terrakotta – Hauptakzent */
  --terra-dark:  #8f4a2d;
  --jade:        #3f7d6e;   /* Jade-Grün (Schlange) */
  --jade-dark:   #2c5c50;
  --gold:        #c99a3f;   /* Gold-Akzent */
  --ink:         #3a2f28;   /* Text, warmes Dunkelbraun */
  --ink-soft:    #6b5d52;
  --line:        #e2d5c2;
  --dark:        #211a14;   /* dunkler Kopf – warmes Espresso */
  --dark-2:      #2c231b;
  --on-dark:     #f4ead6;   /* Text auf dunklem Grund */

  --shadow:      0 10px 30px rgba(58, 47, 40, .10);
  --shadow-sm:   0 4px 14px rgba(58, 47, 40, .08);
  --radius:      16px;

  --font-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Nunito Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-script: "Marck Script", "Cormorant Garamond", cursive;

  --maxw: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: .2px;
}
h1 { font-size: clamp(1.85rem, 3.5vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; }
a { color: var(--terra-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .8em 1.5em;
  border-radius: 999px;
  font-weight: 700;
  font-size: .98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--terra); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--terra-dark); color: #fff; }
.btn-ghost { background: transparent; color: var(--jade-dark); border-color: var(--jade); }
.btn-ghost:hover { background: var(--jade); color: #fff; }

/* =========================================================
   Kopfbereich / Navigation
   ========================================================= */
.topbar {
  background: var(--dark);
  color: #d8c7a8;
  font-size: .82rem;
  letter-spacing: .3px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar .container {
  display: flex; justify-content: flex-end; gap: 1.6rem;
  padding-top: 8px; padding-bottom: 8px; flex-wrap: wrap;
}
.topbar a { color: #d8c7a8; }
.topbar a:hover { color: var(--gold); }

/* ===== Kopf: Hero mit Tikal-Landschaft ===== */
.site-header { position: static; background: var(--dark); }

.kopf-band {
  position: relative;
  background-image: url("../assets/img/kopf-tikal-enh.jpg?v=3");
  background-size: cover; background-position: center;
  aspect-ratio: 1920 / 650; min-height: 300px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: clamp(1rem, 2.4vw, 1.5rem);
}
.kopf-band::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(20,15,10,.34) 0%, rgba(20,15,10,0) 46%),
    linear-gradient(0deg, rgba(20,15,10,.64) 0%, rgba(20,15,10,.16) 40%, rgba(20,15,10,0) 58%);
}

.kopf-logo { position: absolute; z-index: 3; top: 14px; right: 20px; display: block; line-height: 0; }
.kopf-logo img { width: 104px; height: auto; display: block; filter: drop-shadow(0 2px 5px rgba(0,0,0,.35)); }

.kopf-brand {
  position: relative; z-index: 2;
  display: flex; align-items: baseline; flex-wrap: nowrap; white-space: nowrap; gap: .1rem .9rem;
  padding: 0 clamp(1.1rem, 4vw, 3rem); margin-bottom: clamp(.7rem, 1.6vw, 1.1rem);
  text-decoration: none;
}
.kopf-brand:hover { text-decoration: none; }
.kopf-title { font-family: "Tangerine", var(--font-head), cursive; font-weight: 700; color: #fff6ea; line-height: 1.0; text-shadow: 0 2px 16px rgba(0,0,0,.6); font-size: clamp(2rem, 7.2vw, 5rem); }
.kopf-suffix { font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #fbe8d2; font-size: clamp(.56rem, 1.55vw, .84rem); text-shadow: 0 1px 8px rgba(0,0,0,.7); }

.site-header nav { position: relative; z-index: 2; }
.menu {
  display: flex; list-style: none; margin: 0; width: 100%;
  padding: 0 clamp(1.1rem, 4vw, 3rem); gap: .5rem; justify-content: space-between;
}
.menu > li { position: relative; }
.menu > li > a {
  display: block; background: rgba(20,15,10,.12); border: 1.5px solid rgba(255,255,255,.80);
  border-radius: 11px; padding: .5rem 1rem; color: #fff8ee; font-weight: 600; font-size: .96rem;
  white-space: nowrap; text-shadow: 0 1px 6px rgba(0,0,0,.75);
  -webkit-backdrop-filter: blur(1.5px); backdrop-filter: blur(1.5px);
  transition: background .15s, border-color .15s;
}
.menu > li > a:hover { background: rgba(63,125,110,.55); border-color: #fff; color: #fff; text-decoration: none; }
.menu > li > a[aria-current="page"] { background: rgba(63,125,110,.5); border-color: #fff; }
.menu .has-sub > a::after { content: " ▾"; font-size: .8em; }

.submenu {
  position: absolute; top: 100%; left: 0; min-width: 224px; z-index: 20;
  background: var(--dark-2); border: 1px solid rgba(201,154,63,.30);
  border-radius: 12px; box-shadow: 0 14px 34px rgba(0,0,0,.45);
  padding: .4rem; margin: .45rem 0 0; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .18s ease;
}
.menu .has-sub:hover .submenu,
.menu .has-sub:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { display: block; padding: .55em .8em; border-radius: 8px; color: #e7d9bf; font-size: .95rem; }
.submenu a:hover { background: rgba(255,255,255,.08); color: var(--gold); text-decoration: none; }

.nav-toggle { display: none; position: absolute; z-index: 4; top: 16px; left: 20px; background: rgba(20,15,10,.4); border: 1.5px solid rgba(255,255,255,.75); border-radius: 10px; cursor: pointer; padding: .5rem .55rem; }
.nav-toggle span { display: block; width: 24px; height: 3px; background: #fff; margin: 4px 0; border-radius: 3px; transition: .2s; }

/* Handy/Tablet: Bild-Kopf bleibt, Menü als ☰-Overlay */
@media (max-width: 1024px) {
  .kopf-band { aspect-ratio: auto; height: clamp(190px, 44vw, 300px); min-height: 0; }
  .kopf-logo img { width: 72px; }
  .kopf-brand { padding-right: 76px; }
  .kopf-title { font-size: clamp(1.5rem, 7.4vw, 2.8rem); }
  .nav-toggle { display: block; }
  .menu {
    position: absolute; top: 100%; left: 0; right: 0; width: auto; z-index: 30;
    flex-direction: column; align-items: stretch; gap: 0; justify-content: flex-start;
    padding: .5rem 1.2rem 1.2rem;
    background: var(--dark); border-bottom: 1px solid rgba(201,154,63,.35);
    box-shadow: 0 12px 30px rgba(0,0,0,.4); max-height: 80vh; overflow-y: auto;
    transform: translateY(-120%); opacity: 0; transition: transform .25s ease, opacity .2s ease; pointer-events: none;
  }
  .menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .menu > li > a { background: none; border: 0; border-bottom: 1px solid rgba(255,255,255,.08); border-radius: 0; padding: .8em .4em; text-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; color: var(--on-dark); }
  .menu > li > a:hover { background: rgba(255,255,255,.08); border-bottom-color: rgba(255,255,255,.08); color: var(--gold); }
  .menu > li > a[aria-current="page"] { background: none; color: var(--gold); }
  .submenu {
    position: static; opacity: 1; visibility: visible; transform: none; z-index: auto;
    box-shadow: none; border: 0; background: rgba(255,255,255,.05); min-width: 0;
    margin: .2rem 0 .6rem; border-radius: 8px; max-height: 0; overflow: hidden; padding: 0 .4rem;
    transition: max-height .25s ease, padding .25s ease;
  }
  .menu .has-sub.open .submenu { max-height: 400px; padding: .3rem .4rem; }
  .menu .has-sub > a::after { float: right; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  display: flex; align-items: flex-start;
  min-height: clamp(430px, 66vh, 600px);
  background:
    linear-gradient(90deg, rgba(28,22,16,.82) 0%, rgba(28,22,16,.60) 30%, rgba(28,22,16,.20) 52%, rgba(28,22,16,0) 72%),
    url("../assets/img/pyramide-bg.jpg") center 34% / cover no-repeat,
    var(--dark);
  color: var(--on-dark);
  padding: clamp(2.4rem, 5vw, 4.5rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero-text { max-width: 560px; }
.hero-grid {
  display: grid; grid-template-columns: minmax(240px, 40%) 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center;
}
/* Ixchel oben links – wie ein gerahmtes Gemälde an dunkler Wand */
.hero-img-wrap { position: relative; }
.hero-img {
  position: relative; z-index: 1;
  border-radius: 14px;
  border: 1px solid rgba(201,154,63,.55);
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
  width: 100%; height: auto;
}
/* zarter Mond-Schein oben rechts */
.hero-img-wrap::after {
  content: ""; position: absolute; inset: -18px -18px auto auto;
  width: 130px; height: 130px; border-radius: 50%; z-index: 0;
  background: radial-gradient(circle at 45% 45%, rgba(255,246,224,.35), rgba(201,154,63,.14) 60%, transparent 72%);
}
.eyebrow {
  display: inline-block; font-family: var(--font-body); font-weight: 800;
  letter-spacing: 3px; text-transform: uppercase; font-size: .74rem;
  color: var(--jade); margin-bottom: .8rem;
}
.hero h1 { margin-bottom: .3rem; color: #fff; }
.hero .eyebrow { color: var(--gold); }
.hero .subtitle { font-family: var(--font-head); font-size: 1.6rem; color: #eccf8f; font-style: italic; margin-bottom: 1.2rem; }
.hero .lead { font-size: 1.12rem; color: rgba(244,234,214,.9); max-width: 46ch; margin-bottom: 1.6rem; }
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; }
.hero .btn-ghost { color: var(--on-dark); border-color: rgba(244,234,214,.5); }
.hero .btn-ghost:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* =========================================================
   Zitat-Band
   ========================================================= */
.quote-band {
  background: linear-gradient(160deg, var(--jade-dark) 0%, #24463d 100%);
  color: #f6ecd9; text-align: center;
  padding: clamp(2.6rem, 6vw, 4rem) 0;
}
.quote-band blockquote {
  margin: 0 auto; max-width: 800px;
  font-family: var(--font-head); font-style: italic; font-weight: 500;
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  line-height: 1.42; color: #fdf6e9;
}
.quote-band blockquote::before {
  content: "\201C"; display: block;
  font-family: var(--font-head); font-size: 3.4rem; line-height: .1;
  color: var(--gold); margin-bottom: 1.4rem;
}
.quote-band cite {
  display: block; margin-top: 1.4rem; font-family: var(--font-body); font-style: normal;
  font-size: .82rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold);
}
/* Optionales Script-Zitat für kurze Sprüche */
.quote-band blockquote.script { font-family: var(--font-script); font-style: normal; font-size: clamp(1.8rem, 4.4vw, 2.8rem); }
.quote-band blockquote.script::before { display: none; }

/* Auftakt-Zitat auf hellem Grund (Startseite) */
.intro-quote { text-align: center; }
.lead-quote { margin: 0 auto; max-width: 960px; font-family: var(--font-head); font-style: italic; font-weight: 500; font-size: clamp(1.2rem, 2.7vw, 1.85rem); line-height: 1.4; color: var(--jade-dark); }
.lead-quote cite { display: block; margin-top: 1rem; font-family: var(--font-body); font-style: normal; font-size: .8rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--terra); }
.intro-lead { max-width: 60ch; margin: 1.6rem auto 0; color: var(--ink-soft); font-size: 1.12rem; }
.wb-links { margin-top: 2.4rem; display: flex; align-items: center; gap: 1.4rem; }
.wb-atc-logo { width: 78px; height: auto; flex: none; }
.wb-links p { flex: 1; margin: 0; font-size: 1rem; color: var(--ink-soft); }
.wb-links a { font-weight: 700; color: var(--terra-dark); }
@media (max-width: 560px) { .wb-links { flex-direction: column; text-align: center; gap: .8rem; } }

/* Pull-Quote im Fließtext (z. B. Don Elijio bei „Wurzeln") */
.wurzeln-quote { margin: 2.8rem auto; max-width: 760px; text-align: center; font-family: var(--font-head); font-style: italic; font-weight: 500; font-size: clamp(1.35rem, 2.9vw, 1.95rem); line-height: 1.42; color: var(--jade-dark); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.9rem 1rem; }
.wurzeln-quote cite { display: block; margin-top: .9rem; font-family: var(--font-body); font-style: normal; font-size: .78rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--terra); }

/* =========================================================
   Abschnitte / Karten
   ========================================================= */
.section { padding: clamp(2.6rem, 6vw, 4.5rem) 0; }
.section.alt { background: var(--sand-2); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.4rem; }
.section-head .eyebrow { margin-bottom: .4rem; }
.section-head p { color: var(--ink-soft); }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.4rem; }
.card {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--terra), var(--gold)); color: #fff;
  font-size: 1.5rem; margin-bottom: 1rem;
}
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--ink-soft); font-size: .97rem; flex: 1; }
.card .more { margin-top: 1rem; font-weight: 700; color: var(--terra-dark); font-size: .92rem; }

/* Praxis – klickbare Kacheln (Anfahrt / Honorar / Formulare) */
.praxis-tile { text-decoration: none; color: inherit; }
.praxis-tile:hover { text-decoration: none; }
.praxis-tile .more { color: var(--terra); }
.praxis-tile:hover .more { color: var(--terra-dark); }

/* Praxis – Foto-Platzhalter (Fotos folgen später) */
.praxis-photos { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); gap: 1.2rem; margin: 1.8rem 0 clamp(2.4rem, 5vw, 3.5rem); }
.photo-ph {
  aspect-ratio: 4 / 3; display: grid; place-items: center; text-align: center; padding: 1rem;
  background: var(--sand-2); border: 2px dashed var(--line); border-radius: var(--radius);
  color: var(--ink-soft); font-style: italic; font-size: .9rem;
}
.praxis-photos figure { margin: 0; }
.praxis-photos img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block;
  border-radius: var(--radius); box-shadow: var(--shadow); border: 6px solid var(--cream);
}
.praxis-photos figcaption { margin-top: .6rem; font-size: .82rem; color: var(--ink-soft); font-style: italic; text-align: center; }

/* Anwendungsgebiete – Pillen */
.pills { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; max-width: 820px; margin: 0 auto; }
.pill { background: var(--cream); border: 1px solid var(--line); border-radius: 999px; padding: .55em 1.1em; font-size: .95rem; box-shadow: var(--shadow-sm); color: inherit; text-decoration: none; transition: border-color .15s, color .15s, transform .15s; }
a.pill:hover { border-color: var(--terra); color: var(--terra-dark); transform: translateY(-2px); }

/* Anwendungsgebiete – 3 Hauptkacheln (Tabs) + aufklappende Themen */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.app-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-bottom: 2.4rem; }
.app-tab { display: flex; flex-direction: column; gap: .35rem; text-align: left; font: inherit; color: inherit; cursor: pointer; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.4rem; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.app-tab:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(58,47,40,.12); }
.app-tab:focus-visible { outline: 2px solid var(--jade); outline-offset: 2px; }
.app-tab-eyebrow { font-family: var(--font-body); font-weight: 800; letter-spacing: 2px; text-transform: uppercase; font-size: .66rem; color: var(--terra); }
.app-tab-title { font-family: var(--font-head); font-size: 1.3rem; line-height: 1.15; color: var(--ink); }
.app-tab[aria-selected="true"] { border-color: var(--jade); box-shadow: inset 0 0 0 2px var(--jade), var(--shadow-sm); background: #f3f8f5; }
.app-tab[aria-selected="true"] .app-tab-title { color: var(--jade-dark); }
.app-panel { display: none; }
.app-panel.is-active { display: block; animation: appFade .25s ease; }
@keyframes appFade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.app-panel-intro { text-align: center; color: var(--ink-soft); max-width: 640px; margin: 0 auto 1.6rem; }
.app-topics { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--line); }
.app-topic { padding: 1.4rem 0; border-bottom: 1px solid var(--line); scroll-margin-top: 110px; }
.app-topic h3 { font-size: 1.2rem; margin-bottom: .45rem; color: var(--jade-dark); }
.app-topic p { color: var(--ink-soft); }
.app-topic p + p { margin-top: .7rem; }
.app-topic:target h3 { color: var(--terra-dark); }
@media (max-width: 720px) { .app-tabs { grid-template-columns: 1fr; } }

/* Ergänzende Therapien */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.tag-list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.tag-list li { padding-left: 1.5rem; position: relative; color: var(--ink-soft); }
.tag-list li::before { content: "❖"; position: absolute; left: 0; color: var(--gold); }

/* ---------- Unterseiten: Seitenkopf, Breadcrumb ---------- */
.page-hero {
  background:
    radial-gradient(900px 400px at 85% -20%, rgba(201,154,63,.16), transparent 60%),
    linear-gradient(180deg, var(--sand) 0%, var(--sand-2) 100%);
  padding: clamp(2rem, 5vw, 3.4rem) 0 clamp(1.6rem, 4vw, 2.6rem);
  text-align: center;
}
.page-hero h1 { margin: .2rem 0 .6rem; }
.lead-center { max-width: 60ch; margin: 0 auto; color: var(--ink-soft); font-size: 1.12rem; }
.crumbs { font-size: .85rem; color: var(--ink-soft); margin-bottom: 1rem; }
.crumbs a { color: var(--jade-dark); }

.rounded-img { border-radius: 18px; box-shadow: var(--shadow); border: 6px solid var(--cream); }
.caption { text-align: center; font-size: .86rem; color: var(--ink-soft); font-style: italic; margin-top: .6rem; }

/* Hintergrund & Ixchel – kleines Bild mittig, Text links & rechts */
.ixchel-head { text-align: center; margin-bottom: 2rem; }
.ixchel-layout::after { content: ""; display: block; clear: both; }
.ixchel-layout .ix-text p:last-child { margin-bottom: 0; }
.ix-figure {
  float: left; width: 240px; max-width: 42%;
  margin: .3rem clamp(1.5rem, 3vw, 2.6rem) 1rem 0;
}
.ix-figure .rounded-img { width: 100%; height: auto; display: block; }
.ix-figure.right { float: right; margin: .3rem 0 1rem clamp(1.5rem, 3vw, 2.6rem); }
.ix-text h3 { font-size: 1.35rem; margin-bottom: .6rem; color: var(--jade-dark); }
.ixchel-sub { margin-top: 3rem; padding-top: 2.8rem; border-top: 1px solid var(--line); }

/* Definitionsliste (z. B. Lagevarianten) */
.def-list { margin: .2rem 0 1.4rem; padding-left: 1.2rem; }
.def-list li { margin-bottom: .45rem; color: var(--ink-soft); }

/* Abbildung: Lagevariationen der Gebärmutter */
.uterus-figure { margin: 2.2rem 0 2.6rem; }
.uterus-caption { text-align: center; font-size: .9rem; color: var(--ink-soft); font-style: italic; margin-bottom: 1.2rem; max-width: 60ch; margin-left: auto; margin-right: auto; }
.uterus-figures { display: grid; grid-template-columns: repeat(5, 1fr); gap: .9rem; }
@media (max-width: 640px) { .uterus-figures { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; } }
.uterus-fig { margin: 0; }
.uterus-fig img { width: 100%; height: auto; border-radius: 12px; border: 5px solid var(--cream); box-shadow: var(--shadow-sm); display: block; }
.uterus-fig figcaption { text-align: center; margin-top: .55rem; font-size: .92rem; color: var(--ink); font-weight: 600; }
.uf-key { display: inline-grid; place-items: center; width: 1.5em; height: 1.5em; border-radius: 50%; background: var(--jade); color: #fff; font-size: .78rem; margin-right: .35em; vertical-align: middle; }

/* Wurzeln: Bild + erste Absätze zweispaltig, restliche Absätze über volle Breite darunter */
.wurzeln-top { display: grid; grid-template-columns: 300px 1fr; gap: clamp(1.5rem, 3vw, 2.6rem); align-items: start; }
.wurzeln-top .ix-figure { float: none; width: 100%; max-width: none; margin: 0; }
.wurzeln-top .ix-text p:last-child { margin-bottom: 0; }
.wurzeln-rest { margin-top: 1.3rem; }
.wurzeln-rest p:last-child { margin-bottom: 0; }
.wurzeln-rest .ix-figure.right { width: 300px; max-width: 46%; }
@media (max-width: 700px) {
  .wurzeln-top { grid-template-columns: 1fr; }
  .wurzeln-top .ix-figure { max-width: 320px; margin: 0 auto 1.2rem; }
}
@media (max-width: 620px) {
  .ix-figure { float: none; width: auto; max-width: 260px; margin: 0 auto 1.4rem; }
  .ix-figure.right { float: none; margin: 0 auto 1.4rem; }
  .caption { text-align: center; }
}

/* Bauchbild im Behandlungsabschnitt */
.behandlung-figure { max-width: 640px; margin: 0 auto 2.6rem; }
.behandlung-figure .rounded-img { width: 100%; height: auto; display: block; }

/* Ablauf-Schritte */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; }
.step {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.4rem; box-shadow: var(--shadow-sm); position: relative;
}
.step-no {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: var(--jade); color: #fff; font-family: var(--font-head); font-size: 1.3rem;
  font-weight: 600; margin-bottom: .9rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: .3rem; }
.step p { color: var(--ink-soft); font-size: .96rem; margin: 0; }

/* Wirkprinzipien: zwei nebeneinanderstehende Grundgedanken */
/* min() verhindert Überlauf auf sehr schmalen Displays (ab 320px). */
.principles { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 2rem; align-items: stretch; }
.principle {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.8rem; box-shadow: var(--shadow-sm);
}
.principle-no {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--gold); color: var(--gold);
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 600; margin-bottom: 1rem;
}
.principle h3 { font-size: 1.35rem; margin-bottom: .8rem; }
.principle p { color: var(--ink-soft); font-size: .98rem; margin-bottom: .9rem; }
.principle p:last-child { margin-bottom: 0; }
.principle strong { color: var(--ink); }

/* Die fünf Flüsse – NAVEL als Merkwort, Anfangsbuchstabe hervorgehoben */
.flows { list-style: none; margin: 1.2rem 0; padding: 0; display: flex; flex-direction: column; gap: .7rem; }
.flows li { display: flex; align-items: baseline; gap: .85rem; font-size: .96rem; color: var(--ink-soft); line-height: 1.5; }
.flow-key {
  flex: none; width: 30px; height: 30px; display: grid; place-items: center;
  border-radius: 8px; background: var(--jade); color: #fff;
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 600;
  align-self: flex-start;
}
.flows strong { color: var(--ink); }
.flows-detail { gap: 1.1rem; }
.flows-detail li { font-size: 1rem; }

/* Sechs Ablaufschritte gleichmäßig auf zwei Reihen zu je drei verteilen
   (auto-fit ergäbe sonst eine unausgewogene 4+2-Aufteilung). */
@media (min-width: 1000px) { #behandlung .steps { grid-template-columns: repeat(3, 1fr); } }

/* Hervorgehobener Hinweis: Ablauf ist Struktur, kein starres Schema */
.adapt-box {
  margin-top: 2.2rem; padding: 1.8rem 2rem;
  background: var(--cream); border: 1px solid var(--line);
  border-left: 4px solid var(--jade); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.adapt-box h3 { font-size: 1.35rem; margin-bottom: .55rem; color: var(--jade-dark); }
.adapt-box p { color: var(--ink-soft); font-size: .98rem; margin: 0; }

/* Zusätzlicher Punkt „Weitere Therapieschwerpunkte" – Überschrift volle Breite, darunter Bild + Text */
.extra-method { margin-top: 3.6rem; padding-top: 3rem; border-top: 1px solid var(--line); }
.extra-head { margin-bottom: 1.8rem; }
.extra-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: .35rem 0 0; }
.extra-cols { display: grid; grid-template-columns: 1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: center; }
@media (min-width: 820px) { .extra-cols { grid-template-columns: 1fr 1fr; } }

/* Ergänzende Behandlungen: Text über volle Breite (kein Bild) */
.ergaenzung { margin-top: 3rem; }

/* ---------- Ergänzende Behandlungen (Detailseite) ---------- */
.methods { display: grid; gap: clamp(2.6rem, 5vw, 4rem); }
.method { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
.method-media { margin: 0; }
.method-media img,
.method-ph {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow);
  border: 6px solid var(--cream); display: block;
}
.method-ph {
  display: grid; place-items: center; text-align: center; padding: 1rem;
  background: var(--sand-2); border: 2px dashed var(--line);
  color: var(--ink-soft); font-style: italic; font-size: .9rem;
}
.method-media figcaption { margin-top: .6rem; font-size: .82rem; color: var(--ink-soft); font-style: italic; text-align: center; }
.method-body .method-sub, .extra-head .method-sub { display: block; color: var(--terra); font-size: .78rem; letter-spacing: 1.6px; text-transform: uppercase; font-weight: 700; margin-bottom: .5rem; }
.method-body h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .5rem; }
.method-body p { color: var(--ink-soft); }
.method-body p:last-child { margin-bottom: 0; }
.method-note { font-size: .88rem; color: var(--ink-soft); background: var(--cream); border-left: 3px solid var(--gold); border-radius: 10px; padding: .7rem 1rem; margin-top: 1rem; }
.method:nth-of-type(even) .method-media { order: 2; }
@media (max-width: 820px) {
  .method { grid-template-columns: 1fr; }
  .method:nth-of-type(even) .method-media { order: 0; }
}

/* ---------- Wissenswertes: Bild-Kacheln ---------- */
.wissen-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr)); gap: 1.6rem; }
.wissen-tile {
  display: block; text-decoration: none; color: inherit;
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.wissen-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); text-decoration: none; }
.wissen-tile img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.wissen-tile-body { padding: 1.1rem 1.2rem 1.3rem; }
.wissen-tile-body h3 { margin: 0 0 .35rem; }
.wissen-tile-body p { margin: 0; color: var(--ink-soft); font-size: .95rem; }
.wissen-tile-body .more { display: inline-block; margin-top: .7rem; color: var(--terra); font-weight: 700; font-size: .9rem; }
.wissen-tile:hover .more { color: var(--terra-dark); }
.ergaenzung-text h3 { font-size: 1.35rem; margin-bottom: .7rem; }
.ergaenzung-text p { color: var(--ink-soft); margin-bottom: 1rem; }
.ergaenzung-figure { margin: 0; }
.ergaenzung-figure img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }
.ergaenzung-figure figcaption { margin-top: .6rem; font-size: .82rem; color: var(--ink-soft); font-style: italic; text-align: center; }
@media (max-width: 820px) { .ergaenzung { grid-template-columns: 1fr; gap: 1.6rem; } }

/* Ergänzende Hinweise zum Sitzungsablauf */
.session-notes { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 1.6rem; margin-top: 2.2rem; }
.session-note { border-left: 3px solid var(--gold); padding: .2rem 0 .2rem 1.3rem; }
.session-note h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.session-note p { color: var(--ink-soft); font-size: .96rem; margin: 0; }

.note { text-align: center; max-width: 640px; margin: 2rem auto 0; font-size: .9rem; color: var(--ink-soft); font-style: italic; }
.cta-center { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-top: 2.2rem; }

/* Über mich – kleine Fotos im Fließtext, Text fließt daneben */
.about-prose { max-width: 840px; margin: 0 auto; }
.about-prose::after { content: ""; display: block; clear: both; }
.side-photo { width: 200px; margin: .3rem 0 1rem; }
.side-photo img { width: 100%; height: auto; border-radius: 14px; border: 5px solid var(--cream); box-shadow: var(--shadow); }
.side-photo figcaption { text-align: center; font-size: .82rem; color: var(--ink-soft); font-style: italic; margin-top: .5rem; }
.side-photo.right { float: right; margin-left: 1.8rem; width: 230px; }
.side-photo.left { float: left; margin-right: 1.8rem; width: 185px; }
@media (max-width: 560px) {
  .side-photo.right, .side-photo.left { float: none; width: 210px; margin: 0 auto 1.2rem; }
}

/* Fließtext / Über mich */
.prose { max-width: 760px; margin: 0 auto; }
.prose h3 { margin-top: 1.8rem; }
.prose-wide { max-width: 940px; margin: 0 auto; }

/* Info-Tabellen (Ausbildung / Werdegang) */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.info-table { width: 100%; border-collapse: collapse; background: var(--cream); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); font-size: .96rem; }
.info-table th { background: var(--jade-dark); color: #f6ecd9; text-align: left; padding: .8em 1em; font-family: var(--font-body); font-weight: 700; font-size: .82rem; letter-spacing: 1px; text-transform: uppercase; }
.info-table td { padding: .85em 1em; border-top: 1px solid var(--line); color: var(--ink); vertical-align: top; }
.info-table td:first-child { white-space: nowrap; font-weight: 700; color: var(--terra-dark); }
.info-table tr:nth-child(even) td { background: rgba(201,154,63,.05); }
.timeline { list-style: none; padding: 0; margin: .5rem 0 1.5rem; }
.timeline li { padding: .7em 0 .7em 1.6rem; border-left: 2px solid var(--gold); margin-left: .4rem; position: relative; color: var(--ink-soft); }
.timeline li::before { content: ""; position: absolute; left: -7px; top: 1.1em; width: 12px; height: 12px; border-radius: 50%; background: var(--terra); }

/* FAQ (Akkordeon) */
.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  background: var(--cream); border: 1px solid var(--line); border-radius: 12px;
  margin-bottom: .8rem; padding: .2rem 1.2rem; box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; font-family: var(--font-head); font-size: 1.2rem; font-weight: 600;
  color: var(--terra-dark); padding: .9rem 0; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "＋"; float: right; color: var(--gold); font-weight: 700; }
.faq details[open] summary::after { content: "－"; }
.faq details p { color: var(--ink-soft); margin: 0 0 1rem; }

/* Fachpublikationen */
.pub-group {
  font-size: 1.5rem; color: var(--jade-dark); margin: 2.6rem 0 .4rem;
  padding-bottom: .5rem; border-bottom: 2px solid var(--gold); display: flex; align-items: center; gap: .5rem;
}
.pub-group:first-child { margin-top: 0; }
.is-pending { opacity: .62; cursor: default; pointer-events: none; }
.pub-list { list-style: none; padding: 0; margin: 0; }
.pub {
  display: grid; grid-template-columns: minmax(0, 360px) 1fr; gap: 1.4rem;
  align-items: center; padding: 1.3rem 0; border-bottom: 1px solid var(--line);
}
.pub:last-child { border-bottom: 0; }
.pub-btn {
  display: flex; align-items: center; gap: .8rem; padding: .9rem 1.1rem;
  background: var(--cream); border: 1px solid var(--line); border-radius: 12px;
  color: var(--ink); text-decoration: none; box-shadow: var(--shadow-sm);
  transition: border-color .15s, transform .15s;
}
.pub-btn:hover { border-color: var(--terra); transform: translateY(-2px); text-decoration: none; }
.pub-btn.ext:hover { border-color: var(--jade); }
.pub-icon { font-size: 1.5rem; flex: none; }
.pub-btn-text { display: flex; flex-direction: column; line-height: 1.25; }
.pub-btn-text strong { color: var(--terra-dark); font-size: 1rem; }
.pub-btn.ext .pub-btn-text strong { color: var(--jade-dark); }
.pub-meta { font-size: .8rem; color: var(--ink-soft); font-weight: 700; letter-spacing: .5px; text-transform: uppercase; margin-top: .25rem; }
.pub-co { display: inline-block; font-size: .82rem; font-style: italic; color: var(--gold); }
.pub-cite { margin: 0; font-size: .96rem; color: var(--ink); line-height: 1.5; }
.pub-cite .pub-authors { font-weight: 800; color: var(--terra-dark); }
.pub-cite .pub-title { font-style: italic; color: var(--ink); }
.pub-cite .pub-source { display: inline-block; margin-top: .1rem; font-size: .82rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--ink-soft); }
.pub-desc { margin: .5rem 0 0; color: var(--ink-soft); font-size: .95rem; }

/* Buchprojekt – Cover statt Button */
.pub-cover { display: block; justify-self: start; line-height: 0; }
.pub-cover img {
  width: 180px; max-width: 100%; height: auto; border-radius: 8px;
  border: 1px solid var(--line); box-shadow: var(--shadow); transition: transform .15s, box-shadow .15s;
}
.pub-cover:hover img { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(60,40,20,.22); }
.pub-extlink { display: inline-block; margin-top: .6rem; font-weight: 700; color: var(--jade-dark); text-decoration: none; }
.pub-extlink:hover { color: var(--terra-dark); text-decoration: underline; }

/* Publikationen – mobile Stapelung */
@media (max-width: 620px) {
  .pub { grid-template-columns: 1fr; gap: .8rem; }
  .pub-cover { justify-self: center; }
}

/* Einblicke – Blog */
.blog-intro { max-width: 720px; margin: 0 auto 2.6rem; text-align: center; color: var(--ink-soft); font-size: 1.05rem; }
.blog-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.8rem; }
.blog-card { display: flex; flex-direction: column; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s; height: 100%; }
a.blog-card { text-decoration: none; color: inherit; }
a.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: linear-gradient(135deg, var(--jade-dark), var(--terra)); }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-cat { position: absolute; top: .8rem; left: .8rem; background: var(--jade-dark); color: #f6ecd9; font-size: .7rem; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; padding: .32em .8em; border-radius: 999px; box-shadow: var(--shadow-sm); }
.blog-card-body { padding: 1.4rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.blog-card-body h2 { font-size: 1.32rem; line-height: 1.25; color: var(--terra-dark); margin: 0; }
.blog-meta { font-size: .78rem; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--ink-soft); margin: 0; }
.blog-card-body p:not(.blog-meta) { margin: 0; color: var(--ink-soft); font-size: .96rem; }
.blog-more { margin-top: auto; padding-top: .4rem; font-weight: 700; color: var(--jade-dark); }
.blog-card.is-pending { opacity: .82; }
.blog-card.is-pending .blog-card-media { filter: grayscale(.25); }

/* Honorar – Preis-Karten */
.price-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.4rem; }
.price-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); text-align: center; }
.price-eyebrow { display: block; font-family: var(--font-body); font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; font-size: .74rem; color: var(--jade); }
.price { font-family: var(--font-head); font-size: 2.4rem; font-weight: 600; color: var(--terra-dark); margin: .5rem 0 .1rem; }
.price-meta { color: var(--ink-soft); font-size: .95rem; margin-bottom: .8rem; }
.price-card p:last-child { margin-bottom: 0; color: var(--ink-soft); font-size: .96rem; }

.highlight-box { display: flex; gap: 1rem; align-items: center; background: rgba(63,125,110,.10); border: 1px solid rgba(63,125,110,.25); border-radius: var(--radius); padding: 1.4rem 1.6rem; margin: 2rem 0; }
.highlight-box p { margin: 0; }
.legal-list { padding-left: 1.2rem; margin: 0 0 1em; }
.legal-list li { margin-bottom: .4rem; }

/* Kontakt */
.contact-lines { line-height: 1.9; }
.info-table.hours td:first-child { font-weight: 600; color: var(--ink); white-space: normal; }
.form-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form label { display: flex; flex-direction: column; gap: .35rem; font-weight: 600; font-size: .92rem; color: var(--ink); }
.contact-form input, .contact-form textarea {
  font-family: inherit; font-size: 1rem; padding: .7em .8em; border: 1px solid var(--line);
  border-radius: 10px; background: var(--sand); color: var(--ink); font-weight: 400;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--jade); border-color: var(--jade); }
.contact-form .check { flex-direction: row; align-items: flex-start; gap: .6rem; font-weight: 400; font-size: .86rem; color: var(--ink-soft); }
.contact-form .check input { width: 18px; height: 18px; margin-top: .15rem; flex: none; }
.contact-form button { align-self: flex-start; margin-top: .3rem; }

/* Honigtopf-Feld gegen Spam-Bots – für Menschen unsichtbar, aber im
   Seitenfluss vorhanden (display:none würde von Bots erkannt werden). */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Statusmeldungen nach dem Absenden */
.form-status[hidden] { display: none; }
.form-status {
  display: flex; flex-direction: column; gap: .3rem;
  padding: 1rem 1.1rem; margin-bottom: 1.4rem;
  border-radius: 12px; border: 1px solid var(--line);
  border-left-width: 4px; font-size: .92rem; line-height: 1.55;
}
.form-status strong { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; }
.form-status span { color: var(--ink-soft); }
.form-status a { color: inherit; text-decoration: underline; }
.form-status.is-ok    { background: #eef5f2; border-color: #cfe3dc; border-left-color: var(--jade);  color: var(--jade-dark); }
.form-status.is-warn  { background: #fdf4e6; border-color: #f0e0c4; border-left-color: var(--gold);  color: #8a6415; }
.form-status.is-error { background: #fbeee9; border-color: #f0d8cd; border-left-color: var(--terra); color: var(--terra-dark); }

/* Formulare / Downloads */
.downloads-box {
  margin-top: 2.2rem; background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm);
}
.downloads-box h3 { margin-bottom: .3rem; }
.downloads-box > p { color: var(--ink-soft); max-width: 60ch; }
.download-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1rem; margin-top: 1.2rem; }
.download-item {
  display: flex; align-items: center; gap: .9rem; padding: 1rem 1.1rem;
  border: 1px solid var(--line); border-radius: 12px; background: var(--sand);
  text-decoration: none; color: var(--ink); transition: border-color .15s, transform .15s;
}
.download-item:not(.is-pending):hover { border-color: var(--terra); transform: translateY(-2px); text-decoration: none; }
.download-item.is-pending { opacity: .7; cursor: default; }
.dl-icon { font-size: 1.6rem; }
.dl-text { display: flex; flex-direction: column; line-height: 1.3; }
.dl-text strong { color: var(--terra-dark); }
.dl-text .placeholder { font-size: .85rem; }
.dl-text .dl-sub { font-size: .85rem; color: var(--ink-soft); margin-top: .15rem; }
.dl-format { font-size: .72rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--jade-dark); margin-top: .3rem; }
.download-item.is-pdf { border-left: 3px solid var(--terra); }
.download-item.is-html { border-left: 3px solid var(--jade); }
.dl-group-title { font-size: 1.15rem; color: var(--jade-dark); margin: 2.2rem 0 .2rem; }
.dl-group-title:first-of-type { margin-top: .5rem; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--ink); color: #e9ddce; padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 2rem; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: #e9ddce; }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.2rem; padding-top: 1.2rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .85rem; color: #b7a998; }
.footer-bottom a { margin-left: 1.2rem; }

.placeholder { background: rgba(201,154,63,.18); border-radius: 4px; padding: 0 .3em; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(28,22,16,.55) 0%, rgba(28,22,16,.42) 42%, rgba(28,22,16,.80) 100%),
      url("../assets/img/pyramide-bg.jpg") center 30% / cover no-repeat,
      var(--dark);
  }
  .hero-text { max-width: 100%; }
  .split { grid-template-columns: 1fr; }

  .nav { padding-right: 48px; }
  .nav-toggle { display: block; position: absolute; top: 16px; left: 20px; }
  .menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--dark); border-bottom: 1px solid rgba(201,154,63,.35);
    padding: .5rem 1.2rem 1.2rem; box-shadow: 0 12px 30px rgba(0,0,0,.4);
    max-height: 80vh; overflow-y: auto;
    transform: translateY(-120%); opacity: 0; transition: transform .25s ease, opacity .2s ease;
    pointer-events: none;
  }
  .menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .menu > li > a { padding: .8em .4em; border-bottom: 1px solid rgba(255,255,255,.08); border-radius: 0; }
  .submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; background: rgba(255,255,255,.05);
    margin: .2rem 0 .6rem; border-radius: 8px;
    max-height: 0; overflow: hidden; padding: 0 .4rem;
    transition: max-height .25s ease, padding .25s ease;
  }
  .menu .has-sub.open .submenu { max-height: 400px; padding: .3rem .4rem; }
  .menu .has-sub > a::after { float: right; }
}

@media (max-width: 560px) {
  .brand { gap: .7rem; }
  .brand img { width: 50px; height: 50px; }
  .brand-text strong { font-size: 1.4rem; }
  .brand-text > span { font-size: .58rem; letter-spacing: 2px; }
}
