/* ==========================================================================
   Hardpoint Modular — main stylesheet

   Performance notes (these choices are load-bearing for Core Web Vitals):
   - System font stack: no webfont request, no FOUT, no render-blocking. Beats every
     competitor in this vertical who loads 3 Google Fonts weights before first paint.
   - Single stylesheet, inlined-critical not needed at this size (~14KB, one round trip).
   - No CSS framework. Every rule here is used.

   Palette is desert-industrial: graphite steel + rust. Rust is the signature — it reads
   as oxidized steel AND desert clay simultaneously, which is how this brand says
   "Arizona" and "container" in one gesture without putting either word in its name.
   Deliberately nowhere near the Hawaii parent's #145877 navy + #68ccd1 teal: the two
   brands must never read as the same company.
   ========================================================================== */

:root {
  /* Brand — desert industrial */
  --copper: #B8532A;        /* Desert Rust — the signature */
  --copper-dark: #8E3D1D;
  --copper-light: #C9622F;
  --sun: #F2C14E;           /* Safety Yellow — jobsite authenticity, used sparingly */
  --sand: #EDE7DC;          /* Bone — sun-bleached desert light */
  --sand-dark: #C4B49A;     /* Caliche Tan — the ground a container sits on */

  /* Neutrals — warm-shifted to sit with the rust */
  --ink: #1C1E20;
  --ink-2: #494F54;
  --ink-3: #71787E;
  --line: #DFD9CF;
  --bg: #FFFFFF;
  --bg-2: #FAF8F5;

  /* Graphite steel — container/Corten steel, the contrast-block color */
  --night: #2E3338;
  --night-2: #3C4248;

  --ok: #2F7A4F;

  --wrap: 1200px;
  --gap: 1.5rem;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(26, 22, 20, 0.06), 0 1px 3px rgba(26, 22, 20, 0.08);
  --shadow: 0 4px 6px -1px rgba(26, 22, 20, 0.08), 0 2px 4px -2px rgba(26, 22, 20, 0.06);
  --shadow-lg: 0 12px 28px -8px rgba(26, 22, 20, 0.18);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: var(--font);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: var(--copper); text-underline-offset: 2px; }
a:hover { color: var(--copper-dark); }

/* Typography ------------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; color: var(--ink); text-wrap: balance; }
h1 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem); }
h4 { font-size: 1.0625rem; font-weight: 700; }
p { text-wrap: pretty; }

/* Layout ----------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 1.25rem; }
.section { padding-block: clamp(3rem, 6vw, 5rem); }
.section--tight { padding-block: clamp(2rem, 4vw, 3rem); }
.section--sand { background: var(--bg-2); }
.section--night { background: var(--night); color: #E8EEF3; }
.section--night h2, .section--night h3 { color: #fff; }
.section__head { max-width: 46rem; margin-bottom: 2.5rem; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__eyebrow {
  display: inline-block; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--copper); margin-bottom: 0.625rem;
}
.section--night .section__eyebrow { color: var(--sun); }
.section__intro { font-size: 1.125rem; color: var(--ink-2); margin-top: 0.875rem; }
.section--night .section__intro { color: #B8C7D4; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--night); color: #fff; padding: 0.75rem 1.25rem; border-radius: 0 0 var(--radius) 0;
}
.skip:focus { left: 0; }

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

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.8125rem 1.5rem; border-radius: var(--radius); border: 2px solid transparent;
  font-weight: 700; font-size: 1rem; text-decoration: none; cursor: pointer;
  transition: background-color 0.15s var(--ease), border-color 0.15s var(--ease), transform 0.1s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--copper); color: #fff; border-color: var(--copper); }
.btn--primary:hover { background: var(--copper-dark); border-color: var(--copper-dark); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink-3); color: var(--ink); background: var(--bg-2); }
.btn--light { background: #fff; color: var(--night); border-color: #fff; }
.btn--light:hover { background: var(--sand); border-color: var(--sand); color: var(--night); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn--outline-light:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.08); }
.btn--lg { padding: 1rem 1.875rem; font-size: 1.0625rem; }
.btn--block { width: 100%; }

/* Topbar ----------------------------------------------------------------- */
.topbar { background: var(--night); color: #C6D4E0; font-size: 0.8125rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 38px; }
.topbar__msg { margin: 0; }
.topbar__msg strong { color: var(--sun); }
.topbar__phone { display: inline-flex; align-items: center; gap: 0.375rem; color: #fff; font-weight: 700; text-decoration: none; }
.topbar__phone:hover { color: var(--sun); }
@media (max-width: 640px) { .topbar__msg { display: none; } .topbar__inner { justify-content: center; } }

/* Header ----------------------------------------------------------------- */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.97); backdrop-filter: saturate(140%) blur(8px); border-bottom: 1px solid var(--line); }
.header__inner { display: flex; align-items: center; gap: 1.25rem; min-height: 72px; }
.header__logo { flex-shrink: 0; text-decoration: none; }
.logo { height: 40px; width: auto; }
/* Condensed, tight-tracked, uppercase: reads as freight and engineering, not startup. */
.logo__word { font-family: var(--font); font-size: 21px; font-weight: 800; letter-spacing: -0.3px; fill: var(--night); }
.logo__sub { font-family: var(--font); font-size: 12px; font-weight: 600; letter-spacing: 4.2px; fill: var(--copper); }
.logo--footer .logo__word { fill: #fff; }
.logo--footer .logo__sub { fill: var(--sand-dark); }
.logo--footer { height: 44px; }

.header__cta { margin-left: auto; flex-shrink: 0; }
.header__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 0.5rem; cursor: pointer; margin-left: auto; }
.header__burger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.2s var(--ease), opacity 0.2s var(--ease); }
.header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav -------------------------------------------------------------------- */
.nav__list { display: flex; align-items: center; gap: 0.25rem; list-style: none; padding: 0; margin: 0; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.5rem 0.6875rem; border-radius: 6px;
  font-size: 0.9375rem; font-weight: 600; color: var(--ink-2); text-decoration: none;
  background: none; border: 0; cursor: pointer; white-space: nowrap;
}
.nav__link:hover, .nav__link.is-active { color: var(--copper); background: var(--bg-2); }
.nav__caret { transition: transform 0.15s var(--ease); opacity: 0.6; }
.nav__toggle[aria-expanded="true"] .nav__caret { transform: rotate(180deg); }
.nav__menu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 240px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 0.4375rem; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.15s var(--ease), transform 0.15s var(--ease), visibility 0.15s;
}
.nav__item--has-menu:hover .nav__menu,
.nav__toggle[aria-expanded="true"] + .nav__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__menu-link { display: block; padding: 0.5rem 0.75rem; border-radius: 6px; font-size: 0.9063rem; color: var(--ink-2); text-decoration: none; }
.nav__menu-link:hover { background: var(--bg-2); color: var(--copper); }
.nav__menu-link--all { font-weight: 700; color: var(--ink); border-bottom: 1px solid var(--line); border-radius: 6px 6px 0 0; margin-bottom: 0.25rem; padding-bottom: 0.625rem; }

@media (max-width: 1080px) {
  .header__burger { display: flex; }
  .header__cta { display: none; }
  .nav {
    position: fixed; inset: 110px 0 0 0; background: #fff; padding: 1.25rem;
    overflow-y: auto; transform: translateX(100%); transition: transform 0.25s var(--ease); visibility: hidden;
  }
  .nav.is-open { transform: translateX(0); visibility: visible; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__item { border-bottom: 1px solid var(--line); }
  .nav__link { width: 100%; justify-content: space-between; padding: 0.9375rem 0.5rem; font-size: 1.0625rem; border-radius: 0; }
  .nav__menu {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: 0; border-radius: 0; padding: 0 0 0.625rem 0.75rem; display: none; min-width: 0;
  }
  .nav__toggle[aria-expanded="true"] + .nav__menu { display: block; }
  .nav__item--has-menu:hover .nav__menu { opacity: 1; visibility: visible; }
  .nav__menu-link { padding: 0.625rem 0.5rem; }
}

/* Breadcrumb ------------------------------------------------------------- */
.breadcrumb { background: var(--bg-2); border-bottom: 1px solid var(--line); font-size: 0.8125rem; }
.breadcrumb__list { display: flex; flex-wrap: wrap; gap: 0.4375rem; list-style: none; padding: 0.6875rem 0; margin: 0; }
.breadcrumb__item { display: flex; align-items: center; gap: 0.4375rem; color: var(--ink-3); }
.breadcrumb__item:not(:last-child)::after { content: "/"; color: var(--line); }
.breadcrumb__item a { color: var(--ink-3); text-decoration: none; }
.breadcrumb__item a:hover { color: var(--copper); text-decoration: underline; }

/* Hero ------------------------------------------------------------------- */
.hero { position: relative; background: var(--night); color: #fff; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1000px 500px at 82% 8%, rgba(232, 163, 61, 0.22), transparent 62%),
    radial-gradient(720px 420px at 12% 92%, rgba(194, 65, 12, 0.28), transparent 60%);
  pointer-events: none;
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: center; padding-block: clamp(3rem, 6vw, 5.5rem); }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--sun);
  border: 1px solid rgba(232, 163, 61, 0.35); background: rgba(232, 163, 61, 0.1);
  padding: 0.3125rem 0.75rem; border-radius: 100px; margin-bottom: 1.125rem;
}
.hero h1 { color: #fff; }
.hero__sub { font-size: 1.1875rem; color: #B8C7D4; margin-top: 1.125rem; max-width: 34rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.875rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; margin-top: 2.25rem; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,0.12); }
.hero__stat strong { display: block; font-size: 1.75rem; font-weight: 800; color: var(--sun); line-height: 1.1; }
.hero__stat span { font-size: 0.8125rem; color: #93A6B5; }
.hero__media { position: relative; }
.hero__card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 1.75rem; backdrop-filter: blur(6px);
}
.hero__card h2 { font-size: 1.1875rem; color: #fff; margin-bottom: 1.125rem; }
@media (max-width: 900px) { .hero__inner { grid-template-columns: 1fr; gap: 2.25rem; } }

/* Cards ------------------------------------------------------------------ */
.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.5rem; text-decoration: none; color: inherit;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease), transform 0.15s var(--ease);
}
a.card:hover { border-color: var(--copper); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card__icon {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 9px;
  background: linear-gradient(135deg, var(--copper), var(--sun)); color: #fff; margin-bottom: 1rem; flex-shrink: 0;
}
.card__title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.4375rem; }
.card__text { font-size: 0.9375rem; color: var(--ink-2); flex-grow: 1; }
.card__link { margin-top: 1rem; font-size: 0.9375rem; font-weight: 700; color: var(--copper); }
a.card:hover .card__link { text-decoration: underline; }
.card--flat { background: var(--bg-2); border-color: transparent; }

/* Spec table ------------------------------------------------------------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
table.spec { width: 100%; border-collapse: collapse; font-size: 0.9375rem; min-width: 520px; }
table.spec caption { text-align: left; padding: 1rem 1.25rem; font-weight: 700; border-bottom: 1px solid var(--line); }
table.spec th, table.spec td { padding: 0.8125rem 1.25rem; text-align: left; border-bottom: 1px solid var(--line); }
table.spec thead th { background: var(--bg-2); font-weight: 700; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-3); }
table.spec tbody tr:last-child th, table.spec tbody tr:last-child td { border-bottom: 0; }
table.spec tbody tr:hover { background: var(--bg-2); }
table.spec th[scope="row"] { font-weight: 600; }

/* Prose ------------------------------------------------------------------ */
.prose { max-width: 44rem; }
.prose > * + * { margin-top: 1.125rem; }
.prose h2 { margin-top: 2.75rem; }
.prose h3 { margin-top: 2rem; }
.prose ul, .prose ol { padding-left: 1.375rem; }
.prose li + li { margin-top: 0.4375rem; }
.prose ul li::marker { color: var(--copper); }
.prose strong { font-weight: 700; color: var(--ink); }
.prose blockquote {
  border-left: 3px solid var(--copper); padding: 0.25rem 0 0.25rem 1.25rem;
  color: var(--ink-2); font-style: italic;
}
.prose .lead { font-size: 1.1875rem; color: var(--ink-2); }

/* Checklist -------------------------------------------------------------- */
.checks { list-style: none; padding: 0; display: grid; gap: 0.75rem; }
.checks li { display: flex; gap: 0.6875rem; align-items: flex-start; font-size: 0.9375rem; }
.checks li::before {
  content: ""; flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px; border-radius: 50%;
  background: var(--ok) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}
.section--night .checks li { color: #C6D4E0; }

/* FAQ -------------------------------------------------------------------- */
.faq { max-width: 48rem; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.25rem 0; background: none; border: 0; text-align: left; cursor: pointer;
  font-size: 1.0625rem; font-weight: 700; color: var(--ink);
}
.faq__q:hover { color: var(--copper); }
.faq__icon { flex-shrink: 0; width: 20px; height: 20px; position: relative; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: var(--copper); border-radius: 2px;
  transition: transform 0.2s var(--ease);
}
.faq__icon::before { top: 9px; left: 2px; width: 16px; height: 2px; }
.faq__icon::after { top: 2px; left: 9px; width: 2px; height: 16px; }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: rotate(90deg); }
.faq__a { display: none; padding-bottom: 1.25rem; color: var(--ink-2); }
.faq__a > * + * { margin-top: 0.75rem; }
.faq__q[aria-expanded="true"] + .faq__a { display: block; }

/* CTA band --------------------------------------------------------------- */
.cta {
  background: linear-gradient(120deg, var(--copper-dark), var(--copper) 55%, var(--copper-light));
  color: #fff; text-align: center;
}
.cta h2 { color: #fff; }
.cta__text { margin-top: 0.875rem; color: rgba(255,255,255,0.9); font-size: 1.125rem; max-width: 40rem; margin-inline: auto; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 1.875rem; }

/* Forms ------------------------------------------------------------------ */
.form { display: grid; gap: 1rem; }
.field { display: grid; gap: 0.375rem; }
.field label { font-size: 0.875rem; font-weight: 700; }
.field .req { color: var(--copper); }
.field input, .field select, .field textarea {
  padding: 0.6875rem 0.875rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; color: var(--ink); width: 100%;
}
.hero__card .field label { color: #C6D4E0; }
.hero__card .field input, .hero__card .field select {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); color: #fff;
}
.hero__card .field input::placeholder { color: #7E93A5; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--copper); outline-offset: 1px; border-color: var(--copper); }
.field__hint { font-size: 0.8125rem; color: var(--ink-3); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.form__note { font-size: 0.8125rem; color: var(--ink-3); }
.hero__card .form__note { color: #93A6B5; }

/* Honeypot: kept in the DOM and submitted, but never seen or focusable by a human.
   Off-screen rather than display:none so naive bots that skip hidden fields still fill it. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Form result banners (shown by the JS enhancement after an async submit) */
.form__result { border-radius: var(--radius); padding: 1rem 1.125rem; font-size: 0.9375rem; }
.form__result--ok { background: #E7F4EC; border: 1px solid #B7E0C6; color: #1E5B37; }
.form__result--err { background: #FBEAE5; border: 1px solid #F3C6B7; color: #8A2C13; }
.hero__card .form__result--ok { background: rgba(47,122,79,0.18); border-color: rgba(47,122,79,0.4); color: #CFEAD9; }
.hero__card .form__result--err { background: rgba(184,83,42,0.18); border-color: rgba(184,83,42,0.45); color: #F3C9BA; }
.form.is-submitting button[type="submit"] { opacity: 0.6; pointer-events: none; }

/* City / link grids ------------------------------------------------------ */
.linklist { list-style: none; padding: 0; columns: 4; column-gap: 1.5rem; }
.linklist li { break-inside: avoid; margin-bottom: 0.5rem; }
.linklist a { font-size: 0.9375rem; color: var(--ink-2); text-decoration: none; }
.linklist a:hover { color: var(--copper); text-decoration: underline; }
@media (max-width: 900px) { .linklist { columns: 2; } }
@media (max-width: 480px) { .linklist { columns: 1; } }

/* Media & feature splits ------------------------------------------------- */
.media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--bg-2); margin: 0; }
.media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media--tall { aspect-ratio: 4 / 3; }

.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.feature--reverse .feature__media { order: 2; }
.feature__eyebrow {
  display: inline-block; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--copper); margin-bottom: 0.625rem;
}
.feature h2 { margin-bottom: 0.875rem; }
.feature__body { color: var(--ink-2); font-size: 1.0625rem; }
.feature__body > * + * { margin-top: 0.875rem; }
.feature__list { list-style: none; padding: 0; display: grid; gap: 0.625rem; margin-top: 1.25rem; }
.feature__list li { display: flex; gap: 0.625rem; align-items: flex-start; font-size: 0.9375rem; color: var(--ink); }
.feature__list li::before {
  content: ""; flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px; border-radius: 50%;
  background: var(--copper) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}
.feature__actions { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
@media (max-width: 820px) {
  .feature { grid-template-columns: 1fr; gap: 1.75rem; }
  .feature--reverse .feature__media { order: 0; }
}

/* Callout ---------------------------------------------------------------- */
.callout {
  border: 1px solid var(--sand-dark); background: var(--sand); border-left: 4px solid var(--copper);
  border-radius: var(--radius); padding: 1.125rem 1.25rem; font-size: 0.9375rem;
}
.callout h3 { font-size: 1rem; margin-bottom: 0.375rem; }
.callout--note { background: #F0F5F9; border-color: #D6E3ED; border-left-color: var(--night); }

/* Steps ------------------------------------------------------------------ */
.steps { list-style: none; padding: 0; counter-reset: step; display: grid; gap: 1.5rem; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 40px 1fr; gap: 1rem; align-items: start; }
.steps li::before {
  content: counter(step); display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: 50%; background: var(--copper); color: #fff; font-weight: 800; font-size: 1.0625rem;
}
.steps h3 { font-size: 1.0625rem; margin-bottom: 0.25rem; }
.steps p { font-size: 0.9375rem; color: var(--ink-2); }
.section--night .steps p { color: #B8C7D4; }

/* Footer ----------------------------------------------------------------- */
.footer { background: var(--night); color: #A9BCCA; padding-top: clamp(2.5rem, 5vw, 3.5rem); font-size: 0.9375rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 2rem; padding-bottom: 2.5rem; }
.footer__blurb { margin-top: 1rem; font-size: 0.875rem; max-width: 22rem; }
.footer__parent { margin-top: 1rem; font-size: 0.8125rem; color: #7E93A5; }
.footer__parent a { color: #A9BCCA; }
.footer__head { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; color: #fff; margin-bottom: 0.875rem; }
.footer__list { list-style: none; padding: 0; display: grid; gap: 0.5rem; }
.footer__list a { color: #A9BCCA; text-decoration: none; font-size: 0.875rem; }
.footer__list a:hover { color: var(--sun); text-decoration: underline; }
.footer__phone { font-size: 1.0625rem !important; font-weight: 800; color: #fff !important; }
.footer__cta { color: var(--sun) !important; font-weight: 700; }
.footer__bar { border-top: 1px solid rgba(255,255,255,0.1); padding-block: 1.25rem; }
.footer__bar-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.8125rem; color: #7E93A5; }
.footer__legal { display: flex; gap: 1.25rem; list-style: none; padding: 0; }
.footer__legal a { color: #7E93A5; text-decoration: none; }
.footer__legal a:hover { color: #fff; }
@media (max-width: 1000px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; gap: 1.75rem; } }

/* Utilities -------------------------------------------------------------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
