/* ============================================================
   JOEY'S PRECISION DETAILING — Site CSS
   Aesthetic: Trackside / Racing-Shop Luxury
   Palette: Obsidian + Bone-White, knife-cut by signature red
   ============================================================ */

:root {
  /* Brand */
  --red:        #E10600;
  --red-dark:   #B30500;
  --red-glow:   #FF1F1F;

  /* Neutrals */
  --black:      #0A0A0B;
  --ink:        #18181B;
  --carbon:     #1F1F23;
  --steel:      #3A3A40;
  --silver:     #A1A1A6;
  --bone:       #F8F7F4;
  --paper:      #FFFFFF;
  --line:       #E6E6E2;
  --text:       #1A1A1C;
  --muted:      #6B6B70;

  /* Type */
  --display:    "Bebas Neue", "Arial Narrow", system-ui, sans-serif;
  --body:       "DM Sans", system-ui, -apple-system, sans-serif;
  --mono:       "JetBrains Mono", ui-monospace, "Courier New", monospace;

  /* Layout */
  --container:  1240px;
  --gutter:     24px;
  --pad-y:      clamp(64px, 8vw, 120px);
  --pad-y-sm:   clamp(40px, 5vw, 72px);

  /* Effects */
  --shadow-1:   0 2px 12px rgba(0,0,0,0.06);
  --shadow-2:   0 12px 40px rgba(0,0,0,0.12);
  --shadow-red: 0 8px 24px rgba(225,6,0,0.35);
  --tx:         180ms cubic-bezier(.2,.8,.2,1);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; transition: color var(--tx); }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.05; letter-spacing: -0.01em; }
p { margin: 0; }

/* Skip link */
.skip-link {
  position: absolute; top: -100px; left: 8px; z-index: 9999;
  background: var(--red); color: #fff; padding: 12px 18px;
  font-weight: 600; transition: top var(--tx);
}
.skip-link:focus { top: 8px; }

/* ============ TYPOGRAPHY SYSTEM ============ */
h1, h2 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 0.94;
}
h1 {
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
}
h2 {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
}
h3 {
  font-family: var(--body);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.005em;
}
h4 {
  font-family: var(--body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0;
}

.accent { color: var(--red); }
.text-light { color: var(--bone); }
.text-light-muted { color: var(--silver); }

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.eyebrow-bar {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--red);
}
.eyebrow-light { color: var(--silver); }
.eyebrow-center { justify-content: center; }

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-lede {
  margin-top: 18px;
  font-size: 1.075rem;
  line-height: 1.65;
  color: var(--muted);
}
.text-light + .section-lede,
.section-head .text-light ~ .section-lede.text-light-muted { color: var(--silver); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  text-transform: uppercase;
  position: relative;
  transition: all var(--tx);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(225,6,0,0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--bone);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}
.btn-large { padding: 20px 36px; font-size: 1rem; }
.btn-small { padding: 12px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* On light backgrounds, ghost button needs adjustment */
.section-head ~ * .btn-ghost,
.reviews-summary .btn-ghost {
  color: var(--text);
  border-color: var(--text);
}
.section-head ~ * .btn-ghost:hover,
.reviews-summary .btn-ghost:hover {
  background: var(--text);
  color: var(--bone);
}

/* ============ ANNOUNCEMENT BAR ============ */
.annc {
  background: var(--black);
  color: var(--silver);
  font-size: 0.78rem;
  font-family: var(--mono);
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--steel);
}
.annc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.annc-link { color: #fff; font-weight: 600; }
.annc-link:hover { color: var(--red-glow); }
@media (max-width: 768px) {
  .annc { display: none; }
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-logo img {
  width: 52px; height: 52px;
  border-radius: 4px;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.nav-brand {
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: var(--black);
  text-transform: uppercase;
}
.nav-brand-sub {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  position: relative;
  padding: 8px 0;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tx);
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 12px 22px !important;
  font-size: 0.85rem !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all var(--tx);
}
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--black);
  transition: all var(--tx);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1023px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--paper);
    padding: 32px 24px;
    gap: 0;
    border-bottom: 1px solid var(--line);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--tx);
    box-shadow: var(--shadow-2);
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }
  .nav-cta { margin-top: 16px; text-align: center; }
}
@media (max-width: 480px) {
  .nav-brand-sub { display: none; }
  .nav-logo img { width: 44px; height: 44px; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--black);
  color: var(--bone);
  padding: clamp(48px, 7vw, 96px) 0 clamp(64px, 8vw, 120px);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg,
      rgba(10,10,11,0.92) 0%,
      rgba(10,10,11,0.78) 35%,
      rgba(10,10,11,0.4) 65%,
      rgba(10,10,11,0.55) 100%);
}
.hero::before {
  /* Diagonal red accent line */
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 47%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--red) 30%, var(--red) 70%, transparent);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 1023px) { .hero::before { display: none; } }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 {
  margin-top: 8px;
  margin-bottom: 24px;
  color: var(--bone);
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--silver);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-bottom: 36px;
  padding: 18px 0;
  border-top: 1px solid var(--steel);
  border-bottom: 1px solid var(--steel);
}
.hero-trust span {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--bone);
  text-transform: uppercase;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero form card */
.hero-form-card {
  background: var(--paper);
  color: var(--text);
  padding: 36px 32px;
  position: relative;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
}
.hero-form-card::before {
  /* Red corner accent */
  content: '';
  position: absolute;
  top: -1px; right: -1px;
  width: 56px; height: 56px;
  background:
    linear-gradient(135deg, transparent 50%, var(--red) 50%);
}
.hero-form-head { margin-bottom: 24px; }
.form-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  padding: 5px 12px;
  margin-bottom: 12px;
}
.hero-form-head h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin-bottom: 8px;
  line-height: 1;
}
.hero-form-head p {
  font-size: 0.92rem;
  color: var(--muted);
}

/* ============ FORMS ============ */
.lead-form { display: flex; flex-direction: column; gap: 12px; }
.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
}
.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  padding: 14px 14px;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  background: #fff;
  border: 1.5px solid var(--line);
  text-transform: none;
  letter-spacing: normal;
  transition: border-color var(--tx), box-shadow var(--tx);
}
.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225,6,0,0.12);
}
.lead-form textarea { resize: vertical; min-height: 88px; }

.form-step { display: block; }
.form-step[hidden] { display: none; }
.form-step .btn { margin-top: 10px; }
.form-step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

.hc-error {
  background: #fff2f2;
  color: var(--red-dark);
  padding: 12px 14px;
  font-size: 0.9rem;
  border-left: 3px solid var(--red);
  margin-top: 8px;
}

/* Honeypot — offscreen, NOT display:none */
._gotcha {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

@media (max-width: 1023px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============ PROOF BAR ============ */
.proof {
  background: var(--black);
  color: var(--bone);
  border-top: 1px solid var(--steel);
  border-bottom: 4px solid var(--red);
}
.proof-row {
  display: grid;
  grid-template-columns: auto auto 1.6fr auto auto;
  gap: 32px;
  align-items: center;
  padding: 36px 24px;
}
.stat { display: flex; flex-direction: column; gap: 4px; text-align: center; }
.stat-num {
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
}
.stat-quote {
  text-align: center;
  padding: 0 24px;
  border-left: 1px solid var(--steel);
  border-right: 1px solid var(--steel);
}
.stat-quote .stars { color: var(--red); letter-spacing: 0.1em; font-size: 1rem; }
.stat-quote p {
  font-style: italic;
  font-size: 0.95rem;
  margin: 8px 0 6px;
  color: var(--bone);
  line-height: 1.4;
}
.stat-attrib {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--silver);
  letter-spacing: 0.1em;
}

@media (max-width: 1023px) {
  .proof-row {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .stat-quote {
    grid-column: 1 / -1;
    border: none;
    border-top: 1px solid var(--steel);
    border-bottom: 1px solid var(--steel);
    padding: 18px 0;
  }
}

/* ============ PROBLEM SECTION ============ */
.problem {
  padding: var(--pad-y) 0;
  background: var(--bone);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 16px;
}
.problem-card {
  background: var(--paper);
  padding: 36px 28px;
  border-top: 3px solid var(--red);
  position: relative;
  transition: transform var(--tx), box-shadow var(--tx);
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.problem-num {
  font-family: var(--display);
  font-size: 3rem;
  color: var(--red);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.problem-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}
.problem-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.problem-trans {
  margin-top: 48px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--text);
}
.problem-trans a {
  color: var(--red);
  font-weight: 700;
  border-bottom: 2px solid var(--red);
}
.problem-trans a:hover { color: var(--red-dark); }
@media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr; gap: 20px; } }

/* ============ SERVICES ============ */
.services {
  padding: var(--pad-y) 0;
  background: var(--paper);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform var(--tx), box-shadow var(--tx), border-color var(--tx);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
  border-color: var(--text);
}
.service-card-featured { border-color: var(--red); }
.service-card-featured:hover { border-color: var(--red); box-shadow: 0 16px 50px rgba(225,6,0,0.18); }

.service-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bone);
}
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.06); }
.service-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--red);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  padding: 6px 12px;
}
.service-body {
  padding: 32px 28px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-num {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 8px;
  display: inline-block;
}
.service-body h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.85rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  line-height: 1;
}
.service-body > p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-features {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-features li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  color: var(--text);
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 12px; height: 2px;
  background: var(--red);
}
.service-cta {
  margin-top: auto;
  align-self: flex-start;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--red);
  transition: gap var(--tx), color var(--tx);
}
.service-cta:hover { color: var(--red); }

.services-cta {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.services-cta-or {
  font-size: 0.95rem;
  color: var(--muted);
}
.services-cta-or a { color: var(--text); font-weight: 700; border-bottom: 2px solid var(--red); }

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

/* ============ ABOUT ============ */
.about {
  padding: var(--pad-y) 0;
  background: var(--bone);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--carbon);
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-photo-stamp {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--red);
  color: #fff;
  padding: 24px 28px;
  text-align: center;
  font-family: var(--display);
  line-height: 0.95;
  box-shadow: var(--shadow-red);
  transform: rotate(-3deg);
}
.about-stamp-line {
  display: block;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin: 4px 0;
}
.about-stamp-big {
  display: block;
  font-size: 2.2rem;
  letter-spacing: 0.04em;
}

.about-copy h2 { margin-bottom: 24px; }
.about-copy p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 18px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-stats > div { display: flex; flex-direction: column; gap: 4px; }
.about-stat-num {
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--red);
  line-height: 1;
}
.about-stat-lbl {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
@media (max-width: 1023px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { max-width: 480px; }
}

/* ============ WHY US ============ */
.why {
  padding: var(--pad-y) 0;
  background: var(--black);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.why::before {
  /* Subtle racing-stripe pattern */
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      transparent 0%, transparent 49.7%,
      rgba(225,6,0,0.04) 49.7%, rgba(225,6,0,0.04) 50.3%,
      transparent 50.3%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--steel);
  border: 1px solid var(--steel);
  margin-top: 16px;
}
.why-card {
  background: var(--ink);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background var(--tx);
}
.why-card:hover { background: var(--carbon); }
.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: rgba(225,6,0,0.12);
  color: var(--red);
  border: 1px solid rgba(225,6,0,0.3);
}
.why-icon svg { width: 24px; height: 24px; }
.why-card h3 { color: var(--bone); font-size: 1.15rem; }
.why-card p { color: var(--silver); font-size: 0.92rem; line-height: 1.6; }

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

/* Process */
.process {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid var(--steel);
  position: relative;
}
.process-head {
  text-align: center;
  font-family: var(--display);
  font-weight: 400;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(to right,
    var(--steel), var(--red) 50%, var(--steel));
  z-index: 0;
}
.process-steps li {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  font-size: 1.6rem;
  margin-bottom: 16px;
  border: 4px solid var(--black);
}
.process-steps h4 {
  color: var(--bone);
  margin-bottom: 8px;
  font-size: 1rem;
}
.process-steps p {
  color: var(--silver);
  font-size: 0.88rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
  .process-steps::before { display: none; }
}

/* ============ GALLERY ============ */
.gallery {
  padding: var(--pad-y) 0;
  background: var(--paper);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
  margin-top: 16px;
}
.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--carbon);
  cursor: pointer;
}
.gallery-item-tall { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 20px 18px;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
  text-transform: uppercase;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--tx);
}
.gallery-item:hover figcaption { transform: translateY(0); opacity: 1; }
.gallery-item::after {
  content: '';
  position: absolute;
  top: 12px; right: 12px;
  width: 8px; height: 8px;
  background: var(--red);
  opacity: 0;
  transition: opacity var(--tx);
}
.gallery-item:hover::after { opacity: 1; }

@media (max-width: 1100px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-item-tall { grid-row: auto; }
  .gallery-item figcaption { transform: translateY(0); opacity: 1; }
}

/* ============ REVIEWS ============ */
.reviews {
  padding: var(--pad-y) 0;
  background: var(--bone);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}
.review-card {
  background: var(--paper);
  padding: 36px 32px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform var(--tx), box-shadow var(--tx);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.review-card::before {
  content: '"';
  position: absolute;
  top: -24px; right: 18px;
  font-family: var(--display);
  font-size: 6rem;
  color: var(--red);
  line-height: 1;
  opacity: 0.3;
}
.review-stars {
  color: var(--red);
  letter-spacing: 0.15em;
  font-size: 1rem;
  margin-bottom: 16px;
  display: block;
}
.review-card p {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 24px;
}
.review-card footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.review-card footer strong { font-weight: 700; font-size: 0.95rem; }
.review-card footer span {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

.reviews-summary {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.reviews-rating {
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--red);
  line-height: 1;
}
.reviews-count {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
@media (max-width: 1023px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ============ AREAS ============ */
.areas {
  padding: var(--pad-y) 0;
  background: var(--black);
  color: var(--bone);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.areas-grid span {
  background: var(--ink);
  border: 1px solid var(--steel);
  padding: 18px 16px;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--bone);
  text-transform: uppercase;
  transition: all var(--tx);
}
.areas-grid span:hover {
  border-color: var(--red);
  background: rgba(225,6,0,0.1);
  color: #fff;
}
.areas-cta {
  margin-top: 40px;
  text-align: center;
  font-size: 1rem;
  color: var(--silver);
}
.areas-cta a { color: var(--red); font-weight: 700; border-bottom: 1px solid var(--red); }
.areas-cta a:hover { color: var(--red-glow); }
@media (max-width: 768px) { .areas-grid { grid-template-columns: 1fr 1fr; } }

/* ============ FAQ ============ */
.faq {
  padding: var(--pad-y) 0;
  background: var(--paper);
}
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bone);
  border: 1px solid var(--line);
  transition: border-color var(--tx);
}
.faq-item[open] {
  border-color: var(--red);
  background: var(--paper);
  box-shadow: var(--shadow-1);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--tx);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body {
  padding: 0 28px 28px;
}
.faq-body p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}
.faq-body a { color: var(--red); font-weight: 700; border-bottom: 1px solid var(--red); }
.faq-mid-cta {
  display: flex;
  justify-content: center;
  padding: 12px 0;
}

.faq-end-cta {
  margin-top: 56px;
  text-align: center;
  padding: 40px 24px;
  background: var(--black);
  color: var(--bone);
  border-top: 4px solid var(--red);
}
.faq-end-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 8px;
}
.faq-end-phone {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--red);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.faq-end-phone:hover { color: var(--red-glow); }
.faq-end-sub {
  display: block;
  font-size: 0.95rem;
  color: var(--silver);
}

/* ============ CONTACT ============ */
.contact {
  padding: var(--pad-y) 0;
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.contact-info > p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--silver);
  margin-bottom: 32px;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
  padding: 28px 0;
  border-top: 1px solid var(--steel);
  border-bottom: 1px solid var(--steel);
}
.contact-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--red);
  color: #fff;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-list strong {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-list a, .contact-list div > div {
  color: var(--bone);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
}
.contact-list a:hover { color: var(--red-glow); }

.contact-promise {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: var(--carbon);
  border-left: 3px solid var(--red);
}
.contact-promise-stamp {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
}
.contact-promise strong {
  display: block;
  color: var(--bone);
  margin-bottom: 6px;
  font-size: 1rem;
}
.contact-promise p { color: var(--silver); font-size: 0.92rem; line-height: 1.55; }

.contact-form {
  background: var(--paper);
  color: var(--text);
  padding: 40px 36px;
  position: relative;
  box-shadow: var(--shadow-2);
}
.contact-form::before {
  content: '';
  position: absolute;
  top: -1px; right: -1px;
  width: 64px; height: 64px;
  background: linear-gradient(135deg, transparent 50%, var(--red) 50%);
}
.contact-form-head {
  font-family: var(--display);
  font-weight: 400;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--text);
  letter-spacing: 0.01em;
}

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

/* ============ FOOTER ============ */
.footer {
  background: var(--black);
  color: var(--silver);
  padding: 64px 0 0;
  border-top: 1px solid var(--steel);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand img {
  width: 72px; height: 72px;
  margin-bottom: 16px;
  border-radius: 4px;
}
.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 18px;
  color: var(--silver);
}
.footer-nap {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--silver);
}
.footer-nap strong { color: var(--bone); display: block; margin-bottom: 4px; }
.footer-nap a { color: var(--red); font-weight: 700; }
.footer-nap a:hover { color: var(--red-glow); }

.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 0.92rem; }
.footer-col a:hover { color: var(--bone); }

.footer-bar {
  border-top: 1px solid var(--steel);
  padding: 20px 0;
  background: rgba(0,0,0,0.4);
}
.footer-bar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--silver);
}
@media (max-width: 1023px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bar-row { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============ STICKY MOBILE CALL BAR ============ */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--black);
  border-top: 2px solid var(--red);
  padding: 12px;
  gap: 8px;
  z-index: 90;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}
.sticky-call-btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--ink);
  color: var(--bone);
  border: 1px solid var(--steel);
}
.sticky-call-icon { font-size: 1.4rem; }
.sticky-call-text { display: flex; flex-direction: column; line-height: 1.1; }
.sticky-call-text strong { font-size: 0.78rem; letter-spacing: 0.04em; }
.sticky-call-text span { font-size: 0.85rem; color: var(--silver); }
.sticky-call-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.sticky-call-cta:hover { background: var(--red-dark); }

@media (max-width: 768px) {
  .sticky-call { display: flex; }
  body { padding-bottom: 74px; }
  .nav { top: 0; }
}

/* ============ FOCUS / A11Y ============ */
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

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