/* ============================================================
   Cando's Auto Repair
   Design system: asphalt + redline. Motorsport garage identity.
   ============================================================ */

:root {
  /* Palette */
  --asphalt:    #141210;
  --asphalt-2:  #1A1612;
  --panel:      #211C16;
  --panel-2:    #28221B;
  --line:       #352D24;
  --line-soft:  #2A241D;

  --red:        #E4241E;
  --red-bright: #F23A2E;
  --red-deep:   #B0140F;
  --amber:      #F2B705;
  --go:         #2ECB55;

  --bone:       #F4EFE6;
  --bone-dim:   #C3BBAD;
  --muted:      #8C8576;

  /* Type */
  --display: "Saira Condensed", "Arial Narrow", sans-serif;
  --body:    "Barlow", system-ui, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1200px;
  --radius: 14px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--body);
  background: var(--asphalt);
  color: var(--bone);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--red); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

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

/* ---------- Section shared ---------- */
section { position: relative; }
.about, .services, .process, .work, .reviews, .contact { padding: clamp(70px, 9vw, 130px) 0; }

.section-eyebrow {
  font-family: var(--mono);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: .98;
  letter-spacing: -.01em;
  text-transform: uppercase;
  max-width: 16ch;
}
.section-head { margin-bottom: clamp(40px, 5vw, 64px); }
.section-intro { color: var(--bone-dim); max-width: 52ch; margin-top: 18px; font-size: 1.06rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
  font-size: 1.02rem; padding: 14px 26px; border-radius: 10px;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
  will-change: transform;
}
.btn-primary {
  background: var(--red); color: #fff;
  box-shadow: 0 8px 26px -10px var(--red-deep);
}
.btn-primary:hover { background: var(--red-bright); transform: translateY(-2px); box-shadow: 0 14px 32px -10px var(--red-deep); }
.btn-ghost { background: transparent; color: var(--bone); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--red); color: #fff; transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(16, 14, 11, .86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 44px; height: 46px; object-fit: cover; border-radius: 8px; box-shadow: inset 0 0 0 1px var(--line); }
.brand-text { display: flex; flex-direction: column; line-height: .92; }
.brand-name { font-family: var(--display); font-weight: 800; font-size: 1.45rem; text-transform: uppercase; letter-spacing: .01em; }
.brand-sub { font-family: var(--mono); font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--red); margin-top: 2px; }

.nav { display: flex; gap: 30px; }
.nav a {
  font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .03em;
  font-size: 1.02rem; color: var(--bone-dim); position: relative; padding: 4px 0;
  transition: color .2s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--red);
  transition: width .25s var(--ease);
}
.nav a:hover { color: var(--bone); }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.btn-call {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-weight: 700; font-size: .9rem;
  padding: 10px 16px; border-radius: 9px; color: var(--bone);
  box-shadow: inset 0 0 0 1.5px var(--line); transition: box-shadow .2s var(--ease), color .2s var(--ease);
}
.btn-call:hover { box-shadow: inset 0 0 0 1.5px var(--red); color: #fff; }
.btn-call svg { color: var(--red); }

.menu-toggle { display: none; width: 42px; height: 42px; border-radius: 9px; box-shadow: inset 0 0 0 1.5px var(--line); position: relative; }
.menu-toggle span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--bone); transition: transform .3s var(--ease), opacity .2s; }
.menu-toggle span:nth-child(1) { top: 15px; }
.menu-toggle span:nth-child(2) { top: 20px; }
.menu-toggle span:nth-child(3) { top: 25px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 62%;
  transform: scale(1.08); animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(16,14,11,.72) 0%, rgba(16,14,11,.45) 38%, rgba(16,14,11,.82) 82%, var(--asphalt) 100%),
    linear-gradient(90deg, rgba(16,14,11,.9) 0%, rgba(16,14,11,.3) 55%, transparent 100%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: .06; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; width: 100%; padding-top: 90px; padding-bottom: 60px; }
.hero-copy { max-width: 720px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--bone-dim); margin-bottom: 26px;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--go); box-shadow: 0 0 0 0 rgba(46,203,85,.5); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(46,203,85,.5);} 70%{box-shadow:0 0 0 8px rgba(46,203,85,0);} 100%{box-shadow:0 0 0 0 rgba(46,203,85,0);} }

.hero-title {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(3.2rem, 9vw, 6.8rem); line-height: .86; letter-spacing: -.015em;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span, .hero-title .line { will-change: transform; }
.hero-title em { color: var(--red); font-style: normal; }
/* line reveal */
.hero-title .line { transform: translateY(110%); opacity: 0; }
.hero-loaded .hero-title .line { animation: lineUp .9s var(--ease) forwards; }
.hero-loaded .hero-title .line:nth-child(2) { animation-delay: .12s; }
@keyframes lineUp { to { transform: translateY(0); opacity: 1; } }

.hero-lead { font-size: 1.18rem; color: var(--bone-dim); max-width: 50ch; margin: 28px 0 34px; }
.hero-loaded .hero-lead, .hero-loaded .hero-cta, .hero-loaded .hero-stats, .hero-loaded .eyebrow { animation: fadeUp .8s var(--ease) both; }
.hero-loaded .hero-lead { animation-delay: .35s; }
.hero-loaded .hero-cta { animation-delay: .45s; }
.hero-loaded .hero-stats { animation-delay: .58s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats { list-style: none; display: flex; gap: 38px; margin-top: 48px; flex-wrap: wrap; }
.hero-stats li { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: var(--display); font-weight: 700; font-size: 2.3rem; line-height: 1; color: var(--bone); }
.stat-label { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* Staging tree signature */
.tree {
  flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 22px 18px; border-radius: 16px;
  background: linear-gradient(180deg, rgba(20,18,15,.55), rgba(20,18,15,.2));
  box-shadow: inset 0 0 0 1px var(--line-soft);
  backdrop-filter: blur(3px);
}
.bulb { width: 26px; height: 26px; border-radius: 50%; background: #1c1812; box-shadow: inset 0 0 0 2px rgba(255,255,255,.06), inset 0 4px 6px rgba(0,0,0,.6); transition: all .18s var(--ease); }
.bulb.stage { width: 14px; height: 14px; }
.bulb.stage.lit { background: #fff; box-shadow: 0 0 14px 3px rgba(255,255,255,.5); }
.bulb.amber.lit { background: var(--amber); box-shadow: 0 0 18px 4px rgba(242,183,5,.6), inset 0 0 6px rgba(255,220,120,.7); }
.bulb.go.lit { background: var(--go); box-shadow: 0 0 22px 6px rgba(46,203,85,.65), inset 0 0 6px rgba(160,255,180,.7); }
.tree-label { font-family: var(--mono); font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-top: 4px; transition: color .2s; }
.tree.launched .tree-label { color: var(--go); }

.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3; width: 26px; height: 42px; border-radius: 13px; box-shadow: inset 0 0 0 1.5px var(--line); display: grid; place-items: start center; padding-top: 8px; }
.scroll-cue span { width: 4px; height: 8px; border-radius: 2px; background: var(--red); animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0%{opacity:0; transform: translateY(0);} 30%{opacity:1;} 100%{opacity:0; transform: translateY(14px);} }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-block: 1px solid var(--line-soft);
  background: linear-gradient(90deg, var(--red-deep), var(--red));
  overflow: hidden; padding: 14px 0;
}
.marquee-track { display: flex; width: max-content; animation: scrollX 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; align-items: center; gap: 26px; padding-right: 26px; flex-shrink: 0; white-space: nowrap; }
.marquee-group span { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-size: 1.1rem; color: #fff; }
.marquee-group .sep { color: rgba(255,255,255,.5); }
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--asphalt-2); }
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.about-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 60px -30px #000; }
.about-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; transition: transform .9s var(--ease); }
.about-media:hover img { transform: scale(1.04); }
.about-badge {
  position: absolute; left: 18px; bottom: 18px; display: flex; flex-direction: column;
  background: rgba(16,14,11,.78); backdrop-filter: blur(8px); padding: 14px 20px; border-radius: 12px;
  box-shadow: inset 0 0 0 1px var(--line);
}
.badge-k { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 1.5rem; color: var(--red); line-height: 1; }
.badge-v { font-family: var(--mono); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--bone-dim); margin-top: 4px; }

.about-copy p { color: var(--bone-dim); margin-top: 18px; font-size: 1.06rem; }
.about-copy .section-title { color: var(--bone); }
.about-points { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.about-points li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--bone); }
.tick { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: rgba(228,36,30,.12); position: relative; }
.tick::after { content: ""; position: absolute; left: 7px; top: 5px; width: 5px; height: 9px; border: solid var(--red); border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card {
  background: var(--panel); border-radius: var(--radius); padding: 32px 28px 34px;
  box-shadow: inset 0 0 0 1px var(--line-soft);
  position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}
.svc-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--red);
  transition: width .4s var(--ease);
}
.svc-card:hover { transform: translateY(-5px); background: var(--panel-2); box-shadow: inset 0 0 0 1px var(--line), 0 24px 44px -28px #000; }
.svc-card:hover::before { width: 100%; }
.svc-icon { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 14px; background: rgba(228,36,30,.1); color: var(--red); margin-bottom: 22px; transition: background .3s var(--ease), transform .3s var(--ease); }
.svc-card:hover .svc-icon { background: var(--red); color: #fff; transform: rotate(-4deg); }
.svc-card h3 { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 1.42rem; line-height: 1.02; letter-spacing: .005em; }
.svc-card p { color: var(--bone-dim); margin-top: 12px; font-size: 1rem; }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--asphalt-2); }
.lane { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; }
.lane::before {
  content: ""; position: absolute; top: 26px; left: 6%; right: 6%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 14px, transparent 14px 26px);
}
.step { position: relative; padding-top: 64px; }
.step-light { position: absolute; top: 14px; left: 0; width: 26px; height: 26px; border-radius: 50%; background: #1c1812; box-shadow: inset 0 0 0 2px rgba(255,255,255,.06); z-index: 1; }
.step.in .step-light.amber { background: var(--amber); box-shadow: 0 0 18px 3px rgba(242,183,5,.5); }
.step.in .step-light.go { background: var(--go); box-shadow: 0 0 20px 4px rgba(46,203,85,.55); }
.step-no { font-family: var(--mono); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 8px; }
.step h3 { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 1.5rem; }
.step p { color: var(--bone-dim); margin-top: 10px; }

/* ============================================================
   WORK / GALLERY
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; }
.g-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; box-shadow: inset 0 0 0 1px var(--line-soft); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.g-item:hover img { transform: scale(1.07); }
.g-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(16,14,11,.85)); opacity: .7; transition: opacity .3s; }
.g-item:hover::after { opacity: .95; }
.g-item figcaption {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  font-family: var(--mono); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--bone);
  transform: translateY(6px); opacity: 0; transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.g-item:hover figcaption { transform: translateY(0); opacity: 1; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; grid-row: span 2; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.rating-badge { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.rating-num { font-family: var(--display); font-weight: 800; font-size: 3.4rem; line-height: 1; color: var(--bone); }
.rating-stars { color: var(--amber); font-size: 1.2rem; letter-spacing: .08em; }
.rating-stars .half { color: var(--line); }
.rating-meta { font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

.review-grid { columns: 3; column-gap: 18px; }
.review {
  break-inside: avoid; margin-bottom: 18px;
  background: var(--panel); border-radius: var(--radius); padding: 26px 26px 24px;
  box-shadow: inset 0 0 0 1px var(--line-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.review:hover { transform: translateY(-4px); box-shadow: inset 0 0 0 1px var(--line), 0 22px 40px -28px #000; }
.quote-stars { color: var(--amber); font-size: .95rem; letter-spacing: .1em; display: block; margin-bottom: 14px; }
.review p { color: var(--bone); font-size: 1.04rem; }
.review footer { margin-top: 18px; display: flex; flex-direction: column; gap: 2px; }
.r-name { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 1.1rem; letter-spacing: .02em; }
.r-meta { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--asphalt-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 5vw, 70px); align-items: start; }
.contact-lead { color: var(--bone-dim); font-size: 1.06rem; margin-top: 18px; max-width: 44ch; }

.info-rows { display: flex; flex-direction: column; gap: 4px; margin: 34px 0; }
.info-row { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); transition: padding-left .25s var(--ease); }
.info-row:hover { padding-left: 8px; }
.info-ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: rgba(228,36,30,.1); color: var(--red); transition: background .25s, color .25s; }
.info-row:hover .info-ic { background: var(--red); color: #fff; }
.info-row span span { display: block; }
.info-k { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.info-v { font-weight: 600; font-size: 1.08rem; }

.hours-card { background: var(--panel); border-radius: var(--radius); padding: 24px 26px; box-shadow: inset 0 0 0 1px var(--line-soft); }
.hours-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.hours-top h3 { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 1.4rem; }
.status-pill { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: 20px; box-shadow: inset 0 0 0 1px var(--line); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted); }
.status-pill.open { color: var(--go); }
.status-pill.open .status-dot { background: var(--go); box-shadow: 0 0 8px var(--go); }
.status-pill.closed { color: var(--red-bright); }
.status-pill.closed .status-dot { background: var(--red-bright); }
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; padding: 9px 0; border-top: 1px solid var(--line-soft); font-size: .98rem; }
.hours-list li:first-child { border-top: none; }
.hours-list li span:first-child { color: var(--bone-dim); }
.hours-list li span:last-child { font-family: var(--mono); font-size: .86rem; color: var(--bone); }
.hours-list li.today { color: var(--bone); }
.hours-list li.today span:first-child { color: var(--red); font-weight: 700; }
.hours-list .closed { color: var(--muted); }

/* Form */
.contact-form { background: var(--panel); border-radius: var(--radius); padding: 30px 28px; box-shadow: inset 0 0 0 1px var(--line-soft); }
.form-note { font-family: var(--mono); font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .03em; font-size: .95rem; margin-bottom: 8px; color: var(--bone-dim); }
.field label .opt { font-family: var(--body); font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--muted); font-size: .82rem; }
.field input, .field textarea {
  width: 100%; background: var(--asphalt); color: var(--bone); border-radius: 10px; padding: 13px 15px;
  font-family: var(--body); font-size: 1rem; box-shadow: inset 0 0 0 1.5px var(--line);
  transition: box-shadow .2s var(--ease), background .2s;
}
.field input::placeholder, .field textarea::placeholder { color: #5e574c; }
.field input:focus, .field textarea:focus { outline: none; box-shadow: inset 0 0 0 1.5px var(--red); background: #0f0d0a; }
.field textarea { resize: vertical; min-height: 110px; }
.field.invalid input, .field.invalid textarea { box-shadow: inset 0 0 0 1.5px var(--red-bright); }
.err { display: block; min-height: 0; font-size: .82rem; color: var(--red-bright); margin-top: 6px; opacity: 0; transition: opacity .2s; }
.field.invalid .err { opacity: 1; }
.form-success { margin-top: 16px; color: var(--go); font-weight: 600; text-align: center; }

.map-frame { margin-top: 22px; height: 300px; border-radius: var(--radius); overflow: hidden; box-shadow: inset 0 0 0 1px var(--line-soft); filter: grayscale(.3) contrast(1.05); }
.map-frame iframe { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--asphalt); border-top: 1px solid var(--line-soft); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand img { width: 110px; height: auto; border-radius: 10px; margin-bottom: 18px; box-shadow: inset 0 0 0 1px var(--line); }
.footer-brand p { color: var(--bone-dim); max-width: 34ch; }
.footer-col h4 { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: 1.05rem; margin-bottom: 16px; color: var(--bone); }
.footer-col a { display: block; color: var(--bone-dim); padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: var(--red); }
.foot-hours { color: var(--bone-dim); font-family: var(--mono); font-size: .86rem; line-height: 2; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0 30px; border-top: 1px solid var(--line-soft); font-family: var(--mono); font-size: .76rem; color: var(--muted); letter-spacing: .04em; }
.footer-flag { width: 70px; height: 14px; background-image: linear-gradient(45deg, var(--bone) 25%, transparent 25%), linear-gradient(-45deg, var(--bone) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, var(--bone) 75%), linear-gradient(-45deg, transparent 75%, var(--bone) 75%); background-size: 10px 10px; background-position: 0 0, 0 5px, 5px -5px, -5px 0; opacity: .25; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; background: rgba(8,7,5,.9); backdrop-filter: blur(6px); padding: 30px; }
.lightbox.open { display: flex; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 12px; box-shadow: 0 30px 80px -20px #000; }
.lb-close { position: absolute; top: 20px; right: 26px; font-size: 2.4rem; line-height: 1; color: var(--bone); width: 48px; height: 48px; border-radius: 50%; box-shadow: inset 0 0 0 1.5px var(--line); transition: box-shadow .2s, color .2s; }
.lb-close:hover { box-shadow: inset 0 0 0 1.5px var(--red); color: var(--red); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.shown { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav, .btn-call span { display: none; }
  .menu-toggle { display: block; }
  .nav {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; gap: 0;
    background: rgba(14,12,10,.97); backdrop-filter: blur(14px);
    padding: 8px 24px 24px; border-bottom: 1px solid var(--line);
    transform: translateY(-130%); transition: transform .4s var(--ease); display: flex;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 16px 0; font-size: 1.4rem; border-bottom: 1px solid var(--line-soft); }
  .nav a::after { display: none; }
  .btn-call { padding: 10px; }

  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 480px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { columns: 2; }
  .lane { grid-template-columns: 1fr; gap: 14px; }
  .lane::before { display: none; }
  .step { padding-top: 0; padding-left: 48px; }
  .step-light { top: 2px; }
  .tree { display: none; }
  .hero { align-items: flex-start; }
  .hero-inner { padding-top: 118px; padding-bottom: 70px; }
  .hero-title { font-size: clamp(2.9rem, 13vw, 4.4rem); }
}

@media (max-width: 600px) {
  .wrap { padding-inline: 18px; }
  .svc-grid, .review-grid { grid-template-columns: 1fr; columns: 1; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 1; }
  .field-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 1.9rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: span 2; }
  .reviews-head { align-items: flex-start; }
  .rating-badge { align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}
