/* ==========================================================================
   ElevanceYVR — Premium Mobile Car Detailing
   Design system: matte black / white / gold. Luxury, minimal, modern.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --black: #0a0a0b;          /* page background */
  --surface: #121214;        /* cards */
  --surface-2: #1a1a1e;      /* raised cards / inputs */
  --line: rgba(255, 255, 255, .08);
  --white: #f5f5f2;
  --muted: #a6a6a3;
  --gold: #d4af37;
  --gold-soft: #e6c96b;
  --gold-dim: rgba(212, 175, 55, .12);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 20px 50px rgba(0, 0, 0, .45);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --container: 1180px;
  --header-h: 72px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: #000; padding: .6rem 1rem; font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; letter-spacing: .01em; }
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.25rem; }
.lead { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 46ch; }
.eyebrow {
  display: inline-block; color: var(--gold); font-size: .78rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase; margin-bottom: .9rem;
}
.gold { color: var(--gold); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* ---------- Layout ---------- */
.container { width: min(var(--container), 92%); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section-alt { background: linear-gradient(180deg, var(--black), #0e0e10 30%, var(--black)); }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head.center { margin-inline: auto; }
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.9rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  letter-spacing: .02em; transition: transform .25s var(--ease), box-shadow .25s var(--ease),
  background .25s, color .25s, border-color .25s; border: 1px solid transparent;
  min-height: 48px;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #b8952a);
  color: #0c0c0c; box-shadow: 0 8px 26px rgba(212, 175, 55, .28);
}
.btn-gold:hover { box-shadow: 0 12px 32px rgba(212, 175, 55, .4); }
.btn-outline { border-color: rgba(255, 255, 255, .28); color: var(--white); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost { color: var(--muted); }
.btn-ghost:hover { color: var(--gold); }
.btn-lg { padding: 1.05rem 2.4rem; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ---------- Header / navigation ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .35s, border-color .35s, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 10, 11, .82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo { font-family: var(--font-display); font-size: 1.45rem; letter-spacing: .06em; }
.logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { font-size: .92rem; color: var(--muted); transition: color .2s; position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: .8rem; }
.nav-toggle { display: none; width: 44px; height: 44px; position: relative; z-index: 102; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 24px; height: 2px; background: var(--white);
  position: absolute; left: 10px; transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -7px; left: 0; }
.nav-toggle span::after { top: 7px; left: 0; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-cta .btn-outline { display: none; }
  .nav-links {
    position: fixed; inset: 0; z-index: 101; flex-direction: column; justify-content: center;
    gap: 2rem; background: rgba(10, 10, 11, .97); backdrop-filter: blur(10px);
    opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
  }
  .nav-links.open { opacity: 1; visibility: visible; }
  .nav-links a { font-size: 1.3rem; }
}

/* ---------- Promo banner ---------- */
.promo-banner {
  background: linear-gradient(90deg, #2a2110, #1a1508);
  border-bottom: 1px solid rgba(212, 175, 55, .3);
  color: var(--gold-soft); text-align: center; font-size: .88rem;
  padding: .55rem 3rem .55rem 1rem; position: relative; z-index: 99;
}
.promo-banner a { text-decoration: underline; text-underline-offset: 3px; }
.promo-banner .promo-close {
  position: absolute; right: .6rem; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; color: var(--gold-soft); font-size: 1.1rem;
}
body.has-promo { --header-h: 112px; }
body.has-promo .site-header { top: 40px; }

/* ---------- Hero ---------- */
.hero {
  min-height: 92svh; display: flex; align-items: center; position: relative;
  padding-top: var(--header-h); overflow: hidden; isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1; object-fit: cover; width: 100%; height: 100%;
  opacity: .9;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,10,11,.55), rgba(10,10,11,.25) 45%, var(--black));
}
.hero-inner { max-width: 780px; }
.hero .btn-row { margin-top: 2.2rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 3rem; color: var(--muted); font-size: .88rem; }
.hero-badges strong { color: var(--gold); font-size: 1.15rem; display: block; font-family: var(--font-display); }

/* ---------- Cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.7rem; transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.card:hover { transform: translateY(-5px); border-color: rgba(212, 175, 55, .35); box-shadow: var(--shadow); }
.card h3 { margin-bottom: .6rem; }
.card p { color: var(--muted); font-size: .95rem; }
.card-icon {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: var(--gold-dim); color: var(--gold); margin-bottom: 1.2rem; font-size: 1.35rem;
}
.check-list li, .x-list li { display: flex; gap: .6rem; padding: .3rem 0; color: var(--muted); font-size: .95rem; }
.check-list li::before { content: "✓"; color: var(--gold); font-weight: 700; flex: none; }
.badge {
  display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; padding: .28rem .7rem; border-radius: 999px;
  background: var(--gold-dim); color: var(--gold); border: 1px solid rgba(212,175,55,.3);
}
.badge-muted { background: rgba(255,255,255,.06); color: var(--muted); border-color: var(--line); }

/* ---------- Process steps ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 0; }
.step-num {
  font-family: var(--font-display); font-size: 2.6rem; color: transparent;
  -webkit-text-stroke: 1px var(--gold); margin-bottom: .8rem; display: block; line-height: 1;
}

/* ---------- Pricing ---------- */
.pricing-grid { align-items: stretch; }
.price-card { display: flex; flex-direction: column; position: relative; }
.price-card.featured { border-color: rgba(212, 175, 55, .55); background: linear-gradient(180deg, #17150d, var(--surface)); }
.price-card .badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #000; }
.price { font-family: var(--font-display); font-size: 2.6rem; margin: .6rem 0 .2rem; }
.price small { font-size: 1rem; color: var(--muted); font-family: var(--font-body); }
.price-from { color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; }
.price-card ul { margin: 1.3rem 0 1.8rem; flex: 1; }
.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.compare { width: 100%; border-collapse: collapse; min-width: 640px; font-size: .93rem; }
.compare th, .compare td { padding: .85rem 1.1rem; text-align: center; border-bottom: 1px solid var(--line); }
.compare th { background: var(--surface-2); font-weight: 600; }
.compare td:first-child, .compare th:first-child { text-align: left; color: var(--muted); }
.compare .yes { color: var(--gold); font-weight: 700; }
.compare .no { color: #555; }
.compare tr:last-child td { border-bottom: 0; }
.compare .col-featured { background: rgba(212, 175, 55, .06); }

/* ---------- Reviews carousel ---------- */
.carousel { position: relative; overflow: hidden; }
.carousel-track { display: flex; transition: transform .6s var(--ease); }
.review-slide { flex: 0 0 100%; padding: 0 4px; }
.review-card {
  max-width: 760px; margin-inline: auto; text-align: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 3rem);
}
.review-stars { color: var(--gold); letter-spacing: .3em; font-size: 1.1rem; margin-bottom: 1.1rem; }
.review-text { color: var(--white); font-size: 1.02rem; font-style: italic; max-width: 60ch; margin-inline: auto; }
.review-name { margin-top: 1.4rem; color: var(--gold); font-weight: 600; }
.review-source { color: var(--muted); font-size: .82rem; }
.carousel-nav { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.6rem; }
.carousel-btn {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; transition: border-color .2s, color .2s;
}
.carousel-btn:hover { border-color: var(--gold); color: var(--gold); }
.carousel-dots { display: flex; gap: .5rem; }
.carousel-dots button { width: 9px; height: 9px; border-radius: 50%; background: #3a3a3e; transition: background .2s, transform .2s; padding: 0; }
.carousel-dots button[aria-selected="true"] { background: var(--gold); transform: scale(1.25); }

/* ---------- Before / After slider ---------- */
.ba-slider {
  position: relative; border-radius: var(--radius); overflow: hidden; user-select: none;
  border: 1px solid var(--line); aspect-ratio: 4 / 3; touch-action: none;
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 2px;
  background: var(--gold); transform: translateX(-1px); cursor: ew-resize;
}
.ba-handle::after {
  content: "◂ ▸"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: #000;
  display: grid; place-items: center; font-size: .8rem; box-shadow: 0 4px 18px rgba(0,0,0,.5);
}
.ba-label {
  position: absolute; top: 12px; z-index: 2; font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; padding: .3rem .7rem; border-radius: 999px;
  background: rgba(0, 0, 0, .65); color: var(--white);
}
.ba-label-before { left: 12px; }
.ba-label-after { right: 12px; color: var(--gold); }

/* ---------- Gallery ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.2rem; }
.filter-btn {
  padding: .5rem 1.2rem; border-radius: 999px; border: 1px solid var(--line);
  color: var(--muted); font-size: .88rem; transition: all .25s;
}
.filter-btn:hover { color: var(--white); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: #000; font-weight: 600; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; position: relative; border: 1px solid var(--line); }
.gallery-item img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.6rem 1rem .8rem; font-size: .82rem;
  color: var(--white); background: linear-gradient(transparent, rgba(0, 0, 0, .8));
}
.gallery-item.hidden { display: none; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 780px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.35rem .2rem; text-align: left; font-weight: 600; font-size: 1.02rem;
  transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q .faq-icon { flex: none; color: var(--gold); font-size: 1.3rem; transition: transform .3s var(--ease); }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease); }
.faq-a p { color: var(--muted); padding: 0 .2rem 1.4rem; font-size: .96rem; max-width: 65ch; }

/* ---------- Service areas ---------- */
.area-chips { display: flex; flex-wrap: wrap; gap: .7rem; }
.area-chip {
  padding: .6rem 1.3rem; border: 1px solid var(--line); border-radius: 999px;
  color: var(--muted); font-size: .92rem; transition: all .3s var(--ease);
}
.area-chip:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 600; color: var(--white); }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-sm);
  color: var(--white); padding: .8rem 1rem; font: inherit; font-size: .95rem;
  transition: border-color .2s; width: 100%; min-height: 48px;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d4af37' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.field .error-msg { color: #e26d6d; font-size: .8rem; display: none; }
.field.invalid input, .field.invalid select { border-color: #e26d6d; }
.field.invalid .error-msg { display: block; }
.hint { color: var(--muted); font-size: .82rem; }

/* Choice cards (booking packages / add-ons / payment) */
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 720px) { .choice-grid { grid-template-columns: 1fr; } }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; width: 100%; height: 100%; }
.choice-body {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.1rem;
  transition: border-color .25s, background .25s; height: 100%;
}
.choice input:checked + .choice-body { border-color: var(--gold); background: var(--gold-dim); }
.choice input:focus-visible + .choice-body { outline: 2px solid var(--gold); outline-offset: 2px; }
.choice input:disabled + .choice-body { opacity: .45; cursor: not-allowed; }
.choice-body strong { display: block; margin-bottom: .2rem; }
.choice-body .choice-price { color: var(--gold); font-weight: 600; font-size: .9rem; }
.choice-body p { color: var(--muted); font-size: .84rem; }

/* Booking summary */
.summary-card { position: sticky; top: calc(var(--header-h) + 20px); }
.summary-row { display: flex; justify-content: space-between; gap: 1rem; padding: .45rem 0; font-size: .93rem; color: var(--muted); border-bottom: 1px dashed var(--line); }
.summary-row strong { color: var(--white); }
.summary-total { display: flex; justify-content: space-between; padding-top: 1rem; font-size: 1.15rem; font-weight: 700; }
.summary-total span:last-child { color: var(--gold); font-family: var(--font-display); font-size: 1.5rem; }
.booking-layout { display: grid; grid-template-columns: 1.8fr 1fr; gap: 2rem; align-items: start; }
@media (max-width: 900px) { .booking-layout { grid-template-columns: 1fr; } .summary-card { position: static; } }
.form-section { margin-bottom: 2.6rem; }
.form-section > h3 { margin-bottom: 1.2rem; padding-bottom: .7rem; border-bottom: 1px solid var(--line); }
.form-section > h3 .step-tag { color: var(--gold); font-family: var(--font-body); font-size: .8rem; letter-spacing: .2em; display: block; margin-bottom: .3rem; }

/* Confirmation */
.confirm-panel { text-align: center; max-width: 640px; margin-inline: auto; padding: clamp(2rem, 5vw, 4rem) 1.5rem; }
.confirm-check {
  width: 84px; height: 84px; margin: 0 auto 1.6rem; border-radius: 50%;
  background: var(--gold-dim); border: 1px solid var(--gold); color: var(--gold);
  display: grid; place-items: center; font-size: 2.4rem;
  animation: pop .5s var(--ease);
}
@keyframes pop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.confirm-details { text-align: left; margin: 2rem 0; }

/* ---------- Booking wizard: progress indicator ---------- */
.progress { max-width: 860px; margin-inline: auto; }
.progress-count { text-align: right; font-size: .8rem; color: var(--muted); margin-bottom: .4rem; }
.progress-count span:first-child { color: var(--gold); font-weight: 700; }
.progress-steps { display: flex; justify-content: space-between; margin-bottom: .8rem; }
.progress-step { display: flex; flex-direction: column; align-items: center; gap: .4rem; flex: 1; }
.progress-step .dot {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  font-size: .8rem; font-weight: 700; border: 1px solid var(--line); color: var(--muted);
  background: var(--surface); transition: all .35s var(--ease);
}
.progress-step .plabel { font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.progress-step.current .dot { border-color: var(--gold); color: var(--gold); box-shadow: 0 0 0 4px var(--gold-dim); }
.progress-step.current .plabel { color: var(--white); }
.progress-step.done .dot { background: var(--gold); border-color: var(--gold); color: #000; }
.progress-bar { height: 3px; background: var(--surface-2); border-radius: 3px; overflow: hidden; }
.progress-bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-soft)); transition: width .5s var(--ease); }
@media (max-width: 720px) {
  .progress-step .plabel { display: none; }
  .progress-step .dot { width: 28px; height: 28px; font-size: .72rem; }
}

/* ---------- Booking wizard: steps ---------- */
.wizard-step { animation: stepIn .45s var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.wizard-nav { display: flex; gap: .9rem; justify-content: space-between; margin-top: 1rem; }
.wizard-nav .btn-gold { margin-left: auto; }
#card-container { min-height: 92px; }
#review-card .summary-row strong { text-align: right; max-width: 60%; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.5rem; align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.contact-item .card-icon { margin: 0; flex: none; width: 46px; height: 46px; }
.contact-item a:hover { color: var(--gold); }
.hours-table { width: 100%; font-size: .93rem; color: var(--muted); }
.hours-table td { padding: .35rem 0; border-bottom: 1px dashed var(--line); }
.hours-table td:last-child { text-align: right; color: var(--white); }
.map-embed { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 10; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 4rem 0 2rem; background: #0c0c0d; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .2em; color: var(--gold); margin-bottom: 1.1rem; }
.site-footer p, .site-footer a { color: var(--muted); font-size: .92rem; }
.site-footer li { padding: .28rem 0; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 1.6rem; display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 1rem; color: #6d6d6a; font-size: .82rem;
}
.footer-bottom a { color: #8d8d8a; }

/* ---------- Floating action buttons ---------- */
.fab-stack {
  position: fixed; right: 18px; bottom: 88px; z-index: 90;
  display: flex; flex-direction: column; gap: .8rem;
}
@media (min-width: 761px) { .fab-stack { bottom: 24px; } }
.fab {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--line); color: var(--gold);
  font-size: 1.25rem; box-shadow: 0 10px 26px rgba(0,0,0,.5);
  transition: transform .25s var(--ease), border-color .25s;
}
.fab:hover { transform: scale(1.08); border-color: var(--gold); }
.fab-book { background: linear-gradient(135deg, var(--gold), #b8952a); color: #000; border: none; }

/* ---------- Mobile bottom nav ---------- */
.mobile-nav {
  position: fixed; inset: auto 0 0 0; z-index: 95; display: none;
  background: rgba(12, 12, 13, .95); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-nav ul { display: grid; grid-template-columns: repeat(3, 1fr); }
.mobile-nav a {
  display: flex; flex-direction: column; align-items: center; gap: .15rem;
  padding: .6rem 0 .7rem; font-size: .68rem; letter-spacing: .06em; color: var(--muted);
}
.mobile-nav a span:first-child { font-size: 1.15rem; }
.mobile-nav a.primary { color: var(--gold); }
@media (max-width: 760px) {
  .mobile-nav { display: block; }
  body { padding-bottom: 64px; }
}

/* ---------- Scroll reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; } .reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; } .reveal-d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: calc(var(--header-h) + clamp(3rem, 8vw, 5.5rem)) 0 clamp(2.5rem, 6vw, 4rem); }
.page-hero .lead { margin-top: .9rem; }
.breadcrumbs { font-size: .82rem; color: var(--muted); margin-bottom: 1.2rem; }
.breadcrumbs a:hover { color: var(--gold); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, #17130a, #0e0d0a);
  border-block: 1px solid rgba(212, 175, 55, .25); text-align: center;
}

/* ---------- Blog ---------- */
.post-card time { color: var(--gold); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.post-card h3 { margin: .5rem 0 .6rem; }
.post-body { max-width: 720px; margin-inline: auto; }
.post-body h2 { margin: 2.4rem 0 1rem; font-size: 1.6rem; }
.post-body p { color: var(--muted); margin-bottom: 1.2rem; }
.post-body strong { color: var(--white); }

/* ---------- 404 ---------- */
.error-page { min-height: 80svh; display: grid; place-items: center; text-align: center; padding-top: var(--header-h); }
.error-code { font-family: var(--font-display); font-size: clamp(6rem, 20vw, 11rem); line-height: 1; color: transparent; -webkit-text-stroke: 2px var(--gold); }

/* ---------- Legal ---------- */
.legal-body { max-width: 760px; }
.legal-body h2 { font-size: 1.35rem; margin: 2.2rem 0 .8rem; }
.legal-body p, .legal-body li { color: var(--muted); margin-bottom: .9rem; font-size: .95rem; }
.legal-body ul { list-style: disc; padding-left: 1.4rem; }

/* ---------- Utilities ---------- */
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 2rem; } .mt-4 { margin-top: 3rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
