/* ============================================================
   DLC Bookkeeping Services — Website Stylesheet
   Design foundations + marketing-site component styles.
   Brand: trustworthy + modern. Navy authority, slate-blue
   support, sparing gold accent, warm-ivory canvas, sans type.
   ============================================================ */

/* ---- Webfonts (Google Fonts substitutes — see README) ---- */
@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:wght@400;500;600;700&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* ============ BRAND COLORS ============ */
  --navy:           #1B3A5B;  /* primary */
  --navy-deep:      #12293F;  /* pressed / dark surfaces */
  --navy-ink:       #0C2340;  /* near-black navy, wordmark */
  --navy-700:       #244A70;
  --navy-tint:      #E9EFF5;  /* pale navy wash */

  --slate:          #5B7C9D;  /* secondary */
  --slate-soft:     #93AAC2;
  --slate-pale:     #C7D4E0;
  --slate-wash:     #EFF3F7;  /* tinted section background */

  --gold:           #BE9A55;  /* premium accent, sparingly */
  --gold-deep:      #9E7F3F;
  --gold-soft:      #F0E7D3;

  /* ============ SURFACE / CANVAS ============ */
  --canvas:         #FBFAF7;  /* warm ivory page background */
  --surface:        #FFFFFF;  /* card surface */
  --surface-soft:   #F4F1EB;  /* sunken / thumbnail surface */
  --surface-navy:   #12293F;  /* dark sections, footer */

  /* ============ NEUTRAL / TEXT ============ */
  --ink:            #16202E;  /* primary headings on light */
  --body:           #3C4654;  /* body text */
  --muted:          #6A7482;  /* secondary / supporting */
  --faint:          #97A0AC;  /* captions, disabled labels */
  --hairline:       #E3E0D9;  /* warm 1px borders */
  --hairline-cool:  #E2E8EF;  /* cool divider on tinted areas */

  --on-navy:        #F7FAFD;  /* text on navy surfaces */
  --on-navy-muted:  #A9BACB;  /* secondary text on navy */

  /* ============ SEMANTIC ============ */
  --success:        #2E7D54;
  --success-soft:   #E4F0EA;
  --info:           #2F6DA3;
  --info-soft:      #E6EFF6;
  --warning:        #C98A2E;
  --warning-soft:   #F8EEDC;
  --critical:       #C0392B;
  --critical-soft:  #F6E4E1;

  /* ============ TYPE FAMILIES ============ */
  --font-display: 'Schibsted Grotesk', 'Helvetica Neue', Helvetica, sans-serif;
  --font-text:    'Hanken Grotesk', 'Helvetica Neue', Helvetica, sans-serif;

  /* ============ SPACING (4px base, 8px step) ============ */
  --space-xxs: 4px;
  --space-xs:  8px;
  --space-sm:  12px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 40px;
  --space-3xl: 48px;
  --space-4xl: 64px;
  --space-5xl: 80px;
  --space-6xl: 96px;
  --space-hero:128px;

  /* ============ RADII ============ */
  --radius-xs:   4px;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;   /* default card */
  --radius-xl:   24px;   /* feature / showcase cards */
  --radius-pill: 999px;  /* buttons, chips, badges */
  --radius-circle: 50%;

  /* ============ ELEVATION (soft, navy-tinted) ============ */
  --shadow-sm: 0 1px 2px rgba(16, 32, 53, 0.06);
  --shadow-md: 0 4px 16px rgba(16, 32, 53, 0.08);
  --shadow-lg: 0 12px 32px rgba(16, 32, 53, 0.10);
  --shadow-xl: 0 24px 60px rgba(16, 32, 53, 0.12);

  /* ============ MOTION ============ */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-fast: 140ms;
  --dur:      220ms;
  --dur-slow: 320ms;
}

/* ============================================================
   Base
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--canvas); color: var(--body); font-family: var(--font-text); -webkit-font-smoothing: antialiased; }
a { cursor: pointer; text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
[data-lucide] svg { width: 1em; height: 1em; }

/* Router: only the active page is shown */
.page { display: none; }
.page.active { display: block; }

/* Keyboard focus — visible navy ring on light, gold on dark surfaces */
:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; border-radius: 2px; }
.footer :focus-visible,
.section-navy :focus-visible,
.cta-band :focus-visible,
.support-card.feat :focus-visible { outline-color: var(--gold); }
/* Headings receive programmatic focus on route change — don't show a ring there */
[tabindex="-1"]:focus { outline: none; }

/* Balance multi-line headings so they don't break mid-clause */
.hero-title, .section-title, .page-header-title, .cta-title,
.testi-quote, .support-name, .step-h, .services-group-title { text-wrap: balance; }

/* ---------- Buttons ---------- */
.btn { font-family: var(--font-text); font-weight: 600; font-size: 15px; line-height: 1;
  border: none; border-radius: var(--radius-pill); cursor: pointer; display: inline-flex;
  align-items: center; justify-content: center; gap: 8px; padding: 13px 26px;
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out),
    border-color var(--dur) var(--ease-out), transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur) var(--ease-out); white-space: nowrap; }
.btn:active { transform: translateY(1px) scale(0.99); }
.btn[disabled] { opacity: 0.6; cursor: default; pointer-events: none; }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-deep); }
.btn-accent { background: var(--gold); color: var(--navy-ink); }
.btn-accent:hover { background: var(--gold-deep); color: #fff; }
.btn-secondary { background: transparent; color: var(--navy); box-shadow: inset 0 0 0 1.5px var(--navy); }
.btn-secondary:hover { background: var(--navy-tint); }
.btn-ghost { background: transparent; color: var(--body); box-shadow: inset 0 0 0 1.5px var(--hairline); }
.btn-ghost:hover { background: var(--surface-soft); }

/* ---------- Eyebrow ---------- */
.eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-deep); display: inline-flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }
.eyebrow-light { color: var(--gold); }

/* ---------- Navigation ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(251,250,247,0.82);
  backdrop-filter: saturate(1.4) blur(12px); -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--hairline); }
.nav-inner { display: flex; align-items: center; gap: 28px; height: 74px; }
.nav-logo { cursor: pointer; display: flex; align-items: center; background: none; border: none; padding: 0; }
.nav-logo img { height: 46px; display: block; }
.nav-links { display: flex; gap: 4px; margin-left: 8px; }
.nav-link { font-size: 15px; font-weight: 500; color: var(--body); padding: 9px 16px;
  border-radius: var(--radius-pill); transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out); }
.nav-link:hover { color: var(--navy); background: var(--navy-tint); }
.nav-link.active { color: var(--navy); font-weight: 600; }
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.nav-burger { display: none; background: none; border: none; color: var(--navy); cursor: pointer; padding: 4px; }

/* ---------- Hero ---------- */
.hero { padding: 84px 0 96px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-title { font-family: var(--font-display); font-weight: 600; font-size: 58px; line-height: 1.05;
  letter-spacing: -0.022em; color: var(--ink); margin: 18px 0 0; }
.hero-sub { font-size: 19px; line-height: 1.6; color: var(--muted); margin: 22px 0 0; max-width: 30em; }
.hero-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 24px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--body); }
.hero-trust [data-lucide] { color: var(--slate); }

.hero-visual { position: relative; }
.hero-photo { aspect-ratio: 4/5; border-radius: var(--radius-xl); background: transparent;
  display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-logo-img { width: 84%; max-width: 440px; height: auto; object-fit: contain; filter: drop-shadow(0 10px 22px rgba(10, 30, 50, 0.24)); }
.hero-photo-label { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.78);
  font-size: 14px; font-weight: 500; }
.hero-stat-card { position: absolute; right: -18px; bottom: -22px; width: 248px; background: var(--surface);
  border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: 18px 20px; box-shadow: var(--shadow-xl); }
.stat-row { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--muted); }
.stat-big { font-family: var(--font-display); font-weight: 600; font-size: 30px; color: var(--ink); margin-top: 6px; letter-spacing: -0.02em; }
.stat-big span { color: var(--faint); font-size: 18px; }
.stat-meta { font-size: 12px; color: var(--faint); margin-top: 4px; }
.stat-bar { height: 7px; border-radius: 99px; background: var(--surface-soft); margin-top: 14px; overflow: hidden; }
.stat-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--slate), var(--navy)); border-radius: 99px; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-wash { background: var(--slate-wash); }
.section-navy { background: var(--surface-navy); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.section-title { font-family: var(--font-display); font-weight: 600; font-size: 38px; line-height: 1.12;
  letter-spacing: -0.02em; color: var(--ink); margin: 0; }
.section-sub { font-size: 18px; line-height: 1.55; color: var(--muted); margin: 0; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.section-more { display: flex; justify-content: center; margin-top: 40px; }
.service-card { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm); transition: box-shadow var(--dur) var(--ease-out),
    transform var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out); }
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-ic { width: 50px; height: 50px; border-radius: var(--radius-md); background: var(--navy-tint);
  color: var(--navy); display: flex; align-items: center; justify-content: center; }
.service-title { font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--ink); margin: 18px 0 8px; }
.service-body { font-size: 15px; line-height: 1.55; color: var(--muted); margin: 0; }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600;
  color: var(--navy); margin-top: 16px; transition: gap var(--dur) var(--ease-out); }
.service-card:hover .service-link { gap: 10px; }
.service-card.feat { background: var(--navy); border-color: transparent; box-shadow: var(--shadow-md); }
.service-card.feat .service-ic { background: rgba(255,255,255,0.12); color: #fff; }
.service-card.feat .service-title { color: #fff; }
.service-card.feat .service-body { color: var(--on-navy-muted); }
.service-card.feat .service-link { color: var(--gold); }

/* ---------- Stats + Why ---------- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 56px; }
.stat-cell { text-align: center; }
.stat-n { font-family: var(--font-display); font-weight: 600; font-size: 44px; color: var(--navy); letter-spacing: -0.02em; }
.stat-l { font-size: 14px; color: var(--muted); margin-top: 4px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.why-ic { width: 46px; height: 46px; border-radius: 50%; background: var(--gold-soft); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center; }
.why-h { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--ink); margin: 16px 0 7px; }
.why-b { font-size: 15px; line-height: 1.55; color: var(--muted); margin: 0; }

/* ---------- Support options ---------- */
.support-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: stretch; }
.support-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--hairline);
  border-radius: var(--radius-xl); padding: 30px; box-shadow: var(--shadow-sm); }
.support-card.feat { background: var(--navy); border-color: transparent; box-shadow: var(--shadow-lg); }
.support-ic { width: 50px; height: 50px; border-radius: var(--radius-md); background: var(--navy-tint);
  color: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.support-card.feat .support-ic { background: rgba(255,255,255,0.12); color: #fff; }
.support-name { font-family: var(--font-display); font-weight: 600; font-size: 20px; line-height: 1.2;
  color: var(--ink); margin: 0 0 10px; letter-spacing: -0.01em; }
.support-card.feat .support-name { color: #fff; }
.support-summary { font-size: 15px; line-height: 1.55; color: var(--muted); margin: 0 0 22px; }
.support-card.feat .support-summary { color: var(--on-navy-muted); }
.support-best { font-size: 15px; font-weight: 500; line-height: 1.5; color: var(--body); margin: 0 0 20px;
  padding-bottom: 18px; border-bottom: 1px solid var(--hairline); }
.support-card.feat .support-best { color: var(--on-navy); border-bottom-color: rgba(255,255,255,0.14); }
.support-feats { display: flex; flex-direction: column; gap: 12px; margin: 0 0 26px; }
.support-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; line-height: 1.35; color: var(--body); }
.support-feats [data-lucide] { color: var(--success); flex: none; margin-top: 2px; }
.support-card.feat .support-feats li { color: var(--on-navy); }
.support-card.feat .support-feats [data-lucide] { color: var(--gold); }
.support-card .btn { width: 100%; margin-top: auto; }

/* ---------- Testimonial ---------- */
.testi { max-width: 820px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 26px; }
.testi-quote { font-family: var(--font-display); font-weight: 500; font-size: 30px; line-height: 1.35;
  letter-spacing: -0.015em; color: var(--on-navy); margin: 0; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.1);
  color: var(--slate-soft); display: flex; align-items: center; justify-content: center; }
.testi-name { font-weight: 600; color: #fff; font-size: 15px; text-align: left; }
.testi-role { font-size: 13px; color: var(--on-navy-muted); text-align: left; }
.testi-byline { font-size: 14px; font-weight: 600; letter-spacing: 0.02em; color: var(--slate-soft); margin-top: -8px; }
.trust-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.trust-strip span { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-pill); color: var(--on-navy); background: rgba(255,255,255,0.06);
  padding: 10px 14px; font-size: 14px; font-weight: 500; }
.trust-strip [data-lucide] { color: var(--gold); flex: none; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--surface-navy); border-radius: var(--radius-xl); padding: 56px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-title { font-family: var(--font-display); font-weight: 600; font-size: 36px; color: #fff; margin: 14px 0 10px; letter-spacing: -0.02em; }
.cta-sub { font-size: 17px; color: var(--on-navy-muted); margin: 0; max-width: 30em; }

/* ---------- Page header ---------- */
.page-header { padding: 72px 0 44px; text-align: center; }
.page-header .eyebrow { justify-content: center; }
.page-header-title { font-family: var(--font-display); font-weight: 600; font-size: 48px; line-height: 1.08;
  letter-spacing: -0.022em; color: var(--ink); margin: 16px 0 0; }
.page-header-sub { font-size: 19px; line-height: 1.55; color: var(--muted); margin: 18px auto 0; max-width: 36em; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 52px; align-items: center; }
.about-photo { position: relative; overflow: hidden; aspect-ratio: 4/3; border-radius: var(--radius-xl); background:
  linear-gradient(150deg, var(--slate) 0%, var(--navy) 100%); display: flex; align-items: center;
  justify-content: center; box-shadow: var(--shadow-md); }
.about-photo-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-copy p { font-size: 16.5px; line-height: 1.65; color: var(--body); margin: 16px 0 0; }
.about-copy .section-title { margin: 14px 0 6px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 44px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.info-row { display: flex; align-items: center; gap: 14px; }
.info-ic { width: 46px; height: 46px; border-radius: var(--radius-md); background: var(--navy-tint); color: var(--navy);
  display: flex; align-items: center; justify-content: center; flex: none; }
.info-h { font-size: 13px; color: var(--muted); }
.info-v { font-size: 16px; font-weight: 600; color: var(--ink); }
.info-link { transition: color var(--dur) var(--ease-out); }
.info-link:hover { color: var(--navy); }
.info-assure { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 500;
  color: var(--success); background: var(--success-soft); padding: 11px 16px; border-radius: var(--radius-md); margin-top: 4px; }

.contact-card { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius-xl);
  padding: 32px; box-shadow: var(--shadow-md); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; margin-bottom: 18px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field .opt { color: var(--faint); font-weight: 400; }
.input { font-family: var(--font-text); font-size: 15px; color: var(--ink); background: var(--surface);
  border: 1px solid var(--hairline); border-radius: var(--radius-md); padding: 12px 14px; outline: none;
  transition: border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out); }
.input::placeholder { color: var(--faint); }
.input:focus { border-color: var(--navy); box-shadow: 0 0 0 3px var(--navy-tint); }
.input.err { border-color: var(--critical); }
.input.err:focus { box-shadow: 0 0 0 3px var(--critical-soft); }
.textarea { resize: vertical; min-height: 96px; line-height: 1.55; }
.field-err { font-size: 12.5px; color: var(--critical); margin-top: 6px; }
/* Honeypot — visually hidden, off-screen (not display:none, so naive bots still fill it) */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
/* Form-level error / fallback message */
.form-error { font-size: 14px; line-height: 1.5; color: var(--critical); background: var(--critical-soft);
  border-radius: var(--radius-md); padding: 12px 14px; margin-bottom: 18px; }
.form-error a { color: var(--critical); font-weight: 600; }
.contact-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.contact-note { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted); }
.contact-sent { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 48px 32px; }
.sent-ic { width: 60px; height: 60px; border-radius: 50%; background: var(--success-soft); color: var(--success);
  display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.contact-sent h3 { font-family: var(--font-display); font-weight: 600; font-size: 24px; color: var(--ink); margin: 0; }
.contact-sent p { font-size: 16px; color: var(--muted); margin: 0 0 12px; max-width: 30em; }

/* ---------- Footer ---------- */
.footer { background: var(--surface-navy); color: var(--on-navy); padding: 64px 0 28px; margin-top: 0; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: 56px; padding-bottom: 44px; }
.footer-tag { font-size: 15px; line-height: 1.6; color: var(--on-navy-muted); margin: 20px 0 22px; max-width: 30em; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08);
  color: var(--on-navy); display: flex; align-items: center; justify-content: center;
  transition: background var(--dur) var(--ease-out); }
.footer-social a:hover { background: rgba(255,255,255,0.16); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-h { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14.5px; color: var(--on-navy-muted); padding: 6px 0;
  transition: color var(--dur) var(--ease-out); }
.footer-col a:hover { color: #fff; }
.footer-base { display: flex; align-items: center; justify-content: space-between; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1); font-size: 13px; color: var(--on-navy-muted); flex-wrap: wrap; gap: 12px; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a:hover { color: #fff; }

/* ---------- Reversed logo lockup ---------- */
.logo-lock { line-height: 1; }
.logo-mono { font-family: var(--font-display); font-weight: 600; font-size: 38px; letter-spacing: 0.05em; color: #fff; }
.logo-mono span { color: var(--slate-soft); }
.logo-sub { font-family: var(--font-display); font-weight: 500; font-size: 10px; letter-spacing: 0.3em; color: var(--on-navy-muted); margin-top: 8px; }

/* ---------- How it works (steps) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step-n { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 19px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 18px; }
.step-h { font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--ink); margin: 0 0 8px; }
.step-b { font-size: 15px; line-height: 1.55; color: var(--muted); margin: 0; }

/* ---------- Grouped services (Services page) ---------- */
.services-groups { display: flex; flex-direction: column; gap: 40px; }
/* Editorial two-pane: category label on the left, its service list on the right */
.services-group { display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: start; }
.services-group-head { position: sticky; top: 98px; }
.services-group-title { font-family: var(--font-display); font-weight: 600; font-size: 22px; line-height: 1.2;
  letter-spacing: -0.01em; color: var(--ink); margin: 0; }
.services-group-title::before { content: ''; display: block; width: 28px; height: 3px; background: var(--gold);
  border-radius: 2px; margin-bottom: 16px; }
.services-group-sub { font-size: 14.5px; line-height: 1.5; color: var(--muted); margin: 10px 0 0; }

/* Compact two-column service list (lighter than cards) */
.svc-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 40px; }
.svc-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 2px; border-top: 1px solid var(--hairline); }
.svc-item-ic { width: 38px; height: 38px; border-radius: var(--radius-sm); background: var(--navy-tint); color: var(--navy);
  display: flex; align-items: center; justify-content: center; flex: none; }
.svc-item-ic [data-lucide] { width: 19px; height: 19px; }
.svc-item-title { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink); }
.svc-item-desc { font-size: 14px; line-height: 1.45; color: var(--muted); margin-top: 3px; }

/* ---------- About — experience & credentials (navy band) ---------- */
.section-navy .section-title { color: #fff; }
.section-navy .section-sub { color: var(--on-navy-muted); }
.cred-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 44px; max-width: 880px; margin: 0 auto; }
.cred-item { display: flex; align-items: flex-start; gap: 16px; }
.cred-ic { width: 46px; height: 46px; border-radius: var(--radius-md); background: rgba(255,255,255,0.1); color: var(--gold);
  display: flex; align-items: center; justify-content: center; flex: none; }
.cred-h { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: #fff; }
.cred-b { font-size: 14.5px; line-height: 1.5; color: var(--on-navy-muted); margin-top: 4px; }

/* ---------- About — who we help ---------- */
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.audience-ic { width: 46px; height: 46px; border-radius: 50%; background: var(--gold-soft); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.audience-h { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink); line-height: 1.25; }
.audience-b { font-size: 14px; line-height: 1.5; color: var(--muted); margin-top: 7px; }

/* ---------- Owner bio (About) ---------- */
.owner { display: flex; align-items: center; gap: 16px; margin-top: 26px; padding-top: 24px;
  border-top: 1px solid var(--hairline); }
.owner-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--navy-tint); color: var(--navy);
  display: flex; align-items: center; justify-content: center; flex: none; }
.owner-name { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--ink); }
.owner-role { font-size: 13.5px; color: var(--muted); margin-top: 2px; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item:first-child { border-top: 1px solid var(--hairline); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 22px 4px; font-family: var(--font-display); font-weight: 600; font-size: 18px;
  line-height: 1.35; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-ic { color: var(--navy); flex: none; transition: transform var(--dur) var(--ease-out); }
.faq-item[open] .faq-ic { transform: rotate(180deg); }
.faq-a { margin: 0; padding: 0 4px 24px; font-size: 15.5px; line-height: 1.62; color: var(--body); max-width: 64ch; }

/* ---------- Contact privacy note ---------- */
.contact-privacy { font-size: 12.5px; line-height: 1.5; color: var(--muted); margin: 16px 0 0; }
.contact-privacy a { color: var(--navy); font-weight: 600; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  /* Size the panel to the logo (no clipping) instead of a fixed ratio */
  .hero-photo { aspect-ratio: auto; overflow: visible; padding: 4px 0; }
  .hero-logo-img { width: auto; max-width: 340px; max-height: 240px; }
  .hero-title { font-size: 46px; }
  /* Stacked: let the stat card flow beneath the logo rather than overlapping it */
  .hero-stat-card { position: static; right: auto; bottom: auto; width: 100%; max-width: 360px; margin: 4px auto 0; }
  .services-grid, .why-grid, .support-grid, .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .services-group { grid-template-columns: 1fr; gap: 20px; }
  .services-group-head { position: static; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 680px) {
  .container { padding: 0 20px; }
  .nav-links { display: none; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column;
    background: var(--canvas); border-bottom: 1px solid var(--hairline); padding: 12px 20px 20px; gap: 2px; }
  .nav-links.open { display: flex; }
  .nav-burger { display: inline-flex; }
  .hero-title { font-size: 38px; }
  .hero-logo-img { max-width: 260px; max-height: 200px; }
  .section-title, .page-header-title { font-size: 30px; }
  .services-grid, .why-grid, .support-grid, .steps, .svc-list, .audience-grid, .cred-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 28px; }
  .section { padding: 60px 0; }
}
