/* ==========================================================================
   Metin Galabau GmbH – Stylesheet
   Farben stammen aus dem Logo (Navy + Rot), ergänzt um ein gedecktes Gartengrün.
   Keine externen Schriften: es werden nur Systemschriften verwendet (DSGVO-freundlich).
   ========================================================================== */

:root {
  --navy: #1c2744;
  --navy-900: #141c33;
  --navy-700: #2a3860;
  --red: #c1202c;
  --red-700: #a11a25;
  --moss: #3f6b4a;
  --moss-700: #2f5238;
  --wa: #0f8a4b;
  --wa-700: #0b6f3c;

  --cream: #f7f4ec;
  --paper: #fffdf9;
  --sage: #e8eee1;
  --sage-300: #cfdcc2;
  --ink: #1b2233;
  --muted: #545d74;
  --line: #e2ddd0;

  --radius: 22px;
  --shadow: 0 1px 2px rgba(20, 28, 51, .06), 0 18px 40px -18px rgba(20, 28, 51, .28);
  --gutter: clamp(18px, 4vw, 32px);
  --header-h: 72px;

  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --font-brand: Arial, "Helvetica Neue", Helvetica, "Liberation Sans", sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
p { margin: 0; }
h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.012em;
  color: var(--navy);
}

section[id], [id="top"] { scroll-margin-top: calc(var(--header-h) + 8px); }

:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; border-radius: 6px; }
.on-dark :focus-visible { outline-color: #fff; }

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

.i { width: 1.25em; height: 1.25em; flex: none; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 10px; text-decoration: none; font-weight: 700;
}
.skip-link:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px;
  border: 2px solid transparent; border-radius: 999px;
  font: 700 1rem/1 var(--font-body); text-decoration: none; cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.btn .i { width: 20px; height: 20px; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 12px 24px -12px rgba(193, 32, 44, .8); }
.btn-primary:hover { background: var(--red-700); }
.btn-ghost { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-700); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--sage); }
.btn-outline-light { border-color: rgba(255, 255, 255, .55); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--navy); }
.btn-sm { min-height: 44px; padding: 0 20px; font-size: .95rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 244, 236, .92);
  -webkit-backdrop-filter: saturate(1.4) blur(12px); backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 24px -20px rgba(20, 28, 51, .5); }
.header-inner { display: flex; align-items: center; gap: 24px; min-height: var(--header-h); }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand img { width: 46px; height: 46px; }
.brand-text { display: grid; line-height: 1; font-family: var(--font-brand); }
.brand-name { font-weight: 700; font-size: 1.14rem; letter-spacing: -.005em; color: var(--red); }
.brand-sub { margin-top: 6px; font-weight: 700; font-size: .6rem; letter-spacing: .44em; color: var(--red); }

.nav { display: none; }
.nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 28px; }
.nav a { display: inline-block; padding: 8px 0; font-weight: 600; font-size: .98rem; color: var(--navy); text-decoration: none; background: linear-gradient(var(--red), var(--red)) left bottom / 0 2px no-repeat; transition: background-size .2s ease; }
.nav a:hover { background-size: 100% 2px; }

.header-actions { display: none; align-items: center; gap: 20px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy); text-decoration: none; white-space: nowrap; }
.header-phone:hover { color: var(--red); }

.nav-toggle {
  display: grid; place-items: center; width: 48px; height: 48px;
  border: 1.5px solid var(--line); border-radius: 14px; background: var(--paper); color: var(--navy); cursor: pointer;
}
.nav-toggle .i { width: 24px; height: 24px; }
.nav-toggle .i-close { display: none; }
.nav-toggle[aria-expanded="true"] .i-menu { display: none; }
.nav-toggle[aria-expanded="true"] .i-close { display: block; }

@media (max-width: 959px) {
  .nav.open {
    display: block; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 22px; box-shadow: 0 24px 32px -24px rgba(20, 28, 51, .4);
  }
  .nav.open ul { flex-direction: column; gap: 0; }
  .nav.open a { display: block; padding: 16px 0; font-size: 1.15rem; border-bottom: 1px solid var(--line); background: none; }
}
@media (min-width: 960px) {
  .nav { display: block; }
  .header-actions { display: flex; }
  .nav-toggle { display: none; }
  .brand { margin-right: 0; }
  .header-inner { justify-content: space-between; }
}
@media (min-width: 960px) and (max-width: 1119px) { .header-phone span { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; overflow: hidden; padding-block: clamp(32px, 6vw, 84px) clamp(56px, 8vw, 104px); }
.hero::before {
  content: ""; position: absolute; z-index: -1; right: -12%; top: -18%; width: min(90vw, 900px); aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(207, 220, 194, .8), rgba(207, 220, 194, 0));
}
.hero-grid { display: grid; gap: clamp(40px, 6vw, 72px); align-items: center; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.02fr .98fr; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--red);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }

.hero h1 { font-size: clamp(2.3rem, 4.5vw, 3.5rem); line-height: 1.06; margin-bottom: 22px; }
.hero h1 .eyebrow { display: flex; margin-bottom: 18px; }
.h1-line { display: block; text-wrap: balance; }
.hero h1 em { font-style: italic; color: var(--red); }
.hero .lead { font-size: clamp(1.06rem, 1.6vw, 1.22rem); color: var(--muted); max-width: 34em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-note { margin-top: 16px; font-size: .95rem; color: var(--muted); }
.hero-note a { color: var(--navy); font-weight: 700; }

.trust { list-style: none; margin: 36px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 14px 30px; }
.trust li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .96rem; color: var(--navy); }
.trust .i { width: 30px; height: 30px; padding: 6px; border-radius: 50%; background: var(--sage); color: var(--moss-700); stroke-width: 2.4; }

.hero-visual { position: relative; width: 100%; max-width: 560px; margin-inline: auto; }
.plan { width: 100%; height: auto; border-radius: 36px; box-shadow: var(--shadow); }
.badge-logo {
  position: absolute; left: -8px; bottom: -20px; width: clamp(88px, 22vw, 116px); aspect-ratio: 1;
  display: grid; place-items: center; border-radius: 50%; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
}
.badge-logo img { width: 66%; height: 66%; }
.chip {
  position: absolute; right: -6px; top: 22px; display: flex; align-items: center; gap: 9px;
  padding: 10px 18px 10px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
  font-weight: 700; font-size: .9rem; color: var(--navy);
}
.chip::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--moss); box-shadow: 0 0 0 4px rgba(63, 107, 74, .18); }

/* ---------- Sections ---------- */
.section { padding-block: clamp(60px, 8.5vw, 116px); }
.bg-paper { background: var(--paper); }
.bg-sage { background: var(--sage); }
.section-head { max-width: 46rem; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head h2 { font-size: clamp(1.95rem, 4.2vw, 3.1rem); margin-top: 14px; }
.section-head p { margin-top: 16px; font-size: 1.12rem; color: var(--muted); }

/* Leistungen */
.cards { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); }
.card {
  position: relative; display: flex; flex-direction: column; gap: 14px; padding: 30px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--sage-300); }
.card-icon { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 17px; background: var(--sage); color: var(--moss-700); }
.card-icon .i { width: 30px; height: 30px; }
.card h3 { font-size: 1.5rem; margin-top: 6px; }
.card > p { color: var(--muted); font-size: 1rem; }
.checklist { list-style: none; margin: 4px 0 0; padding: 0; display: grid; gap: 9px; font-weight: 600; font-size: .98rem; color: var(--navy); }
.checklist li { display: flex; gap: 11px; align-items: flex-start; }
.checklist li::before {
  content: ""; flex: none; width: 19px; height: 19px; margin-top: 3px; border-radius: 50%;
  background: var(--sage) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f5238' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 62% no-repeat;
}
.card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 10px; font-weight: 700; color: var(--red); text-decoration: none; }
.card-link .i { width: 18px; height: 18px; transition: transform .2s ease; }
.card-link:hover .i { transform: translateX(4px); }

.card-cta { background: var(--navy); border-color: var(--navy); color: #fff; justify-content: center; }
.card-cta:hover { border-color: var(--navy); }
.card-cta h3 { color: #fff; margin-top: 0; }
.card-cta > p { color: #cfd6ea; }
.card-cta .btn { margin-top: 10px; align-self: flex-start; }

/* Galerie */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 620px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (min-width: 1000px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-grid figure {
  position: relative; margin: 0; aspect-ratio: 1 / 1; overflow: hidden;
  border-radius: var(--radius); background: var(--sage);
  box-shadow: 0 1px 2px rgba(20, 28, 51, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-grid figure:hover { transform: translateY(-4px) scale(1.015); box-shadow: var(--shadow); z-index: 1; }
.gallery-grid img {
  width: 100%; height: 100%; display: block; object-fit: cover; object-position: 50% 50%;
  transition: transform .5s ease;
}
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 14px 12px;
  background: linear-gradient(180deg, rgba(20, 28, 51, 0) 0%, rgba(15, 20, 38, .78) 100%);
  color: #fff; font-size: .86rem; font-weight: 600; line-height: 1.25; letter-spacing: -.005em;
}

/* Zielgruppen */
.audience { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.aud { padding: 30px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--sage-300); }
.aud .i { width: 34px; height: 34px; color: var(--red); margin-bottom: 18px; }
.aud h3 { font-size: 1.35rem; margin-bottom: 10px; }
.aud p { color: var(--muted); font-size: 1rem; }

/* Winterdienst */
.winter { position: relative; isolation: isolate; overflow: hidden; background: var(--navy); color: #fff; padding-block: clamp(52px, 7vw, 88px); }
.winter-flake { position: absolute; z-index: -1; right: -70px; top: 50%; width: min(70vw, 460px); height: auto; translate: 0 -50%; color: #fff; opacity: .07; stroke: currentColor; fill: none; stroke-width: 1.1; stroke-linecap: round; stroke-linejoin: round; }
.winter-grid { display: grid; gap: 28px; align-items: center; }
@media (min-width: 860px) { .winter-grid { grid-template-columns: 1.3fr .7fr; } }
.winter .eyebrow { color: #ff8a93; }
.winter h2 { color: #fff; font-size: clamp(1.8rem, 3.8vw, 2.7rem); margin: 14px 0 16px; }
.winter p { color: #cfd6ea; max-width: 40rem; }
.winter-actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (min-width: 860px) { .winter-actions { flex-direction: column; align-items: stretch; } }

/* Über uns */
.about-grid { display: grid; gap: clamp(36px, 6vw, 80px); align-items: start; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1.15fr .85fr; } }
.about h2 { font-size: clamp(1.95rem, 4.2vw, 3.1rem); margin: 14px 0 22px; }
.about .lead { color: var(--muted); font-size: 1.14rem; }
.about .lead + .lead { margin-top: 14px; }
.values { display: grid; gap: 22px; margin-top: 36px; }
.value { display: flex; gap: 18px; align-items: flex-start; }
.value .ic { display: grid; place-items: center; flex: none; width: 50px; height: 50px; border-radius: 15px; background: var(--sage); color: var(--moss-700); }
.value .ic .i { width: 26px; height: 26px; }
.value h3 { font-family: var(--font-body); font-size: 1.08rem; letter-spacing: 0; margin-bottom: 3px; }
.value p { color: var(--muted); font-size: 1rem; }

.person { position: relative; isolation: isolate; overflow: hidden; padding: clamp(28px, 4vw, 40px); border-radius: 30px; background: var(--navy); color: #fff; box-shadow: var(--shadow); }
@media (min-width: 900px) { .person { position: sticky; top: calc(var(--header-h) + 24px); } }
.person-mark { position: absolute; z-index: -1; right: -60px; bottom: -70px; width: 320px; height: 320px; opacity: .07; }
.person .kicker { font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #ff8a93; }
.person h3 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.4rem); margin: 10px 0 4px; }
.person .role { color: #cfd6ea; font-weight: 600; }
.person p.note { margin-top: 20px; color: #cfd6ea; font-size: 1rem; }
.person .stack { display: grid; gap: 12px; margin-top: 28px; }

/* Ablauf */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.step { position: relative; padding: 30px 26px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.step::before {
  counter-increment: step; content: counter(step);
  display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 18px; border-radius: 50%;
  background: var(--red); color: #fff; font: 700 1.3rem/1 var(--font-display);
}
.step h3 { font-size: 1.4rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 1rem; }

/* Kontakt */
.contact-grid { display: grid; gap: clamp(32px, 5vw, 64px); align-items: start; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: .9fr 1.1fr; } }
.contact h2 { font-size: clamp(1.95rem, 4.2vw, 3.1rem); margin: 14px 0 16px; }
.contact .lead { color: var(--muted); font-size: 1.12rem; max-width: 30rem; }
.contact-list { list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 14px; }
.contact-list a, .contact-list .row { display: flex; align-items: center; gap: 16px; text-decoration: none; }
.contact-list .ic { display: grid; place-items: center; flex: none; width: 52px; height: 52px; border-radius: 50%; background: var(--paper); border: 1px solid var(--sage-300); color: var(--navy); transition: background-color .15s ease, color .15s ease; }
.contact-list a:hover .ic { background: var(--navy); color: #fff; }
.contact-list .ic .i { width: 22px; height: 22px; }
.contact-list small { display: block; font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.contact-list .val { display: block; font-size: 1.18rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.contact-list .sub { display: block; font-size: .95rem; color: var(--muted); font-weight: 500; }

.form { padding: clamp(24px, 4vw, 42px); border-radius: 30px; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); }
.form h3 { font-size: 1.6rem; margin-bottom: 6px; }
.form .hint { color: var(--muted); font-size: .98rem; margin-bottom: 22px; }
.form-grid { display: grid; gap: 18px; }
.field-row { display: grid; gap: 18px; }
@media (min-width: 600px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 7px; }
.field label { font-weight: 700; font-size: .93rem; color: var(--navy); }
.field .opt { font-weight: 500; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 13px 16px; font: inherit; color: var(--ink);
  background: #fff; border: 1.5px solid #cdc7b6; border-radius: 14px; transition: border-color .15s ease, box-shadow .15s ease;
}
.field select { appearance: none; -webkit-appearance: none; padding-right: 44px; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231c2744' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 14px center / 20px no-repeat; }
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 4px rgba(28, 39, 68, .14); }
.field [aria-invalid="true"] { border-color: var(--red); }
.field .error { display: none; color: var(--red-700); font-size: .88rem; font-weight: 600; }
.field.invalid .error { display: block; }
.field label.consent { display: flex; gap: 12px; align-items: flex-start; font-size: .93rem; font-weight: 400; color: var(--muted); }
.consent input { flex: none; width: 22px; height: 22px; margin: 2px 0 0; accent-color: var(--red); }
.consent a { color: var(--navy); font-weight: 600; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form .btn { width: 100%; }
.form-status { min-height: 1.4em; font-weight: 600; font-size: .98rem; }
.form-status.ok { color: var(--moss-700); }
.form-status.err { color: var(--red-700); }

/* Footer */
.site-footer { background: var(--navy-900); color: #d5daea; padding-block: 60px 32px; }
.footer-grid { display: grid; gap: 36px; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 56px; } }
.site-footer .brand-name, .site-footer .brand-sub { color: #fff; }
.site-footer .brand { margin-right: 0; margin-bottom: 18px; }
.site-footer p { max-width: 26rem; color: #aeb6cf; font-size: .98rem; }
.site-footer h3 { margin-bottom: 14px; font: 700 .78rem/1 var(--font-body); letter-spacing: .14em; text-transform: uppercase; color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .9rem; color: #97a0bb; }

/* Mobile Aktionsleiste */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 253, 249, .96); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.mobile-bar .btn { min-height: 48px; padding: 0 8px; gap: 7px; font-size: .95rem; }
.mobile-bar .btn .i { width: 18px; height: 18px; }
@media (max-width: 799px) { body { padding-bottom: 76px; } }
@media (min-width: 800px) { .mobile-bar { display: none; } }

/* Scroll-Animation (nur mit JS, respektiert reduzierte Bewegung) */
.js .reveal { opacity: 0; translate: 0 18px; transition: opacity .6s ease, translate .6s ease; transition-delay: var(--d, 0s); }
.js .reveal.in { opacity: 1; translate: 0 0; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; translate: none; transition: none; } .btn, .card { transition: none; } }

/* Rechtstexte */
.legal { padding-block: clamp(40px, 6vw, 80px) clamp(64px, 9vw, 120px); }
.legal .container { max-width: 760px; }
.legal h1 { font-size: clamp(2.1rem, 5vw, 3.1rem); margin: 10px 0 8px; }
.legal h2 { font-size: 1.5rem; margin: 40px 0 12px; }
.legal h3 { font-family: var(--font-body); font-size: 1.05rem; letter-spacing: 0; margin: 22px 0 6px; }
.legal p, .legal li { color: #333b50; }
.legal p + p { margin-top: 12px; }
.legal ul { padding-left: 1.2em; }
.legal a { color: var(--navy); font-weight: 600; }
.legal .stand { color: var(--muted); font-size: .95rem; }
.todo { background: #fff0a3; color: #5c4a00; padding: 1px 6px; border-radius: 5px; font-weight: 600; }
.legal-warning { margin: 24px 0 0; padding: 16px 18px; border-radius: 14px; background: #fff7d1; border: 1px solid #ecd977; color: #4d3f00; font-size: .96rem; }
