/* ============================================================
   AKIN MOW & GO · site B · "RED LINE"
   Precision equipment catalogue. Pure white, Toro red, hard grid.
   Contrast (computed): white on --red 6.11:1 · --muted on white 7.46:1
   --ink on white 19.4:1 · --ink on --red-lo 16.9:1 · --muted on --red-lo 6.49:1
   ============================================================ */

/* ---------- tokens ---------- */
:root{
  --paper:  #ffffff;
  --ink:    #0d0d0d;
  --muted:  #555555;
  --red:    #c70011;
  --red-dk: #a8000e;   /* hover on red surfaces */
  --red-lo: #ffebe7;
  --orange: #f5810f;   /* decorative only, never text on white */
  --rule:   #d7d7d7;

  --font-display: 'Chivo', 'Arial Black', 'Arial Bold', sans-serif;
  --font-body: 'Hanken Grotesk', 'Segoe UI', system-ui, sans-serif;
  --font-stencil: 'Stardos Stencil', 'Chivo', sans-serif;

  --mx: clamp(20px, 5vw, 72px);       /* page margin */
  --gutter: clamp(12px, 1.8vw, 24px);
  --sec-pad: clamp(64px, 9vw, 132px);
  --head-h: 72px;
}
@supports (color: oklch(52% 0.215 27)){
  :root{
    --ink:    oklch(0.160 0 0);
    --muted:  oklch(0.450 0 0);
    --red:    oklch(0.520 0.215 27);
    --red-dk: oklch(0.470 0.205 27);
    --red-lo: oklch(0.960 0.030 27);
    --orange: oklch(0.720 0.175 55);
    --rule:   oklch(0.880 0 0);
  }
}

/* ---------- reset-ish ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ overflow-x: clip; scroll-padding-top: calc(var(--head-h) + 12px); }
@media (prefers-reduced-motion: no-preference){
  html{ scroll-behavior: smooth; }
}
html.has-lenis{ scroll-behavior: auto; }
body{
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font: 400 1rem/1.55 var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img{ max-width: 100%; display: block; }
h1, h2, h3{ text-wrap: balance; margin: 0; }
p{ margin: 0; }
ul, ol, dl, blockquote, figure{ margin: 0; padding: 0; }
li{ list-style: none; }
a{ color: inherit; }
main :where(a:not([class])){
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
main :where(a:not([class])):hover{ text-decoration-color: var(--orange); }
::selection{ background: var(--red); color: #fff; }
:focus-visible{
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}
.drench :focus-visible, .how :focus-visible, .proof :focus-visible,
.closing :focus-visible, .plate-red :focus-visible{
  outline-color: #fff;
}

/* ---------- utilities ---------- */
.wrap{ max-width: 1440px; margin-inline: auto; padding-inline: var(--mx); }
.skip{
  position: fixed; top: 10px; left: 10px; z-index: 200;
  background: var(--ink); color: #fff;
  padding: 12px 18px; font: 600 0.9rem var(--font-body);
  text-decoration: none;
  transform: translateY(-300%);
}
.skip:focus{ transform: none; }

/* ---------- header ---------- */
.site-head{
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(12px, 3vw, 40px);
  min-height: var(--head-h);
  padding: 14px var(--mx);
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  transition: padding .28s ease;
}
.site-head.is-condensed{ padding-block: 6px; }
.wordmark{
  display: inline-flex;
  align-items: center;
  gap: 0.32em;
  min-height: 44px;
  font: 700 clamp(1.05rem, 2.3vw, 1.4rem)/1 var(--font-stencil);
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  color: var(--ink);
}
.wordmark b{ font-weight: 700; color: var(--red); }
.site-nav{ display: flex; }
.site-nav a{
  display: inline-flex; align-items: center;
  min-height: 44px; padding: 0 18px;
  font: 700 0.78rem/1 var(--font-display);
  letter-spacing: 0.045em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
}
.site-nav a + a{ box-shadow: -1px 0 0 var(--rule); }  /* hairline dividers */
.site-nav a::before{
  content: ''; width: 7px; height: 7px; flex: none;
  background: var(--red); margin-right: 9px;
  opacity: 0; transition: opacity .15s ease;
}
.site-nav a:hover, .site-nav a:focus-visible{ color: var(--red); }
.site-nav a:hover::before, .site-nav a:focus-visible::before{ opacity: 1; }
.phone-pill{
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 22px;
  background: var(--red); color: #fff;
  border-radius: 999px;
  font: 600 0.95rem var(--font-body);
  text-decoration: none;
  white-space: nowrap;
}
.phone-pill:hover{ background: var(--red-dk); }
@media (max-width: 900px){
  .site-nav{ display: none; }
}
@media (max-width: 420px){
  .site-head{ gap: 10px; }
  .phone-pill{ padding: 0 16px; font-size: 0.875rem; }
}

/* ---------- hero ---------- */
.hero{ position: relative; }
.hero-inner{
  display: grid;
  grid-template-columns: minmax(0, 46fr) minmax(0, 54fr);
  align-items: stretch;
  gap: var(--gutter);
  max-width: 1440px;
  margin-inline: auto;
  padding-left: var(--mx);
  padding-block: clamp(40px, 5vw, 72px) clamp(16px, 2vw, 32px);
}
.hero-copy{ display: flex; flex-direction: column; }
.hero-copy h1{
  font: 900 clamp(2.5rem, 5.4vw, 5.25rem)/0.98 var(--font-display);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.hero-sub{
  margin-top: clamp(18px, 2.4vw, 28px);
  max-width: 44ch;
  font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
  color: var(--ink);
}
.hero-cta{
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: clamp(22px, 3vw, 34px);
  margin-bottom: clamp(20px, 2.5vw, 36px);
}
.btn{
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 26px;
  border-radius: 999px;
  font: 600 1rem var(--font-body);
  text-decoration: none;
  white-space: nowrap;
}
.btn-solid{ background: var(--red); color: #fff; }
.btn-solid:hover{ background: var(--red-dk); }
.btn-ghost{ border: 2px solid var(--ink); color: var(--ink); }
.btn-ghost:hover{ border-color: var(--red); color: var(--red); }
.hero-spec{
  margin-top: auto;
  max-width: 420px;
  border-top: 3px solid var(--orange);
}
.hero-spec > div{
  display: grid; grid-template-columns: 88px 1fr; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
}
.hero-spec dt{
  font: 700 0.75rem/1.8 var(--font-display);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}
.hero-spec dd{ margin: 0; font-weight: 600; font-size: 0.95rem; align-self: center; }

/* --- the 3D stage --- */
.hero-visual{
  position: relative;
  min-height: clamp(360px, 44vw, 620px);
  align-self: stretch;
  overflow: clip;
  /* past 1440px the wrap centers; pull the plate on out to the viewport edge */
  margin-right: min(0px, calc((1440px - 100vw) / 2));
}
.hero-plate{
  position: absolute;
  top: 4%; right: 0; bottom: 28%; left: 14%;
  background: var(--red);
  overflow: hidden;
}
.hero-plate canvas{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.stage-scroll{
  position: absolute; inset: 0;
}
/* shared ground line: the wheels sit at 18% from the visual bottom, the
   plate ends at 28%, so the deck breaks the plate edge onto white on purpose
   and the reflection carries on below it, dying at the visual bottom */
.stage-scene{
  position: absolute;
  left: 50%; bottom: 18%;
  transform: translateX(-50%);
  width: min(86%, 600px);
  perspective: 1100px;
  perspective-origin: 50% 28%;
}
.stage-tilt{
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(2deg) rotateY(-8deg);   /* baked pose for no-JS / reduced motion */
  will-change: transform;
}
.stage-shadow{
  position: absolute;
  left: 0; right: 0; top: 94%; height: 10%;
  background:
    radial-gradient(8% 42% at 46.5% 60%, rgb(0 0 0 / 0.6), rgb(0 0 0 / 0) 72%),
    radial-gradient(6% 34% at 64% 48%, rgb(0 0 0 / 0.38), rgb(0 0 0 / 0) 70%),
    radial-gradient(30% 55% at 47% 55%, rgb(0 0 0 / 0.16), rgb(0 0 0 / 0) 85%);
  filter: blur(4px);
  transform: translateZ(8px);
}
.stage-mower{
  position: relative;
  width: 100%; height: auto;
  transform: translateZ(46px);
}
.stage-refl{
  position: absolute;
  top: 100%; left: 0; width: 100%;
  aspect-ratio: 1178 / 948;
  transform: translateZ(18px);
  pointer-events: none;
}
.stage-refl img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  transform: scaleY(-1);
}
.refl-near{
  filter: blur(1.5px) saturate(1.05);
  -webkit-mask-image: linear-gradient(to bottom, rgb(0 0 0 / 0.5), rgb(0 0 0 / 0.16) 9%, transparent 20%);
          mask-image: linear-gradient(to bottom, rgb(0 0 0 / 0.5), rgb(0 0 0 / 0.16) 9%, transparent 20%);
}
.refl-far{
  filter: blur(8px) saturate(1.05);
  -webkit-mask-image: linear-gradient(to bottom, transparent 2%, rgb(0 0 0 / 0.22) 10%, rgb(0 0 0 / 0.08) 19%, transparent 28%);
          mask-image: linear-gradient(to bottom, transparent 2%, rgb(0 0 0 / 0.22) 10%, rgb(0 0 0 / 0.08) 19%, transparent 28%);
}
@media (max-width: 900px){
  .hero-inner{
    grid-template-columns: minmax(0, 1fr);
    padding-right: 0;
    padding-block: clamp(32px, 6vw, 56px) 0;
  }
  .hero-copy{ padding-right: var(--mx); }
  .hero-visual{
    margin-top: 36px;
    margin-left: calc(-1 * var(--mx));
    min-height: min(118vw, 560px);
  }
  .hero-plate{ left: 16%; top: 6%; }
  .stage-scene{ width: min(82%, 480px); }
}

/* ---------- drench band ---------- */
.drench{
  position: relative;
  overflow: hidden;
  background: var(--red);
  color: #fff;
  padding: clamp(52px, 9vw, 116px) var(--mx);
}
.drench canvas{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.drench-line{
  position: relative;
  max-width: 1440px; margin-inline: auto;
  display: flex; flex-wrap: wrap; column-gap: 0.32em;
  font: 900 clamp(2.15rem, 7.4vw, 6rem)/0.96 var(--font-display);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.dw{ display: inline-block; overflow: hidden; padding-block: 0.04em; }
.dw i{ display: inline-block; font-style: normal; }

/* ---------- section heads ---------- */
.sec-head{
  position: relative;
  margin-bottom: clamp(32px, 4.5vw, 56px);
  padding-bottom: 16px;
}
.sec-rule{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--rule);
}
.how .sec-rule{ background: rgb(255 255 255 / 0.45); }
.sec-head h2{
  font: 900 clamp(1.9rem, 4vw, 3.4rem)/1 var(--font-display);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.sec-lede{
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  max-width: 52ch;
}
.sec-head-split{
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 12px 40px;
}
.sec-head-split .sec-lede{ margin-top: 0; text-align: right; max-width: 38ch; }
@media (max-width: 700px){
  .sec-head-split{ display: block; }
  .sec-head-split .sec-lede{ margin-top: 14px; text-align: left; }
}

/* ---------- services: catalogue spread ---------- */
.services{ padding-block: var(--sec-pad); }
.cat-grid{
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gutter);
}
.plate{
  border: 1px solid var(--rule);
  padding: clamp(22px, 3vw, 40px);
  display: flex; flex-direction: column;
  min-height: 100%;
}
.plate h3{
  font: 900 clamp(1.35rem, 2.2vw, 1.9rem)/1.05 var(--font-display);
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.plate p{ margin-top: 12px; max-width: 52ch; }
.plate-list{ margin-top: 18px; }
.plate-list li{
  padding: 9px 0;
  border-top: 1px solid var(--rule);
  font-weight: 500; font-size: 0.95rem;
}
.plate-cap{
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  font: 500 0.8125rem/1.5 var(--font-body);
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--muted);
}
.plate-cap{ margin-top: auto; }
.plate p + .plate-cap, .plate-list + .plate-cap{ margin-top: auto; }
.plate-red{
  border-color: var(--red);
  color: #fff;
}
/* press texture: fine halftone + ink-density gradients, black only, so
   white-on-red contrast never drops below the flat 6.11:1 */
.how, .proof, .closing, .plate-red{
  background-color: var(--red);
  background-image:
    radial-gradient(rgb(0 0 0 / 0.05) 1px, transparent 1.35px),
    radial-gradient(130% 90% at 88% -4%, rgb(0 0 0 / 0.10), rgb(0 0 0 / 0) 58%),
    radial-gradient(150% 110% at -6% 104%, rgb(0 0 0 / 0.09), rgb(0 0 0 / 0) 55%);
  background-size: 7px 7px, 100% 100%, 100% 100%;
}
.plate-red .plate-cap{ color: #fff; border-top-color: rgb(255 255 255 / 0.45); }
.mark{
  display: block;
  background: currentColor;
  -webkit-mask: var(--m) center / contain no-repeat;
          mask: var(--m) center / contain no-repeat;
}
.mark-mower{ --m: url("assets/gen/mark-mower.png"); aspect-ratio: 887 / 719; }
.mark-trimmer{ --m: url("assets/gen/mark-trimmer.png"); aspect-ratio: 815 / 895; }
.mark-blower{ --m: url("assets/gen/mark-blower.png"); aspect-ratio: 890 / 502; }

.plate-cut{ grid-column: 1 / 8; }
.plate-cut .mark-mower{
  width: clamp(200px, 24vw, 340px);
  align-self: flex-end;
  margin-top: 20px;
  color: var(--ink);
}
.plate-blow{ grid-column: 8 / 13; }
.plate-blow .mark-blower{
  width: clamp(170px, 18vw, 250px);
  align-self: flex-end;
  margin-block: 26px 20px;
  color: #fff;
}
.plate-trim{ grid-column: 1 / 6; flex-direction: column; }
.plate-trim .mark-trimmer{
  width: clamp(110px, 11vw, 150px);
  color: var(--ink);
  margin-bottom: 18px;
}
.plate-edge{ grid-column: 6 / 13; border-top: 3px solid var(--orange); }
@media (max-width: 900px){
  .plate-cut, .plate-blow, .plate-trim, .plate-edge{ grid-column: 1 / -1; }
  .plate-cut .mark-mower{ width: min(62vw, 300px); }
}

/* ---------- how it works (red drench) ---------- */
.how{
  color: #fff;
  padding-block: var(--sec-pad);
}
.how .sec-lede{ color: #fff; }
.how a{ color: #fff; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.steps{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 48px);
  counter-reset: none;
}
.step{
  border-top: 1px solid rgb(255 255 255 / 0.45);
  padding-top: clamp(16px, 2vw, 26px);
}
.step-n{
  display: block;
  overflow: hidden;
  height: 1em;
  font: 900 clamp(3.2rem, 6.5vw, 5.5rem)/1 var(--font-display);
  letter-spacing: -0.02em;
}
.step-n .reel{ display: block; will-change: transform; }
.step-n .reel span{ display: block; height: 1em; line-height: 1; }
.step h3{
  margin-top: 14px;
  font: 900 clamp(1.2rem, 1.8vw, 1.5rem)/1.15 var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.step p{ margin-top: 10px; max-width: 40ch; }
@media (max-width: 800px){
  .steps{ grid-template-columns: minmax(0, 1fr); }
}

/* ---------- the work: photo grid ---------- */
.work{ padding-block: var(--sec-pad); }
.work-grid{
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gutter);
}
.work-fig{ display: flex; flex-direction: column; min-width: 0; }
.work-fig picture{
  display: block;
  overflow: hidden;
  aspect-ratio: var(--ar, 4 / 3);
  background: var(--red-lo);
}
.work-fig img{
  width: 100%; height: 100%;
  object-fit: cover;
}
.work-fig figcaption{
  padding: 10px 0 4px;
  border-bottom: 1px solid var(--rule);
  margin-top: auto;
  font: 500 0.8125rem/1.5 var(--font-body);
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--muted);
}
.f-checker{ grid-column: 1 / 8; grid-row: 1 / 3; --ar: 3 / 4; }
.f-edge{ grid-column: 8 / 13; grid-row: 1; --ar: 4 / 3; }
.f-wide{ grid-column: 8 / 13; grid-row: 2; --ar: 1200 / 628; }
.f-tree{ grid-column: 1 / 8; --ar: 4 / 3; }
.f-acreage{ grid-column: 8 / 13; --ar: 4 / 3; }
.f-front{ grid-column: 1 / 6; --ar: 960 / 580; }
.f-backyard{ grid-column: 6 / 13; --ar: 4 / 3; }

/* breaker spread: the photo leaves the column grid and bleeds off the left
   viewport edge; the caption sets in the right margin */
.work-breaker{
  display: grid;
  grid-template-columns: minmax(0, 9.5fr) minmax(0, 2.5fr);
  gap: var(--gutter);
  align-items: start;
  margin-block: var(--gutter);
}
.work-breaker picture{
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: var(--red-lo);
  margin-left: calc(-1 * var(--mx) - max(0px, (100vw - 1440px) / 2));
}
.work-breaker img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
}
.work-breaker figcaption{
  border-top: 1px solid var(--rule);
  padding-top: 10px;
  font: 500 0.8125rem/1.5 var(--font-body);
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--muted);
}
.cap-ref{ color: var(--red); font-weight: 700; }
@media (min-width: 901px){
  .f-checker picture{ aspect-ratio: auto; flex: 1; min-height: 0; }
}
@media (max-width: 900px){
  .work-fig{ grid-column: 1 / -1 !important; grid-row: auto !important; }
  .work-breaker{ grid-template-columns: minmax(0, 1fr); }
  .work-breaker picture{ aspect-ratio: 4 / 3; margin-inline: calc(-1 * var(--mx)); }
}

/* ---------- the rig ---------- */
.rig{ padding-block: 0 var(--sec-pad); }
.rig-grid{
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(24px, 3.5vw, 56px);
  align-items: start;
}
.spec{
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.spec thead th{
  background: var(--red);
  color: #fff;
  text-align: left;
  font: 900 0.85rem/1.3 var(--font-display);
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 12px 16px;
}
.spec tbody th, .spec tbody td{
  text-align: left;
  vertical-align: top;
  padding: 14px 16px;
  border-bottom: 1px solid var(--rule);
}
.spec tbody th{
  font: 700 1rem/1.4 var(--font-display);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.spec tbody td{ color: var(--ink); }
.spec tbody tr:nth-child(even){ background: var(--red-lo); }
.rig-note{
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--muted);
}
.rig-photos{ display: grid; gap: var(--gutter); }
.f-trailer{ --ar: 4 / 3; }
.f-driveway{ --ar: 3 / 4; }
@media (max-width: 900px){
  .rig-grid{ grid-template-columns: minmax(0, 1fr); }
  .spec tbody th{ white-space: normal; }
}
@media (max-width: 480px){
  .spec tbody th, .spec tbody td{ padding: 12px 10px; }
  .spec thead th{ padding: 10px; }
}

/* ---------- proof (red) ---------- */
.proof{
  color: #fff;
  padding-block: var(--sec-pad);
}
.proof blockquote{ max-width: 30em; }
.proof blockquote p{
  font: 700 clamp(1.4rem, 2.9vw, 2.5rem)/1.25 var(--font-display);
  letter-spacing: -0.015em;
}
.proof blockquote footer{
  margin-top: clamp(20px, 3vw, 32px);
  padding-top: 14px;
  border-top: 1px solid rgb(255 255 255 / 0.45);
  font: 500 0.95rem var(--font-body);
  max-width: 46ch;
}
.proof cite{ font-style: normal; font-weight: 600; }

/* ---------- where we mow ---------- */
.area{ padding-block: var(--sec-pad); }
.towns li{
  border-top: 1px solid var(--rule);
  padding: clamp(14px, 2vw, 24px) 0;
  font: 900 clamp(1.8rem, 4.4vw, 3.4rem)/1.05 var(--font-display);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
}
.towns li:last-child{ border-bottom: 1px solid var(--rule); }
.town-tag{
  font: 700 0.8rem/1 var(--font-display);
  letter-spacing: 0.06em;
  color: var(--muted);
}
.area-cta{
  margin-top: clamp(28px, 4vw, 44px);
  border: 1px solid var(--rule);
  padding: clamp(18px, 2.6vw, 28px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px 24px;
}
.area-cta p{ font: 600 clamp(1.05rem, 1.5vw, 1.25rem)/1.3 var(--font-body); }

/* ---------- closing (red) ---------- */
.closing{
  color: #fff;
  padding-block: clamp(72px, 11vw, 160px);
}
.closing-kicker{
  font: 500 clamp(1.05rem, 1.6vw, 1.3rem)/1.4 var(--font-body);
}
.closing-phone{
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: clamp(14px, 2vw, 24px);
  font: 900 clamp(2.2rem, 9vw, 6rem)/1 var(--font-display);
  letter-spacing: -0.03em;
  color: #fff;
  text-decoration: none;
  padding-block: 6px;
  border-bottom: 4px solid transparent;
}
.closing-phone:hover{ border-bottom-color: var(--orange); }
.ph-c, .ph-d{ display: block; height: 1em; }
.ph-d{ overflow: hidden; }
.ph-reel{ display: block; will-change: transform; }
.ph-reel span{ display: block; height: 1em; }
.closing-links{
  display: flex; flex-wrap: wrap; gap: 8px 36px;
  margin-top: clamp(24px, 3.5vw, 44px);
}
.closing-links a{
  display: inline-flex; align-items: center;
  min-height: 44px;
  color: #fff;
  font-weight: 500;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}
.closing-links a:hover{ text-decoration-color: var(--orange); }

/* ---------- footer ---------- */
.site-foot{
  border-top: 1px solid var(--rule);
  padding-block: clamp(32px, 4vw, 48px);
}
.foot-inner{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px 40px;
}
.wordmark-foot{ font-size: 1.05rem; }
.foot-meta{ color: var(--muted); font-size: 0.9rem; }
.foot-links{ display: flex; flex-wrap: wrap; gap: 4px 8px; }
.foot-links a{
  display: inline-flex; align-items: center;
  min-height: 44px; padding: 12px 8px;
  font-weight: 500; font-size: 0.9rem;
  color: var(--ink);
  text-decoration: none;
}
.foot-links a:hover{ text-decoration: underline; text-decoration-color: var(--red); text-decoration-thickness: 2px; text-underline-offset: 5px; }
.foot-copy{ grid-column: 1 / -1; color: var(--muted); font-size: 0.85rem; }
@media (max-width: 800px){
  .foot-inner{ grid-template-columns: minmax(0, 1fr); gap: 8px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
}
