/* ===========================================================================
   Ariel Plumbers & Gas Fitters — main stylesheet
   Mobile-first (375px canonical). All values read from tokens.css.
   =========================================================================== */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: var(--body-size);
  font-weight: var(--body-weight);
  line-height: var(--leading-body);
  color: var(--color-ink);
  background: var(--color-surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* page-load fade */
  opacity: 0;
  animation: pageIn 0.45s var(--ease) forwards;
  /* subtle grain — the one atmosphere technique for a GROWING-scale build */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}
@keyframes pageIn { to { opacity: 1; } }

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-display);
  font-weight: var(--h2-weight);
  text-wrap: balance;
}
h1 { font-size: var(--h1-size); font-weight: var(--h1-weight); }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); font-weight: var(--h3-weight); letter-spacing: -0.01em; }
p { text-wrap: pretty; }

/* ---- Layout primitives ---------------------------------------------------- */
.container { width: 100%; max-width: var(--container-max); margin-inline: auto; padding-inline: var(--space-3); }
.narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--space-8); }
.section--tight { padding-block: var(--space-6); }
main { display: block; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--font-body);
  font-size: var(--eyebrow-size);
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--color-accent); display: inline-block;
}
.eyebrow--on-dark { color: var(--color-accent-bright); }
.eyebrow--on-dark::before { background: var(--color-accent-bright); }

.lede { font-size: var(--lede-size); line-height: var(--leading-snug); color: var(--color-ink-muted); }
.muted { color: var(--color-ink-muted); }

/* ---- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  line-height: 1; text-decoration: none; cursor: pointer;
  padding: 1.05rem 1.6rem; border-radius: var(--radius-chip);
  border: 2px solid transparent; min-height: 52px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn svg { width: 1.05em; height: 1.05em; flex: none; }
.btn--primary { background: var(--color-accent); color: #fff; }
.btn--primary:hover { background: var(--color-accent-press); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--color-ink); border-color: var(--color-line); }
.btn--ghost:hover { border-color: var(--color-ink); transform: translateY(-2px); }
.btn--on-dark { background: transparent; color: var(--color-on-dark); border-color: rgba(245,241,232,0.4); }
.btn--on-dark:hover { border-color: var(--color-on-dark); background: rgba(245,241,232,0.08); transform: translateY(-2px); }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---- Header / nav --------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(21,23,28,0.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--color-line-dark);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); min-height: 70px; }

/* Logo / wordmark */
.brand { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.brand__flame { width: 24px; height: 30px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display); font-weight: 800; font-size: 1.32rem;
  letter-spacing: -0.01em; color: var(--color-on-dark); text-transform: uppercase;
}
.brand__name b { color: var(--color-accent-bright); font-weight: 800; }
.brand__sub {
  font-family: var(--font-body); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--color-on-dark-muted);
  margin-top: 4px;
}

.nav__links { display: none; }
.nav__cta { display: none; }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; justify-content: center;
  width: 46px; height: 46px; padding: 11px; background: transparent;
  border: 1px solid var(--color-line-dark); border-radius: 10px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--color-on-dark); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(86%, 360px); height: 100dvh;
  background: var(--color-surface-dark-2); z-index: 1100;
  transform: translateX(100%); transition: transform 0.32s var(--ease);
  padding: calc(70px + var(--space-3)) var(--space-4) var(--space-4);
  display: flex; flex-direction: column; gap: var(--space-1);
  border-left: 1px solid var(--color-line-dark);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  color: var(--color-on-dark); text-decoration: none; font-family: var(--font-display);
  font-weight: 700; font-size: 1.3rem; padding: 0.85rem 0; border-bottom: 1px solid var(--color-line-dark);
}
.mobile-nav a[aria-current="page"] { color: var(--color-accent-bright); }
.mobile-nav .btn { margin-top: var(--space-3); }
.mobile-nav__phone { margin-top: auto; color: var(--color-on-dark-muted); font-size: 0.9rem; }
.mobile-nav__phone a { color: var(--color-accent-bright); font-weight: 700; }
.nav-overlay {
  position: fixed; inset: 0; background: rgba(8,9,12,0.55); z-index: 1050;
  opacity: 0; pointer-events: none; transition: opacity 0.32s var(--ease);
}
.nav-overlay.visible { opacity: 1; pointer-events: auto; }

/* ---- Hero (split) --------------------------------------------------------- */
.hero { background: var(--color-surface-dark); color: var(--color-on-dark); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1fr; }
.hero__media { position: relative; order: -1; min-height: 46vh; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(21,23,28,0.15), rgba(21,23,28,0.55)); }
.hero__copy { padding: var(--space-6) var(--space-3) var(--space-6); display: flex; flex-direction: column; }
.hero__status {
  display: inline-flex; align-items: center; gap: 0.55em; align-self: flex-start;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-on-dark); background: rgba(28,50,90,0.92); border: 1px solid rgba(84,153,242,0.4);
  padding: 0.5em 0.95em; border-radius: var(--radius-chip); margin-bottom: var(--space-3);
}
.hero__status .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-accent-bright); box-shadow: 0 0 0 0 rgba(84,153,242,0.6); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(84,153,242,0.5);} 70%{box-shadow:0 0 0 9px rgba(84,153,242,0);} 100%{box-shadow:0 0 0 0 rgba(84,153,242,0);} }
.hero h1 { margin-bottom: var(--space-3); }
.hero h1 em { font-style: normal; color: var(--color-accent-bright); }
.hero__sub { font-size: var(--lede-size); color: var(--color-on-dark-muted); line-height: var(--leading-snug); margin-bottom: var(--space-4); max-width: 32ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.hero__meta { display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-4); margin-top: var(--space-5); padding-top: var(--space-4); border-top: 1px solid var(--color-line-dark); }
.hero__meta div { font-size: 0.9rem; color: var(--color-on-dark-muted); }
.hero__meta strong { display: block; font-family: var(--font-display); font-size: 1.45rem; font-weight: 800; color: var(--color-on-dark); letter-spacing: -0.01em; }

/* ---- Trust strip ---------------------------------------------------------- */
.trust { background: var(--color-surface-2); border-bottom: 1px solid var(--color-line); }
.trust__row { display: grid; grid-template-columns: 1fr; gap: var(--space-3); padding-block: var(--space-4); }
.trust__item { display: flex; align-items: center; gap: 0.8rem; }
.trust__item svg { width: 26px; height: 26px; flex: none; color: var(--color-accent); }
.trust__item b { font-family: var(--font-display); font-weight: 700; display: block; font-size: 1.02rem; letter-spacing: -0.01em; }
.trust__item span { font-size: 0.86rem; color: var(--color-ink-muted); }

/* ---- Section headers ------------------------------------------------------ */
.sec-head { max-width: 60ch; margin-bottom: var(--space-5); }
.sec-head h2 { margin-bottom: var(--space-2); }
.sec-head--center { margin-inline: auto; text-align: center; }

/* ---- Service cards (with imagery — never empty) --------------------------- */
.services { display: grid; grid-template-columns: 1fr; gap: var(--space-3); }
.service-card {
  position: relative; display: flex; flex-direction: column; text-decoration: none; color: var(--color-ink);
  background: var(--color-surface); border: 1px solid var(--color-line); border-radius: var(--radius-card);
  overflow: hidden; box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.service-card__media { overflow: hidden; aspect-ratio: 3 / 2; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__body { padding: var(--space-3) var(--space-3) var(--space-4); display: flex; flex-direction: column; flex: 1; }
.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { color: var(--color-ink-muted); font-size: 0.97rem; margin-bottom: var(--space-3); }
.service-card__more { margin-top: auto; font-weight: 700; color: var(--color-accent); display: inline-flex; align-items: center; gap: 0.4em; }
.service-card__more .arrow { transition: transform 0.25s var(--ease); }
.service-card:hover .service-card__more .arrow { transform: translateX(4px); }

/* ---- Feature / why list --------------------------------------------------- */
.why { background: var(--color-surface-dark); color: var(--color-on-dark); }
.why .lede { color: var(--color-on-dark-muted); }
.feature-list { display: grid; grid-template-columns: 1fr; gap: var(--space-3); margin-top: var(--space-5); }
.feature {
  background: var(--color-surface-dark-2); border: 1px solid var(--color-line-dark);
  border-radius: var(--radius-card); padding: var(--space-4);
}
.feature__num { font-family: var(--font-display); font-weight: 800; font-size: 0.95rem; color: var(--color-accent-bright); letter-spacing: 0.1em; }
.feature h3 { color: var(--color-on-dark); margin: 0.6rem 0 0.5rem; }
.feature p { color: var(--color-on-dark-muted); font-size: 0.97rem; }

/* ---- Stats ---------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4) var(--space-3); }
.stat strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 8vw, 3.4rem); color: var(--color-accent); letter-spacing: -0.02em; line-height: 1; }
.stat span { font-size: 0.9rem; color: var(--color-ink-muted); margin-top: 0.4rem; display: block; }

/* ---- Reviews -------------------------------------------------------------- */
.review-feature { border-left: 3px solid var(--color-accent); padding-left: var(--space-4); }
.review-feature blockquote { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.4rem, 3.4vw, 2.25rem); line-height: 1.25; letter-spacing: -0.01em; }
.review-feature blockquote span { color: var(--color-accent); }
.review-feature cite { display: block; margin-top: var(--space-3); font-style: normal; font-weight: 700; }
.review-feature cite small { display: block; font-weight: 400; color: var(--color-ink-muted); font-size: 0.85rem; margin-top: 2px; }
.review-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-3); margin-top: var(--space-5); }
.review {
  background: var(--color-surface); border: 1px solid var(--color-line); border-radius: var(--radius-card);
  padding: var(--space-4); box-shadow: var(--shadow-card);
}
.review p { font-size: 0.98rem; }
.review cite { display: block; margin-top: var(--space-2); font-style: normal; font-weight: 700; font-size: 0.92rem; }
.stars { display: inline-flex; gap: 2px; color: var(--color-ember); margin-bottom: var(--space-2); }
.stars svg { width: 17px; height: 17px; }

/* ---- Split content block (service pages, about) --------------------------- */
.split { display: grid; grid-template-columns: 1fr; gap: var(--space-5); align-items: center; }
.split__media { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.checklist { list-style: none; padding: 0; display: grid; gap: var(--space-2); margin-top: var(--space-3); }
.checklist li { display: flex; gap: 0.7rem; align-items: flex-start; }
.checklist svg { width: 22px; height: 22px; flex: none; color: var(--color-accent); margin-top: 2px; }

/* ---- Page hero (interior pages) ------------------------------------------- */
.page-hero { position: relative; background: var(--color-surface-dark); color: var(--color-on-dark); overflow: hidden; }
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.page-hero__media::after { content: ""; position: absolute; inset: 0; background: var(--scrim-band); }
.page-hero__inner { position: relative; padding-block: var(--space-8); }
.page-hero h1 { margin-bottom: var(--space-2); }
.page-hero p { color: var(--color-on-dark-muted); font-size: var(--lede-size); line-height: var(--leading-snug); max-width: 46ch; }
.crumb { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-accent-bright); margin-bottom: var(--space-2); font-weight: 700; }

/* ---- Process steps -------------------------------------------------------- */
.steps { display: grid; grid-template-columns: 1fr; gap: var(--space-4); counter-reset: step; }
.step { display: flex; gap: var(--space-3); align-items: flex-start; }
.step__n { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: #fff; background: var(--color-accent); width: 44px; height: 44px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.step h3 { margin-bottom: 0.3rem; }
.step p { color: var(--color-ink-muted); }

/* ---- CTA band ------------------------------------------------------------- */
.cta-band { position: relative; color: var(--color-on-dark); overflow: hidden; }
.cta-band__media { position: absolute; inset: 0; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__media::after { content: ""; position: absolute; inset: 0; background: var(--scrim-band); }
.cta-band--solid { background: var(--color-surface-dark); }
.cta-band--solid::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 50% 0%, rgba(84,153,242,0.12), transparent 60%); }
.cta-band__inner { position: relative; padding-block: var(--space-8); text-align: center; }
.cta-band h2 { margin-bottom: var(--space-2); }
.cta-band p { color: var(--color-on-dark-muted); font-size: var(--lede-size); max-width: 44ch; margin: 0 auto var(--space-4); }
.cta-band .hero__actions { justify-content: center; }
.cta-phone { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem,6vw,2.6rem); color: var(--color-on-dark); text-decoration: none; letter-spacing: -0.01em; display: inline-block; margin-bottom: var(--space-3); }
.cta-phone:hover { color: var(--color-accent-bright); }

/* ---- Inline link in running text (O-11) ----------------------------------- */
.link-inline { color: var(--color-accent); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.link-inline:hover { color: var(--color-accent-press); }
.on-dark .link-inline { color: var(--color-accent-bright); }

/* ---- Forms ---------------------------------------------------------------- */
.form-grid { display: grid; gap: var(--space-3); }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-weight: 700; font-size: 0.9rem; }
.field .req { color: var(--color-accent); }
input, textarea, select {
  width: 100%; font-family: var(--font-body); font-size: 16px; color: var(--color-ink);
  padding: 0.95rem 1rem; background: var(--color-surface); border: 1.5px solid var(--color-line);
  border-radius: var(--radius-input); -webkit-appearance: none; appearance: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(22,87,176,0.16); }
.form-note { font-size: 0.85rem; color: var(--color-ink-muted); }
.form-status { display: none; padding: var(--space-3); border-radius: var(--radius-input); background: rgba(22,87,176,0.1); border: 1px solid var(--color-accent); font-weight: 600; }
.form-status.show { display: block; }

/* ---- Contact info cards --------------------------------------------------- */
.info-list { list-style: none; padding: 0; display: grid; gap: var(--space-3); }
.info-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.info-list svg { width: 24px; height: 24px; flex: none; color: var(--color-accent); margin-top: 3px; }
.info-list b { font-family: var(--font-display); display: block; letter-spacing: -0.01em; }
.info-list a { color: var(--color-accent); text-decoration: none; font-weight: 600; }
.info-list a:hover { text-decoration: underline; }
.info-list span { color: var(--color-ink-muted); }

/* ---- Footer --------------------------------------------------------------- */
.site-footer { background: var(--color-surface-dark); color: var(--color-on-dark); padding-block: var(--space-6) var(--space-4); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
.footer-brand .brand { margin-bottom: var(--space-3); }
.footer-brand p { color: var(--color-on-dark-muted); font-size: 0.95rem; max-width: 38ch; }
.footer-col h4 { font-family: var(--font-display); font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-on-dark-muted); margin-bottom: var(--space-2); font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.footer-col a { color: var(--color-on-dark); text-decoration: none; font-size: 0.97rem; font-weight: 600; }
.footer-col a:hover { color: var(--color-accent-bright); }
.footer-phone { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--color-on-dark); text-decoration: none; letter-spacing: -0.01em; }
.footer-phone:hover { color: var(--color-accent-bright); }
.footer-bottom { margin-top: var(--space-5); padding-top: var(--space-4); border-top: 1px solid var(--color-line-dark); display: flex; flex-direction: column; gap: var(--space-2); font-size: 0.84rem; color: var(--color-on-dark-muted); }
.footer-bottom a { color: var(--color-on-dark-muted); }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: var(--space-3); }

/* ---- Sticky mobile call bar (bottom — never overlaps top nav toggle) ------ */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200;
  display: flex; gap: 0; background: var(--color-surface-dark-2);
  border-top: 1px solid var(--color-line-dark); box-shadow: 0 -8px 24px rgba(0,0,0,0.28);
}
.callbar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.95rem; min-height: 56px; text-decoration: none; font-weight: 700; }
.callbar a svg { width: 19px; height: 19px; }
.callbar .callbar--call { background: var(--color-accent); color: #fff; }
.callbar .callbar--quote { color: var(--color-on-dark); }
@media (min-width: 900px) { .callbar { display: none; } }
body { padding-bottom: 0; }
@media (max-width: 899px) { body.has-callbar { padding-bottom: 56px; } }

/* ---- 404 ------------------------------------------------------------------ */
.error-page { min-height: 62vh; display: flex; align-items: center; text-align: center; }
.error-page .code { font-family: var(--font-display); font-weight: 800; font-size: clamp(5rem, 22vw, 11rem); color: var(--color-accent); line-height: 0.9; letter-spacing: -0.03em; }

/* ---- Reveal animation ----------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  body { opacity: 1; animation: none; }
}

/* ===========================================================================
   Breakpoints
   =========================================================================== */
@media (min-width: 640px) {
  .trust__row { grid-template-columns: repeat(3, 1fr); }
  .services { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
}

@media (min-width: 900px) {
  .nav__links { display: flex; align-items: center; gap: var(--space-4); }
  .nav__links a {
    color: var(--color-on-dark); text-decoration: none; font-weight: 600; font-size: 0.97rem;
    position: relative; padding: 0.4rem 0;
  }
  .nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--color-accent-bright); transition: width 0.3s var(--ease); }
  .nav__links a:hover::after, .nav__links a[aria-current="page"]::after { width: 100%; }
  .nav__links a[aria-current="page"] { color: var(--color-accent-bright); }
  .nav__cta { display: inline-flex; }
  .nav-toggle, .mobile-nav, .nav-overlay { display: none; }

  .hero__grid { grid-template-columns: 1.05fr 0.95fr; align-items: stretch; }
  .hero__media { order: 0; min-height: auto; }
  .hero__copy { padding: var(--space-10) var(--space-6) var(--space-10) 0; justify-content: center; }
  .services { grid-template-columns: repeat(3, 1fr); }
  .feature-list { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .review-feature { padding-left: var(--space-6); }
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: 2; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: var(--space-5) var(--space-6); }
  .footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1.1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 1100px) {
  .hero__copy { padding-left: 0; }
}
