/* =========================================================
   Wild West Towing — element5creative.com
   Palette + type locked to the Wild West Towing brand board.
   ========================================================= */

:root {
  /* brand board */
  --midnight:  #171717;
  --steel:     #40464F;
  --red:       #C62828;
  --orange:    #F57C00;
  --yellow:    #FFC107;
  --white:     #FFFFFF;
  --concrete:  #B9BEC5;
  --silver:    #D9DEE3;
  --asphalt:   #262B31;
  --sage:      #556B5D;

  /* derived surfaces */
  --ink:       #0C0D0F;
  --ink-2:     #121316;
  --ink-3:     #17191D;
  --line:      rgba(217,222,227,.12);
  --line-soft: rgba(217,222,227,.07);
  --red-deep:  #8E1B1B;
  --red-lift:  #E23A2E;

  --font-head: "Oswald", "Arial Narrow", sans-serif;
  --font-ui:   "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  --font-hit:  "Bebas Neue", "Oswald", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --shell: 1240px;
  --gutter: clamp(20px, 5vw, 56px);
  --rail: 44px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  /* the chain rail is absolutely positioned against this, so it has to be a
     containing block or it only spans one viewport */
  position: relative;
  margin: 0;
  background: var(--ink);
  color: var(--silver);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* height:auto keeps the width/height attributes from stretching anything we
   size in CSS. Class rules that need a fixed height (.hero__bg, .svc__photo)
   out-specify this. */
img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.015em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--red); color: #fff; }

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

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--yellow); color: #111; padding: 12px 20px;
  font-family: var(--font-ui); font-weight: 700; text-transform: uppercase;
}
.skip:focus { left: 12px; top: 12px; }

/* ---------- shared bits ---------- */

.eyebrow {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 3px;
  background: var(--red);
  transform: skewX(-20deg);
  flex: none;
}

.lede { font-size: clamp(17px, 1.5vw, 19px); color: var(--concrete); max-width: 62ch; }

.section { padding: clamp(72px, 9vw, 128px) 0; position: relative; }
.section--alt { background: var(--ink-2); }
.section--deep { background: var(--ink-3); }

.hr-chain {
  height: 22px;
  background: url("../img/chain-tile.svg") repeat-x;
  background-size: auto 22px;
  opacity: .25;
  filter: grayscale(.3);
}

/* buttons */
.btn {
  --btn-bg: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: var(--btn-bg);
  border: 0;
  padding: 18px 30px;
  cursor: pointer;
  position: relative;
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.btn:hover { --btn-bg: var(--red-lift); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .ic { width: 20px; height: 20px; }
.btn--ghost {
  --btn-bg: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 2px rgba(217,222,227,.28);
}
.btn--ghost:hover { --btn-bg: rgba(217,222,227,.08); }
.btn--lg { font-size: 19px; padding: 22px 38px; }
.btn--block { width: 100%; }

/* ---------- chain rail (the signature) ---------- */

.chain-rail {
  position: absolute;
  top: 0; bottom: 0;
  left: max(14px, calc((100vw - var(--shell)) / 2 - 62px));
  width: var(--rail);
  background: url("../img/chain-tile.svg") repeat-y;
  background-size: var(--rail) 68px;
  opacity: .5;
  pointer-events: none;
  z-index: 1;
  will-change: background-position;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 90px, #000 calc(100% - 260px), transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0, #000 90px, #000 calc(100% - 260px), transparent 100%);
}
@media (max-width: 1379px) { .chain-rail { display: none; } }

/* ---------- top bar ---------- */

.topbar {
  position: relative; z-index: 61; /* above the chain rail */
  background: #000;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--concrete);
}
.topbar .shell {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 40px; flex-wrap: wrap;
}
.topbar b { color: var(--yellow); font-weight: 700; }
.topbar__where { display: flex; gap: 10px; align-items: center; }
.dot { width: 5px; height: 5px; background: var(--red); border-radius: 50%; flex: none; }
@media (max-width: 860px) {
  .topbar__where { display: none; }
  .topbar .shell { justify-content: center; }
  .topbar { font-size: 12px; }
  .topbar .shell { min-height: 34px; padding-block: 7px; }
}
@media (max-width: 420px) { .topbar__long { display: none; } }

/* ---------- header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(12,13,15,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 18px 44px rgba(0,0,0,.6); }
.site-header .shell {
  display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); min-height: 78px;
}
.brand { flex: none; display: block; line-height: 0; }
.brand img { width: clamp(142px, 13vw, 190px); height: auto; }

.nav { margin-left: auto; display: flex; align-items: center; gap: clamp(16px, 1.8vw, 28px); }
.nav a {
  font-family: var(--font-ui); font-weight: 600; font-size: 15px;
  letter-spacing: .08em; text-transform: uppercase; white-space: nowrap;
  text-decoration: none; color: var(--silver);
  padding: 6px 0; position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--red); transition: right .25s var(--ease);
}
.nav a:hover::after { right: 0; }

.header-cta { display: flex; align-items: center; gap: 18px; flex: none; }
.header-phone { text-decoration: none; text-align: right; display: block; }
.header-phone .n {
  font-family: var(--font-head); font-weight: 700; font-size: 21px;
  color: var(--white); letter-spacing: .01em; line-height: 1.1;
}
.header-phone .l {
  font-family: var(--font-ui); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--orange);
}

.nav-toggle {
  display: none; margin-left: auto; background: none; border: 0; cursor: pointer;
  width: 46px; height: 46px; padding: 11px; color: var(--white);
}
.nav-toggle span { display: block; height: 2px; background: currentColor; margin: 5px 0; transition: transform .25s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-toggle { display: block; }
  .header-cta { order: 3; }
  .nav {
    position: fixed; inset: 118px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink-2); border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 24px;
    transform: translateY(-140%); transition: transform .3s var(--ease);
    max-height: calc(100vh - 118px); overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 16px 0; border-bottom: 1px solid var(--line-soft); font-size: 18px; }
  .nav a::after { display: none; }
}
@media (max-width: 760px) {
  /* the sticky call bar already carries this CTA, so drop it from the header
     rather than let three elements fight over 390px */
  .header-cta .btn { display: none; }
  .header-phone .n { font-size: 18px; }
  .site-header .shell { gap: 10px; min-height: 66px; }
  .brand img { width: 124px; }
}
@media (max-width: 400px) {
  .header-phone .l { display: none; }
  .brand img { width: 108px; }
}

/* ---------- hero ---------- */

.hero { position: relative; }
.hero__stage {
  position: relative;
  min-height: clamp(520px, 76vh, 760px);
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% 58%;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(96deg, rgba(8,8,9,.96) 0%, rgba(8,8,9,.86) 34%, rgba(8,8,9,.28) 62%, rgba(8,8,9,.55) 100%),
    linear-gradient(0deg, rgba(8,8,9,.95) 0%, rgba(8,8,9,0) 46%);
}
/* faint asphalt grain so the flat blacks aren't dead */
.hero__stage::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}
.hero__inner {
  position: relative; z-index: 2;
  padding: clamp(56px, 9vw, 96px) 0 clamp(104px, 11vw, 150px);
  width: 100%;
}
.hero__logo { width: clamp(260px, 34vw, 440px); height: auto; margin-bottom: 26px; }
.hero h1 {
  font-size: clamp(40px, 6.6vw, 84px);
  max-width: 15ch;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--red-lift);
  display: block;
}
.hero__sub { max-width: 54ch; color: var(--silver); font-size: clamp(16px, 1.5vw, 18.5px); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__micro {
  margin-top: 26px;
  font-family: var(--font-ui); font-size: 13.5px; letter-spacing: .13em;
  text-transform: uppercase; color: var(--concrete);
  display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center;
}
.hero__micro span { display: flex; align-items: center; gap: 8px; }

/* on a phone the copy sits over the middle of the photo, so the scrim has to
   run top-to-bottom instead of left-to-right */
@media (max-width: 900px) {
  .hero__bg { object-position: 58% 45%; }
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(8,8,9,.80) 0%, rgba(8,8,9,.52) 20%, rgba(8,8,9,.86) 44%, rgba(8,8,9,.96) 66%, #08080A 100%);
  }
  .hero__stage { min-height: 0; }
  .hero__inner { padding-bottom: clamp(80px, 14vw, 120px); }
}

.hero__badge {
  position: absolute; z-index: 3; right: var(--gutter); top: clamp(28px, 6vw, 64px);
  width: clamp(84px, 9vw, 122px); height: auto; opacity: .95;
  filter: drop-shadow(0 10px 26px rgba(0,0,0,.7));
}
@media (max-width: 900px) { .hero__badge { display: none; } }

/* ---------- dispatch console ---------- */

.dispatch { position: relative; z-index: 5; margin-top: clamp(-120px, -9vw, -80px); }
.console {
  background: linear-gradient(180deg, #1B1E23 0%, #121418 100%);
  border: 1px solid rgba(217,222,227,.16);
  border-top: 3px solid var(--red);
  box-shadow: 0 40px 90px rgba(0,0,0,.72);
  padding: clamp(24px, 3.2vw, 40px);
}
.console__head {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  align-items: baseline; justify-content: space-between;
  padding-bottom: 22px; margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.console__head h2 { font-size: clamp(24px, 2.6vw, 32px); }
.console__head p {
  margin: 0; font-family: var(--font-ui); font-size: 14px; letter-spacing: .13em;
  text-transform: uppercase; color: var(--concrete);
  display: flex; align-items: center; gap: 10px;
}
.pulse {
  width: 9px; height: 9px; border-radius: 50%; background: #46D06B; flex: none;
  box-shadow: 0 0 0 0 rgba(70,208,107,.65);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(70,208,107,.6); }
  70%  { box-shadow: 0 0 0 11px rgba(70,208,107,0); }
  100% { box-shadow: 0 0 0 0 rgba(70,208,107,0); }
}

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.step { position: relative; padding: 0 clamp(18px, 2.4vw, 32px); }
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step + .step::before {
  content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 1px;
  background: var(--line);
}
.step__n {
  font-family: var(--font-hit); font-size: 15px; letter-spacing: .18em;
  color: var(--orange); display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.step__n b {
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  width: 26px; height: 26px; display: grid; place-items: center;
  background: var(--red); color: #fff; flex: none;
}
.step h3 { font-size: 19px; margin-bottom: 14px; letter-spacing: 0; }

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; gap: 34px; }
  .step { padding: 0; }
  .step + .step::before { left: 0; right: 0; top: -17px; bottom: auto; width: auto; height: 1px; }
}

/* chips */
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  position: relative;
  font-family: var(--font-ui); font-weight: 600; font-size: 14.5px;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--silver);
  background: rgba(217,222,227,.06);
  border: 1px solid rgba(217,222,227,.16);
  padding: 9px 14px; cursor: pointer;
  transition: all .18s var(--ease);
  user-select: none;
}
.chip:hover { border-color: rgba(217,222,227,.4); background: rgba(217,222,227,.11); }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip:has(input:checked) {
  background: var(--red); border-color: var(--red); color: #fff;
}
.chip:has(input:focus-visible) { outline: 3px solid var(--yellow); outline-offset: 2px; }

/* fields */
.field { margin-bottom: 14px; }
.field:last-child { margin-bottom: 0; }
.field > label, .lbl {
  display: block;
  font-family: var(--font-ui); font-weight: 600; font-size: 12.5px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--concrete);
  margin-bottom: 7px;
}
.input {
  width: 100%;
  background: rgba(0,0,0,.42);
  border: 1px solid rgba(217,222,227,.18);
  color: var(--white);
  font-family: var(--font-body); font-size: 16px;
  padding: 13px 15px;
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
.input::placeholder { color: rgba(185,190,197,.45); }
.input:hover { border-color: rgba(217,222,227,.32); }
.input:focus { border-color: var(--orange); background: rgba(0,0,0,.62); outline: none; }
.input[aria-invalid="true"] { border-color: var(--red-lift); }
textarea.input { resize: vertical; min-height: 84px; }

.geo {
  margin-top: 9px;
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 0; padding: 0; cursor: pointer;
  font-family: var(--font-ui); font-weight: 600; font-size: 13.5px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--orange);
}
.geo:hover { color: var(--yellow); }
.geo .ic { width: 16px; height: 16px; }
.geo[data-state="ok"] { color: #46D06B; }

.err {
  display: none; color: #FF8A80; font-size: 13.5px; margin-top: 6px;
  font-family: var(--font-ui); letter-spacing: .04em;
}
.err.is-on { display: block; }

.console__foot {
  margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr auto; gap: 22px 34px; align-items: center;
}
.consent { font-size: 13px; color: rgba(185,190,197,.8); line-height: 1.6; margin: 0; max-width: 74ch; }
.consent a { color: var(--concrete); }
@media (max-width: 760px) { .console__foot { grid-template-columns: 1fr; } }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.console__done { display: none; text-align: center; padding: clamp(28px, 5vw, 56px) 0; }
.console.is-sent .console__body { display: none; }
.console.is-sent .console__done { display: block; }
.console__done .tick {
  width: 74px; height: 74px; margin: 0 auto 22px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(70,208,107,.14); border: 2px solid #46D06B; color: #46D06B;
}
.console__done .tick svg { width: 34px; height: 34px; }
.console__done h3 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 14px; }

/* ---------- credential strip ---------- */

.creds { border-block: 1px solid var(--line-soft); background: #000; }
.creds ul {
  list-style: none; margin: 0; padding: 26px 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.creds li {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-ui); font-weight: 600; font-size: 14.5px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--silver);
}
.creds li + li { border-left: 1px solid var(--line-soft); padding-left: 22px; }
.creds .ic { width: 30px; height: 30px; color: var(--red); flex: none; }
.creds b { display: block; color: var(--white); font-weight: 700; }
.creds span { display: block; font-size: 12px; letter-spacing: .1em; color: var(--concrete); font-weight: 500; }
@media (max-width: 980px) {
  .creds ul { grid-template-columns: repeat(2, 1fr); }
  .creds li:nth-child(odd) { border-left: 0; padding-left: 0; }
}
@media (max-width: 520px) {
  .creds ul { grid-template-columns: 1fr; gap: 16px; }
  .creds li { border-left: 0 !important; padding-left: 0 !important; }
}

/* ---------- services ---------- */

.svc-head { display: grid; grid-template-columns: 1fr auto; gap: 26px 60px; align-items: end; margin-bottom: clamp(34px, 4vw, 54px); }
.svc-head h2 { font-size: clamp(34px, 4.6vw, 60px); }
@media (max-width: 860px) { .svc-head { grid-template-columns: 1fr; } }

/* deliberately asymmetric — one feature panel, three ranked below it */
.svc-grid { display: grid; grid-template-columns: 1.22fr 1fr; gap: 20px; }
@media (max-width: 940px) { .svc-grid { grid-template-columns: 1fr; } }

.svc {
  position: relative;
  background: linear-gradient(180deg, #16181C 0%, #101216 100%);
  border: 1px solid var(--line);
  padding: clamp(24px, 3vw, 36px);
  overflow: hidden;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.svc:hover { border-color: rgba(217,222,227,.32); transform: translateY(-3px); }
.svc::before {
  content: ""; position: absolute; left: 0; top: 0; width: 3px; height: 0;
  background: var(--red); transition: height .35s var(--ease);
}
.svc:hover::before { height: 100%; }
.svc .ic { width: 44px; height: 44px; color: var(--orange); margin-bottom: 20px; }
.svc h3 { font-size: clamp(21px, 2.2vw, 27px); margin-bottom: 12px; }
.svc p { color: var(--concrete); font-size: 15.5px; margin: 0; }

.svc--feature {
  grid-row: span 3;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 420px;
  background: var(--asphalt);
}
.svc__photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 30% 62%;
  transform: scale(1.03);
  transition: transform 1.2s var(--ease);
}
.svc--feature:hover .svc__photo { transform: scale(1.07); }
.svc__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,11,12,.28) 0%, rgba(10,11,12,.72) 44%, rgba(10,11,12,.96) 78%, #0A0B0C 100%);
}
.svc--feature > *:not(.svc__photo):not(.svc__scrim) { position: relative; z-index: 2; }
.svc--feature .ic { width: 54px; height: 54px; color: var(--red-lift); }
.svc--feature h3 { font-size: clamp(28px, 3.4vw, 42px); }
.svc--feature p { font-size: 16.5px; max-width: 46ch; color: var(--silver); }
@media (max-width: 940px) { .svc--feature { grid-row: auto; min-height: 400px; } }

.svc-note {
  margin-top: 26px; font-family: var(--font-ui); font-size: 15px; letter-spacing: .06em;
  color: var(--concrete); text-transform: uppercase;
}
.svc-note a { color: var(--yellow); }

/* ---------- promise ---------- */

.promise-wrap { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(34px, 5vw, 76px); align-items: start; }
@media (max-width: 940px) { .promise-wrap { grid-template-columns: 1fr; } }
.promise-wrap h2 { font-size: clamp(32px, 4.4vw, 56px); margin-bottom: 20px; }

.promise { list-style: none; margin: 0; padding: 0; }
.promise li {
  position: relative;
  padding: 0 0 30px 74px;
  min-height: 62px;
}
.promise li:last-child { padding-bottom: 0; }
/* the chain runs between the promise numbers — signature element, small scale */
.promise li::before {
  content: "";
  position: absolute; left: 21px; top: 46px; bottom: -14px; width: 22px;
  background: url("../img/chain-tile.svg") repeat-y;
  background-size: 22px 34px;
  opacity: .34;
}
.promise li:last-child::before { display: none; }
.promise li .num {
  position: absolute; left: 0; top: 0;
  width: 44px; height: 44px; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 18px;
  color: #fff; background: var(--red);
  clip-path: polygon(0 0, 100% 0, calc(100% - 9px) 100%, 0 100%);
}
.promise h3 { font-size: clamp(19px, 2vw, 23px); margin-bottom: 8px; letter-spacing: 0; }
.promise p { color: var(--concrete); font-size: 15.5px; margin: 0; }

.promise-aside {
  background: #000; border: 1px solid var(--line); padding: clamp(24px, 3vw, 34px);
  position: relative; overflow: hidden;
}
.promise-aside .emblem { width: 92px; margin-bottom: 20px; }
.promise-aside h3 { font-size: 20px; margin-bottom: 12px; }
.promise-aside p { font-size: 15px; color: var(--concrete); }
.promise-aside .rule { height: 1px; background: var(--line); margin: 22px 0; }
.promise-aside dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 10px 16px; }
.promise-aside dt {
  font-family: var(--font-ui); font-size: 12px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--concrete);
}
.promise-aside dd { margin: 0; font-family: var(--font-head); font-weight: 600; color: var(--white); font-size: 15px; }

/* ---------- how it works ---------- */

.how { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px); margin-top: clamp(34px, 4vw, 56px); }
@media (max-width: 860px) { .how { grid-template-columns: 1fr; } }
.how article { position: relative; padding-top: 26px; border-top: 3px solid var(--red); }
.how .k {
  font-family: var(--font-hit); font-size: clamp(52px, 6vw, 78px); line-height: .8;
  color: transparent; -webkit-text-stroke: 1.5px rgba(217,222,227,.32);
  margin-bottom: 14px;
}
.how h3 { font-size: clamp(21px, 2.2vw, 26px); margin-bottom: 10px; }
.how p { color: var(--concrete); font-size: 15.5px; margin: 0; }

/* ---------- service area ---------- */

.areas-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 64px); }
@media (max-width: 940px) { .areas-wrap { grid-template-columns: 1fr; } }

.towns { columns: 2; column-gap: 30px; list-style: none; margin: 0; padding: 0; }
.towns li {
  break-inside: avoid;
  font-family: var(--font-ui); font-weight: 600; font-size: 16px;
  letter-spacing: .06em; text-transform: uppercase; color: var(--silver);
  padding: 7px 0; border-bottom: 1px solid var(--line-soft);
  display: flex; align-items: center; gap: 9px;
}
.towns li::before { content: ""; width: 5px; height: 5px; background: var(--red); flex: none; transform: rotate(45deg); }
.towns li.is-base { color: var(--yellow); }
@media (max-width: 480px) { .towns { columns: 1; } }

.area-block + .area-block { margin-top: 38px; }
.area-block h3 {
  font-size: 15px; letter-spacing: .2em; color: var(--orange);
  font-family: var(--font-ui); font-weight: 700; margin-bottom: 14px;
}

.shields { display: flex; flex-wrap: wrap; gap: 10px; }
.shield {
  font-family: var(--font-head); font-weight: 700; font-size: 15px; letter-spacing: .04em;
  color: var(--white); background: var(--asphalt);
  border: 1px solid rgba(217,222,227,.22);
  padding: 9px 15px; border-radius: 4px;
  display: inline-flex; align-items: center; gap: 8px;
}
.shield::before { content: ""; width: 3px; height: 15px; background: var(--yellow); }

/* ---------- review engine ---------- */

.rev-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 64px); align-items: center; }
@media (max-width: 940px) { .rev-wrap { grid-template-columns: 1fr; } }

.rev-flow { list-style: none; margin: 26px 0 0; padding: 0; }
.rev-flow li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0; border-top: 1px solid var(--line-soft);
}
.rev-flow li .ic { width: 26px; height: 26px; color: var(--orange); flex: none; margin-top: 2px; }
.rev-flow b { color: var(--white); font-family: var(--font-head); font-weight: 600; letter-spacing: .01em; display: block; font-size: 17px; text-transform: uppercase; }
.rev-flow span { font-size: 15px; color: var(--concrete); }

/* the printed review card, shown as a two-sided mockup */
.rev-stack { position: relative; padding: 30px 0 30px 40px; min-height: 460px; }
.pcard {
  width: min(340px, 100%);
  aspect-ratio: 7 / 4.4;
  padding: 22px 24px;
  border-radius: 6px;
  box-shadow: 0 30px 70px rgba(0,0,0,.72);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.pcard--front {
  background: linear-gradient(158deg, #202429 0%, #0D0F12 62%);
  border: 1px solid rgba(217,222,227,.2);
  transform: rotate(-4deg);
  z-index: 2;
  aspect-ratio: auto;
  padding-bottom: 26px;
}
.pcard--front h3 { font-size: 27px; margin: 2px 0 14px; }
.pcard--front p { font-size: 13.5px; color: var(--concrete); margin: 14px 0 0; line-height: 1.5; }
.pcard__mark { position: absolute; right: -18px; bottom: -14px; width: 128px; opacity: .16; }
.pcard__stars { color: var(--yellow); font-size: 15px; letter-spacing: 4px; }
.qr { width: 104px; height: 104px; background: #fff; padding: 6px; border-radius: 4px; }
.qr svg { width: 100%; height: 100%; }

.pcard--back {
  background: linear-gradient(158deg, var(--red) 0%, #7E1717 100%);
  border: 1px solid rgba(255,255,255,.18);
  transform: rotate(3.5deg) translate(84px, -12px);
  z-index: 1;
  justify-content: center;
  color: #fff;
}
.pcard__kicker {
  font-family: var(--font-ui); font-size: 11.5px; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.72);
}
.pcard__off {
  font-family: var(--font-hit); font-size: 62px; line-height: .9; color: #fff; margin: 4px 0 8px;
}
.pcard__off span { font-size: 26px; letter-spacing: .08em; }
.pcard--back p { font-size: 13px; color: rgba(255,255,255,.9); margin: 0; line-height: 1.55; }
.pcard--back b { color: #fff; }
.pcard__line {
  margin-top: 14px; font-family: var(--font-head); font-weight: 700; font-size: 19px; color: #fff;
}
@media (max-width: 940px) {
  .rev-stack { padding-left: 0; min-height: 0; display: flex; flex-wrap: wrap; gap: 26px; }
  .pcard--back { transform: rotate(3.5deg); }
}
@media (max-width: 460px) {
  .pcard--front, .pcard--back { transform: none; }
}

/* ---------- final CTA, hung off the hook ---------- */

.cta { position: relative; background: #000; overflow: hidden; }
.cta__hook {
  display: block; width: 96px; height: auto; margin: 0 auto;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.8));
}
.cta__chain {
  width: 30px; height: clamp(60px, 8vw, 108px); margin: 0 auto;
  background: url("../img/chain-tile.svg") repeat-y;
  background-size: 30px 46px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 42%);
          mask-image: linear-gradient(180deg, transparent, #000 42%);
}
.cta__card {
  margin: -14px auto 0;
  max-width: 900px; text-align: center;
  background: linear-gradient(180deg, #17191D 0%, #0C0D0F 100%);
  border: 1px solid rgba(217,222,227,.18);
  border-top: 3px solid var(--red);
  padding: clamp(34px, 5vw, 62px) clamp(24px, 4vw, 56px);
  box-shadow: 0 46px 100px rgba(0,0,0,.8);
  position: relative;
}
.cta__card h2 { font-size: clamp(32px, 5vw, 60px); margin-bottom: 18px; }
.cta__card p { color: var(--concrete); max-width: 56ch; margin-inline: auto; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; }
.cta__phone {
  display: block; margin-top: 26px;
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(30px, 4.6vw, 50px); color: var(--white); text-decoration: none;
  letter-spacing: .01em;
}
.cta__phone:hover { color: var(--yellow); }

/* ---------- footer ---------- */

.site-footer { background: var(--ink-2); border-top: 1px solid var(--line-soft); padding: clamp(48px, 6vw, 76px) 0 34px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr; gap: 34px; } }
.foot-grid img.mark { width: 210px; margin-bottom: 20px; }
.site-footer h4 { font-size: 14px; letter-spacing: .18em; color: var(--orange); font-family: var(--font-ui); font-weight: 700; margin-bottom: 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: 5px 0; }
.site-footer a { color: var(--concrete); text-decoration: none; font-size: 15.5px; }
.site-footer a:hover { color: var(--white); }
.site-footer address { font-style: normal; color: var(--concrete); font-size: 15.5px; line-height: 1.8; }
.foot-bottom {
  margin-top: 42px; padding-top: 24px; border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: space-between;
  font-size: 13.5px; color: rgba(185,190,197,.7);
}
.foot-bottom a { font-size: 13.5px; }

/* ---------- sticky mobile call bar ---------- */

.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; gap: 1px;
  background: var(--line);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -12px 34px rgba(0,0,0,.6);
}
.callbar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 8px; text-decoration: none;
  font-family: var(--font-ui); font-weight: 700; font-size: 15px;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--red); color: #fff;
}
.callbar a.alt { background: var(--asphalt); color: var(--white); }
.callbar .ic { width: 19px; height: 19px; }
@media (max-width: 780px) {
  .callbar { display: flex; }
  body { padding-bottom: 58px; }
}

/* ---------- reveal ---------- */

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }

/* ---------- legal pages ---------- */

.legal { padding: clamp(56px, 7vw, 96px) 0; }
.legal .shell { max-width: 820px; }
.legal h1 { font-size: clamp(34px, 5vw, 54px); margin-bottom: 10px; }
.legal .updated { font-family: var(--font-ui); letter-spacing: .14em; text-transform: uppercase; font-size: 13px; color: var(--concrete); margin-bottom: 40px; }
.legal h2 { font-size: clamp(20px, 2.4vw, 26px); margin: 40px 0 12px; }
.legal p, .legal li { color: var(--concrete); font-size: 16px; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--yellow); }
