/* ============================================================================
   Action Conveyancing - mockup stylesheet
   Implements 03-design/design-system.md verbatim: tokens, type scale, colour,
   the registered-boundary-line motif, components, motion, a11y and print.
   Fonts: Spectral (display) + IBM Plex Sans (body). border-radius: 0 throughout.
   ========================================================================== */

/* ----------------------------------------------------------------------------
   10. Full token block
   -------------------------------------------------------------------------- */
:root {
  /* fonts */
  --font-display: "Spectral", Georgia, "Times New Roman", serif;
  --font-body: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* type scale */
  --type-display: clamp(2.5rem, 1.6rem + 4.2vw, 4rem);
  --type-h1: clamp(2.1rem, 1.5rem + 2.7vw, 3rem);
  --type-h2: 2.25rem;
  --type-h3: 1.6875rem;
  --type-h4: 1.3125rem;
  --type-h5: 1.125rem;
  --type-h6: 0.9375rem;
  --type-lead: 1.3125rem;
  --type-body: 1.0625rem;
  --type-small: 0.9375rem;
  --type-xs: 0.8125rem;
  --type-overline: 0.8125rem;

  --lh-tight: 1.08; --lh-snug: 1.2; --lh-normal: 1.5; --lh-relaxed: 1.65;
  --ls-display: -0.015em; --ls-heading: -0.01em; --ls-overline: 0.14em;

  /* raw colour - from the WA Certificate of Title artifact */
  --c-stock: #F4F0E6; --c-stock-raised: #FBF9F2; --c-stock-sunken: #ECE6D6;
  --c-navy: #1C2A3A; --c-navy-deep: #13202E; --c-navy-soft: #33455A;
  --c-muted: #5C6470; --c-line: #D8D0BE; --c-line-strong: #C2B79E;
  --c-rust: #9A3B23; --c-rust-deep: #7E2F1B; --c-rust-light: #C76B4F; --c-rust-wash: #F0E2DB;
  --c-green: #2F5D44; --c-green-wash: #E1EAE2; --c-ochre: #8A6A1F; --c-white: #FFFFFF;

  /* semantic colour */
  --bg: var(--c-stock); --bg-alt: var(--c-stock-sunken); --bg-dark: var(--c-navy-deep);
  --surface: var(--c-stock-raised); --surface-input: var(--c-white);
  --ink: var(--c-navy); --ink-strong: var(--c-navy-deep); --ink-soft: var(--c-navy-soft);
  --muted: var(--c-muted); --ink-inverse: var(--c-stock);
  --accent: var(--c-rust); --accent-hover: var(--c-rust-deep); --accent-on-dark: var(--c-rust-light);
  --accent-wash: var(--c-rust-wash);
  --line: var(--c-line); --line-strong: var(--c-line-strong);
  --success: var(--c-green); --success-bg: var(--c-green-wash); --warning: var(--c-ochre);
  --focus-ring: var(--c-rust); --selection-bg: var(--c-rust-wash);

  /* spacing */
  --space-3xs: .25rem; --space-2xs: .5rem; --space-xs: .75rem; --space-sm: 1rem;
  --space-md: 1.5rem; --space-lg: 2rem; --space-xl: 3rem; --space-2xl: 4.5rem; --space-3xl: 6.5rem;

  /* layout */
  --container: 1200px; --container-narrow: 760px;
  --gutter: clamp(1rem, .5rem + 2.5vw, 2rem);
  --section-y: clamp(3rem, 2rem + 5vw, 6.5rem);
  --border: 1px solid var(--c-line); --border-strong: 1px solid var(--c-line-strong);
  --rule-navy: 2px solid var(--c-navy);
  --shadow-flat: none; --shadow-raise: 0 1px 0 var(--c-line-strong), 0 12px 28px -18px rgba(19,32,46,0.35);
  --tap: 44px;

  /* motion */
  --t-fast: .12s; --t: .16s; --t-slow: .24s; --ease: cubic-bezier(.2,.6,.2,1);
}

*, *::before, *::after { box-sizing: border-box; border-radius: 0 !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font-body);
  font-size: var(--type-body); line-height: var(--lh-relaxed);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
a { color: var(--accent); text-underline-offset: .15em; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--selection-bg); color: var(--ink-strong); }

/* ----------------------------------------------------------------------------
   1. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3 { font-family: var(--font-display); color: var(--ink-strong); margin: 0; }
h4, h5, h6 { font-family: var(--font-body); color: var(--ink); margin: 0; }
p { margin: 0; }

h1 { font-size: var(--type-h1); font-weight: 700; line-height: var(--lh-tight);
     letter-spacing: var(--ls-heading); text-wrap: balance; }
h2 { font-size: var(--type-h2); font-weight: 600; line-height: 1.14;
     letter-spacing: var(--ls-heading); text-wrap: balance; }
h3 { font-size: var(--type-h3); font-weight: 600; line-height: var(--lh-snug); text-wrap: balance; }
h4 { font-size: var(--type-h4); font-weight: 600; line-height: 1.3; }
h5 { font-size: var(--type-h5); font-weight: 600; line-height: 1.35; letter-spacing: .005em; }
h6 { font-size: var(--type-h6); font-weight: 700; line-height: 1.4; letter-spacing: .02em; }

.lead { font-size: var(--type-lead); line-height: var(--lh-relaxed); color: var(--muted);
        max-width: 60ch; text-wrap: pretty; }
.small { font-size: var(--type-small); }
.xs { font-size: var(--type-xs); }
.prose { max-width: 68ch; }
.prose p { text-wrap: pretty; }
.prose p + p { margin-top: var(--space-md); }

.overline {
  display: inline-flex; align-items: center; gap: var(--space-2xs);
  font-family: var(--font-body);
  font-size: var(--type-overline); font-weight: 600; letter-spacing: var(--ls-overline);
  text-transform: uppercase; color: var(--accent); margin: 0;
}

@media (max-width: 480px) {
  :root {
    --type-h2: 1.75rem;
    --type-h3: 1.4rem;
    --type-h4: 1.2rem;
    --type-lead: 1.1875rem;
    --type-body: 1rem;
  }
}

/* ----------------------------------------------------------------------------
   4. Layout primitives
   -------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto;
             padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); }
.section--dark { background: var(--bg-dark); color: var(--ink-inverse); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--ink-inverse); }
.section--alt { background: var(--bg-alt); }

.stack > * + * { margin-top: var(--space-md); }
.section__head { max-width: 62ch; margin-bottom: var(--space-xl); }
.section__head .lead { margin-top: var(--space-sm); }
.center { text-align: center; }
.center .section__head, .center .lead { margin-inline: auto; }

/* ----------------------------------------------------------------------------
   3. Motif: the registered boundary line
   -------------------------------------------------------------------------- */
.tickrule { display: inline-flex; align-items: center; gap: 0; }
.tickrule::before { content: ""; display: inline-block; width: 40px; height: 2px;
  background: var(--ink); }
.tickrule::after { content: ""; display: inline-block; width: 8px; height: 6px;
  background: var(--accent); }
.section--dark .tickrule::before { background: var(--ink-inverse); }

/* overline carries its own tickrule opener */
.overline::before { content: ""; display: inline-block; width: 32px; height: 2px;
  background: currentColor; opacity: .9; }
.overline::after { content: ""; display: inline-block; width: 8px; height: 6px;
  background: var(--accent); margin-left: -4px; }
.section--dark .overline { color: var(--accent-on-dark); }

/* 5.7 section divider */
.divider { border: 0; height: 1px; background: var(--line); position: relative;
  margin-block: var(--space-2xl); }
.divider::before { content: ""; position: absolute; left: 0; top: -1px; width: 56px; height: 2px;
  background: var(--ink); }
.divider::after { content: ""; position: absolute; left: 56px; top: -2px; width: 8px; height: 4px;
  background: var(--accent); }
.section--dark .divider { background: rgba(244,240,230,0.18); }
.section--dark .divider::before { background: var(--ink-inverse); }

/* ----------------------------------------------------------------------------
   8. Skip link + focus
   -------------------------------------------------------------------------- */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink-strong);
  color: var(--ink-inverse); padding: .75rem 1rem; z-index: 100; text-decoration: none;
  font-weight: 600; }
.skip-link:focus { left: 0; }

a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--focus-ring); outline-offset: 3px;
}

/* ----------------------------------------------------------------------------
   5.1 Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2xs);
  min-height: var(--tap); padding: 0.75rem 1.4rem;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600; line-height: 1;
  letter-spacing: 0.01em; text-decoration: none; cursor: pointer;
  border: 2px solid transparent;
  transition: background-color var(--t) var(--ease), color var(--t) var(--ease),
    border-color var(--t) var(--ease), transform var(--t) var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: var(--c-white); border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--c-white); }
.btn--primary:active { background: var(--c-rust-deep); }
.btn--secondary { background: transparent; color: var(--ink-strong); border-color: var(--ink-strong); }
.btn--secondary:hover { background: var(--ink-strong); color: var(--ink-inverse); }

.section--dark .btn--primary { background: var(--accent-on-dark); border-color: var(--accent-on-dark);
  color: var(--c-navy-deep); }
.section--dark .btn--primary:hover { background: #d98062; border-color: #d98062; color: var(--c-navy-deep); }
.section--dark .btn--secondary { color: var(--ink-inverse); border-color: var(--ink-inverse); }
.section--dark .btn--secondary:hover { background: var(--ink-inverse); color: var(--ink-strong); }

.btn--text { background: transparent; border: 0; color: var(--accent); padding-inline: 0;
  min-height: var(--tap); font-weight: 600; display: inline-flex; align-items: center; }
.btn--text::after { content: ""; width: 0; height: 2px; margin-left: .5rem; background: var(--accent);
  transition: width var(--t) var(--ease); }
.btn--text:hover { color: var(--accent-hover); }
.btn--text:hover::after { width: 1.4rem; }
.section--dark .btn--text { color: var(--accent-on-dark); }
.section--dark .btn--text::after { background: var(--accent-on-dark); }

.btn:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 3px; }

.btn-group { display: flex; flex-wrap: wrap; gap: var(--space-sm); }

/* ----------------------------------------------------------------------------
   5.2 Header / navigation
   -------------------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--surface);
  border-bottom: var(--border); transition: box-shadow var(--t) var(--ease); }
.site-header[data-scrolled="true"] { box-shadow: var(--shadow-raise); }
.nav { display: flex; align-items: center; gap: var(--space-md); min-height: 72px; }
.nav__logo { display: inline-flex; align-items: center; gap: var(--space-2xs);
  min-height: var(--tap); text-decoration: none; color: var(--ink-strong); }
.nav__logo:hover { color: var(--ink-strong); }
.nav__mark { width: 36px; height: 36px; flex: none; display: block; }
.nav__wordmark { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
  line-height: 1; color: var(--ink-strong); letter-spacing: -0.01em; }
.nav__wordmark span { display: block; font-family: var(--font-body); font-weight: 600;
  font-size: 0.625rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
  margin-top: 2px; }

.nav__links { display: none; gap: var(--space-md); margin-left: auto; align-items: center; }
.nav__link { font-weight: 500; color: var(--ink); text-decoration: none; padding: .5rem 0;
  min-height: var(--tap); display: inline-flex; align-items: center; position: relative; }
.nav__link:hover { color: var(--accent); }
.nav__link[aria-current="page"] { color: var(--ink-strong); }
.nav__link[aria-current="page"]::after { content: ""; position: absolute; left: 0; bottom: -2px;
  height: 2px; width: 100%;
  background: linear-gradient(to right, var(--ink) 0 calc(100% - 8px), var(--accent) calc(100% - 8px) 100%); }
.nav__actions { display: none; align-items: center; gap: var(--space-md); }
.nav__phone { font-weight: 600; color: var(--ink-strong); text-decoration: none;
  display: inline-flex; align-items: center; gap: .4rem; min-height: var(--tap); }
.nav__phone:hover { color: var(--accent); }
.nav__phone svg { width: 18px; height: 18px; flex: none; }

.nav__toggle { width: var(--tap); height: var(--tap); background: transparent;
  border: 2px solid var(--line-strong); display: inline-flex; align-items: center;
  justify-content: center; margin-left: auto; cursor: pointer; color: var(--ink-strong);
  transition: border-color var(--t) var(--ease); }
.nav__toggle:hover { border-color: var(--ink-strong); }
.nav__toggle-bars, .nav__toggle-bars::before, .nav__toggle-bars::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink-strong); position: relative; }
.nav__toggle-bars::before { position: absolute; top: -6px; left: 0; }
.nav__toggle-bars::after { position: absolute; top: 6px; left: 0; }

.mobile-nav { display: flex; flex-direction: column; gap: var(--space-2xs);
  padding: var(--space-md) var(--gutter); background: var(--surface); border-top: var(--border); }
.mobile-nav__link { padding: .9rem 0; min-height: var(--tap); display: flex; align-items: center;
  border-bottom: var(--border); font-weight: 500; color: var(--ink); text-decoration: none; }
.mobile-nav__link:hover { color: var(--accent); }
.mobile-nav__link[aria-current="page"] { color: var(--accent); }
.mobile-nav__cta { margin-top: var(--space-2xs); width: 100%; }

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__actions { display: flex; }
  .nav__toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* ----------------------------------------------------------------------------
   5.3 Mobile sticky call / quote bar
   -------------------------------------------------------------------------- */
.actionbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: grid;
  grid-template-columns: 1fr 1fr; gap: 0; border-top: var(--border-strong); background: var(--surface); }
.actionbar a { min-height: var(--tap); display: flex; align-items: center; justify-content: center;
  font-weight: 600; text-decoration: none; padding: .85rem; gap: .4rem; }
.actionbar a svg { width: 18px; height: 18px; }
.actionbar a:first-child { color: var(--ink-strong); }
.actionbar a:last-child { background: var(--accent); color: var(--c-white); }
@media (min-width: 768px) { .actionbar { display: none; } }
body { padding-bottom: calc(var(--tap) + 12px); }
@media (min-width: 768px) { body { padding-bottom: 0; } }

/* ----------------------------------------------------------------------------
   Breadcrumbs
   -------------------------------------------------------------------------- */
.breadcrumbs { font-size: var(--type-xs); color: var(--muted); padding-block: var(--space-md) 0; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.breadcrumbs li::after { content: "/"; margin-left: .4rem; color: var(--line-strong); }
.breadcrumbs li:last-child::after { content: ""; }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs [aria-current="page"] { color: var(--ink); }

/* ----------------------------------------------------------------------------
   5.4 Hero (home)
   -------------------------------------------------------------------------- */
.hero { background: var(--bg-dark); color: var(--ink-inverse); }
.hero__inner { display: grid; gap: var(--space-xl); align-items: center;
  padding-block: var(--section-y); }
.hero__eyebrow { color: var(--accent-on-dark); }
.hero__title { font-family: var(--font-display); font-size: var(--type-display);
  font-weight: 700; line-height: var(--lh-tight); letter-spacing: var(--ls-display);
  color: var(--ink-inverse); margin-top: var(--space-md); }
.hero__subhead { font-size: var(--type-lead); color: #C9CCD3; max-width: 46ch; margin-top: var(--space-md); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-lg); }
.hero__trust { font-size: var(--type-small); color: #AEB4BE; margin-top: var(--space-lg);
  border-top: 1px solid rgba(244,240,230,0.18); padding-top: var(--space-md); max-width: 52ch; }
.hero__card { border: 1px solid rgba(244,240,230,0.18); background: var(--c-navy);
  box-shadow: var(--shadow-raise); }
.hero__card img { display: block; width: 100%; height: auto; }
.hero__card figcaption { font-size: var(--type-xs); color: #AEB4BE; padding: var(--space-sm) var(--space-md);
  border-top: 1px solid rgba(244,240,230,0.18); }
@media (min-width: 1080px) { .hero__inner { grid-template-columns: 1.05fr .95fr; } }

/* Interior page header band (non-home) */
.pagehead { background: var(--bg-dark); color: var(--ink-inverse); padding-block: var(--space-2xl); }
.pagehead .overline { color: var(--accent-on-dark); }
.pagehead h1 { color: var(--ink-inverse); margin-top: var(--space-md); }
.pagehead .lead { color: #C9CCD3; margin-top: var(--space-md); max-width: 54ch; }
.pagehead .btn-group { margin-top: var(--space-lg); }

/* ----------------------------------------------------------------------------
   5.5 Service cards
   -------------------------------------------------------------------------- */
.cards { display: grid; gap: var(--space-md); grid-template-columns: 1fr; }
.card { background: var(--surface); border: var(--border); border-top: 3px solid var(--ink);
  padding: var(--space-lg); display: flex; flex-direction: column; gap: var(--space-xs);
  position: relative; transition: border-color var(--t) var(--ease), transform var(--t) var(--ease); }
.card__icon { width: 32px; height: 32px; color: var(--ink); }
.card__icon svg { width: 100%; height: 100%; }
.card__title { font-family: var(--font-display); font-size: var(--type-h4); color: var(--ink-strong);
  font-weight: 600; }
.card__body { color: var(--muted); font-size: var(--type-small); }
.card__more { margin-top: auto; padding-top: var(--space-xs); }
.card::after { content: ""; position: absolute; top: -3px; left: var(--space-lg); width: 0; height: 3px;
  background: var(--accent); transition: width var(--t) var(--ease); }
.card:hover, .card:focus-within { border-color: var(--line-strong); }
.card:hover::after, .card:focus-within::after { width: 36px; }
@media (min-width: 768px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .cards { grid-template-columns: repeat(3, 1fr); } }

/* ----------------------------------------------------------------------------
   5.6 Category cards
   -------------------------------------------------------------------------- */
.catcards { display: grid; gap: var(--space-md); grid-template-columns: 1fr; }
@media (min-width: 768px) { .catcards { grid-template-columns: repeat(2, 1fr); } }
.catcard { display: grid; grid-template-columns: auto 1fr; gap: var(--space-md);
  background: var(--surface); border: var(--border); border-left: 4px solid var(--ink);
  padding: var(--space-lg); text-decoration: none; color: inherit;
  transition: border-left-color var(--t) var(--ease), background-color var(--t) var(--ease); }
.catcard:hover, .catcard:focus-within { border-left-color: var(--accent); background: var(--c-white); }
.catcard__num { font-family: var(--font-display); font-weight: 700; color: var(--line-strong);
  font-size: 1.6rem; line-height: 1; }
.catcard__title { font-family: var(--font-display); font-size: var(--type-h4); color: var(--ink-strong);
  font-weight: 600; }
.catcard__desc { color: var(--muted); font-size: var(--type-small); margin-top: var(--space-3xs); }
.catcard:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 3px; }

/* ----------------------------------------------------------------------------
   5.8 Settlement timeline
   -------------------------------------------------------------------------- */
.timeline { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-lg); }
.timeline__step { display: grid; grid-template-columns: auto 1fr; gap: var(--space-md);
  position: relative; }
.timeline__marker { display: flex; align-items: flex-start; }
.timeline__node { width: 14px; height: 14px; background: var(--accent); margin-top: .35rem; }
.timeline__step:last-child .timeline__node { background: var(--success); }
.timeline__step:not(:last-child)::before { content: ""; position: absolute; left: 6px; top: 1.2rem;
  bottom: -1.6rem; width: 2px; background: var(--ink); }
.timeline__num { font-family: var(--font-display); font-weight: 700; color: var(--accent);
  font-size: var(--type-h5); }
.timeline__title { font-weight: 600; color: var(--ink-strong); font-size: var(--type-h5);
  font-family: var(--font-body); }
.timeline__body { color: var(--muted); font-size: var(--type-small); margin-top: var(--space-3xs); }
.timeline__tag { display: inline-flex; align-items: center; gap: .4rem; margin-top: var(--space-2xs);
  font-size: var(--type-xs); font-weight: 600; color: var(--success); }
.timeline__tag::before { content: ""; width: 8px; height: 8px; background: var(--success); }

@media (min-width: 1080px) {
  .timeline { grid-auto-flow: column; grid-template-columns: repeat(5, 1fr); }
  .timeline__step { grid-template-columns: 1fr; }
  .timeline__step:not(:last-child)::before { left: 1.2rem; right: -1.6rem; top: 6px; bottom: auto;
    width: auto; height: 2px; }
}

/* ----------------------------------------------------------------------------
   5.9 Testimonials
   -------------------------------------------------------------------------- */
.quotes { display: grid; gap: var(--space-md); grid-template-columns: 1fr; }
@media (min-width: 768px) { .quotes { grid-template-columns: repeat(2, 1fr); } }
.quote { background: var(--surface); border: var(--border); border-left: 2px solid var(--ink);
  padding: var(--space-lg) var(--space-lg) var(--space-md); position: relative; margin: 0; }
.quote::before { content: ""; position: absolute; left: -2px; top: 0; width: 8px; height: 8px;
  background: var(--accent); }
.quote__text { font-family: var(--font-display); font-size: var(--type-h4); font-weight: 500;
  color: var(--ink-strong); line-height: 1.4; }
.quote__cite { display: block; margin-top: var(--space-md); font-family: var(--font-body);
  font-size: var(--type-small); font-weight: 600; color: var(--accent); font-style: normal; }
.quote__meta { color: var(--muted); font-size: var(--type-xs); }
.quote--spotlight { border-left-width: 3px; }
.quote--spotlight .quote__text { font-size: var(--type-h3); }
.section--dark .quote { background: rgba(244,240,230,0.05); border-color: rgba(244,240,230,0.18);
  border-left-color: var(--ink-inverse); }
.section--dark .quote__text { color: var(--ink-inverse); }
.section--dark .quote__cite { color: var(--accent-on-dark); }
.section--dark .quote__meta { color: #AEB4BE; }

/* ----------------------------------------------------------------------------
   5.10 Trust logo row
   -------------------------------------------------------------------------- */
.trustrow { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md);
  align-items: center; padding-block: var(--space-lg); border-block: var(--border); }
.trustrow img { max-height: 48px; width: auto; filter: grayscale(1); opacity: .8;
  transition: filter var(--t) var(--ease), opacity var(--t) var(--ease); justify-self: center; }
.trustrow img:hover { filter: none; opacity: 1; }
.trustrow__caption { grid-column: 1 / -1; font-size: var(--type-xs); color: var(--muted);
  text-align: center; }
@media (min-width: 768px) { .trustrow { grid-template-columns: repeat(5, 1fr); } }

/* ----------------------------------------------------------------------------
   5.11 Forms
   -------------------------------------------------------------------------- */
.form { background: var(--surface); border: var(--border); border-top: 3px solid var(--ink);
  padding: var(--space-xl); }
.form__row { display: grid; gap: var(--space-md); }
@media (min-width: 600px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: var(--space-2xs); margin-bottom: var(--space-md); }
.field label { font-weight: 600; font-size: var(--type-small); color: var(--ink-strong); }
.field .hint { font-size: var(--type-xs); color: var(--muted); }
.input, .textarea, .select {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--surface-input); border: 1px solid var(--line-strong);
  padding: .75rem .85rem; min-height: var(--tap); width: 100%; }
.input:hover, .textarea:hover, .select:hover { border-color: var(--c-muted); }
.textarea { min-height: 7.5rem; resize: vertical; }
.input:focus-visible, .textarea:focus-visible, .select:focus-visible {
  outline: 3px solid var(--focus-ring); outline-offset: 2px; border-color: var(--ink-strong); }
.input:invalid:not(:placeholder-shown) { border-color: var(--accent); }
.field--error .input { border-color: var(--accent); }
.field--error .hint { color: var(--accent); }
.form__note { font-size: var(--type-xs); color: var(--muted); margin-top: var(--space-2xs); }
.form__required { color: var(--accent); }

/* ----------------------------------------------------------------------------
   5.12 FAQ accordion
   -------------------------------------------------------------------------- */
.faq { border-top: var(--border); }
.faq__item { border-bottom: var(--border); }
.faq__q { list-style: none; cursor: pointer; padding: var(--space-md) 0; min-height: var(--tap);
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-md);
  font-family: var(--font-display); font-size: var(--type-h4); font-weight: 600; color: var(--ink-strong); }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: "+"; font-family: var(--font-body); font-weight: 600; color: var(--accent);
  font-size: 1.5rem; line-height: 1; flex: none; }
.faq__item[open] .faq__q::after { content: "\2013"; }
.faq__a { padding-bottom: var(--space-md); color: var(--ink-soft); max-width: 68ch; }
.faq__q:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 2px; }

/* ----------------------------------------------------------------------------
   Info / detail blocks
   -------------------------------------------------------------------------- */
.panel { background: var(--surface); border: var(--border); padding: var(--space-xl); }
.panel--accent { border-top: 3px solid var(--accent); }

.deflist { display: grid; gap: 0; }
.deflist__row { display: grid; grid-template-columns: auto 1fr; gap: var(--space-md);
  padding: var(--space-sm) 0; border-bottom: var(--border); align-items: start; }
.deflist__row:last-child { border-bottom: 0; }
.deflist__icon { width: 22px; height: 22px; color: var(--accent); margin-top: 2px; }
.deflist__icon svg { width: 100%; height: 100%; }
.deflist dt { font-size: var(--type-xs); text-transform: uppercase; letter-spacing: .08em;
  font-weight: 600; color: var(--muted); }
.deflist dd { margin: 0; font-weight: 600; color: var(--ink-strong); }
.deflist dd a { color: var(--ink-strong); text-decoration: none; }
.deflist dd a:hover { color: var(--accent); }

.confirm-note { display: inline-flex; align-items: center; gap: .5rem; font-size: var(--type-xs);
  color: var(--warning); font-weight: 600; }
.confirm-note::before { content: ""; width: 10px; height: 10px; background: var(--warning); flex: none; }

/* Team grid */
.team { display: grid; gap: var(--space-lg); grid-template-columns: 1fr; }
@media (min-width: 768px) { .team { grid-template-columns: repeat(3, 1fr); } }
.member { background: var(--surface); border: var(--border); border-top: 3px solid var(--ink);
  padding: var(--space-lg); }
.member__photo { width: 88px; height: 88px; object-fit: cover; border: 1px solid var(--line-strong);
  filter: grayscale(.15); margin-bottom: var(--space-md); background: var(--bg-alt); }
.member__name { font-family: var(--font-display); font-size: var(--type-h4); font-weight: 600;
  color: var(--ink-strong); }
.member__role { font-size: var(--type-xs); text-transform: uppercase; letter-spacing: .1em;
  font-weight: 600; color: var(--accent); margin-top: var(--space-3xs); }
.member__bio { color: var(--ink-soft); font-size: var(--type-small); margin-top: var(--space-sm); }

/* Reason / feature list (why choose us) */
.reasons { display: grid; gap: var(--space-lg); grid-template-columns: 1fr; counter-reset: r; }
@media (min-width: 768px) { .reasons { grid-template-columns: repeat(3, 1fr); } }
.reason { border-top: var(--rule-navy); padding-top: var(--space-md); position: relative; }
.reason::before { content: ""; position: absolute; top: -2px; right: 0; width: 8px; height: 4px;
  background: var(--accent); }
.reason__num { font-family: var(--font-display); font-weight: 700; color: var(--line-strong);
  font-size: 1.4rem; }
.reason__title { font-family: var(--font-display); font-size: var(--type-h4); font-weight: 600;
  color: var(--ink-strong); margin-top: var(--space-2xs); }
.reason__body { color: var(--ink-soft); font-size: var(--type-small); margin-top: var(--space-2xs); }
.section--dark .reason__title { color: var(--ink-inverse); }
.section--dark .reason__body { color: #C9CCD3; }
.section--dark .reason__num { color: var(--accent-on-dark); }

/* Two-column intro split */
.split { display: grid; gap: var(--space-xl); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 1080px) { .split { grid-template-columns: 1fr 1fr; } }
.split--lean { align-items: center; }

/* Credential list */
.creds { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-sm); }
.creds li { display: grid; grid-template-columns: auto 1fr; gap: var(--space-sm);
  align-items: start; padding-bottom: var(--space-sm); border-bottom: var(--border); }
.creds li::before { content: ""; width: 10px; height: 6px; background: var(--accent); margin-top: .55rem; }
.creds strong { color: var(--ink-strong); }

/* Quote / CTA band */
.ctaband { background: var(--bg-alt); border-top: 3px solid var(--accent); }
.ctaband__inner { display: grid; gap: var(--space-lg); align-items: center; }
@media (min-width: 900px) { .ctaband__inner { grid-template-columns: 1.4fr auto; } }
.ctaband .btn-group { margin-top: 0; }

/* Stat / fact strip */
.facts { display: grid; gap: var(--space-md); grid-template-columns: repeat(2, 1fr);
  border-block: var(--border); padding-block: var(--space-lg); }
@media (min-width: 768px) { .facts { grid-template-columns: repeat(4, 1fr); } }
.fact__num { font-family: var(--font-display); font-weight: 700; font-size: var(--type-h2);
  color: var(--ink-strong); line-height: 1; }
.fact__label { font-size: var(--type-small); color: var(--muted); margin-top: var(--space-2xs); }
.section--dark .fact__num { color: var(--ink-inverse); }
.section--dark .fact__label { color: #AEB4BE; }

/* Map embed frame */
.mapframe { border: var(--border); background: var(--bg-alt); }
.mapframe iframe { display: block; width: 100%; height: 360px; border: 0; }

/* Service definition list (full list page) */
.servicelist { display: grid; gap: 0; border-top: var(--border); }
.servicelist__item { display: grid; grid-template-columns: auto 1fr; gap: var(--space-md);
  padding: var(--space-md) 0; border-bottom: var(--border); }
.servicelist__mark { width: 12px; height: 12px; background: var(--ink); margin-top: .45rem; }
.servicelist__item:hover .servicelist__mark { background: var(--accent); }
.servicelist__name { font-family: var(--font-display); font-weight: 600; font-size: var(--type-h5);
  color: var(--ink-strong); }
.servicelist__desc { color: var(--muted); font-size: var(--type-small); margin-top: 2px; }

/* Guides */
.guides { display: grid; gap: var(--space-md); grid-template-columns: 1fr; }
@media (min-width: 600px) { .guides { grid-template-columns: 1fr 1fr; } }
.guide { display: grid; grid-template-columns: auto 1fr; gap: var(--space-md);
  background: var(--surface); border: var(--border); border-left: 4px solid var(--ink);
  padding: var(--space-lg); text-decoration: none; color: inherit;
  transition: border-left-color var(--t) var(--ease); }
.guide:hover { border-left-color: var(--accent); }
.guide__icon { width: 36px; height: 36px; color: var(--accent); }
.guide__icon svg { width: 100%; height: 100%; }
.guide__title { font-family: var(--font-display); font-weight: 600; font-size: var(--type-h5);
  color: var(--ink-strong); }
.guide__meta { font-size: var(--type-xs); color: var(--muted); margin-top: 2px; }

/* ----------------------------------------------------------------------------
   5.13 Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--bg-dark); color: var(--ink-inverse); border-top: 3px solid var(--accent); }
.site-footer .container { padding-block: var(--space-2xl) var(--space-lg); }
.footer__grid { display: grid; gap: var(--space-xl); grid-template-columns: 1fr; }
.footer__brand { display: flex; align-items: center; gap: var(--space-2xs); margin-bottom: var(--space-md); }
.footer__brand .nav__mark { width: 32px; height: 32px; }
.footer__brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  color: var(--ink-inverse); }
.footer__desc { color: #C9CCD3; font-size: var(--type-small); max-width: 34ch; margin-bottom: var(--space-md); }
.footer__col h4 { color: var(--ink-inverse); font-size: var(--type-h5); margin-bottom: var(--space-sm); }
.footer__link { display: block; color: #C9CCD3; text-decoration: none; padding: .35rem 0;
  min-height: 2rem; }
.footer__link:hover { color: var(--accent-on-dark); }
.footer__nap { color: #C9CCD3; font-size: var(--type-small); line-height: 1.8; margin: 0; }
.footer__nap a { color: var(--ink-inverse); text-decoration: none; }
.footer__nap a:hover { color: var(--accent-on-dark); }
.footer__trust { display: flex; flex-wrap: wrap; gap: var(--space-sm); align-items: center;
  margin-bottom: var(--space-md); }
.footer__trust img { max-height: 34px; width: auto; filter: brightness(0) invert(1); opacity: .85; }
.footer__social { display: flex; gap: var(--space-sm); margin-top: var(--space-sm); }
.footer__social a { display: inline-flex; align-items: center; justify-content: center;
  width: var(--tap); height: var(--tap); border: 1px solid rgba(244,240,230,0.3); color: #C9CCD3;
  transition: border-color var(--t) var(--ease), color var(--t) var(--ease); }
.footer__social a:hover { border-color: var(--accent-on-dark); color: var(--accent-on-dark); }
.footer__social svg { width: 20px; height: 20px; }
.footer__tick { width: 56px; height: 2px; background: var(--ink-inverse); position: relative;
  margin-bottom: var(--space-md); }
.footer__tick::after { content: ""; position: absolute; left: 56px; top: -1px; width: 8px; height: 4px;
  background: var(--accent); }
.subfooter { border-top: 1px solid rgba(244,240,230,0.18); padding-top: var(--space-md);
  margin-top: var(--space-xl); font-size: var(--type-xs); color: #AEB4BE;
  display: flex; flex-wrap: wrap; gap: var(--space-md); justify-content: space-between; }
.subfooter a { color: #AEB4BE; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1.2fr; } }

/* ----------------------------------------------------------------------------
   7. Motion - scroll reveal (user-load only, gated by reduced-motion)
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(8px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

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

/* ----------------------------------------------------------------------------
   9. Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .actionbar, .mobile-nav, .hero__card, .btn, .footer__social { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; padding-bottom: 0; }
  .section--dark, .hero, .site-footer, .pagehead, .ctaband { background: #fff !important; color: #000 !important; }
  .section--dark h1, .section--dark h2, .section--dark h3, .pagehead h1,
  .hero__title, .footer__col h4, .footer__brand-name { color: #000 !important; }
  .hero__subhead, .pagehead .lead, .footer__nap, .footer__desc, .footer__link, .subfooter { color: #000 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 10pt; color: #000; }
  .divider::before, .divider::after, .tickrule::before { background: #000; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
