/* ==========================================================================
   Coastline Blinds — stylesheet
   1. Tokens
   2. Reset & base
   3. Layout helpers
   4. Header, nav, mobile menu
   5. Hero & credibility bar
   6. Cards, steps, features
   7. Product bands
   8. Gallery & before/after
   9. Reviews
   10. Tabs, FAQ, service map
   11. Quote form
   12. Footer & mobile action bar
   13. Motion
   14. Responsive
   ========================================================================== */

/* 1. TOKENS ================================================================ */
:root {
  --sand-50: #f7f9fb;
  --sand-100: #edf2f7;
  --sand-200: #d8e2ea;
  --stone-600: #5a6672;
  --stone-900: #16202b;
  --ocean-700: #17518f;
  --ocean-800: #0e3b6b;
  --sky-500: #29a9e0;
  --sky-700: #0f6fa8;
  --brass-500: #e9a400;
  --white: #fff;
  --error: #8c2f1e;

  --ink-on-dark: rgba(255, 255, 255, .86);
  --line-on-dark: rgba(255, 255, 255, .18);

  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1200px;
  --gutter: clamp(24px, 5vw, 48px);
  --section-y: clamp(64px, 10vh, 128px);
  --header-height: 115px;
  --radius: 8px;
  --radius-sm: 4px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* 2. RESET & BASE ========================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--sand-50);
  color: var(--stone-900);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6{
  margin: 0;
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.4;
}

p { margin: 0; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; }

a {
  color: var(--ocean-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { color: var(--ocean-800); }

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

.skip-link {
  position: absolute;
  top: 0;
  left: -9999px;
  z-index: 200;
  padding: 12px 20px;
  background: var(--ocean-700);
  color: #fff;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

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

/* 3. LAYOUT HELPERS ======================================================== */
/* The header is position:fixed and out of document flow, so every page's
   main content needs top clearance for it — except the homepage, whose
   .hero handles its own (larger) clearance so the background image can
   still extend up behind the transparent header. */
main { padding-top: var(--header-height); }
main:has(.hero) { padding-top: 0; }
main:has(.fq-hero) { padding-top: 0; }

.section { padding: var(--section-y) var(--gutter); }
.section--sand { background: var(--sand-50); }
.section--mist { background: var(--sand-100); }
.section--flush-bottom { padding-bottom: 0; }
.wrap { max-width: var(--wrap); margin-inline: auto; }
.wrap--narrow { max-width: 860px; }

.eyebrow {
  margin: 0;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sky-700);
}
.eyebrow a { color: inherit; }
.eyebrow--brass { color: var(--brass-500); }

.section-title {
  margin-top: 12px;
  font-size: clamp(1.6rem, 3.4vw, 2.9rem);
}
.section-title + .lede { margin-top: 20px; }
.section-title--band-intro { margin-top: 0; margin-bottom: 40px; }

.section-intro {
  margin-top: 16px;
  max-width: 60ch;
  color: var(--stone-600);
}
.section-intro + .lede { margin-top: 24px; }

.lede { color: var(--stone-600); max-width: 68ch; }
.lede + .lede { margin-top: 16px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 30px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease-out, background-color .2s, border-color .2s, color .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--ocean-700); border-color: var(--ocean-700); color: #fff; }
.btn--primary:hover { background: var(--ocean-800); border-color: var(--ocean-800); color: #fff; }
.btn--ghost { background: transparent; border-color: rgba(255, 255, 255, .5); color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, .1); color: #fff; }
.btn--accent { background: var(--brass-500); border-color: var(--brass-500); color: #221b10; width: 100%; padding: 17px; }
.btn--accent:hover { background: #d59700; border-color: #d59700; }
.btn.is-loading { position: relative; color: transparent; pointer-events: none; }
.btn.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(34, 27, 16, .35);
  border-top-color: #221b10;
  border-radius: 50%;
  animation: btnSpin .7s linear infinite;
}
@keyframes btnSpin { to { transform: rotate(360deg); } }
.btn--white { background: var(--white); border-color: var(--white); color: var(--ocean-700); }
.btn--white:hover { background: var(--ocean-800); border-color: var(--ocean-800); color: #fff; }
.btn--gold { background: var(--brass-500); border-color: var(--brass-500); color: #221b10; }
.btn--gold:hover { background: #d59700; border-color: #d59700; color: #221b10; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--brass-500);
  font-weight: 500;
  text-decoration: none;
}

.center-row { display: flex; justify-content: center; margin-top: 56px; }
.cta-row { margin-top: 32px; }

.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  font-size: .9375rem;
}
.link-list--stacked { flex-direction: column; align-items: flex-start; gap: 16px; }

.jumpcard {
  padding: 28px;
  background: var(--sand-100);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius);
}
.jumpcard__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.jump {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-sm);
  color: var(--stone-900);
  font-size: .9375rem;
  text-decoration: none;
  transition: background-color .2s, border-color .2s, color .2s;
}
.jump span { color: var(--brass-500); }
.jump:hover { background: var(--sand-100); border-color: var(--ocean-700); color: var(--ocean-800); }

/* 4. HEADER / NAV ========================================================== */
.topbar-wrap {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
}

.utility {
  display: flex;
  align-items: center;
  height: 40px;
  padding-inline: var(--gutter);
  background: var(--ocean-700);
  color: #fff;
}
.utility__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
}
.utility__note { font-size: .8125rem; }
.utility__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  color: #fff;
  font-size: .8125rem;
  font-weight: 500;
  text-decoration: none;
}

.header {
  padding-inline: var(--gutter);
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background .25s ease-out, box-shadow .25s ease-out, border-color .25s;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 32px);
  max-width: var(--wrap);
  margin-inline: auto;
  padding-block: 14px;
}

.logo { flex: none; display: block; line-height: 0; }
.logo img { height: 46px; width: auto; }
.logo__colour { display: none; }

.is-solid .header {
  background: var(--sand-50);
  border-bottom-color: var(--sand-200);
  box-shadow: 0 2px 16px rgba(9, 24, 41, .08);
}
.is-solid .logo__white { display: none; }
.is-solid .logo__colour { display: block; }

.nav { margin-left: auto; min-width: 0; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__item { position: relative; }
.nav__link,
.nav__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border: 0;
  border-radius: var(--radius-sm);
  background: none;
  color: #fff;
  font-size: .9375rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}
.nav__link:hover,
.nav__toggle:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 7px;
  text-decoration-thickness: 1px;
}
.is-solid .nav__link,
.is-solid .nav__toggle,
.is-solid .nav__burger { color: var(--stone-900); }
.is-solid .nav__link:hover,
.is-solid .nav__toggle:hover { color: var(--stone-900); }

.nav__drop {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 224px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(9, 24, 41, .1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease-out, transform .18s ease-out, visibility .18s;
}
.nav__item:hover > .nav__drop,
.nav__item:focus-within > .nav__drop,
.nav__item.is-open > .nav__drop {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav__drop a {
  display: block;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  color: var(--stone-900);
  font-size: .9375rem;
  text-decoration: none;
}
.nav__drop a:hover { background: var(--sand-100); color: var(--stone-900); }
.nav__drop a.is-all {
  margin-top: 4px;
  border-top: 1px solid var(--sand-200);
  color: var(--ocean-700);
  font-size: .875rem;
  font-weight: 500;
}

.header__cta { flex: none; padding: 12px 22px; font-size: .9375rem; white-space: nowrap; }

.nav__burger {
  display: none;
  margin-left: auto;
  padding: 9px 10px;
  background: none;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: var(--radius-sm);
  color: #fff;
  cursor: pointer;
}
.is-solid .nav__burger { border-color: var(--sand-200); }

/* Mobile overlay menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  padding: 20px clamp(20px, 6vw, 32px) 40px;
  background: var(--sand-50);
  overflow-y: auto;
}
.mobile-menu.is-open { display: block; }
.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.mobile-menu__head img { height: 40px; width: auto; }
.mobile-menu__close {
  padding: 10px;
  background: none;
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-sm);
  color: var(--stone-900);
  cursor: pointer;
  display: block;
  line-height: 1;
}
.mobile-menu__body { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu__group,
.mobile-menu__link { border-bottom: 1px solid var(--sand-200); }
.mobile-menu__link {
  padding: 16px 0;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--stone-900);
  text-decoration: none;
}
.mobile-menu__group > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--stone-900);
}
.mobile-menu__sub {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 16px;
}
.mobile-menu__sub a { padding: 8px 0; color: var(--stone-600); text-decoration: none; }
.mobile-menu__sub a.is-all { color: var(--ocean-700); font-weight: 500; }
.mobile-menu__cta {
  margin-top: 24px;
  padding: 16px;
  background: var(--ocean-700);
  border-radius: var(--radius-sm);
  color: #fff;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
}

/* details +/- markers */
details > summary { list-style: none; cursor: pointer; }
details > summary::-webkit-details-marker { display: none; }
.marker {
  font-family: var(--sans);
  font-size: 1.2rem;
  color: var(--brass-500);
}
.marker::after { content: "+"; }
details[open] > summary .marker::after { content: "\2013"; }

/* 5. HERO & CREDIBILITY ==================================================== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 88vh;
  background: var(--stone-900);
  overflow: hidden;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 24, 41, .88) 0%, rgba(9, 24, 41, .68) 42%, rgba(9, 24, 41, .12) 82%);
}
.hero__inner {
  position: relative;
  width: 100%;
  max-width: calc(var(--wrap) + 2 * var(--gutter));
  margin-inline: auto;
  padding: 180px var(--gutter) 88px;
}
/* Subpage hero — same treatment as the homepage hero, just shorter. */
.hero--compact { min-height: 62vh; }
.hero--compact .hero__inner { padding: 200px var(--gutter) 90px; }
.hero__content { max-width: 640px; }
.hero__eyebrow { color: var(--sky-500); margin-bottom: 20px; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  font-size: .8125rem;
  color: rgba(255, 255, 255, .72);
}
.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb .sep { color: var(--brass-500); }
.breadcrumb [aria-current] { color: #fff; }
.check-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border: 1px solid var(--brass-500);
  border-radius: 50%;
}
.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.08;
  color: #fff;
}
.hero__text {
  margin-top: 24px;
  max-width: 56ch;
  color: var(--ink-on-dark);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.credbar { background: var(--ocean-700); padding-inline: var(--gutter); }
.credbar__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.credbar__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 20px;
  border-left: 1px solid var(--line-on-dark);
  color: #fff;
  font-size: .9375rem;
  line-height: 1.35;
}
.credbar__list li:first-child { padding-left: 0; border-left: 0; }
.credbar__list svg { flex: none; }

/* 6. CARDS / STEPS / FEATURES ============================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.card__media {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
}
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card h3 { margin-top: 24px; font-size: 1.5rem; }
.card p { margin-top: 10px; max-width: 44ch; color: var(--stone-600); }
.card-link { display: block; text-decoration: none; color: inherit; }
.card .band__note { margin-top: 24px; max-width: none; }

.detaillist { display: flex; flex-direction: column; gap: 26px; margin-top: 28px; }
.detaillist__item { padding-top: 22px; border-top: 1px solid var(--sand-200); }
.detaillist__item:first-child { padding-top: 0; border-top: 0; }
.detaillist__item h3 { font-size: .9375rem; font-family: var(--sans); font-weight: 500; }
.detaillist__item p { margin-top: 8px; color: var(--stone-600); font-size: .9375rem; max-width: 44ch; }
.detaillist__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-size: 1.3rem;
  font-weight: 500;
  text-decoration: none;
}

.notebox {
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px dashed var(--sand-200);
  border-radius: var(--radius);
  max-width: 60ch;
}
.notebox__label {
  font-size: .8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--brass-500);
}
.notebox p { margin-top: 10px; font-size: .9375rem; color: var(--stone-600); }
.notebox--dark { border-color: rgba(255, 255, 255, .45); }
.notebox--dark .notebox__label { color: var(--brass-500); }
.notebox--dark p { color: rgba(255, 255, 255, .85); }
.notebox--dark p + p { color: rgba(255, 255, 255, .7); font-size: .875rem; }

.pullquote {
  margin-top: 20px;
  max-width: 44ch;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--stone-900);
}

.info-rows { margin-top: 48px; border-top: 1px solid var(--sand-200); }
.info-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--sand-200);
}
.info-row__label { font-weight: 500; }
.info-row__desc { color: var(--stone-600); }

.steps {
  position: relative;
  display: grid;
  gap: 40px;
  margin-top: 56px;
}
.steps__rule {
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--brass-500);
  opacity: .45;
}
.step { position: relative; }
.step__num {
  display: block;
  width: fit-content;
  padding-right: 14px;
  background: var(--sand-100);
  font-family: var(--serif);
  font-size: 3.25rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--brass-500);
}
.step h3 { margin-top: 20px; font-size: 1.3rem; }
.step p { margin-top: 10px; max-width: 40ch; color: var(--stone-600); }

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px 56px;
  margin-top: 56px;
}
.features--4col { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.feature h3 {
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0;
}
.feature p { margin-top: 8px; font-size: 1rem; color: var(--stone-600); }

/* 7. PRODUCT BANDS ========================================================= */
.band { display: grid; grid-template-columns: 1fr; }
.band--sand { background: var(--sand-50); }
.band--mist { background: var(--sand-100); }
.band__media { min-height: 320px; overflow: hidden; }
.band__media--crop43 { aspect-ratio: 4 / 3; }
.band__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}
.band__body { display: flex;flex-direction: column;justify-content: center;padding: clamp(48px, 5vh, 96px) clamp(30px, 5vw, 72px); }
.band__body h2 { margin-top: 12px; margin-bottom:20px;font-size: clamp(1.6rem, 3vw, 2.4rem); }
.band__body .lede:first-of-type { margin-top: 20px; }
.band__note {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--sand-200);
  font-size: .9375rem;
  color: var(--stone-900);
}
.band__note strong { font-weight: 500; }

.band--dark { background: var(--ocean-700); }
.band--dark .eyebrow { color: var(--brass-500); }
.band--dark h2 { color: #fff; }
.band--dark .lede { color: rgba(255, 255, 255, .85); }

/* 8. GALLERY & BEFORE/AFTER ================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.tile {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.tile figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 16px 16px;
  background: linear-gradient(180deg, rgba(9, 24, 41, 0), rgba(9, 24, 41, .85));
  color: #fff;
  font-size: .875rem;
  opacity: 0;
  transition: opacity .25s ease-out;
}
.tile:hover figcaption,
.tile:focus-within figcaption { opacity: 1; }

.compare { margin: 0; }
.compare__stage {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sand-200);
}
.compare__after,
.compare__before img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.compare__before {
  position: absolute;
  inset: 0;
  clip-path: inset(0 50% 0 0);
}
.compare__tag {
  position: absolute;
  top: 14px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.compare__tag--before { left: 14px; background: rgba(9, 24, 41, .72); }
.compare__tag--after { right: 14px; background: rgba(23, 81, 143, .85); }
.compare__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  transform: translateX(-1px);
}
.compare__grip {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--ocean-700);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(9, 24, 41, .25);
  transform: translate(-50%, -50%);
}
.compare__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
}
.compare__range::-webkit-slider-thumb { -webkit-appearance: none; width: 52px; height: 100%; }
.compare__range::-moz-range-thumb { width: 52px; height: 100%; border: 0; background: transparent; }
.compare__stage:focus-within { outline: 2px solid var(--sky-500); outline-offset: 3px; }
.compare figcaption { margin-top: 14px; font-size: .9375rem; color: var(--stone-600); }
.compare figcaption strong { color: var(--stone-900); font-weight: 500; }

.gallery-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.filterbar { display: flex; flex-wrap: wrap; gap: 8px; }
.fbtn {
  padding: 11px 20px;
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-sm);
  color: var(--stone-900);
  font-size: .9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color .2s, border-color .2s, color .2s;
}
.fbtn:hover { border-color: var(--ocean-700); }
.fbtn[aria-pressed="true"] { background: var(--ocean-700); border-color: var(--ocean-700); color: #fff; }
.gcount { margin-top: 20px; font-size: .875rem; color: var(--stone-600); }
.gnote { margin-top: 8px; font-size: .8125rem; color: var(--stone-600); max-width: 60ch; }

.ggrid { column-count: 1; column-gap: 24px; margin-top: 32px; }
.gcard {
  position: relative;
  margin: 0 0 24px;
  break-inside: avoid;
  overflow: hidden;
  border-radius: var(--radius);
}
.gcard[hidden] { display: none; }
.gopen { all: unset; display: block; width: 100%; cursor: zoom-in; }
.gopen img { display: block; width: 100%; height: auto; transition: transform .4s var(--ease); }
.gopen:hover img,
.gopen:focus-visible img { transform: scale(1.03); }
.gcard figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 16px 16px;
  background: linear-gradient(180deg, rgba(9, 24, 41, 0), rgba(9, 24, 41, .85));
  color: #fff;
  font-size: .875rem;
  opacity: 0;
  transition: opacity .25s ease-out;
  pointer-events: none;
}
.gcard:hover figcaption,
.gcard:focus-within figcaption { opacity: 1; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 56px);
  background: rgba(9, 24, 41, .94);
}
.lightbox.is-open { display: flex; }
.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: var(--radius-sm);
  color: #fff;
  cursor: pointer;
}
.lightbox__close {
  top: clamp(16px, 3vw, 32px);
  right: clamp(16px, 3vw, 32px);
  min-width: 48px;
  min-height: 48px;
  background: none;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  min-width: 52px;
  min-height: 52px;
  background: rgba(9, 24, 41, .5);
}
.lightbox__nav--prev { left: clamp(8px, 2vw, 28px); }
.lightbox__nav--next { right: clamp(8px, 2vw, 28px); }
.lightbox__figure {
  margin: 0;
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.lightbox__img { max-width: 100%; max-height: 74vh; width: auto; border-radius: var(--radius); transition: opacity .18s ease-out; }
.lightbox__caption { color: rgba(255, 255, 255, .86); font-size: .9375rem; text-align: center; }
.lightbox__count { color: rgba(255, 255, 255, .55); font-size: .8125rem; letter-spacing: .06em; }

.promo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.promo__text { max-width: 52ch; }
.promo__text h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); }
.promo__text p { margin-top: 14px; color: var(--stone-600); }
.promo__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.promo--dark { background: var(--ocean-700); }
.promo--dark .promo__text h2 { color: #fff; }
.promo--dark .promo__text p { color: rgba(255, 255, 255, .85); }

/* Free Quote landing page — stripped header/footer, no site nav */
.minihead { background: var(--stone-900); position: relative; z-index: 5; }
.minihead__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.minihead__logo { display: block; flex: none; line-height: 0; }
.minihead__logo img { height: 44px; width: auto; }
.minihead__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.fq-hero { position: relative; background: var(--stone-900); overflow: hidden; }
.fq-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fq-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 24, 41, .95) 0%, rgba(9, 24, 41, .86) 52%, rgba(9, 24, 41, .62) 100%);
}
.fq-hero__inner {
  position: relative;
  max-width: var(--wrap);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: start;
  padding: var(--section-y) var(--gutter) clamp(48px, 8vh, 88px);
}
.fq-hero__title { font-size: clamp(2.1rem, 4.4vw, 3.2rem); line-height: 1.1; letter-spacing: -.02em; color: #fff; }
.fq-hero__text { margin-top: 22px; font-size: 1.0625rem; line-height: 1.7; color: rgba(255, 255, 255, .86); max-width: 54ch; }
.fq-hero__ticks {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.0625rem;
}
.fq-hero__ticks li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255, 255, 255, .9); }
.fq-hero__ticks svg { flex: none; margin-top: 3px; }
.fq-hero__form h2 { font-size: 1.5rem; letter-spacing: -.01em; color: #fff; margin-bottom: 18px; }
@media (min-width: 900px) {
  .fq-hero__inner { grid-template-columns: minmax(0, 45fr) minmax(0, 55fr); }
}

.minifoot { background: var(--stone-900); color: rgba(255, 255, 255, .72); padding: 32px var(--gutter); }
.minifoot__row {
  max-width: var(--wrap);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
  font-size: .875rem;
}
.minifoot__row a { color: rgba(255, 255, 255, .72); text-decoration: none; }
.minifoot__row a:first-child { color: #fff; font-weight: 500; }
.minifoot__copy { margin-left: auto; }

/* 9. REVIEWS =============================================================== */
.stars { color: var(--brass-500); letter-spacing: 2px; }

/* 10. TABS / FAQ / MAP ===================================================== */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin-top: 36px;
  border-bottom: 1px solid var(--sand-200);
}
.tab {
  margin-bottom: -1px;
  padding: 14px 2px;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--stone-600);
  font-size: 1.0625rem;
  font-weight: 500;
  cursor: pointer;
  transition: color .2s, border-color .2s;
}
.tab:hover { color: var(--stone-900); }
.tab[aria-selected="true"] { color: var(--stone-900); border-bottom-color: var(--brass-500); }
.tabpanel { padding-top: 40px; }

.faq { border-top: 1px solid var(--sand-200); }
.faq details { border-bottom: 1px solid var(--sand-200); }
.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--stone-900);
}
.faq p { padding: 0 40px 24px 0; color: var(--stone-600); }
.plus {
  position: relative;
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 6px;
}
.plus::before,
.plus::after {
  content: "";
  position: absolute;
  background: var(--brass-500);
}
.plus::before { top: 7px; left: 0; width: 16px; height: 2px; }
.plus::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
  transition: transform .2s, opacity .2s;
}
details[open] .plus::after { transform: rotate(90deg); opacity: 0; }

.maprow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
.maprow h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.maprow > div > p { margin-top: 18px; max-width: 60ch; color: var(--stone-600); }
.suburbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  font-size: .9375rem;
}
.suburbs a {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  background: var(--ocean-700);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color .2s;
}
.suburbs a:hover { background: var(--ocean-800); color: #fff; }
.mapcard {
  padding: 16px;
  background: #e6eef4;
  border: 1px solid var(--sand-200);
  border-radius: var(--radius);
}
.mapcard svg { display: block; width: 100%; height: auto; border-radius: var(--radius-sm); }
.mapcard p { margin-top: 12px; font-size: .8125rem; color: var(--stone-600); }

/* 11. QUOTE FORM =========================================================== */
.quote { background: var(--ocean-700); }
.quote h2 { color: #fff; }
.quote__intro { margin-top: 16px; color: rgba(255, 255, 255, .82); }
.quote .lede { color: rgba(255, 255, 255, .82); }
.quote .link-arrow { color: #fff; }
.quote .link-arrow:hover { color: var(--brass-500); }
.quote__lead { max-width: 640px; }
.quote__lead .section-title { margin-top: 0; }
.quote__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}
.quote__split--center { align-items: center; }
.form {
  padding: clamp(24px, 4vw, 40px);
  background: var(--white);
  border-radius: var(--radius);
}
.form__fields { display: grid; gap: 24px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.field label,
.field legend {
  display: block;
  margin-bottom: 8px;
  padding: 0;
  font-size: .875rem;
  font-weight: 500;
}
.req { color: var(--brass-500); }
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field textarea,
.field select {
  width: 100%;
  padding: 14px;
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-sm);
  color: var(--stone-900);
  font-family: var(--sans);
  font-size: 1rem;
}
.field textarea { resize: vertical;display: block; }
.field [aria-invalid="true"] { border-color: var(--error); }
.field__error {
  display: none;
  margin-top: 6px;
  font-size: .8125rem;
  color: var(--error);
}
.field__error.is-shown { display: block; }
fieldset { margin: 0; padding: 0; border: 0; }
fieldset legend { margin-bottom: 12px; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  position: relative;
  display: inline-flex;
  align-items: center;
      line-height: 1.4;
    padding: 11px 20px !important;
  background: var(--white);
  border: 1.5px solid var(--sand-200);
  border-radius: 999px;
  font-size: .9375rem;
  color: var(--stone-900);
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
}
.chip:hover { border-color: var(--ocean-700); }
.chip input {
  appearance: none;
  -webkit-appearance: none;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.chip:has(input:checked) {
  border-color: var(--ocean-700);
  box-shadow: 0 0 0 1px var(--ocean-700);
}
.chip:has(input:focus-visible) { outline: 2px solid var(--brass-500); outline-offset: 2px; }

.form__note {
  margin-top: 12px;
  font-size: .8125rem;
  color: var(--stone-600);
  text-align: center;
}
.form__submit-error {
  display: none;
  margin-top: 12px;
  font-size: .8125rem;
  color: var(--error);
  text-align: center;
}
.form__submit-error.is-shown { display: block; }

.quote__aside { color: #fff; }
.quote__aside h3 { font-size: 1.5rem; color: #fff; }
.quote__contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}
.quote__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
}
.quote__contacts a:first-child { color: #fff; font-size: 1.15rem; font-weight: 500; }
.quote__photo { margin-top: 28px; border-radius: var(--radius); }
.quote__hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .82);
  font-size: .9375rem;
}

/* 12. FOOTER & MOBILE BAR ================================================== */
.footer {
  padding: clamp(56px, 8vh, 96px) var(--gutter) 0;
  background: var(--stone-900);
  color: rgba(255, 255, 255, .75);
}
.footer a { color: rgba(255, 255, 255, .75); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
}
.footer__brand { max-width: 38ch; }
.footer__brand img { height: 44px; width: auto; }
.footer__brand p { margin-top: 20px; font-size: .9375rem; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--radius-sm);
  color: #fff;
}
.footer h3 {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sky-500);
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  font-size: .9375rem;
}
.footer__acc { margin-top: 28px; border-top: 1px solid rgba(255, 255, 255, .14); }
.footer__acc > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sky-500);
}
.footer__acc .footer__list { margin: 0 0 8px; }
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
  font-size: .9375rem;
}
.footer__contact a:first-child { color: #fff; font-weight: 500; }

.gbp {
  display: block;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  overflow: hidden;
}
.gbp iframe {
  display: block;
  width: 100%;
  height: 150px;
  border: 0;
  background: #0f1a24;
  pointer-events: none;
}
.gbp__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .05);
  font-size: .8125rem;
  color: rgba(255, 255, 255, .8);
}
.gbp__meta svg { flex: none; }
.gbp:hover .gbp__meta { background: rgba(255, 255, 255, .1); }

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 24px;
  margin-top: 40px;
  padding: 22px 0 100px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .8125rem;
}

.actionbar {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: 70;
  gap: 10px;
  padding: 10px 12px;
  background: var(--sand-50);
  border-top: 1px solid var(--sand-200);
}
.actionbar a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border: 1px solid var(--ocean-700);
  border-radius: var(--radius-sm);
  color: var(--ocean-700);
  font-weight: 500;
  text-decoration: none;
}
.actionbar a.is-primary { background: var(--ocean-700); color: #fff; }

/* 13. MOTION =============================================================== */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
.animate-in { animation: heroIn .8s var(--ease) both; }
.animate-in--1 { animation-delay: .05s; }
.animate-in--2 { animation-delay: .14s; }
.animate-in--3 { animation-delay: .23s; }
.animate-in--4 { animation-delay: .32s; }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s ease-out, transform .4s ease-out;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal img { transform: scale(1.05); transition: transform 1.1s var(--ease); }
.reveal.is-visible img { transform: none; }
.card:hover img,
.card:focus-within img,
.tile:hover img,
.tile:focus-within img { transform: scale(1.04); }

/* EXIT-INTENT POPUP ========================================================= */
.exitpopup {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 56px);
  background: rgba(9, 24, 41, .72);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility 0s linear .28s;
}
.exitpopup.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity .28s ease;
}
.exitpopup__panel {
  position: relative;
  max-width: 440px;
  width: 100%;
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
  text-align: center;
  transform: translateY(14px) scale(.97);
  transition: transform .28s ease;
}
.exitpopup.is-open .exitpopup__panel { transform: translateY(0) scale(1); }
.exitpopup__panel h2 { margin-top: 8px; font-size: clamp(1.5rem, 3vw, 1.9rem); }
.exitpopup__panel p { margin-top: 14px; color: var(--stone-600); }
.exitpopup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--sand-200);
  border-radius: 50%;
  background: none;
  color: var(--stone-600);
  cursor: pointer;
}
.exitpopup__actions { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 24px; }
.exitpopup__phone { color: var(--stone-600); font-size: .9375rem; }

/* 14. RESPONSIVE =========================================================== */
@media (min-width: 640px) {
  .ggrid { column-count: 2; }
}

@media (min-width: 900px) {
  .band { grid-template-columns: minmax(0, 55fr) minmax(0, 45fr); align-items: stretch; }
  .band--reverse .band__media { order: 2; }
  .band__media { height: 100%; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .quote__split { grid-template-columns: 1.4fr 1fr; }
  .maprow { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .ggrid { column-count: 3; }
}

@media (min-width: 1024px) {
  .nav__burger { display: none; }
}

@media (max-width: 1140px) and (min-width: 1024px) {
  .nav__list { gap: 0; }
  .nav__link,
  .nav__toggle { padding-inline: 9px; font-size: .875rem; }
}

@media (max-width: 1023px) {
  .desktop-only { display: none !important; }
  .exitpopup { display: none !important; }
  .nav__burger { display: inline-flex; }
  .actionbar { display: flex; }
  .hero__inner { padding-top: 132px; }
  .hero--compact .hero__inner { padding-top: 108px; }
  .steps__rule { display: none; }
  body { font-size: 1rem; }
}

@media (max-width: 767px) {
  body { font-size: .9375rem; }
  :root {
    --gutter: 30px;
    --section-y: 40px;
  }
  .form__row { grid-template-columns: 1fr; }
  .info-row { grid-template-columns: 1fr; gap: 6px; }
  .credbar__list{
    display: grid;
    flex-direction: column;
    grid-template-columns: unset;
    padding: 15px 0;
  }
  .credbar__list li {
    border-left: 0;
    padding: 12px 0px;
  }
}

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

/* 14. UTILITIES ============================================================
   One-off spacing/width tweaks that don't warrant a named component class.
   !important because these need to win over higher-specificity component
   rules too (e.g. ".lede + .lede"), not just same-specificity defaults. */
.divlist { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; max-width: 64ch; }
.divlist__item { padding-left: 20px; border-left: 2px solid var(--brass-500); }
.divlist__item h3 { font-size: 1.15rem; font-family: var(--sans); font-weight: 500; color: #fff; }
.divlist__item p { margin-top: 8px; color: rgba(255, 255, 255, .85); }
.divlist__item--top {
  padding-left: 0;
  padding-top: 24px;
  border-left: 0;
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.infogrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.infocard {
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius);
  padding: 26px;
}
.infocard h3 { font-size: 1.15rem; font-family: var(--sans); font-weight: 500; }
.infocard p { margin-top: 10px; color: var(--stone-600); font-size: 1rem; }
.infocard--lg h3 { font-size: 1.25rem; font-family: var(--serif); font-weight: 400; }
.infocard--lg p { margin-top: 12px; }
.infocard--dark { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .22); }
.infocard--dark h3 { color: #fff; }
.infocard--dark p { color: rgba(255, 255, 255, .85); }

.compare-table {
  margin-top: 44px;
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius);
}
.compare-table table { width: 100%; min-width: 640px; border-collapse: collapse; }
.compare-table th,
.compare-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--sand-200);
  font-size: .9375rem;
  white-space: nowrap;
}
.compare-table thead th {
  text-align: left;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--sky-700);
}
.compare-table tbody th { text-align: left; color: var(--stone-900); font-weight: 500; }
.compare-table td { color: var(--stone-600); vertical-align: top; white-space: normal; }
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: 0; }

.numlist { margin-top: 40px; border-bottom: 1px solid var(--sand-200); }
.numlist__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid var(--sand-200);
}
.numlist__num { font-family: var(--serif); font-size: 1.6rem; color: var(--brass-500); line-height: 1; }
.numlist__item h3 { font-size: 1.15rem; font-family: var(--sans); font-weight: 500; }
.numlist__item p { margin-top: 8px; color: var(--stone-600); max-width: 64ch; }

.mt-0 { margin-top: 0 !important; }
.mt-10 { margin-top: 10px !important; }
.mt-16 { margin-top: 16px !important; }
.mt-24 { margin-top: 24px !important; }
.mt-28 { margin-top: 28px !important; }
.mt-32 { margin-top: 32px !important; }
.mt-40 { margin-top: 40px !important; }
.mb-40 { margin-bottom: 40px !important; }
.max-w-20ch { max-width: 20ch !important; }
.max-w-24ch { max-width: 24ch !important; }
.img-rounded { border-radius: var(--radius); }

.pt-0 { padding-top: 0 !important; }

.legal > * + * { margin-top: 20px; }
.legal h3 { margin-top: 12px; font-size: 1.25rem; }
.legal p { color: var(--stone-600); }
