/* =========================================================================
   Specialized Fleet Services — design system
   Rugged: black ground, gold accent, condensed uppercase display type,
   hard edges, no decorative rounding.
   ========================================================================= */

:root {
  --gold: #d4a537;
  --gold-dark: #b8892a;
  --gold-mid: #c1922e;
  --gold-soft: rgba(212, 165, 55, 0.12);

  --ink: #0c0d0f;
  --panel: #14161a;
  --panel-2: #1b1e23;
  --panel-3: #23272d;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  --text: #e9eaec;
  --muted: #98a0aa;
  --white: #ffffff;

  --display: "Barlow Condensed", "Oswald", "Arial Narrow", "Helvetica Neue", sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1180px;
  --gutter: clamp(18px, 5vw, 40px);
  --sec-y: clamp(56px, 8vw, 104px);
}

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

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 {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-mid); }

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: #000; padding: 10px 16px; font-weight: 700;
}
.skip:focus { left: 8px; top: 8px; }

/* ---------- Layout ------------------------------------------------------ */

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.sec { padding-block: var(--sec-y); position: relative; }
.sec--tight { padding-block: clamp(40px, 6vw, 72px); }
.sec--panel { background: var(--panel); }
.sec--panel2 { background: var(--panel-2); }

.grid { display: grid; gap: clamp(18px, 3vw, 30px); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.split { display: grid; gap: clamp(28px, 5vw, 64px); grid-template-columns: 1fr 1fr; align-items: center; }

@media (max-width: 900px) {
  .grid-3, .grid-2, .split { grid-template-columns: 1fr; }
}

/* ---------- Type -------------------------------------------------------- */

h1, h2, h3, h4, .display {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.04;
  margin: 0 0 0.5em;
  color: var(--white);
}

h1 { font-size: clamp(2.35rem, 6.2vw, 4.35rem); letter-spacing: -0.005em; }
h2 { font-size: clamp(1.85rem, 4.1vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.3vw, 1.55rem); }
h4 { font-size: 1.08rem; letter-spacing: 0.03em; }

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

.lead { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: #c8ccd2; max-width: 62ch; }
.muted { color: var(--muted); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* Eyebrow: small gold label with a hard bar */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.22em; font-size: 0.82rem; color: var(--gold);
  margin: 0 0 16px;
}
.eyebrow::before { content: ""; width: 34px; height: 3px; background: var(--gold); flex: none; }
.eyebrow--c { justify-content: center; }
.eyebrow--c::after { content: ""; width: 34px; height: 3px; background: var(--gold); flex: none; }

.rule { height: 3px; width: 64px; background: var(--gold); margin: 22px 0; }
.rule--c { margin-inline: auto; }

/* ---------- Buttons ----------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 1.02rem;
  padding: 15px 28px; border: 2px solid transparent; cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn .ico svg { width: 19px; height: 19px; }

.btn--gold { background: var(--gold); color: #12100a; border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-mid); border-color: var(--gold-mid); color: #12100a; }

.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.32); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--dark { background: #12100a; color: var(--gold); border-color: #12100a; }
.btn--dark:hover { background: #000; color: var(--gold); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--c { justify-content: center; }

/* ---------- Header ------------------------------------------------------ */

.topbar {
  background: #000; border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 44px; flex-wrap: wrap; }
.topbar a { color: #d7dade; }
.topbar a:hover { color: var(--gold); }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; padding-block: 6px; }
.topbar-item .ico svg { width: 15px; height: 15px; color: var(--gold); }
.topbar-item b { color: var(--gold); font-weight: 700; letter-spacing: .02em; }
.topbar-list { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
@media (max-width: 760px) { .topbar-secondary { display: none; } }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(12, 13, 15, 0.94);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 76px; }
.brand { flex: none; }

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); }
.brand:hover { color: var(--white); }
.brand-mark {
  width: 42px; height: 42px; flex: none; display: grid; place-items: center;
  background: var(--gold); color: #12100a;
  font-family: var(--display); font-weight: 700; font-size: 1.22rem; letter-spacing: -0.02em;
  clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-text { display: grid; line-height: 1.05; }
.brand-text b {
  font-family: var(--display); font-size: 1.28rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.02em; color: var(--white);
}
.brand-text span { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--display); text-transform: uppercase; font-weight: 600;
  letter-spacing: 0.05em; font-size: 0.92rem; color: #d3d7dc; white-space: nowrap;
  padding: 10px 10px; border-bottom: 2px solid transparent;
}
.nav > .btn { display: none; }
.nav a:hover { color: var(--gold); }
.nav a[aria-current="page"] { color: var(--gold); border-bottom-color: var(--gold); }

.header-cta { display: inline-flex; align-items: center; gap: 12px; flex: none; }
.header-cta .btn { white-space: nowrap; padding: 13px 20px; font-size: .98rem; }

.nav-toggle {
  display: none; background: transparent; border: 1px solid var(--line-strong);
  color: var(--white); width: 46px; height: 44px; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 1180px) {
  .nav-toggle { display: inline-flex; }
  .header-cta .btn { display: none; }
  .nav {
    position: absolute; inset: 100% 0 auto 0; max-height: calc(100vh - 120px); overflow-y: auto; flex-direction: column; align-items: stretch;
    background: var(--panel); border-bottom: 1px solid var(--line); padding: 8px var(--gutter) 18px;
    gap: 0;
  }
  .nav[hidden] { display: none; }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav a[aria-current="page"] { border-bottom-color: var(--line); }
  .nav > .btn { display: inline-flex; margin-top: 16px; }
}

/* ---------- Hero -------------------------------------------------------- */

.hero {
  position: relative; isolation: isolate;
  background: #000 center/cover no-repeat;
  border-bottom: 3px solid var(--gold);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(8,9,11,.94) 0%, rgba(8,9,11,.82) 46%, rgba(8,9,11,.55) 100%),
    radial-gradient(120% 90% at 88% 12%, rgba(212,165,55,.16) 0%, transparent 58%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.022) 0 2px, transparent 2px 9px);
}
.hero-inner { padding-block: clamp(52px, 8vw, 104px); max-width: 780px; }
.hero h1 { text-shadow: 0 2px 30px rgba(0,0,0,.5); }
.hero .lead { color: #d2d6db; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 0;
  border-top: 1px solid var(--line-strong); margin-top: 38px;
}
.hero-stat { padding: 20px 30px 4px 0; margin-right: 30px; border-right: 1px solid var(--line-strong); }
.hero-stat:last-child { border-right: 0; }
.hero-stat b {
  display: block; font-family: var(--display); font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  color: var(--gold); line-height: 1; font-weight: 700;
}
.hero-stat span { font-size: 0.8rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted); }

/* ---------- Cards ------------------------------------------------------- */

.card {
  background: var(--panel-2); border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  padding: clamp(24px, 3vw, 34px);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}
.card:hover { transform: translateY(-4px); background: var(--panel-3); }
.card h3 { margin: 0; }
.card p { color: var(--muted); font-size: 0.97rem; }
.card .more {
  margin-top: auto; padding-top: 8px;
  font-family: var(--display); text-transform: uppercase; letter-spacing: .12em;
  font-size: .84rem; color: var(--gold); display: inline-flex; align-items: center; gap: 8px;
}
.card .more svg { width: 15px; height: 15px; }

.ico { display: inline-flex; }
.ico svg { width: 24px; height: 24px; }
.card-ico {
  width: 58px; height: 58px; display: grid; place-items: center;
  background: var(--gold-soft); color: var(--gold); border: 1px solid rgba(212,165,55,.28);
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}
.card-ico svg { width: 27px; height: 27px; }

/* Checklist */
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.checks li { position: relative; padding-left: 30px; color: #cdd2d8; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 15px; height: 8px; border-left: 2.5px solid var(--gold); border-bottom: 2.5px solid var(--gold);
  transform: rotate(-45deg);
}
.checks--2 { grid-template-columns: repeat(2, minmax(0,1fr)); column-gap: 26px; }
@media (max-width: 640px) { .checks--2 { grid-template-columns: 1fr; } }

/* Feature list with icon */
.features { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.feature { display: grid; grid-template-columns: 54px 1fr; gap: 18px; align-items: start; }
.feature h4 { margin: 0 0 4px; color: var(--white); }
.feature p { margin: 0; color: var(--muted); font-size: .96rem; }

/* ---------- Media frame ------------------------------------------------- */

.frame { position: relative; }
.frame img { width: 100%; border: 1px solid var(--line); }
.frame::before {
  content: ""; position: absolute; inset: auto -14px -14px auto;
  width: 58%; height: 62%; border: 3px solid var(--gold); z-index: -1;
}
.frame--flip::before { inset: -14px auto auto -14px; }

.ph {
  aspect-ratio: 4 / 3; width: 100%;
  background:
    repeating-linear-gradient(135deg, rgba(212,165,55,.10) 0 12px, transparent 12px 24px),
    var(--panel-2);
  border: 1px dashed rgba(212,165,55,.45);
  display: grid; place-content: center; gap: 8px; text-align: center; padding: 22px;
  color: var(--gold);
  font-family: var(--display); text-transform: uppercase; letter-spacing: .14em; font-size: .84rem;
}
.ph small { display: block; color: var(--muted); letter-spacing: .04em; font-family: var(--body); text-transform: none; font-size: .8rem; }

/* ---------- Stats band -------------------------------------------------- */

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat { background: var(--panel); padding: clamp(24px, 3vw, 36px) 22px; text-align: center; }
.stat b { display: block; font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 4.4vw, 3rem); color: var(--gold); line-height: 1; }
.stat span { display: block; margin-top: 8px; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Steps ------------------------------------------------------- */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 34px); counter-reset: s; }
.step { position: relative; padding-top: 26px; border-top: 1px solid var(--line-strong); }
.step::before {
  counter-increment: s; content: "0" counter(s);
  position: absolute; top: -20px; left: 0;
  font-family: var(--display); font-weight: 700; font-size: 2.6rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(212,165,55,.55);
}
.step h3 { margin: 8px 0 8px; }
.step p { color: var(--muted); font-size: .97rem; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; gap: 34px; } }

/* ---------- CTA band ---------------------------------------------------- */

.cta {
  background: linear-gradient(133deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #17130a; position: relative; overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(0,0,0,.05) 0 14px, transparent 14px 28px);
}
.cta .wrap { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta h2 { color: #14110a; margin: 0; max-width: 22ch; }
.cta p { color: rgba(23,19,10,.82); margin: 8px 0 0; max-width: 52ch; }

/* ---------- FAQ --------------------------------------------------------- */

.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative;
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .02em; font-size: clamp(1.02rem, 1.9vw, 1.22rem); color: var(--white);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 13px; height: 13px;
  border-right: 2.5px solid var(--gold); border-bottom: 2.5px solid var(--gold);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq summary:hover { color: var(--gold); }
.faq .a { padding: 0 44px 26px 0; color: var(--muted); max-width: 78ch; }

/* ---------- Contact / forms -------------------------------------------- */

.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.info-list li { display: grid; grid-template-columns: 46px 1fr; gap: 16px; align-items: start; }
.info-list .ico { width: 46px; height: 46px; display: grid; place-items: center; color: var(--gold); border: 1px solid rgba(212,165,55,.3); background: var(--gold-soft); }
.info-list b { display: block; font-family: var(--display); text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; color: var(--muted); font-weight: 600; }
.info-list a, .info-list span { color: var(--white); font-size: 1.05rem; }
.info-list a:hover { color: var(--gold); }

.form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--display); text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; color: var(--muted); font-weight: 600; }
.field input, .field select, .field textarea {
  background: var(--panel-2); border: 1px solid var(--line-strong); color: var(--text);
  padding: 13px 15px; font: inherit; font-size: .98rem; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); outline: none; }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .84rem; color: var(--muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.map-embed { border: 1px solid var(--line); width: 100%; aspect-ratio: 16 / 9; filter: grayscale(1) contrast(1.05) brightness(.82); }

/* ---------- Footer ------------------------------------------------------ */

.site-footer { background: #08090b; border-top: 3px solid var(--gold); padding-block: clamp(46px, 6vw, 72px) 0; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: clamp(28px, 4vw, 56px); }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--white); letter-spacing: .12em; margin-bottom: 18px; }
.site-footer p, .site-footer li { color: var(--muted); font-size: .95rem; }
.foot-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.foot-links a { color: #c3c8ce; }
.foot-links a:hover { color: var(--gold); }
.foot-nap { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.foot-nap a { color: var(--white); }
.foot-bottom {
  margin-top: clamp(34px, 5vw, 54px); border-top: 1px solid var(--line);
  padding-block: 22px; display: flex; gap: 16px; justify-content: space-between; flex-wrap: wrap;
  font-size: .86rem; color: #7d858e;
}

/* ---------- Sticky mobile call bar ------------------------------------- */

.callbar { display: none; }
@media (max-width: 780px) {
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    position: fixed; inset: auto 0 0 0; z-index: 80;
    background: var(--line); border-top: 1px solid var(--line-strong);
  }
  .callbar a {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    padding: 15px 10px; font-family: var(--display); font-weight: 700;
    text-transform: uppercase; letter-spacing: .07em; font-size: 1rem;
  }
  .callbar .c-call { background: var(--gold); color: #12100a; }
  .callbar .c-quote { background: var(--panel-2); color: var(--white); }
  .callbar svg { width: 18px; height: 18px; }
  body { padding-bottom: 56px; }
}

/* ---------- Prose (privacy, about) ------------------------------------- */

.prose { max-width: 74ch; }
.prose h2 { margin-top: 2em; }
.prose h3 { margin-top: 1.6em; }
.prose ul { padding-left: 1.15em; }
.prose li { margin-bottom: .5em; color: #c6cbd1; }

/* ---------- Preview ribbon --------------------------------------------- */

.preview-flag {
  background: #7a1f1f; color: #fff; text-align: center; padding: 7px 14px;
  font-family: var(--display); text-transform: uppercase; letter-spacing: .16em; font-size: .78rem;
}

/* ---------- Mobile refinements ----------------------------------------- */
@media (max-width: 640px) {
  .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
  .hero-stat { padding: 18px 10px 4px 0; margin-right: 0; }
  .hero-stat:not(:last-child) { border-right: 1px solid var(--line-strong); padding-right: 12px; }
  .hero-stat + .hero-stat { padding-left: 12px; }
  .btn { width: 100%; }
  .btn-row { display: grid; grid-template-columns: 1fr; }
  .cta .btn-row { width: 100%; }
}

/* ---------- Tag list (district / service chips) ------------------------- */
.taglist { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  display: inline-flex; align-items: center;
  font-family: var(--display); text-transform: uppercase; font-weight: 600;
  letter-spacing: .06em; font-size: .88rem;
  padding: 9px 16px; color: #d5d9de;
  background: var(--panel-2); border: 1px solid var(--line-strong);
  transition: border-color .18s ease, color .18s ease, background-color .18s ease;
}
.tag:hover { border-color: var(--gold); color: var(--gold); background: var(--panel-3); }

/* ---------- Original SVG artwork --------------------------------------- */
.art { margin: 0; display: block; }
.art svg { display: block; width: 100%; height: auto; border: 1px solid var(--line); background: var(--panel-2); }
.art figcaption {
  margin-top: 10px; font-size: .8rem; color: var(--muted); line-height: 1.5;
  letter-spacing: .01em;
}
.frame--map::before { display: none; }
.frame--map .art figcaption { text-align: left; }
.frame--art::before { display: none; }

/* ---------- Brand logo (2026-09-23) ------------------------------------- */

.brand-logo {
  height: 46px; width: auto; flex: none;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}
@media (max-width: 560px) { .brand-logo { height: 38px; } }

.hero-logo {
  width: clamp(148px, 17vw, 208px); height: auto;
  margin: 0 0 24px;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.6));
  animation: sfs-rise 0.9s cubic-bezier(.22,.8,.3,1) both;
}

.hero-serve {
  font-family: var(--display); text-transform: uppercase;
  letter-spacing: 0.3em; font-size: clamp(0.82rem, 1.6vw, 1.02rem);
  font-weight: 600; color: var(--gold);
  margin: 16px 0 18px; padding-top: 14px;
  border-top: 1px solid rgba(212, 165, 55, 0.35);
  display: inline-block;
}

@keyframes sfs-rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- Motion in the service-unit artwork -------------------------- */

.art .sfs-wheel {
  transform-box: fill-box; transform-origin: 50% 50%;
  animation: sfs-roll 5.5s linear infinite;
}
@keyframes sfs-roll { to { transform: rotate(360deg); } }

.art .sfs-road {
  animation: sfs-drift 1.6s linear infinite;
}
@keyframes sfs-drift { to { stroke-dashoffset: -48; } }

.art .sfs-labels .lbl {
  animation: sfs-glow 4.4s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
@keyframes sfs-glow {
  0%, 62%, 100% { opacity: 0.66; }
  22%, 34%      { opacity: 1; }
}

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

.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.22,.8,.3,1);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .art .sfs-wheel, .art .sfs-road, .art .sfs-labels .lbl, .hero-logo { animation: none; }
}

.foot-credit { color: #7d858e; }
.foot-credit a { color: #9aa2ab; border-bottom: 1px solid rgba(212, 165, 55, 0.35); }
.foot-credit a:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ---------- Hero background video (2026-09-23) -------------------------- */

.hero--video { overflow: hidden; }
.hero-video {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: none; border: 0;
  opacity: 0; transition: opacity 1.1s ease;
  /* a touch of blur keeps busy footage reading as a backdrop, not a picture */
  filter: blur(2px) saturate(0.92);
  transform: scale(1.04);
}
.hero-video.is-ready { opacity: 1; }

/* The veil already over the hero gets a touch more weight when footage
   is behind it, so the headline keeps its contrast over bright trailers. */
.hero--video::after {
  background:
    linear-gradient(100deg, rgba(8,9,11,.95) 0%, rgba(8,9,11,.86) 40%,
                    rgba(8,9,11,.46) 70%, rgba(8,9,11,.28) 100%),
    linear-gradient(to top, var(--ink) 0%, rgba(8,9,11,.06) 30%, rgba(8,9,11,.34) 100%),
    radial-gradient(120% 90% at 88% 12%, rgba(212,165,55,.12) 0%, transparent 58%);
}

@media (max-width: 860px) {
  /* Phones keep the poster frame only — no video download. */
  .hero-video { display: none; }
  .hero--video { background-image: url("/assets/yard-poster.jpg"); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .hero--video { background-image: url("/assets/yard-poster.jpg"); }
}

/* Short laptop screens: keep the call buttons above the fold. */
@media (min-width: 861px) and (max-height: 860px) {
  .hero-inner { padding-block: 30px 38px; }
  .hero-logo { width: clamp(112px, 11vw, 148px); margin-bottom: 14px; }
  .hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.1rem); }
  .hero-serve { margin: 12px 0 12px; padding-top: 10px; }
  .hero .lead { margin-bottom: 0; }
  .hero .btn-row { margin-top: 20px !important; }
}
