/* ==========================================================================
   RRHA — site stylesheet
   Built on the RRHA design system. All colour, type, spacing, radius and
   shadow values come from tokens.css; nothing is hard-coded here except
   layout maths and a handful of rgba() overlays derived from --navy-900.
   ========================================================================== */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font: var(--text-base);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--text-heading);
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
img, svg, video { max-width: 100%; }
img { height: auto; border-style: none; }

a { color: var(--text-link); text-decoration: none; transition: color var(--dur-base) var(--ease-standard); }
a:hover { color: var(--navy-800); }

button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: none; padding: 0; cursor: pointer; }

table { border-collapse: collapse; width: 100%; }

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

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Spam honeypot. display:none keeps it away from sighted users, screen readers
   and the tab order alike; only a naive bot fills it in. */
.honeypot { display: none; }

.skip-link {
  position: absolute; left: var(--space-4); top: -100px; z-index: 200;
  padding: var(--space-3) var(--space-5);
  background: var(--navy-800); color: var(--text-inverse);
  font: var(--text-button); border-radius: var(--radius-md);
  transition: top var(--dur-base) var(--ease-standard);
}
.skip-link:focus { top: var(--space-4); color: var(--text-inverse); }


/* ------------------------------------------------------------- 2. Layout */
.wrap {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section { padding-block: var(--section-y); }
.section--tight { padding-block: var(--space-12); }
.section--flush-top { padding-top: 0; }
.section--flush-bottom { padding-bottom: 0; }
.section--subtle {
  background: var(--surface-subtle);
  border-block: var(--border-thin);
}

.stack { display: flex; flex-direction: column; }
.stack--2 { gap: var(--space-2); }
.stack--3 { gap: var(--space-3); }
.stack--4 { gap: var(--space-4); }
.stack--5 { gap: var(--space-5); }
.stack--6 { gap: var(--space-6); }
.stack--8 { gap: var(--space-8); }
.stack--bare { list-style: none; }
.stack > .push { margin-top: auto; }

.grid { display: grid; gap: var(--space-6); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* main column + right rail */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(0, 1fr);
  gap: var(--space-10);
  align-items: start;
}
.rail { display: flex; flex-direction: column; gap: var(--space-6); position: sticky; top: var(--space-6); }

.text-center { text-align: center; }
.measure { max-width: 62ch; }
.measure--narrow { max-width: 48ch; }
.measure--center { margin-inline: auto; }


/* --------------------------------------------------------- 3. Typography */
.eyebrow {
  font: var(--text-eyebrow-type);
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--text-eyebrow);
}
.eyebrow--inverse { color: var(--gold-400); }

.section-title {
  position: relative;
  margin: 0;
  padding-bottom: var(--space-4);
  font: var(--text-h2);
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: .02em;
}
.section-title::after {
  content: "";
  position: absolute; bottom: 0; left: 0;
  width: 52px; border-bottom: var(--accent-underline);
}
.section-title--center { text-align: center; }
.section-title--center::after { left: 50%; transform: translateX(-50%); }
.section-title--sentence { text-transform: none; letter-spacing: normal; }
.section-title--inverse { color: var(--text-inverse); }

.lead { font: var(--text-lead); color: var(--text-body); }
.small { font: var(--text-sm); }
strong.small { color: var(--text-heading); }
.muted { color: var(--text-muted); }
.h1 { font: var(--text-hero); letter-spacing: var(--tracking-tight); }
.h2 { font: var(--text-h2); }
.h3 { font: var(--text-h3); }
.h4 { font: var(--text-h4); text-transform: uppercase; letter-spacing: .02em; }
.price {
  font-family: var(--font-display); font-weight: 800; font-size: 32px;
  color: var(--gold-600); line-height: 1;
}
.price small {
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  color: var(--text-muted); letter-spacing: .04em;
}
.price--green { color: var(--green-600); }
.price--red { color: var(--red-600); }


/* ------------------------------------------------------------- 4. Icons */
.ico { width: 20px; height: 20px; flex: none; vertical-align: -.18em; }
.ico--sm { width: 16px; height: 16px; }
.ico--lg { width: 26px; height: 26px; }
.ico--xl { width: 34px; height: 34px; }

/* navy medallion holding a gold glyph */
.medallion {
  flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: var(--radius-circle);
  background: var(--icon-medallion-bg);
  color: var(--icon-medallion-fg);
}
.medallion .ico { width: 26px; height: 26px; }
.medallion--sm { width: 44px; height: 44px; }
.medallion--sm .ico { width: 20px; height: 20px; }
.medallion--gold { background: var(--gold-500); color: var(--navy-900); }
.medallion--red { background: var(--red-600); color: var(--white); }
.medallion--green { background: var(--green-500); color: var(--white); }
.medallion--outline {
  background: transparent; color: var(--gold-500);
  box-shadow: inset 0 0 0 2px var(--gold-500);
}


/* ----------------------------------------------------------- 5. Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-3);
  padding: 13px 24px;
  font: var(--text-button); letter-spacing: .01em;
  border: 2px solid transparent; border-radius: var(--radius-md);
  cursor: pointer; text-align: center; text-decoration: none;
  transition: background var(--dur-base) var(--ease-standard),
              border-color var(--dur-base) var(--ease-standard),
              color var(--dur-base) var(--ease-standard);
}
.btn .ico { width: 18px; height: 18px; stroke-width: 2.4; }
.btn--sm { padding: 9px 16px; font-size: 13px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--block { display: flex; width: 100%; }

.btn--primary   { background: var(--navy-800);  border-color: var(--navy-800);  color: var(--white); }
.btn--primary:hover   { background: var(--navy-900); border-color: var(--navy-900); color: var(--white); }
.btn--accent    { background: var(--gold-500);  border-color: var(--gold-500);  color: var(--navy-900); }
.btn--accent:hover    { background: var(--gold-600); border-color: var(--gold-600); color: var(--navy-900); }
.btn--danger    { background: var(--red-600);   border-color: var(--red-600);   color: var(--white); }
.btn--danger:hover    { background: var(--red-700); border-color: var(--red-700); color: var(--white); }
.btn--success   { background: var(--green-500); border-color: var(--green-500); color: var(--white); }
.btn--success:hover   { background: var(--green-600); border-color: var(--green-600); color: var(--white); }
.btn--secondary { background: var(--white); border-color: var(--navy-800); color: var(--navy-800); }
.btn--secondary:hover { background: var(--gray-50); color: var(--navy-900); border-color: var(--navy-900); }
.btn--onDark    { background: transparent; border-color: rgba(255,255,255,.55); color: var(--white); }
.btn--onDark:hover    { background: rgba(255,255,255,.12); border-color: var(--white); color: var(--white); }
.btn--ghost     { background: transparent; border-color: transparent; color: var(--blue-600); padding-inline: var(--space-2); }
.btn--ghost:hover     { color: var(--navy-800); }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-4); }

/* small uppercase inline link with a trailing arrow */
.arrow-link {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font: var(--text-label); text-transform: uppercase; letter-spacing: .08em;
  color: var(--blue-600);
}
.arrow-link .ico { width: 16px; height: 16px; transition: transform var(--dur-base) var(--ease-standard); }
.arrow-link:hover { color: var(--navy-800); }
/* keep natural case where the label is an address or a proper noun */
.arrow-link--plain { text-transform: none; letter-spacing: normal; font-size: 15px; }

/* gold telephone number set inline in a light card */
.tel-inline {
  font-family: var(--font-display); font-weight: 800; font-size: 22px;
  color: var(--gold-600); letter-spacing: .01em;
}
.tel-inline:hover { color: var(--navy-800); }
.arrow-link:hover .ico { transform: translateX(3px); }
@media (prefers-reduced-motion: reduce) { .arrow-link:hover .ico { transform: none; } }


/* ------------------------------------------------------------- 6. Cards */
.card {
  background: var(--surface-card);
  border: var(--border-thin);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
}
.card--pad-lg { padding: 28px; }
/* heading that introduces a rail card's content */
.card__title { margin-bottom: var(--space-4); }
.card--flat { box-shadow: none; }
.card--dark {
  background: var(--surface-dark);
  border-color: transparent;
  color: #cdd7e5;
}
.card--dark h2, .card--dark h3, .card--dark h4, .card--dark .h3, .card--dark .h4 { color: var(--white); }
.card--tint {
  background: var(--surface-subtle);
  border-color: var(--border-color);
  box-shadow: none;
}
.card--hover { transition: box-shadow var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-standard); }
.card--hover:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) { .card--hover:hover { transform: none; } }

/* feature card — medallion, uppercase title, body, optional arrow link */
.feature {
  display: flex; flex-direction: column; gap: var(--space-4);
  background: var(--surface-card);
  border: var(--border-thin);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-standard);
}
.feature:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) { .feature:hover { transform: none; } }
.feature h3 { font: var(--text-h4); text-transform: uppercase; letter-spacing: .02em; }
.feature p { font: var(--text-sm); color: var(--text-body); }
.feature .arrow-link { margin-top: auto; }
/* stacked cards in a stretched grid: keep the trailing link or badge on the floor */
.card.stack > .arrow-link:last-child,
.card.stack > .btn-row:last-child { margin-top: auto; }

/* horizontal feature: medallion beside a title + body */
.feature-row { display: flex; gap: var(--space-4); align-items: flex-start; }
.feature-row h3, .feature-row h4 { font: var(--text-h4); margin-bottom: var(--space-2); }
.feature-row p { font: var(--text-sm); color: var(--text-body); }

/* compact icon+label trio used under hero headlines */
.hero-points { display: flex; flex-wrap: wrap; gap: var(--space-6) var(--space-8); list-style: none; }
.hero-point { display: flex; gap: var(--space-3); align-items: flex-start; max-width: 220px; }
.hero-point .ico { width: 26px; height: 26px; color: var(--gold-500); margin-top: 2px; }
.hero-point strong {
  display: block; font-family: var(--font-display); font-weight: 600; font-size: 15px;
  color: var(--text-heading); line-height: 1.3;
}
.hero-point span { display: block; margin-top: 2px; font: var(--text-xs); color: var(--text-body); }


/* --------------------------------------------------------- 7. Tick lists */
.ticks { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.ticks--tight { gap: var(--space-2); }
.ticks li {
  display: flex; align-items: flex-start; gap: var(--space-3);
  font: var(--text-sm); color: var(--text-body);
}
.ticks li::before {
  content: "";
  flex: none; width: 20px; height: 20px; margin-top: 1px;
  border-radius: var(--radius-circle);
  background: var(--gold-500);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px 13px; background-position: center; background-repeat: no-repeat;
}
.ticks--green li::before { background-color: var(--green-500); }
.ticks--red li::before { background-color: var(--red-600); }
.ticks--inverse li { color: #cdd7e5; }

/* icon list — glyph + label rows (e.g. "Common legal issues") */
.icon-list { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.icon-list li { display: flex; align-items: flex-start; gap: var(--space-3); font: var(--text-sm); }
.icon-list .ico { color: var(--gold-500); margin-top: 2px; }
.icon-list a { color: var(--text-heading); }
.icon-list a:hover { color: var(--blue-600); }


/* ------------------------------------------------------------ 8. Badges */
.badge {
  display: inline-block; padding: 5px 12px;
  font-family: var(--font-display); font-weight: 600; font-size: 12px;
  text-transform: uppercase; letter-spacing: .06em;
  border-radius: var(--radius-pill);
  background: var(--gold-500); color: var(--navy-900);
}
.badge--green { background: var(--green-500); color: var(--white); }
.badge--navy  { background: var(--navy-800);  color: var(--white); }
.badge--red   { background: var(--red-600);   color: var(--white); }
.badge--neutral { background: var(--gray-100); color: var(--text-heading); }
.badge--outline {
  background: transparent; color: var(--gold-600);
  box-shadow: inset 0 0 0 1.5px var(--gold-500);
}


/* ------------------------------------------------------------- 9. Header */
/* Slim navy utility bar: hours + the mailboxes and numbers people ring most.
   Desktop only — the same details lead the mobile menu and the footer. */
.utility-bar {
  background: var(--navy-900);
  color: #cdd7e5;
  font: var(--text-xs);
}
.utility-bar .wrap {
  display: flex; align-items: center; justify-content: flex-end;
  gap: var(--space-6);
  min-height: 38px;
}
.utility-bar__hours { margin-right: auto; }
.utility-bar span, .utility-bar a { display: inline-flex; align-items: center; gap: var(--space-2); }
.utility-bar a { color: #cdd7e5; }
.utility-bar a:hover { color: var(--gold-400); }
.utility-bar .ico { width: 14px; height: 14px; color: var(--gold-500); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: var(--border-thin);
}
.site-header__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-6);
  min-height: 82px;
}
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { width: 148px; height: auto; display: block; }

.nav { display: flex; align-items: center; gap: 19px; }
.nav a {
  position: relative;
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--navy-800); padding-block: var(--space-2);
  white-space: nowrap;
}
.nav a:hover { color: var(--blue-600); }
.nav a[aria-current="page"] { color: var(--blue-600); }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--blue-600);
}

.nav__cta, .nav__contact { display: none; }

.header-phone {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
  color: var(--navy-800); white-space: nowrap;
}
.header-phone .ico { color: var(--gold-500); width: 18px; height: 18px; }
.header-phone:hover { color: var(--blue-600); }

.nav-toggle {
  display: none;
  align-items: center; justify-content: center; gap: var(--space-2);
  padding: 10px 14px;
  border: 1.5px solid var(--border-strong); border-radius: var(--radius-md);
  font: var(--text-label); text-transform: uppercase; letter-spacing: .08em;
  color: var(--navy-800);
}
.nav-toggle .ico--close { display: none; }
.nav-toggle[aria-expanded="true"] .ico--open { display: none; }
.nav-toggle[aria-expanded="true"] .ico--close { display: block; }


/* ------------------------------------------------------- 10. Breadcrumb */
.breadcrumb { padding-top: var(--space-5); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2); }
.breadcrumb li { display: flex; align-items: center; gap: var(--space-2); font: var(--text-xs); }
.breadcrumb li + li::before { content: "\203A"; color: var(--gray-300); }
.breadcrumb a { color: var(--blue-600); }
.breadcrumb [aria-current="page"] { color: var(--text-muted); }


/* ------------------------------------------------------------- 11. Hero */
.hero {
  display: grid;
  /* Copy runs slightly wider than the photo column: with the bleed the photo
     regains the difference, and the stacked hero headline gets room to breathe. */
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: var(--space-12);
  align-items: center;
  padding-block: var(--space-8) var(--space-20);
}
.hero__copy { display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-5); }
.hero__copy h1 {
  font: var(--text-hero);
  letter-spacing: var(--tracking-tight);
  text-wrap: balance;
}
.hero__copy > .lead { max-width: 46ch; }
.hero__media { position: relative; }
.hero__media img {
  display: block; width: 100%; height: 100%;
  aspect-ratio: 5 / 3; object-fit: cover;
  border-radius: var(--radius-lg);
  /* the brand fades hero photography into the page on its left edge */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 100%);
}
.hero__media .contact-card {
  position: absolute; right: 0; bottom: -28px;
  width: min(300px, 82%);
}
.hero--form { padding-block: var(--space-6) var(--space-10); align-items: start; }

/* Full-bleed variant: the photo runs off the right edge of the viewport, as it
   does on the live site. The band clips the overflow so the page never scrolls
   sideways; the hero's own bottom padding keeps the overhanging contact card
   inside the clip region. */
.hero-band { overflow: hidden; }
.hero--bleed .hero__media {
  margin-right: calc(-1 * (var(--container-pad) + (100vw - min(var(--container-max), 100vw)) / 2));
}
.hero--bleed .hero__media img { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.hero--bleed .hero__media .contact-card {
  right: calc(var(--container-pad) + (100vw - min(var(--container-max), 100vw)) / 2);
}


/* ----------------------------------------------------- 12. Contact card */
.contact-card {
  background: var(--surface-dark);
  color: #cdd7e5;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
}
.contact-card__head { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-3); }
.contact-card__head .medallion--outline { width: 44px; height: 44px; }
.contact-card__head .medallion--outline .ico { width: 20px; height: 20px; }
.contact-card__head strong {
  font-family: var(--font-display); font-weight: 600; font-size: 17px;
  color: var(--white); line-height: 1.25;
}
.contact-card p { font: var(--text-sm); }
.contact-card__tel {
  display: block; margin-top: var(--space-2);
  font-family: var(--font-display); font-weight: 800; font-size: 25px;
  letter-spacing: .01em; color: var(--gold-500);
}
.contact-card__tel:hover { color: var(--gold-400); }
.contact-card__hours { margin-top: var(--space-1); font: var(--text-sm); }
.contact-card hr { margin: var(--space-5) 0; border: 0; border-top: 1px solid rgba(255,255,255,.16); }
.contact-card a[href^="mailto"] { color: var(--white); font-weight: 600; word-break: break-word; }
.contact-card a[href^="mailto"]:hover { color: var(--gold-400); }
.contact-card--center { text-align: center; }
.contact-card--center .contact-card__head { flex-direction: column; gap: var(--space-2); }


/* ------------------------------------------------------- 13. Stat strip */
.stat-strip {
  background: var(--surface-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-6);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.stat-strip--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stat {
  text-align: center;
  padding-inline: var(--space-4);
  border-left: 1px solid rgba(255,255,255,.14);
}
.stat:first-child { border-left: 0; }
.stat .ico { width: 32px; height: 32px; color: var(--gold-500); }
.stat__value { margin-top: var(--space-3); font: var(--text-stat); color: var(--gold-500); }
.stat__label { margin-top: var(--space-2); font: var(--text-sm); color: #cdd7e5; }

/* light "why choose us" strip: gold outline icons over subtle background */
.reason-strip {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr));
  background: var(--surface-subtle);
  border: var(--border-thin); border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-4);
}
.reason { padding-inline: var(--space-5); border-left: var(--border-thin); }
.reason:first-child { border-left: 0; }
.reason .ico { width: 30px; height: 30px; color: var(--gold-500); }
.reason strong {
  display: block; margin-top: var(--space-3);
  font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--text-heading);
}
.reason span { display: block; margin-top: var(--space-1); font: var(--text-xs); color: var(--text-body); }


/* "What you gain" panel — navy, copy left, divided benefit columns right */
.gain-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2.1fr);
  gap: var(--space-10);
  align-items: center;
  background: var(--surface-dark);
  color: #cdd7e5;
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
}
.gain-panel h2 { color: var(--white); font: var(--text-h3); }
.gain-panel p { font: var(--text-sm); }
.gain-list { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.gain { text-align: center; padding-inline: var(--space-4); border-left: 1px solid rgba(255,255,255,.14); }
.gain:first-child { border-left: 0; }
.gain .ico { width: 28px; height: 28px; color: var(--gold-500); }
.gain strong {
  display: block; margin-top: var(--space-3);
  font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--white);
}
.gain span { display: block; margin-top: var(--space-1); font: var(--text-xs); }
.gain strong.stat-value { font: var(--text-stat); color: var(--gold-500); }


/* ---------------------------------------------------------- 14. Process */
.process { display: flex; align-items: flex-start; gap: var(--space-4); }
.process__step { flex: 1 1 0; display: flex; gap: var(--space-3); align-items: flex-start; }
.process__num {
  flex: none; width: 40px; height: 40px; border-radius: var(--radius-circle);
  background: var(--navy-800); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
}
.process__step .ico { width: 26px; height: 26px; color: var(--navy-800); margin-top: 7px; flex: none; }
.process__step strong {
  display: block;
  font: var(--text-label); text-transform: uppercase; letter-spacing: .04em;
  color: var(--text-heading);
}
.process__step p { margin-top: var(--space-1); font: var(--text-xs); color: var(--text-body); }
.process__sep { flex: none; align-self: center; color: var(--gray-300); width: 22px; height: 22px; }
/* inside a main column + rail layout there isn't room for one row of steps */
.split .process { flex-wrap: wrap; gap: var(--space-6) var(--space-4); }
.split .process__step { flex: 1 1 42%; }
.split .process__sep { display: none; }


/* -------------------------------------------------------- 15. Banner CTA */
.banner-cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-6);
  background: var(--surface-subtle);
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius-lg);
  padding: 26px 32px;
}
.banner-cta__body { display: flex; align-items: center; gap: var(--space-5); }
.banner-cta .ico--xl { color: var(--navy-800); }
.banner-cta strong {
  display: block; font-family: var(--font-display); font-weight: 600; font-size: 21px;
  color: var(--text-heading); line-height: 1.3;
}
.banner-cta p { margin-top: var(--space-1); font: var(--text-sm); color: var(--text-body); }
.banner-cta .btn { flex: none; }

/* ------------------------------------------------------------ 16. Forms */
.form-section + .form-section { margin-top: var(--space-10); }
.form-section > .section-title { font: var(--text-h3); padding-bottom: var(--space-3); }
.form-section__hint { margin-top: var(--space-3); font: var(--text-sm); color: var(--text-muted); }

.field-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-6);
}
.field-grid--1 { grid-template-columns: minmax(0, 1fr); }
.field--full { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: var(--space-2); }
/* a fieldset used as a field: strip the browser chrome, keep the field layout */
fieldset.field { border: 0; margin: 0; padding: 0; min-width: 0; }
.field > .choice-grid, .field > .choice-row { margin-top: var(--space-3); }
.field > label, .field > .field__label {
  font: var(--text-label); color: var(--text-heading);
}
.field .req { color: var(--red-600); margin-left: 2px; }
.field__help { font: var(--text-xs); color: var(--text-muted); }
.field__error { font: var(--text-xs); font-weight: 600; color: var(--red-600); display: none; }
.field.is-invalid .field__error { display: block; }

.input, .textarea, .select {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body); font-size: 15px;
  color: var(--text-heading); background: var(--white);
  border: 1px solid var(--border-strong); border-radius: var(--radius-md);
  transition: border-color var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard);
}
.input::placeholder, .textarea::placeholder { color: var(--gray-400); }
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(7, 87, 200, .16);
}
.textarea { min-height: 108px; resize: vertical; }
.select {
  appearance: none; padding-right: 40px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2345566B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px;
}
.field.is-invalid .input, .field.is-invalid .textarea, .field.is-invalid .select { border-color: var(--red-600); }

.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-3); }
.choice-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.choice-row { display: flex; flex-wrap: wrap; gap: var(--space-4) var(--space-6); }

.choice {
  display: flex; align-items: flex-start; gap: var(--space-3);
  font: var(--text-sm); color: var(--text-body);
  cursor: pointer;
}
.choice input { flex: none; width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--blue-600); cursor: pointer; }
.choice--boxed {
  padding: 11px 14px;
  border: var(--border-thin); border-radius: var(--radius-md);
  background: var(--white);
  transition: border-color var(--dur-base) var(--ease-standard), background var(--dur-base) var(--ease-standard);
}
.choice--boxed:hover { border-color: var(--border-strong); background: var(--gray-50); }
.choice--boxed:has(input:checked) { border-color: var(--blue-600); background: rgba(7, 87, 200, .04); }

/* consent tick and submit button sit a full step below the last field */
.consent, .form-actions { margin-top: var(--space-6); }
.field.consent { gap: var(--space-2); }

.form-privacy {
  display: flex; align-items: center; gap: var(--space-2);
  margin-top: var(--space-4);
  font: var(--text-xs); color: var(--text-muted);
}
.form-privacy .ico { width: 15px; height: 15px; color: var(--gold-500); }

.form-note {
  margin-top: var(--space-5);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  font: var(--text-sm);
}
.form-note--info { background: var(--gray-50); border: var(--border-thin); }
.form-note--error { background: rgba(227, 6, 19, .06); border: 1px solid rgba(227, 6, 19, .3); color: var(--text-heading); }
.form-note[hidden] { display: none; }
.form-note strong { display: block; margin-bottom: var(--space-2); font-family: var(--font-display); color: var(--text-heading); }


/* ------------------------------------------------------------ 18. Footer */
.site-footer { background: var(--surface-dark-deep); color: #cdd7e5; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: var(--space-10);
  padding-block: var(--space-16) var(--space-12);
}
.site-footer img.footer-logo { width: 132px; margin-bottom: var(--space-4); }
.site-footer p { font: var(--text-sm); max-width: 34ch; }
.site-footer h2 {
  font: var(--text-eyebrow-type); text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow); color: var(--gold-500);
  margin-bottom: var(--space-4);
}
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-2); }
.site-footer a { color: #cdd7e5; font: var(--text-sm); }
.site-footer a:hover { color: var(--white); }
.site-footer .contact-rows li { display: flex; align-items: flex-start; gap: var(--space-3); font: var(--text-sm); }
.site-footer .contact-rows .ico { color: var(--gold-500); width: 17px; height: 17px; margin-top: 3px; }

.socials { display: flex; gap: var(--space-3); margin-top: var(--space-5); }
.socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--radius-circle);
  border: 1.5px solid rgba(255,255,255,.28); color: #cdd7e5;
  transition: border-color var(--dur-base) var(--ease-standard), color var(--dur-base) var(--ease-standard);
}
.socials a:hover { border-color: var(--gold-500); color: var(--gold-500); }
.socials svg { width: 16px; height: 16px; }

.site-footer__legal { border-top: 1px solid rgba(255,255,255,.14); }
.site-footer__legal .wrap {
  display: flex; flex-wrap: wrap; gap: var(--space-4);
  align-items: center; justify-content: space-between;
  padding-block: var(--space-5);
  font: var(--text-xs);
}
.site-footer__legal nav { display: flex; flex-wrap: wrap; gap: var(--space-5); }


/* ------------------------------------------------------- 17. Page pieces */
/* uppercase section heading centred between two gold rules */
.rule-title {
  display: flex; align-items: center; justify-content: center; gap: var(--space-5);
  font: var(--text-h2); color: var(--text-heading);
  text-transform: uppercase; letter-spacing: .02em; text-align: center;
}
.rule-title::before, .rule-title::after {
  content: ""; height: 3px; width: 48px; flex: none; background: var(--gold-500);
}

.faq { border-top: var(--border-thin); }
.faq details { border-bottom: var(--border-thin); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: var(--space-5) 0; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--text-heading);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ico { color: var(--gold-500); transition: transform var(--dur-base) var(--ease-standard); }
.faq details[open] summary .ico { transform: rotate(180deg); }
.faq details > div { padding-bottom: var(--space-5); font: var(--text-base); color: var(--text-body); max-width: 78ch; }

.legal-copy { max-width: 76ch; }
.legal-copy h2 { font: var(--text-h3); margin-top: var(--space-10); margin-bottom: var(--space-3); }
.legal-copy h3 { font: var(--text-h4); margin-top: var(--space-6); margin-bottom: var(--space-2); text-transform: none; }
.legal-copy p, .legal-copy li { font: var(--text-base); color: var(--text-body); }
.legal-copy p + p { margin-top: var(--space-4); }
.legal-copy ul { list-style: disc; padding-left: 1.3em; margin-top: var(--space-3); display: flex; flex-direction: column; gap: var(--space-2); }


/* --------------------------------------------------------- 20. Reveal */
.reveal { opacity: 0; transform: translateY(14px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity var(--dur-slow) var(--ease-standard), transform var(--dur-slow) var(--ease-standard);
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-in { opacity: 1; transform: none; transition: none; }
}
.no-js .reveal { opacity: 1; transform: none; }


/* ------------------------------------------------------ 21. Responsive */
@media (max-width: 1400px) {
  .header-phone { display: none; }
}

@media (max-width: 1320px) {
  .nav { gap: 15px; }
  .nav a { font-size: 12.5px; letter-spacing: .03em; }
}

@media (max-width: 1180px) {
  :root { --section-y: 68px; }
  .stat-strip, .reason-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: var(--space-8); }
  .stat:nth-child(4), .reason:nth-child(4) { border-left: 0; }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1120px) {
  :root { --text-hero: 700 40px/1.14 var(--font-display); }
  .utility-bar { display: none; }
  .site-header__bar { min-height: 72px; }
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white);
    border-bottom: var(--border-thin);
    box-shadow: var(--shadow-lg);
    padding: var(--space-2) var(--container-pad) var(--space-5);
    max-height: calc(100vh - 72px); overflow-y: auto;
  }
  .nav.is-open { display: flex; }
  .nav { gap: 0; }
  .nav a { padding: 14px 0; border-bottom: var(--border-thin); font-size: 14px; }
  .nav a[aria-current="page"]::after { display: none; }
  /* Primary CTA in the drawer. `.nav a` above would otherwise flatten the
     button (its padding: 0 collapsed the gold fill to a sliver), so restate the
     button's own box here and match the height and tracking of the link rows so
     it reads as one of them — only louder. */
  .nav .nav__cta { display: block; margin-top: var(--space-5); }
  .nav .nav__cta a {
    padding: 15px 20px;
    font-size: 14px;
    letter-spacing: .03em;   /* identical tracking to the link rows at this width */
    color: var(--navy-900);
    background: var(--gold-500);
    border: 2px solid var(--gold-500);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
  }
  .nav .nav__cta a:hover {
    background: var(--gold-600);
    border-color: var(--gold-600);
    color: var(--navy-900);
  }
  .nav .nav__cta a .ico { width: 18px; height: 18px; }
  .nav .nav__contact {
    display: flex; flex-direction: column; gap: var(--space-3);
    margin-top: var(--space-5); padding-top: var(--space-5);
    border-top: var(--border-thin);
  }
  .nav .nav__contact a, .nav .nav__contact span {
    display: flex; align-items: center; gap: var(--space-3);
    padding: 0; border-bottom: 0;
    font-family: var(--font-body); font-size: 14px; font-weight: 600;
    letter-spacing: normal; text-transform: none; color: var(--navy-800);
  }
  .nav .nav__contact span { font-weight: 400; color: var(--text-muted); }
  .nav .nav__contact .ico { width: 16px; height: 16px; color: var(--gold-500); }

  .hero { grid-template-columns: minmax(0, 1fr); gap: var(--space-8); padding-bottom: var(--space-12); }
  .hero__copy h1 { max-width: 26ch; }
  .hero--bleed .hero__media { margin-right: 0; }
  .hero--bleed .hero__media img { border-radius: var(--radius-lg); }
  .hero__media img {
    aspect-ratio: 16 / 9;
    -webkit-mask-image: none; mask-image: none;
  }
  .hero__media .contact-card { position: static; width: 100%; margin-top: var(--space-5); }

  .split { grid-template-columns: minmax(0, 1fr); gap: var(--space-8); }
  .gain-panel { grid-template-columns: minmax(0, 1fr); gap: var(--space-8); }
  .rail { position: static; }
  .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-8); }
  .process { flex-wrap: wrap; gap: var(--space-6) var(--space-4); }
  .process__step { flex: 1 1 42%; }
  .process__sep { display: none; }
}

@media (max-width: 760px) {
  :root {
    --section-y: 52px;
    --text-hero: 700 33px/1.16 var(--font-display);
    --text-h1: 700 30px/1.18 var(--font-display);
    --text-h2: 700 24px/1.22 var(--font-display);
    --text-h3: 600 20px/1.26 var(--font-display);
    --text-stat: 800 32px/1 var(--font-display);
  }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: minmax(0, 1fr); }
  .field-grid, .choice-grid, .choice-grid--3 { grid-template-columns: minmax(0, 1fr); }
  .stat-strip, .reason-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); padding-inline: var(--space-4); }
  .gain-list { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: var(--space-6); }
  .gain:nth-child(odd) { border-left: 0; }
  .gain-panel { padding: var(--space-8) var(--space-6); }
  .stat, .reason { padding-inline: var(--space-3); }
  .stat:nth-child(odd), .reason:nth-child(odd) { border-left: 0; }
  .banner-cta { flex-direction: column; align-items: flex-start; padding: var(--space-6); }
  .banner-cta .btn { width: 100%; }
  .rule-title { font: var(--text-h2); gap: var(--space-3); }
  .rule-title::before, .rule-title::after { width: 22px; }
  .site-footer__grid { grid-template-columns: minmax(0, 1fr); }
  .site-footer__legal .wrap { flex-direction: column; align-items: flex-start; }
  .process__step { flex: 1 1 100%; }
  .hero-points { gap: var(--space-5); }
  .hero-point { max-width: none; flex: 1 1 100%; }
  .btn-row .btn { width: 100%; }
}

@media (max-width: 420px) {
  .brand img { width: 122px; }
  .contact-card__tel { font-size: 22px; }
}


/* ------------------------------------------------------------- 22. Print */
@media print {
  .site-header, .site-footer, .banner-cta, .nav-toggle, .skip-link { display: none !important; }
  body { color: #000; }
  .card, .feature { box-shadow: none; border: 1px solid #ccc; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
