/* ==========================================================================
   Barking Brand Studio — site stylesheet
   Brand system: Brand Guidelines v1.0 (Archivo + Public Sans, navy/orange)
   Colour ratio 70% white / 20% navy / 10% orange. One orange moment per view.
   Signal Orange #FC4D0E: large text, icons, decorative only.
   Accessible Orange #D6410C: buttons, eyebrows, any small orange text.
   ========================================================================== */

:root {
  --navy:        #001E55;
  --navy-deep:   #020829;
  --orange:      #FC4D0E;
  --orange-cta:  #D6410C;
  --white:       #FFFFFF;
  --blue-soft:   #ADD3F1;
  --ink:         #020829;
  --ink-muted:   rgba(0, 30, 85, 0.62);
  --hairline:    rgba(0, 30, 85, 0.12);
  --hairline-2:  rgba(0, 30, 85, 0.07);
  --tint:        rgba(173, 211, 241, 0.28);
  --tint-strong: rgba(173, 211, 241, 0.55);
  --shadow:      0 1px 2px rgba(0, 30, 85, 0.06), 0 8px 24px rgba(0, 30, 85, 0.05);

  --font-head: 'Archivo', sans-serif;
  --font-body: 'Public Sans', sans-serif;

  --container: 1120px;
  --gutter: clamp(20px, 5vw, 48px);
  --section: clamp(64px, 9vw, 112px);
  --header-h: 74px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.375rem, 4.6vw + 0.75rem, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.625rem, 2vw + 0.75rem, 1.875rem); font-weight: 700; }
h3 { font-size: clamp(1.0625rem, 0.6vw + 0.85rem, 1.25rem); font-weight: 600; line-height: 1.3; }

p { max-width: 65ch; }

a { color: var(--navy); }

img { max-width: 100%; height: auto; display: block; }

ul, ol { list-style: none; }

strong { font-weight: 600; color: var(--navy); }

::selection { background: var(--blue-soft); color: var(--navy-deep); }

:focus-visible {
  outline: 2px solid var(--orange-cta);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Layout primitives ─────────────────────────────────────────────────── */

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow { max-width: 820px; }

.section { padding-block: var(--section); }

.section--flush-top { padding-top: 0; }

.band { background: var(--tint); }

.band--navy {
  background: var(--navy);
  color: var(--white);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  background: var(--navy);
  color: var(--white);
  font: 600 13px/1 var(--font-head);
  padding: 12px 18px;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ── Signature signal-tick mark ────────────────────────────────────────── */

.signal {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  flex-shrink: 0;
}
.signal span {
  display: block;
  width: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.signal span:nth-child(1) { height: 7px;  opacity: 0.45; }
.signal span:nth-child(2) { height: 11px; opacity: 0.7; }
.signal span:nth-child(3) { height: 15px; }

/* ── Eyebrow / kicker ──────────────────────────────────────────────────── */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 600 11px/1.4 var(--font-head);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-cta);
  margin-bottom: 18px;
}

.caption {
  font: 500 12px/1.6 var(--font-body);
  color: var(--ink-muted);
}

.lede {
  font-size: clamp(1.0625rem, 0.5vw + 0.95rem, 1.1875rem);
  color: var(--ink-muted);
  line-height: 1.75;
}

/* ── Buttons ───────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: 600 13px/1 var(--font-head);
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: #00297a; }

.btn--orange { background: var(--orange-cta); color: var(--white); }
.btn--orange:hover { background: #b93607; }

.btn--reverse { background: var(--white); color: var(--navy); }
.btn--reverse:hover { background: var(--blue-soft); }

.btn--outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 600 14px/1.4 var(--font-head);
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 3px;
  transition: color 0.2s ease;
}
.text-link:hover { color: var(--orange-cta); }
.text-link .arrow { transition: transform 0.2s ease; }
.text-link:hover .arrow { transform: translateX(3px); }

.cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 34px;
}

/* ── Header ────────────────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--hairline);
  box-shadow: 0 1px 2px rgba(0, 30, 85, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand img { height: 46px; width: auto; }

.site-nav { margin-left: auto; }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
}

.site-nav a {
  font: 600 14px/1 var(--font-body);
  color: var(--navy);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.site-nav a:hover { border-bottom-color: var(--orange); }
.site-nav a[aria-current="page"] { border-bottom-color: var(--orange); }

.header-cta { padding: 13px 20px; flex-shrink: 0; }
.header-cta .label-short { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle .bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

@media (max-width: 1080px) {
  .header-cta .label-full { display: none; }
  .header-cta .label-short { display: inline; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; margin-left: auto; }
  .header-cta { display: none; }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    margin: 0;
    background: var(--navy);
    padding: clamp(28px, 8vw, 56px) var(--gutter);
    transform: translateY(-105%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
  }
  .site-nav.is-open { transform: translateY(0); visibility: visible; }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .site-nav li { width: 100%; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .site-nav li:last-child { border-bottom: 0; }

  .site-nav a {
    display: block;
    font: 700 clamp(1.375rem, 6vw, 1.75rem)/1.2 var(--font-head);
    color: var(--white);
    padding: 18px 0;
    border-bottom: 0;
  }
  .site-nav a:hover,
  .site-nav a[aria-current="page"] { color: var(--blue-soft); border-bottom: 0; }

  .site-nav .nav-cta {
    margin-top: 28px;
    border-bottom: 0;
  }
  .site-nav .nav-cta a {
    display: inline-flex;
    font: 600 14px/1 var(--font-head);
    background: var(--orange-cta);
    color: var(--white);
    padding: 16px 26px;
    border-radius: 6px;
  }

  body.nav-locked { overflow: hidden; }

  .nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (min-width: 861px) {
  .site-nav .nav-cta { display: none; }
}

/* ── Hero (home) ───────────────────────────────────────────────────────── */

.hero { padding-block: clamp(56px, 8vw, 104px); }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.hero h1 .accent { color: var(--orange); }

.hero .lede { margin-top: 22px; }

.hero-art { position: relative; }
.hero-art svg { width: 100%; height: auto; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 420px; }
}

/* Outcome words (found / trusted / contacted): coloured always; the fade, rise
   and underline sweep only run once, staggered, for users without reduced motion. */
.word-highlight {
  display: inline-block;
  position: relative;
  color: var(--orange-cta);
  font-weight: 600;
}
.word-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--orange-cta);
  opacity: 0.55;
}

@media (prefers-reduced-motion: no-preference) {
  .lede--outcome .word-highlight {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .lede--outcome .word-highlight::after {
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .lede--outcome.is-visible .word-highlight {
    opacity: 1;
    transform: translateY(0);
  }
  .lede--outcome.is-visible .word-highlight::after {
    transform: scaleX(1);
  }
  .lede--outcome .word-highlight:nth-of-type(1) { transition-delay: 0.05s; }
  .lede--outcome .word-highlight:nth-of-type(2) { transition-delay: 0.4s; }
  .lede--outcome .word-highlight:nth-of-type(3) { transition-delay: 0.75s; }
  .lede--outcome .word-highlight:nth-of-type(1)::after { transition-delay: 0.3s; }
  .lede--outcome .word-highlight:nth-of-type(2)::after { transition-delay: 0.65s; }
  .lede--outcome .word-highlight:nth-of-type(3)::after { transition-delay: 1s; }
}

/* ── Page hero (inner pages) ───────────────────────────────────────────── */

.page-hero {
  padding-block: clamp(52px, 7vw, 88px) clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--hairline-2);
}
.page-hero .lede { margin-top: 20px; }
.page-hero--tint { background: var(--tint); border-bottom: 0; }

/* ── Split editorial section (heading left, prose right) ───────────────── */

.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.split > header { position: sticky; top: calc(var(--header-h) + 32px); }
.split .prose p + p { margin-top: 1.2em; }

@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; }
  .split > header { position: static; }
}

.prose p + p { margin-top: 1.2em; }

/* ── Checklist (customer questions) ────────────────────────────────────── */

.checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 40px;
  margin-block: 30px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font: 600 15px/1.5 var(--font-body);
  color: var(--navy);
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline-2);
}
.checklist svg { flex-shrink: 0; margin-top: 3px; }

@media (max-width: 620px) {
  .checklist { grid-template-columns: 1fr; gap: 4px; }
}

/* ── Find / Trust / Choose journey ─────────────────────────────────────── */

.journey {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  margin-top: 44px;
}
.journey-step { position: relative; padding: clamp(28px, 4vw, 44px) clamp(20px, 3vw, 36px); }
.journey-step + .journey-step { border-left: 1px solid var(--hairline-2); }
.journey-step:not(:last-child)::after {
  content: '\2192';
  position: absolute;
  right: -13px;
  top: clamp(28px, 4vw, 44px);
  color: var(--orange);
  font-size: 20px;
  line-height: 1;
  z-index: 1;
}
.journey-step .step-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 600 11px/1.4 var(--font-head);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 14px;
}
.journey-step .step-label .num { color: var(--orange-cta); }
.journey-step h3 { margin-bottom: 10px; }
.journey-step p { font-size: 15px; color: var(--ink-muted); }

@media (max-width: 760px) {
  .journey { grid-template-columns: 1fr; }
  .journey-step + .journey-step { border-left: 0; border-top: 1px solid var(--hairline-2); }
  .journey-step:not(:last-child)::after { content: '\2193'; right: auto; left: clamp(20px, 3vw, 36px); top: auto; bottom: -13px; }
}

/* ── Intro grid (problem section, homepage) ─────────────────────────────── */

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

@media (max-width: 800px) {
  .intro-grid { grid-template-columns: 1fr; }
}

/* ── Question card (problem section, homepage) ─────────────────────────── */

.question-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow);
}
.question-card-title {
  font: 700 13px/1.4 var(--font-head);
  color: var(--navy);
  margin-bottom: 18px;
}
.question-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline-2);
  font-size: 15px;
  color: var(--ink);
}
.question-list li:last-child { border-bottom: 0; }
.q-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange-cta);
  display: flex;
  align-items: center;
  justify-content: center;
}
.q-check svg { width: 11px; height: 11px; }

/* ── Services grid (what we help with, homepage) ────────────────────────── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 28px 26px;
}
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 22px; height: 22px; }
.service-title { font: 700 15.5px/1.4 var(--font-head); color: var(--navy); margin-bottom: 8px; }
.service-desc { font-size: 13.5px; color: var(--ink-muted); line-height: 1.6; }

/* ── Visibility check callout (card style) ──────────────────────────────── */

.check-callout {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px);
}
.check-icon {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: 20px;
  background: var(--tint);
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-icon svg { width: 40px; height: 40px; }
.check-title { font-size: clamp(1.25rem, 1.4vw + 0.9rem, 1.5rem); margin-bottom: 10px; }
.check-body { font-size: 15px; color: var(--ink-muted); line-height: 1.7; margin-bottom: 18px; max-width: 520px; }
.check-fine { font-size: 12.5px; color: var(--ink-muted); margin-top: 10px; font-weight: 700; }

@media (max-width: 700px) {
  .check-callout { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* ── Tables ────────────────────────────────────────────────────────────── */

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 36px;
}

table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14.5px;
}

thead th {
  font: 600 11px/1.4 var(--font-head);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: left;
  padding: 12px 18px 12px 0;
  border-bottom: 1px solid var(--navy);
}

tbody td {
  padding: 18px 18px 18px 0;
  border-bottom: 1px solid var(--hairline-2);
  vertical-align: top;
  color: var(--ink);
}

tbody td:first-child {
  font: 600 15px/1.4 var(--font-head);
  color: var(--navy);
  white-space: nowrap;
}

.badge {
  display: inline-block;
  font: 600 10px/1 var(--font-head);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  border-radius: 20px;
  padding: 5px 12px;
  margin-left: 10px;
  vertical-align: middle;
}

.table-note { margin-top: 26px; }

/* ── Quiet aside ("Just getting started") ──────────────────────────────── */

.aside-note {
  border-left: 3px solid var(--blue-soft);
  padding-left: clamp(22px, 4vw, 40px);
}
.aside-note h2 { margin-bottom: 16px; }
.aside-note p { color: var(--ink-muted); }

/* ── Our Work grid ─────────────────────────────────────────────────────── */

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
  margin-top: 14px;
}

.work-tile {
  position: relative;
  aspect-ratio: 16 / 10;
  border: 2px dashed var(--hairline);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tint);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.work-tile svg { opacity: 0.4; width: clamp(48px, 7vw, 72px); height: clamp(48px, 7vw, 72px); }

@media (max-width: 620px) {
  .work-grid { grid-template-columns: 1fr; }
}

/* ── Steps (how it works) ──────────────────────────────────────────────── */

.steps { margin-top: 40px; }
.steps li {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 24px;
  padding-bottom: 34px;
}
.steps li:last-child { padding-bottom: 0; }
.steps li::before {
  content: '';
  position: absolute;
  left: 23.5px;
  top: 48px;
  bottom: 6px;
  width: 1px;
  background: var(--hairline);
}
.steps li:last-child::before { display: none; }

.steps .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  font: 700 15px/1 var(--font-head);
  color: var(--navy);
  background: var(--white);
}
.steps h3 { padding-top: 12px; margin-bottom: 6px; }
.steps p { font-size: 15px; color: var(--ink-muted); }

/* ── CTA banner ────────────────────────────────────────────────────────── */

.cta-banner { text-align: center; }
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 2.6vw + 0.8rem, 2.375rem);
  margin-bottom: 20px;
}
.cta-banner p {
  color: var(--blue-soft);
  max-width: 56ch;
  margin-inline: auto;
}
.cta-banner p + p { margin-top: 14px; }
.cta-banner .btn { margin-top: 34px; }

/* ── Footer ────────────────────────────────────────────────────────────── */

.site-footer {
  background: var(--navy-deep);
  color: var(--blue-soft);
  padding-block: clamp(56px, 7vw, 88px) 36px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(36px, 6vw, 80px);
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(173, 211, 241, 0.18);
}

.footer-wordmark {
  font: 800 22px/1.1 var(--font-head);
  color: var(--white);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-tagline { margin-top: 16px; max-width: 40ch; }

.footer-contact { margin-top: 24px; display: grid; gap: 6px; }
.footer-contact a { color: var(--white); text-decoration: none; border-bottom: 1px solid rgba(173, 211, 241, 0.4); }
.footer-contact a:hover { border-bottom-color: var(--orange); }

.footer-nav h4 {
  font: 600 11px/1.4 var(--font-head);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(173, 211, 241, 0.65);
  margin-bottom: 18px;
}
.footer-nav ul { display: grid; gap: 10px; }
.footer-nav a { color: var(--white); text-decoration: none; }
.footer-nav a:hover { color: var(--blue-soft); }

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 28px;
  font-size: 12.5px;
  color: rgba(173, 211, 241, 0.65);
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Packages page ─────────────────────────────────────────────────────── */

.package {
  padding-block: var(--section);
  border-top: 1px solid var(--hairline-2);
}
.package:first-of-type { border-top: 0; padding-top: 0; }

.package-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.package-head h2 {
  font-size: clamp(1.75rem, 2.4vw + 0.8rem, 2.25rem);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.package-price {
  font: 800 clamp(1.75rem, 2.4vw + 0.8rem, 2.25rem)/1.1 var(--font-head);
  color: var(--navy);
  white-space: nowrap;
}
.package-price small {
  font: 500 13px/1.4 var(--font-body);
  color: var(--ink-muted);
  display: block;
  text-align: right;
}
.package-meta {
  font: 500 13px/1.6 var(--font-body);
  color: var(--ink-muted);
  margin-bottom: 26px;
}

.package-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 72px);
  margin-top: 34px;
  align-items: start;
}

.features h3, .package-side h3 {
  font: 600 11px/1.4 var(--font-head);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 18px;
}

.features ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 32px;
}
.features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.55;
}
.features svg { flex-shrink: 0; margin-top: 4px; }

@media (max-width: 560px) {
  .features ul { grid-template-columns: 1fr; }
}

.package-side > div + div { margin-top: 30px; }
.package-side p { font-size: 14.5px; color: var(--ink-muted); }

.care-plan {
  background: var(--tint);
  border-radius: 8px;
  padding: 24px 26px;
}
.care-plan .price {
  font: 700 20px/1.2 var(--font-head);
  color: var(--navy);
  margin-bottom: 8px;
  display: block;
}
.care-plan p { color: var(--ink); }

.package .btn { margin-top: 38px; }

@media (max-width: 800px) {
  .package-grid { grid-template-columns: 1fr; }
}

/* ── Check-strip (visibility check page list) ──────────────────────────── */

.check-strip { margin-top: 34px; }
.check-strip li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-block: 18px;
  border-top: 1px solid var(--hairline-2);
  font-size: 15.5px;
  line-height: 1.6;
}
.check-strip li:last-child { border-bottom: 1px solid var(--hairline-2); }
.check-strip svg { flex-shrink: 0; margin-top: 4px; }

/* ── Pillars (about page) ──────────────────────────────────────────────── */

.pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(32px, 5vw, 72px);
  margin-top: 20px;
}
.pillar {
  padding-block: 30px;
  border-top: 1px solid var(--hairline);
}
.pillar h3 { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.pillar p { font-size: 15px; color: var(--ink-muted); }

@media (max-width: 700px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { padding-block: 24px; }
}

/* ── FAQ accordion ─────────────────────────────────────────────────────── */

.faq-list { margin-top: 12px; }

.faq-item {
  border-bottom: 1px solid var(--hairline);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
  cursor: pointer;
  padding-block: 24px;
  font: 600 clamp(1rem, 0.5vw + 0.9rem, 1.125rem)/1.4 var(--font-head);
  color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary .indicator {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background-color 0.2s ease;
}
.faq-item summary .indicator::before {
  content: '';
  width: 10px;
  height: 2px;
  background: var(--navy);
  position: absolute;
}
.faq-item summary .indicator::after {
  content: '';
  width: 2px;
  height: 10px;
  background: var(--navy);
  transition: transform 0.25s ease;
}
.faq-item summary .indicator { position: relative; }
.faq-item[open] summary .indicator::after { transform: rotate(90deg); }
.faq-item[open] summary .indicator { background: var(--tint-strong); }

.faq-item .faq-answer {
  padding-bottom: 28px;
  color: var(--ink-muted);
  max-width: 62ch;
}
.faq-item .faq-answer p + p { margin-top: 1em; }

/* ── Contact page ──────────────────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.contact-details { display: grid; gap: 8px; font-size: 15px; }
.contact-details .org { font: 700 18px/1.3 var(--font-head); color: var(--navy); }
.contact-details a { color: var(--navy); font-weight: 600; }

.book-direct {
  margin-top: 34px;
  background: var(--tint);
  border-radius: 8px;
  padding: 26px 28px;
}
.book-direct h3 { margin-bottom: 8px; }
.book-direct p { font-size: 14.5px; color: var(--ink-muted); margin-bottom: 18px; }

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
}
.form-field { display: grid; gap: 8px; }
.form-field--full { grid-column: 1 / -1; }

.form-field label {
  font: 600 13px/1.4 var(--font-head);
  color: var(--navy);
}
.form-field label .req { color: var(--orange-cta); }

.form-field input,
.form-field select,
.form-field textarea {
  font: 400 15px/1.5 var(--font-body);
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 13px 14px;
  width: 100%;
  transition: border-color 0.2s ease;
}
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover { border-color: rgba(0, 30, 85, 0.3); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--navy);
  outline-offset: 0;
  border-color: var(--navy);
}

.form-field textarea { min-height: 150px; resize: vertical; }

.form-note { font-size: 12.5px; color: var(--ink-muted); }

.form-success {
  background: var(--tint);
  border-radius: 8px;
  padding: 22px 26px;
  font-weight: 600;
  color: var(--navy);
}

@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-field { grid-column: 1 / -1; }
}

/* ── Accessibility statement page ──────────────────────────────────────── */

.statement h2 { margin-top: 48px; margin-bottom: 14px; }
.statement ul { list-style: disc; padding-left: 22px; }
.statement ul li { margin-bottom: 8px; }
.statement ul li::marker { color: var(--orange-cta); }

/* ── Scroll reveal ─────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Price cards (homepage packages summary) ───────────────────────────── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  margin-top: 36px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 34px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.price-card--rec { border: 2px solid var(--orange); box-shadow: 0 12px 32px rgba(252, 77, 14, 0.12); }
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange-cta);
  color: var(--white);
  font: 700 11px/1 var(--font-head);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-name { font: 800 20px/1.2 var(--font-head); color: var(--navy); margin-bottom: 6px; }
.price-amount { font: 800 32px/1.2 var(--font-head); color: var(--navy); }
.price-time { font-size: 12.5px; color: var(--ink-muted); margin-bottom: 22px; }
.price-feature-list { margin-bottom: 20px; flex-grow: 1; }
.price-feature-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; padding: 6px 0; color: var(--ink); }
.price-feature-list .q-check { margin-top: 2px; }
.price-care { font: 700 13px/1.4 var(--font-head); color: var(--orange-cta); margin: 4px 0 18px; }
.price-best {
  font-size: 12.5px;
  color: var(--ink-muted);
  line-height: 1.6;
  padding-top: 16px;
  margin-top: auto;
  border-top: 1px solid var(--hairline-2);
}

@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ── Extra callout (dashed box) ─────────────────────────────────────────── */

.extra-callout {
  border: 1px dashed var(--hairline);
  border-radius: 14px;
  padding: 30px 32px;
  margin-top: 20px;
}
.extra-callout p { font-size: 14.5px; color: var(--ink-muted); line-height: 1.7; }
.extra-callout p + p { margin-top: 10px; }

/* ── Why us grid (homepage) ─────────────────────────────────────────────── */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 36px;
}
.why-item-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 700 15px/1.4 var(--font-head);
  color: var(--navy);
  margin-bottom: 8px;
}
.why-item-body { font-size: 13.5px; color: var(--ink-muted); line-height: 1.65; }

@media (max-width: 760px) {
  .why-grid { grid-template-columns: 1fr; }
}
