/* ==========================================================================
   B's & Dub Auto Detailing — Stylesheet
   Mobile-first (390px primary). Desktop ≥ 1024px.
   ========================================================================== */

:root {
  --black: #0a0a0a;
  --ink: #141414;
  --graphite: #1c1c1c;
  --smoke: #2a2a2a;
  --red: #d4001a;
  --red-dark: #9a0013;
  --red-glow: #ff2a3e;
  --bone: #f5f2ee;
  --paper: #ffffff;
  --muted: #8a8380;
  --line-dark: rgba(255,255,255,0.08);
  --line-light: rgba(20,20,20,0.08);
  --page-bg: #f0eee9;

  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
  --script: "Kaushan Script", "Brush Script MT", cursive;
  --script-amp: "Satisfy", cursive;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--page-bg);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 64px; /* room for sticky mobile bar */
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, select, textarea, input { font-family: inherit; color: inherit; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { margin: 0; font-weight: 500; }
section { position: relative; }

/* ======== Brand lockup (header + footer) ======== */
.brand-lockup {
  display: inline-block;
  color: var(--red);
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.bl-kaushan { font-family: var(--script); font-weight: 400; }
.bl-satisfy {
  font-family: var(--script-amp); font-weight: 400;
  padding: 0 0.22em 0 0.40em;
  display: inline-block;
}

/* ======== Typography helpers ======== */
.mono { font-family: var(--mono); text-transform: uppercase; letter-spacing: 2px; font-weight: 500; }
.mono-sm { font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(245,242,238,0.5); font-weight: 500; }
.mono-label {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  color: var(--red); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 12px;
}
.red { color: var(--red); }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(245,242,238,0.7);
  margin-bottom: 14px;
}
.section-label.light { color: rgba(20,20,20,0.6); }
.section-label .sq {
  width: 8px; height: 8px; background: var(--red); display: inline-block;
}

.section-h2 {
  font-family: var(--serif);
  font-size: 40px; line-height: 1; font-weight: 500;
  letter-spacing: -1px;
  color: var(--bone);
  margin: 14px 0 12px;
}
.section-h2.dark { color: var(--black); }
.section-h2 em { font-style: italic; font-weight: 400; }

/* ======== Buttons ======== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red); color: #fff;
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 16px 28px;
  cursor: pointer; border: none;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  text-align: center;
}
.btn:hover { background: var(--red-dark); }
.btn-small { padding: 10px 18px; font-size: 12px; }
.btn-wide { width: 100%; }
.btn-ghost {
  background: transparent; color: var(--black);
  border: 1px solid rgba(20,20,20,0.3);
  clip-path: none;
  padding: 15px 27px;
  font-weight: 500;
}
.btn-ghost:hover { background: rgba(20,20,20,0.08); }
.btn-ghost.btn-dark { color: var(--bone); border-color: rgba(245,242,238,0.3); }
.btn-ghost.btn-dark:hover { background: rgba(245,242,238,0.08); }

.link-red {
  display: inline-block;
  color: var(--red);
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-top: 14px;
}
.red-link { color: var(--red); }

/* ==========================================================================
   NAV (mobile default: logo + burger; desktop: full nav)
   ========================================================================== */
.nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 50;
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  color: var(--bone);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-mark { width: 48px; height: 48px; object-fit: contain; }
.nav-lockup { display: none; flex-direction: column; line-height: 1; }
.nav-tag {
  font-family: var(--mono); font-size: 9px;
  color: rgba(245,242,238,0.5);
  letter-spacing: 2.5px; text-transform: uppercase; margin-top: 4px;
}
.nav-links { display: none; }
.nav-right { display: none; align-items: center; gap: 14px; }
.nav-phone {
  font-family: var(--mono); font-size: 11px; color: var(--bone); letter-spacing: 1px;
}
.nav-burger {
  background: transparent; border: none; padding: 8px; cursor: pointer;
  display: block;
}
.nav-burger span {
  display: block; width: 24px; height: 2px; background: #fff; margin-bottom: 5px;
}
.nav-burger span:last-child { margin-bottom: 0; }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; left: 0;
  background: var(--black); color: var(--bone);
  z-index: 100;
  padding: 80px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex; flex-direction: column;
  visibility: hidden;
}
.mobile-drawer.open { transform: translateX(0); visibility: visible; }
.drawer-close {
  position: absolute; top: 20px; right: 20px;
  background: transparent; border: none; color: var(--bone);
  font-size: 32px; line-height: 1; cursor: pointer;
  font-family: var(--mono); font-weight: 300;
}
.mobile-drawer nav {
  display: flex; flex-direction: column; gap: 24px;
}
.mobile-drawer nav a {
  font-family: var(--serif); font-size: 32px; font-weight: 500;
  color: var(--bone);
  padding: 4px 0;
}
.drawer-cta {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 12px;
  padding-top: 32px;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  height: 720px;
  background: var(--black);
  overflow: hidden;
  color: var(--bone);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url("https://images.pexels.com/photos/3802510/pexels-photo-3802510.jpeg?w=1200");
  background-size: cover;
  background-position: 62% 60%;
  filter: blur(1.5px) saturate(0.95);
  transform: scale(1.04);
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,10,10,0.96) 0%,
      rgba(10,10,10,0.78) 38%,
      rgba(10,10,10,0.4) 55%,
      rgba(10,10,10,0.78) 78%,
      #0a0a0a 100%),
    radial-gradient(ellipse at 78% 40%, rgba(212,0,26,0.22), transparent 55%),
    radial-gradient(ellipse at 15% 90%, rgba(212,0,26,0.12), transparent 60%);
}
.hero-grain {
  position: absolute; inset: 0;
  opacity: 0.08; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.9  0 0 0 0 0.9  0 0 0 0 0.9  0 0 0 1 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}
.hero-sweep {
  position: absolute; top: 46%; left: -20%; width: 140%; height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), rgba(212,0,26,0.5), rgba(255,255,255,0.2), transparent);
  transform: skewY(-1.5deg);
  filter: blur(0.4px);
}
.hero-mountain {
  position: absolute; left: 0; right: 0; bottom: 260px;
  width: 100%; height: 60px; opacity: 0.35;
}

.hero-content {
  position: absolute; left: 24px; right: 24px; top: 110px;
  z-index: 5;
}
.hero-headline {
  font-family: var(--serif);
  font-size: 44px; line-height: 0.98; font-weight: 500;
  color: var(--bone);
  margin: 16px 0 0;
  letter-spacing: -1.2px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
@media (min-width: 400px) {
  .hero-headline { font-size: 52px; line-height: 0.95; letter-spacing: -1.5px; }
}
.hero-headline em { font-style: italic; font-weight: 400; }
.hero-headline .red { color: var(--red); font-weight: 600; font-style: normal; }
.dt-only { display: none; }
@media (min-width: 1024px) { .dt-only { display: inline; } }

.hero-sub {
  font-family: var(--mono); font-size: 10px; line-height: 1.7;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(245,242,238,0.72); font-weight: 500;
  margin: 22px 0 0; max-width: 300px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
}
.hero-ctas {
  position: absolute; left: 24px; right: 24px; bottom: 100px;
  display: flex; flex-direction: column; gap: 10px;
  z-index: 5;
}
.hero-ctas .btn { width: 100%; }
.hero-ctas-desktop { display: none; }
.hero-stats { display: none; }
.hero-scroll {
  position: absolute; bottom: 56px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 9px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px; text-transform: uppercase;
}
.hero-counter { display: none; }

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee {
  background: var(--red); color: #fff;
  padding: 14px 0; overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
@keyframes bdubMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-track {
  display: flex; gap: 28px; white-space: nowrap; width: max-content;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  animation: bdubMarquee 30s linear infinite;
}
.marquee-track span { flex-shrink: 0; }

/* ==========================================================================
   SECTIONS — generic spacing
   ========================================================================== */
.services, .process, .booking {
  background: var(--black); color: var(--bone);
  position: relative;
}
.gallery, .trust, .about {
  background: var(--bone); color: var(--black);
  position: relative;
}

.services, .gallery, .process, .trust, .booking, .about {
  padding: 64px 24px 56px;
}

.section-head { margin-bottom: 32px; }
.section-aside { display: none; }

/* ==========================================================================
   01 · SERVICES
   ========================================================================== */
.class-legend {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 1px; background: rgba(245,242,238,0.08);
  border: 1px solid rgba(245,242,238,0.08);
  margin-bottom: 20px;
}
.class-legend > div {
  background: var(--black); padding: 12px 10px; text-align: center;
}
.class-legend > div > div:first-child {
  font-family: var(--mono); font-size: 9px;
  color: rgba(245,242,238,0.5); letter-spacing: 1.5px; text-transform: uppercase;
}
.class-legend > div > div:last-child {
  font-size: 12px; font-weight: 500; color: var(--bone); margin-top: 2px;
}

.services-headers { display: none; }

.services-list { border-top: 1px solid var(--line-dark); }
.service {
  border-bottom: 1px solid var(--line-dark);
  position: relative;
}
.service.featured { background: rgba(212,0,26,0.04); }
.flagship-badge {
  position: absolute; top: 0; right: 0; z-index: 2;
  background: var(--red); color: #fff;
  font-family: var(--mono); font-size: 8px; font-weight: 600;
  padding: 3px 8px; letter-spacing: 1.5px; text-transform: uppercase;
}
.service-head {
  width: 100%; background: transparent; border: none;
  padding: 20px 0; color: inherit; cursor: pointer;
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; text-align: left;
}
.service-info { flex: 1; }
.service-tag {
  font-family: var(--mono); font-size: 9px; color: var(--red);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; font-weight: 500;
}
.service-name {
  font-family: var(--serif); font-size: 19px; font-weight: 500; line-height: 1.2;
  color: var(--bone);
}
.service-preview {
  font-size: 12px; color: rgba(245,242,238,0.5); margin-top: 6px;
}
.service-prices {
  display: none; /* desktop-only table columns */
}
.service-toggle {
  font-family: var(--mono); font-size: 16px;
  color: rgba(245,242,238,0.4); flex-shrink: 0; margin-top: 6px;
  transition: transform 0.2s, color 0.2s;
}
.service[data-open="true"] .service-toggle {
  transform: rotate(45deg); color: var(--red);
}
.service[data-open="true"] .service-preview { display: none; }

.service-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.32s ease;
}
.service-body.open { max-height: 520px; }
.service-body > * { margin-bottom: 14px; }
.service-body > *:last-child { margin-bottom: 0; }
.service-body p {
  font-size: 13px; line-height: 1.55;
  color: rgba(245,242,238,0.75);
  margin: 0 0 16px;
}
.service-price-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px;
  background: var(--line-dark);
  margin: 0 0 14px;
}
.service-price-grid > div {
  background: var(--black); padding: 12px 8px; text-align: center;
}
.service-price-grid .mono-sm { margin-bottom: 4px; color: rgba(245,242,238,0.4); font-size: 8px; letter-spacing: 1.5px; }
.service-price-grid .price {
  font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--bone);
}
.service-price-from {
  display: flex; align-items: baseline; gap: 10px;
  padding: 8px 0;
}
.service-price-from .mono-sm { color: rgba(245,242,238,0.5); font-size: 9px; }
.service-price-from .price {
  font-family: var(--serif); font-size: 32px; font-weight: 500; color: var(--bone);
}
.service-body { padding: 0 0 22px; }
.service-body.open { padding: 0 0 22px; }
.service-body:not(.open) { padding: 0; }

/* Add-ons + note */
.services-bottom {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.addons .mono-label { margin-bottom: 14px; }
.addons-list {
  border: 1px solid var(--line-dark);
}
.addons-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 13px;
}
.addons-list li:last-child { border-bottom: none; }
.addons-list li > span:first-child { color: rgba(245,242,238,0.85); }
.addon-price {
  font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--bone);
}
.services-note {
  border-left: 2px solid var(--red);
  padding: 4px 0 4px 14px;
}
.services-note p {
  font-family: var(--serif); font-size: 18px; line-height: 1.4;
  color: var(--bone); font-style: italic;
  margin: 0 0 16px;
}

/* ==========================================================================
   02 · GALLERY
   ========================================================================== */
.gallery-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.gallery-tile {
  position: relative; margin: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--ink);
}
.gallery-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-tile:hover img { transform: scale(1.04); }
.gallery-tile::after {
  content: "";
  position: absolute; top: 0; right: 0; width: 3px; height: 100%;
  background: var(--red);
}
.gallery-tile figcaption {
  position: absolute; bottom: 8px; left: 8px; right: 8px;
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

/* ==========================================================================
   03 · PROCESS
   ========================================================================== */
.process-steps {
  position: relative;
  padding-left: 0;
}
.process-steps::before {
  content: "";
  position: absolute; left: 20px; top: 20px; bottom: 20px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--red) 20%, var(--red) 80%, transparent);
  opacity: 0.35;
}
.step {
  display: flex; gap: 20px; padding: 18px 0;
  position: relative;
}
.step-n {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid var(--red);
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 16px; font-weight: 500;
  color: var(--red);
  position: relative; z-index: 2;
}
.step-name {
  font-family: var(--serif); font-size: 20px; font-weight: 500;
  margin-bottom: 4px;
}
.step-desc {
  font-size: 13px; line-height: 1.55;
  color: rgba(245,242,238,0.6);
}

/* ==========================================================================
   04 · TRUST
   ========================================================================== */
.trust { padding: 56px 24px; }
.trust-grid { display: block; }
.rating-card {
  margin: 20px -24px 0;
  padding: 20px 24px;
  background: var(--black); color: var(--bone);
  display: flex; align-items: center; gap: 18px;
}
.rating-n { font-family: var(--serif); font-size: 44px; font-weight: 500; line-height: 1; }
.rating-stars { color: var(--red); font-size: 14px; letter-spacing: 2px; margin-top: 2px; }
.rating-divider { height: 44px; width: 1px; background: rgba(245,242,238,0.2); }
.rating-label {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--bone);
}
.rating-sub {
  font-family: var(--mono); font-size: 10px;
  color: rgba(245,242,238,0.6); margin-top: 4px; letter-spacing: 1px;
}

.trust-right { padding-top: 24px; }
.review {
  padding: 18px 0;
  border-bottom: 1px solid rgba(20,20,20,0.1);
}
.review:last-child { border-bottom: none; }
.review-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.stars { color: var(--red); font-size: 12px; letter-spacing: 1px; }
.review p {
  font-family: var(--serif); font-size: 15px; line-height: 1.5;
  color: var(--black); font-style: italic; margin: 0 0 8px;
}
.review-author {
  font-size: 11px; font-weight: 600; color: rgba(20,20,20,0.6);
  letter-spacing: 1px; text-transform: uppercase;
}
.review .mono-sm { color: rgba(20,20,20,0.4); }

.badges {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-top: 24px;
}
.badge {
  border: 1px solid var(--black); padding: 14px 10px; text-align: center;
  font-size: 11px; font-weight: 600; color: var(--black);
  letter-spacing: 1px; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.badge-check {
  width: 24px; height: 24px; border: 1.5px solid var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--red);
}

/* ==========================================================================
   05 · BOOKING
   ========================================================================== */
.booking-glow {
  position: absolute; top: -40px; right: -20px;
  width: 200px; height: 200px;
  background: linear-gradient(135deg, transparent 50%, rgba(212,0,26,0.08) 50%);
  pointer-events: none;
}
.booking-grid { display: block; position: relative; }
.booking-intro {
  font-size: 14px; line-height: 1.6;
  color: rgba(245,242,238,0.6); margin: 0 0 24px;
}
.call-card {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: var(--red); color: #fff;
  padding: 20px; margin-bottom: 24px;
}
.call-label {
  font-family: var(--mono); font-size: 9px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; opacity: 0.85;
}
.call-number {
  font-family: var(--serif); font-size: 28px; font-weight: 500;
  margin-top: 2px; letter-spacing: -0.5px;
}
.call-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}

.booking-detail {
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
}
.booking-addr {
  font-family: var(--serif); font-size: 20px; line-height: 1.4;
}
.booking-email { font-size: 15px; }

.booking-form {
  margin-top: 32px;
  background: rgba(245,242,238,0.02);
  border: 1px solid var(--line-dark);
  padding: 24px;
}
.booking-form .mono-label { margin-bottom: 20px; }

.form-field { margin-bottom: 14px; }
.form-label {
  display: block;
  font-family: var(--mono); font-size: 9px;
  color: rgba(245,242,238,0.5);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 8px; font-weight: 500;
}
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%;
  background: rgba(245,242,238,0.04);
  border: 1px solid var(--line-dark);
  padding: 14px;
  font-family: var(--sans); font-size: 14px;
  color: var(--bone);
  border-radius: 0;
  outline: none;
  transition: border-color 0.15s;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
  border-color: var(--red);
}
.booking-form input::placeholder, .booking-form textarea::placeholder {
  color: rgba(245,242,238,0.4);
}
.booking-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'><path d='M3 5 L7 9 L11 5' fill='none' stroke='%23d4001a' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.booking-form textarea { resize: vertical; min-height: 90px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-row.three { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-row.three .wide { grid-column: 1 / -1; }

.honeypot {
  position: absolute !important; left: -9999px !important;
  width: 1px !important; height: 1px !important;
  opacity: 0 !important; pointer-events: none;
}

.form-note {
  margin-top: 14px; text-align: center;
  color: rgba(245,242,238,0.45);
  font-family: var(--sans); font-size: 11px; line-height: 1.5;
  text-transform: none; letter-spacing: 0;
  font-weight: 400;
}
.form-status {
  margin-top: 14px; font-size: 13px; line-height: 1.5;
  padding: 12px; text-align: center;
  display: none;
}
.form-status.success {
  display: block; color: var(--bone); background: rgba(212,0,26,0.14); border: 1px solid var(--red);
}
.form-status.error {
  display: block; color: #ff5c70; background: rgba(212,0,26,0.08); border: 1px solid rgba(212,0,26,0.4);
}

/* ==========================================================================
   06 · ABOUT
   ========================================================================== */
.about-grid { display: block; }
.about-media { margin: 24px 0 28px; }
.about-hero {
  width: 100%; height: 220px; object-fit: cover;
}
.about-quote {
  font-family: var(--serif); font-size: 20px; line-height: 1.45;
  color: var(--black); font-style: italic; font-weight: 400;
  margin: 0 0 18px; padding: 0; border: 0;
}
.about-cite {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  color: rgba(20,20,20,0.6);
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 28px;
}
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(20,20,20,0.1);
  border: 1px solid rgba(20,20,20,0.1);
}
.about-stats > div { background: var(--bone); padding: 16px 12px; text-align: center; }
.stat-n-lg {
  font-family: var(--serif); font-size: 28px; font-weight: 500;
  color: var(--black); line-height: 1;
}
.stat-l-lg {
  font-family: var(--mono); font-size: 9px; font-weight: 500;
  color: var(--red);
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-top: 4px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #050505; color: var(--bone);
  padding: 48px 24px 32px;
}
.footer-grid {
  display: flex; flex-direction: column; gap: 28px;
  margin-bottom: 32px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-mark { width: 80px; height: 80px; object-fit: contain; }
.footer-lockup .brand-lockup { font-size: 22px; }
.footer-tagline {
  font-size: 13px; line-height: 1.6;
  color: rgba(245,242,238,0.6);
  margin: 0; max-width: 280px;
}
.footer-block > div:not(.mono-label) {
  font-size: 13px; line-height: 1.6;
  color: rgba(245,242,238,0.7);
}
.footer-block a {
  color: rgba(245,242,238,0.7);
  border-bottom: 1px dotted transparent;
}
.footer-block a:hover { border-bottom-color: rgba(245,242,238,0.3); }
.footer-block .red-link { color: var(--red); border-color: transparent; }

.footer-map {
  display: block; position: relative;
  height: 180px; overflow: hidden;
  background: #0f0f0f;
  border: 1px solid var(--line-dark);
}
.footer-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.footer-map-label {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  font-family: var(--mono); font-size: 9px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1.5px; text-transform: uppercase;
}

.footer-legal {
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--mono); font-size: 9px;
  color: rgba(245,242,238,0.4);
  letter-spacing: 1.5px; text-transform: uppercase;
}

/* ==========================================================================
   STICKY BAR (mobile only)
   ========================================================================== */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: var(--black);
  border-top: 1px solid var(--red);
  display: grid; grid-template-columns: 1fr 1fr;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  height: 56px;
}
.sticky-call, .sticky-book {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--bone);
}
.sticky-call { border-right: 1px solid rgba(245,242,238,0.08); }
.sticky-icon { color: var(--red); font-size: 14px; }
.sticky-book { background: var(--red); color: #fff; }
.sticky-book:hover { background: var(--red-dark); }

/* ==========================================================================
   TABLET (768–1023)
   ========================================================================== */
@media (min-width: 768px) {
  .services, .gallery, .process, .trust, .booking, .about {
    padding-left: 40px; padding-right: 40px;
  }
  .nav { padding: 20px 40px; }
  .hero-content { left: 40px; right: 40px; }
  .hero-ctas { left: 40px; right: 40px; flex-direction: row; width: auto; }
  .hero-ctas .btn { width: auto; }
  .hero-headline { font-size: 68px; letter-spacing: -2px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .badges { grid-template-columns: repeat(4, 1fr); }
  .about-stats { grid-template-columns: repeat(4, 1fr); }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  }
  .about-media { margin: 0; }
  .about-hero { height: 400px; }
}

/* ==========================================================================
   DESKTOP (≥ 1024)
   ========================================================================== */
@media (min-width: 1024px) {
  body { padding-bottom: 0; }
  .sticky-bar { display: none; }
  .nav-burger { display: none; }
  .nav { padding: 24px 56px; gap: 24px; }
  .nav-mark { width: 64px; height: 64px; }
  .nav-lockup { display: flex; }
  .nav-lockup .brand-lockup { font-size: 22px; }
  .nav-links { display: flex; gap: 32px; }
  .nav-links a {
    font-family: var(--sans); font-size: 12px; font-weight: 500;
    color: var(--bone); letter-spacing: 1.5px; text-transform: uppercase;
  }
  .nav-links a:hover { color: var(--red); }
  .nav-right { display: flex; }

  /* HERO */
  .hero { height: 820px; }
  .hero-bg {
    background-image: url("https://images.pexels.com/photos/3802510/pexels-photo-3802510.jpeg?w=1800");
    background-position: 70% center;
    filter: none; transform: none;
  }
  .hero-gradient {
    background:
      linear-gradient(90deg, #0a0a0a 0%, rgba(10,10,10,0.92) 28%, rgba(10,10,10,0.55) 48%, rgba(10,10,10,0.15) 68%, transparent 100%),
      radial-gradient(ellipse at 80% 40%, rgba(212,0,26,0.14), transparent 60%);
  }
  .hero-mountain, .hero-sweep { display: none; }
  .hero-content {
    left: 56px; right: auto; top: 180px;
    width: 640px;
  }
  .hero-headline {
    font-size: 108px; line-height: 0.92; letter-spacing: -3px;
    white-space: normal;
  }
  .hero-sub {
    font-size: 11px; letter-spacing: 2.5px;
    max-width: 480px; margin-top: 32px;
    color: rgba(245,242,238,0.7);
  }
  .hero-ctas { display: none; }
  .hero-ctas-desktop {
    display: flex; flex-direction: row; gap: 14px; margin-top: 36px;
  }
  .hero-ctas-desktop .btn { width: auto; }
  .hero-stats {
    display: flex; gap: 40px; margin-top: 64px; padding-top: 24px;
    border-top: 1px solid rgba(245,242,238,0.12);
  }
  .stat-n {
    font-family: var(--serif); font-size: 28px; font-weight: 500;
    color: var(--bone); line-height: 1;
  }
  .stat-l {
    font-family: var(--mono); font-size: 9px;
    color: var(--red); letter-spacing: 1.5px; text-transform: uppercase;
    margin-top: 6px;
  }
  .hero-scroll { bottom: 28px; letter-spacing: 2.5px; }
  .hero-counter {
    display: block;
    position: absolute; bottom: 28px; right: 56px;
    font-family: var(--mono); font-size: 9px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2.5px; text-transform: uppercase;
  }

  /* MARQUEE */
  .marquee { padding: 16px 0; }
  .marquee-track {
    gap: 40px; font-size: 12px; letter-spacing: 2.5px;
    animation-duration: 40s;
  }

  /* SECTIONS */
  .services, .process, .booking, .trust, .gallery, .about {
    padding: 120px 56px 100px;
  }
  .section-head {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 60px; gap: 60px;
  }
  .section-aside {
    display: block;
    max-width: 380px; padding-bottom: 12px;
    font-size: 15px; line-height: 1.6;
    color: rgba(245,242,238,0.65);
    margin: 0;
  }
  .gallery .section-aside,
  .about .section-aside,
  .trust .section-aside { color: rgba(20,20,20,0.65); }
  .section-h2 { font-size: 80px; line-height: 0.95; letter-spacing: -2px; }
  .booking .section-h2 { font-size: 72px; letter-spacing: -1.8px; }
  .trust .section-h2 { font-size: 64px; letter-spacing: -1.5px; }
  .about .section-h2 { font-size: 72px; letter-spacing: -1.8px; }

  /* SERVICES as table */
  .class-legend { display: none; }
  .services-headers {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 60px;
    padding: 18px 0;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    align-items: center;
  }
  .services-headers > div { font-size: 10px; letter-spacing: 2px; font-family: var(--mono); }
  .services-headers > div:nth-child(n+2):nth-child(-n+4) { text-align: center; }

  .services-list { border-top: none; }
  .service { padding: 0; background: transparent; }
  .service-head {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 60px;
    gap: 0; align-items: center;
    padding: 22px 0;
    cursor: default;
  }
  .service.featured { background: rgba(212,0,26,0.03); padding: 0 12px; }
  .service.featured .service-head { padding-left: 0; padding-right: 0; }
  .service-preview { display: none; }
  .service-name { font-size: 22px; }
  .service-info { max-width: 380px; }
  /* Inject description via data-desc attribute (desktop only) */
  .service-info::after {
    content: attr(data-desc);
    display: block;
    font-size: 12px; line-height: 1.5;
    color: rgba(245,242,238,0.55); margin-top: 6px;
  }
  .service-prices { display: contents; }
  .service-prices > span {
    font-family: var(--serif); font-size: 22px; font-weight: 500; text-align: center;
    color: var(--bone);
  }
  .service-prices.single > span { display: none; }
  .service-prices.single > .from-label {
    display: inline; grid-column: 2 / 5; text-align: center;
    font-family: var(--mono); font-size: 10px; color: rgba(245,242,238,0.6);
    letter-spacing: 2px; text-transform: uppercase; margin-right: 10px;
    align-self: baseline;
  }
  .service-prices.single > span:last-child {
    display: inline; grid-column: 2 / 5; text-align: center;
    font-family: var(--serif); font-size: 26px; font-weight: 500; color: var(--bone);
  }
  .service-prices.single {
    grid-column: 2 / 5;
    display: flex; justify-content: center; align-items: baseline; gap: 12px;
  }
  /* Desktop: replace accordion behavior — hide toggle + expansion body */
  .service-toggle { display: none; }
  .service-body { display: none; }
  .service[data-open="true"] .service-body { display: none; }
  /* Arrow on the right (non-interactive) */
  .service-head::after {
    content: "→";
    color: var(--red); font-size: 18px; text-align: right;
    font-family: var(--mono);
  }

  .services-bottom {
    grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px;
  }
  .services-note { align-self: center; padding-left: 20px; }
  .services-note p { font-size: 22px; margin-bottom: 24px; }

  /* GALLERY */
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .gallery-tile { aspect-ratio: 4 / 3; }
  .gallery-tile figcaption {
    font-family: var(--serif); font-size: 15px; font-weight: 500;
    bottom: 12px; left: 12px; right: 12px;
  }

  /* PROCESS */
  .process-steps {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
    position: relative;
    padding-top: 0;
  }
  .process-steps::before {
    position: absolute; top: 32px; left: 0; right: 0; bottom: auto;
    height: 1px; width: auto;
    background: linear-gradient(90deg, transparent, var(--red), var(--red), transparent);
    opacity: 0.4;
  }
  .step {
    flex-direction: column; display: block; padding: 0; position: relative;
  }
  .step-n {
    width: 64px; height: 64px; font-size: 22px;
    margin-bottom: 24px;
  }
  .step-name { font-size: 24px; }
  .step-desc { font-size: 14px; line-height: 1.6; }

  /* TRUST */
  .trust-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  }
  .rating-card { margin: 20px 0 32px; padding: 24px 28px; gap: 24px; }
  .rating-n { font-size: 56px; }
  .rating-stars { font-size: 16px; letter-spacing: 3px; margin-top: 4px; }
  .rating-divider { height: 56px; }
  .rating-label { font-size: 13px; letter-spacing: 2px; }
  .trust-right { padding: 0; }
  .review {
    padding: 24px 0;
    border-top: 1px solid rgba(20,20,20,0.15);
    border-bottom: none;
  }
  .review:last-child { border-bottom: 1px solid rgba(20,20,20,0.15); }
  .review p { font-size: 20px; line-height: 1.5; margin-bottom: 12px; }
  .badges {
    grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 0;
  }
  .badge {
    flex-direction: row; align-items: center; gap: 12px;
    padding: 20px 14px; font-size: 12px;
  }
  .badge-check { width: 28px; height: 28px; font-size: 12px; }

  /* BOOKING */
  .booking-glow {
    top: -200px; right: -100px; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212,0,26,0.15), transparent 70%);
  }
  .booking-grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start;
  }
  .booking-intro { font-size: 15px; margin-bottom: 40px; max-width: 400px; }
  .call-card { padding: 28px; margin-bottom: 24px; }
  .call-number { font-size: 44px; letter-spacing: -1px; }
  .booking-detail { padding: 20px 0; }
  .booking-detail .booking-addr { font-size: 20px; }
  .booking-form { margin-top: 0; padding: 36px; }
  .form-row.two { gap: 14px; }
  .form-row.three { grid-template-columns: 1fr 1fr 1.5fr; gap: 14px; }
  .form-row.three .wide { grid-column: auto; }
  .booking-form textarea { min-height: 110px; padding: 16px; }

  /* ABOUT */
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .about-quote { font-size: 22px; line-height: 1.5; margin-bottom: 24px; }
  .about-cite { font-size: 12px; letter-spacing: 2px; margin-bottom: 36px; }
  .about-stats {
    grid-template-columns: repeat(2, 1fr); margin-bottom: 0;
  }
  .about-stats > div { padding: 24px 18px; text-align: left; }
  .stat-n-lg { font-size: 38px; }
  .stat-l-lg { font-size: 10px; letter-spacing: 2px; margin-top: 6px; }
  .about-hero { height: 520px; }

  /* FOOTER */
  .footer { padding: 80px 56px 32px; }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
    gap: 48px; margin-bottom: 60px;
  }
  .footer-mark { width: 110px; height: 110px; }
  .footer-lockup .brand-lockup { font-size: 26px; }
  .footer-legal {
    flex-direction: row; justify-content: space-between; align-items: center;
    font-size: 10px; letter-spacing: 2px;
    padding-top: 24px;
  }
  .footer-map { height: 150px; }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .gallery-tile img { transition: none; }
  html { scroll-behavior: auto; }
}
