/* =============================================================
   Smithfield Concrete Driveway & Patio
   Palette + type derived from the concrete finisher's own world:
   cured-slab greys, wet-cure charcoal, marking-paint orange.
   Display: Barlow Condensed (lumber-yard stencil / site signage)
   Body:    Source Serif 4 (traditional trade reliability signal)
   Utility: Barlow (labels, data, NAP, form fields)
   ============================================================= */

:root {
  --slate-900: #21242a;   /* wet-cured concrete — header, ink */
  --slate-800: #2f333b;
  --slate-700: #444b56;   /* cool mid grey */
  --slate-500: #6c727d;
  --slate-400: #9aa0a8;
  --concrete-300: #cbc9c1; /* cured slab, warm grey — borders */
  --concrete-200: #e2e0d9;
  --concrete-100: #edece7;  /* page ground */
  --paper: #f8f7f3;         /* card surface */
  --marking: #e2540c;       /* marking-paint / cone orange — CTAs */
  --marking-dark: #c1440a;
  --white: #ffffff;

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-util: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --wrap: 1140px;
  --gap: clamp(1rem, 3vw, 2rem);
  --section-y: clamp(3.5rem, 7vw, 6rem);
  --radius: 2px;
  --shadow-card: 0 1px 2px rgba(33, 36, 42, .06), 0 8px 24px rgba(33, 36, 42, .07);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--concrete-100);
  color: var(--slate-800);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--slate-900);
  line-height: 1.05;
  margin: 0 0 .5em;
  font-weight: 600;
}

h1 {
  font-weight: 700;
  font-size: clamp(2.5rem, 5.6vw, 4rem);
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

h2 { font-size: clamp(1.85rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; letter-spacing: .005em; }

p { margin: 0 0 1.1rem; }
a { color: var(--marking-dark); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--marking); }
img { max-width: 100%; display: block; }
ul, ol { margin: 0 0 1.1rem; padding-left: 1.15rem; }
li { margin: .35rem 0; }
strong { font-weight: 600; color: var(--slate-900); }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.25rem);
}

.section { padding-block: var(--section-y); }
.section-tint { background: var(--paper); }
.section-ink { background: var(--slate-900); color: var(--concrete-200); }
.section-ink h2, .section-ink h3 { color: var(--white); }
.section-ink p { color: #c7ccd4; }

/* ---------- signature: tooled control-joint divider ---------- */
.joint {
  height: 0;
  margin: 0;
  border: 0;
  border-top: 2px solid var(--slate-900);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .65);
  position: relative;
}
.joint::before, .joint::after {
  content: "";
  position: absolute;
  top: -9px;
  width: 2px;
  height: 18px;
  background: var(--slate-900);
}
.joint::before { left: 6%; }
.joint::after { right: 6%; }
.joint-light { border-top-color: rgba(255,255,255,.28); box-shadow: none; }
.joint-light::before, .joint-light::after { background: rgba(255,255,255,.28); }

/* ---------- eyebrow / tool-mark label ---------- */
.eyebrow {
  font-family: var(--font-util);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--marking);
  display: flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 1rem;
}
.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--marking);
  flex: none;
}
.section-ink .eyebrow { color: #ff7a3d; }
.section-ink .eyebrow::before { background: #ff7a3d; }

.lead {
  font-size: clamp(1.12rem, 1.7vw, 1.35rem);
  line-height: 1.5;
  color: var(--slate-700);
  max-width: 60ch;
}
.section-ink .lead { color: #d7dbe1; }

/* ============================= HEADER ============================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--slate-900);
  color: var(--concrete-100);
  border-bottom: 1px solid #000;
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: 0 6px 22px rgba(0, 0, 0, .28); }

.header-inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: .55rem clamp(1.1rem, 4vw, 2.25rem);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  color: var(--white);
  flex: none;
}
.brand b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.32rem;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.brand span {
  font-family: var(--font-util);
  font-size: .64rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--marking);
  margin-top: .28rem;
}

.main-nav { margin-left: auto; }
.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-family: var(--font-util);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .82rem;
  font-weight: 600;
  color: var(--concrete-200);
  text-decoration: none;
  padding: .4rem 0;
  display: inline-block;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] { color: var(--white); }
.main-nav a[aria-current="page"] { box-shadow: inset 0 -2px 0 var(--marking); }

/* services dropdown */
.has-drop { position: relative; }
.drop-toggle {
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-family: var(--font-util);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .82rem;
  font-weight: 600;
  color: var(--concrete-200);
  padding: .4rem 0;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.drop-toggle:hover { color: var(--white); }
.drop-toggle::after {
  content: "";
  width: 6px; height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform .15s ease;
}
.has-drop[data-open="true"] .drop-toggle::after { transform: rotate(-135deg); margin-top: 2px; }

.drop-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 264px;
  background: var(--white);
  border: 1px solid var(--concrete-300);
  box-shadow: var(--shadow-card);
  padding: .4rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .14s ease, transform .14s ease, visibility .14s;
}
.has-drop[data-open="true"] .drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.drop-menu a {
  display: block;
  padding: .6rem .8rem;
  color: var(--slate-800);
  letter-spacing: .04em;
  border-left: 2px solid transparent;
}
.drop-menu a:hover,
.drop-menu a[aria-current="page"] {
  background: var(--concrete-100);
  color: var(--slate-900);
  border-left-color: var(--marking);
}

.header-cta { display: flex; align-items: center; gap: 1rem; flex: none; }
.header-phone {
  font-family: var(--font-util);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: .01em;
}
.header-phone:hover { color: var(--marking); }
.header-phone small {
  display: block;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--marking);
  text-transform: uppercase;
}

/* hamburger */
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid #444;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  margin-inline: auto;
  position: relative;
  transition: transform .18s ease, opacity .18s ease;
}
.nav-toggle span::before { position: absolute; top: -7px; left: 0; }
.nav-toggle span::after { position: absolute; top: 7px; left: 0; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

/* ============================= BUTTONS ============================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-util);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: .88rem;
  padding: .95rem 1.7rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: transform .12s ease, background-color .15s ease, color .15s ease;
}
.btn-primary { background: var(--marking); color: var(--white); }
.btn-primary:hover { background: var(--marking-dark); color: var(--white); transform: translateY(-1px); }
.btn-ghost { border-color: var(--slate-900); color: var(--slate-900); background: transparent; }
.btn-ghost:hover { background: var(--slate-900); color: var(--white); transform: translateY(-1px); }
.btn-onink { border-color: var(--white); color: var(--white); background: transparent; }
.btn-onink:hover { background: var(--white); color: var(--slate-900); }
.btn-lg { padding: 1.1rem 2rem; font-size: .95rem; }
.btn-block { width: 100%; }

.header-cta .btn { padding: .7rem 1.25rem; font-size: .8rem; }

/* ============================= HERO ============================= */
.hero {
  position: relative;
  background: var(--slate-900) center 90% / cover no-repeat;
  background-image: image-set(url("../images/hero-960.jpg") 1x, url("../images/hero-1600.jpg") 2x);
  background-position: center 90%;
  color: var(--white);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(102deg, rgba(20, 22, 26, .94) 0%, rgba(20, 22, 26, .8) 40%, rgba(20, 22, 26, .42) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 92px 92px;
}
.hero-home { min-height: 80vh; display: flex; align-items: center; padding-block: clamp(3rem, 8vw, 6rem); }
.hero-page { padding-block: clamp(2.75rem, 6vw, 4.25rem); }

.hero h1 { color: var(--white); max-width: 17ch; }
.hero-home h1 { margin-bottom: .35em; }
.hero .eyebrow { color: #ff8a52; }
.hero .eyebrow::before { background: #ff8a52; }
.hero .lead { color: #e7e9ec; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 1.9rem;
}
.hero-actions .btn { flex: 0 1 auto; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  margin-top: 1.9rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, .18);
  font-family: var(--font-util);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .74rem;
  font-weight: 600;
  color: #d7dbe1;
}
.trust-row span { display: flex; align-items: center; gap: .5rem; }
.trust-row span::before { content: ""; width: 7px; height: 7px; background: var(--marking); flex: none; }

.breadcrumbs {
  font-family: var(--font-util);
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .68);
  margin-bottom: 1.1rem;
}
.breadcrumbs a { color: rgba(255, 255, 255, .68); text-decoration: none; }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs span { margin-inline: .5rem; opacity: .5; }

/* ============================= LAYOUT HELPERS ============================= */
.stack > * + * { margin-top: 1.1rem; }
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.center { text-align: center; margin-inline: auto; }

.split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.split-even { grid-template-columns: 1fr 1fr; }

/* ============================= SERVICE CARDS ============================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.svc-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--concrete-300);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.7rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--slate-800);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.svc-card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: var(--marking);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .16s ease;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: var(--slate-400);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-num {
  font-family: var(--font-util);
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .16em;
  color: var(--slate-400);
  margin-bottom: .7rem;
}
.svc-card h3 { margin-bottom: .4rem; }
.svc-card p { font-size: .98rem; margin-bottom: 1.1rem; }
.svc-more {
  margin-top: auto;
  font-family: var(--font-util);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  color: var(--marking-dark);
}
.svc-card:hover .svc-more { color: var(--marking); }

/* ============================= FEATURE / WHY ============================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem 2rem;
}
.feature h3 {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  font-size: 1.15rem;
}
.feature h3::before {
  content: "";
  width: 12px; height: 12px;
  background: var(--marking);
  flex: none;
  transform: translateY(1px);
}
.feature p { font-size: .97rem; margin-bottom: 0; }

/* spec list — used on service pages */
.spec-list { list-style: none; padding: 0; margin: 0; }
.spec-list li {
  padding: .85rem 0 .85rem 1.6rem;
  border-bottom: 1px solid var(--concrete-300);
  position: relative;
}
.spec-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 1.25rem;
  width: 9px; height: 9px;
  background: var(--marking);
}
.spec-list li:first-child { padding-top: 0; }
.spec-list li:first-child::before { top: .4rem; }

/* ============================= SERVICE AREA ============================= */
.area-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.town-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  columns: 2;
  column-gap: 1.5rem;
  font-family: var(--font-util);
  font-size: .95rem;
}
.town-list li {
  padding: .4rem 0 .4rem 1.1rem;
  position: relative;
  break-inside: avoid;
}
.town-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .95rem;
  width: 6px; height: 6px;
  background: var(--marking);
}
.town-list li strong { font-family: var(--font-body); }

/* ============================= FORM ============================= */
.form-card {
  background: var(--paper);
  border: 1px solid var(--concrete-300);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.section-ink .form-card { background: #ffffff; }
.form-card h3 { margin-bottom: .3rem; }
.form-note {
  font-family: var(--font-util);
  font-size: .82rem;
  color: var(--slate-500);
  margin-bottom: 1.4rem;
}
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-family: var(--font-util);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: .35rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .7rem .8rem;
  background: var(--white);
  border: 1px solid var(--concrete-300);
  border-radius: var(--radius);
  color: var(--slate-900);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--marking);
  box-shadow: 0 0 0 3px rgba(226, 84, 12, .18);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============================= FAQ ============================= */
.faq-list { max-width: 78ch; }
.faq-item {
  border-bottom: 1px solid var(--concrete-300);
  padding: 1.4rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--concrete-300); }
.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: .5rem;
  display: flex;
  gap: .7rem;
}
.faq-item h3::before {
  content: "Q";
  font-family: var(--font-util);
  font-weight: 700;
  color: var(--marking);
  flex: none;
}
.faq-item p:last-child { margin-bottom: 0; }

/* ============================= CTA STRIP ============================= */
.cta-strip { text-align: center; }
.cta-strip h2 { max-width: 22ch; margin-inline: auto; }
.cta-strip .lead { margin-inline: auto; margin-bottom: 1.9rem; }
.cta-actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* ============================= FOOTER ============================= */
.site-footer {
  background: #17191d;
  color: #aeb4bd;
  font-size: .92rem;
  padding-block: clamp(2.75rem, 6vw, 4rem) 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
}
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-util);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  margin-bottom: 1rem;
}
.site-footer a { color: #aeb4bd; text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: .5rem 0; }
.footer-brand b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: .02em;
}
.footer-nap { margin-top: 1rem; font-style: normal; line-height: 1.7; }
.footer-nap strong { color: #cfd4da; }
.footer-legal {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #2a2d33;
  font-family: var(--font-util);
  font-size: .78rem;
  letter-spacing: .04em;
  color: #7c828b;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.placeholder {
  background: rgba(226, 84, 12, .14);
  color: #ffb489;
  padding: 0 .3em;
  border-radius: 2px;
  font-style: normal;
}

/* ============================= REVEAL ANIMATION ============================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
[data-reveal].in { opacity: 1; transform: none; }

:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid var(--marking);
  outline-offset: 2px;
}

/* ============================= RESPONSIVE ============================= */
@media (max-width: 900px) {
  .split, .split-even, .area-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .header-inner { flex-wrap: wrap; }

  .main-nav {
    flex-basis: 100%;
    margin-left: 0;
    display: none;
    padding-bottom: .75rem;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav > ul > li { border-top: 1px solid #33373e; }
  .main-nav a, .drop-toggle { padding: .95rem .25rem; width: 100%; font-size: .95rem; }
  .drop-toggle { justify-content: space-between; }

  .drop-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    min-width: 0;
    border: 0;
    box-shadow: none;
    background: #1b1e23;
    padding: 0 0 .5rem;
  }
  .has-drop[data-open="true"] .drop-menu { display: block; transform: none; }
  .drop-menu a { color: #c7ccd4; padding-left: 1rem; }
  .drop-menu a:hover, .drop-menu a[aria-current="page"] { background: #23262c; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .field-row { grid-template-columns: 1fr; }
  .town-list { columns: 1; }
  .hero-actions .btn { flex-basis: 100%; }
  h1 { font-size: clamp(2.15rem, 9vw, 2.75rem); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================= 404 ============================= */
.notfound-links { list-style: none; margin: 0; padding: 0; }
.notfound-links li { border-bottom: 1px solid var(--concrete-300); }
.notfound-links li:first-child { border-top: 1px solid var(--concrete-300); }
.notfound-links a {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  padding: 1.05rem .25rem;
  font-family: var(--font-util);
  font-weight: 600;
  color: var(--slate-900);
  text-decoration: none;
}
.notfound-links a::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: none;
  background: var(--marking);
}
.notfound-links a:hover,
.notfound-links a:focus-visible { color: var(--marking-dark); text-decoration: underline; }

/* ============================= SMS CONSENT + LEGAL ============================= */
.consent {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  margin: .25rem 0 1.25rem;
}
.consent input {
  flex: none;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: .2rem;
  accent-color: var(--marking);
}
.consent label {
  font-family: var(--font-util);
  font-size: .8rem;
  line-height: 1.5;
  color: var(--slate-700);
}
.consent a { color: var(--marking-dark); }

.legal { max-width: 72ch; }
.legal h2 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); margin-top: 2.25rem; }
.legal h2:first-of-type { margin-top: 1.5rem; }

/* Full business name as one line of text (wraps to two), used on the legal pages */
.brand-full b { max-width: 20ch; line-height: 1.05; }
