/* ==========================================================================
   Glazed Auto Spa — Luxury Automotive Detailing
   Vanilla CSS design system  •  Dark gloss + chrome + champagne gold
   Author: Novelio Technologies (2026)
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Palette */
  --black:        #0B0B0F;   /* deep gloss black */
  --charcoal:     #16181D;   /* panels / glass layers */
  --charcoal-2:   #1E2127;
  --silver:       #C8CCD2;   /* chrome mid */
  --platinum:     #EEF1F4;   /* chrome light */
  --white-soft:   #F7F8FA;   /* text on dark */
  --gold:         #C9A24B;   /* signature accent */
  --gold-light:   #F4D98A;
  --gold-deep:    #8C6B24;

  --text:         #E9EBEF;
  --text-muted:   #9BA1AC;
  --border:       rgba(200, 204, 210, 0.12);
  --border-strong:rgba(200, 204, 210, 0.22);

  /* Gradients */
  --grad-chrome:  linear-gradient(180deg, #FFFFFF 0%, #EEF1F4 42%, #AEB4BD 55%, #EEF1F4 100%);
  --grad-gold:    linear-gradient(120deg, #F4D98A 0%, #C9A24B 52%, #8C6B24 100%);
  --grad-panel:   linear-gradient(160deg, rgba(30,33,39,0.9) 0%, rgba(11,11,15,0.9) 100%);

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.35);
  --shadow-md:  0 12px 30px rgba(0,0,0,0.45);
  --shadow-lg:  0 30px 70px rgba(0,0,0,0.55);
  --glow-gold:  0 0 0 1px rgba(201,162,75,0.35), 0 10px 40px rgba(201,162,75,0.22);

  /* Layout */
  --maxw: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --section-y: clamp(3.5rem, 9vw, 7rem);

  /* Type */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Z-index scale */
  --z-nav: 100;
  --z-topbar: 90;
  --z-sticky: 80;
  --z-overlay: 200;
  --z-modal: 300;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--black);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Ambient chrome/gold aura layered behind content */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60vw 60vw at 80% -10%, rgba(201,162,75,0.10), transparent 60%),
    radial-gradient(50vw 50vw at -10% 20%, rgba(200,204,210,0.06), transparent 60%),
    var(--black);
  pointer-events: none;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.12; letter-spacing: -0.01em; color: var(--white-soft); }
h1 { font-size: clamp(2.4rem, 6vw, 4.3rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
p  { color: var(--text-muted); max-width: 68ch; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--grad-gold); }

.text-chrome {
  background: var(--grad-chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4rem); }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head p { margin-top: 1rem; }
.section-head.center p { margin-inline: auto; }

.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.75rem); }
.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: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border-strong), transparent); border: 0; margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--grad-gold);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  color: var(--black);
  background: var(--_bg);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .25s ease, filter .2s ease;
  position: relative;
  min-height: 46px;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { box-shadow: var(--glow-gold); filter: brightness(1.05); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 3px; }

.btn--ghost {
  background: rgba(255,255,255,0.03);
  color: var(--platinum);
  border-color: var(--border-strong);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--white-soft); box-shadow: none; }

.btn--chrome { background: var(--grad-chrome); color: #16181D; }
.btn--sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; min-height: 40px; }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---------- Glass panels / cards ---------- */
.glass {
  background: var(--grad-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
}
.card {
  background: var(--grad-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.card::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% -20%, rgba(201,162,75,0.12), transparent 60%);
  opacity: 0; transition: opacity .35s ease; pointer-events: none;
}
.card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow-lg); }
.card:hover::after { opacity: 1; }

.card .card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(201,162,75,0.10);
  border: 1px solid rgba(201,162,75,0.3);
  color: var(--gold-light);
  margin-bottom: 1.1rem;
}
.card .card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 0.5rem; color: var(--white-soft); }
.card p { font-size: 0.95rem; }

/* Icon chip inline */
.chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.85rem; border-radius: 999px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  font-size: 0.8rem; color: var(--silver); font-weight: 600;
}
.chip svg { width: 16px; height: 16px; color: var(--gold); }

/* ==========================================================================
   Top bar
   ========================================================================== */
.topbar {
  background: #08080B;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  position: relative;
  z-index: var(--z-topbar);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 42px; flex-wrap: wrap; }
.topbar a { color: var(--text-muted); display: inline-flex; align-items: center; gap: 0.4rem; transition: color .2s; }
.topbar a:hover { color: var(--gold-light); }
.topbar svg { width: 15px; height: 15px; color: var(--gold); flex: none; }
.topbar-info { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.topbar-social { display: flex; gap: 0.35rem; }
.topbar-social a {
  width: 30px; height: 30px; border-radius: 8px; justify-content: center;
  border: 1px solid var(--border);
}
.topbar-social a:hover { border-color: var(--gold); background: rgba(201,162,75,0.1); }
.topbar-social svg { width: 15px; height: 15px; color: var(--silver); }
.topbar-social a:hover svg { color: var(--gold-light); }
@media (max-width: 760px) { .topbar-info .ti-hide { display: none; } }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.header {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: rgba(11,11,15,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.header.scrolled { background: rgba(8,8,11,0.92); border-bottom-color: var(--border); box-shadow: var(--shadow-md); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 72px; }
.nav-menu { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { width: 190px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 0.4rem; }
.nav-links a {
  padding: 0.55rem 0.9rem; border-radius: 8px;
  font-size: 0.92rem; font-weight: 600; color: var(--text-muted);
  position: relative; transition: color .2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.35rem; height: 2px;
  background: var(--grad-gold); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white-soft); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 0.6rem; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; color: var(--platinum); }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 86vw);
    transform: translateX(100%); transition: transform .3s ease;
    background: #0C0D11; border-left: 1px solid var(--border);
    padding: 6rem 1.5rem 2rem; flex-direction: column; align-items: stretch; gap: 0.4rem;
    display: flex; z-index: var(--z-nav); box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-links { flex-direction: column; align-items: stretch; }
  .nav-links a { padding: 0.85rem 1rem; border-radius: 10px; font-size: 1rem; }
  .nav-links a::after { display: none; }
  .nav-links a:hover, .nav-links a[aria-current="page"] { background: rgba(201,162,75,0.1); }
  .nav-cta { flex-direction: column; align-items: stretch; margin-top: 1rem; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(3px);
    opacity: 0; visibility: hidden; transition: opacity .3s; z-index: calc(var(--z-nav) - 1);
  }
  .nav-backdrop.show { opacity: 1; visibility: visible; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; overflow: hidden; padding-block: clamp(3.5rem, 9vw, 6.5rem); }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,11,15,0.95) 0%, rgba(11,11,15,0.75) 45%, rgba(11,11,15,0.4) 100%),
    linear-gradient(0deg, var(--black) 2%, transparent 40%);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { margin: 1.2rem 0; }
.hero h1 .line { display: block; }
.hero-lead { font-size: clamp(1rem, 1.7vw, 1.18rem); max-width: 46ch; margin-bottom: 1.8rem; color: var(--silver); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; align-items: center; }
.hero-trust .stars { color: var(--gold-light); letter-spacing: 2px; }
.hero-trust small { color: var(--text-muted); font-size: 0.85rem; }

/* Glass quote/booking card in hero */
.hero-card { padding: clamp(1.6rem, 3vw, 2.2rem); }
.hero-card h2 { font-size: 1.5rem; margin-bottom: 0.35rem; }
.hero-card .muted { font-size: 0.9rem; margin-bottom: 1.4rem; }
.hero-card .field { margin-bottom: 0.9rem; }
.hero-card .mini-list { display: grid; gap: 0.6rem; margin-top: 1.2rem; }
.hero-card .mini-list li { display: flex; gap: 0.6rem; align-items: center; font-size: 0.9rem; color: var(--silver); }
.hero-card .mini-list svg { width: 18px; height: 18px; color: var(--gold); flex: none; }

/* Floating chrome sheen accents */
.sheen { position: absolute; border-radius: 50%; filter: blur(30px); opacity: 0.5; z-index: -1; pointer-events: none; }

/* ==========================================================================
   Marquee / trust strip
   ========================================================================== */
.trust-strip { border-block: 1px solid var(--border); background: #0A0A0E; overflow: hidden; }
.marquee { display: flex; gap: 3rem; padding: 1.1rem 0; white-space: nowrap; width: max-content; animation: marquee 34s linear infinite; }
.marquee span { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--silver); font-weight: 600; letter-spacing: 0.06em; font-size: 0.9rem; text-transform: uppercase; }
.marquee svg { width: 18px; height: 18px; color: var(--gold); }
.marquee-wrap:hover .marquee { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; padding: 1.5rem 1rem; }
.stat .num { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; line-height: 1; }
.stat .label { font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.5rem; }

/* ==========================================================================
   Services list (row style)
   ========================================================================== */
.service-tier { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .service-tier { grid-template-columns: 1fr; } }
.tier {
  display: flex; flex-direction: column;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--grad-panel); padding: 2rem; position: relative; overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.tier:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tier.featured { border-color: rgba(201,162,75,0.5); box-shadow: var(--glow-gold); }
.tier .ribbon {
  position: absolute; top: 1.1rem; right: -2.4rem; transform: rotate(45deg);
  background: var(--grad-gold); color: var(--black); font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.12em; padding: 0.25rem 3rem;
}
.tier .price { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--white-soft); margin: 0.4rem 0 0.2rem; }
.tier .price small { font-size: 0.9rem; color: var(--text-muted); font-weight: 400; font-family: var(--font-body); }
.tier ul { display: grid; gap: 0.7rem; margin: 1.4rem 0; }
.tier li { display: flex; gap: 0.6rem; font-size: 0.92rem; color: var(--silver); }
.tier li svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 3px; }
.tier .btn { margin-top: auto; }

/* ==========================================================================
   Before / After slider
   ========================================================================== */
.ba-slider {
  position: relative; width: 100%; max-width: 920px; margin-inline: auto;
  aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border-strong); box-shadow: var(--shadow-lg);
  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-after { clip-path: inset(0 0 0 50%); }
.ba-label {
  position: absolute; bottom: 1rem; padding: 0.35rem 0.9rem; border-radius: 999px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(8,8,11,0.7); backdrop-filter: blur(6px); border: 1px solid var(--border);
}
.ba-label.before { left: 1rem; color: var(--silver); }
.ba-label.after { right: 1rem; color: var(--gold-light); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; transform: translateX(-50%);
  background: var(--grad-chrome);
}
.ba-handle .knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad-chrome); box-shadow: var(--shadow-md);
  display: grid; place-items: center; color: #16181D;
}
.ba-handle .knob svg { width: 24px; height: 24px; }
.ba-slider input[type="range"] {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0;
}

/* ==========================================================================
   Reviews (grouped by category)
   ========================================================================== */
.review-filters { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 2.4rem; }
.review-filter {
  padding: 0.6rem 1.2rem; border-radius: 999px; font-weight: 600; font-size: 0.88rem;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border); color: var(--text-muted);
  transition: all .2s;
}
.review-filter:hover { color: var(--white-soft); border-color: var(--border-strong); }
.review-filter[aria-pressed="true"] { background: var(--grad-gold); color: var(--black); border-color: transparent; }

.review-card { display: flex; flex-direction: column; gap: 0.9rem; }
.review-card.is-hidden { display: none; }
.review-stars { color: var(--gold-light); letter-spacing: 2px; font-size: 1rem; }
.review-text { color: var(--text); font-size: 0.98rem; font-style: italic; }
.review-meta { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-weight: 700; color: var(--black);
  background: var(--grad-gold); font-family: var(--font-display);
}
.review-name { font-weight: 700; color: var(--white-soft); font-size: 0.92rem; }
.review-info { font-size: 0.78rem; color: var(--text-muted); }
.review-cat { margin-left: auto; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 2.2rem; }
.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 {
  position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
  aspect-ratio: 4 / 3; border: 1px solid var(--border); background: var(--charcoal);
}
.gallery-item.tall { aspect-ratio: 3 / 4; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11,11,15,0.85) 0%, transparent 55%);
  opacity: 0.7; transition: opacity .3s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-cap {
  position: absolute; left: 1rem; bottom: 0.9rem; z-index: 2;
  transform: translateY(6px); opacity: 0; transition: all .3s;
}
.gallery-item:hover .gallery-cap { transform: translateY(0); opacity: 1; }
.gallery-cap .t { font-weight: 700; color: var(--white-soft); font-size: 0.95rem; }
.gallery-cap .s { font-size: 0.78rem; color: var(--gold-light); text-transform: uppercase; letter-spacing: 0.1em; }
.gallery-item.is-hidden { display: none; }
.gallery-item .play-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(201,162,75,0.9); color: var(--black); box-shadow: var(--shadow-md);
}
.gallery-item .play-badge svg { width: 26px; height: 26px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: var(--z-modal); display: none;
  background: rgba(5,5,7,0.94); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 1.5rem;
}
.lightbox.open { display: flex; }
.lightbox img, .lightbox iframe {
  max-width: min(1100px, 94vw); max-height: 86vh; width: auto; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border-strong);
}
.lightbox iframe { width: min(1000px, 94vw); aspect-ratio: 16/9; height: auto; }
.lightbox-close, .lightbox-nav {
  position: absolute; background: rgba(255,255,255,0.06); border: 1px solid var(--border-strong);
  color: var(--platinum); width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; transition: all .2s;
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--grad-gold); color: var(--black); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-close svg, .lightbox-nav svg { width: 26px; height: 26px; }
.lightbox-nav.prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-cap { position: absolute; bottom: 1.5rem; left: 0; right: 0; text-align: center; color: var(--silver); font-size: 0.9rem; }

/* ==========================================================================
   Split feature / about
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split.reverse .split-media { order: 2; }
@media (max-width: 880px) { .split.reverse .split-media { order: 0; } }
.split-media { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media .float-badge {
  position: absolute; bottom: 1rem; left: 1rem; padding: 0.9rem 1.2rem;
  border-radius: 14px; background: rgba(8,8,11,0.72); border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px); display: flex; gap: 0.8rem; align-items: center;
}
.split-media .float-badge .n { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; }
.split-media .float-badge .l { font-size: 0.78rem; color: var(--silver); line-height: 1.3; }

.feature-list { display: grid; gap: 1.1rem; margin-top: 1.6rem; }
.feature-list li { display: flex; gap: 0.9rem; }
.feature-list .fi {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  display: grid; place-items: center; color: var(--gold-light);
  background: rgba(201,162,75,0.1); border: 1px solid rgba(201,162,75,0.28);
}
.feature-list .fi svg { width: 22px; height: 22px; }
.feature-list h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--white-soft); margin-bottom: 0.15rem; }
.feature-list p { font-size: 0.9rem; margin: 0; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { position: relative; overflow: hidden; border-radius: clamp(18px, 3vw, 28px); border: 1px solid var(--border-strong); padding: clamp(2.5rem, 6vw, 4.5rem); text-align: center; background: var(--grad-panel); }
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(80% 120% at 50% 0%, rgba(201,162,75,0.18), transparent 60%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 0.8rem; }
.cta-band p { margin: 0 auto 1.8rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

/* ==========================================================================
   Forms
   ========================================================================== */
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--silver); }
.field label .req { color: var(--gold); }
.input, .select, .textarea {
  width: 100%; padding: 0.8rem 1rem; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03); border: 1px solid var(--border-strong);
  color: var(--white-soft); font-family: inherit; font-size: 0.95rem; transition: border-color .2s, box-shadow .2s;
}
.input::placeholder, .textarea::placeholder { color: #6a707b; }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,0.2); }
.textarea { resize: vertical; min-height: 120px; }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C9A24B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.4rem; }
.field-error { font-size: 0.78rem; color: #ff8f8f; display: none; }
.field.invalid .input, .field.invalid .select, .field.invalid .textarea { border-color: #ff6b6b; box-shadow: 0 0 0 3px rgba(255,107,107,0.15); }
.field.invalid .field-error { display: block; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.5rem; }
.form-success {
  display: none; align-items: center; gap: 0.7rem; padding: 1rem 1.2rem; border-radius: var(--radius-sm);
  background: rgba(201,162,75,0.12); border: 1px solid rgba(201,162,75,0.4); color: var(--gold-light); font-weight: 600; margin-bottom: 1rem;
}
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; flex: none; }

/* ==========================================================================
   Contact info blocks
   ========================================================================== */
.info-list { display: grid; gap: 1.2rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-item .ii {
  width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: rgba(201,162,75,0.1); border: 1px solid rgba(201,162,75,0.28); color: var(--gold-light);
}
.info-item .ii svg { width: 22px; height: 22px; }
.info-item h4 { font-family: var(--font-body); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 0.2rem; font-weight: 700; }
.info-item p, .info-item a { color: var(--white-soft); font-weight: 600; font-size: 1rem; }
.info-item a:hover { color: var(--gold-light); }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-strong); box-shadow: var(--shadow-lg); line-height: 0; }
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; filter: grayscale(0.3) contrast(1.05); }

/* Hours table */
.hours-list { display: grid; gap: 0.6rem; }
.hours-list li { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.hours-list li span:first-child { color: var(--silver); }
.hours-list li span:last-child { color: var(--white-soft); font-weight: 600; }
.hours-list li.today { color: var(--gold-light); }
.hours-list li.today span { color: var(--gold-light); }

/* ==========================================================================
   FAQ (accordion)
   ========================================================================== */
.faq { display: grid; gap: 0.8rem; max-width: 820px; margin-inline: auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--grad-panel); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; padding: 1.1rem 1.3rem; background: transparent; border: 0;
  color: var(--white-soft); font-weight: 700; font-size: 1rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q .plus { width: 22px; height: 22px; flex: none; position: relative; transition: transform .3s; color: var(--gold); }
.faq-q[aria-expanded="true"] .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 1.3rem 1.2rem; }
.faq-a p { font-size: 0.95rem; margin: 0; }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero { position: relative; overflow: hidden; padding-block: clamp(3rem, 8vw, 5rem); border-bottom: 1px solid var(--border); }
.page-hero .hero-bg::after { background: linear-gradient(90deg, rgba(11,11,15,0.94), rgba(11,11,15,0.6)); }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1rem; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb svg { width: 14px; height: 14px; color: var(--gold); }
.page-hero p { margin-top: 1rem; max-width: 60ch; color: var(--silver); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: #08080B; border-top: 1px solid var(--border); padding-top: clamp(3rem, 7vw, 5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: clamp(1.6rem, 4vw, 3rem); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer img.f-logo { width: 200px; margin-bottom: 1.2rem; }
.footer p { font-size: 0.9rem; }
.footer h4 { font-family: var(--font-body); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 1.1rem; font-weight: 700; }
.footer-links { display: grid; gap: 0.6rem; }
.footer-links a { font-size: 0.92rem; color: var(--text-muted); transition: color .2s; display: inline-flex; align-items: center; gap: 0.45rem; }
.footer-links a:hover { color: var(--gold-light); }
.footer-links svg { width: 15px; height: 15px; color: var(--gold); flex: none; }
.footer-social { display: flex; gap: 0.5rem; margin-top: 1rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border); display: grid; place-items: center; transition: all .2s; }
.footer-social a:hover { border-color: var(--gold); background: rgba(201,162,75,0.1); }
.footer-social svg { width: 18px; height: 18px; color: var(--silver); }
.footer-social a:hover svg { color: var(--gold-light); }
.footer-map { border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border); line-height: 0; }
.footer-map iframe { width: 100%; height: 180px; border: 0; filter: grayscale(0.4); }
.footer-bottom { border-top: 1px solid var(--border); margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-block: 1.6rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.82rem; color: var(--text-muted); }
.footer-bottom a { color: var(--silver); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ==========================================================================
   Mobile sticky action bar (Call + WhatsApp)
   ========================================================================== */
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-sticky); display: none; gap: 0.6rem; padding: 0.6rem 0.8rem calc(0.6rem + env(safe-area-inset-bottom)); background: rgba(8,8,11,0.92); backdrop-filter: blur(12px); border-top: 1px solid var(--border); }
.mobile-bar a { flex: 1; min-height: 50px; border-radius: 12px; font-weight: 700; font-size: 0.95rem; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; }
.mobile-bar svg { width: 20px; height: 20px; }
.mobile-bar .call { background: var(--grad-chrome); color: #16181D; }
.mobile-bar .wa { background: linear-gradient(120deg, #25D366, #128C7E); color: #fff; }
@media (max-width: 768px) { .mobile-bar { display: flex; } body { padding-bottom: 74px; } }

/* ==========================================================================
   Scroll reveal animations
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal.in { 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; } }

/* Floating parallax bits */
.float { animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* Accessibility utilities */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 1rem; top: -60px; z-index: var(--z-overlay); background: var(--grad-gold); color: var(--black); padding: 0.7rem 1.2rem; border-radius: 8px; font-weight: 700; transition: top .2s; }
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 2px; border-radius: 4px; }

/* Utility spacing */
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.muted { color: var(--text-muted); }
