/* =========================================================
   Action Automotive — spec preview
   Design system
   ========================================================= */
:root {
  /* brand */
  --navy:      #0a2540;
  --navy-900:  #061626;
  --navy-800:  #0d2c4d;
  --navy-700:  #14406e;
  --red:       #c8102e;
  --red-600:   #a50d26;
  --amber:     #f4a300;
  --amber-300: #ffc857;
  --ink:       #10151c;
  --slate:     #4a5766;
  --slate-300: #7c8898;
  --mist:      #eef2f6;
  --cloud:     #f5f8fb;
  --line:      #dde4ec;
  --white:     #ffffff;

  /* type */
  --font-display: "Arial Black", "Helvetica Neue", Impact, system-ui, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --step-eyebrow: clamp(0.72rem, 0.68rem + 0.2vw, 0.82rem);
  --step-h1: clamp(2.35rem, 1.2rem + 4.35vw, 5.1rem);
  --step-h2: clamp(1.95rem, 1.4rem + 2.6vw, 3.15rem);
  --step-h3: clamp(1.15rem, 1.05rem + 0.5vw, 1.35rem);
  --step-lead: clamp(1.05rem, 0.98rem + 0.5vw, 1.28rem);
  --step-body: clamp(1rem, 0.97rem + 0.15vw, 1.08rem);

  /* space */
  --gutter: clamp(1.5rem, 5vw, 5rem);
  --section-y: clamp(4rem, 7vw, 7rem);
  --maxw: 1220px;

  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(10,37,64,.08);
  --shadow-md: 0 18px 44px rgba(10,37,64,.16);
  --shadow-lg: 0 34px 80px rgba(6,22,38,.34);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

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

/* ---------- Typography helpers ---------- */
.eyebrow, .section-eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 100%;
  gap: .35rem .7rem;
  font-size: var(--step-eyebrow);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--red);
  margin: 0 0 1.1rem;
}
.eyebrow::before, .section-eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: currentColor;
  flex: none;
}
.section-eyebrow.light { color: var(--amber); }

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--step-h2);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 1.15rem;
  color: var(--navy);
  text-wrap: balance;
}
.section-title.light { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--navy);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .01em;
  text-decoration: none;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  will-change: transform;
}
.btn-primary { --btn-bg: var(--red); box-shadow: 0 12px 26px rgba(200,16,46,.30); }
.btn-primary:hover { --btn-bg: var(--red-600); transform: translateY(-3px); box-shadow: 0 18px 34px rgba(200,16,46,.4); }
.btn-ghost {
  --btn-bg: transparent; --btn-fg: #fff;
  border-color: rgba(255,255,255,.42);
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-3px); }
.btn-lg { padding: 1.15rem 2.1rem; font-size: 1.05rem; }
.btn-header {
  --btn-bg: var(--navy); --btn-fg:#fff;
  padding: .62rem 1.15rem; font-size: .9rem;
}
.btn-header:hover { --btn-bg: var(--red); transform: translateY(-2px); }
.btn-phone-label { color: var(--amber); font-weight: 800; }
.btn .ico { width: 1.05em; height: 1.05em; flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .7rem;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -.02em;
  color: #fff;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-900));
  box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 4px; background: var(--amber);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-weight: 800; color: var(--navy); font-size: 1.06rem; letter-spacing: -0.01em; }
.brand-sub { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--slate); margin-top: .12rem; }

.site-nav { display: none; gap: 1.7rem; }
.site-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  position: relative;
  padding: .3rem 0;
}
.site-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.site-nav a:hover::after { transform: scaleX(1); }

.btn-phone-full { display: inline; }
.btn-phone-short { display: none; }

@media (min-width: 900px) {
  .site-nav { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 88% -10%, rgba(244,163,0,.12), transparent 55%),
    radial-gradient(90% 80% at 8% 110%, rgba(200,16,46,.16), transparent 60%),
    linear-gradient(160deg, var(--navy-900), var(--navy) 55%, var(--navy-800));
  color: #fff;
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(85% 75% at 28% 18%, #000, transparent 76%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  gap: clamp(2.4rem, 4vw, 4rem);
  align-items: center;
}
@media (min-width: 940px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
}

.hero-copy .eyebrow { color: var(--amber); }
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--step-h1);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 1.4rem;
  text-wrap: balance;
  text-shadow: 0 2px 34px rgba(0,0,0,.28);
}
.hero-title .accent-rule {
  display: block;
  width: 92px; height: 6px; margin-top: 1.5rem;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--red), var(--amber));
}
.hero-lead {
  font-size: var(--step-lead);
  color: rgba(255,255,255,.82);
  max-width: 40ch;
  margin: 0 0 2.1rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2rem; }

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .5rem .5rem .5rem .55rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  margin-bottom: 2.2rem;
}
.hero-trust img { width: 40px; height: 40px; border-radius: 8px; background: #fff; padding: 3px; object-fit: contain; }
.hero-trust span { font-size: .86rem; color: rgba(255,255,255,.86); font-weight: 600; padding-right: .5rem; letter-spacing: .01em; }

.hero-badges {
  list-style: none;
  margin: 0; padding: 1.6rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.1rem, 3vw, 2.4rem);
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero-badges li { display: flex; flex-direction: column; }
.hero-badges strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--amber); font-weight: 900; line-height: 1.1; letter-spacing: -.01em; }
.hero-badges span { font-size: .8rem; color: rgba(255,255,255,.7); letter-spacing: .01em; margin-top: .1rem; }

.hero-media { position: relative; }
.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  transform: rotate(-1.4deg);
}
.hero-photo::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: inherit;
  pointer-events: none;
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(115% 62% at 12% 104%, rgba(200,16,46,.30), transparent 58%),
    linear-gradient(205deg, rgba(10,37,64,0) 34%, rgba(6,22,38,.6) 92%);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }

.hero-card {
  position: absolute;
  left: clamp(-.5rem, -2vw, -1.8rem);
  bottom: clamp(-.8rem, -2vw, -1.6rem);
  background: linear-gradient(145deg, var(--red), var(--red-600));
  color: #fff;
  padding: 1.05rem 1.35rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md), inset 0 0 0 1px rgba(255,255,255,.12);
  max-width: 16.5rem;
  display: flex;
  align-items: center;
  gap: 1.05rem;
  transform: rotate(1.6deg);
}
.hero-card-num { font-family: var(--font-display); font-weight: 900; font-size: 2.9rem; line-height: .84; letter-spacing: -.03em; flex: none; }
.hero-card-label {
  font-size: .78rem;
  line-height: 1.34;
  color: rgba(255,255,255,.94);
  padding-left: 1.05rem;
  border-left: 1px solid rgba(255,255,255,.32);
}

/* ---------- Marquee strip ---------- */
.strip {
  background: var(--amber);
  color: var(--navy-900);
  overflow: hidden;
  border-block: 3px solid var(--navy-900);
}
.strip-track {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  white-space: nowrap;
  padding-block: .72rem;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 1rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.strip-track span { opacity: .92; }
.strip-track .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); opacity: 1; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- About ---------- */
.about { padding-block: var(--section-y); background: var(--white); }
.about-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 940px) {
  .about-grid { grid-template-columns: 1.02fr .98fr; }
  .about-copy { order: 2; }
  .about-panel { order: 1; }
}

.about-copy p { color: var(--slate); margin: 0 0 1.05rem; max-width: 56ch; }
.about-copy p:last-of-type { margin-bottom: 0; }
.about-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.6rem;
  margin-top: 1.9rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.about-meta-item {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  font-size: .92rem;
  color: var(--navy);
}
.about-meta-item svg { width: 1.2rem; height: 1.2rem; color: var(--red); flex: none; }

.about-panel {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #fff;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(244,163,0,.14), transparent 55%),
    linear-gradient(155deg, var(--navy-800), var(--navy-900));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.about-panel::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(80% 70% at 90% 10%, #000, transparent 75%);
  pointer-events: none;
}
.panel-top { display: flex; align-items: center; gap: .9rem; position: relative; margin-bottom: 1.8rem; }
.panel-badge { width: 56px; height: 56px; border-radius: 12px; background: #fff; padding: 6px; object-fit: contain; box-shadow: var(--shadow-sm); }
.panel-top span { font-size: .82rem; letter-spacing: .04em; color: rgba(255,255,255,.82); line-height: 1.4; font-weight: 600; }
.panel-stat { position: relative; padding-bottom: 1.6rem; border-bottom: 1px solid rgba(255,255,255,.14); margin-bottom: 1.6rem; }
.panel-stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.2rem, 8vw, 4.6rem);
  line-height: .9;
  color: var(--amber);
  letter-spacing: -.03em;
}
.panel-stat span { display: block; margin-top: .5rem; font-size: .95rem; color: rgba(255,255,255,.82); max-width: 26ch; }
.panel-points { list-style: none; margin: 0; padding: 0; display: grid; gap: .85rem; position: relative; }
.panel-points li { position: relative; padding-left: 2rem; font-weight: 600; color: #fff; font-size: .98rem; }
.panel-points li::before {
  content: "";
  position: absolute; left: 0; top: .05em;
  width: 1.3rem; height: 1.3rem;
  border-radius: 50%;
  background: var(--red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: .82rem;
  background-position: center;
  background-repeat: no-repeat;
}
.about-tag {
  position: static;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 1.4rem;
  background: var(--amber);
  color: var(--navy-900);
  font-weight: 800;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .48rem .85rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
@media (min-width: 620px) {
  .about-tag {
    position: absolute;
    right: clamp(1rem, 3vw, 2rem);
    top: clamp(1rem, 3vw, 1.6rem);
    margin-bottom: 0;
  }
}

/* ---------- Services ---------- */
.services {
  padding-block: var(--section-y);
  background: linear-gradient(180deg, var(--cloud), var(--white));
  border-block: 1px solid var(--line);
}
.services-head {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: clamp(2.2rem, 4vw, 3.2rem);
}
.services-head-main { max-width: 60ch; }
.services-intro { color: var(--slate); font-size: var(--step-lead); margin: 0; }
.services-head-badge { display: none; }
.shb-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  line-height: .88;
  color: var(--red);
  letter-spacing: -.02em;
}
.shb-label { font-weight: 700; font-size: .9rem; color: var(--navy); line-height: 1.3; }
@media (min-width: 980px) {
  .services-head { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 2.5rem; }
  .services-head-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: none;
    padding: 1.15rem 1.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
  }
}

.service-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.4rem);
  grid-template-columns: 1fr;
}
@media (min-width: 620px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  position: relative;
  background: linear-gradient(180deg, #fff, var(--cloud));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem 1.7rem;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.service-ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--navy);
  background: linear-gradient(150deg, var(--mist), #fff);
  border: 1px solid var(--line);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.service-ico svg { width: 26px; height: 26px; }
.service-card:hover .service-ico { background: var(--navy); color: var(--amber); border-color: transparent; }
.service-index {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--slate-300);
  letter-spacing: .05em;
}
.service-card h3 {
  font-size: var(--step-h3);
  margin: 0 0 .5rem;
  color: var(--navy);
  line-height: 1.2;
}
.service-card p { margin: 0; color: var(--slate); font-size: .98rem; }

.services-cta {
  margin-top: clamp(1.4rem, 2.5vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem 2rem;
  padding: clamp(1.5rem, 3vw, 2.1rem) clamp(1.6rem, 3.5vw, 2.6rem);
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(120% 160% at 0% 0%, rgba(200,16,46,.30), transparent 55%),
    linear-gradient(150deg, var(--navy-800), var(--navy-900));
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.services-cta::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--red), var(--amber));
}
.services-cta-text { display: flex; flex-direction: column; gap: .25rem; }
.services-cta-eyebrow {
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 800; color: var(--amber);
}
.services-cta-text strong {
  font-size: clamp(1.12rem, 1rem + .7vw, 1.42rem);
  font-weight: 800; color: #fff; line-height: 1.25; letter-spacing: -.01em;
}

/* ---------- Promise band (reuses hero photo) ---------- */
.promise {
  position: relative;
  isolation: isolate;
  color: #fff;
  padding-block: clamp(4.5rem, 8vw, 8rem);
  overflow: hidden;
}
.promise::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background: url("hero.jpg") right 35% / cover no-repeat;
  transform: scale(1.06) scaleX(-1);
  filter: grayscale(1) contrast(1.08) brightness(.82);
}
.promise::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    radial-gradient(85% 120% at 88% 12%, rgba(200,16,46,.42), transparent 52%),
    linear-gradient(115deg, rgba(6,22,38,.96) 32%, rgba(10,37,64,.80));
  background-size: 46px 46px, 46px 46px, 100% 100%, 100% 100%;
}
.promise-inner { max-width: 62ch; }
.promise-copy p { color: rgba(255,255,255,.85); margin: 0 0 1.4rem; max-width: 52ch; font-size: var(--step-lead); }
.promise-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.6rem, 4vw, 3.2rem);
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.16);
}
.promise-stats strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -.02em;
}
.promise-stats span { font-size: .84rem; color: rgba(255,255,255,.74); margin-top: .3rem; display: block; }

/* ---------- Contact ---------- */
.contact {
  padding-block: var(--section-y);
  background: var(--cloud);
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1.1fr .9fr; } }
.contact-lead { color: var(--slate); font-size: var(--step-lead); max-width: 46ch; margin: 0 0 2rem; }
.contact-card {
  position: relative;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(244,163,0,.12), transparent 55%),
    linear-gradient(155deg, var(--navy-800), var(--navy-900));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-lg);
}
.contact-card dl { margin: 0; display: grid; gap: 1.4rem; }
.contact-card dt {
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--amber); font-weight: 800; margin-bottom: .35rem;
}
.contact-card dd { margin: 0; font-size: 1.08rem; line-height: 1.45; color: rgba(255,255,255,.92); }
.contact-card dd a { color: #fff; text-decoration: none; font-weight: 700; }
.contact-card dd a:hover { color: var(--amber); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.78);
  padding-block: clamp(2.6rem, 4vw, 3.4rem);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  justify-content: space-between;
  align-items: center;
}
.footer-brand { display: flex; flex-direction: column; gap: .3rem; }
.footer-name { font-family: var(--font-display); font-weight: 900; font-size: 1.35rem; color: #fff; letter-spacing: -0.01em; }
.footer-line { font-size: .9rem; }
.footer-contact { display: flex; flex-direction: column; gap: .3rem; text-align: right; font-size: .92rem; }
.footer-contact a { color: var(--amber); text-decoration: none; font-weight: 700; }

.spec-footer {
  background: #05101c;
  color: rgba(255,255,255,.62);
  font-size: .82rem;
  text-align: center;
  padding: 1.5rem var(--gutter);
  line-height: 1.6;
}
.spec-footer a { color: var(--amber); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

[data-stagger] { opacity: 0; transform: translateY(18px); }
.hero-copy.in [data-stagger] { animation: rise .7s var(--ease) forwards; }
.hero-copy.in [data-stagger]:nth-child(1) { animation-delay: .05s; }
.hero-copy.in [data-stagger]:nth-child(2) { animation-delay: .14s; }
.hero-copy.in [data-stagger]:nth-child(3) { animation-delay: .23s; }
.hero-copy.in [data-stagger]:nth-child(4) { animation-delay: .32s; }
.hero-copy.in [data-stagger]:nth-child(5) { animation-delay: .41s; }
.hero-copy.in [data-stagger]:nth-child(6) { animation-delay: .5s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* No-JS + reduced motion fallbacks: everything visible */
.no-js .reveal,
.no-js [data-stagger] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal, [data-stagger] { opacity: 1 !important; transform: none !important; }
  .strip-track { animation: none; }
  .hero-photo, .hero-card { transform: none; }
}

/* ---------- Small screens ---------- */
@media (max-width: 560px) {
  .btn-phone-full { display: none; }
  .btn-phone-short { display: inline; }
  .hero-actions .btn { width: 100%; }

  .eyebrow, .section-eyebrow { letter-spacing: .14em; }

  .hero-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem .9rem;
  }
  .hero-badges strong { font-size: 1.3rem; }
  .hero-badges span { font-size: .72rem; line-height: 1.25; }

  .services-cta { text-align: left; }
  .services-cta .btn { width: 100%; }
}
