/* =========================================================================
   Simone Dorn-Fischer Steuerberatung – Stylesheet
   Mobile-first · lokale Schriften · DSGVO-freundlich
   ========================================================================= */

/* ---------- Fonts (lokal, self-hosted, kein externes CDN) ---------- */
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-var.woff2') format('woff2');
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('assets/fonts/fraunces-var.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design Tokens ---------- */
:root {
  --navy: #16305c;
  --navy-700: #1e3d72;
  --navy-900: #0f2038;
  --ink: #14213a;
  --gold: #b57e2b;
  --gold-soft: #d8a34e;
  --gold-tint: #f3ead9;
  --cream: #f7f4ee;
  --cream-2: #fbf9f5;
  --surface: #ffffff;
  --muted: #5b6577;
  --muted-2: #7a8494;
  --border: #e7e1d5;
  --border-strong: #d8d0c0;
  --ring: #16305c;

  --maxw: 1160px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;

  --shadow-sm: 0 1px 2px rgba(20, 33, 58, .06), 0 2px 8px rgba(20, 33, 58, .05);
  --shadow-md: 0 8px 24px rgba(20, 33, 58, .09), 0 2px 6px rgba(20, 33, 58, .05);
  --shadow-lg: 0 24px 60px rgba(15, 32, 56, .14);

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

  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: .28s;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.12;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
}
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 2px; border-radius: 4px; }

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--navy);
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 48px; padding: 13px 24px;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem;
  border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn .ico { width: 1.15em; height: 1.15em; }
.btn-primary { background: var(--gold); color: #1c1305; border-color: var(--gold); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--gold-soft); color: #1c1305; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--border-strong); }
.btn-outline:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-2px); }
.btn-ghost { background: rgba(22,48,92,.06); color: var(--navy); }
.btn-ghost:hover { background: rgba(22,48,92,.12); color: var(--navy); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- SVG icons ---------- */
svg.ico, .card-ico svg, .benefit-ico svg, .contact-list svg {
  fill: none; stroke: currentColor; stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
.hero-trust .ico { fill: rgba(181,126,43,.14); stroke: var(--gold); }
.hero-trust .ico .stroke, svg .stroke { fill: none; stroke: currentColor; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,244,238,.82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--navy-900); }
.brand:hover { color: var(--navy-900); }
.brand-mark {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(150deg, var(--navy), var(--navy-700));
  color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; letter-spacing: .5px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.brand-mark span { color: var(--gold-soft); }
.brand-mark.small { width: 40px; height: 40px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--font-head); font-weight: 600; font-size: 1.06rem; color: var(--navy-900); }
.brand-text em { font-style: normal; font-size: .76rem; color: var(--muted); letter-spacing: .02em; }

.nav { display: flex; align-items: center; gap: 8px; }
.nav > ul { display: flex; align-items: center; gap: 4px; }
.nav > ul a {
  display: inline-block; padding: 9px 14px; border-radius: 10px;
  color: var(--ink); font-weight: 500; font-size: .96rem;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav > ul a:hover { background: rgba(22,48,92,.07); color: var(--navy); }
.nav-cta { margin-left: 8px; }

.burger {
  display: none; width: 46px; height: 46px; border: 1px solid var(--border-strong);
  background: var(--surface); border-radius: 12px; cursor: pointer; padding: 0;
  position: relative;
}
.burger span {
  position: absolute; left: 12px; right: 12px; height: 2px; background: var(--navy);
  border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s 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); }

.nav-scrim {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(15,32,56,.5); backdrop-filter: blur(2px);
  opacity: 0; transition: opacity var(--dur) var(--ease);
}
.nav-scrim.show { opacity: 1; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-alt { background: var(--cream-2); border-block: 1px solid var(--border); }
.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 4.4vw, 2.55rem); }
.section-sub { color: var(--muted); font-size: 1.06rem; margin: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-body); font-weight: 600; font-size: .8rem;
  letter-spacing: .09em; text-transform: uppercase; color: var(--gold);
  margin: 0 0 .8rem;
}
.eyebrow.center { justify-content: center; }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--gold-tint); }
.accent { color: var(--gold); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 56px 0 72px; background:
  radial-gradient(1100px 520px at 82% -8%, var(--gold-tint), transparent 60%),
  radial-gradient(900px 480px at 0% 0%, #eef1f7, transparent 55%),
  var(--cream);
}
.hero-inner { display: grid; gap: 40px; align-items: center; }
.hero h1 { font-size: clamp(2.15rem, 7vw, 3.5rem); font-weight: 600; margin-bottom: .35em; }
.hero .lead { font-size: 1.14rem; color: var(--muted); max-width: 40ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 22px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; padding-top: 8px; border-top: 1px solid var(--border); }
.hero-trust li { display: inline-flex; align-items: center; gap: .5em; font-size: .92rem; font-weight: 500; color: var(--ink); }
.hero-trust .ico { width: 20px; height: 20px; }

.hero-visual { position: relative; }
.hero-card {
  margin: 0; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden;
}
.hero-photo {
  aspect-ratio: 4 / 3; position: relative;
  background:
    linear-gradient(135deg, #24406e 0%, #16305c 55%, #10233f 100%);
}
.placeholder-photo { display: grid; place-items: center; }
.placeholder-photo::after {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(216,163,78,.35), transparent 42%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 12px, transparent 12px 24px);
}
.hero-card figcaption { padding: 16px 20px; }
.hc-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-weight: 600; }
.hc-row a { color: var(--navy); }
.hc-row.muted { font-weight: 500; color: var(--muted); font-size: .92rem; margin-top: 4px; }

.ph-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--font-body); font-size: .72rem; font-weight: 600; letter-spacing: .04em;
  color: #fff; background: rgba(15,32,56,.72); border: 1px solid rgba(255,255,255,.22);
  padding: 5px 10px; border-radius: 999px; backdrop-filter: blur(4px);
}
.ph-badge.sm { position: static; display: inline-block; margin-left: 6px; background: var(--gold); color: #1c1305; border-color: var(--gold); }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--navy-900); color: #eaf0fa; }
.trustbar-inner { display: grid; grid-template-columns: 1fr; gap: 2px 0; padding: 12px 0; }
.trust-item { padding: 16px 6px; display: flex; flex-direction: column; gap: 2px; border-bottom: 1px solid rgba(255,255,255,.08); }
.trust-item:last-child { border-bottom: none; }
.trust-item strong { font-family: var(--font-head); font-weight: 600; color: #fff; font-size: 1.08rem; }
.trust-item span { color: #a9b8d0; font-size: .9rem; }

/* ---------- Cards / Leistungen ---------- */
.cards { display: grid; gap: 20px; grid-template-columns: 1fr; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.card h3 { font-size: 1.24rem; }
.card p { color: var(--muted); margin: 0; }
.card-ico {
  display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 16px;
  border-radius: 14px; color: var(--navy);
  background: linear-gradient(150deg, var(--gold-tint), #fff);
  border: 1px solid var(--border);
}
.card-ico svg { width: 26px; height: 26px; }
.card-cta { background: linear-gradient(155deg, var(--navy), var(--navy-900)); border-color: var(--navy-900); color: #eaf0fa; }
.card-cta h3 { color: #fff; }
.card-cta p { color: #b9c6de; margin-bottom: 18px; }

/* ---------- Über mich ---------- */
.about-grid { display: grid; gap: 40px; align-items: center; }
.about-photo figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); background: var(--surface); }
.about-photo img { width: 100%; object-fit: cover; object-position: center 30%; aspect-ratio: 4 / 3; }
.about-photo figcaption { padding: 14px 18px; font-weight: 600; color: var(--navy-900); font-family: var(--font-head); }
.photo-note { font-size: .82rem; color: var(--muted-2); margin: 10px 2px 0; }
.about-copy h2 { font-size: clamp(1.7rem, 4.4vw, 2.5rem); }
.about-copy p { color: var(--muted); }
.checklist { display: grid; gap: 12px; margin: 22px 0 26px; }
.checklist li { position: relative; padding-left: 34px; font-weight: 500; color: var(--ink); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b57e2b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 13px no-repeat;
}

/* ---------- Vorteile ---------- */
.benefits { display: grid; gap: 20px; grid-template-columns: 1fr; }
.benefit { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.benefit:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.benefit h3 { font-size: 1.16rem; }
.benefit p { color: var(--muted); margin: 0; font-size: .98rem; }
.benefit-ico { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 14px; border-radius: 50%; color: var(--gold); background: var(--gold-tint); }
.benefit-ico svg { width: 24px; height: 24px; }

/* ---------- Ablauf / Steps ---------- */
.steps { display: grid; gap: 22px; grid-template-columns: 1fr; counter-reset: step; }
.step { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px 26px; box-shadow: var(--shadow-sm); }
.step-num {
  display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 14px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.3rem; color: #fff;
  background: linear-gradient(150deg, var(--gold), var(--gold-soft)); border-radius: 14px; box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 1.2rem; }
.step p { color: var(--muted); margin: 0; }

/* ---------- Standort ---------- */
.location-grid { display: grid; gap: 36px; align-items: center; }
.address-block { font-style: normal; color: var(--ink); line-height: 1.8; margin: 6px 0 22px; }
.address-block strong { font-family: var(--font-head); }
.mini-note { font-size: .82rem; color: var(--muted-2); margin-top: 12px; }
.location-map { position: relative; }
.map-placeholder {
  position: relative; aspect-ratio: 16 / 11; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
  background: radial-gradient(120% 120% at 30% 20%, #eaf0f7, #dfe6ef 70%, #d3dcea);
  display: grid; place-items: center;
}
.map-grid { position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(22,48,92,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,48,92,.10) 1px, transparent 1px);
  background-size: 42px 42px;
}
.map-grid::after { content: ""; position: absolute; left: 8%; right: 30%; top: 55%; height: 12px; background: var(--gold-soft); opacity: .5; transform: rotate(-8deg); border-radius: 8px; }
.map-pin { position: relative; z-index: 2; color: var(--gold); filter: drop-shadow(0 6px 8px rgba(15,32,56,.25)); animation: pin-bob 2.6s var(--ease) infinite; }
.map-pin svg { width: 52px; height: 52px; fill: var(--gold); stroke: #fff; stroke-width: 1.4; }
.map-pin svg .stroke { fill: #fff; stroke: var(--gold); }
.map-label { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); z-index: 2;
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: 8px 16px;
  font-size: .86rem; font-weight: 600; color: var(--navy-900); box-shadow: var(--shadow-sm); white-space: nowrap; }
@keyframes pin-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ---------- Kontakt ---------- */
.section-contact { background:
  radial-gradient(900px 500px at 100% 0%, var(--gold-tint), transparent 55%), var(--cream-2);
  border-top: 1px solid var(--border); }
.contact-grid { display: grid; gap: 40px; align-items: start; }
.contact-intro h2 { font-size: clamp(1.7rem, 4.4vw, 2.5rem); }
.contact-intro > p { color: var(--muted); }
.contact-list { display: grid; gap: 14px; margin: 24px 0; }
.contact-list li { display: flex; align-items: flex-start; gap: 14px; }
.contact-list svg { width: 22px; height: 22px; color: var(--gold); flex: none; margin-top: 3px; }
.contact-list span { display: flex; flex-direction: column; }
.contact-list b { font-family: var(--font-head); font-weight: 600; color: var(--navy-900); font-size: .95rem; }
.contact-list a { color: var(--navy); font-weight: 500; }
.hours-box { background: var(--surface); border: 1px dashed var(--border-strong); border-radius: var(--radius-sm); padding: 16px 18px; }
.hours-box b { font-family: var(--font-head); color: var(--navy-900); display: block; margin-bottom: 4px; }
.placeholder-inline { color: var(--muted); margin: 0; font-size: .95rem; }

/* ---------- Form ---------- */
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 26px; box-shadow: var(--shadow-lg); }
.field { margin-bottom: 16px; }
.field-row { display: grid; gap: 16px; grid-template-columns: 1fr; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--navy-900); margin-bottom: 7px; }
.req { color: var(--gold); }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--cream-2); border: 1.5px solid var(--border-strong); border-radius: var(--radius-sm);
  padding: 13px 15px; min-height: 48px; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--navy); background: #fff; box-shadow: 0 0 0 4px rgba(22,48,92,.10); }
.field input:invalid:not(:placeholder-shown) { border-color: #cf6b52; }
.consent { display: flex; align-items: flex-start; gap: 12px; margin: 6px 0 20px; }
.consent input { flex: none; width: 22px; height: 22px; margin-top: 2px; accent-color: var(--navy); cursor: pointer; }
.consent label { font-size: .9rem; color: var(--muted); line-height: 1.5; }
.consent a { font-weight: 600; }
.form-note { margin: 14px 0 0; font-weight: 600; font-size: .95rem; min-height: 1.2em; }
.form-note.ok { color: #2e7d4f; }
.form-note.err { color: #c0392b; }
.form-hint { font-size: .8rem; color: var(--muted-2); margin: 10px 0 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #c4d0e4; }
.footer-top { display: grid; gap: 34px; padding: 56px 20px 30px; }
.footer-brand { display: flex; gap: 14px; align-items: flex-start; }
.footer-brand strong { display: block; font-family: var(--font-head); color: #fff; font-size: 1.1rem; margin-bottom: 4px; }
.footer-brand p { color: #9fb0cc; font-size: .92rem; margin: 0; line-height: 1.6; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.footer-nav h3 { font-family: var(--font-body); text-transform: uppercase; letter-spacing: .08em; font-size: .74rem; color: var(--gold-soft); margin: 0 0 12px; }
.footer-nav ul { display: grid; gap: 9px; }
.footer-nav a { color: #c4d0e4; font-size: .95rem; }
.footer-nav a:hover { color: #fff; }
.footer-bottom {
  display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center;
  padding: 20px 20px 30px; border-top: 1px solid rgba(255,255,255,.10); margin-top: 8px;
}
.copyright { margin: 0; font-size: .84rem; color: #8ea2c2; }
.powered { margin: 0; font-size: .9rem; color: #9fb0cc; }
.wowobot { color: #22b8e0; font-weight: 600; }
.wowobot:hover { color: #22b8e0; text-decoration: underline; }

/* ---------- Reveal Animations ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   BREAKPOINTS
   ============================================================ */

/* --- Mobile-Navigation bis 900px --- */
@media (max-width: 900px) {
  .burger { display: block; }
  .nav {
    position: fixed; top: 0; right: 0; z-index: 95;
    height: 100dvh; width: min(84vw, 340px);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    padding: 92px 24px 32px;
    background: var(--cream-2); border-left: 1px solid var(--border);
    box-shadow: -20px 0 60px rgba(15,32,56,.18);
    transform: translateX(100%); transition: transform .34s var(--ease);
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav > ul { flex-direction: column; align-items: stretch; gap: 4px; width: 100%; }
  .nav > ul a { padding: 14px 16px; font-size: 1.06rem; border-radius: 12px; }
  .nav > ul a:hover { background: rgba(22,48,92,.08); }
  .nav-cta { margin: 18px 0 0; width: 100%; }
}

/* --- Tablet ab 640px --- */
@media (min-width: 640px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .field-row { grid-template-columns: 1fr 1fr; }
  .trustbar-inner { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .trust-item { border-bottom: none; padding: 20px 18px; border-right: 1px solid rgba(255,255,255,.08); }
  .trust-item:nth-child(2n) { border-right: none; }
  .footer-top { grid-template-columns: 1.4fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .powered { text-align: right; }
}

/* --- Desktop ab 960px --- */
@media (min-width: 960px) {
  body { font-size: 17.5px; }
  .section { padding: 100px 0; }
  .hero { padding: 80px 0 96px; }
  .hero-inner { grid-template-columns: 1.05fr .95fr; gap: 56px; }
  .hero-card { transform: rotate(1.4deg); }
  .about-grid { grid-template-columns: .9fr 1.1fr; gap: 56px; }
  .location-grid { grid-template-columns: 1fr 1.1fr; gap: 56px; }
  .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 56px; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .benefits { grid-template-columns: repeat(4, 1fr); }
  .trustbar-inner { grid-template-columns: repeat(4, 1fr); }
  .trust-item { border-right: 1px solid rgba(255,255,255,.08) !important; }
  .trust-item:last-child { border-right: none !important; }
}

/* ---------- Legal / Content pages ---------- */
.legal-hero { padding: 48px 0 8px; background:
  radial-gradient(800px 380px at 90% -20%, var(--gold-tint), transparent 60%), var(--cream); }
.legal-hero .back { display: inline-flex; align-items: center; gap: .4em; font-weight: 600; font-size: .92rem; margin-bottom: 14px; }
.legal { padding: 26px 0 80px; }
.legal .prose { max-width: 760px; margin-inline: auto; }
.legal h1 { font-size: clamp(2rem, 6vw, 2.9rem); }
.legal h2 { font-size: 1.35rem; margin-top: 2.2rem; color: var(--navy-900); }
.legal h3 { font-size: 1.08rem; margin-top: 1.4rem; }
.legal p, .legal li { color: var(--ink); }
.legal .prose ul { list-style: disc; padding-left: 1.3rem; margin: 0 0 1rem; }
.legal .prose ul li { margin-bottom: .4rem; }
.legal address { font-style: normal; line-height: 1.9; }
.note-box {
  background: var(--surface); border: 1px dashed var(--gold); border-radius: var(--radius-sm);
  padding: 16px 20px; margin: 22px 0; color: var(--muted);
}
.note-box strong { color: var(--gold); font-family: var(--font-head); }
.updated { font-size: .85rem; color: var(--muted-2); }

/* ---------- 404 ---------- */
.err-wrap { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 60px 20px; }
.err-wrap .code { font-family: var(--font-head); font-size: clamp(4rem, 18vw, 8rem); color: var(--navy); line-height: 1; margin: 0; }

/* ---------- 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; }
}
