/* ═══════════════════════════════════════════════════════
   HAUL & GO — stylesheet
   Fluid type + layout. Everything scales between 320px
   phones and 1800px+ desktops without a hard jump.
   ═══════════════════════════════════════════════════════ */

:root {
  --black: #0d0d0d;
  --coal: #171717;
  --coal-2: #1f1f1f;
  --gold: #c8913f;
  --gold-lt: #e0b164;
  --gold-dk: #9a6a24;
  --white: #fff;
  --bone: #f4f1ec;
  --bone-2: #e9e5dd;
  --grey: #8d8d8d;
  --grey-lt: #c9c6c1;
  --ink: #55504a;
  --line: #2e2e2e;
  --line-lt: #dbd5cb;

  --wrap: 76rem;
  --gut: clamp(1rem, 4vw, 2rem);
  --sec-y: clamp(3.25rem, 8vw, 6.5rem);

  --disp: "Anton", "Arial Narrow", Impact, sans-serif;
  --body: "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;

  --r: 6px;
}

/* ── reset / base ───────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bone);
  color: var(--black);
  font: 500 clamp(16.5px, 1.05vw, 18.5px) / 1.6 var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* clearance for the mobile sticky bar */
  padding-bottom: calc(4.6rem + env(safe-area-inset-bottom, 0px));
}
img,
svg,
picture,
video {
  max-width: 100%;
  display: block;
  height: auto;
}
p {
  margin: 0 0 1rem;
}
a {
  color: inherit;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.hide {
  display: none;
}
.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 999;
  background: var(--gold);
  color: var(--black);
  padding: 0.7rem 1.1rem;
  font-weight: 800;
  border-radius: var(--r);
}

/* ── display type (bigger + heavier) ────────────────── */
h1,
h2,
h3,
h4,
.h-sec,
.btn,
.flow-n,
.tier-n,
.bar-btn {
  font-family: var(--disp);
  font-weight: 400; /* Anton ships one weight; it's already very heavy */
  letter-spacing: 0.005em;
}

h1 {
  font-size: clamp(3.1rem, 12.5vw, 6.6rem);
  line-height: 0.88;
  font-style: italic;
  text-transform: uppercase;
  margin: 0 0 1.15rem;
  overflow-wrap: break-word;
}
h1 em {
  font-style: italic;
  color: var(--gold);
  display: inline-block;
}
.h-sec {
  font-size: clamp(2.25rem, 6.4vw, 4.1rem);
  line-height: 0.95;
  font-style: italic;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  overflow-wrap: break-word;
}
h3 {
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 0 0.55rem;
}
.eyebrow {
  font: 800 clamp(0.78rem, 1.3vw, 0.9rem) / 1 var(--body);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin: 0 0 0.85rem;
}
.sec-lede {
  color: var(--ink);
  max-width: 58ch;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

/* ── top strip ──────────────────────────────────────── */
.strip {
  background: var(--gold);
  color: var(--black);
  font-size: clamp(0.78rem, 2.6vw, 0.92rem);
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem 1.25rem;
  padding: 0.55rem var(--gut);
  text-align: center;
}
.strip-sm {
  display: none;
}
.strip a {
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.strip a:hover {
  text-decoration: underline;
}

/* ── header bar ─────────────────────────────────────── */
.bar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--black);
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem var(--gut);
}
.brand {
  flex: 0 0 auto;
  line-height: 0;
}
.brand img {
  width: clamp(58px, 13vw, 86px);
  height: auto;
}
.bar-nav {
  display: none;
  gap: clamp(1rem, 2.4vw, 2rem);
  margin-left: auto;
  font: 800 clamp(0.76rem, 1vw, 0.85rem) / 1 var(--body);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.bar-nav a {
  color: var(--grey-lt);
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.bar-nav a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.bar-btn {
  margin-left: auto;
  background: var(--gold);
  color: var(--black);
  font-size: clamp(1rem, 3vw, 1.25rem);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.88rem 1rem;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.15s;
}
.bar-btn:hover {
  background: var(--gold-lt);
}
.bar-btn-lg {
  display: none;
}

/* hamburger */
.burger {
  flex: 0 0 auto;
  width: 48px;
  height: 46px;
  display: grid;
  place-content: center;
  gap: 5px;
  background: transparent;
  border: 2px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.18s;
}
.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* mobile drop menu */
.bar-nav.open {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--coal);
  border-bottom: 2px solid var(--gold);
  padding: 0.5rem var(--gut) 1rem;
  font-size: 1rem;
}
.bar-nav.open a {
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--bone);
}

/* ── buttons ────────────────────────────────────────── */
.btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.95rem 1.7rem;
  border: 2.5px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  line-height: 1.15;
  transition: background 0.15s, color 0.15s, transform 0.08s;
}
.btn:active {
  transform: translateY(1.5px);
}
.btn-lg {
  padding: 1.1rem 1.9rem;
  font-size: clamp(1.1rem, 2.6vw, 1.35rem);
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-lt);
}
.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}
.btn-outline-light {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--black);
}
.btn-block {
  width: 100%;
  display: block;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.cta-pad {
  margin-top: clamp(2rem, 4vw, 3rem);
}
.cta-center {
  align-items: center;
  justify-content: center;
}

/* ── hero ───────────────────────────────────────────── */
.hero {
  position: relative;
  isolation: isolate;
  background: var(--black);
  color: var(--bone);
  overflow: hidden;
  padding: clamp(2.25rem, 5vw, 4.5rem) 0 clamp(2.75rem, 6vw, 5rem);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(
      100deg,
      rgba(13, 13, 13, 0.97) 0%,
      rgba(13, 13, 13, 0.9) 45%,
      rgba(13, 13, 13, 0.78) 100%
    ),
    radial-gradient(90% 70% at 6% 0%, rgba(200, 145, 63, 0.28), transparent 62%),
    url("img/hero.jpg");
  background-size: cover, cover, cover;
  background-position: center, center, center 30%;
}
.hero-wrap {
  position: relative;
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
}
.hero-copy {
  min-width: 0;
}
.badge {
  display: inline-block;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font: 800 clamp(0.7rem, 2.4vw, 0.82rem) / 1 var(--body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.55rem 0.9rem;
  margin-bottom: 1.4rem;
  border-radius: 3px;
}
.lede {
  color: var(--grey-lt);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  max-width: 48ch;
}
.hero-points {
  margin: 1.6rem 0 2rem;
  font-weight: 700;
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
}
.hero-points li {
  position: relative;
  padding-left: 2.1rem;
  margin-bottom: 0.7rem;
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 13px;
  height: 7px;
  border-left: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  transform: rotate(-45deg);
}

/* ── quote form ─────────────────────────────────────── */
.form-card {
  background: var(--bone);
  color: var(--black);
  border-radius: var(--r);
  border-top: 7px solid var(--gold);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  scroll-margin-top: 6rem;
  min-width: 0;
}
.form-head {
  background: var(--coal);
  color: var(--white);
  padding: 1.4rem clamp(1.1rem, 3vw, 1.6rem);
}
.form-head h2 {
  font-size: clamp(1.75rem, 5.5vw, 2.3rem);
  line-height: 1;
  font-style: italic;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
}
.form-head p {
  margin: 0;
  color: var(--gold-lt);
  font-size: 0.95rem;
  font-weight: 700;
}
.qform {
  padding: clamp(1.1rem, 3vw, 1.6rem);
}
.qform label {
  display: block;
  margin-bottom: 1rem;
}
.qform label > span {
  display: block;
  font: 800 0.8rem/1 var(--body);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #4f4a44;
  margin-bottom: 0.45rem;
}
.qform input,
.qform textarea {
  width: 100%;
  padding: 0.9rem 0.95rem;
  font: 500 1.02rem/1.4 var(--body);
  color: var(--black);
  background: var(--white);
  border: 2px solid var(--line-lt);
  border-radius: 4px;
}
.qform input:focus,
.qform textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 145, 63, 0.25);
}
.qform input:user-invalid,
.qform textarea:user-invalid {
  border-color: #b4442e;
}
.qform textarea {
  resize: vertical;
  min-height: 5.5rem;
}
.frow {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.75rem;
}
.frow label {
  flex: 1 1 8rem;
  min-width: 0;
}
.frow .grow {
  flex: 2.4 1 11rem;
}
.frow .shrink {
  flex: 1 1 6.5rem;
}
.drop input {
  padding: 0.75rem;
  background: var(--bone-2);
  border-style: dashed;
  font-size: 0.92rem;
}
.drop b {
  color: var(--gold-dk);
  text-transform: none;
  letter-spacing: 0;
}
.drop-note {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.84rem;
  color: var(--ink);
  font-weight: 600;
}
.form-status {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}
.form-status.ok {
  color: #1f6b3a;
}
.form-status.err {
  color: #b4442e;
}
.or {
  text-align: center;
  margin: 0.9rem 0 0;
  font-size: 0.95rem;
  color: var(--ink);
}
.or a {
  font-weight: 800;
  color: var(--gold-dk);
}

/* ── trust bar ──────────────────────────────────────── */
.trust {
  background: var(--coal);
  color: var(--bone);
  padding: clamp(1.5rem, 3vw, 2.1rem) 0;
  border-bottom: 3px solid var(--gold);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem clamp(1rem, 3vw, 2rem);
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-left: 3px solid var(--gold);
  padding-left: 0.9rem;
}
.trust-item strong {
  font: 400 clamp(1.15rem, 3.2vw, 1.5rem) / 1 var(--disp);
  text-transform: uppercase;
  color: var(--white);
}
.trust-item span {
  font-size: clamp(0.84rem, 2.2vw, 0.95rem);
  color: var(--grey);
  font-weight: 600;
}

/* ── services ───────────────────────────────────────── */
.services {
  padding: var(--sec-y) 0;
}
.cards {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.9rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
}
.card {
  background: var(--white);
  border: 1px solid var(--line-lt);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
}
.card-img {
  position: relative;
  aspect-ratio: 3 / 2;
  background: var(--coal);
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06);
}
.card-body {
  padding: clamp(1.15rem, 2.5vw, 1.6rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-body > p {
  color: var(--ink);
  font-size: 1rem;
}
.ticks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 8.5rem), 1fr));
  gap: 0.35rem 0.9rem;
  margin: 1.1rem 0 0;
  padding-top: 1rem;
  border-top: 2px solid var(--line-lt);
  font-size: 0.98rem;
  font-weight: 600;
}
.ticks li {
  position: relative;
  padding-left: 1.6rem;
  min-width: 0;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 10px;
  height: 6px;
  border-left: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  transform: rotate(-45deg);
}
.card .btn {
  margin-top: auto;
}
.card .ticks {
  margin-bottom: 1.4rem;
}
.cant-take {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  padding: 1.2rem 1.4rem;
  background: var(--bone-2);
  border-left: 5px solid var(--black);
  border-radius: 0 var(--r) var(--r) 0;
  font-size: 0.98rem;
  color: #47433d;
}

/* ── pricing ────────────────────────────────────────── */
.pricing {
  background: var(--coal);
  color: var(--bone);
  padding: var(--sec-y) 0;
}
.pricing .eyebrow {
  color: var(--gold);
}
.pricing .sec-lede {
  color: var(--grey-lt);
}
.tiers {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
}
.tier {
  background: var(--coal-2);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--r);
  padding: clamp(1.25rem, 2.5vw, 1.8rem);
  min-width: 0;
}
.tier-n {
  display: block;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  line-height: 1;
  color: var(--gold-dk);
  margin-bottom: 0.5rem;
}
.tier h3 {
  color: var(--white);
}
.tier-note {
  color: var(--grey);
  font-size: 0.98rem;
  margin: 0;
}

/* ── process ────────────────────────────────────────── */
.process {
  padding: var(--sec-y) 0;
}
.flow {
  display: grid;
  gap: 0 clamp(1.5rem, 4vw, 3rem);
  border-top: 3px solid var(--black);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
}
.flow-step {
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line-lt);
  min-width: 0;
}
.flow-n {
  display: block;
  font-size: clamp(1.7rem, 3.4vw, 2.2rem);
  line-height: 1;
  font-style: italic;
  color: var(--gold-dk);
  margin-bottom: 0.4rem;
}
.flow-step p {
  color: var(--ink);
  margin: 0;
  font-size: 1rem;
  max-width: 42ch;
}

/* ── service area + map ─────────────────────────────── */
.area {
  background: var(--black);
  color: var(--bone);
  padding: var(--sec-y) 0;
}
.area .eyebrow {
  color: var(--gold);
}
.area-wrap {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.area-copy {
  min-width: 0;
}
.area-intro {
  color: var(--grey-lt);
  max-width: 60ch;
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
}
.geo {
  display: grid;
  gap: 1.5rem;
  margin: clamp(1.75rem, 3vw, 2.5rem) 0 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
}
.geo-col {
  border-top: 3px solid var(--gold);
  padding-top: 0.9rem;
  min-width: 0;
}
.geo-col h4 {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
  color: var(--white);
}
.geo-col p {
  color: var(--grey);
  font-size: 0.96rem;
  margin: 0;
}
.area-note {
  font-size: 1rem;
  color: var(--grey-lt);
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  margin-bottom: 0;
}
.area-note a {
  color: var(--gold);
  font-weight: 800;
}

.map-fig {
  margin: 0;
  min-width: 0;
}
.map {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid var(--line);
  border-radius: var(--r);
  background: #141414;
}
.map-fig figcaption {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.5;
}
.pin circle {
  fill: var(--gold);
  stroke: rgba(13, 13, 13, 0.85);
  stroke-width: 2;
}
.pin .pin-dot {
  fill: var(--black);
  stroke: none;
}
.pin-line {
  stroke: var(--gold);
  stroke-width: 1.5;
  opacity: 0.5;
  stroke-dasharray: 3 4;
}
.pin-label {
  font-family: var(--body);
  font-size: 19px;
  font-weight: 700;
  fill: var(--bone);
}
.pin-label-key {
  font-size: 21px;
  font-weight: 800;
  fill: var(--gold-lt);
}

/* ── about ──────────────────────────────────────────── */
.about {
  padding: var(--sec-y) 0;
}
.about-wrap {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
}
.about-logo {
  width: clamp(130px, 32vw, 230px);
  justify-self: start;
}
.about p {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  max-width: 60ch;
}
.signoff {
  font-weight: 800;
  color: var(--gold-dk) !important;
  margin-top: 1.1rem;
}

/* ── faq ────────────────────────────────────────────── */
.faq {
  background: var(--bone-2);
  padding: var(--sec-y) 0;
}
.faq-list {
  max-width: 58rem;
  border-top: 3px solid var(--black);
}
.faq details {
  border-bottom: 1px solid var(--line-lt);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 3rem 1.15rem 0;
  position: relative;
  font: 700 clamp(1.05rem, 2.1vw, 1.22rem) / 1.35 var(--body);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "";
  position: absolute;
  right: 0.7rem;
  top: 1.6rem;
  width: 12px;
  height: 12px;
  border-right: 3px solid var(--gold-dk);
  border-bottom: 3px solid var(--gold-dk);
  transform: rotate(45deg);
  transition: transform 0.2s;
}
.faq details[open] summary::after {
  transform: rotate(-135deg);
  top: 1.9rem;
}
.faq summary:hover {
  color: var(--gold-dk);
}
.faq-a p {
  color: var(--ink);
  max-width: 62ch;
  margin: 0 0 1.15rem;
  font-size: 1.02rem;
}

/* ── closer ─────────────────────────────────────────── */
.closer {
  background: var(--gold);
  color: var(--black);
  padding: clamp(2.75rem, 6vw, 4.5rem) 0;
  text-align: center;
}
.closer h2 {
  font-size: clamp(2.1rem, 7vw, 4rem);
  line-height: 0.95;
  font-style: italic;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}
.closer p {
  font-weight: 700;
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  margin-bottom: 1.9rem;
}
.closer .btn-gold {
  background: var(--black);
  color: var(--gold);
}
.closer .btn-gold:hover {
  background: var(--coal);
}
.closer .btn-outline-light {
  border-color: var(--black);
  color: var(--black);
}
.closer .btn-outline-light:hover {
  background: var(--black);
  color: var(--gold);
}

/* ── footer ─────────────────────────────────────────── */
.foot {
  background: var(--black);
  color: var(--grey);
  padding: clamp(2.5rem, 5vw, 3.75rem) 0 2.5rem;
  font-size: 0.96rem;
}
.foot-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
}
.foot-grid > div {
  min-width: 0;
}
.foot-grid img {
  width: 120px;
}
.foot-blurb {
  margin-top: 0.85rem;
  max-width: 34ch;
}
.foot h4 {
  font: 800 0.82rem/1 var(--body);
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.95rem;
}
.foot li {
  margin-bottom: 0.55rem;
}
.foot a {
  text-decoration: none;
}
.foot a:hover {
  color: var(--gold);
}
.foot-legal {
  width: 100%;
  max-width: var(--wrap);
  margin: 2.5rem auto 0;
  padding: 1.3rem var(--gut) 0;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

/* ── mobile sticky bar ──────────────────────────────── */
.sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  transform: translateY(0);
  transition: transform 0.25s ease;
}
.sticky.tucked {
  transform: translateY(110%);
}
.sticky a {
  padding: 1.1rem 0.5rem;
  text-align: center;
  text-decoration: none;
  font: 400 clamp(1.05rem, 4vw, 1.3rem) / 1 var(--disp);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sticky-call {
  background: var(--gold);
  color: var(--black);
}
.sticky-quote {
  background: var(--coal);
  color: var(--white);
}

/* ═══════════ BREAKPOINTS ═══════════ */

/* tiny phones — pull the biggest type back in */
@media (max-width: 360px) {
  h1 {
    font-size: 2.85rem;
  }
  .ticks {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* larger phones */
@media (min-width: 480px) {
  .cta-row {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .cta-row .btn {
    flex: 1 1 auto;
  }
  .cta-center .btn {
    flex: 0 1 auto;
    min-width: 15rem;
  }
  .strip-sm {
    display: inline;
  }
}

/* tablets */
@media (min-width: 760px) {
  .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .about-wrap {
    grid-template-columns: auto minmax(0, 1fr);
  }
}

/* desktop — nav appears, hero goes two-column, sticky retires */
@media (min-width: 980px) {
  body {
    padding-bottom: 0;
  }
  .burger {
    display: none;
  }
  .bar-nav {
    display: flex;
  }
  .bar-nav.open {
    position: static;
    flex-direction: row;
    background: none;
    border: 0;
    padding: 0;
  }
  .bar-nav.open a {
    padding: 0.4rem 0;
    border-bottom: 2px solid transparent;
    color: var(--grey-lt);
  }
  .bar-btn {
    margin-left: 1.5rem;
  }
  .bar-btn-sm {
    display: none;
  }
  .bar-btn-lg {
    display: inline;
  }
  .hero-wrap {
    grid-template-columns: minmax(0, 1fr) clamp(24rem, 32vw, 29rem);
    align-items: start;
  }
  .area-wrap {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
  .sticky {
    display: none;
  }
  .flow-step {
    border-bottom: 0;
    border-right: 1px solid var(--line-lt);
    padding-right: clamp(1rem, 2vw, 1.75rem);
  }
  .flow-step:last-child {
    border-right: 0;
  }
}

/* big screens — let the container breathe */
@media (min-width: 1500px) {
  :root {
    --wrap: 84rem;
  }
}

/* ── motion + print ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  .card:hover {
    transform: none;
  }
}

@media print {
  .sticky,
  .bar,
  .strip,
  .burger {
    display: none !important;
  }
  body {
    padding-bottom: 0;
    background: #fff;
  }
}

/* map labels need to scale up when the SVG shrinks on phones */
@media (max-width: 900px) {
  .pin-label {
    font-size: 25px;
  }
  .pin-label-key {
    font-size: 27px;
  }
  .pin circle:not(.pin-dot) {
    r: 9;
  }
  .pin-key circle:not(.pin-dot) {
    r: 13;
  }
  .pin .pin-dot {
    r: 5;
  }
}
