/* =========================================================
   Beethoven-Kita Benningen am Neckar
   Mobile-first stylesheet · self-hosted fonts · no external CDNs
   ========================================================= */

/* ---------- Fonts (local) ---------- */
@font-face {
  font-family: "Baloo 2";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/baloo2-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Baloo 2";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/baloo2-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Design tokens ---------- */
:root {
  --cream: #FBF5EB;
  --cream-2: #F4ECDD;
  --paper: #FFFFFF;
  --ink: #2A2018;
  --ink-soft: #5b5046;
  --ink-faint: #8a7f73;

  --sunshine: #F4B41A;
  --tomato: #E2552B;
  --tomato-deep: #C8461F;
  --sky: #2E8FCF;
  --meadow: #4CA64C;
  --berry: #D6487E;

  --border: #ece2d2;
  --border-strong: #e0d4c0;

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-xs: 0 1px 2px rgba(42,32,24,.06);
  --shadow-sm: 0 6px 18px -8px rgba(42,32,24,.18);
  --shadow-md: 0 18px 40px -18px rgba(42,32,24,.26);
  --shadow-lg: 0 36px 80px -32px rgba(42,32,24,.30);

  --container: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2rem);

  --ease: cubic-bezier(.22,.61,.36,1);
  --t-fast: .18s;
  --t: .3s;

  --font-display: "Baloo 2", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -.01em; }
h1 { font-size: clamp(2.3rem, 6.4vw, 4rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.8rem, 4.6vw, 2.85rem); }
h3 { font-size: 1.22rem; }
p { text-wrap: pretty; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: 50%; transform: translateX(-50%) translateY(-130%);
  top: 10px; z-index: 1200; background: var(--ink); color: #fff;
  padding: .7rem 1.2rem; border-radius: 999px; transition: transform var(--t) var(--ease);
}
.skip-link:focus { transform: translateX(-50%) translateY(0); }

.muted { color: var(--ink-faint); }
.small { font-size: .85rem; }
.req { color: var(--tomato); }

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

/* ---------- Brand colour dots ---------- */
.dot { width: .55em; height: .55em; border-radius: 50%; display: inline-block; }
.dot-red { background: var(--tomato); }
.dot-yellow { background: var(--sunshine); }
.dot-blue { background: var(--sky); }
.dot-green { background: var(--meadow); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
  padding: .85rem 1.5rem; border-radius: 999px; min-height: 48px;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t) var(--ease), background var(--t) var(--ease);
  white-space: nowrap;
}
.btn .ico { width: 1.15em; height: 1.15em; fill: currentColor; }
.btn-primary { background: var(--tomato); color: #fff; box-shadow: var(--shadow-sm), inset 0 -2px 0 rgba(0,0,0,.12); }
.btn-primary:hover { background: var(--tomato-deep); transform: translateY(-2px); box-shadow: var(--shadow-md), inset 0 -2px 0 rgba(0,0,0,.12); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: var(--paper); color: var(--ink); border: 1.5px solid var(--border-strong); box-shadow: var(--shadow-xs); }
.btn-ghost:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--sunshine); }
.btn-block { width: 100%; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600; font-size: .82rem;
  letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft);
  background: var(--paper); border: 1px solid var(--border);
  padding: .4rem .85rem; border-radius: 999px; box-shadow: var(--shadow-xs);
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.site-header.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); background: color-mix(in srgb, var(--cream) 92%, transparent); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand-mark { display: grid; place-items: center; filter: drop-shadow(0 4px 8px rgba(244,180,26,.4)); flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--font-display); font-weight: 800; font-size: 1.16rem; letter-spacing: -.01em; }
.brand-text small { color: var(--ink-faint); font-size: .76rem; }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav > a { font-weight: 500; font-size: .96rem; padding: .55rem .8rem; border-radius: 999px; color: var(--ink-soft); transition: color var(--t), background var(--t); }
.nav > a:hover { color: var(--ink); background: var(--paper); }
.nav-cta { background: var(--ink); color: #fff !important; font-family: var(--font-display); font-weight: 600; padding: .6rem 1.15rem !important; margin-left: .4rem; transition: transform var(--t-fast) var(--ease), background var(--t); }
.nav-cta:hover { background: var(--tomato) !important; transform: translateY(-1px); }

.burger { display: none; width: 46px; height: 46px; border-radius: 12px; position: relative; z-index: 101; }
.burger span { position: absolute; left: 11px; right: 11px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform var(--t) var(--ease), opacity var(--t-fast) var(--ease), top var(--t) var(--ease); }
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding: clamp(2.5rem, 7vw, 5rem) 0 clamp(2.5rem, 6vw, 4.5rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 85% 0%, rgba(244,180,26,.18), transparent 70%),
    radial-gradient(50% 50% at 5% 30%, rgba(46,143,207,.10), transparent 70%);
}
.hero-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }

.hero-copy .eyebrow { margin-bottom: 1.1rem; }
.hero h1 { margin-bottom: 1.1rem; }
.lede { font-size: clamp(1.05rem, 2.4vw, 1.25rem); color: var(--ink-soft); max-width: 34ch; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.hero-trust li { font-size: .9rem; color: var(--ink-soft); }
.hero-trust strong { color: var(--ink); font-family: var(--font-display); }

/* scribble underline signature */
.scribble { position: relative; white-space: nowrap; color: var(--tomato); }
.scribble::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: -.12em; height: .34em;
  background: no-repeat center/100% 100%
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='20' viewBox='0 0 240 20'%3E%3Cpath d='M4 13C50 5 120 4 168 9c24 2.5 50 3 68-1' fill='none' stroke='%23F4B41A' stroke-width='6' stroke-linecap='round'/%3E%3C/svg%3E");
  transform: scaleX(0); transform-origin: left; transition: transform .8s var(--ease) .35s;
}
.reveal.is-visible .scribble::after, .no-reveal .scribble::after { transform: scaleX(1); }

/* hero media */
.hero-media { position: relative; }
.media-card { background: var(--paper); border-radius: var(--radius-lg); padding: 10px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); overflow: hidden; }
.media-card img { border-radius: 20px; width: 100%; object-fit: cover; }
.media-tilt { transform: rotate(-1.6deg); transition: transform var(--t) var(--ease); }
.media-tilt:hover { transform: rotate(0); }
.media-small { position: relative; width: 54%; margin: -3rem 0 0 auto; transform: rotate(2.4deg); transition: transform var(--t) var(--ease); }
.media-small:hover { transform: rotate(0); }
.media-small img { aspect-ratio: 4/3; }
.media-small figcaption {
  position: absolute; bottom: 14px; left: 14px; right: 14px; text-align: center;
  font-family: var(--font-display); font-weight: 600; font-size: .8rem; color: #fff;
  background: rgba(42,32,24,.62); padding: .3rem; border-radius: 999px; backdrop-filter: blur(4px);
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(8px); z-index: -1; }
.hero-blob-1 { width: 130px; height: 130px; background: rgba(76,166,76,.22); top: -28px; left: -24px; }
.hero-blob-2 { width: 90px; height: 90px; background: rgba(214,72,126,.18); bottom: 10px; right: -14px; }

/* =========================================================
   TRUSTBAR
   ========================================================= */
.trustbar { background: var(--ink); color: #fff; padding: 1rem 0; }
.trustbar-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem 2rem; }
.trust-item { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-display); font-weight: 500; font-size: .95rem; color: #f3ece0; }

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-tint { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.section-head { max-width: 56ch; margin: 0 auto clamp(2.2rem, 5vw, 3.4rem); text-align: center; }
.section-head-left { margin-inline: 0; text-align: left; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head h2 { margin-bottom: .8rem; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }

/* ---------- Cards (Leistungen) ---------- */
.cards { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.card {
  background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.7rem; box-shadow: var(--shadow-xs);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.card-ico { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 18px; margin-bottom: 1.1rem; }
.card-ico svg { width: 28px; height: 28px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ico-yellow { background: rgba(244,180,26,.16); } .ico-yellow svg { stroke: #b9810a; }
.ico-red { background: rgba(226,85,43,.13); } .ico-red svg { stroke: var(--tomato-deep); }
.ico-green { background: rgba(76,166,76,.15); } .ico-green svg { stroke: #2f7d2f; }
.ico-blue { background: rgba(46,143,207,.14); } .ico-blue svg { stroke: #1f6ea3; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--ink-soft); font-size: .98rem; }

/* ---------- Split sections ---------- */
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split-copy .eyebrow { margin-bottom: 1rem; }
.split-copy h2 { margin-bottom: 1rem; }
.split-copy > p { color: var(--ink-soft); font-size: 1.06rem; margin-bottom: 1.4rem; }
.split-media { position: relative; }

.placeholder {
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius-lg);
  display: grid; place-content: center; gap: .8rem; justify-items: center;
  border: 1.5px dashed var(--border-strong); color: var(--ink-faint);
  background: linear-gradient(135deg, #fff, var(--cream-2));
  box-shadow: var(--shadow-sm); text-align: center; padding: 1.5rem;
}
.placeholder svg { width: 64px; height: 64px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; opacity: .55; }
.placeholder span { font-family: var(--font-display); font-weight: 600; font-size: .92rem; }
.ph-rooms { background: linear-gradient(135deg, #fff, #f1ede2); }
.ph-team { background: linear-gradient(135deg, #fff, #eef3ec); }
.badge-fair {
  position: absolute; left: 50%; bottom: -16px; transform: translateX(-50%);
  background: var(--sunshine); color: var(--ink); font-family: var(--font-display); font-weight: 700;
  font-size: .9rem; padding: .55rem 1.1rem; border-radius: 999px; box-shadow: var(--shadow-md); white-space: nowrap;
}

/* ---------- Accordion ---------- */
.accordion { display: grid; gap: .7rem; margin-top: .5rem; }
.acc-item { background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color var(--t), box-shadow var(--t); }
.acc-item[open] { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.acc-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 1.25rem; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item .chev { width: 22px; height: 22px; flex: none; fill: none; stroke: var(--tomato); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--t) var(--ease); }
.acc-item[open] .chev { transform: rotate(180deg); }
.acc-body { padding: 0 1.25rem 1.2rem; }
.acc-body p { color: var(--ink-soft); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 1.5rem 0; }
.stat { background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.1rem 1.2rem; box-shadow: var(--shadow-xs); }
.stat-num { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; color: var(--tomato); line-height: 1; }
.stat-label { font-size: .85rem; color: var(--ink-faint); }

/* ---------- Benefits ---------- */
.benefits { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.benefit { display: flex; gap: .9rem; background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.3rem; box-shadow: var(--shadow-xs); transition: transform var(--t) var(--ease), box-shadow var(--t); }
.benefit:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.ico-check { flex: none; width: 28px; height: 28px; padding: 4px; border-radius: 9px; background: rgba(76,166,76,.16); fill: none; stroke: #2f7d2f; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.benefit h3 { font-size: 1.06rem; margin-bottom: .25rem; }
.benefit p { color: var(--ink-soft); font-size: .95rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: 1fr; gap: 1.1rem; list-style: none; padding: 0; }
.step { position: relative; background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--shadow-xs); }
.step-num { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: #fff; background: var(--ink); margin-bottom: .9rem; }
.step:nth-child(1) .step-num { background: var(--sunshine); color: var(--ink); }
.step:nth-child(2) .step-num { background: var(--tomato); }
.step:nth-child(3) .step-num { background: var(--meadow); }
.step:nth-child(4) .step-num { background: var(--sky); }
.step h3 { margin-bottom: .35rem; }
.step p { color: var(--ink-soft); font-size: .96rem; }
.note { margin-top: 1.6rem; background: rgba(244,180,26,.12); border: 1px solid rgba(244,180,26,.4); border-radius: var(--radius); padding: 1.1rem 1.3rem; color: var(--ink-soft); }
.note strong { color: var(--ink); }

/* ---------- Standort / contact list ---------- */
.contact-list { display: grid; gap: 1.1rem; margin-bottom: 1.8rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list a { color: var(--ink); border-bottom: 1px solid var(--border-strong); transition: color var(--t), border-color var(--t); }
.contact-list a:hover { color: var(--tomato); border-color: var(--tomato); }
.ico-li { flex: none; width: 26px; height: 26px; fill: none; stroke: var(--tomato); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; margin-top: 2px; }

.map-placeholder { position: relative; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.map-art { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-pin { position: absolute; top: 42%; left: 50%; transform: translate(-50%, -100%); width: 46px; height: 46px; filter: drop-shadow(0 6px 8px rgba(0,0,0,.25)); animation: pin-bob 2.6s var(--ease) infinite; }
.map-tag { position: absolute; left: 50%; top: 44%; transform: translateX(-50%); background: var(--paper); font-family: var(--font-display); font-weight: 600; font-size: .82rem; padding: .35rem .8rem; border-radius: 999px; box-shadow: var(--shadow-sm); white-space: nowrap; }
@keyframes pin-bob { 0%,100% { transform: translate(-50%,-100%); } 50% { transform: translate(-50%,-118%); } }

/* =========================================================
   KONTAKT
   ========================================================= */
.contact-wrap { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.contact-quick { display: flex; gap: .8rem; margin-top: 1.6rem; }
.quick { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-weight: 600; padding: .7rem 1.2rem; border-radius: 999px; background: var(--paper); border: 1px solid var(--border); box-shadow: var(--shadow-xs); transition: transform var(--t-fast) var(--ease), border-color var(--t); }
.quick svg { width: 20px; height: 20px; fill: var(--tomato); }
.quick:hover { transform: translateY(-2px); border-color: var(--sunshine); }

.contact-form { background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.3rem, 4vw, 2.2rem); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: .95rem; }
.field input, .field textarea {
  font: inherit; color: var(--ink); background: var(--cream); border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm); padding: .8rem 1rem; min-height: 48px; width: 100%;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--sky); background: #fff; box-shadow: 0 0 0 4px rgba(46,143,207,.14); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--tomato); }
.error { color: var(--tomato-deep); font-size: .84rem; font-weight: 500; min-height: 0; }
.error:empty { display: none; }

.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .92rem; color: var(--ink-soft); margin-bottom: .4rem; cursor: pointer; }
.consent input { flex: none; width: 22px; height: 22px; margin-top: 1px; accent-color: var(--tomato); cursor: pointer; }
.consent a { color: var(--tomato); border-bottom: 1px solid currentColor; }
.contact-form .btn-block { margin-top: 1.2rem; }
.form-status { margin-top: 1rem; font-weight: 600; font-family: var(--font-display); }
.form-status.ok { color: #2f7d2f; }
.form-status.err { color: var(--tomato-deep); }
.form-hint { margin-top: .9rem; font-size: .82rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--ink); color: #e9e1d4; padding-top: clamp(3rem, 6vw, 4.5rem); margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.2rem; padding-bottom: 2.6rem; }
.footer-brand .brand-text strong { color: #fff; }
.footer-brand .brand-text small { color: #b7ab9b; }
.footer-brand > .muted { margin: 1rem 0; color: #b7ab9b; }
.social { display: flex; gap: .6rem; }
.social-ico { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); transition: background var(--t), transform var(--t-fast) var(--ease); }
.social-ico svg { width: 20px; height: 20px; fill: #e9e1d4; }
.social-ico:hover { background: var(--tomato); transform: translateY(-2px); }
.footer-col h4 { font-family: var(--font-display); font-size: 1rem; color: #fff; margin-bottom: 1rem; }
.footer-col a { display: block; color: #cabfae; padding: .3rem 0; transition: color var(--t); }
.footer-col a:hover { color: var(--sunshine); }
.footer-col .muted { color: #9a8f7f; margin-top: .4rem; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1.4rem 0; }
.footer-bottom-inner { display: flex; flex-direction: column; gap: .7rem; align-items: center; text-align: center; }
.copyright { color: #9a8f7f; font-size: .86rem; }
.powered { font-size: .9rem; color: #b7ab9b; }
.wowobot { color: #22b8e0; font-weight: 600; }
.wowobot:hover { text-decoration: underline; }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   MOBILE NAV OVERLAY
   ========================================================= */
.nav-overlay { position: fixed; inset: 0; background: rgba(42,32,24,.45); backdrop-filter: blur(2px); z-index: 90; opacity: 0; transition: opacity var(--t) var(--ease); }
.nav-overlay.show { opacity: 1; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (min-width: 600px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

@media (min-width: 880px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .split { grid-template-columns: 1fr 1fr; }
  .split-reverse .split-media { order: 2; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .benefits { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .contact-wrap { grid-template-columns: .9fr 1.1fr; }
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ----- Mobile menu (below 880) ----- */
@media (max-width: 879px) {
  .burger { display: block; }
  .nav {
    position: fixed; top: 0; right: 0; z-index: 95;
    height: 100dvh; width: min(82vw, 340px);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: .3rem;
    background: var(--cream); padding: 5.5rem 1.4rem 2rem;
    box-shadow: var(--shadow-lg); border-left: 1px solid var(--border);
    transform: translateX(105%); transition: transform var(--t) var(--ease);
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav > a { font-size: 1.1rem; padding: .9rem 1rem; border-radius: 14px; }
  .nav > a:hover { background: var(--paper); }
  .nav-cta { margin-left: 0 !important; margin-top: .6rem; text-align: center; }
  body.nav-open { overflow: hidden; }
}

@media (max-width: 420px) {
  .hero-actions .btn { flex: 1 1 auto; }
  .media-small { width: 60%; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .scribble::after { transform: scaleX(1); }
  .map-pin { animation: none; }
}

/* =========================================================
   LEGAL PAGES
   ========================================================= */
.legal { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem); }
.legal .container { max-width: 820px; }
.legal h1 { margin-bottom: 1.6rem; }
.legal h2 { font-size: 1.4rem; margin: 2.2rem 0 .7rem; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: .8rem; }
.legal ul { list-style: disc; padding-left: 1.3rem; }
.legal address { font-style: normal; background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem 1.4rem; box-shadow: var(--shadow-xs); }
.legal-back { display: inline-flex; align-items: center; gap: .4rem; margin-bottom: 2rem; font-family: var(--font-display); font-weight: 600; color: var(--tomato); }
.legal-back:hover { gap: .7rem; }
.ph-note { background: rgba(244,180,26,.13); border: 1px solid rgba(244,180,26,.45); border-radius: var(--radius); padding: 1rem 1.3rem; color: var(--ink-soft); margin-bottom: 2rem; }
.ph-note strong { color: var(--ink); }
