/* =========================================================
   We Care Auto Repair — spec preview
   Design system
   ========================================================= */
:root {
  /* brand */
  --amber:      #F4A62A;
  --amber-2:    #FBB040;
  --amber-soft: #FBD48A;
  --ink:        #16181D;
  --ink-2:      #1E222A;
  --ink-3:      #2A2F39;
  --graphite:   #0E0F13;

  /* neutrals */
  --paper:      #FBFAF7;
  --paper-2:    #F4F1EA;
  --line:       #E4DFD4;
  --text:       #23262C;
  --muted:      #63676F;
  --muted-light:#A7ACB6;
  --white:      #FFFFFF;

  /* type */
  --sans: "Helvetica Neue", "Segoe UI", Roboto, Arial, sans-serif;
  --display: "Helvetica Neue", "Segoe UI", system-ui, Roboto, Arial, sans-serif;

  /* fluid scale */
  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1:  clamp(1.2rem, 1.12rem + 0.4vw, 1.45rem);
  --step-2:  clamp(1.5rem, 1.35rem + 0.8vw, 2rem);
  --step-3:  clamp(1.95rem, 1.7rem + 1.4vw, 2.9rem);
  --step-4:  clamp(2.5rem, 2rem + 2.8vw, 4.4rem);
  --step-5:  clamp(3rem, 2.2rem + 4.6vw, 6rem);

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

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px -22px rgba(20, 22, 27, 0.28);
  --shadow-lg: 0 40px 90px -40px rgba(20, 22, 27, 0.45);
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;          /* contain the ICB so mobile can't widen past the viewport */
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Any grid/flex child can shrink below its intrinsic content width — kills the
   track-blowout that let long words/stats push the layout wider than 390px. */
.hero-inner > *, .hero-stats > *, .about-grid > *, .services-grid > *,
.mobile-grid > *, .steps li > div, .areas-grid > *, .contact-grid > *,
.footer-inner > *, .header-inner > * { min-width: 0; }

img { max-width: 100%; display: block; 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(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

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

/* ---------- headings ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  color: var(--ink);
}

.section-kicker {
  font-family: var(--sans);
  font-weight: 800;
  font-size: var(--step--1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.section-kicker::before {
  content: "";
  width: 26px; height: 2px; background: var(--amber);
  display: inline-block;
}
.section-kicker.light { color: var(--amber-2); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  --bpx: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 800;
  font-size: var(--step--1);
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0.95rem var(--bpx);
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s, background .25s, color .25s, border-color .25s;
  will-change: transform;
}
.btn-lg { --bpx: 2rem; padding: 1.1rem var(--bpx); font-size: var(--step-0); }

.btn-primary {
  background: var(--amber);
  color: #241a05;
  box-shadow: 0 14px 30px -12px rgba(244, 166, 42, 0.7);
}
.btn-primary:hover {
  background: var(--amber-2);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -14px rgba(244, 166, 42, 0.85);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); transform: translateY(-3px); border-color: rgba(255,255,255,0.5); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; transform: translateY(-3px); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s, padding .3s;
  padding: 0.4rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 74px;
}
.brand-logo {
  height: clamp(46px, 6vw, 60px);
  width: auto;
  transition: filter .3s;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}
.nav {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2.2rem);
  margin-inline-start: auto;
  margin-inline-end: 1.6rem;
}
.nav a {
  color: rgba(255,255,255,0.86);
  text-decoration: none;
  font-weight: 700;
  font-size: var(--step--1);
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.4rem 0;
  transition: color .2s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px; background: var(--amber);
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.nav a:hover { color: #fff; }
.nav a:hover::after { transform: scaleX(1); }

.header-call {
  flex-direction: column;
  gap: 0;
  padding: 0.55rem 1.3rem;
  line-height: 1.1;
  background: var(--amber);
  color: #241a05;
}
.header-call:hover { background: var(--amber-2); transform: translateY(-2px); }
.btn-call-label {
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.8;
}
.btn-call-num { font-size: var(--step--1); font-weight: 900; }

/* scrolled state */
.site-header.scrolled {
  background: rgba(20, 22, 27, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.6);
}

@media (max-width: 760px) {
  .nav { display: none; }
  .header-inner { min-height: 62px; gap: 1rem; }
  .header-call { flex-direction: row; padding: 0.55rem 1.05rem; }
  .btn-call-label { display: none; }
  .btn-call-num { font-size: 0.95rem; letter-spacing: 0.01em; }
}
@media (max-width: 380px) {
  .btn-call-num { font-size: 0.86rem; }
  .header-call { padding: 0.5rem 0.85rem; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  background: var(--graphite);
  color: #fff;
  padding-top: clamp(8rem, 15vw, 12rem);
  padding-bottom: clamp(4rem, 7vw, 6.5rem);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-glow {
  position: absolute;
  top: -22%; right: -12%;
  width: 72vw; height: 72vw; max-width: 920px; max-height: 920px;
  background: radial-gradient(circle at 60% 40%, rgba(244,166,42,0.45), rgba(244,166,42,0.10) 42%, transparent 66%);
  filter: blur(8px);
}
/* faint engineering grid for texture/depth */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 78%);
}
/* amber speedometer arc, upper right */
.hero-arc {
  position: absolute;
  top: clamp(-8rem, -6vw, -4rem); right: clamp(-9rem, -5vw, -3rem);
  width: min(46vw, 520px); aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid transparent;
  background:
    conic-gradient(from 130deg, rgba(244,166,42,0.9) 0deg, rgba(244,166,42,0.15) 78deg, transparent 120deg) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 2px;
  opacity: 0.55;
}
/* oversized ghosted brand word */
.hero-ghost {
  position: absolute;
  left: -0.06em; bottom: -0.28em;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(9rem, 30vw, 28rem);
  letter-spacing: -0.05em;
  line-height: 0.8;
  color: rgba(255,255,255,0.028);
  user-select: none;
  white-space: nowrap;
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(115deg, rgba(14,15,19,0.35) 0%, rgba(14,15,19,0.82) 60%, var(--graphite) 100%);
}
/* diagonal speed streaks echoing the logo */
.streak {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.5;
  transform: rotate(-14deg);
  transform-origin: left;
}
.hero .streak.s1 { top: 26%; left: -5%; width: 55%; animation: drift 9s ease-in-out infinite; }
.hero .streak.s2 { top: 52%; left: 20%; width: 70%; opacity: 0.3; height: 3px; animation: drift 12s ease-in-out infinite reverse; }
.hero .streak.s3 { top: 74%; left: -2%; width: 40%; opacity: 0.35; animation: drift 11s ease-in-out infinite; }
@keyframes drift {
  0%,100% { transform: rotate(-14deg) translateX(0); }
  50% { transform: rotate(-14deg) translateX(3%); }
}
@media (prefers-reduced-motion: reduce) { .streak { animation: none !important; } }

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}
.hero-copy { max-width: 46ch; }

/* right-hand credential panel — anchors the composition, fills the void */
.hero-panel {
  display: grid;
  gap: 1.1rem;
  align-content: center;
}
.hero-seal {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(244,166,42,0.16), rgba(244,166,42,0.04));
  border: 1px solid rgba(244,166,42,0.32);
}
.seal-badge {
  flex: none;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--amber);
  color: #241a05;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 0 0 4px rgba(244,166,42,0.16);
}
.seal-copy strong { display: block; color: #fff; font-weight: 800; font-size: var(--step-0); line-height: 1.2; }
.seal-copy > span { color: rgba(255,255,255,0.68); font-size: var(--step--1); }

/* staggered load entrance — ends fully visible, no JS dependency */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
.hero-copy > *, .hero-panel { animation: riseIn .85s cubic-bezier(.2,.7,.3,1) both; }
.hero-copy > *:nth-child(1) { animation-delay: .05s; }
.hero-copy > *:nth-child(2) { animation-delay: .13s; }
.hero-copy > *:nth-child(3) { animation-delay: .21s; }
.hero-copy > *:nth-child(4) { animation-delay: .29s; }
.hero-copy > *:nth-child(5) { animation-delay: .37s; }
.hero-panel { animation-delay: .46s; }
@media (prefers-reduced-motion: reduce) {
  .hero-copy > *, .hero-panel { animation: none; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  flex-wrap: wrap;
  max-width: 100%;
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  font-size: var(--step--1);
  line-height: 1.3;
  color: var(--amber-soft);
  background: rgba(244,166,42,0.10);
  border: 1px solid rgba(244,166,42,0.28);
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  margin: 0 0 1.6rem;
}
@media (max-width: 380px) {
  .eyebrow { letter-spacing: 0.1em; font-size: 0.72rem; }
}
.eyebrow-dot {
  flex: none;
  width: 8px; height: 8px; border-radius: 50%; background: var(--amber);
  box-shadow: 0 0 0 0 rgba(244,166,42,0.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(244,166,42,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(244,166,42,0); }
  100% { box-shadow: 0 0 0 0 rgba(244,166,42,0); }
}
@media (prefers-reduced-motion: reduce) { .eyebrow-dot { animation: none; } }

.hero-title {
  font-size: clamp(2.15rem, 1rem + 5.1vw, 5rem);
  color: #fff;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 0 0 1.4rem;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: none;
  text-shadow: 0 1px 0 rgba(0,0,0,0.25);
}
.hero-title span { display: block; }
@media (max-width: 520px) {
  .hero-title { text-wrap: pretty; }
}

.hero-keyline {
  display: block;
  width: 84px; height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--amber), var(--amber-2));
  box-shadow: 0 0 24px -2px rgba(244,166,42,0.7);
  margin: 0 0 1.6rem;
}

.hero-lede {
  font-size: var(--step-1);
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  margin: 0 0 2.2rem;
  font-family: var(--sans);
  font-weight: 400;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.1rem, 2vw, 1.6rem);
  margin: 0;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  box-shadow: 0 30px 70px -40px rgba(0,0,0,0.9);
}
.stat dt {
  font-size: var(--step--1);
  color: var(--muted-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.stat dd {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.7rem, 1.2rem + 2vw, 2.6rem);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat dd .unit {
  font-size: 0.5em;
  color: var(--amber);
  letter-spacing: 0;
}
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .hero-copy { max-width: 100%; }
  .hero-panel { animation-delay: .3s; max-width: 560px; }
}
@media (max-width: 460px) {
  .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.3rem 1rem; padding: 1.35rem 1.25rem; }
  .hero-stats .stat dt { letter-spacing: 0.06em; }
  .hero-actions .btn { flex: 1 1 auto; }
}

/* =========================================================
   Trust strip
   ========================================================= */
.trust {
  background: var(--ink);
  color: #fff;
  padding: 1.1rem 0;
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 3vw, 2.4rem);
  text-align: center;
}
.trust-item {
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: var(--step--1);
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}
.trust-sep { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); flex: none; }
@media (max-width: 620px) { .trust-sep { display: none; } }

/* =========================================================
   About
   ========================================================= */
.about {
  padding-block: var(--sect-y);
  background: var(--paper);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about-media { position: relative; }
.about-emblem {
  background: linear-gradient(150deg, var(--ink) 0%, var(--ink-2) 60%, var(--graphite) 100%);
  border-radius: var(--radius);
  padding: clamp(2.2rem, 5vw, 3.8rem) clamp(1.5rem, 4vw, 3rem);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(244,166,42,0.18);
  position: relative;
  overflow: hidden;
}
.about-emblem::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 18%, rgba(244,166,42,0.30), transparent 52%),
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
}
.about-emblem::after {
  content: "";
  position: absolute; inset: 14px;
  border: 1px solid rgba(244,166,42,0.22);
  border-radius: calc(var(--radius) - 6px);
  pointer-events: none;
}
.about-emblem img { position: relative; width: 100%; max-width: 360px; }
.about-badge {
  position: absolute;
  right: clamp(-0.5rem, -1vw, -1.6rem);
  bottom: -1.6rem;
  background: var(--amber);
  color: #241a05;
  border-radius: var(--radius-sm);
  padding: 1rem 1.3rem;
  max-width: 220px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.about-badge-num { font-family: var(--display); font-weight: 900; font-size: 2.4rem; line-height: 0.9; }
.about-badge-label { font-size: 0.78rem; font-weight: 700; line-height: 1.25; }

.about-copy h2 { font-size: var(--step-3); margin-bottom: 1.2rem; }
.about-copy p { color: var(--muted); margin: 0 0 1.1rem; max-width: 56ch; }
.about-list {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.about-list li {
  padding-left: 2.2rem;
  position: relative;
  color: var(--muted);
  font-size: var(--step--1);
  line-height: 1.5;
}
.about-list li span {
  display: block;
  color: var(--ink);
  font-weight: 800;
  font-family: var(--sans);
  font-size: var(--step-0);
  letter-spacing: 0;
}
.about-list li::before {
  content: "";
  position: absolute; left: 0; top: 2px;
  width: 1.4rem; height: 1.4rem;
  border-radius: 50%;
  background: var(--amber);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23241a05' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 62%;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 460px; margin-inline: auto; }
  .about-badge { right: 0; }
}

/* =========================================================
   Services
   ========================================================= */
.services {
  padding-block: var(--sect-y);
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}
.services-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.services-head h2 { font-size: var(--step-3); margin-bottom: 1rem; }
.services-intro { color: var(--muted); margin: 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.4rem);
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  position: relative;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s, border-color .3s;
}
.svc-card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--amber);
  transform: scaleY(0); transform-origin: top;
  transition: transform .35s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.svc-card:hover::before { transform: scaleY(1); }
.svc-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--amber);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 1rem;
}
.svc-card h3 { font-size: var(--step-1); margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.svc-card p { color: var(--muted); font-size: var(--step--1); margin: 0; line-height: 1.55; }

/* feature card spans wider on large screens */
.svc-card.feature {
  grid-column: span 1;
  background:
    radial-gradient(circle at 82% 8%, rgba(244,166,42,0.22), transparent 55%),
    linear-gradient(155deg, var(--ink) 0%, var(--ink-2) 100%);
  border-color: transparent;
  box-shadow: 0 22px 50px -30px rgba(0,0,0,0.7);
}
.svc-card.feature h3 { color: #fff; }
.svc-card.feature p { color: rgba(255,255,255,0.8); }
.svc-card.feature .svc-num { color: var(--amber); }
.svc-card.feature::before { background: var(--amber); transform: scaleY(1); }
.svc-card.feature:hover { box-shadow: var(--shadow-lg); }

@media (min-width: 900px) {
  .svc-card.feature { grid-column: span 1; grid-row: span 1; }
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Mobile / convenience band
   ========================================================= */
.mobile-band {
  position: relative;
  background: var(--graphite);
  color: #fff;
  padding-block: var(--sect-y);
  overflow: hidden;
  isolation: isolate;
}
.mobile-bg { position: absolute; inset: 0; z-index: -1; }
.mobile-bg::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(244,166,42,0.30), transparent 50%);
}
.mobile-band .streak.s1 { top: 30%; left: -5%; width: 60%; opacity: 0.28; }
.mobile-band .streak.s2 { top: 66%; left: 25%; width: 55%; opacity: 0.2; height: 3px; }
.mobile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.mobile-copy h2 { color: #fff; font-size: var(--step-3); margin-bottom: 1.1rem; }
.mobile-copy p { color: rgba(255,255,255,0.8); max-width: 46ch; margin: 0 0 2rem; }

.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.steps li {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  transition: transform .3s, background .3s, border-color .3s;
}
.steps li:hover { transform: translateX(6px); background: rgba(255,255,255,0.07); border-color: rgba(244,166,42,0.4); }
.step-n {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--amber);
  color: #241a05;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.3rem;
  display: grid;
  place-items: center;
}
.steps h3 { color: #fff; font-size: var(--step-1); margin-bottom: 0.25rem; }
.steps p { color: rgba(255,255,255,0.72); margin: 0; font-size: var(--step--1); }

@media (max-width: 860px) {
  .mobile-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Areas
   ========================================================= */
.areas { padding-block: var(--sect-y); background: var(--paper); }
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.areas-copy h2 { font-size: var(--step-3); margin-bottom: 1.1rem; }
.areas-copy p { color: var(--muted); max-width: 46ch; margin: 0 0 2rem; }

.areas-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}
.areas-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem;
  font-weight: 800;
  font-family: var(--sans);
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.areas-list li::before {
  content: "";
  width: 12px; height: 12px; flex: none;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--amber);
  box-shadow: inset 0 0 0 2px rgba(36,26,5,0.25);
}
.areas-list li:hover { transform: translateY(-3px); border-color: var(--amber); box-shadow: var(--shadow); }

@media (max-width: 860px) { .areas-grid { grid-template-columns: 1fr; } }
@media (max-width: 420px) { .areas-list { grid-template-columns: 1fr; } }

/* =========================================================
   Contact
   ========================================================= */
.contact {
  padding-block: var(--sect-y);
  background: var(--ink);
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact-lead h2 { color: #fff; font-size: var(--step-3); margin-bottom: 1.2rem; }
.contact-lead p { color: rgba(255,255,255,0.78); max-width: 44ch; margin: 0 0 2rem; }

.contact-cards { display: grid; gap: 1rem; }
.c-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem 1.7rem;
  transition: border-color .3s, background .3s, transform .3s;
}
.c-card:hover { border-color: rgba(244,166,42,0.45); background: rgba(255,255,255,0.07); transform: translateY(-3px); }
.c-card h3 {
  color: var(--amber);
  font-family: var(--sans);
  font-weight: 800;
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
}
.c-strong {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: var(--step-1);
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}
a.c-strong:hover { color: var(--amber); }
.c-addr { line-height: 1.3; }
.c-card p { color: rgba(255,255,255,0.66); font-size: var(--step--1); margin: 0; }
.c-hours {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7) !important;
}
.c-hours:last-child { border-bottom: 0; }
.c-hours b { color: #fff; }

@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--graphite);
  color: rgba(255,255,255,0.7);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 62px; width: auto; margin-bottom: 1.2rem; }
.footer-brand p { max-width: 34ch; font-size: var(--step--1); line-height: 1.5; margin: 0; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.footer-cols h4 {
  font-family: var(--sans);
  font-weight: 800;
  color: #fff;
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-cols a {
  display: block;
  color: rgba(255,255,255,0.66);
  text-decoration: none;
  font-size: var(--step--1);
  padding: 0.3rem 0;
  transition: color .2s, transform .2s;
}
.footer-cols a:hover { color: var(--amber); transform: translateX(3px); }
.footer-legal {
  padding-top: 1.6rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   Spec footer (mandatory)
   ========================================================= */
.spec-footer {
  background: #000;
  color: rgba(255,255,255,0.66);
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.5;
  padding: 1.4rem var(--gutter);
}
.spec-footer a { color: var(--amber); }

/* =========================================================
   Reveal animation
   ========================================================= */
/* Content is visible by default. JS "arms" the hidden state only after it has
   set up the observer AND pre-revealed anything already on screen, so content
   can never get stuck invisible (screenshot-safe, no-JS-safe). */
.reveal { opacity: 1; }
html.reveal-armed .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
html.reveal-armed .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html.reveal-armed .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn, .svc-card, .steps li, .areas-list li, .c-card, .nav a, .footer-cols a { transition: none !important; }
}
