/* =========================================================
   OCDetail Auto Care — Design Tokens & Base Styles
   Palette sampled directly from real brand logo files:
   pure black background, white/chrome type, crimson-red accent.
   ========================================================= */

:root {
  /* --- Color tokens --- */
  --black: #000000;
  --bg: #0a0a0a;
  --bg-raised: #131313;
  --bg-raised-2: #1c1c1c;
  --border: #2a2a2a;
  --border-strong: #3a3a3a;

  --white: #ffffff;
  --text: #f3f3f3;
  --text-muted: #a8a8a8;
  --text-faint: #808080;

  --red: #c81116;
  --red-bright: #ff2d25;
  --red-deep: #7a0b0e;
  --red-text-on-dark: #ff4b45;

  --focus-ring: #ff8a84;

  /* --- Type --- */
  --font-display: "Titillium Web", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  /* --- Spacing scale --- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  --container-max: 1240px;
  --radius-sm: 4px;
  --radius-md: 8px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }

:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--red);
  color: var(--white);
  padding: var(--space-3) var(--space-5);
  z-index: 200;
  font-weight: 600;
}
.skip-link:focus {
  left: var(--space-4);
  top: var(--space-4);
}

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-7); }
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-text-on-dark);
  margin-bottom: var(--space-3);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--red-text-on-dark);
  display: inline-block;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }

h2.section-title {
  font-size: clamp(1.75rem, 1.2rem + 2.4vw, 2.75rem);
  line-height: 1.08;
  max-width: 20ch;
}

.section-head {
  margin-bottom: var(--space-7);
}
.section-head p.lede {
  margin-top: var(--space-4);
  color: var(--text-muted);
  max-width: 56ch;
  font-size: 1.05rem;
}

.text-center { text-align: center; }
.section-head.text-center p.lede { margin-inline: auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-sm);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 0 1px var(--red-deep) inset;
}
.btn-primary:hover { background: var(--red-bright); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  box-shadow: 0 0 0 1px var(--border-strong) inset;
}
.btn-secondary:hover { box-shadow: 0 0 0 1px var(--white) inset; }
.btn-ghost {
  color: var(--text-muted);
  padding: 0.6rem 0.2rem;
  border-bottom: 1px solid transparent;
}
.btn-ghost:hover { color: var(--white); border-color: var(--white); }
.btn-block { width: 100%; }
.btn[aria-disabled="true"] { opacity: 0.5; pointer-events: none; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.97);
  border-bottom: 1px solid var(--border);
}
/* In-page anchor targets land below the sticky header instead of under it. */
#tiers, #paint-needs, #two-services, #full-area, #detailing-packages { scroll-margin-top: 96px; }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: var(--space-3); }
.brand img { height: 34px; width: auto; }

.primary-nav { display: none; }
@media (min-width: 960px) {
  .primary-nav {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    font-size: 0.92rem;
    font-weight: 500;
  }
  .primary-nav a { color: var(--text-muted); transition: color 0.2s var(--ease); position: relative; }
  .primary-nav a:hover, .primary-nav a.active { color: var(--white); }
  .primary-nav a.active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -22px;
    height: 2px;
    background: var(--red);
  }
}

.header-actions { display: flex; align-items: center; gap: var(--space-4); }
.header-actions .btn { display: none; }
@media (min-width: 640px) {
  .header-actions .btn { display: inline-flex; }
}
.call-chip {
  display: none;
}
@media (min-width: 960px) {
  .call-chip {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
  }
  .call-chip:hover { color: var(--white); }
}

.nav-toggle {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
}
@media (min-width: 960px) { .nav-toggle { display: none; } }
.nav-toggle svg { width: 22px; height: 22px; }

.mobile-nav {
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: var(--space-6) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
}
.mobile-nav .mobile-nav-meta {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: var(--space-5);
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
@media (min-width: 960px) { .mobile-nav { display: none !important; } }

/* Sticky mobile book bar */
.mobile-book-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: rgba(8,8,8,0.98);
  border-top: 1px solid var(--border);
  padding: var(--space-3) var(--space-4);
  display: flex;
  gap: var(--space-3);
  padding-bottom: max(var(--space-3), env(safe-area-inset-bottom));
}
@media (min-width: 960px) { .mobile-book-bar { display: none; } }
.mobile-book-bar .btn { flex: 1; padding: 0.85rem 1rem; font-size: 0.88rem; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-media video.hero-video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(22px) brightness(0.4) saturate(1);
  transform: scale(1.15);
}
.hero-media video.hero-video-fg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.5);
}
/* On narrow/portrait viewports the hero itself is taller than it is wide (stacked
   text pushes it past min-height), so "contain" leaves large blurred-only gaps
   above/below the video. Below this breakpoint, skip the letterbox effect and
   let the video cover the box edge-to-edge instead — it always fills fully. */
@media (max-width: 900px) {
  .hero-media video.hero-video-bg { display: none; }
  .hero-media video.hero-video-fg { object-fit: cover; transform: none; }
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.45) 30%, rgba(0,0,0,0.86) 78%, #000 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-block: var(--space-9) var(--space-8);
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border-strong);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red-bright); }
.hero h1 {
  font-size: clamp(2.4rem, 1.7rem + 3.6vw, 4.6rem);
  line-height: 1.03;
  max-width: 16ch;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero h1 em {
  font-style: normal;
  font-weight: 700;
  color: var(--red-text-on-dark);
}
.hero p.sub {
  margin-top: var(--space-5);
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
  color: #d8d8d8;
  max-width: 46ch;
  text-shadow: 0 2px 14px rgba(0,0,0,0.7);
}
.hero-ctas {
  margin-top: var(--space-7);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.hero-trust {
  margin-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-7);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--space-5);
}
.hero-trust .stat {
  font-family: var(--font-display);
}
.hero-trust .stat .num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.hero-trust .stat .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

/* =========================================================
   Reveal-on-scroll
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 80ms); }

/* =========================================================
   Trust strip
   ========================================================= */
.trust-strip {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  padding-block: var(--space-6);
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
@media (min-width: 768px) {
  .trust-strip .container { grid-template-columns: repeat(4, 1fr); }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--text-muted);
  font-size: 0.88rem;
}
.trust-item svg { width: 22px; height: 22px; color: var(--red-text-on-dark); flex-shrink: 0; }

/* =========================================================
   Services
   ========================================================= */
.services-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.service-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.service-card.featured { border-color: var(--red); }
.service-card.featured:hover { border-color: var(--red-bright); }
.service-card.featured .body { background: linear-gradient(180deg, rgba(200,17,22,0.07), transparent 60%); }
.service-card .thumb { aspect-ratio: 4/3; overflow: hidden; background: #000; }
.service-card .thumb img, .service-card .thumb video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.service-card:hover .thumb img, .service-card:hover .thumb video { transform: scale(1.06); }
.service-card .body { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.service-card .cat { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red-text-on-dark); font-weight: 700; }
.service-card h3 { font-size: 1.15rem; color: var(--white); }
.service-card p { color: var(--text-muted); font-size: 0.92rem; flex: 1; }
.service-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
}
.service-card .price { color: var(--white); font-weight: 700; font-family: var(--font-display); }

/* Category tabs */
.cat-tabs {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}
.cat-tab {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s var(--ease);
}
.cat-tab:hover { color: var(--white); }
.cat-tab.active { background: var(--red); border-color: var(--red); color: var(--white); }

/* =========================================================
   Packages
   ========================================================= */
.packages-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .packages-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}
@media (min-width: 640px) {
  .packages-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 860px) {
  .packages-grid.cols-6 { grid-template-columns: repeat(3, 1fr); }
}
.package-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  position: relative;
}
.package-card.featured {
  border-color: var(--red);
  background: linear-gradient(180deg, rgba(200,17,22,0.08), var(--bg-raised) 40%);
}
.package-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -13px; left: var(--space-6);
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}
/* Same quiet border/wash as .featured, without the "Most Popular" badge,
   for a standalone card that deserves a second look without a comparison claim. */
.package-card.highlight {
  border-color: var(--red);
  background: linear-gradient(180deg, rgba(200,17,22,0.08), var(--bg-raised) 40%);
}
/* Flags a card as restricted/not-a-starting-point, an outlined caution pill
   rather than a solid "look how great" badge, so it never reads as a recommendation. */
.package-card.restricted::before {
  content: "Exceptional Condition Only";
  position: absolute;
  top: -13px; left: var(--space-6);
  background: var(--bg-raised-2);
  color: var(--red-text-on-dark);
  border: 1px solid var(--red-deep);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.26rem 0.7rem;
  border-radius: 999px;
}
.package-card h3 { font-size: 1.4rem; color: var(--white); }
.package-card .duration { color: var(--text-faint); font-size: 0.85rem; margin-top: var(--space-1); }
.package-card .price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-top: var(--space-4);
}
.package-card .price small { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; font-family: var(--font-body); }
.package-card ul { margin-top: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.package-card li { display: flex; gap: var(--space-3); font-size: 0.92rem; color: var(--text-muted); }
.package-card li svg { width: 18px; height: 18px; color: var(--red-text-on-dark); flex-shrink: 0; margin-top: 2px; }
.package-card p.desc { margin-top: var(--space-4); color: var(--text-muted); font-size: 0.92rem; flex: 1; }
.package-card .field-note { margin-top: var(--space-3); line-height: 1.5; }
.package-card .btn { margin-top: var(--space-6); }
.package-card .client-note {
  margin-top: var(--space-4);
  font-size: 0.78rem;
  color: var(--red-text-on-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.package-card.compact { padding: var(--space-5); }
.package-card.compact h3 { font-size: 1.2rem; }
.package-card.compact .price { font-size: 1.7rem; margin-top: var(--space-3); }
.pricing-group-head { margin-top: var(--space-9); margin-bottom: var(--space-6); }
.pricing-group-head:first-of-type { margin-top: 0; }
.pricing-group-head .eyebrow { margin-bottom: var(--space-2); }
.pricing-group-head h3 { font-family: var(--font-display); color: var(--white); font-size: 1.3rem; }
.pricing-group-head p { color: var(--text-muted); font-size: 0.92rem; margin-top: var(--space-2); max-width: 60ch; }
.package-note {
  margin-top: var(--space-6);
  color: var(--text-faint);
  font-size: 0.85rem;
  font-style: italic;
}

/* Add-ons */
.addons-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
  margin-top: var(--space-7);
}
@media (min-width: 780px) { .addons-grid { grid-template-columns: 1fr 1fr; } }
.addons-col { background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-6); }
.addons-col h4 { font-family: var(--font-display); color: var(--white); font-size: 1.1rem; margin-bottom: var(--space-4); }
.addons-col dl { display: flex; flex-direction: column; gap: var(--space-3); }
.addons-col .row { display: flex; justify-content: space-between; gap: var(--space-4); font-size: 0.92rem; border-bottom: 1px dashed var(--border); padding-bottom: var(--space-3); }
.addons-col dt { color: var(--text-muted); }
.addons-col dd { margin: 0; color: var(--white); font-weight: 600; white-space: nowrap; font-family: var(--font-display); }

.maintenance-banner {
  margin-top: var(--space-6);
  border: 1px dashed var(--red);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  align-items: center;
  justify-content: space-between;
  background: rgba(200,17,22,0.05);
}
.maintenance-banner h4 { font-family: var(--font-display); color: var(--white); font-size: 1.2rem; }
.maintenance-banner p { color: var(--text-muted); margin-top: var(--space-2); max-width: 60ch; font-size: 0.92rem; }
.maintenance-banner .price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--red-text-on-dark); white-space: nowrap; }

/* =========================================================
   Why OCDetail
   ========================================================= */
.why-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-item { padding: var(--space-2) 0; }
.why-item .num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--red-text-on-dark);
  font-weight: 700;
}
.why-item h3 { color: var(--white); font-size: 1.15rem; margin-top: var(--space-3); }
.why-item p { color: var(--text-muted); margin-top: var(--space-2); font-size: 0.94rem; }

/* =========================================================
   Before / After slider
   ========================================================= */
.ba-slider {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  touch-action: pan-y;
  cursor: ew-resize;
  user-select: none;
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-slider .after-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: 50%;
}
.ba-slider .after-wrap img { width: var(--ba-img-w, 100%); max-width: none; }
.ba-tag {
  position: absolute;
  top: var(--space-4);
  padding: 0.3rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
}
.ba-tag.before { left: var(--space-4); background: rgba(0,0,0,0.65); color: var(--text-muted); }
.ba-tag.after { right: var(--space-4); background: var(--red); color: var(--white); }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  z-index: 3;
}
.ba-handle::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}
.ba-handle::before {
  content: "↔";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  z-index: 4;
  color: #000;
  font-size: 18px;
  font-weight: 900;
}
.ba-caption { margin-top: var(--space-4); }
.ba-caption h3 { color: var(--white); font-size: 1.05rem; }
.ba-caption p { color: var(--text-muted); font-size: 0.88rem; margin-top: var(--space-1); }

.ba-grid { display: grid; gap: var(--space-8) var(--space-6); grid-template-columns: 1fr; }
@media (min-width: 780px) { .ba-grid { grid-template-columns: repeat(2, 1fr); } }

.gallery-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .cap {
  position: absolute; inset-inline: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85), transparent);
  color: var(--white);
  font-size: 0.78rem;
  padding: var(--space-4) var(--space-3) var(--space-2);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.gallery-item:hover .cap { opacity: 1; }
.placeholder-tile {
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  border: 1px dashed var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-4);
  color: var(--text-faint);
  font-size: 0.78rem;
}
.media-placeholder {
  aspect-ratio: 7/5;
  border-radius: var(--radius-md);
  border: 1px dashed var(--border-strong);
  background: var(--bg-raised);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-3);
  padding: var(--space-6);
}
.media-placeholder svg { width: 36px; height: 36px; color: var(--text-faint); }
.media-placeholder .ph-label { color: var(--text-muted); font-size: 0.85rem; font-weight: 600; }
.media-placeholder .ph-note { color: var(--text-faint); font-size: 0.76rem; max-width: 32ch; }

/* =========================================================
   Testimonials
   ========================================================= */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
}
.rating-badge .stars { color: #ffb400; font-size: 1.1rem; letter-spacing: 2px; }
.rating-badge .num { font-family: var(--font-display); font-size: 1.4rem; color: var(--white); font-weight: 700; }
.rating-badge .count { color: var(--text-muted); font-size: 0.85rem; }

.testimonial-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
  margin-top: var(--space-7);
}
@media (min-width: 720px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.testimonial-card .stars { color: #ffb400; letter-spacing: 2px; font-size: 0.95rem; }
.testimonial-card p.quote { color: var(--text); font-size: 0.98rem; flex: 1; }
.testimonial-card .who { display: flex; flex-direction: column; font-size: 0.85rem; }
.testimonial-card .who b { color: var(--white); }
.testimonial-card .who span { color: var(--text-faint); }
.testimonial-card.placeholder { border-style: dashed; }
.testimonial-card.placeholder .quote { color: var(--text-faint); font-style: italic; }

/* =========================================================
   Service area
   ========================================================= */
.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
@media (min-width: 640px) { .area-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .area-grid { grid-template-columns: repeat(4, 1fr); } }
.area-chip {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  background: var(--bg-raised);
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.95rem;
}
.area-chip svg { width: 16px; height: 16px; color: var(--red-text-on-dark); flex-shrink: 0; }
.area-chip.primary { border-color: var(--red); }

/* =========================================================
   CTA banner
   ========================================================= */
.cta-banner {
  background: linear-gradient(135deg, #140606, #0a0a0a 60%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: var(--space-9);
  text-align: center;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.8rem, 1.3rem + 2vw, 2.6rem); max-width: 24ch; margin-inline: auto; }
.cta-banner p { color: var(--text-muted); margin-top: var(--space-4); max-width: 50ch; margin-inline: auto; }
.cta-banner .hero-ctas { justify-content: center; margin-top: var(--space-7); }

/* =========================================================
   Booking / lead form
   ========================================================= */
.book-layout {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: 1fr;
}
@media (min-width: 960px) { .book-layout { grid-template-columns: 0.9fr 1.1fr; } }

.book-option {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  background: var(--bg-raised);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.book-option .tag { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; color: var(--red-text-on-dark); }
.book-option h3 { color: var(--white); font-size: 1.15rem; }
.book-option p { color: var(--text-muted); font-size: 0.9rem; }

.form-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-raised);
  padding: var(--space-6);
}
.form-grid { display: grid; gap: var(--space-4); grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: var(--space-2); }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.field label .req { color: var(--red-text-on-dark); }
.field input, .field select, .field textarea {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); }
.field textarea { resize: vertical; min-height: 100px; }
.field-note { color: var(--text-faint); font-size: 0.78rem; }
.photo-upload-bubble {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  border: 1px dashed var(--border-strong);
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.photo-upload-bubble:hover { border-color: var(--red); color: var(--white); }
.photo-upload-bubble svg { width: 16px; height: 16px; flex-shrink: 0; }
.photo-upload-list { margin-top: var(--space-3); display: flex; flex-wrap: wrap; gap: var(--space-2); }
.photo-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  max-width: 100%;
  background: var(--bg-raised-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.3rem 0.5rem 0.3rem 0.85rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.photo-chip span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 160px; }
.photo-chip button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--text-faint);
  font-size: 0.95rem;
  line-height: 1;
}
.photo-chip button:hover { color: var(--red-text-on-dark); background: rgba(255,255,255,0.06); }
.form-card .btn { margin-top: var(--space-5); }
.form-status { margin-top: var(--space-4); font-size: 0.88rem; color: var(--text-muted); display: none; }
.form-status.show { display: block; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding-block: var(--space-8) var(--space-7);
}
.footer-grid {
  display: grid;
  gap: var(--space-7);
  grid-template-columns: 1fr;
}
@media (min-width: 860px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; } }
.footer-brand img { height: 32px; }
.footer-brand p { color: var(--text-faint); font-size: 0.88rem; margin-top: var(--space-4); max-width: 32ch; }
.footer-col h4 { font-family: var(--font-body); color: var(--white); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: var(--space-4); }
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col a { color: var(--text-muted); font-size: 0.92rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--white); }
.social-row { display: flex; gap: var(--space-3); margin-top: var(--space-5); }
.social-row a {
  width: 38px; height: 38px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s var(--ease);
}
.social-row a:hover { color: var(--white); border-color: var(--white); }
.social-row svg { width: 18px; height: 18px; }
.footer-bottom {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  color: var(--text-faint);
  font-size: 0.82rem;
}

/* =========================================================
   Page header (sub-pages)
   ========================================================= */
.page-header {
  padding-block: var(--space-9) var(--space-7);
  border-bottom: 1px solid var(--border);
  background: radial-gradient(circle at 20% 0%, rgba(200,17,22,0.12), transparent 55%);
}
.breadcrumbs { font-size: 0.82rem; color: var(--text-faint); margin-bottom: var(--space-5); }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--white); }
.page-header h1 { color: var(--white); font-size: clamp(2rem, 1.5rem + 2vw, 3.2rem); max-width: 22ch; }
.page-header p.lede { margin-top: var(--space-5); color: var(--text-muted); max-width: 60ch; font-size: 1.05rem; }

.content-block { padding-block: var(--space-9); }
.content-block.tight { padding-block: var(--space-7); }
.content-block.alt { background: var(--bg-raised); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.two-col {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; } }
.two-col img { width: 100%; height: auto; border-radius: var(--radius-md); border: 1px solid var(--border); }
/* Reverse only swaps sides on desktop (media left, text right) for visual rhythm.
   On mobile everything stacks in natural DOM order (text, then media) for both
   sections, so the reading flow never flips between them. */
@media (min-width: 900px) { .two-col.reverse .media { order: -1; } }

.tier-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-6);
  font-size: 0.92rem;
}
.tier-table th, .tier-table td {
  text-align: left;
  padding: var(--space-4);
  border-bottom: 1px solid var(--border);
}
.tier-table th { color: var(--text-faint); font-weight: 600; text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.06em; }
.tier-table td { color: var(--text-muted); }
.tier-table td.name { color: var(--white); font-weight: 600; }
.tier-table td.price { color: var(--white); font-family: var(--font-display); font-weight: 700; white-space: nowrap; }
.table-scroll { overflow-x: auto; }

.process-steps { display: grid; gap: var(--space-6); grid-template-columns: 1fr; margin-top: var(--space-7); }
@media (min-width: 780px) { .process-steps { grid-template-columns: repeat(4, 1fr); } }
.process-step .num {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--red);
  color: var(--red-text-on-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: var(--space-4);
}
.process-step h3 { color: var(--white); font-size: 1.05rem; }
.process-step p { color: var(--text-muted); font-size: 0.9rem; margin-top: var(--space-2); }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding-block: var(--space-5);
}
.faq-item summary {
  cursor: pointer;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--text-faint); }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { color: var(--text-muted); margin-top: var(--space-3); font-size: 0.92rem; max-width: 70ch; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
