/* ==========================================================================
   VISION ED CONNECT — site.css
   Design system: "Beacon" — warm paper, deep ink, signal amber.
   Built for WCAG 2.2 AA+ : high contrast, large type, visible focus,
   no motion dependency, no carousels, semantic structure.
   Single stylesheet, zero dependencies. Edit tokens below to re-theme.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --paper:      #FAF6EE;   /* warm off-white, low glare */
  --paper-2:    #F2EBDD;   /* deeper warm panel */
  --card:       #FFFFFF;
  --ink:        #0F1E2E;   /* near-navy body text  (15.9:1 on paper) */
  --ink-soft:   #3A4E63;   /* secondary text       (8.6:1)  */
  --navy:       #0E2C47;   /* brand navy           */
  --navy-deep:  #081E33;   /* dark bands           */
  --amber:      #E8A33D;   /* signal amber (decor/buttons) */
  --amber-ink:  #7A4E00;   /* text-safe amber on paper (7.1:1) */
  --line:       #D8CFBE;   /* hairlines on paper   */
  --line-dark:  #1E3D5C;   /* hairlines on navy    */
  --focus:      #B45309;   /* focus ring, AAA on paper & white */
  --good:       #146C43;
  --bad:        #A12116;

  --font-ui:   "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --font-disp: "Fraunces", Georgia, "Times New Roman", serif;
  --font-legible: "Atkinson Hyperlegible", Verdana, Tahoma, sans-serif;

  --wrap: 72rem;      /* 1152px content wrap  */
  --measure: 66ch;    /* prose line length    */
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --shadow: 0 1px 2px rgba(8,30,51,.06), 0 10px 30px -12px rgba(8,30,51,.18);
  --shadow-lg: 0 2px 4px rgba(8,30,51,.08), 0 24px 60px -20px rgba(8,30,51,.28);
  --step: clamp(2.5rem, 6vw, 5rem);   /* section rhythm */
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 112.5%; /* 18px base — low-vision friendly default */
       scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  min-height: 100vh;
  display: flex; flex-direction: column;
}
main { flex: 1 0 auto; }
img, svg, video { max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
a { color: var(--navy); text-decoration: underline; text-decoration-thickness: .08em;
    text-underline-offset: .18em; }
a:hover { color: var(--amber-ink); }
strong { font-weight: 700; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-disp); font-weight: 700; line-height: 1.12;
  color: var(--ink); text-wrap: balance; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 5.2vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; font-family: var(--font-ui); font-weight: 800; letter-spacing: 0; }
p { max-width: var(--measure); }
.lead { font-size: clamp(1.15rem, 1.8vw, 1.35rem); line-height: 1.6; color: var(--ink-soft); }
.small { font-size: .875rem; }

.eyebrow {
  font-family: var(--font-ui); font-size: .8rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; color: var(--amber-ink);
  display: flex; align-items: center; gap: .75rem; margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 2rem; height: 3px; border-radius: 2px;
  background: var(--amber); flex: 0 0 auto; }

/* ---------- Focus (never removed, always obvious) ---------- */
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Skip link ---------- */
.skip {
  position: absolute; left: 1rem; top: -4rem; z-index: 200;
  background: var(--navy-deep); color: #fff; padding: .8rem 1.2rem;
  border-radius: 0 0 .6rem .6rem; font-weight: 700; text-decoration: none;
  transition: top .2s ease;
}
.skip:focus { top: 0; color: #fff; }

/* ---------- Layout utilities ---------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.section { padding-block: var(--step); }
.section + .section { padding-top: 0; }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.grid { display: grid; gap: 1.5rem; }
.two-col { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 1.6rem; border-radius: 999px;
  font-weight: 700; font-size: 1rem; text-decoration: none; line-height: 1.2;
  border: 2px solid transparent; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-amber { background: var(--amber); color: var(--navy-deep); box-shadow: 0 6px 18px -6px rgba(232,163,61,.55); }
.btn-amber:hover { background: #F2B45C; color: var(--navy-deep); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); color: #fff; }
.btn-ghost { border-color: currentColor; color: inherit; }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: inherit; }
.btn .arr { transition: transform .15s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 238, .9);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.head-in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .8rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand:hover .brand-t { color: var(--amber-ink); }
.brand-mark { width: 2.4rem; height: 2.4rem; flex: 0 0 auto; }
.brand-t { font-family: var(--font-disp); font-weight: 700; font-size: 1.28rem; color: var(--ink); letter-spacing: -0.01em; }
.brand-t em { font-style: normal; color: var(--amber-ink); }

.site-nav ul { display: flex; align-items: center; gap: .25rem; list-style: none; }
.site-nav a {
  display: inline-block; padding: .55rem .85rem; border-radius: .6rem;
  font-weight: 600; font-size: .95rem; color: var(--ink-soft); text-decoration: none;
}
.site-nav a:hover { color: var(--ink); background: var(--paper-2); }
.site-nav a[aria-current="page"] { color: var(--ink); background: var(--paper-2); box-shadow: inset 0 -3px 0 var(--amber); }
.nav-cta {
  margin-left: .5rem; background: var(--navy); color: #fff !important;
  padding: .6rem 1.15rem !important; border-radius: 999px !important;
}
.nav-cta:hover { background: var(--navy-deep) !important; }
.site-nav a.nav-cta[aria-current="page"] { background: var(--navy) !important; box-shadow: none; }
.nav-toggle { display: none; padding: .55rem 1rem; border: 2px solid var(--ink); border-radius: .6rem; font-weight: 700; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: clip; padding: clamp(3rem,7vw,6rem) 0 clamp(3rem,6vw,5rem);
  background:
    radial-gradient(52rem 30rem at 108% -12%, rgba(232,163,61,.16), transparent 60%),
    radial-gradient(40rem 26rem at -14% 108%, rgba(14,44,71,.08), transparent 55%),
    var(--paper);
}
.hero-in { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.hero h1 { margin-bottom: 1.2rem; }
.hero h1 .u-amber { box-shadow: inset 0 -0.28em 0 rgba(232,163,61,.55); }
.hero .lead { margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.4rem; }
.hero-sign { display: flex; align-items: center; gap: .9rem; color: var(--ink-soft); font-size: .95rem; }
.hero-sign .mono {
  width: 3.2rem; height: 3.2rem; border-radius: 50%; flex: 0 0 auto;
  display: grid; place-items: center; font-family: var(--font-disp); font-weight: 700;
  background: var(--navy); color: var(--amber); font-size: 1.05rem;
  box-shadow: 0 0 0 4px var(--paper), 0 0 0 5.5px var(--line);
}

/* Beacon art — radiating arcs + orbiting access dots */
.beacon { position: relative; aspect-ratio: 1; max-width: 30rem; margin-inline: auto; width: 100%; }
.beacon svg { display: block; width: 100%; height: auto; }
.beacon .core { transform-origin: center; animation: corePulse 5s ease-in-out infinite; }
.beacon .ring { transform-origin: center; opacity: 0; animation: ringPulse 5s ease-out infinite; }
.beacon .ring.r2 { animation-delay: 1.66s; }
.beacon .ring.r3 { animation-delay: 3.33s; }
@keyframes corePulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.045); } }
@keyframes ringPulse { 0% { opacity: 0; transform: scale(.55); } 22% { opacity: .8; }
  70% { opacity: 0; transform: scale(1.18); } 100% { opacity: 0; transform: scale(1.18); } }

/* Trust strip */
.trust { border-block: 1px solid var(--line); background: var(--card); }
.trust-in { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 1.6rem 1.4rem; border-left: 1px solid var(--line); }
.trust-item:first-child { border-left: 0; }
.trust-num { font-family: var(--font-disp); font-weight: 900; font-size: clamp(1.9rem,3vw,2.6rem);
  color: var(--navy); line-height: 1; display: block; }
.trust-num sup { font-size: .5em; color: var(--amber-ink); }
.trust-label { font-size: .88rem; color: var(--ink-soft); margin-top: .45rem; display: block; line-height: 1.45; }

/* ---------- Process ("the gates") ---------- */
.process { counter-reset: gate; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.gate { position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem 1.4rem 1.4rem; box-shadow: var(--shadow); }
.gate::before { counter-increment: gate; content: "0" counter(gate);
  font-family: var(--font-disp); font-weight: 900; font-size: 2.1rem; color: var(--amber);
  display: block; line-height: 1; margin-bottom: .8rem; }
.gate h3 { font-size: 1.15rem; margin-bottom: .5rem; font-family: var(--font-ui); font-weight: 800; }
.gate p { font-size: .94rem; color: var(--ink-soft); }
.gate::after { content: ""; position: absolute; top: 2.55rem; right: -1.05rem; width: .9rem;
  height: 2px; background: var(--line); }
.gate:last-child::after { display: none; }

/* ---------- Services cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.svc-card {
  position: relative; display: flex; flex-direction: column; gap: .9rem;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.9rem 1.7rem; text-decoration: none; color: inherit;
  box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--amber); color: inherit; }
.svc-icon { width: 3.1rem; height: 3.1rem; border-radius: .9rem; display: grid; place-items: center;
  background: var(--paper-2); color: var(--navy); flex: 0 0 auto;
  transition: background .18s ease, color .18s ease; }
.svc-card:hover .svc-icon { background: var(--navy); color: var(--amber); }
.svc-card h3 { font-size: 1.28rem; }
.svc-card p { font-size: .95rem; color: var(--ink-soft); flex: 1; }
.svc-more { font-weight: 700; font-size: .92rem; color: var(--amber-ink); display: inline-flex; align-items: center; gap: .4rem; }
.svc-card:hover .svc-more { text-decoration: underline; text-underline-offset: .2em; }

/* ---------- Split / philosophy ---------- */
.split-panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3.5vw, 3rem); box-shadow: var(--shadow); }
.check-list { list-style: none; display: grid; gap: .85rem; margin-top: 1.2rem; }
.check-list li { display: flex; gap: .8rem; align-items: flex-start; font-size: .98rem; }
.check-list svg { flex: 0 0 auto; width: 1.35rem; height: 1.35rem; margin-top: .22rem; color: var(--good); }

/* ---------- Quotes ---------- */
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.quote { background: var(--card); border: 1px solid var(--line); border-left: 5px solid var(--amber);
  border-radius: var(--radius); padding: 2rem 1.9rem; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 1.2rem; }
.quote p { font-family: var(--font-disp); font-size: 1.18rem; line-height: 1.55; color: var(--ink); }
.quote footer { font-size: .9rem; color: var(--ink-soft); font-weight: 600; }
.quote footer span { display: block; font-weight: 500; }

/* ---------- Area split ---------- */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.area-card { border-radius: var(--radius-lg); padding: clamp(1.8rem,3vw,2.6rem); }
.area-card h3 { margin-bottom: .7rem; }
.area-local { background: var(--navy); color: #EAF1F8; }
.area-local h3 { color: #fff; }
.area-remote { background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow); }
.area-tag { display: inline-block; font-size: .75rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; padding: .35rem .8rem; border-radius: 999px; margin-bottom: 1rem; }
.area-local .area-tag { background: rgba(232,163,61,.18); color: var(--amber); }
.area-remote .area-tag { background: var(--paper-2); color: var(--amber-ink); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy-deep); color: #EAF1F8; position: relative; overflow: clip; }
.cta-band::before { content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(232,163,61,.14) 1.5px, transparent 1.6px);
  background-size: 26px 26px; mask-image: radial-gradient(40rem 20rem at 85% 50%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(40rem 20rem at 85% 50%, #000 0%, transparent 70%); }
.cta-in { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.6rem; padding-block: clamp(2.6rem,5vw,4rem); }
.cta-band h2 { color: #fff; margin-bottom: .6rem; }
.cta-band p { color: #B8C9DA; max-width: 40rem; }

/* ---------- Footer ---------- */
.site-foot { background: var(--navy-deep); color: #B8C9DA; border-top: 4px solid var(--amber); }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.5rem; padding-block: 3rem 2rem; }
.foot-brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.foot-brand .brand-t { color: #fff; }
.foot-brand .brand-t em { color: var(--amber); }
.site-foot p { font-size: .93rem; max-width: 30rem; }
.site-foot a { color: #EAF1F8; }
.site-foot a:hover { color: var(--amber); }
.foot-h { font-size: .8rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 1rem; }
.foot-nav { list-style: none; display: grid; gap: .55rem; font-size: .95rem; }
.foot-nav a { text-decoration: none; }
.foot-nav a:hover { text-decoration: underline; text-underline-offset: .2em; }
.foot-base { border-top: 1px solid var(--line-dark); padding-block: 1.2rem; font-size: .85rem;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; }
.foot-motto { font-family: var(--font-disp); font-style: italic; color: #8FA5B8; }

/* ---------- Accessibility dock (the toolbar) ---------- */
.a11y-dock {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 150;
  background: var(--navy-deep); color: #fff; border-radius: 1rem;
  box-shadow: var(--shadow-lg); padding: .55rem; display: flex; flex-direction: column; gap: .4rem;
  border: 1px solid var(--line-dark);
}
.a11y-dock[data-open="false"] .a11y-body { display: none; }
.a11y-head { display: flex; align-items: center; gap: .5rem; padding: .25rem .4rem; }
.a11y-head svg { width: 1.15rem; height: 1.15rem; color: var(--amber); flex: 0 0 auto; }
.a11y-title { font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; flex: 1; }
.a11y-min { color: #B8C9DA; font-size: 1.05rem; line-height: 1; padding: .1rem .45rem; border-radius: .4rem; }
.a11y-min:hover { background: rgba(255,255,255,.12); color: #fff; }
.a11y-body { display: flex; flex-direction: column; gap: .4rem; }
.a11y-row { display: flex; gap: .4rem; }
.a11y-btn {
  background: rgba(255,255,255,.08); color: #fff; border: 1px solid var(--line-dark);
  border-radius: .6rem; padding: .45rem .7rem; font-size: .88rem; font-weight: 700;
  display: inline-flex; align-items: center; gap: .4rem; flex: 1; justify-content: center;
  min-height: 2.4rem;
}
.a11y-btn:hover { background: rgba(255,255,255,.18); }
.a11y-btn[aria-pressed="true"] { background: var(--amber); color: var(--navy-deep); border-color: var(--amber); }
.a11y-note { font-size: .72rem; color: #8FA5B8; padding: 0 .3rem .2rem; max-width: 15rem; }

/* High-contrast theme */
[data-contrast="high"] {
  --paper: #FFFFFF; --paper-2: #FFFFFF; --card: #FFFFFF;
  --ink: #000000; --ink-soft: #1A1A1A; --navy: #000000; --navy-deep: #000000;
  --amber: #FFD600; --amber-ink: #5A4300; --line: #000000; --line-dark: #444444;
  --focus: #C00000; --shadow: none; --shadow-lg: none;
}
[data-contrast="high"] .site-head { background: #fff; }
[data-contrast="high"] a { text-decoration-thickness: .14em; }
[data-contrast="high"] .hero { background: #fff; }
[data-contrast="high"] .cta-band::before,
[data-contrast="high"] .beacon .ring { display: none; }

/* Legible-font theme (Atkinson Hyperlegible — designed for low vision) */
[data-font="legible"] body, [data-font="legible"] h1, [data-font="legible"] h2,
[data-font="legible"] h3, [data-font="legible"] .brand-t, [data-font="legible"] .trust-num,
[data-font="legible"] .quote p { font-family: var(--font-legible); letter-spacing: .01em; }
[data-font="legible"] body { line-height: 1.75; }
[data-font="legible"] h1, [data-font="legible"] h2 { letter-spacing: 0; }

/* Reduced motion */
[data-motion="reduce"] *, [data-motion="reduce"] *::before, [data-motion="reduce"] *::after {
  animation-duration: .01ms !important; animation-iteration-count: 1 !important;
  transition-duration: .01ms !important; scroll-behavior: auto !important;
}
[data-motion="reduce"] html, html[data-motion="reduce"] { scroll-behavior: auto; }

/* Reveal-on-scroll (inert without JS / with reduced motion) */
.js [data-reveal] { opacity: 0; transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease; transition-delay: var(--d, 0s); }
.js [data-reveal].in { opacity: 1; transform: none; }
[data-motion="reduce"] [data-reveal] { opacity: 1 !important; transform: none !important; }

/* ---------- Subpage hero ---------- */
.page-hero { background: linear-gradient(160deg, var(--navy-deep), var(--navy) 70%);
  color: #EAF1F8; padding: clamp(3rem,6vw,4.8rem) 0; position: relative; overflow: clip; }
.page-hero::after { content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(232,163,61,.12) 1.5px, transparent 1.6px);
  background-size: 26px 26px; mask-image: radial-gradient(36rem 18rem at 90% 0%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(36rem 18rem at 90% 0%, #000, transparent 70%); }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem,4.4vw,3.4rem); margin-bottom: 1rem; position: relative; }
.page-hero .lead { color: #B8C9DA; position: relative; }
.page-hero .eyebrow { color: var(--amber); position: relative; }
.crumbs { font-size: .85rem; margin-bottom: 1.2rem; position: relative; }
.crumbs a { color: #B8C9DA; }
.crumbs span[aria-current] { color: #fff; font-weight: 700; }

/* Chip nav (services anchors) */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.5rem; }
.chips a { text-decoration: none; font-weight: 700; font-size: .9rem; color: var(--navy);
  background: var(--card); border: 1px solid var(--line); padding: .5rem 1rem; border-radius: 999px; }
.chips a:hover { border-color: var(--amber); color: var(--amber-ink); }

/* Service detail blocks */
.svc-detail { display: grid; grid-template-columns: auto 1fr; gap: 1.4rem 1.8rem;
  padding: 2.2rem 0; border-top: 1px solid var(--line); scroll-margin-top: 6rem; }
.svc-detail:first-of-type { border-top: 0; }
.svc-detail .svc-icon { width: 3.6rem; height: 3.6rem; }
.svc-detail h2 { font-size: clamp(1.5rem,2.6vw,2rem); margin-bottom: .7rem; }
.svc-detail .delivers { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.2rem 1.4rem; margin-top: 1.1rem; }
.svc-detail .delivers h3 { font-size: .82rem; font-family: var(--font-ui); letter-spacing: .14em;
  text-transform: uppercase; color: var(--amber-ink); margin-bottom: .6rem; }
.svc-detail .delivers ul { list-style: none; display: grid; gap: .45rem; }
.svc-detail .delivers li { display: flex; gap: .6rem; font-size: .95rem; }
.svc-detail .delivers li::before { content: "→"; color: var(--amber-ink); font-weight: 700; }

/* Timeline (about) */
.timeline { list-style: none; position: relative; padding-left: 1.8rem; display: grid; gap: 1.4rem; margin-top: 1.6rem; }
.timeline::before { content: ""; position: absolute; left: .42rem; top: .4rem; bottom: .4rem;
  width: 2px; background: var(--line); }
.timeline li { position: relative; }
.timeline li::before { content: ""; position: absolute; left: -1.8rem; top: .42rem; width: .85rem; height: .85rem;
  border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 4px var(--paper); }
.timeline strong { display: block; font-size: 1.02rem; }
.timeline span { color: var(--ink-soft); font-size: .95rem; }

/* FAQ (native details — keyboard & screen-reader friendly by default) */
.faq { display: grid; gap: .9rem; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0; box-shadow: var(--shadow); overflow: clip; }
.faq summary { cursor: pointer; list-style: none; padding: 1.2rem 1.4rem; font-weight: 700; font-size: 1.05rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-disp); font-size: 1.6rem; color: var(--amber-ink);
  flex: 0 0 auto; transition: transform .2s ease; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--amber-ink); }
.faq .faq-a { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); }

/* Notice boxes */
.notice { border-radius: var(--radius); padding: 1.3rem 1.5rem; display: flex; gap: 1rem; align-items: flex-start; }
.notice svg { flex: 0 0 auto; width: 1.5rem; height: 1.5rem; margin-top: .15rem; }
.notice-ferpa { background: #FDF3E3; border: 1px solid #EAD09E; }
.notice-ferpa svg { color: var(--amber-ink); }
.notice-ferpa strong { color: var(--amber-ink); }

/* Forms */
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem,3.5vw,2.6rem); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.field { display: grid; gap: .45rem; }
.field-full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: .95rem; }
.field .req { color: var(--bad); font-weight: 800; }
.field .hint { font-size: .82rem; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  border: 2px solid var(--line); border-radius: .7rem; padding: .75rem .95rem;
  background: #FDFBF7; width: 100%; transition: border-color .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy); outline: 3px solid rgba(180,83,9,.35); outline-offset: 1px; }
.field textarea { min-height: 9rem; resize: vertical; }
.field [aria-invalid="true"] { border-color: var(--bad); }
.field .err { display: none; color: var(--bad); font-size: .85rem; font-weight: 600; }
.field.invalid .err { display: block; }
.hp { position: absolute !important; left: -100vw !important; width: 1px; height: 1px; overflow: hidden; }
.form-status { border-radius: var(--radius); padding: 1rem 1.3rem; font-weight: 600; margin-bottom: 1.3rem; }
.form-status.ok { background: #E7F4EC; border: 1px solid #BFE0CC; color: var(--good); }
.form-status.bad { background: #FBEAE8; border: 1px solid #EFC3BE; color: var(--bad); }

/* Status / thank-you page */
.panel-center { max-width: 44rem; margin-inline: auto; text-align: center;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(2rem,5vw,3.5rem); box-shadow: var(--shadow); }
.panel-center h1 { font-size: clamp(2rem,4vw,2.8rem); margin-bottom: 1rem; }
.panel-center .btn { margin-top: 1.6rem; }

/* Utility */
.mt-1 { margin-top: .6rem; } .mt-2 { margin-top: 1.2rem; } .mt-3 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1.2rem; }
.center { text-align: center; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Responsive ---------- */
@media (max-width: 62rem) {
  .hero-in, .two-col { grid-template-columns: 1fr; }
  .beacon { max-width: 22rem; order: -1; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .gate::after { display: none; }
  .trust-in { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(3) { border-left: 0; }
  .trust-item { border-top: 1px solid var(--line); }
  .trust-item:nth-child(-n+2) { border-top: 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 46rem) {
  html { font-size: 106.25%; }
  .nav-toggle { display: inline-block; }
  .site-nav { position: absolute; inset: 100% 0 auto 0; background: var(--paper);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
    display: none; padding: .8rem 1.2rem 1.2rem; }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: .2rem; }
  .site-nav a { display: block; padding: .8rem 1rem; }
  .nav-cta { margin: .4rem 0 0; text-align: center; }
  .svc-grid, .process-grid, .quote-grid, .area-grid, .form-grid, .foot-grid { grid-template-columns: 1fr; }
  .trust-in { grid-template-columns: 1fr; }
  .trust-item { border-left: 0; border-top: 1px solid var(--line); padding: 1.2rem .4rem; }
  .trust-item:first-child { border-top: 0; }
  .svc-detail { grid-template-columns: 1fr; }
  .a11y-dock { right: .6rem; bottom: .6rem; left: .6rem; flex-direction: column; }
  .a11y-body { flex-direction: column; }
  .cta-in { flex-direction: column; align-items: flex-start; }
}

/* ---------- Print ---------- */
@media print {
  .site-head, .site-foot, .a11y-dock, .hero-cta, .cta-band, .skip { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .page-hero { background: none; color: #000; padding: 1rem 0; }
  .page-hero h1, .page-hero .lead { color: #000; }
  a { color: #000; }
}

/* ---------- Hero orbit chips (access formats) ---------- */
.orbit-chip {
  position: absolute; background: var(--card); border: 1px solid var(--line);
  border-radius: 999px; padding: .4rem 1rem; font-size: .82rem; font-weight: 800;
  color: var(--navy); box-shadow: var(--shadow); white-space: nowrap;
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
[data-contrast="high"] .orbit-chip { animation: none; }
