/* ===== Apollo Auto Detailing — brand tokens (dark theme) ===== */
:root {
  --gold: #d59a1a;
  --gold-dark: #b17f12;
  --gold-light: #eec26a;

  --bg: #0b0b0c;          /* page background */
  --surface: #17171a;      /* cards, panels */
  --surface-alt: #131315;  /* alternating section background */
  --surface-raised: #1e1e22; /* hover/selected surfaces */
  --border: #2c2c30;

  --text: #f3f1ec;         /* headings, primary text */
  --text-muted: #a8a5a0;   /* secondary text */
  --black: #0b0b0c;
  --white: #f3f1ec;

  --font-heading: "Playfair Display", Georgia, serif;
  --font-accent: "PT Serif", Georgia, serif;
  --font-body: "Inter", Helvetica, Arial, sans-serif;

  --max-width: 1180px;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  --transition: 0.25s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.15;
  color: var(--text);
}

h2.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-align: center;
  margin-bottom: 8px;
}

.section-kicker {
  display: block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 48px;
}

section { padding: 88px 0; }
section.tight { padding: 64px 0; }
section.alt-bg { background: var(--surface-alt); }

a { color: inherit; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--gold); color: #17130a; }
.btn-primary:hover { background: var(--gold-light); box-shadow: 0 8px 20px rgba(213, 154, 26, 0.35); }

.btn-outline { background: transparent; border-color: var(--text); color: var(--text); }
.btn-outline:hover { background: var(--text); color: var(--bg); }

.btn-outline-light { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--bg); }

.btn-block { width: 100%; }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(11, 11, 12, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  color: var(--text);
}
.nav-logo img { height: 44px; width: auto; border-radius: 6px; }

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a[aria-current="page"] { color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-actions .btn { padding: 10px 20px; font-size: 0.9rem; }
.nav-call {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-call:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
  transition: transform var(--transition), opacity var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.32) saturate(1.05);
  transform: scale(1.02);
}
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 40px 24px;
}
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 18px;
  color: var(--white);
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.1rem;
  color: rgba(243, 241, 236, 0.82);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-call {
  margin: 14px 0 0;
  font-size: 0.92rem;
  color: rgba(243, 241, 236, 0.75);
}
.hero-call a { color: var(--gold); font-weight: 700; text-decoration: none; }
.hero-call a:hover { text-decoration: underline; }

/* ===== Trust badge (5-star rating, reused across sections) ===== */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(213, 154, 26, 0.12);
  border: 1px solid rgba(213, 154, 26, 0.4);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  margin: 18px 0;
  transition: border-color var(--transition), background var(--transition);
}
.trust-badge:hover { border-color: var(--gold); background: rgba(213, 154, 26, 0.2); }
.trust-badge .trust-stars { color: var(--gold); letter-spacing: 1px; }
.trust-badge .trust-count { color: var(--text-muted); font-weight: 500; }
.trust-badge-center { display: flex; width: fit-content; margin-left: auto; margin-right: auto; }

.hero-promo {
  position: relative;
  z-index: 2;
  margin: 28px 24px 0;
  background: rgba(11, 11, 12, 0.7);
  border: 1px solid rgba(213, 154, 26, 0.5);
  border-radius: var(--radius);
  padding: 16px 20px;
  max-width: 560px;
  font-size: 0.92rem;
}
.hero-promo strong { color: var(--gold); }

/* ===== Summer Promo ===== */
.promo-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.promo-image img {
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.promo-copy p { color: var(--text-muted); }
.promo-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin: 24px 0;
}
.promo-price-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.promo-price-card .promo-vehicle { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
.promo-price-card .promo-was { font-size: 0.85rem; color: var(--text-muted); text-decoration: line-through; }
.promo-price-card .promo-now { font-family: var(--font-heading); font-size: 1.8rem; color: var(--gold); }
.promo-price-card .promo-save {
  align-self: center;
  background: rgba(213, 154, 26, 0.16);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin-top: 2px;
}
.promo-fine-print { font-size: 0.82rem; color: var(--text-muted); font-style: italic; margin-bottom: 24px; }

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(213, 154, 26, 0.4); }
.service-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(213, 154, 26, 0.14);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.service-card p { color: var(--text-muted); margin: 0 0 14px; font-size: 0.95rem; }
.service-price { font-family: var(--font-accent); font-weight: 700; color: var(--gold); display: block; }
.service-book-btn { margin-top: 14px; }

.services-teaser-grid { margin-bottom: 32px; }
.services-teaser-grid .service-card { text-align: center; }
.services-teaser-grid .icon { margin-left: auto; margin-right: auto; }
.services-teaser-grid h3 { margin-bottom: 10px; }

.services-group-title {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin: 48px 0 24px;
}
.services-group-title:first-of-type { margin-top: 0; }

/* ===== Services hub (choose in-shop / mobile / membership) ===== */
.services-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}
.hub-card {
  display: block;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition);
}
.hub-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.hub-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.hub-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.hub-card:hover .hub-card-media img { transform: scale(1.06); }
.hub-card-body {
  padding: 30px;
  text-align: center;
}
.hub-card h2 { font-size: 1.3rem; margin-bottom: 12px; }
.hub-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 18px; }
.hub-card-cta { font-family: var(--font-accent); font-weight: 700; color: var(--gold); }

.services-breadcrumb {
  display: inline-block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 18px;
  transition: color var(--transition);
}
.services-breadcrumb:hover { color: var(--gold); }

/* ===== Membership page (steps / benefits) ===== */
.membership-steps {
  display: grid;
  gap: 14px;
  margin: 0 0 20px;
}
.membership-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
}
.membership-step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: #17130a;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
}
.membership-step p { margin: 0; color: var(--text-muted); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin: 0 0 48px;
}
.benefit-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.92rem;
  color: var(--text);
}
.benefit-item .check { color: var(--gold); font-weight: 700; flex-shrink: 0; }

.plan-ideal-for {
  margin: 6px 0 10px;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.55;
  display: grid;
  gap: 4px;
}

.service-tagline {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.service-card.popular {
  position: relative;
  border-color: var(--gold);
}
.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: #17130a;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
}

.service-card details {
  margin: 4px 0 14px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.service-card summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  list-style: none;
}
.service-card summary::-webkit-details-marker { display: none; }
.service-card summary::after { content: " +"; }
.service-card details[open] summary::after { content: " –"; }
.service-card details ul {
  margin: 12px 0;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.55;
  display: grid;
  gap: 6px;
}
.service-card .service-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 10px 0 0;
  line-height: 1.5;
}
.service-card .service-meta strong { color: var(--text); }
.service-card .service-time {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* ===== Gallery / Before-After ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}
.work-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.work-card:hover img { transform: scale(1.06); }
.work-card .work-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 14px 10px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
}

.work-page { display: none; }
.work-page.is-active { display: grid; }

.work-gallery-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: -24px 0 56px;
}
.work-gallery-dots { display: flex; gap: 8px; }
.work-gallery-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--border);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.work-gallery-dot.is-active { background: var(--gold); transform: scale(1.25); }
.work-gallery-arrow {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition);
}
.work-gallery-arrow:hover { border-color: var(--gold); transform: translateX(3px); }

.service-visual-card {
  grid-column: span 3;
  display: block;
  aspect-ratio: auto;
  min-height: 260px;
}
@media (max-width: 1000px) {
  .service-visual-card { grid-column: span 2; }
}
@media (max-width: 640px) {
  .service-visual-card { grid-column: span 1; }
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-slider .ba-after { z-index: 1; }
.ba-slider .ba-before-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  width: 50%;
}
.ba-slider .ba-before-wrap img { width: var(--ba-img-w, 100%); max-width: none; }
.ba-label {
  position: absolute;
  top: 14px;
  z-index: 3;
  background: rgba(11, 11, 12, 0.8);
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.ba-label.before { left: 14px; }
.ba-label.after { right: 14px; }
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 4;
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4);
}
.ba-handle::after {
  content: "\21D4";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: #17130a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}
.ba-caption {
  margin-top: 12px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.gallery-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 24px;
  font-style: italic;
}

/* ===== Quote Estimator ===== */
.quote-box {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 40px;
}
.quote-field { margin-bottom: 26px; }
.quote-field > label {
  display: block;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}
.option-card {
  position: relative;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.option-card:hover { border-color: var(--gold); }
.option-card input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
  margin: 0;
}
.option-card .option-title { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.option-card .option-desc { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.option-card .option-time { font-size: 0.72rem; color: var(--gold); margin-top: 6px; }
.option-card.selected { border-color: var(--gold); background: rgba(213, 154, 26, 0.14); }

.quote-result {
  margin-top: 8px;
  padding: 24px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.quote-result .quote-range {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold);
  margin: 6px 0 4px;
}
.quote-result .quote-hint { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 18px; }
.quote-call-note { margin: 12px 0 0; font-size: 0.82rem; color: var(--text-muted); text-align: center; }
.quote-call-note a { color: var(--gold); font-weight: 700; text-decoration: none; }
.quote-call-note a:hover { text-decoration: underline; }

/* ===== Reviews ===== */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.reviews-summary .stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 2px; }
.reviews-summary .rating-text { font-weight: 700; }
.reviews-summary .rating-sub { color: var(--text-muted); font-size: 0.9rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.review-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }
.review-card p.review-text { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 18px; }
.review-card .review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.review-card .review-author strong { color: var(--text); display: block; }

.reviews-cta { text-align: center; margin-top: 40px; }

/* ===== FAQ ===== */
.faq-wrap {
  max-width: 780px;
  margin: 0 auto;
}
.faq-category-title {
  font-family: var(--font-accent);
  color: var(--gold);
  font-size: 1.1rem;
  margin: 40px 0 14px;
}
.faq-category-title:first-child { margin-top: 0; }
.faq-list {
  display: grid;
  gap: 10px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 22px;
  box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  padding: 16px 24px 16px 0;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item[open] summary { border-bottom: 1px solid var(--border); }
.faq-answer {
  padding: 16px 0 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
.faq-answer p { margin: 0 0 12px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul {
  margin: 0 0 12px;
  padding-left: 20px;
  display: grid;
  gap: 6px;
}
.faq-answer a { color: var(--gold); }

/* ===== Booking ===== */
.booking-cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.booking-contact-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== About / Contact ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-grid img { border-radius: 16px; box-shadow: var(--shadow); }
.about-copy p { color: var(--text-muted); }
.info-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 14px; }
.info-list li { display: flex; gap: 12px; font-size: 0.95rem; }
.info-list .info-label { font-weight: 700; min-width: 90px; color: var(--text); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: 0.9rem; }
.hours-table td { padding: 6px 0; border-bottom: 1px solid var(--border); }
.hours-table td:last-child { text-align: right; color: var(--text-muted); }

/* ===== Footer ===== */
.site-footer {
  background: #050506;
  color: rgba(243, 241, 236, 0.75);
  padding: 56px 0 28px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img { height: 46px; margin-bottom: 14px; border-radius: 6px; }
.footer-brand p { font-size: 0.88rem; max-width: 320px; }
.trust-badge-footer { margin: 4px 0 18px; }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { text-decoration: none; color: rgba(243, 241, 236, 0.75); font-size: 0.9rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 14px; margin-top: 14px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(243, 241, 236, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.footer-bottom {
  border-top: 1px solid rgba(243, 241, 236, 0.15);
  padding-top: 22px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(243, 241, 236, 0.5);
}

/* ===== Mobile sticky Book/Call bar ===== */
.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 850;
  height: 64px;
}
.sticky-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
}
.sticky-cta-book { background: var(--gold); color: #17130a; }
.sticky-cta-call { background: #050506; color: var(--white); border-left: 1px solid var(--border); }

/* ===== Scroll reveal ===== */
.reveal-up {
  --reveal-index: 0;
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--reveal-index) * 90ms);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-up { opacity: 1; transform: none; transition: none; }
}

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1100px) {
  .nav-links, .nav-actions .btn, .nav-actions .nav-call { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 18px;
  }
  .sticky-cta-bar { display: flex; }
  body { padding-bottom: 64px; }
}

@media (max-width: 720px) {
  section { padding: 64px 0; }
  .quote-box { padding: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
