/* ==========================================================================
   Highliner Group — highlinergp.com
   Hand-built stylesheet. No framework, no build step, no subscription.
   Edit colours and spacing in the :root block below; everything follows.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand — teal sampled from the logo dots, navy from the original site */
  --brand:        #175882;
  --brand-dark:   #0F3E5D;
  --brand-light:  #359DDB;
  --brand-pale:   #D4E9F7;
  --brand-wash:   #F2F8FC;

  --ink:          #0F1D2B;
  --navy:         #1E2C3B;
  --slate:        #384653;
  --muted:        #64748B;
  --line:         #E2E8F0;
  --surface:      #FFFFFF;
  --surface-alt:  #F6F9FC;

  /* Type */
  --font-head: 'Montserrat', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Barlow', 'Segoe UI', system-ui, sans-serif;

  /* Fluid type scale — grows with the viewport, no breakpoint jumps */
  --fs-hero:  clamp(2.5rem, 1.4rem + 4.6vw, 4.75rem);
  --fs-h2:    clamp(1.95rem, 1.35rem + 2.3vw, 3.05rem);
  --fs-h3:    clamp(1.2rem, 1.05rem + 0.6vw, 1.5rem);
  --fs-lead:  clamp(1.06rem, 0.98rem + 0.42vw, 1.3rem);
  --fs-body:  1.0625rem;
  --fs-small: 0.9rem;
  --fs-micro: 0.78rem;

  /* Rhythm */
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);
  --maxw: 1200px;
  --maxw-narrow: 760px;

  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(15, 29, 43, .06), 0 2px 8px rgba(15, 29, 43, .04);
  --shadow-md: 0 4px 12px rgba(15, 29, 43, .07), 0 14px 34px rgba(15, 29, 43, .07);
  --shadow-lg: 0 10px 24px rgba(15, 29, 43, .10), 0 30px 70px rgba(15, 29, 43, .12);

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

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* clears the sticky header on anchor jumps */
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.68;
  color: var(--slate);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.022em;
  margin: 0 0 .6em;
  font-weight: 800;
  text-wrap: balance;
}

h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 700; letter-spacing: -0.012em; }

p { margin: 0 0 1.15rem; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--brand); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--brand-light); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1.15rem; padding-left: 1.2rem; }
li { margin-bottom: .5rem; }
strong { color: var(--ink); font-weight: 600; }

:focus-visible {
  outline: 3px solid var(--brand-light);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: var(--section-y); }
.section--alt { background: var(--surface-alt); }
.section--wash { background: var(--brand-wash); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-head);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--brand-light); border-radius: 2px;
}
.section-head--center .eyebrow::before { display: none; }

.lead { font-size: var(--fs-lead); color: var(--muted); line-height: 1.62; }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-head);
  font-size: .945rem;
  font-weight: 700;
  letter-spacing: .005em;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease),
              background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary {
  background: var(--brand); color: #fff;
  box-shadow: 0 4px 14px rgba(23, 88, 130, .28);
}
.btn--primary:hover {
  background: var(--brand-dark); color: #fff;
  box-shadow: 0 8px 24px rgba(23, 88, 130, .34);
}

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-wash); }

.btn--on-dark { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.32); }
.btn--on-dark:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* Primary action on a dark background (hero, CTA band) */
.btn--light { background: #fff; color: var(--ink); box-shadow: 0 4px 16px rgba(0, 0, 0, .22); }
.btn--light:hover { background: var(--brand-pale); color: var(--ink); box-shadow: 0 8px 26px rgba(0, 0, 0, .28); }

.btn--sm { padding: .68rem 1.25rem; font-size: .88rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }
.btn-row--center { justify-content: center; }

/* Text link with a sliding arrow */
.arrow-link {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-head); font-weight: 700; font-size: .93rem;
  color: var(--brand);
}
.arrow-link span { transition: transform .25s var(--ease); }
.arrow-link:hover span { transform: translateX(5px); }

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 2px 18px rgba(15, 29, 43, .06);
  background: rgba(255, 255, 255, .96);
}

.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  min-height: 76px;
}

.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 34px; width: auto; }
@media (max-width: 420px) { .brand img { height: 28px; } }

.nav { display: flex; align-items: center; gap: 2rem; }

.nav__list { display: flex; align-items: center; gap: 1.85rem; list-style: none; margin: 0; padding: 0; }
.nav__list li { margin: 0; }

.nav__link {
  position: relative;
  font-family: var(--font-head); font-size: .925rem; font-weight: 600;
  color: var(--navy); padding-block: .4rem;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--brand-light); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--brand); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }

.nav__cta { flex: none; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px; padding: 0;
  background: transparent; border: 1px solid var(--line); border-radius: 11px;
  cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle__bars { position: relative; width: 19px; height: 13px; display: block; }
.nav-toggle__bars i {
  position: absolute; left: 0; height: 2px; width: 100%; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle__bars i:nth-child(1) { top: 0; }
.nav-toggle__bars i:nth-child(2) { top: 5.5px; }
.nav-toggle__bars i:nth-child(3) { top: 11px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: .5rem var(--gutter) 1.6rem;
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  }
  .nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav__link { display: block; padding: 1rem .25rem; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav__link::after { display: none; }
  .nav__cta { margin-top: 1.25rem; }
  .nav__cta .btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 620px at 82% -8%, rgba(53, 157, 219, .30), transparent 62%),
    radial-gradient(760px 520px at 8% 105%, rgba(23, 88, 130, .55), transparent 58%),
    linear-gradient(155deg, #16283A 0%, #0F1D2B 55%, #0B1723 100%);
  color: #fff;
  padding-block: clamp(4.5rem, 10vw, 8.5rem) clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  isolation: isolate;
}

/* Faint grid texture so the flat navy has some depth */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 50% 35%, #000 5%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 35%, #000 5%, transparent 72%);
}

.hero h1 { color: #fff; max-width: 15ch; margin-bottom: .45em; }
.hero h1 em { font-style: normal; color: var(--brand-light); }

.hero__inner { max-width: 780px; }
.hero .eyebrow { color: var(--brand-pale); }
.hero .eyebrow::before { background: var(--brand-light); }

.hero__lead {
  font-size: var(--fs-lead);
  color: rgba(226, 240, 250, .88);
  max-width: 60ch;
  margin-bottom: 2.4rem;
}

.hero .btn-row { margin-bottom: clamp(3rem, 6vw, 4.5rem); }

/* Trust strip along the bottom of the hero */
.hero__proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding-top: clamp(2rem, 4vw, 2.75rem);
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.hero__proof dt {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.3rem);
  color: #fff; line-height: 1; margin-bottom: .4rem;
  letter-spacing: -.02em;
}
.hero__proof dd {
  margin: 0; font-size: var(--fs-small); color: rgba(212, 233, 247, .78); line-height: 1.45;
}

/* Compact hero for interior pages */
.page-hero {
  background:
    radial-gradient(900px 480px at 88% -20%, rgba(53, 157, 219, .26), transparent 60%),
    linear-gradient(150deg, #16283A 0%, #0F1D2B 100%);
  color: #fff;
  padding-block: clamp(3.5rem, 7vw, 6rem);
}
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.5rem); max-width: 18ch; }
.page-hero .eyebrow { color: var(--brand-pale); }
.page-hero__lead { font-size: var(--fs-lead); color: rgba(226, 240, 250, .86); max-width: 62ch; }

.breadcrumb {
  display: flex; flex-wrap: wrap; gap: .45rem; align-items: center;
  list-style: none; margin: 0 0 1.5rem; padding: 0;
  font-size: var(--fs-small); color: rgba(212, 233, 247, .62);
}
.breadcrumb li { margin: 0; }
.breadcrumb li + li::before { content: "/"; margin-right: .45rem; opacity: .5; }
.breadcrumb a { color: rgba(212, 233, 247, .82); }
.breadcrumb a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   7. Cards & grids
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: clamp(1.25rem, 2.4vw, 1.9rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(275px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }

.card {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.3rem);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  overflow: hidden;
}
.card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform .38s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::after { transform: scaleX(1); }
.card h3 { margin-bottom: .55rem; }
.card p { color: var(--muted); font-size: .99rem; }
.card .arrow-link { margin-top: auto; padding-top: 1.35rem; }

.card__icon {
  width: 50px; height: 50px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--brand-wash); color: var(--brand);
  margin-bottom: 1.3rem;
}
.card__icon svg { width: 24px; height: 24px; }

/* Numbered process steps */
.steps { counter-reset: step; display: grid; gap: clamp(1.1rem, 2.2vw, 1.6rem); }

/* Used for four-step processes, so pin it to 2x2 rather than letting auto-fit
   spill three across and orphan the fourth on its own row. */
.steps--2col { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .steps--2col { grid-template-columns: repeat(2, 1fr); }
}

.step {
  counter-increment: step;
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.7rem 1.7rem 4.6rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.step:hover { border-color: var(--brand-pale); box-shadow: var(--shadow-sm); }
.step::before {
  content: "0" counter(step);
  position: absolute; left: 1.6rem; top: 1.55rem;
  font-family: var(--font-head); font-weight: 800; font-size: 1.0rem;
  color: var(--brand-light);
  letter-spacing: -.02em;
}
.step h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.step p { color: var(--muted); font-size: .97rem; margin: 0; }

/* Checklist */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: .95rem; }
.checklist li {
  position: relative; padding-left: 2.15rem; margin: 0;
  color: var(--slate); line-height: 1.55;
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .18em;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand-pale) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23175882' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.checklist--on-dark li { color: rgba(226, 240, 250, .9); }
.checklist--on-dark li::before { background-color: rgba(53, 157, 219, .22); }

/* Split layout: text beside media */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--reverse > *:first-child { order: 2; }
@media (max-width: 720px) { .split--reverse > *:first-child { order: 0; } }

/* Kept for whenever real photography exists — drop an <img> in a .media div
   inside a .split and it will sit exactly where the panels sit now. */
.media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--surface-alt);
}
.media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* --------------------------------------------------------------------------
   7b. Editorial panels
   These occupy the slot where a photograph would normally sit. Built entirely
   from type and structure, so the site looks finished without any photography
   and each one carries a proof point rather than decoration.
   Four formats: .tally, .runsheet, .swap, .spec.
   -------------------------------------------------------------------------- */
.panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3.2vw, 2.4rem);
  color: #fff;
  background:
    radial-gradient(680px 420px at 88% -12%, rgba(53, 157, 219, .30), transparent 62%),
    linear-gradient(155deg, #1B3550 0%, #0F1D2B 100%);
  box-shadow: var(--shadow-lg);
}
.panel::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 78% 10%, #000 6%, transparent 68%);
  -webkit-mask-image: radial-gradient(circle at 78% 10%, #000 6%, transparent 68%);
}

.panel__label {
  font-family: var(--font-head);
  font-size: var(--fs-micro); font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand-pale);
  margin: 0 0 1.35rem;
}
.panel h4 {
  font-family: var(--font-head); font-weight: 700;
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(212, 233, 247, .68);
  margin: 0 0 .95rem;
}
.panel__foot {
  margin: 1.4rem 0 0; padding-top: 1.05rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: var(--fs-small); color: rgba(212, 233, 247, .7);
}

/* Tally — numeric before/after */
.tally { display: grid; gap: 1.6rem; }
@media (min-width: 460px) { .tally { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
.tally__col { min-width: 0; }
.tally__col--brand h4 { color: var(--brand-light); }
.tally dl { margin: 0; display: grid; gap: .8rem; }
.tally dl > div { display: flex; align-items: baseline; gap: .65rem; }
.tally dt {
  flex: none;
  font-family: var(--font-head); font-weight: 800; font-size: 1.45rem; line-height: 1;
  letter-spacing: -.03em; color: rgba(255, 255, 255, .45);
}
.tally__col--brand dt { color: var(--brand-light); }
.tally dd { margin: 0; font-size: .92rem; line-height: 1.4; color: rgba(226, 240, 250, .82); }

/* Run sheet — a timetable */
.runsheet { list-style: none; margin: 0; padding: 0; }
.runsheet li {
  display: flex; gap: 1rem; align-items: baseline; margin: 0;
  padding: .6rem 0; border-bottom: 1px solid rgba(255, 255, 255, .09);
}
.runsheet li:last-child { border-bottom: 0; }
.runsheet__time {
  flex: none; width: 3.6em;
  font-family: var(--font-head); font-weight: 700; font-size: .88rem;
  color: var(--brand-light); font-variant-numeric: tabular-nums;
}
.runsheet__task { font-size: .93rem; line-height: 1.4; color: rgba(226, 240, 250, .86); }

/* Swap — what you're used to, against what you get */
.swap { display: grid; gap: 1.7rem; }
.swap__block--muted ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.swap__block--muted li {
  position: relative; margin: 0; padding-left: 2.15rem;
  /* De-emphasised, but this is real content — .62 keeps it above the 4.5:1
     contrast floor on the panel background. Do not fade it further. */
  font-size: .94rem; line-height: 1.45; color: rgba(226, 240, 250, .62);
}
.swap__block--muted li::before {
  content: ""; position: absolute; left: 0; top: .72em;
  width: 1.1rem; height: 1px; background: rgba(255, 255, 255, .38);
}

/* Spec — a labelled document */
.spec { margin: 0; }
.spec > div {
  display: grid; gap: .1rem .9rem;
  padding: .68rem 0; border-bottom: 1px solid rgba(255, 255, 255, .09);
}
@media (min-width: 420px) {
  .spec > div { grid-template-columns: 6.4rem 1fr; align-items: baseline; }
}
.spec > div:last-child { border-bottom: 0; }
.spec dt {
  font-family: var(--font-head); font-weight: 700; font-size: .78rem;
  letter-spacing: .07em; text-transform: uppercase; color: var(--brand-light);
}
.spec dd { margin: 0; font-size: .93rem; line-height: 1.45; color: rgba(226, 240, 250, .86); }

/* --------------------------------------------------------------------------
   8. Stats
   -------------------------------------------------------------------------- */
.stat { text-align: center; padding: clamp(1.4rem, 3vw, 2rem) 1rem; }
.stat__value {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.4rem, 1.7rem + 2.6vw, 3.6rem);
  line-height: 1; letter-spacing: -.035em;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: .55rem;
}
.stat__label {
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  color: var(--ink); margin-bottom: .4rem;
}
.stat__note { font-size: var(--fs-small); color: var(--muted); line-height: 1.5; margin: 0; }

/* --------------------------------------------------------------------------
   9. Quote
   -------------------------------------------------------------------------- */
.quote {
  position: relative;
  max-width: 830px; margin-inline: auto; text-align: center;
  padding-top: 3.2rem;
}
.quote::before {
  content: "\201C";
  position: absolute; top: -.28em; left: 50%; transform: translateX(-50%);
  font-family: var(--font-head); font-size: 8rem; font-weight: 800;
  color: var(--brand-pale); line-height: 1; pointer-events: none;
}
.quote blockquote {
  margin: 0 0 1.5rem;
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(1.2rem, 1rem + 1.05vw, 1.72rem);
  line-height: 1.42; color: var(--ink); letter-spacing: -.015em;
}
.quote figcaption { font-size: var(--fs-small); color: var(--muted); }
.quote figcaption strong { display: block; color: var(--ink); font-size: 1rem; margin-bottom: .1rem; }

/* --------------------------------------------------------------------------
   10. FAQ
   -------------------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; margin-bottom: .85rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq details[open] { border-color: var(--brand-pale); box-shadow: var(--shadow-sm); }
.faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.2rem;
  padding: 1.2rem 1.5rem; cursor: pointer; list-style: none;
  font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--ink);
  line-height: 1.42;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 20px; height: 20px; margin-top: .18em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23175882' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .28s var(--ease);
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq .faq__body { padding: 0 1.5rem 1.35rem; color: var(--muted); }
.faq .faq__body p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   11. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(760px 420px at 15% 0%, rgba(53, 157, 219, .28), transparent 62%),
    linear-gradient(140deg, var(--brand-dark) 0%, #0F1D2B 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: .5em; }
.cta-band p { color: rgba(226, 240, 250, .86); max-width: 58ch; margin-inline: auto; font-size: var(--fs-lead); }
.cta-band .btn-row { margin-top: 2.2rem; }

/* Contact cards */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 1.25rem; }
.contact-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: .35rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.contact-card__icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--brand-wash); color: var(--brand); margin-bottom: .85rem;
}
.contact-card__icon svg { width: 21px; height: 21px; }
.contact-card__label {
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.contact-card__value { font-family: var(--font-head); font-weight: 700; font-size: 1.06rem; color: var(--ink); line-height: 1.35; }
a.contact-card:hover .contact-card__value { color: var(--brand); }

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink); color: rgba(203, 218, 232, .74);
  padding-block: clamp(3.2rem, 6vw, 4.75rem) 2rem;
  font-size: .96rem;
}
.site-footer__top {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 2.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.site-footer__brand { max-width: 320px; }
.site-footer__brand img {
  height: 32px; width: auto; margin-bottom: 1.1rem;
  /* logo is dark-on-transparent — lift it to white for the dark footer */
  filter: brightness(0) invert(1);
  opacity: .95;
}
.site-footer__brand p { font-size: .93rem; line-height: 1.6; }

.site-footer h4 {
  font-size: .82rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: #fff; margin-bottom: 1.15rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .7rem; }
.site-footer a { color: rgba(203, 218, 232, .74); }
.site-footer a:hover { color: #fff; }

.site-footer__bottom {
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem;
  justify-content: space-between; align-items: center;
  padding-top: 1.8rem;
  font-size: .87rem; color: rgba(203, 218, 232, .55);
}
.site-footer__bottom a { color: rgba(203, 218, 232, .68); }

/* --------------------------------------------------------------------------
   13. Prose (legal page)
   -------------------------------------------------------------------------- */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.4rem, 1.2rem + 1vw, 1.85rem); margin-top: 2.8rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.13rem; margin-top: 1.9rem; }
.prose ul { padding-left: 1.35rem; }
.prose li { margin-bottom: .65rem; }
.prose__meta {
  font-size: var(--fs-small); color: var(--muted);
  padding: 1rem 1.25rem; background: var(--surface-alt);
  border-left: 3px solid var(--brand-light); border-radius: 0 8px 8px 0;
  margin-bottom: 2.5rem;
}

/* --------------------------------------------------------------------------
   14. Scroll reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* If JS is off or the observer never runs, nothing should stay hidden */
.no-js .reveal { opacity: 1; transform: none; }

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

/* --------------------------------------------------------------------------
   15. Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .nav-toggle, .cta-band, .btn-row, .site-footer__top { display: none !important; }
  body { color: #000; font-size: 11pt; }
  .hero, .page-hero { background: none !important; color: #000; }
  .hero h1, .page-hero h1 { color: #000; }
  .reveal { opacity: 1; transform: none; }
}
