/* =====================================================================
   The Debt Recovery Manual — Redesign
   Design system + components
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette */
  --navy-900: #0b1f33;
  --navy-800: #10263d;
  --navy-700: #163150;
  --navy-600: #1d4066;
  --blue-500: #2f6fb0;
  --blue-400: #4a8bcf;

  --amber-500: #f2a30b;
  --amber-400: #ffbb33;
  --amber-600: #d98a00;

  --green-500: #1f9d63;
  --green-100: #e3f5ec;

  --ink: #16202b;
  --slate-700: #35485c;
  --slate-500: #5c6f82;
  --slate-400: #8194a6;
  --slate-200: #d9e1e9;
  --slate-100: #eef2f6;
  --slate-50:  #f6f9fc;
  --white: #ffffff;

  /* Semantic */
  --bg: var(--white);
  --bg-alt: var(--slate-50);
  --text: var(--ink);
  --text-muted: var(--slate-500);
  --border: var(--slate-200);
  --accent: var(--amber-500);
  --accent-ink: #4a3200;

  /* Typography */
  --font-head: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1160px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 9px;

  --shadow-sm: 0 1px 2px rgba(11,31,51,.06), 0 2px 8px rgba(11,31,51,.05);
  --shadow-md: 0 8px 24px rgba(11,31,51,.10), 0 2px 6px rgba(11,31,51,.06);
  --shadow-lg: 0 24px 60px rgba(11,31,51,.18);

  --transition: .22s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip; /* safety net against sub-360px nudges; does not break sticky header */
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--blue-500); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy-700); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy-800); line-height: 1.12; font-weight: 800; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }
li { margin-bottom: .4rem; }
strong { color: var(--navy-800); font-weight: 700; }
:focus-visible { outline: 3px solid var(--amber-400); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(3.2rem, 7vw, 6rem) 0; }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy-800); color: #d8e3ee; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.narrow { max-width: 780px; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 700; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--amber-600);
  margin-bottom: 1rem;
}
.section--navy .eyebrow { color: var(--amber-400); }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; border-radius: 2px; }

.lead { font-size: 1.18rem; color: var(--slate-700); }
.section--navy .lead { color: #c4d3e2; }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: .85rem 1.6rem; border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; transition: all var(--transition); white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn-primary { background: var(--amber-500); color: var(--accent-ink); box-shadow: 0 8px 20px rgba(242,163,11,.32); }
.btn-primary:hover { background: var(--amber-400); color: var(--accent-ink); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(242,163,11,.42); }
.btn-dark { background: var(--navy-800); color: #fff; }
.btn-dark:hover { background: var(--navy-700); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--navy-800); border-color: var(--slate-200); }
.btn-ghost:hover { border-color: var(--navy-800); color: var(--navy-800); background: var(--slate-50); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.btn-block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .container { max-width: 1400px; }
.site-header .brand-text small { display: none; }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 74px;
}
.brand { display: flex; align-items: center; gap: .7rem; font-family: var(--font-head); font-weight: 800; color: var(--navy-800); font-size: 1.05rem; letter-spacing: -.01em; line-height: 1.15; }
.site-header .brand-text { max-width: 15ch; }
@media (min-width: 1201px) { .site-header .brand-text { max-width: none; white-space: nowrap; } }
.brand:hover { color: var(--navy-800); }
.brand-mark {
  width: 44px; height: 44px; flex: none;
  display: block; object-fit: contain;
}
.brand-text small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .72rem; color: var(--slate-500); letter-spacing: .02em; }

.nav-links { display: flex; align-items: center; gap: .1rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: block; padding: .5rem .6rem; border-radius: 9px;
  color: var(--slate-700); font-weight: 600; font-size: .92rem;
  font-family: var(--font-head); white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy-800); background: var(--slate-100); }
.nav-cta { display: flex; align-items: center; gap: .8rem; }
.nav-phone { font-family: var(--font-head); font-weight: 700; color: var(--navy-800); white-space: nowrap; display: none; align-items: center; gap: .4rem; }
@media (min-width: 1360px) { .nav-phone { display: inline-flex; } }
.nav-phone:hover { color: var(--amber-600); }
.nav-phone svg { width: 1.05em; height: 1.05em; color: var(--amber-600); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; border-radius: 10px; color: var(--navy-800);
}
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle:hover { background: var(--slate-100); }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #e8f0f8; overflow: hidden;
  background: var(--navy-900);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(115deg, rgba(9,24,40,.96) 0%, rgba(9,24,40,.82) 42%, rgba(9,24,40,.45) 100%), url('../images/hero-debt-collector.jpg');
  background-size: cover; background-position: center right;
  z-index: 0;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(1000px 500px at 85% -10%, rgba(242,163,11,.16), transparent 60%);
}
.hero .container { position: relative; z-index: 1; }
.hero-inner { padding: clamp(3.5rem, 8vw, 6.5rem) 0; max-width: 720px; }
.hero h1 { color: #fff; margin-bottom: 1.1rem; }
.hero h1 .hl { color: var(--amber-400); }
.hero p { font-size: 1.22rem; color: #c7d6e6; margin-bottom: 1.8rem; max-width: 60ch; }
.hero .btn-row { margin-bottom: 2rem; }

.trust-chips { display: flex; flex-wrap: wrap; gap: .55rem 1.4rem; align-items: center; }
.trust-chip { display: inline-flex; align-items: center; gap: .5rem; font-size: .95rem; color: #bcd0e4; font-weight: 500; }
.trust-chip svg { width: 1.2em; height: 1.2em; color: var(--green-500); flex: none; }

/* ---------- Stat bar ---------- */
.statbar { background: var(--navy-700); }
.statbar .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 1px; background: rgba(255,255,255,.08); border-radius: var(--radius); overflow: hidden; margin-top: -0px; }
.stat { background: var(--navy-700); padding: 1.6rem 1.4rem; text-align: center; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: 2.1rem; color: #fff; line-height: 1; }
.stat .num em { color: var(--amber-400); font-style: normal; }
.stat .lbl { color: #9fb6cd; font-size: .9rem; margin-top: .4rem; }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex; flex-direction: column; height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #c8d5e2; }
.card-media { aspect-ratio: 16/10; overflow: hidden; background: var(--slate-100); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: .5rem; }
.card-body p { color: var(--text-muted); font-size: .97rem; }
.card-tag { align-self: flex-start; font-family: var(--font-head); font-weight: 700; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--amber-600); background: #fdf3dd; padding: .3rem .65rem; border-radius: 6px; margin-bottom: .8rem; }
.card-link { margin-top: auto; padding-top: 1rem; font-family: var(--font-head); font-weight: 700; color: var(--blue-500); display: inline-flex; align-items: center; gap: .4rem; }
.card-link svg { width: 1em; height: 1em; transition: transform var(--transition); }
.card:hover .card-link svg { transform: translateX(4px); }

/* Feature / icon card */
.feature { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.7rem 1.6rem; height: 100%; transition: transform var(--transition), box-shadow var(--transition); }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature .ficon { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 1.1rem; background: linear-gradient(140deg, var(--navy-700), var(--blue-500)); color: #fff; }
.feature .ficon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.feature p { color: var(--text-muted); font-size: .97rem; margin: 0; }

/* Numbered step */
.steps { counter-reset: step; display: grid; gap: 1.2rem; }
.step { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem 1.6rem 1.5rem 4.6rem; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 1.3rem; top: 1.3rem;
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: var(--amber-500); color: var(--accent-ink);
  font-family: var(--font-head); font-weight: 800; font-size: 1.15rem;
  display: grid; place-items: center;
}
.step h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.step p { margin: 0; color: var(--text-muted); }

/* ---------- Section heading block ---------- */
.section-head { max-width: 680px; margin-bottom: 2.6rem; }
.section-head.center { margin-inline: auto; }

/* ---------- Split / media rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split-media.framed { position: relative; }

.checklist { list-style: none; padding: 0; margin: 1.2rem 0; }
.checklist li { position: relative; padding-left: 2rem; margin-bottom: .8rem; color: var(--slate-700); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .35em;
  width: 1.3rem; height: 1.3rem; border-radius: 50%;
  background: var(--green-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f9d63' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/0.8rem no-repeat;
}

/* ---------- Pricing / info pills ---------- */
.pricepill { display: inline-flex; align-items: baseline; gap: .4rem; background: var(--green-100); color: #0e6b41; font-family: var(--font-head); font-weight: 700; padding: .35rem .8rem; border-radius: 100px; font-size: .95rem; }

/* ---------- Callout ---------- */
.callout { border-left: 4px solid var(--amber-500); background: #fdf8ec; padding: 1.2rem 1.4rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 1.5rem 0; }
.callout p:last-child { margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); color: #fff; border-radius: var(--radius-lg); padding: clamp(2.4rem,5vw,3.6rem); text-align: center; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 100% 0%, rgba(242,163,11,.22), transparent 60%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cddaea; max-width: 56ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 1.6rem; }

/* ---------- About / person ---------- */
.person { display: grid; grid-template-columns: 300px 1fr; gap: clamp(1.6rem,4vw,3rem); align-items: center; }
.person-photo { position: relative; }
.person-photo img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.person-photo .badge { position: absolute; bottom: -14px; right: -10px; background: var(--amber-500); color: var(--accent-ink); font-family: var(--font-head); font-weight: 800; padding: .7rem 1rem; border-radius: 12px; line-height: 1.05; box-shadow: var(--shadow-md); text-align: center; }
.person-photo .badge b { display: block; font-size: 1.5rem; }
.person-photo .badge small { font-size: .7rem; font-weight: 700; }

/* ---------- Testimonial ---------- */
.quote { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 2.2rem; box-shadow: var(--shadow-sm); }
.quote .mark { font-family: var(--font-head); font-size: 3rem; line-height: .6; color: var(--amber-500); }
.quote blockquote { margin: .6rem 0 1.2rem; font-size: 1.15rem; color: var(--slate-700); font-style: italic; }
.quote cite { font-style: normal; font-family: var(--font-head); font-weight: 700; color: var(--navy-800); }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--navy-800); color: #fff; position: relative; overflow: hidden; }
.page-hero::after { content:""; position:absolute; inset:0; background: radial-gradient(800px 400px at 90% -20%, rgba(242,163,11,.18), transparent 60%); }
.page-hero .container { position: relative; z-index: 1; padding: clamp(2.8rem,6vw,4.5rem) var(--gutter); }
.page-hero h1 { color: #fff; margin-bottom: .8rem; }
.page-hero p { color: #c4d3e2; font-size: 1.15rem; max-width: 60ch; margin: 0; }
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .88rem; color: #93a9bf; margin-bottom: 1.1rem; }
.breadcrumb a { color: #c4d3e2; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #6d859c; }

/* ---------- Prose (article) ---------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.8rem; }
.prose > p:first-of-type { font-size: 1.14rem; color: var(--slate-700); }
.table-wrap { overflow-x: auto; margin: 1.5rem 0; -webkit-overflow-scrolling: touch; border-radius: var(--radius-sm); }
.prose .table-wrap table { margin: 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .96rem; min-width: 460px; }
.prose th, .prose td { text-align: left; padding: .8rem 1rem; border-bottom: 1px solid var(--border); }
.prose th { background: var(--slate-50); font-family: var(--font-head); color: var(--navy-800); }

/* ---------- Accordion (guides on hub) ---------- */
.accordion { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: #fff; }
.accordion + .accordion { margin-top: 1rem; }
.acc-head { width: 100%; text-align: left; background: #fff; border: 0; cursor: pointer; padding: 1.3rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--navy-800); }
.acc-head:hover { background: var(--slate-50); }
.acc-head .chev { flex: none; width: 1.4rem; height: 1.4rem; transition: transform var(--transition); color: var(--amber-600); }
.acc-head[aria-expanded="true"] .chev { transform: rotate(180deg); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc-panel-inner { padding: 0 1.5rem 1.5rem; color: var(--slate-700); }
.acc-panel-inner p:last-child { margin-bottom: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.6rem,4vw,3rem); align-items: start; }
.contact-grid > * { min-width: 0; }
.contact-cards { display: grid; gap: 1rem; }
.contact-card { overflow-wrap: anywhere; }
.contact-card h3, .contact-card p, .contact-card a, .contact-card strong { overflow-wrap: anywhere; word-break: break-word; }
.contact-card { display: flex; gap: 1rem; align-items: flex-start; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.3rem 1.4rem; }
.contact-card .ci { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center; background: var(--slate-100); color: var(--navy-700); }
.contact-card .ci svg { width: 22px; height: 22px; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: .2rem; }
.contact-card p, .contact-card a { margin: 0; font-size: 1rem; }
.contact-card .sub { color: var(--text-muted); font-size: .9rem; }

.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--navy-800); margin-bottom: .4rem; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--border); border-radius: 10px;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: #fff; transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(47,111,176,.15); }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .85rem; color: var(--text-muted); }
.form-panel { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.5rem,4vw,2.2rem); box-shadow: var(--shadow-sm); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #a9bccf; padding-top: 3.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 2.6rem; }
.site-footer h4 { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-brand .brand { color: #fff; margin-bottom: 1rem; }
.footer-brand .brand .brand-text small { color: #8ba3ba; }
.footer-brand p { font-size: .95rem; color: #90a6bc; max-width: 34ch; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: #a9bccf; font-size: .95rem; }
.footer-links a:hover { color: #fff; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .7rem; font-size: .95rem; }
.footer-contact svg { width: 1.1em; height: 1.1em; color: var(--amber-400); flex: none; margin-top: .2em; }
.footer-contact a { color: #cddaea; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.4rem 0; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; align-items: center; font-size: .85rem; color: #7d94ab; }
.footer-bottom a { color: #9fb4c9; }
.footer-bottom .disc { max-width: 70ch; }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.hide-mobile { }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .person { grid-template-columns: 1fr; text-align: left; }
  .person-photo { max-width: 300px; }
  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; }
}
@media (max-width: 1200px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .nav.open .nav-links {
    display: flex; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: .2rem;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: .8rem var(--gutter) 1.2rem; box-shadow: var(--shadow-md);
  }
  .nav.open .nav-links a { padding: .8rem .7rem; font-size: 1.05rem; }
  .site-header { position: sticky; }
  .nav { position: relative; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .btn-row .btn { width: 100%; }
  .hero p { font-size: 1.08rem; }
  .footer-brand .brand-text small { display: block; }
  .brand-mark { width: 38px; height: 38px; font-size: 1.05rem; }
  .brand { font-size: .98rem; gap: .55rem; }
  .nav-cta .btn { padding: .7rem 1rem; font-size: .92rem; }
  .nav { min-height: 66px; gap: .6rem; }
}
@media (max-width: 360px) {
  .site-header .brand-text { max-width: 11ch; font-size: .9rem; }
  .nav-cta .btn { padding: .65rem .85rem; font-size: .86rem; }
  .brand-mark { width: 34px; height: 34px; }
}
