/* Lemoca Financial Planning — design system + components
   ----------------------------------------------------------
   Polished pass.
   Palette is drawn from the Lemoca brand mark: navy #080B2D + orange
   #FF7A00. Surfaces are warm off-white rather than clinical white.
   Display type stays as Outfit (matches the wordmark — identity
   preservation). Body switches to Hanken Grotesk — a warm humanist
   grotesque that gives the page advisor warmth without monoculture.

   Orange is restrained: section eyebrows, the primary CTA, one
   hairline accent. It does not appear in icon backgrounds, dot
   pills, bullet diamonds, link underlines, hero punctuation, or
   anywhere else we previously sprinkled it.
*/

/* -------- Tokens -------- */
:root {
  /* Colour */
  --navy:           #080B2D;
  --navy-soft:      #161A3F;
  --navy-deep:      #04061A;
  --text:           #0F1530;
  --text-muted:     #5A5F75;
  --line:           #E6E4DD;
  --line-soft:      #F0EEE7;
  --surface:        #FBF8F2;   /* warm cream, primary page background */
  --surface-pure:   #FFFFFF;   /* for cards / contrast surfaces */
  --surface-alt:    #F4F0E6;   /* alternate section, warmer than primary */
  --surface-deep:   #ECE6D7;   /* deepest cream, used sparingly */
  --orange:         #FF7A00;
  --orange-bright:  #FF8F26;
  --orange-deep:    #E66D00;
  --hair:           #1F2444;   /* hairline navy for thin rules */

  /* Spacing — 8px grid */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 16px;
  --s-4: 24px;
  --s-5: 32px;
  --s-6: 48px;
  --s-7: 64px;
  --s-8: 96px;
  --s-9: 128px;
  --s-10: 160px;

  /* Radius — tighter than before, less app-y */
  --r-1: 4px;
  --r-2: 8px;
  --r-3: 12px;

  /* Type */
  --display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --sans: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Container */
  --container: 1240px;
  --container-narrow: 920px;

  /* Motion */
  --t-fast: 120ms ease;
  --t-base: 200ms ease;
  --t-slow: 380ms cubic-bezier(.2,.7,.2,1);

  /* Shadow */
  --shadow-1: 0 1px 2px rgba(8, 11, 45, .05);
  --shadow-2: 0 10px 28px rgba(8, 11, 45, .08), 0 2px 6px rgba(8, 11, 45, .04);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(8, 11, 45, 0.3);
  transition: color var(--t-base), text-decoration-color var(--t-base);
}
a:hover { color: var(--navy); text-decoration-color: var(--orange); text-decoration-thickness: 2px; }
a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}
a:active { color: var(--orange-deep); }

p { margin: 0 0 var(--s-3) 0; }
p:last-child { margin-bottom: 0; }

/* -------- Type scale -------- */
h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 var(--s-3) 0;
}
h1 { font-size: clamp(2.75rem, 5.5vw + 0.5rem, 5rem); font-weight: 700; letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 2.8vw + 0.4rem, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 0.8vw + 0.9rem, 1.5rem); font-weight: 600; letter-spacing: -0.015em; }
h4 { font-size: 1rem; font-weight: 600; font-family: var(--sans); letter-spacing: 0.01em; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 var(--s-4) 0;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--orange);
  display: inline-block;
}

.lead {
  font-size: clamp(1.125rem, 0.5vw + 1rem, 1.3125rem);
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 60ch;
  font-weight: 400;
}

/* -------- Layout helpers -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-4);
}
.container--narrow { max-width: var(--container-narrow); }
@media (min-width: 768px) {
  .container { padding: 0 var(--s-5); }
}

.section { padding: var(--s-8) 0; }
.section--tight { padding: var(--s-7) 0; }
.section--loose { padding: var(--s-9) 0; }
@media (max-width: 767px) {
  .section { padding: var(--s-7) 0; }
  .section--loose { padding: var(--s-8) 0; }
}

.section--surface-alt,
.section--paper-soft { background: var(--surface-alt); }
.section--surface-deep,
.section--paper { background: var(--surface-deep); }
.section--navy {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.86);
}
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--surface); }
.section--navy .eyebrow { color: var(--orange-bright); }
.section--navy .eyebrow::before { background: var(--orange-bright); }
.section--navy .lead { color: rgba(255, 255, 255, 0.78); }

.stack > * + * { margin-top: var(--s-3); }
.stack-lg > * + * { margin-top: var(--s-5); }

/* -------- Skip link -------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--s-3);
  background: var(--navy);
  color: var(--surface);
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-1);
  text-decoration: none;
  z-index: 1000;
  transition: top var(--t-base);
}
.skip-link:focus { top: var(--s-3); color: var(--surface); }

/* -------- Header -------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--surface) 88%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base);
}
.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s-5);
  padding-top: var(--s-3);
  padding-bottom: var(--s-3);
  /* horizontal padding intentionally inherited from .container
     so the header respects the same gutter as the rest of the page */
  min-height: 76px;
}
@media (max-width: 899px) {
  .site-header__inner { gap: var(--s-3); min-height: 84px; padding: var(--s-2) 0; }
}
/* Horizontal logo lockup: SVG mark on the left, wordmark text on the
   right, on a single baseline so it aligns naturally with the nav.
   The stacked PNG (mark over wordmark over caps) cannot fit in a
   single-row header without crushing the caption type. */
.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
}
.site-header__logo img {
  /* Real Lemoca brand mark, cropped from the source PNG.
     The mark is slightly wider than tall so we set height and let
     width follow the natural aspect (~1.29:1). */
  height: 36px;
  width: auto;
  flex-shrink: 0;
  display: block;
}
.site-header__logo-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.site-header__logo-name {
  font-family: var(--display);
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--navy);
}
.site-header__logo-sub {
  font-family: var(--sans);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 3px;
  opacity: 0.78;
}
@media (max-width: 600px) {
  .site-header__logo img { height: 38px; width: auto; }
  .site-header__logo-name { font-size: 1.5rem; }
}
.site-header__logo:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; border-radius: 4px; }

.nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: var(--s-6);
}
.nav a {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--text);
  padding: 4px 0;
  position: relative;
  transition: color var(--t-base);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
.nav a:hover { color: var(--navy); }
.nav a:hover::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--navy); }
.nav a[aria-current="page"]::after { transform: scaleX(1); background: var(--orange); height: 2px; }

@media (min-width: 900px) {
  .nav { display: flex; }
}

.site-header__cta { justify-self: end; display: none; }
@media (min-width: 900px) { .site-header__cta { display: inline-flex; } }

.nav-toggle {
  appearance: none;
  background: transparent;
  border: 1px solid var(--navy);
  border-radius: var(--r-1);
  width: 44px;
  height: 40px;
  padding: 0;
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  transition: background var(--t-base), color var(--t-base);
}
.nav-toggle:hover { background: var(--navy); color: var(--surface); }
.nav-toggle:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.nav-toggle__icon { width: 18px; height: 12px; position: relative; }
.nav-toggle__icon::before,
.nav-toggle__icon::after,
.nav-toggle__icon span {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transition: transform var(--t-base), opacity var(--t-base);
}
.nav-toggle__icon::before { top: 0; }
.nav-toggle__icon span { top: 5px; }
.nav-toggle__icon::after { bottom: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon::before { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon span { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon::after { transform: translateY(-5px) rotate(-45deg); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: var(--s-3) 0 var(--s-5);
  gap: 0;
  border-top: 1px solid var(--line-soft);
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  font-family: var(--sans);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--line-soft);
}
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile a[aria-current="page"] { color: var(--orange); }
.nav-mobile .btn { margin-top: var(--s-3); }
@media (min-width: 900px) { .nav-mobile { display: none !important; } }

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1;
  padding: 14px 22px;
  border-radius: var(--r-1);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base), transform var(--t-fast);
  min-height: 44px;
}
.btn:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--navy);
  color: var(--surface);
  border-color: var(--navy);
}
.btn--primary:hover { background: var(--navy-soft); border-color: var(--navy-soft); color: var(--surface); }

.btn--orange {
  background: var(--orange);
  color: var(--navy);
  border-color: var(--orange);
}
.btn--orange:hover { background: var(--orange-deep); border-color: var(--orange-deep); color: var(--surface); }

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost:hover { background: var(--navy); color: var(--surface); }

.btn--ghost-light {
  background: transparent;
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--ghost-light:hover { background: var(--surface); color: var(--navy); border-color: var(--surface); }

.btn--small { padding: 9px 14px; font-size: 0.8125rem; min-height: 36px; }
.btn--large { padding: 18px 28px; font-size: 1rem; }

.btn .arrow { transition: transform var(--t-base); }
.btn:hover .arrow { transform: translateX(3px); }

/* -------- Hero -------- */
.hero {
  position: relative;
  padding: var(--s-9) 0 var(--s-8);
  overflow: hidden;
}
@media (max-width: 767px) { .hero { padding: var(--s-7) 0 var(--s-7); } }

.hero__title {
  font-family: var(--display);
  font-size: clamp(2.25rem, 4.4vw + 0.5rem, 4.5rem);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 0 0 var(--s-5) 0;
  color: var(--navy);
  max-width: 18ch;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: manual;
}
.hero__title em {
  font-style: italic;
  font-weight: 600;
  font-family: var(--display);
}
.hero__title .accent {
  position: relative;
  font-style: italic;
  font-weight: 600;
}
.hero__title .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.08em;
  height: 0.15em;
  background: var(--orange);
  z-index: -1;
  border-radius: 1px;
}

.hero__lead {
  margin: 0 0 var(--s-6) 0;
  max-width: 52ch;
  font-size: clamp(1.125rem, 0.6vw + 1rem, 1.375rem);
  color: var(--text);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  align-items: center;
}

.hero__ctas .secondary {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 4px;
  transition: color var(--t-base);
}
.hero__ctas .secondary:hover { color: var(--navy); }
.hero__ctas .secondary .arrow { transition: transform var(--t-base); }
.hero__ctas .secondary:hover .arrow { transform: translateX(3px); }

.hero__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin-top: var(--s-8);
  padding-top: var(--s-5);
  border-top: 1px solid var(--line);
  font-size: 0.9375rem;
}
@media (min-width: 600px) { .hero__meta { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); } }
.hero__meta dt {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 var(--s-2) 0;
}
.hero__meta dd {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0;
}
.hero__meta dd small {
  display: block;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 0;
}

/* -------- Editorial / typographic services -------- */
.svc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.svc-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
@media (min-width: 768px) {
  .svc-row {
    grid-template-columns: auto minmax(0, 1.2fr) minmax(0, 1.4fr);
    gap: var(--s-6);
    padding: var(--s-7) 0;
  }
}
.svc-row__num {
  font-family: var(--display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  font-feature-settings: 'tnum';
  min-width: 56px;
}
.svc-row__head h3 {
  margin: 0 0 var(--s-2) 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 1.5vw + 1rem, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.05;
}
.svc-row__head p {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0;
}
.svc-row__list {
  list-style: none;
  padding: 0;
  margin: 0;
  column-count: 1;
  column-gap: var(--s-5);
}
@media (min-width: 900px) {
  .svc-row__list { column-count: 2; }
}
.svc-row__list li {
  color: var(--text);
  font-size: 0.9375rem;
  line-height: 1.5;
  padding: 0 0 var(--s-2) 0;
  break-inside: avoid;
  position: relative;
  padding-left: 16px;
}
.svc-row__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 1px;
  background: var(--navy);
}

/* -------- Editorial section header (asymmetric) -------- */
.sect-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-7);
  align-items: end;
}
@media (min-width: 900px) {
  .sect-header { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: var(--s-7); }
}
.sect-header h2 { margin: 0; }
.sect-header .lead { margin: 0; }

/* -------- Steps (numbered editorial) -------- */
.steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-5);
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__num {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 0.9;
  letter-spacing: -0.04em;
  min-width: 80px;
  font-feature-settings: 'tnum';
}
@media (max-width: 600px) {
  .step__num { font-size: 2rem; min-width: 56px; }
  .step { padding: var(--s-5) 0; }
}
.step h3 { margin: 0 0 var(--s-2) 0; }
.step p { color: var(--text-muted); margin: 0; max-width: 60ch; }

/* -------- Pull quote (no side stripe) -------- */
.pull-quote {
  margin: var(--s-5) 0;
  padding: 0;
}
.pull-quote p {
  font-family: var(--display);
  font-size: clamp(1.375rem, 1.3vw + 1rem, 1.875rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.2;
  margin: 0;
  position: relative;
  padding-left: 0;
  text-indent: 0;
}
.pull-quote p::before {
  content: '"';
  font-family: var(--display);
  color: var(--orange);
  font-weight: 700;
  font-size: 1.4em;
  line-height: 0;
  position: relative;
  top: 0.2em;
  margin-right: 0.05em;
}

/* -------- Form -------- */
.form { display: grid; gap: var(--s-4); }
.form-grid { display: grid; gap: var(--s-4); }
@media (min-width: 600px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: var(--s-2); }
.field label {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}
.field label .opt {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.8125rem;
  margin-left: 4px;
}
.field input,
.field textarea,
.field select {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--navy);
  background: var(--surface-pure);
  border: 1px solid var(--line);
  border-radius: var(--r-1);
  padding: 13px 14px;
  width: 100%;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.field textarea { resize: vertical; min-height: 140px; line-height: 1.5; }
.field input:hover,
.field textarea:hover,
.field select:hover { border-color: var(--navy); }
.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.2);
}
.form__consent {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.form__consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--orange);
  flex-shrink: 0;
}

/* -------- Contact panel — quieter -------- */
.contact-panel {
  background: var(--surface-pure);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  padding: var(--s-6);
  display: grid;
  gap: var(--s-4);
}
.contact-panel h3 { margin: 0; font-size: 1.5rem; }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--s-4);
}
.contact-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  align-items: start;
  font-size: 1rem;
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--line-soft);
}
.contact-list li:last-child { border-bottom: none; padding-bottom: 0; }
.contact-list .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  font-weight: 600;
}
.contact-list a {
  color: var(--navy);
  text-decoration-color: var(--orange);
  font-family: var(--display);
  font-size: 1.125rem;
  font-weight: 600;
}
.contact-list span.value {
  font-family: var(--display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
}

/* -------- Footer -------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: var(--s-7) 0 var(--s-5);
  font-size: 0.875rem;
  line-height: 1.6;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-6);
}
@media (min-width: 768px) {
  .site-footer__grid { grid-template-columns: 1.6fr 1fr 1fr; gap: var(--s-6); }
}
.site-footer h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-bright);
  margin: 0 0 var(--s-3) 0;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-2); }
.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.site-footer a:hover { color: var(--orange-bright); }
.site-footer a:focus-visible { outline: 2px solid var(--orange-bright); outline-offset: 3px; border-radius: 2px; }
.site-footer__brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: -0.025em;
  color: var(--surface);
  margin: 0 0 var(--s-3) 0;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.site-footer__brand-mark {
  display: inline-block;
  width: 24px;
  height: 24px;
  background:
    conic-gradient(from 0deg, var(--orange) 0deg 90deg, transparent 90deg 360deg);
  position: relative;
  border-radius: 2px;
}
.site-footer__brand-mark::before,
.site-footer__brand-mark::after {
  content: '';
  position: absolute;
  background: var(--orange);
  border-radius: 2px;
}
.site-footer__brand-mark::before { inset: 0 0 50% 50%; }
.site-footer__brand-mark::after { inset: 50% 50% 0 0; }
.site-footer__brand small {
  display: block;
  font-family: var(--sans);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-bright);
  font-weight: 600;
  margin-top: 4px;
}
.site-footer__brand-block { margin-bottom: var(--s-3); }
.site-footer__tag {
  color: rgba(255, 255, 255, 0.7);
  max-width: 38ch;
}

.site-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--s-4);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}
.site-footer__legal p { margin-bottom: var(--s-3); }
.site-footer__legal p:last-child { margin-bottom: 0; }
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-5);
  justify-content: space-between;
  align-items: center;
  margin-top: var(--s-4);
  padding-top: var(--s-3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* -------- Page header -------- */
.page-header {
  padding: var(--s-9) 0 var(--s-7);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 767px) { .page-header { padding: var(--s-7) 0 var(--s-6); } }
.page-header__inner { max-width: 760px; }
.page-header h1 { margin-bottom: var(--s-4); font-size: clamp(2.5rem, 5vw + 0.5rem, 4.5rem); }

/* -------- CTA strip — quieter, asymmetric -------- */
.cta-strip {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.86);
  padding: var(--s-8) 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::after {
  content: '';
  position: absolute;
  left: -2%;
  bottom: 0;
  width: 30%;
  height: 2px;
  background: var(--orange);
}
.cta-strip__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  align-items: end;
}
@media (min-width: 768px) {
  .cta-strip__inner { grid-template-columns: 1.4fr 1fr; gap: var(--s-7); }
}
.cta-strip h2 { color: var(--surface); margin: 0 0 var(--s-3) 0; max-width: 18ch; }
.cta-strip p { color: rgba(255, 255, 255, 0.7); margin: 0; max-width: 52ch; }
.cta-strip__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); }

/* -------- Utility -------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-3 { margin-top: var(--s-3); }
.mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); }
.mb-0 { margin-bottom: 0 !important; }
.max-w-prose { max-width: 62ch; }

/* Two-column editorial split */
.split-editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 900px) {
  .split-editorial {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: var(--s-8);
    align-items: start;
  }
}

/* Right-rail sticky callout for asymmetric pages */
.rail {
  background: var(--surface-pure);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  padding: var(--s-5);
  display: grid;
  gap: var(--s-3);
  font-size: 0.9375rem;
}
.rail h3 {
  margin: 0;
  font-size: 1.125rem;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--navy);
}
.rail dl {
  margin: 0;
  display: grid;
  gap: var(--s-3);
}
.rail dt {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin: 0 0 2px 0;
}
.rail dd {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--navy);
}
.rail dd a {
  color: var(--navy);
  text-decoration-color: var(--orange);
}

/* Inline service-quick nav (replaces tag-pill cluster) */
.svc-nav {
  margin: 0 0 var(--s-7) 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-family: var(--sans);
  line-height: 1.8;
}
.svc-nav span { color: var(--text-muted); margin-right: 4px; }
.svc-nav a {
  color: var(--navy);
  text-decoration: none;
  margin-right: var(--s-4);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: border-color var(--t-base);
}
.svc-nav a:hover { border-bottom-color: var(--orange); }

/* -------- FAQ accordion (FAQPage schema friendly) -------- */
.faq {
  border-top: 1px solid var(--line);
  margin: 0;
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: var(--display);
  font-size: clamp(1.0625rem, 0.4vw + 1rem, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--navy);
  cursor: pointer;
  padding: var(--s-4) 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-3);
  align-items: center;
}
.faq__q:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; border-radius: 2px; }
.faq__q::after {
  content: '';
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23080B2D' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform var(--t-base);
}
.faq__q[aria-expanded="true"]::after { transform: rotate(180deg); }
.faq__a {
  display: none;
  padding: 0 0 var(--s-4) 0;
  max-width: 65ch;
  color: var(--text);
}
.faq__a p { margin-bottom: var(--s-3); }
.faq__a p:last-child { margin-bottom: 0; }
.faq__item.is-open .faq__a { display: block; }

/* No-JS fallback: show all answers if JS hasn't initialised */
html:not(.has-js) .faq__a { display: block; padding-top: 0; }
html:not(.has-js) .faq__q { cursor: default; }
html:not(.has-js) .faq__q::after { display: none; }

/* -------- Mobile sticky CTA bar -------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  padding: 10px 12px max(10px, env(safe-area-inset-bottom));
  background: color-mix(in oklab, var(--surface) 92%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-top: 1px solid var(--line);
  gap: var(--s-2);
}
.mobile-cta .btn {
  flex: 1;
  padding: 14px 16px;
  font-size: 0.9375rem;
}
.mobile-cta .btn--ghost {
  flex: 0 0 auto;
  padding: 14px 14px;
}
@media (max-width: 899px) {
  .mobile-cta { display: flex; align-items: center; }
  /* Pad page so the sticky bar doesn't cover content */
  body { padding-bottom: 76px; }
}

/* -------- Definition rows (NAP, hours, etc) -------- */
.deflist {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.deflist__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 600px) {
  .deflist__row { grid-template-columns: 200px 1fr; gap: var(--s-4); align-items: baseline; }
}
.deflist__row dt {
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  font-weight: 600;
  margin: 0;
}
.deflist__row dd {
  font-family: var(--display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0;
}
.deflist__row dd small {
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-top: 2px;
}
.deflist__row dd a {
  color: var(--navy);
  text-decoration-color: var(--orange);
}

/* -------- Never-do list (values page) -------- */
.never-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--s-3);
}
.never-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: var(--s-3);
  align-items: start;
  font-family: var(--display);
  font-size: clamp(1.0625rem, 0.4vw + 1rem, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--navy);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--line-soft);
}
.never-list li:last-child { border-bottom: none; }
.never-list li::before {
  content: '';
  width: 20px; height: 20px;
  margin-top: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF7A00' stroke-width='2.4'%3E%3Cpath d='M5 5l14 14M19 5L5 19'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

/* -------- Value blocks (values page) -------- */
.value {
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--line);
}
.value:last-child { border-bottom: none; }
.value__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
  align-items: baseline;
  margin-bottom: var(--s-3);
}
@media (min-width: 768px) {
  .value__head { grid-template-columns: auto 1fr; gap: var(--s-5); }
}
.value__num {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  font-feature-settings: 'tnum';
  min-width: 40px;
}
.value h3 {
  margin: 0;
  font-size: clamp(1.5rem, 1.2vw + 1rem, 2rem);
  letter-spacing: -0.02em;
}
.value__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 768px) {
  .value__body { grid-template-columns: 40px 1fr; }
}
.value__body p { max-width: 62ch; }
.value__example {
  background: var(--surface-pure);
  border: 1px solid var(--line);
  border-radius: var(--r-2);
  padding: var(--s-3) var(--s-4);
  font-size: 0.9375rem;
  color: var(--text);
}
.value__example strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
  font-weight: 700;
}

/* -------- Updated stamp -------- */
.updated {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding-top: var(--s-3);
}
.updated time { color: var(--navy); font-weight: 600; }

/* -------- Mobile improvements (general) -------- */
@media (max-width: 600px) {
  /* Larger tap targets for nav links */
  .nav-mobile a { padding: var(--s-4) 0; font-size: 1.0625rem; }
  /* Tighter section padding on small viewports */
  .section { padding: var(--s-6) 0; }
  .section--loose { padding: var(--s-7) 0; }
  .section--tight { padding: var(--s-5) 0; }
  .page-header { padding: var(--s-6) 0 var(--s-5); }
  /* Hero: tighter overall on mobile */
  .hero { padding: var(--s-6) 0 var(--s-6); }
  .hero__title { font-size: clamp(2rem, 8.2vw, 3rem); margin-bottom: var(--s-4); max-width: 14ch; }
  .hero__lead { font-size: 1.0625rem; margin-bottom: var(--s-5); }
  .hero__ctas { gap: var(--s-2); }
  .hero__meta { gap: var(--s-3); margin-top: var(--s-6); padding-top: var(--s-4); }
  .hero__meta dd { font-size: 1.0625rem; }
  .hero__meta dd small { font-size: 0.8125rem; }
  /* Eyebrow: tighter tracking so it fits on one line */
  .eyebrow {
    font-size: 0.6875rem;
    letter-spacing: 0.16em;
    margin-bottom: var(--s-3);
  }
  .eyebrow::before { width: 16px; }
  /* Sect-header tighter */
  .sect-header { margin-bottom: var(--s-5); gap: var(--s-3); }
  /* Page header h1 sized down */
  .page-header h1 { font-size: clamp(2rem, 8vw, 2.75rem); margin-bottom: var(--s-3); }
  .page-header .lead { font-size: 1.0625rem; }
  /* Form fields: 16px font-size prevents iOS zoom on focus */
  .field input, .field textarea, .field select { font-size: 16px; padding: 14px 14px; }
  /* Service rows: tighter */
  .svc-row { padding: var(--s-5) 0; gap: var(--s-3); }
  .svc-row__num { font-size: 0.875rem; min-width: auto; }
  .svc-row__head h3 { font-size: 1.375rem; }
  /* CTA strip: stack vertically, full-width buttons */
  .cta-strip { padding: var(--s-6) 0 var(--s-7); }
  .cta-strip h2 { font-size: 1.875rem; margin-bottom: var(--s-3); }
  .cta-strip__inner { gap: var(--s-4); }
  .cta-strip__actions {
    flex-direction: column;
    align-items: stretch;
    gap: var(--s-2);
  }
  .cta-strip__actions .btn {
    width: 100%;
    flex: none;
    padding: 16px 18px;
    font-size: 1rem;
    white-space: nowrap;
  }
  /* Secondary "Meet John" CTA in hero needs more weight on mobile */
  .hero__ctas .secondary { color: var(--navy); font-weight: 600; padding: 14px var(--s-2); }
  .hero__ctas .btn { width: 100%; max-width: 320px; }
  .hero__ctas { flex-direction: column; align-items: flex-start; gap: var(--s-3); }
  /* Hide secondary "Book a call" in header on small screens since we have the sticky bar */
  .site-header__cta { display: none; }
  /* Tighten footer */
  .site-footer { padding: var(--s-6) 0 var(--s-5); }
  .site-footer__grid { gap: var(--s-5); margin-bottom: var(--s-5); }
  /* Headlines tighter */
  h2 { font-size: clamp(1.625rem, 6vw, 2rem); }
  /* Steps tighter */
  .step { padding: var(--s-4) 0; }
  .step__num { font-size: 2rem; min-width: 52px; }
  .step h3 { font-size: 1.1875rem; }
  /* Pull quote tighter */
  .pull-quote p { font-size: 1.25rem; line-height: 1.25; }
  /* Rail panels tighter */
  .rail { padding: var(--s-4); }
  .rail h3 { font-size: 1rem; }
  /* Contact panel tighter */
  .contact-panel { padding: var(--s-4); }
  /* Deflist rows: stack DT above DD with tighter spacing */
  .deflist__row { padding: var(--s-3) 0; }
  /* FAQ items tighter padding */
  .faq__q { padding: var(--s-3) 0; font-size: 1.0625rem; }
  .faq__a { padding: 0 0 var(--s-3); }
}

/* Very small phones (320-400) */
@media (max-width: 400px) {
  .hero__title { font-size: clamp(1.75rem, 8.5vw, 2.5rem); max-width: 13ch; }
  .page-header h1 { font-size: clamp(1.875rem, 8.5vw, 2.5rem); }
  h2 { font-size: clamp(1.5rem, 6.5vw, 1.875rem); }
  .pull-quote p { font-size: 1.125rem; }
  /* Logo-sub still visible but smaller */
  .site-header__logo-name { font-size: 1.25rem; }
  .site-header__logo-sub { font-size: 0.4375rem; letter-spacing: 0.12em; }
}

/* Container padding tweaks on small viewports.
   Header gets generous side padding so the logo has real breathing
   room from the viewport edge. */
@media (max-width: 600px) {
  .site-header__inner {
    padding: var(--s-4) 0;        /* 24px top/bottom, was 16 */
    min-height: 92px;
    gap: var(--s-3);
  }
  .site-header > .container,
  .site-header .container {
    padding-left: var(--s-5);      /* 32px each side */
    padding-right: var(--s-5);
  }
  .site-header__logo {
    margin-left: var(--s-1);       /* extra 4px nudge in from container edge */
  }
}
@media (max-width: 480px) {
  .container { padding: 0 var(--s-4); }       /* body containers: 24px */
}
@media (max-width: 360px) {
  .container { padding: 0 var(--s-3); }
  .site-header__logo img { height: 32px; width: auto; }
  .site-header__logo-name { font-size: 1.25rem; }
  .site-header__logo-sub { display: none; }
}

/* Selection */
::selection { background: rgba(255, 122, 0, 0.28); color: var(--navy); }

/* Print */
@media print {
  .site-header, .site-footer, .nav-toggle, .cta-strip, .mobile-cta { display: none; }
  body { background: white; color: black; padding-bottom: 0; }
  a { color: black; text-decoration: underline; }
}
