/* =====================================================================
   Bäckerei & Konditorei Lämmle – Stylesheet
   Lokale Schriften (DSGVO), warme Handwerks-Farbwelt, Mobile First
   ===================================================================== */

/* ---------- Lokale Schriften (kein externes CDN) ---------- */
@font-face {
  font-family: 'Fraunces';
  src: url('assets/fonts/fraunces-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('assets/fonts/fraunces-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('assets/fonts/fraunces-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('assets/fonts/manrope-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('assets/fonts/manrope-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('assets/fonts/manrope-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('assets/fonts/manrope-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ---------- Design-Tokens ---------- */
:root {
  --cream: #FBF6EE;
  --cream-2: #F4EADA;
  --surface: #FFFFFF;
  --crust: #2E1D12;         /* Haupttext */
  --crust-soft: #5A4636;    /* Sekundärtext */
  --espresso: #7A3E12;      /* Primär */
  --espresso-dark: #5F2F0C;
  --terracotta: #B45309;    /* Sekundär */
  --wheat: #C98A2B;         /* Akzent */
  --wheat-soft: #E8C98A;
  --border: #E7D9C3;
  --border-soft: #F0E6D6;
  --shadow-sm: 0 2px 8px rgba(74, 44, 20, .06);
  --shadow-md: 0 10px 30px rgba(74, 44, 20, .10);
  --shadow-lg: 0 24px 60px rgba(74, 44, 20, .16);

  --font-head: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --container: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --header-h: 72px;
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--crust);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--espresso); text-decoration: none; }
a:hover { color: var(--terracotta); }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; color: var(--crust); letter-spacing: -0.01em; }
ul { list-style: none; padding: 0; }

:focus-visible {
  outline: 3px solid var(--wheat);
  outline-offset: 2px;
  border-radius: 4px;
}

.visually-hidden, .skip-link:not(:focus) {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: 1rem; z-index: 200;
  background: var(--espresso); color: #fff; padding: .7rem 1.1rem;
  border-radius: 10px; font-weight: 600;
}

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.eyebrow {
  font-family: var(--font-body); font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; font-size: .78rem; color: var(--terracotta);
  margin-bottom: .85rem;
}
.accent { color: var(--wheat); font-style: italic; }
.muted-text { color: var(--crust-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: .8rem 1.4rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
  min-height: 48px; text-align: center; line-height: 1.1;
}
.btn svg { flex: none; }
.btn-primary { background: var(--espresso); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--espresso-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: rgba(255,255,255,.85); color: var(--crust); border-color: var(--border); }
.btn-ghost:hover { background: #fff; color: var(--espresso); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-lg { padding: .95rem 1.7rem; font-size: 1.05rem; min-height: 54px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 246, 238, .85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 1rem; }

.brand { display: inline-flex; align-items: center; gap: .65rem; color: var(--crust); }
.brand:hover { color: var(--crust); }
.brand-mark {
  display: grid; place-items: center; width: 44px; height: 44px; flex: none;
  color: #fff; background: linear-gradient(145deg, var(--espresso), var(--terracotta));
  border-radius: 13px; box-shadow: var(--shadow-sm);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--crust); letter-spacing: -0.01em; }
.brand-sub { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--crust-soft); font-weight: 600; margin-top: 3px; }

/* Nav (mobile: off-canvas panel) */
.nav {
  position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px);
  background: var(--surface); box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; gap: 1.5rem;
  padding: calc(var(--header-h) + 1.5rem) 1.8rem 2rem; z-index: 120;
}
.nav.open { transform: translateX(0); }
.nav-list { display: flex; flex-direction: column; gap: .3rem; }
.nav-list a {
  display: block; font-family: var(--font-head); font-size: 1.35rem; font-weight: 600;
  color: var(--crust); padding: .55rem 0; border-bottom: 1px solid var(--border-soft);
}
.nav-list a:hover { color: var(--espresso); }
.nav-cta { margin-top: auto; }

.nav-backdrop {
  position: fixed; inset: 0; background: rgba(46,29,18,.5);
  z-index: 110; opacity: 0; transition: opacity .3s ease;
}
.nav-backdrop.show { opacity: 1; }

/* Burger */
.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 48px; height: 48px; padding: 12px; background: transparent; border: 0;
  cursor: pointer; z-index: 130; border-radius: 12px;
}
.burger span { display: block; height: 2.5px; width: 100%; background: var(--crust); border-radius: 2px; transition: transform .3s ease, opacity .2s ease; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

body.nav-lock { overflow: hidden; }

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; padding: clamp(3.5rem, 12vw, 8rem) 0 clamp(3rem, 9vw, 6rem); overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(46,29,18,.5) 0%, rgba(46,29,18,.62) 45%, rgba(46,29,18,.82) 100%);
}
.hero-content { position: relative; max-width: 760px; color: #fff; }
.hero-content .eyebrow { color: var(--wheat-soft); }
.hero h1 { font-size: clamp(2.3rem, 8vw, 4.4rem); font-weight: 700; color: #fff; margin-bottom: 1.1rem; }
.hero-lead { font-size: clamp(1.05rem, 3.4vw, 1.3rem); color: rgba(255,255,255,.92); max-width: 60ch; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; }
.hero-trust li { position: relative; padding-left: 1.5rem; font-weight: 500; font-size: .95rem; color: rgba(255,255,255,.9); }
.hero-trust li::before {
  content: ""; position: absolute; left: 0; top: 50%; width: 16px; height: 16px; transform: translateY(-50%);
  background: var(--wheat); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12l4 4 10-10'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12l4 4 10-10'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ---------- Sektionen ---------- */
.section { padding: clamp(3.5rem, 9vw, 6.5rem) 0; }
.section-alt { background: var(--cream-2); }
.section-head { max-width: 680px; margin: 0 auto clamp(2.2rem, 5vw, 3.5rem); text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 5.5vw, 3rem); margin-bottom: .8rem; }
.section-intro { color: var(--crust-soft); font-size: 1.08rem; }
.section-note { text-align: center; color: var(--crust-soft); margin-top: 2rem; font-size: .98rem; }

/* ---------- Trust-Bar ---------- */
.trust { margin-top: -1px; padding: clamp(2.5rem, 6vw, 4rem) 0; background: var(--surface); }
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.trust-item {
  background: var(--cream); border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm);
}
.trust-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; margin-bottom: 1rem;
  color: var(--espresso); background: var(--wheat-soft); }
.trust-icon svg { width: 28px; height: 28px; }
.trust-item h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.trust-item p { color: var(--crust-soft); font-size: .96rem; }

/* ---------- Karten ---------- */
.cards { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
.card {
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-img { aspect-ratio: 16 / 10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 15px;
  margin: 1.6rem 1.6rem 0; color: var(--espresso); background: var(--wheat-soft); }
.card-icon svg { width: 28px; height: 28px; }
.card-body { padding: 1.5rem 1.6rem 1.7rem; }
.card-body h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.card-body p { color: var(--crust-soft); }

/* ---------- Split-Sektionen ---------- */
.split { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.split-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.split-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split-badge {
  position: absolute; left: 1.2rem; bottom: 1.2rem; background: rgba(255,255,255,.94);
  padding: .7rem 1.1rem; border-radius: 14px; box-shadow: var(--shadow-sm); backdrop-filter: blur(4px);
}
.split-badge strong { display: block; font-family: var(--font-head); font-size: 1.15rem; color: var(--espresso); }
.split-badge span { font-size: .8rem; color: var(--crust-soft); }
.split-body h2 { font-size: clamp(1.8rem, 5vw, 2.7rem); margin-bottom: 1.1rem; }
.split-body > p { color: var(--crust-soft); margin-bottom: 1rem; }

.signature { margin-top: 1.6rem; padding: 1.3rem 1.5rem; background: var(--surface); border-left: 4px solid var(--wheat); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; box-shadow: var(--shadow-sm); }
.signature blockquote { font-family: var(--font-head); font-size: 1.2rem; font-style: italic; color: var(--crust); margin-bottom: .6rem; }
.signature figcaption { font-weight: 600; color: var(--terracotta); font-size: .95rem; }

/* ---------- Features ---------- */
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.feature {
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow-sm); position: relative;
}
.feature-num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--wheat); display: block; margin-bottom: .5rem; }
.feature h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.feature p { color: var(--crust-soft); font-size: .98rem; }

/* ---------- Ablauf / Steps ---------- */
.steps { display: grid; grid-template-columns: 1fr; gap: 1.3rem; counter-reset: step; }
.step {
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow-sm); text-align: center;
}
.step-num {
  display: grid; place-items: center; width: 52px; height: 52px; margin: 0 auto 1rem;
  border-radius: 50%; background: var(--espresso); color: #fff;
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 700;
}
.step h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.step p { color: var(--crust-soft); font-size: .97rem; }
.ablauf-cta { text-align: center; margin-top: 2.4rem; }

/* ---------- Standort / Kontakt ---------- */
.contact-lines p, .contact-quick li { display: flex; align-items: flex-start; gap: .7rem; margin-bottom: .8rem; }
.contact-lines svg, .contact-quick svg { color: var(--espresso); margin-top: 2px; flex: none; }
.contact-lines a, .contact-quick a { font-weight: 600; }

.hours { width: 100%; border-collapse: collapse; margin: 1.4rem 0 .6rem; }
.hours th, .hours td { padding: .75rem 0; border-bottom: 1px solid var(--border); text-align: left; font-variant-numeric: tabular-nums; }
.hours th { font-weight: 600; color: var(--crust); }
.hours td { color: var(--crust-soft); text-align: right; }
.hours-note { font-size: .88rem; color: var(--crust-soft); margin-bottom: 1.4rem; }

/* Karten-Platzhalter (kein externes Embed) */
.map-placeholder {
  position: relative; aspect-ratio: 4 / 3; min-height: 260px;
  background:
    radial-gradient(circle at 30% 30%, rgba(201,138,43,.18), transparent 60%),
    linear-gradient(135deg, #EFE3CE 0%, #E4D3B6 100%);
  display: grid; place-items: center; border: 1px solid var(--border);
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(122,62,18,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122,62,18,.10) 1px, transparent 1px);
  background-size: 42px 42px;
}
.map-pin { position: relative; color: var(--espresso); filter: drop-shadow(0 6px 8px rgba(74,44,20,.3)); animation: pin-bob 2.4s ease-in-out infinite; }
.map-tag {
  position: absolute; bottom: 1.1rem; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,.94); padding: .5rem 1rem; border-radius: 999px;
  font-size: .85rem; font-weight: 600; color: var(--crust); box-shadow: var(--shadow-sm); white-space: nowrap;
}
@keyframes pin-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ---------- Formular ---------- */
.contact-form {
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 4vw, 2.2rem); box-shadow: var(--shadow-md);
}
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 0 1rem; }
.field label { display: block; font-weight: 600; font-size: .95rem; margin-bottom: .4rem; color: var(--crust); }
.field input, .field textarea {
  width: 100%; font: inherit; color: var(--crust); background: var(--cream);
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: .8rem 1rem; min-height: 48px; transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--espresso); background: #fff; box-shadow: 0 0 0 4px rgba(122,62,18,.12); }
.field input.invalid, .field textarea.invalid, .field-check.invalid input { border-color: #C0392B; }
.req { color: var(--terracotta); }
.field-error { color: #B02A1A; font-size: .85rem; margin-top: .35rem; font-weight: 500; }

.field-check { display: flex; align-items: flex-start; gap: .7rem; margin: .3rem 0 .4rem; }
.field-check input {
  flex: none; width: 24px; height: 24px; margin-top: 2px; accent-color: var(--espresso); cursor: pointer;
}
.field-check label { font-size: .92rem; color: var(--crust-soft); font-weight: 500; line-height: 1.5; }
.field-check a { font-weight: 600; }

.form-hint { font-size: .82rem; color: var(--crust-soft); margin-top: .9rem; text-align: center; }
.form-success {
  margin-top: 1rem; padding: .9rem 1.1rem; border-radius: var(--radius-sm);
  background: #EAF6E9; border: 1px solid #BFE3BC; color: #2E6B2A; font-weight: 600; font-size: .95rem;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--crust); color: rgba(255,255,255,.82); padding: clamp(3rem, 7vw, 4.5rem) 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.2rem; }
.footer-brand .brand-name { color: #fff; font-size: 1.9rem; }
.footer-brand p { margin-top: .6rem; font-size: .95rem; line-height: 1.7; }
.footer-nav h4, .footer-contact h4 { color: #fff; font-family: var(--font-body); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1rem; }
.footer-nav ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-nav a, .footer-contact a { color: rgba(255,255,255,.82); }
.footer-nav a:hover, .footer-contact a:hover { color: var(--wheat-soft); }
.socials { display: flex; gap: .7rem; margin-top: 1rem; }
.social { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.08); color: #fff; transition: background-color .2s ease, transform .2s ease; }
.social:hover { background: rgba(255,255,255,.16); color: #fff; transform: translateY(-2px); }

.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-direction: column; align-items: center; gap: .5rem; text-align: center;
}
.copyright { font-size: .88rem; color: rgba(255,255,255,.65); }
.powered { font-size: .9rem; color: rgba(255,255,255,.65); }
.wowobot { color: #22b8e0; font-weight: 700; }
.wowobot:hover { color: #22b8e0; text-decoration: underline; }

/* ---------- Rechtsseiten (Impressum/Datenschutz/404) ---------- */
.legal { min-height: calc(100vh - var(--header-h) - 200px); padding: clamp(2.5rem, 7vw, 5rem) 0; }
.legal-inner { max-width: 760px; margin-inline: auto; }
.legal h1 { font-size: clamp(2rem, 6vw, 3rem); margin-bottom: 1.4rem; }
.legal h2 { font-size: 1.3rem; margin: 2rem 0 .6rem; }
.legal p { color: var(--crust-soft); margin-bottom: 1rem; }
.legal a { font-weight: 600; }
.legal-note {
  background: #FDF3E3; border: 1px solid var(--wheat-soft); border-left: 4px solid var(--wheat);
  border-radius: var(--radius-sm); padding: 1.1rem 1.3rem; color: var(--crust-soft) !important; font-size: .95rem;
}
.legal-updated { font-size: .88rem; font-style: italic; margin-top: 2rem; }

/* ---------- Reveal-Animationen (nur wenn JS aktiv) ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (min-width: 560px) {
  .field-row { grid-template-columns: 1fr 1fr; }
  .hero-actions .btn { min-width: 190px; }
}

@media (min-width: 700px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; }
}

@media (min-width: 960px) {
  :root { --header-h: 84px; }

  /* Desktop-Navigation: horizontal, kein Off-Canvas */
  .burger { display: none; }
  .nav {
    position: static; width: auto; flex-direction: row; align-items: center; gap: 2rem;
    transform: none; box-shadow: none; background: transparent; padding: 0; z-index: auto;
  }
  .nav-list { flex-direction: row; gap: 1.9rem; }
  .nav-list a { font-family: var(--font-body); font-size: 1rem; font-weight: 600; padding: .3rem 0; border-bottom: 0; position: relative; }
  .nav-list a::after {
    content: ""; position: absolute; left: 0; bottom: -3px; height: 2px; width: 0;
    background: var(--wheat); transition: width .25s ease;
  }
  .nav-list a:hover::after { width: 100%; }
  .nav-cta { margin-top: 0; }
  .nav-backdrop { display: none !important; }

  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .cards { grid-template-columns: repeat(3, 1fr); }

  .split { grid-template-columns: 1fr 1fr; }
  .split-reverse .split-media { order: 2; }

  .hero { padding: clamp(6rem, 14vh, 10rem) 0 clamp(5rem, 10vh, 8rem); min-height: 88vh; display: flex; align-items: center; }
}

@media (min-width: 1100px) {
  .feature-grid { grid-template-columns: repeat(4, 1fr); }
}

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