/* ============================================================
   Elevated Auto & Diesel Repair — spec preview
   Industrial / diesel aesthetic. Self-contained, system fonts.
   ============================================================ */

:root {
  /* Brand */
  --ink:        #15181d;   /* primary graphite */
  --ink-2:      #1c2026;
  --steel:      #2c3742;   /* secondary */
  --steel-2:    #3a4855;
  --accent:     #f2820a;   /* diesel amber */
  --accent-2:   #ff9a2e;
  --paper:      #f4f1ea;   /* warm off-white */
  --paper-2:    #e8e3d8;
  --line:       rgba(255,255,255,0.10);
  --line-dark:  rgba(21,24,29,0.12);

  /* Text */
  --text-on-dark:   #ece9e2;
  --text-on-dark-2: #a8afb8;
  --text-on-light:  #1a1d22;
  --text-on-light-2:#56606b;

  /* Type */
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", "Cascadia Mono", "Roboto Mono", Consolas, monospace;

  /* Fluid scale */
  --step--1: clamp(0.82rem, 0.78rem + 0.2vw, 0.92rem);
  --step-0:  clamp(1rem, 0.95rem + 0.3vw, 1.13rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.45rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2.1rem);
  --step-3:  clamp(2rem, 1.6rem + 2vw, 3.2rem);
  --step-4:  clamp(2.6rem, 1.9rem + 3.6vw, 5.2rem);

  /* Space */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4rem, 8vw, 8rem);
  --maxw: 1240px;

  --radius: 14px;
  --radius-sm: 9px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text-on-light);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, h4 { line-height: 1.04; letter-spacing: -0.01em; }
ol, ul { list-style: none; padding: 0; }

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

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.muted { color: var(--text-on-dark-2); font-weight: 400; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--accent); color: #1a1100; padding: 0.6rem 1rem;
  font-weight: 700; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

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

/* ---------- Type helpers ---------- */
.eyebrow, .kicker {
  font-family: var(--mono);
  font-size: var(--step--1);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
.kicker { color: var(--accent); display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 1.1rem; }
.kicker::before {
  content: ""; width: 26px; height: 2px; background: var(--accent); display: inline-block;
}
.kicker.light { color: var(--accent-2); }

.section-title {
  font-size: var(--step-3);
  font-weight: 800;
  letter-spacing: -0.025em;
  max-width: 20ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: var(--step-0);
  text-decoration: none;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease),
              border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  will-change: transform;
}
.btn-accent {
  background: var(--accent); color: #1a1100;
  box-shadow: 0 8px 24px -10px rgba(242,130,10,0.7);
}
.btn-accent:hover { background: var(--accent-2); transform: translateY(-3px); box-shadow: 0 16px 34px -12px rgba(242,130,10,0.8); }
.btn-ghost {
  background: transparent; color: var(--text-on-dark); border-color: rgba(255,255,255,0.28);
}
.btn-ghost:hover { border-color: var(--accent); color: #fff; transform: translateY(-3px); }
.ghost-light { color: var(--text-on-dark); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(21,24,29,0.0);
  transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}
.site-header.scrolled {
  background: rgba(18,21,26,0.85);
  backdrop-filter: blur(12px) saturate(1.2);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -20px rgba(0,0,0,0.8);
}
.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  padding-block: 1.05rem;
  color: var(--text-on-dark);
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--text-on-dark); }
.brand-mark { color: var(--accent); display: inline-flex; transition: transform 0.4s var(--ease); }
.brand:hover .brand-mark { transform: translateY(-2px) rotate(-3deg); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-weight: 800; font-size: 1.32rem; letter-spacing: 0.02em; text-transform: uppercase;
}
.brand-sub {
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--text-on-dark-2); margin-top: 0.28rem;
}
.nav { margin-left: auto; display: flex; gap: 1.9rem; }
.nav a {
  text-decoration: none; color: var(--text-on-dark-2); font-weight: 600; font-size: 0.96rem;
  position: relative; padding-block: 0.3rem; transition: color 0.25s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav a:hover { color: #fff; }
.nav a:hover::after { width: 100%; }

.header-call {
  flex-direction: column; gap: 0; align-items: flex-start;
  padding: 0.55rem 1.15rem; line-height: 1.15;
  background: rgba(255,255,255,0.06); border: 1px solid var(--line);
}
.header-call:hover { background: var(--accent); color: #1a1100; transform: translateY(-2px); }
.header-call:hover .btn-call-label { color: rgba(26,17,0,0.7); }
.btn-call-label { font-size: 0.62rem; font-family: var(--mono); letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-on-dark-2); font-weight: 600; }
.btn-call-num { font-weight: 800; font-size: 1rem; letter-spacing: 0.01em; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--text-on-dark);
  padding-block: clamp(6rem, 13vw, 11rem) clamp(4.5rem, 9vw, 8rem);
  overflow: hidden;
  margin-top: -76px;
  padding-top: clamp(8rem, 16vw, 13rem);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-glow {
  position: absolute; right: -10%; top: -20%; width: 70vw; height: 70vw; max-width: 900px; max-height: 900px;
  background: radial-gradient(circle at center, rgba(242,130,10,0.22), rgba(242,130,10,0.0) 62%);
  filter: blur(10px);
}
.topo {
  position: absolute; inset: -10%;
  background-image:
    radial-gradient(ellipse 60% 40% at 70% 30%, rgba(44,55,66,0.55), transparent 70%),
    repeating-radial-gradient(circle at 72% 32%, transparent 0 38px, rgba(168,175,184,0.05) 38px 39px);
  opacity: 0.9;
}
/* branded mountain ridge — echoes the logo mark, anchors the lower hero */
.hero-ridge {
  position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: clamp(180px, 34vw, 360px);
  display: block;
}
.hero-ridge .ridge {
  fill: none; stroke-linejoin: round; stroke-linecap: round;
  stroke-dasharray: 2600; stroke-dashoffset: 2600;
  animation: ridgeDraw 2.6s var(--ease) forwards;
}
.hero-ridge .ridge-back { stroke: rgba(168,175,184,0.12); stroke-width: 2; }
.hero-ridge .ridge-front { stroke: rgba(242,130,10,0.34); stroke-width: 2.4; animation-delay: 0.25s; }
@keyframes ridgeDraw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) { .hero-ridge .ridge { animation: none; stroke-dashoffset: 0; } }
/* depth vignette so the centre copy reads against the texture */
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 22% 42%, rgba(13,15,18,0.0) 36%, rgba(13,15,18,0.55) 100%),
    linear-gradient(180deg, rgba(13,15,18,0.35), transparent 26%);
}
/* faint blueprint grid for industrial depth */
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(168,175,184,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,175,184,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 30% 40%, #000 30%, transparent 78%);
  mask-image: radial-gradient(ellipse 70% 80% at 30% 40%, #000 30%, transparent 78%);
  opacity: 0.7;
}
.hero::after {
  /* diagonal hazard grain at the very bottom */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px; z-index: 2;
  background: repeating-linear-gradient(135deg, var(--accent) 0 22px, var(--ink) 22px 44px);
  opacity: 0.85;
}

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.55fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-copy, .hero-card { min-width: 0; }
.eyebrow { color: var(--text-on-dark-2); display: inline-flex; align-items: center; gap: 0.7rem; margin-bottom: 1.6rem; }
.eyebrow-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(242,130,10,0.18); }

.hero-title {
  font-size: var(--step-4);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 0.96;
  margin-bottom: 1.6rem;
  text-wrap: balance;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0,0,0,0.25);
}
/* Each phrase is its own line on wide screens; on narrow they reflow as
   inline text with real spaces between them (no word-mashing). */
.hero-title .hl { display: block; }
.hero-lede {
  font-size: var(--step-1);
  color: var(--text-on-dark-2);
  max-width: 42ch;
  margin-bottom: 2.2rem;
  line-height: 1.5;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero-card {
  position: relative;
  background: linear-gradient(180deg, rgba(44,55,66,0.55), rgba(28,32,38,0.65));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.7rem 1.4rem;
  backdrop-filter: blur(6px);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7);
  overflow: hidden;
}
.hero-card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2) 55%, transparent);
}
.hero-card-head {
  display: flex; align-items: center; justify-content: space-between; gap: 0.6rem 1rem;
  flex-wrap: wrap;
  padding-bottom: 1.1rem; margin-bottom: 1.2rem; border-bottom: 1px solid var(--line);
}
.hero-card-eyebrow {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-on-dark); font-weight: 600;
}
.hero-card-live {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-on-dark-2); font-weight: 600;
}
.hero-card-live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(242,130,10,0.5); animation: livePulse 2.2s var(--ease) infinite;
}
.spec-list { display: grid; gap: 1rem; }
.spec-row { display: grid; gap: 0.15rem; padding-bottom: 0.95rem; border-bottom: 1px solid var(--line); }
.spec-row:last-child { border-bottom: 0; padding-bottom: 0; }
.spec-row dt {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-on-dark-2);
}
.spec-row dd { font-weight: 600; font-size: 1.02rem; }
.stars { color: var(--accent); letter-spacing: 0.05em; }
.card-call {
  display: inline-block; margin-top: 1.3rem; font-weight: 700; color: var(--accent-2);
  text-decoration: none; font-size: 1.02rem;
  transition: gap 0.25s var(--ease), color 0.25s var(--ease);
}
.card-call:hover { color: #fff; letter-spacing: 0.01em; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--accent);
  color: #1a1100;
  overflow: hidden;
  border-block: 0;
  padding-block: 0.85rem;
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 1.4rem; white-space: nowrap;
  font-family: var(--mono); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.92rem;
  animation: marquee 28s linear infinite;
}
.marquee-track .sep { opacity: 0.45; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ============================================================
   SHOP / ABOUT
   ============================================================ */
.shop { background: var(--paper); }
.shop-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.shop-figure {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius);
  background:
    radial-gradient(ellipse 80% 50% at 30% 12%, rgba(242,130,10,0.18), transparent 58%),
    linear-gradient(160deg, var(--steel) 0%, var(--ink) 100%);
  color: var(--text-on-dark);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 40px 70px -40px rgba(21,24,29,0.6);
}
.shop-figure::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent 0 26px, rgba(255,255,255,0.035) 26px 27px);
}
/* corner registration ticks */
.shop-figure::after {
  content: ""; position: absolute; inset: 14px; pointer-events: none; border-radius: 6px;
  background:
    linear-gradient(var(--accent), var(--accent)) left top / 16px 2px no-repeat,
    linear-gradient(var(--accent), var(--accent)) left top / 2px 16px no-repeat,
    linear-gradient(var(--accent), var(--accent)) right bottom / 16px 2px no-repeat,
    linear-gradient(var(--accent), var(--accent)) right bottom / 2px 16px no-repeat;
  opacity: 0.55;
}
.shop-figure-inner { position: absolute; inset: 0; padding: clamp(1.5rem, 3vw, 2.3rem); display: flex; flex-direction: column; gap: 0.9rem; }
.figure-top { display: flex; justify-content: space-between; align-items: center; }
.figure-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-on-dark); font-weight: 600;
}
.figure-tag-quiet { color: var(--text-on-dark-2); }
.figure-live { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(242,130,10,0.5); animation: livePulse 2.2s var(--ease) infinite; }
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(242,130,10,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(242,130,10,0); }
  100% { box-shadow: 0 0 0 0 rgba(242,130,10,0); }
}
@media (prefers-reduced-motion: reduce) { .figure-live { animation: none; } }
.figure-readout { margin-top: auto; }
.shop-figure-num { display: block; font-family: var(--mono); font-size: clamp(2.4rem,6vw,3.7rem); font-weight: 700; letter-spacing: -0.02em; color: #fff; line-height: 1; }
.shop-figure-num .ampm { font-size: 0.42em; margin-left: 0.4em; color: var(--text-on-dark-2); letter-spacing: 0.05em; vertical-align: 0.55em; }
.shop-figure-label { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-2); margin-top: 0.55rem; display: block; }
.figure-gauges { display: grid; gap: 0.75rem; margin-top: 0.3rem; }
.grow { display: grid; gap: 0.32rem; }
.grow-l { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-on-dark-2); }
.grow-alert { color: var(--accent-2); }
.gauge { height: 7px; border-radius: 99px; background: rgba(255,255,255,0.1); overflow: hidden; }
.gauge-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 99px; transition: width 1.3s var(--ease); }
.gauge-alert .gauge-fill { background: linear-gradient(90deg, #b8541a, var(--accent)); }
.shop-figure.is-visible .gauge-fill { width: var(--g, 78%); }
.figure-gauges .grow:nth-child(2) .gauge-fill { transition-delay: 0.14s; }
.figure-gauges .grow:nth-child(3) .gauge-fill { transition-delay: 0.28s; }
.shop-figure-foot { font-size: 0.86rem; color: var(--text-on-dark-2); max-width: 32ch; padding-top: 0.5rem; border-top: 1px solid var(--line); }

.shop-copy p { color: var(--text-on-light-2); margin-top: 1.1rem; max-width: 52ch; }
.shop-copy .section-title { color: var(--text-on-light); max-width: 18ch; }
.shop-points { margin-top: 1.8rem; display: grid; gap: 0.7rem; }
.shop-points li {
  position: relative; padding-left: 1.9rem; font-weight: 600; color: var(--text-on-light);
}
.shop-points li::before {
  content: ""; position: absolute; left: 0; top: 0.55em; width: 12px; height: 12px;
  background: var(--accent); clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--ink); color: var(--text-on-dark); position: relative; }
.services-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 60ch; }
.services .section-title { color: #fff; }
.svc-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border-top: 1px solid var(--line);
}
.svc {
  display: flex; gap: 1.3rem; align-items: flex-start;
  padding: clamp(1.7rem, 3vw, 2.6rem) clamp(1.2rem, 2.5vw, 2.2rem);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background-color 0.3s var(--ease);
}
.svc:nth-child(odd) { border-right: 1px solid var(--line); }
.svc::after {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 3px; background: var(--accent);
  transform: scaleY(0); transform-origin: top; transition: transform 0.35s var(--ease);
}
.svc:hover { background: rgba(255,255,255,0.03); }
.svc:hover::after { transform: scaleY(1); }
.svc-num {
  font-family: var(--mono); font-size: 1.5rem; font-weight: 700; color: var(--accent);
  line-height: 1; letter-spacing: 0.02em;
  min-width: 2.6ch; opacity: 0.85;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.svc:hover .svc-num { opacity: 1; transform: translateY(-2px); }
.svc-body h3 { font-size: var(--step-1); font-weight: 700; margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.svc-body p { color: var(--text-on-dark-2); font-size: 0.98rem; max-width: 38ch; }

/* ============================================================
   PROOF / STATS
   ============================================================ */
.proof { background: var(--paper-2); }
.proof-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.proof-copy .section-title { color: var(--text-on-light); }
.proof-copy p { color: var(--text-on-light-2); margin-top: 1.2rem; max-width: 46ch; }
.stat-band {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  background: var(--paper);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  display: flex; flex-direction: column; gap: 0.35rem;
  transition: background-color 0.3s var(--ease);
}
.stat:hover { background: #fff; }
.stat-num {
  font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 800; color: var(--ink); letter-spacing: -0.03em; line-height: 1;
}
.stat-star { color: var(--accent); font-size: 0.5em; vertical-align: 0.4em; margin-left: 0.1em; }
.stat-label { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-on-light-2); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--ink); color: var(--text-on-dark); position: relative; overflow: hidden; }
.contact-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.8; }
.topo-2 {
  background-image:
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(242,130,10,0.18), transparent 65%),
    repeating-radial-gradient(circle at 18% 82%, transparent 0 40px, rgba(168,175,184,0.05) 40px 41px);
}
.contact-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(2rem, 6vw, 4.5rem); align-items: center; }
.contact-title { color: #fff; max-width: 16ch; }
.contact-copy p { color: var(--text-on-dark-2); margin-top: 1.2rem; max-width: 44ch; }
.contact-copy .hero-cta { margin-top: 2rem; }

.contact-card {
  background: linear-gradient(180deg, rgba(44,55,66,0.5), rgba(28,32,38,0.7));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7);
}
.contact-card-title { font-size: var(--step-1); margin-bottom: 0.9rem; }
.contact-address { font-style: normal; color: var(--text-on-dark-2); margin-bottom: 1.3rem; font-size: 1.05rem; line-height: 1.5; }
.contact-meta { display: grid; gap: 0.9rem; }
.contact-meta > div { display: grid; gap: 0.15rem; padding-top: 0.9rem; border-top: 1px solid var(--line); }
.contact-meta dt { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-on-dark-2); }
.contact-meta dd { font-weight: 600; }
.contact-meta a { color: var(--accent-2); text-decoration: none; }
.contact-meta a:hover { color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink-2); color: var(--text-on-dark-2); padding-top: clamp(3rem, 6vw, 5rem); }
.footer-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line); }
.footer-brand .brand-name { color: #fff; font-size: 1.5rem; }
.footer-brand .brand-sub { color: var(--text-on-dark-2); }
.footer-tag { margin-top: 1rem; max-width: 34ch; font-size: 0.95rem; }
.footer-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.footer-cols h4 { color: #fff; font-size: 0.74rem; font-family: var(--mono); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-cols a, .footer-cols span { display: block; text-decoration: none; color: var(--text-on-dark-2); font-size: 0.95rem; margin-bottom: 0.55rem; transition: color 0.25s var(--ease); }
.footer-cols a:hover { color: var(--accent-2); }
.footer-base { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.6rem; font-size: 0.84rem; font-family: var(--mono); letter-spacing: 0.06em; }

/* Spec footer (mandatory) */
.spec-footer {
  background: #0d0f12; color: #8a929c; text-align: center;
  padding: 1.4rem var(--gutter); font-size: 0.82rem; line-height: 1.6;
}
.spec-footer a { color: var(--accent-2); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-reveal] { transition-delay: var(--reveal-delay, 0ms); }
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-card { max-width: 480px; }
  .shop-grid { grid-template-columns: 1fr; }
  .shop-figure { max-width: 420px; order: 2; }
  .proof-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  /* Phrases reflow as one wrapping line with real spaces between them. */
  .hero-title .hl { display: inline; }
}

@media (max-width: 640px) {
  .header-inner { gap: 0.75rem; }
  .header-call .btn-call-label { display: none; }
  .header-call { padding: 0.55rem 0.95rem; }
  .brand-sub { letter-spacing: 0.16em; }
  .svc-list { grid-template-columns: 1fr; }
  .svc:nth-child(odd) { border-right: 0; }
  .stat-band { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* Stack the CTAs full-width before they can clip on a phone. */
@media (max-width: 540px) {
  .hero-cta { flex-direction: column; align-items: stretch; gap: 0.7rem; }
  .hero-cta .btn { width: 100%; }
}

@media (max-width: 440px) {
  .brand-sub { display: none; }
  .stat-band { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
}
