/* ============================================================
   PG ELITE CUSTOMS — STYLESHEET
   Palette: black / vivid red / shiny gold / off-white
   Display font: Michroma · Body font: Inter
   ============================================================ */

:root {
  --bg: #F4F3F0;
  --bg-soft: #ECEBE6;
  --ink: #111110;
  --ink-soft: #55544F;
  --black: #0A0A0A;
  --card-black: #101010;
  --line: rgba(17, 17, 16, 0.14);
  --line-dark: rgba(255, 255, 255, 0.14);

  --red: #E8290C;
  --red-bright: #FF2D00;
  --red-deep: #8F1000;
  --red-ink: #B71E07;
  --red-grad: linear-gradient(135deg, #FF3D0E 0%, #D31F03 38%, #7E0F00 72%, #2B0400 100%);
  --red-grad-v: linear-gradient(180deg, #FF3D0E 0%, #C51D03 45%, #4A0800 88%, #160200 100%);

  --gold: #D9A441;
  --gold-soft: #E8C15C;
  --gold-ink: #8A6A1F;
  --gold-grad: linear-gradient(110deg, #8A6410 0%, #D9A441 30%, #F7E27E 50%, #D9A441 70%, #8A6410 100%);

  --white: #FFFFFF;
  --paper: #FBFAF8;

  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 10px 30px rgba(10, 10, 10, 0.08);
  --shadow-lg: 0 24px 60px rgba(10, 10, 10, 0.16);

  --font-display: "Michroma", "Trebuchet MS", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --header-h: 74px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
html:has(.modal.open), html:has(.drawer.open) { overflow: hidden; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 16px; }

h1, h2, h3, h4 { line-height: 1.18; margin: 0 0 0.5em; }
p { margin: 0 0 1em; }

.container { width: min(1200px, 92vw); margin-inline: auto; }
[id] { scroll-margin-top: calc(var(--header-h) + 12px); }
.section { padding-block: clamp(64px, 9vw, 118px); position: relative; }
.section-tight { padding-block: clamp(40px, 6vw, 72px); }

.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip: rect(0 0 0 0); clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

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

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 300;
  background: var(--black); color: #fff; padding: 12px 20px; border-radius: 999px;
  text-decoration: none; transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

/* ---------- Typography helpers ---------- */
.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 400;
}
.h-section {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.4vw, 3.1rem);
  text-transform: none;
  letter-spacing: 0.02em;
  text-align: center;
  margin: 18px auto 14px;
  max-width: 22ch;
}
.h-sub {
  text-align: center; color: var(--ink-soft);
  max-width: 58ch; margin: 0 auto;
}
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* Section badge pill */
.badge-row { display: flex; justify-content: center; }
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.55);
}
.badge .dot {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--red-grad); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-left: -8px;
}
.badge .dot svg { width: 14px; height: 14px; }
.on-dark .badge { border-color: var(--line-dark); color: #CFCEC8; background: rgba(255,255,255,0.06); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  border: 0; border-radius: 999px; text-decoration: none;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em;
  padding: 8px 8px 8px 22px; min-height: 52px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn:active { transform: translateY(0) scale(0.99); }
.btn .disc {
  width: 38px; height: 38px; border-radius: 50%; flex: 0 0 38px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.25s ease;
}
.btn:hover .disc { transform: rotate(45deg); }
.btn .disc svg { width: 16px; height: 16px; }

.btn-light { background: #fff; color: var(--black); box-shadow: var(--shadow); }
.btn-light .disc { background: var(--black); color: #fff; }
.btn-dark { background: var(--black); color: #fff; }
.btn-dark .disc { background: #fff; color: var(--black); }
.btn-red { background: var(--red-grad); color: #fff; }
.btn-red .disc { background: #fff; color: var(--red-deep); }
.btn-gold { background: var(--gold-grad); color: #241A05; }
.btn-gold .disc { background: var(--black); color: var(--gold-soft); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line); padding-right: 22px;
}
.btn-ghost:hover { border-color: var(--ink); }
.on-dark .btn-ghost { color: #fff; border-color: var(--line-dark); }
.on-dark .btn-ghost:hover { border-color: #fff; }
.btn-sm { min-height: 44px; padding: 6px 6px 6px 18px; font-size: 0.88rem; }
.btn-sm .disc { width: 32px; height: 32px; flex-basis: 32px; }
.btn-plain { padding-right: 22px; }
.btn[disabled] { opacity: 0.5; pointer-events: none; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 120;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.header.scrolled { background: rgba(244, 243, 240, 0.88); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img {
  height: 52px; width: 52px; object-fit: cover; border-radius: 14px;
  background: var(--black);
}
.brand-name {
  font-family: var(--font-display); font-size: 0.86rem; letter-spacing: 0.08em; line-height: 1.3;
}
.brand-name small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.24em; color: var(--gold-ink); text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  text-decoration: none; font-weight: 600; font-size: 0.94rem;
  color: var(--ink-soft); padding: 10px 14px; border-radius: 999px;
  transition: color 0.15s, background 0.15s;
}
.nav a:hover, .nav a.active { color: var(--ink); background: rgba(10, 10, 10, 0.06); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.92rem; text-decoration: none; color: var(--ink);
}
.header-phone svg { width: 17px; height: 17px; color: var(--red-ink); }
.header-phone:hover { color: var(--red-ink); }

.menu-btn {
  display: none; width: 48px; height: 48px; border-radius: 14px;
  border: 1.5px solid var(--line); background: transparent;
  align-items: center; justify-content: center; color: var(--ink);
}
.menu-btn svg { width: 22px; height: 22px; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200; background: var(--black); color: #fff;
  display: flex; flex-direction: column; padding: 20px 24px 40px;
  visibility: hidden;
  transform: translateY(-102%);
  transition: transform 0.35s cubic-bezier(0.7, 0, 0.2, 1), visibility 0s 0.35s;
}
.mobile-menu.open { visibility: visible; transform: translateY(0); transition-delay: 0s; }
.mobile-menu .top { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; margin-top: 8vh; }
.mobile-menu nav a {
  font-family: var(--font-display); font-size: clamp(1.5rem, 6.5vw, 2.2rem);
  color: #fff; text-decoration: none; padding: 10px 0;
  border-bottom: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu nav a small { font-family: var(--font-body); font-size: 0.8rem; color: var(--gold-soft); letter-spacing: 0.1em; }
.mobile-menu .actions { margin-top: auto; display: grid; gap: 12px; }
.mobile-menu .menu-email {
  text-align: center; color: #B9B8B2; font-size: 0.92rem; font-weight: 600;
  text-decoration: none; padding: 8px; min-height: 44px; display: flex;
  align-items: center; justify-content: center;
}
.mobile-menu .menu-email:hover { color: var(--gold-soft); }

/* ---------- Hero ---------- */
.hero { padding-top: calc(var(--header-h) + clamp(18px, 4vw, 44px)); overflow: clip; }
.hero-badge-row { display: flex; justify-content: center; margin-bottom: clamp(10px, 2vw, 22px); }

.hero-title {
  display: block;
  font-family: var(--font-display);
  /* safe base size (uppercase Michroma ≈ 10.8em wide); the data-fit script
     then scales it to fill the container edge-to-edge exactly */
  font-size: clamp(2.3rem, 8vw, 6.9rem);
  letter-spacing: 0.005em;
  line-height: 0.98;
  text-align: center; text-transform: uppercase;
  margin: 0 0 6px; white-space: nowrap;
}
.hero-title .row, .footer-word .row { display: inline-block; white-space: inherit; }
.hero-tagline {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(0.62rem, 1.6vw, 1rem);
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: clamp(18px, 3vw, 30px);
}

/* Marquee */
.marquee {
  overflow: hidden; padding-block: 6px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; gap: 12px; width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee-track .chunk { display: flex; gap: 12px; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.tag {
  flex: 0 0 auto;
  border: 1px solid var(--line); border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  padding: 9px 18px; font-size: 0.85rem; font-weight: 600; color: var(--ink-soft);
  white-space: nowrap;
}
.tag svg { width: 12px; height: 12px; color: var(--red); vertical-align: -1px; margin-right: 6px; }

/* Hero red card */
.hero-card-wrap { margin-top: clamp(26px, 5vw, 56px); }
.hero-card {
  background: var(--red-grad);
  border-radius: calc(var(--radius) + 6px);
  color: #fff;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(20px, 4vw, 48px);
  padding: clamp(26px, 4.5vw, 56px);
  position: relative;
  box-shadow: var(--shadow-lg);
}
.hero-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-stats { display: flex; gap: clamp(22px, 4vw, 54px); flex-wrap: wrap; margin-bottom: 20px; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 3.6rem); line-height: 1;
  display: flex; align-items: baseline; gap: 4px;
}
.stat .num .unit { font-size: 0.45em; color: var(--gold-soft); }
.stat .lbl {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85); margin-top: 8px;
}
.hero-copy { max-width: 46ch; color: rgba(255, 255, 255, 0.94); font-size: 1.02rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

.hero-media { position: relative; min-height: 280px; }
.hero-media .frame {
  position: absolute; inset: clamp(-70px, -8vw, -34px) 0 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-chip {
  position: absolute; z-index: 2;
  background: rgba(10, 10, 10, 0.82); backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff; border-radius: 16px; padding: 10px 16px;
  font-size: 0.8rem; font-weight: 700; display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow);
}
.hero-chip .stars { color: var(--gold-soft); letter-spacing: 2px; font-size: 0.85rem; }
.hero-chip.tl { top: clamp(-50px, -5vw, -14px); left: -10px; }
.hero-chip.br { bottom: 18px; right: -8px; }

/* Trust strip */
.trust-strip { margin-top: clamp(30px, 5vw, 48px); border-block: 1px solid var(--line); }
.trust-strip .container {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 26px;
  padding-block: 18px;
}
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.9rem; color: var(--ink-soft); }
.trust-item svg { width: 18px; height: 18px; color: var(--gold-ink); flex: 0 0 auto; }

/* ---------- Vehicle picker ---------- */
.veh-seg {
  display: inline-flex; gap: 4px; padding: 5px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  box-shadow: var(--shadow);
}
.veh-seg button {
  border: 0; background: transparent; border-radius: 999px;
  padding: 10px 20px; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.04em;
  color: var(--ink-soft); display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, color 0.2s;
  min-height: 44px;
}
.veh-seg button svg { width: 26px; height: 16px; }
.veh-seg button.active { background: var(--black); color: #fff; }
.veh-seg button:not(.active):hover { color: var(--ink); }
.veh-note { text-align: center; font-size: 0.85rem; color: var(--ink-soft); margin-top: 10px; }

/* ---------- Services bento ---------- */
.bento { display: grid; gap: 18px; margin-top: clamp(30px, 5vw, 52px); }
.bento-row { display: grid; grid-template-columns: 1.5fr 1fr; gap: 18px; }
.bento-row.rev { grid-template-columns: 1fr 1.5fr; }
.bento-media {
  border-radius: var(--radius); overflow: hidden; position: relative; min-height: 300px;
  box-shadow: var(--shadow);
}
.bento-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1); }
.bento-media:hover img { transform: scale(1.045); }
.bento-text {
  border-radius: var(--radius); padding: clamp(24px, 3vw, 40px);
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  min-height: 300px; position: relative; overflow: hidden;
}
.bento-text h3 { font-family: var(--font-display); font-size: clamp(1.15rem, 2.1vw, 1.6rem); letter-spacing: 0.03em; margin: 0; }
.bento-text p { color: inherit; opacity: 0.85; margin: 0; }
.bento-text .btn { margin-top: auto; }
.bento-text.card-black { background: var(--card-black); color: #fff; }
.bento-text.card-red { background: var(--red-grad); color: #fff; }
.bento-text .ghost-num {
  position: absolute; right: 14px; top: 2px;
  font-family: var(--font-display); font-size: 5rem; opacity: 0.08; pointer-events: none;
}

/* ---------- Why choose us ---------- */
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: clamp(34px, 5vw, 58px); align-items: start;
}
.why-card { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 3 / 4.1; }
.why-card:nth-child(2) { margin-top: 46px; }
.why-card:nth-child(3) { margin-top: 12px; }
.why-card:nth-child(4) { margin-top: 58px; }
.why-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1); }
.why-card:hover img { transform: scale(1.05); }
.why-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 42%, rgba(0, 0, 0, 0.78) 100%);
}
.why-label {
  position: absolute; z-index: 2; left: 18px; right: 18px; bottom: 16px;
  color: #fff; font-family: var(--font-display); font-size: clamp(0.95rem, 1.6vw, 1.25rem);
  letter-spacing: 0.04em; line-height: 1.35;
}
.why-caption {
  position: absolute; z-index: 2; left: 14px; right: 14px; bottom: 64px;
  background: rgba(250, 250, 248, 0.9); backdrop-filter: blur(6px);
  color: var(--ink); border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 600; padding: 10px 14px;
}
.why-icon {
  position: absolute; z-index: 2; top: 14px; left: 14px;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(250, 250, 248, 0.92); color: var(--red-ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.why-icon svg { width: 20px; height: 20px; }

/* ---------- How it works ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: clamp(34px, 5vw, 54px); }
.step-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; position: relative;
}
.step-card .n {
  font-family: var(--font-display); font-size: 1rem;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--black); color: var(--gold-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.step-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; }
.step-card p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }
.guarantee-bar {
  margin-top: 26px;
  background: var(--card-black); color: #fff; border-radius: var(--radius);
  padding: 22px 28px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  border: 1px solid rgba(217, 164, 65, 0.4);
}
.guarantee-bar svg { width: 34px; height: 34px; color: var(--gold-soft); flex: 0 0 auto; }
.guarantee-bar strong { font-family: var(--font-display); letter-spacing: 0.04em; font-weight: 400; }
.guarantee-bar span { color: #CFCEC8; }

/* ---------- Pricing ---------- */
.pricing-head { position: sticky; top: var(--header-h); z-index: 60; padding-block: 12px; margin-top: 26px;
  display: flex; justify-content: center; }
.pricing-head .veh-seg { backdrop-filter: blur(10px); }

.price-service { margin-top: clamp(34px, 5vw, 60px); }
.price-service-title {
  font-family: var(--font-display); font-size: clamp(1.2rem, 2.6vw, 1.9rem);
  text-align: center; letter-spacing: 0.05em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 8px;
}
.price-service-title::before, .price-service-title::after {
  content: ""; height: 1px; width: clamp(30px, 8vw, 110px); background: var(--line);
}
.price-service-sub { text-align: center; color: var(--ink-soft); font-size: 0.95rem; max-width: 60ch; margin: 0 auto 28px; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.price-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; display: flex; flex-direction: column; gap: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  background: var(--card-black); color: #fff; border-color: rgba(217, 164, 65, 0.55);
  box-shadow: var(--shadow-lg);
}
.price-card.featured .muted { color: #B9B8B2; }
.pop-chip {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold-grad); color: #241A05;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 999px; padding: 6px 14px; white-space: nowrap;
}
.price-name { font-family: var(--font-display); font-size: 1.16rem; letter-spacing: 0.04em; margin: 0 0 2px; }
.price-tier { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-ink); }
.price-card.featured .price-tier { color: var(--gold-soft); }
.price-card .muted { color: var(--ink-soft); font-size: 0.9rem; margin: 8px 0 14px; }

.price-big { display: flex; align-items: baseline; gap: 6px; }
.price-big .cur { font-family: var(--font-display); font-size: 1.1rem; color: var(--ink-soft); }
.price-card.featured .price-big .cur { color: var(--gold-soft); }
.price-big .val { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.2rem); line-height: 1; }
.price-big .per { font-size: 0.8rem; color: var(--ink-soft); font-weight: 600; }
.price-time { font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); margin-top: 6px; display: flex; align-items: center; gap: 6px; }
.price-time svg { width: 14px; height: 14px; }

.price-rows { margin: 16px 0 4px; border-top: 1px dashed var(--line); }
.price-card.featured .price-rows { border-color: var(--line-dark); }
.price-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  padding: 9px 0; border-bottom: 1px dashed var(--line);
  font-size: 0.92rem;
}
.price-card.featured .price-row { border-color: var(--line-dark); }
.price-row .l { color: var(--ink-soft); }
.price-card.featured .price-row .l { color: #B9B8B2; }
.price-row .l small { display: block; font-size: 0.75rem; opacity: 0.8; }
.price-row .r { font-family: var(--font-display); font-size: 1.02rem; white-space: nowrap; }

/* collapsible includes */
.includes { margin-top: 12px; }
.includes-toggle {
  width: 100%; background: transparent; border: 0;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; font-size: 0.9rem; color: inherit; padding: 10px 0;
  min-height: 44px;
}
.includes-toggle svg { width: 16px; height: 16px; transition: transform 0.25s; }
.includes-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.includes-list { display: none; padding: 2px 0 8px; margin: 0; list-style: none; }
.includes-list.open { display: block; }
.includes-list li { display: flex; gap: 10px; padding: 5px 0; font-size: 0.9rem; color: var(--ink-soft); }
.price-card.featured .includes-list li { color: #C9C8C2; }
.includes-list .ck {
  flex: 0 0 18px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--red-grad); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; margin-top: 3px;
}
.includes-list .ck svg { width: 10px; height: 10px; }

.price-cta { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.add-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 8px 16px; border-radius: 999px;
  border: 1.5px solid var(--line); background: transparent; color: inherit;
  font-weight: 700; font-size: 0.85rem;
}
.add-btn svg { width: 15px; height: 15px; }
.add-btn:hover { border-color: var(--gold-ink); color: var(--gold-ink); }
.price-card.featured .add-btn { border-color: var(--line-dark); }
.price-card.featured .add-btn:hover { border-color: var(--gold-soft); color: var(--gold-soft); }

/* gold years chip (ceramic) */
.years-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-grad); color: #241A05; border-radius: 999px;
  font-weight: 800; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 14px; margin-bottom: 12px; width: fit-content;
}

/* Pricing jump chips */
.jump-row { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 18px; }
.jump-chip {
  display: inline-flex; align-items: center; min-height: 42px;
  border: 1px solid var(--line); border-radius: 999px; background: #fff;
  padding: 8px 18px; font-weight: 700; font-size: 0.85rem; color: var(--ink-soft);
  text-decoration: none; transition: color 0.15s, border-color 0.15s, transform 0.15s;
}
.jump-chip:hover { color: var(--ink); border-color: var(--ink); transform: translateY(-1px); }

/* Add-ons */
.addons-wrap {
  margin-top: 26px; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(20px, 3vw, 32px);
}
.addons-wrap h4 { font-family: var(--font-display); letter-spacing: 0.05em; font-size: 1rem; text-transform: uppercase; text-align: center; margin-bottom: 18px; }
.addons { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.addon {
  display: inline-flex; align-items: baseline; gap: 8px;
  border: 1px solid var(--line); border-radius: 999px; background: #fff;
  padding: 9px 16px; font-size: 0.86rem; font-weight: 600;
}
.addon .p { font-family: var(--font-display); font-size: 0.9rem; color: var(--red-ink); }
.addon small { color: var(--ink-soft); font-weight: 500; }

/* Maintenance club */
.club-banner {
  margin-top: 26px; border-radius: var(--radius);
  background: var(--card-black); color: #fff;
  border: 1px solid rgba(217, 164, 65, 0.45);
  padding: clamp(22px, 3.4vw, 36px);
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.club-banner .ic {
  width: 54px; height: 54px; border-radius: 50%; flex: 0 0 54px;
  background: var(--gold-grad); color: #241A05;
  display: flex; align-items: center; justify-content: center;
}
.club-banner .ic svg { width: 24px; height: 24px; }
.club-banner h4 { font-family: var(--font-display); letter-spacing: 0.04em; margin: 0 0 4px; font-size: 1.05rem; }
.club-banner p { margin: 0; color: #C9C8C2; font-size: 0.94rem; max-width: 62ch; }
.club-banner .btn { margin-left: auto; }

/* Other services carousel */
.carousel-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.car-arrows { display: flex; gap: 10px; }
.circle-btn {
  width: 50px; height: 50px; border-radius: 50%;
  border: 1.5px solid var(--line); background: #fff; color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.15s, background 0.15s, color 0.15s;
}
.circle-btn svg { width: 18px; height: 18px; }
.circle-btn:hover { transform: scale(1.06); }
.circle-btn.solid { background: var(--black); color: #fff; border-color: var(--black); }
.hscroll {
  display: grid; grid-auto-flow: column; grid-auto-columns: clamp(240px, 26vw, 320px);
  gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 4px 18px;
  scrollbar-width: none;
}
.hscroll::-webkit-scrollbar { display: none; }
.other-card {
  scroll-snap-align: start; position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4 / 4.6; box-shadow: var(--shadow);
  border: 0; padding: 0; background: var(--card-black); text-align: left; color: #fff;
}
.other-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.other-card:hover img { transform: scale(1.05); }
.other-price {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-display); font-size: 1.5rem; color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
}
.other-price small { font-size: 0.6em; }
.other-label {
  position: absolute; left: 10px; right: 10px; bottom: 10px; z-index: 2;
  background: rgba(12, 12, 12, 0.72); backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm); padding: 12px 14px;
  font-family: var(--font-display); font-size: 0.82rem; letter-spacing: 0.05em; text-transform: uppercase;
  line-height: 1.4;
}
.other-label small { display: block; font-family: var(--font-body); font-size: 0.76rem; text-transform: none; letter-spacing: 0; color: #CFCEC8; margin-top: 3px; }

/* Custom quote cards (PPF / wrap) */
.custom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.custom-card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 340px;
  display: flex; align-items: flex-end; box-shadow: var(--shadow);
}
.custom-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.custom-card:hover img { transform: scale(1.045); }
.custom-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 30%, rgba(0, 0, 0, 0.85) 100%);
}
.custom-card .inner { position: relative; z-index: 2; color: #fff; padding: clamp(20px, 3vw, 32px); }
.custom-card h4 { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.04em; margin-bottom: 8px; }
.custom-card p { color: rgba(255, 255, 255, 0.88); font-size: 0.93rem; max-width: 52ch; }

.disclaimer {
  margin-top: 30px; text-align: center; color: var(--ink-soft); font-size: 0.85rem;
  max-width: 70ch; margin-inline: auto;
}

/* ---------- Offers ---------- */
.offers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: clamp(30px, 5vw, 50px); }
.offer-card {
  border-radius: var(--radius); position: relative; overflow: hidden;
  min-height: 350px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  color: #fff; padding: clamp(24px, 4vw, 44px); box-shadow: var(--shadow);
}
.offer-card.black { background: var(--card-black); }
.offer-card.black::before {
  content: ""; position: absolute; inset: -20%;
  background:
    radial-gradient(closest-side, rgba(217, 164, 65, 0.22), transparent 65%) 12% 20% / 55% 55% no-repeat,
    radial-gradient(closest-side, rgba(232, 41, 12, 0.28), transparent 65%) 88% 85% / 60% 60% no-repeat;
}
.offer-card .squiggle {
  position: absolute; inset: 0; opacity: 0.1; pointer-events: none;
}
.offer-card.photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); }
.offer-card.photo::after { content: ""; position: absolute; inset: 0; background: rgba(8, 8, 8, 0.55); }
.offer-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.offer-small { font-weight: 700; font-size: 1.02rem; color: rgba(255, 255, 255, 0.92); }
.offer-big { font-family: var(--font-display); font-size: clamp(1.9rem, 4.6vw, 3.2rem); letter-spacing: 0.03em; line-height: 1.1; }
.offer-big em { font-style: normal; color: var(--gold-soft); }
.offer-inner .btn { margin-top: 18px; }
.offer-note { font-size: 0.78rem; color: rgba(255, 255, 255, 0.65); margin-top: 8px; }

/* ---------- Service area ---------- */
.area-wrap { margin-top: clamp(28px, 4vw, 44px); display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.area-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 18px; font-weight: 600; font-size: 0.9rem;
}
.area-chip svg { width: 15px; height: 15px; color: var(--red-ink); }

/* ---------- Location ---------- */
.loc-card {
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(100deg, #0A0A0A 0%, #180402 45%, #6E0D00 100%);
  border: 1px solid rgba(232, 41, 12, 0.5);
  color: #fff; display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(22px, 4vw, 48px); padding: clamp(24px, 4vw, 52px);
  box-shadow: var(--shadow-lg);
}
.loc-label { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; color: var(--gold-soft); text-transform: uppercase; }
.loc-card h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3.4vw, 2.5rem); letter-spacing: 0.03em; margin: 10px 0 6px; }
.loc-slogan { color: rgba(255, 255, 255, 0.75); margin-bottom: 26px; }
.loc-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 18px; }
.loc-item { display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem; }
.loc-item a { text-decoration: none; overflow-wrap: anywhere; }
.loc-item a:hover { color: var(--gold-soft); }
.loc-item .ic {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.loc-item .ic svg { width: 20px; height: 20px; }
.loc-map { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 320px; border: 1px solid rgba(255, 255, 255, 0.25); }
.loc-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: saturate(0.9); }
.loc-map .btn { position: absolute; z-index: 2; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.loc-map .btn:hover { transform: translate(-50%, -50%) scale(1.04); }

/* ---------- Testimonials ---------- */
.t-carousel { margin-top: clamp(30px, 5vw, 52px); position: relative; }
.t-top { display: flex; justify-content: flex-end; align-items: center; gap: 14px; margin-bottom: 18px; }
.t-count { font-family: var(--font-display); font-size: 0.95rem; color: var(--ink-soft); min-width: 54px; text-align: right; }
.t-stage { display: grid; grid-template-columns: 300px 1fr 220px; gap: clamp(20px, 3.5vw, 44px); align-items: center; }
.t-photo, .t-photo-sm { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.t-photo { aspect-ratio: 3 / 3.4; }
.t-photo-sm { aspect-ratio: 3 / 3.6; }
.t-photo img, .t-photo-sm img { width: 100%; height: 100%; object-fit: cover; }
.t-quote-mark { color: var(--red); margin-bottom: 4px; }
.t-quote-mark svg { width: 40px; height: 40px; }
.t-text { font-size: clamp(1.05rem, 1.9vw, 1.4rem); font-weight: 500; line-height: 1.55; max-width: 44ch; }
.t-stars { color: var(--gold); letter-spacing: 3px; margin: 14px 0 6px; font-size: 1rem; }
.t-name { font-weight: 800; }
.t-meta { color: var(--ink-soft); font-size: 0.88rem; }
.t-google {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 18px;
  font-size: 0.85rem; font-weight: 700; color: var(--ink-soft); text-decoration: none;
  border: 1px solid var(--line); padding: 9px 16px; border-radius: 999px; background: #fff;
}
.t-google:hover { color: var(--ink); border-color: var(--ink); }
.t-slide { animation: tFade 0.45s ease; }
@keyframes tFade { from { opacity: 0; transform: translateY(10px); } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: clamp(30px, 5vw, 50px) auto 0; display: grid; gap: 12px; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: clip; }
.faq-q {
  width: 100%; background: transparent; border: 0; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 22px; font-weight: 700; font-size: 1rem; color: var(--ink);
  min-height: 56px;
}
.faq-q .pm {
  flex: 0 0 34px; width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--line); display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.25s, background 0.25s, color 0.25s;
}
.faq-q .pm svg { width: 14px; height: 14px; }
.faq-item.open .pm { background: var(--black); color: #fff; border-color: var(--black); transform: rotate(45deg); }
.faq-a { display: none; padding: 0 22px 20px; color: var(--ink-soft); }
.faq-item.open .faq-a { display: block; }

/* ---------- Social / gallery ---------- */
.social-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: clamp(28px, 4vw, 44px); }
.social-card {
  border-radius: var(--radius); padding: clamp(22px, 3vw, 34px);
  display: flex; align-items: center; gap: 18px; color: #fff; text-decoration: none;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
  transition: transform 0.25s ease;
}
.social-card:hover { transform: translateY(-4px); }
.social-card.ig { background: linear-gradient(120deg, #7A0BC0 0%, #C41E75 45%, #E8290C 100%); }
.social-card.fb { background: linear-gradient(120deg, #0A0A0A 0%, #17233F 60%, #1877F2 160%); }
.social-card .ic {
  width: 56px; height: 56px; border-radius: 18px; flex: 0 0 56px;
  background: rgba(255, 255, 255, 0.16); border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex; align-items: center; justify-content: center;
}
.social-card .ic svg { width: 26px; height: 26px; }
.social-card h4 { margin: 0 0 3px; font-size: 1.05rem; }
.social-card p { margin: 0; font-size: 0.88rem; color: rgba(255, 255, 255, 0.85); }
.social-card .follow {
  margin-left: auto; background: #fff; color: var(--black);
  border-radius: 999px; padding: 10px 18px; font-weight: 800; font-size: 0.85rem; white-space: nowrap;
}

.filter-row { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: clamp(26px, 4vw, 40px) 0 26px; }
.filter-chip {
  border: 1px solid var(--line); background: #fff; color: var(--ink-soft);
  border-radius: 999px; padding: 9px 18px; font-weight: 700; font-size: 0.85rem;
  transition: background 0.2s, color 0.2s;
  min-height: 42px;
}
.filter-chip.active { background: var(--black); color: #fff; border-color: var(--black); }
.filter-chip:not(.active):hover { color: var(--ink); border-color: var(--ink); }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.g-item {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 4 / 3; border: 0; padding: 0; background: var(--bg-soft); cursor: zoom-in;
}
.g-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.g-item:hover img { transform: scale(1.06); }
.g-item .cat-tag {
  position: absolute; left: 10px; bottom: 10px; z-index: 2;
  background: rgba(10, 10, 10, 0.72); color: #fff; backdrop-filter: blur(4px);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px; opacity: 0; transition: opacity 0.25s;
}
.g-item:hover .cat-tag, .g-item:focus-visible .cat-tag { opacity: 1; }
.gallery-grid.limited .g-item:nth-child(n + 10) { display: none; }
.gallery-more { text-align: center; margin-top: 22px; }
.gallery-more[hidden] { display: none; }
.gallery-cta { text-align: center; margin-top: 34px; }
.gallery-cta p { color: var(--ink-soft); max-width: 56ch; margin-inline: auto; }
.gallery-cta .row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 260; background: rgba(6, 6, 6, 0.94);
  display: none; align-items: center; justify-content: center; flex-direction: column; gap: 14px;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1100px, 94vw); max-height: 78vh; object-fit: contain;
  border-radius: var(--radius-sm); cursor: zoom-in; transition: transform 0.3s ease;
}
.lightbox img.zoomed { transform: scale(1.7); cursor: zoom-out; }
.lb-caption { color: #CFCEC8; font-size: 0.9rem; }
.lb-btn {
  position: absolute; width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.25); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.lb-btn svg { width: 20px; height: 20px; }
.lb-btn:hover { background: rgba(255, 255, 255, 0.22); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }

/* ---------- Final CTA + footer (dark zone) ---------- */
.dark-zone { background: var(--black); color: #fff; }
.cta-banner {
  border-radius: calc(var(--radius) + 6px);
  background: var(--red-grad-v);
  text-align: center; padding: clamp(44px, 7vw, 90px) clamp(20px, 5vw, 60px);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 50% 0%, rgba(255, 255, 255, 0.16), transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-display); font-size: clamp(1.7rem, 5vw, 3.4rem);
  letter-spacing: 0.02em; margin-bottom: 14px; position: relative;
}
.cta-banner p { color: rgba(255, 255, 255, 0.92); max-width: 54ch; margin: 0 auto 28px; position: relative; }
.cta-banner .row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

.footer-word {
  font-family: var(--font-display); text-align: center; white-space: nowrap; overflow: clip;
  font-size: clamp(1.75rem, 6vw, 5.9rem); letter-spacing: 0.02em; line-height: 1;
  padding: clamp(30px, 6vw, 64px) 1vw 0;
  background: linear-gradient(180deg, #FFFFFF 30%, rgba(255, 255, 255, 0.25) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  user-select: none;
}
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr 1.4fr; gap: clamp(24px, 4vw, 56px);
  padding-block: clamp(36px, 5vw, 64px);
}
.footer-grid > div + div { border-left: 1px solid var(--line-dark); padding-left: clamp(24px, 4vw, 56px); }
.footer-brand img { height: 84px; width: 84px; border-radius: 20px; margin-bottom: 16px; }
.footer-brand p { color: #B9B8B2; font-size: 0.92rem; max-width: 34ch; }
.footer h4 { font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 16px; }
.footer-links { display: grid; gap: 2px; }
.footer-links a {
  color: #D8D7D1; text-decoration: none; font-size: 0.95rem; width: fit-content;
  display: inline-flex; align-items: center; min-height: 42px; padding-right: 12px;
}
.footer-links a:hover { color: #fff; }
.footer-contact { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
.fc-item { font-size: 0.85rem; color: #C9C8C2; overflow-wrap: anywhere; }
.fc-item .ic {
  width: 44px; height: 44px; border-radius: 50%; margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.08); border: 1px solid var(--line-dark);
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.fc-item .ic svg { width: 18px; height: 18px; }
.fc-item a { text-decoration: none; }
.fc-item a:hover { color: var(--gold-soft); }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 22px 0 calc(22px + env(safe-area-inset-bottom));
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
  color: #A3A29C; font-size: 0.85rem;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line-dark); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { background: #fff; color: var(--black); }

/* ---------- Floating mobile bar ---------- */
.float-bar {
  position: fixed; z-index: 110; left: 12px; right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  display: none; gap: 8px;
  background: rgba(10, 10, 10, 0.92); backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px; padding: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.float-bar a {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  min-height: 48px; border-radius: 14px; text-decoration: none;
  font-weight: 800; font-size: 0.82rem; color: #fff;
}
.float-bar a svg { width: 16px; height: 16px; }
.float-bar .f-call { background: rgba(255, 255, 255, 0.1); }
.float-bar .f-book { background: var(--red-grad); }
.float-bar .f-quote { background: var(--gold-grad); color: #241A05; }

/* ---------- Modals ---------- */
.modal {
  position: fixed; inset: 0; z-index: 240; display: none;
  align-items: flex-end; justify-content: center;
  background: rgba(8, 8, 8, 0.62); backdrop-filter: blur(6px);
  padding: 0;
}
.modal.open { display: flex; }
.modal-panel {
  background: var(--bg); width: min(980px, 100vw);
  max-height: calc(100dvh - 24px); overflow-y: auto; overscroll-behavior: contain;
  border-radius: 26px 26px 0 0; padding: clamp(20px, 3.5vw, 40px);
  animation: slideUp 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes slideUp { from { transform: translateY(60px); opacity: 0.4; } }
@media (min-width: 720px) {
  .modal { align-items: center; padding: 24px; }
  .modal-panel { border-radius: 26px; }
}
.modal-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 6px; }
.modal-title { font-family: var(--font-display); font-size: clamp(1.15rem, 2.4vw, 1.6rem); letter-spacing: 0.03em; margin: 0; }
.modal-sub { color: var(--ink-soft); font-size: 0.92rem; margin: 4px 0 0; }
.modal-close {
  width: 46px; height: 46px; border-radius: 50%; flex: 0 0 46px;
  border: 1.5px solid var(--line); background: #fff; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.modal-close svg { width: 18px; height: 18px; }

/* Vehicle picker modal */
.veh-modal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.veh-pick {
  border: 1.5px solid var(--line); border-radius: var(--radius);
  background: var(--paper); padding: 26px 18px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-weight: 800; letter-spacing: 0.02em;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.veh-pick:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow-lg); }
.veh-pick svg { width: 84px; height: 44px; color: var(--ink); }
.veh-pick small { color: var(--ink-soft); font-weight: 600; }
.veh-skip { margin-top: 16px; text-align: center; }
.veh-skip button { background: none; border: 0; color: var(--ink-soft); font-weight: 600; text-decoration: underline; padding: 10px; }

/* ---------- Booking wizard ---------- */
.steps-bar { display: flex; gap: 6px; margin: 18px 0 24px; }
.steps-bar .st {
  flex: 1; display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; color: var(--ink-soft);
}
.steps-bar .st .b {
  width: 30px; height: 30px; border-radius: 50%; flex: 0 0 30px;
  border: 1.5px solid var(--line); background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.75rem;
}
.steps-bar .st.active { color: var(--ink); }
.steps-bar .st.active .b { background: var(--black); color: var(--gold-soft); border-color: var(--black); }
.steps-bar .st.done .b { background: var(--red-grad); border-color: transparent; color: #fff; }
.steps-bar .st .ln { flex: 1; height: 1.5px; background: var(--line); }
.steps-bar .st:last-child .ln { display: none; }
.steps-bar .st span { white-space: nowrap; }

.book-step { display: none; }
.book-step.active { display: block; animation: tFade 0.3s ease; }

.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.svc-pick {
  border: 1.5px solid var(--line); background: var(--paper); border-radius: var(--radius-sm);
  padding: 16px 18px; text-align: left; display: flex; align-items: center; gap: 14px;
  font-weight: 700; transition: border-color 0.2s, transform 0.2s;
  min-height: 64px;
}
.svc-pick:hover { transform: translateY(-2px); border-color: var(--ink); }
.svc-pick.selected { border-color: var(--red); box-shadow: 0 0 0 1.5px var(--red); }
.svc-pick .ic {
  width: 42px; height: 42px; border-radius: 12px; flex: 0 0 42px;
  background: var(--black); color: var(--gold-soft);
  display: inline-flex; align-items: center; justify-content: center;
}
.svc-pick .ic svg { width: 20px; height: 20px; }
.svc-pick small { display: block; font-weight: 600; color: var(--ink-soft); font-size: 0.78rem; margin-top: 2px; }

.opt-group { margin-top: 20px; }
.opt-group h5 {
  margin: 0 0 10px; font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft);
}
.pill-opts { display: flex; flex-wrap: wrap; gap: 8px; }
.pill-opt {
  border: 1.5px solid var(--line); background: #fff; border-radius: 999px;
  padding: 10px 18px; font-weight: 700; font-size: 0.88rem; color: var(--ink);
  transition: all 0.18s; min-height: 44px;
}
.pill-opt small { font-weight: 600; color: var(--ink-soft); }
.pill-opt.selected { background: var(--black); color: #fff; border-color: var(--black); }
.pill-opt.selected small { color: var(--gold-soft); }

.book-summary-chip {
  margin-top: 22px; background: var(--card-black); color: #fff;
  border-radius: var(--radius-sm); padding: 16px 20px;
  display: flex; flex-wrap: wrap; gap: 8px 26px; align-items: baseline;
  border: 1px solid rgba(217, 164, 65, 0.4);
}
.book-summary-chip .p { font-family: var(--font-display); font-size: 1.5rem; }
.book-summary-chip .p small { font-size: 0.55em; color: var(--gold-soft); }
.book-summary-chip .d { color: #C9C8C2; font-size: 0.88rem; font-weight: 600; }

.book-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 26px; flex-wrap: wrap; }

/* Calendar */
.cal-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(18px, 3vw, 34px); }
.cal { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.cal-month { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.04em; }
.cal-nav { display: flex; gap: 8px; }
.cal-nav button {
  width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--line);
  background: #fff; display: inline-flex; align-items: center; justify-content: center;
}
.cal-nav button svg { width: 16px; height: 16px; }
.cal-nav button:hover:not([disabled]) { border-color: var(--ink); }
.cal-nav button[disabled] { opacity: 0.35; cursor: default; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-dow { text-align: center; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; color: var(--ink-soft); padding: 6px 0; }
.cal-day {
  aspect-ratio: 1; border-radius: 12px; border: 1px solid transparent;
  background: transparent; font-weight: 700; font-size: 0.9rem; color: var(--ink);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.cal-day:not([disabled]):hover { border-color: var(--ink); }
.cal-day[disabled] { color: rgba(17, 17, 16, 0.28); cursor: default; text-decoration: line-through; text-decoration-thickness: 1px; }
.cal-day.today::after { content: ""; position: absolute; bottom: 6px; width: 4px; height: 4px; border-radius: 50%; background: var(--red); }
.cal-day.selected { background: var(--red-grad); color: #fff; border-color: transparent; }
.cal-legend { display: flex; gap: 16px; margin-top: 12px; font-size: 0.75rem; color: var(--ink-soft); flex-wrap: wrap; }
.cal-legend span { display: inline-flex; align-items: center; gap: 6px; }
.cal-legend i { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }

.slots h5 { margin: 0 0 12px; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.slots-note { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 12px; }
.slots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; max-height: 300px; overflow-y: auto; padding-right: 4px; }
.slot {
  border: 1.5px solid var(--line); background: #fff; border-radius: 12px;
  padding: 11px 8px; font-weight: 700; font-size: 0.88rem;
  transition: all 0.15s; min-height: 44px;
}
.slot:hover:not([disabled]) { border-color: var(--ink); }
.slot.selected { background: var(--black); color: var(--gold-soft); border-color: var(--black); }
.slot[disabled] { opacity: 0.35; text-decoration: line-through; cursor: default; }
.slots-empty { color: var(--ink-soft); font-size: 0.9rem; background: var(--bg-soft); border-radius: var(--radius-sm); padding: 18px; }
.tz-note { margin-top: 14px; font-size: 0.78rem; color: var(--ink-soft); display: flex; gap: 8px; align-items: center; }
.tz-note svg { width: 14px; height: 14px; flex: 0 0 auto; }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 700; font-size: 0.84rem; margin-bottom: 6px; }
.field label .req { color: var(--red-ink); }
.field input, .field select, .field textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: 12px;
  background: #fff; padding: 13px 15px; color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
  min-height: 48px;
}
.field textarea { min-height: 104px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(217, 164, 65, 0.3);
}
.field .err { display: none; color: var(--red-ink); font-size: 0.8rem; font-weight: 600; margin-top: 5px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--red-ink); }
.field.invalid .err { display: block; }
.hint { font-size: 0.8rem; color: var(--ink-soft); margin-top: 6px; }

.chips-select { display: flex; flex-wrap: wrap; gap: 8px; }
.chips-select .chip {
  border: 1.5px solid var(--line); border-radius: 999px; background: #fff;
  padding: 9px 16px; font-weight: 700; font-size: 0.85rem; color: var(--ink);
  min-height: 44px;
}
.chips-select .chip.selected { background: var(--red-grad); color: #fff; border-color: transparent; }

/* Summary + confirmation */
.sum-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.sum-row { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 0.94rem; }
.sum-row:last-child { border-bottom: 0; }
.sum-row .k { color: var(--ink-soft); font-weight: 600; }
.sum-row .v { font-weight: 700; text-align: right; }
.sum-price { font-family: var(--font-display); font-size: 1.2rem; color: var(--red-ink); }
.consent { display: flex; gap: 10px; align-items: flex-start; margin-top: 16px; font-size: 0.85rem; color: var(--ink-soft); }
.consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--red-ink); }

.confirm-wrap { text-align: center; padding: 16px 0; }
.confirm-ic {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 18px;
  background: var(--red-grad); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 40px rgba(232, 41, 12, 0.35);
}
.confirm-ic svg { width: 38px; height: 38px; }
.confirm-ref {
  display: inline-block; font-family: var(--font-display); font-size: 1.1rem;
  background: var(--card-black); color: var(--gold-soft);
  border-radius: 999px; padding: 10px 22px; margin: 10px 0 4px;
}
.confirm-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 22px; }
.confirm-note { font-size: 0.88rem; color: var(--ink-soft); max-width: 52ch; margin: 14px auto 0; }

/* ---------- Cart drawer ---------- */
.cart-fab {
  position: fixed; right: 18px; bottom: calc(84px + env(safe-area-inset-bottom)); z-index: 105;
  width: 60px; height: 60px; border-radius: 50%; border: 0;
  background: var(--black); color: var(--gold-soft);
  display: none; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.cart-fab.show { display: flex; }
.cart-fab svg { width: 24px; height: 24px; }
.cart-fab .n {
  position: absolute; top: -4px; right: -4px; min-width: 24px; height: 24px;
  background: var(--red-grad); color: #fff; border-radius: 999px;
  font-size: 0.75rem; font-weight: 800; display: flex; align-items: center; justify-content: center;
  padding: 0 6px;
}
@media (min-width: 901px) { .cart-fab { bottom: 24px; } }

.drawer {
  position: fixed; inset: 0; z-index: 250; display: none;
  background: rgba(8, 8, 8, 0.55); backdrop-filter: blur(4px);
}
.drawer.open { display: block; }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(430px, 100vw);
  background: var(--bg); display: flex; flex-direction: column;
  animation: drawerIn 0.32s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes drawerIn { from { transform: translateX(60px); opacity: 0.5; } }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 22px 22px 14px; }
.drawer-head h3 { font-family: var(--font-display); font-size: 1.1rem; margin: 0; letter-spacing: 0.04em; }
.drawer-body { flex: 1; overflow-y: auto; padding: 0 22px; }
.cart-item {
  display: flex; justify-content: space-between; gap: 12px; align-items: flex-start;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 16px; margin-bottom: 10px;
}
.cart-item .t { font-weight: 700; font-size: 0.92rem; }
.cart-item .m { color: var(--ink-soft); font-size: 0.8rem; margin-top: 2px; }
.cart-item .p { font-family: var(--font-display); font-size: 0.95rem; white-space: nowrap; }
.cart-item .rm {
  border: 0; background: transparent; color: var(--ink-soft); padding: 6px;
  border-radius: 8px; display: inline-flex;
}
.cart-item .rm:hover { color: var(--red-ink); background: rgba(232, 41, 12, 0.08); }
.cart-item .rm svg { width: 16px; height: 16px; }
.cart-empty { text-align: center; color: var(--ink-soft); padding: 40px 10px; }
.drawer-foot { padding: 16px 22px calc(20px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); }
.cart-total { display: flex; justify-content: space-between; font-weight: 800; margin-bottom: 4px; }
.cart-total .amt { font-family: var(--font-display); font-size: 1.25rem; }
.cart-mins { color: var(--ink-soft); font-size: 0.82rem; margin-bottom: 12px; }
.cart-disc { font-size: 0.75rem; color: var(--ink-soft); margin-bottom: 14px; }
.drawer-foot .row { display: grid; gap: 10px; }

/* ---------- Payments ---------- */
.pay-card {
  background: var(--card-black); color: #fff;
  border: 1px solid rgba(217, 164, 65, 0.45);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(26px, 4vw, 48px);
  box-shadow: var(--shadow-lg);
}
.pay-card .badge { border-color: var(--line-dark); color: #CFCEC8; background: rgba(255, 255, 255, 0.06); }
.pay-title { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2.1rem); letter-spacing: 0.03em; text-align: center; margin: 16px 0 6px; }
.pay-sub { text-align: center; color: #C9C8C2; margin: 0 auto 26px; max-width: 52ch; }
.pay-methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px; }
.pay-tile {
  display: flex; flex-direction: column; gap: 6px; text-align: left;
  background: rgba(255, 255, 255, 0.05); border: 1.5px solid var(--line-dark);
  border-radius: var(--radius-sm); padding: 18px 20px; color: #fff;
  text-decoration: none; transition: border-color 0.2s, transform 0.2s;
  min-height: 44px; cursor: pointer; font-family: inherit; font-size: inherit;
}
.pay-tile:hover { border-color: var(--gold); transform: translateY(-2px); }
.pay-tile .t { font-weight: 800; display: flex; align-items: center; gap: 10px; }
.pay-tile .t svg { width: 18px; height: 18px; color: var(--gold-soft); flex: 0 0 auto; }
.pay-tile .d { color: #C9C8C2; font-size: 0.85rem; }
.pay-tile .v { font-family: var(--font-display); font-size: 0.95rem; color: var(--gold-soft); overflow-wrap: anywhere; }
.pay-note { text-align: center; color: #A3A29C; font-size: 0.8rem; margin: 22px auto 0; max-width: 64ch; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: calc(90px + env(safe-area-inset-bottom)); transform: translateX(-50%) translateY(20px);
  z-index: 300; background: var(--black); color: #fff;
  border: 1px solid rgba(217, 164, 65, 0.5);
  border-radius: 999px; padding: 13px 24px; font-weight: 700; font-size: 0.9rem;
  opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s;
  max-width: 92vw; text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Reveal animations ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.65, 0.2, 1); }
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal-stagger] > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.65, 0.2, 1); }
[data-reveal-stagger].revealed > * { opacity: 1; transform: none; }
[data-reveal-stagger].revealed > *:nth-child(1) { transition-delay: 0.05s; }
[data-reveal-stagger].revealed > *:nth-child(2) { transition-delay: 0.14s; }
[data-reveal-stagger].revealed > *:nth-child(3) { transition-delay: 0.23s; }
[data-reveal-stagger].revealed > *:nth-child(4) { transition-delay: 0.32s; }
[data-reveal-stagger].revealed > *:nth-child(5) { transition-delay: 0.41s; }
[data-reveal-stagger].revealed > *:nth-child(6) { transition-delay: 0.5s; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav { display: none; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .menu-btn { display: inline-flex; }
  .header-cta .btn, .header-phone span { display: none; }
  .hero-card { grid-template-columns: 1fr; }
  .hero-media { order: -1; min-height: 0; }
  .hero-media .frame { position: relative; inset: auto; margin-top: clamp(-64px, -9vw, -40px); aspect-ratio: 16 / 10; }
  .hero-chip.tl { top: auto; bottom: -14px; left: 8px; }
  .hero-chip.br { display: none; }
  .bento-row, .bento-row.rev { grid-template-columns: 1fr; }
  .bento-text { min-height: 0; }
  .bento-media { min-height: 240px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-card:nth-child(n) { margin-top: 0; }
  .why-card:nth-child(even) { transform: translateY(22px); }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .price-card.featured { order: -1; }
  .custom-grid, .offers-grid, .social-cards { grid-template-columns: 1fr; }
  .loc-card { grid-template-columns: 1fr; }
  .loc-items { grid-template-columns: 1fr; gap: 14px; }
  .loc-item { flex-direction: row; align-items: center; }
  .t-stage { grid-template-columns: 1fr; }
  .t-photo { max-width: 340px; aspect-ratio: 16 / 10; }
  .t-photo-sm { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div + div { border-left: 0; padding-left: 0; border-top: 1px solid var(--line-dark); padding-top: 26px; }
  .float-bar { display: flex; }
  .cal-wrap { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .veh-modal-grid { grid-template-columns: 1fr; }
  .veh-pick { flex-direction: row; justify-content: flex-start; text-align: left; padding: 16px 20px; }
  .veh-pick svg { width: 64px; height: 34px; }
  .steps-bar .st span { display: none; }
  .steps-bar .st.active span { display: inline; }
  body { padding-bottom: 76px; }
  .pricing-head { top: calc(var(--header-h) - 8px); }
}
@media (max-width: 620px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip .container {
    flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none;
    -webkit-mask-image: linear-gradient(90deg, #000 88%, transparent);
            mask-image: linear-gradient(90deg, #000 88%, transparent);
  }
  .trust-strip .container::-webkit-scrollbar { display: none; }
  .trust-item { white-space: nowrap; flex: 0 0 auto; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card:nth-child(even) { transform: none; }
  .why-card { aspect-ratio: 4 / 3.4; }
  .steps-grid { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: clamp(2.1rem, 12.5vw, 4rem); white-space: normal; }
  .trust-strip .container { justify-content: flex-start; }
  .club-banner .btn { margin-left: 0; }
}

@media (max-width: 430px) {
  .veh-seg { padding: 4px; gap: 2px; }
  .veh-seg button { padding: 9px 13px; gap: 6px; font-size: 0.8rem; }
  .veh-seg button svg { width: 22px; height: 14px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; width: auto; justify-content: center; }
  .marquee-track .chunk { flex-wrap: wrap; justify-content: center; }
  .marquee-track .chunk + .chunk { display: none; }
  .marquee { -webkit-mask-image: none; mask-image: none; max-height: 122px; overflow: clip; }
  [data-reveal], [data-reveal-stagger] > * { opacity: 1; transform: none; transition: none; }
  .btn:hover, .price-card:hover, .social-card:hover { transform: none; }
  .modal-panel, .drawer-panel, .t-slide { animation: none; }
  .bento-media img, .why-card img, .other-card img, .custom-card img, .g-item img { transition: none; }
}

/* ---------- Print ---------- */
@media print {
  .header, .float-bar, .cart-fab, .modal, .drawer, .toast { display: none !important; }
}
