/* ==========================================================
   On-Site Detailing™ — Global Stylesheet v3.0
   Design: V1-A "Clean Left" — Urbanist font, #FFC600 gold
   ========================================================== */

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0A0A0A; }
::-webkit-scrollbar-thumb { background: #FFC600; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #e6b200; }
html { scrollbar-color: #FFC600 #0A0A0A; scrollbar-width: thin; }

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:          #0A0A0A;
  --surface:     #111111;
  --surface2:    #1A1A1A;
  --surface3:    #222222;

  /* Brand Yellow */
  --gold:        #FFC600;
  --gold-light:  #FFD333;
  --gold-dark:   #D4A500;
  --gold-alpha:  rgba(255, 198, 0, 0.10);
  --gold-border: rgba(255, 198, 0, 0.28);

  /* Text */
  --white:       #FFFFFF;
  --text:        #EEEEEE;
  --text-muted:  #999999;
  --text-dim:    #555555;

  /* Borders */
  --border:      #2A2A2A;

  /* Typography */
  --font:        'Urbanist', 'Helvetica Neue', sans-serif;

  /* Spacing scale (8px base) */
  --sp-1:  8px;
  --sp-2:  16px;
  --sp-3:  24px;
  --sp-4:  32px;
  --sp-5:  40px;
  --sp-6:  48px;
  --sp-8:  64px;
  --sp-10: 80px;
  --sp-12: 96px;
  --sp-16: 128px;

  /* Radius */
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --transition: 0.22s ease;
  --transition-slow: 0.35s ease;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: clamp(1rem, 2vw, 1.15rem); }
h5 { font-size: 0.95rem; }
p { font-size: 1rem; line-height: 1.72; color: var(--text-muted); }
p.lead { font-size: 1.05rem; color: var(--text); }

/* ── Eyebrow Label ────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-2);
}
.eyebrow::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Containers ───────────────────────────────────────────── */
.container     { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 var(--sp-3); }
.container-sm  { max-width: 760px; }
.container-lg  { max-width: 1340px; }

/* ── Section Spacing ──────────────────────────────────────── */
.section    { padding: var(--sp-12) 0; }
.section-sm { padding: var(--sp-8) 0; }
.section-lg { padding: var(--sp-16) 0; }
.bg-surface  { background: var(--surface); }
.bg-surface2 { background: var(--surface2); }

/* ── Section Header ───────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: var(--sp-8); }
.section-header h2 { margin-bottom: var(--sp-2); }
.section-header p { max-width: 560px; margin: 0 auto; }

/* ── Gold Accent Line ─────────────────────────────────────── */
.gold-line {
  width: 4px;
  height: 48px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 auto var(--sp-3);
}
.gold-line.left { margin-left: 0; }
.gold-line.h { width: 48px; height: 4px; }
.gold-line.h.center { margin: var(--sp-2) auto var(--sp-3); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: #0A0A0A;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 198, 0, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-border);
}
.btn-outline-gold:hover {
  background: var(--gold-alpha);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: var(--sp-2); align-items: center; }

/* ── Navigation ───────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px var(--sp-3);
  transition: all var(--transition-slow);
}
.site-nav.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px var(--sp-3);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}
.nav-logo img { height: 34px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.nav-cta {
  background: var(--gold);
  color: #0A0A0A;
  padding: 8px 18px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  margin-left: var(--sp-1);
}
.nav-links a.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > .nav-drop-toggle {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font-family: var(--font);
}
.nav-dropdown > .nav-drop-toggle:hover { color: var(--white); }
.nav-dropdown > .nav-drop-toggle svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  transition: transform 0.2s;
}
.nav-dropdown:hover > .nav-drop-toggle svg { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 200px;
  background: #141414;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 100;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.nav-dropdown:hover .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-drop-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-drop-menu a:hover {
  color: var(--gold);
  background: rgba(255,198,0,0.06);
}

.nav-mobile-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.nav-mobile-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #0A0A0A;
  z-index: 999;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  overflow-y: auto;
  padding: 80px 32px 40px;
}
.nav-drawer.open { display: flex; }
.nav-drawer > a {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  transition: color var(--transition);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
}
.nav-drawer > a:hover { color: var(--gold); }
.nav-drawer .drawer-company {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 8px;
}
.nav-drawer .drawer-company .drawer-company-label {
  font-size: 0.65rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  padding: 12px 0 6px;
}
.nav-drawer .drawer-company a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  padding: 8px 0;
  text-decoration: none;
}
.nav-drawer .drawer-company a:hover { color: var(--gold); }
.nav-drawer .drawer-cta {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.nav-drawer .drawer-cta a {
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 0;
  border-radius: 8px;
  text-decoration: none;
}
.nav-drawer-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font);
  line-height: 1;
}

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 88vh;
  max-height: 820px;
  min-height: 540px;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0.2) 100%);
}
.hero-logo {
  position: absolute;
  top: 28px;
  left: 32px;
  z-index: 10;
  height: 38px;
  width: auto;
}
.hero-hamburger {
  position: absolute;
  top: 22px;
  right: 28px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hero-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.hero-hamburger:hover span { background: var(--gold); }

/* Stats sidebar */
.stats-sidebar {
  position: absolute;
  right: 44px;
  bottom: 80px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
}
.stat-item { text-align: right; }
.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
}
.stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.15);
  align-self: flex-end;
  margin-right: 4px;
}

/* Hero content */
.hero-content {
  position: absolute;
  top: 50%;
  transform: translateY(-45%);
  left: 0;
  z-index: 10;
  padding-left: 68px;
  max-width: 580px;
}
.hero-content::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 8px;
  bottom: 8px;
  width: 4px;
  background: var(--gold);
  border-radius: 2px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 12px 4px 10px;
  background: rgba(255,198,0,0.12);
  border: 1px solid rgba(255,198,0,0.35);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.hero-headline {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin-bottom: 32px;
  max-width: 420px;
}
.hero-btn-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Page header (non-home pages) */
.page-header {
  padding: 160px 0 80px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gold);
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,198,0,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: var(--sp-2); }
.page-header p { max-width: 560px; font-size: 1.05rem; }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.card-body { padding: var(--sp-4); }
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-alpha);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-2);
  color: var(--gold);
  flex-shrink: 0;
}
.card-icon svg { color: var(--gold); }

/* ── Grid Layouts ─────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--sp-4); }

/* ── Feature Row (image + text split) ─────────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-text .eyebrow { margin-bottom: var(--sp-2); }
.feature-text h2 { margin-bottom: var(--sp-2); }
.feature-text p { margin-bottom: var(--sp-4); }

/* ── Icon List ────────────────────────────────────────────── */
.icon-list { display: flex; flex-direction: column; gap: var(--sp-2); }
.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}
.icon-list li svg, .icon-list li .check-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.check-icon {
  width: 18px;
  height: 18px;
  background: var(--gold-alpha);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 11px;
  flex-shrink: 0;
}

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-6) 0;
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  text-align: center;
}
.stats-bar-item h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
}
.stats-bar-item p {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonial-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: var(--sp-2);
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: var(--sp-3);
  font-style: italic;
}
.testimonial-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}
.testimonial-location {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── FAQ Accordion ────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--sp-3) 0;
  font-family: var(--font);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-2);
  cursor: pointer;
  transition: color var(--transition);
  background: none;
  border: none;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 0 var(--sp-3);
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--text-muted);
}
.faq-item.open .faq-answer { display: block; }

/* ── CTA Strip ────────────────────────────────────────────── */
.cta-strip {
  background: var(--gold);
  padding: var(--sp-8) 0;
}
.cta-strip h2 { color: #0A0A0A; margin-bottom: var(--sp-2); }
.cta-strip p { color: rgba(0,0,0,0.65); }
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.btn-cta-dark {
  background: #0A0A0A;
  color: var(--gold);
  border: 2px solid #0A0A0A;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.btn-cta-dark:hover {
  background: #111;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--sp-12) 0 var(--sp-4);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-8);
}
.footer-logo { margin-bottom: var(--sp-3); }
.footer-logo img { height: 32px; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; margin-bottom: var(--sp-3); }
.footer-social { display: flex; gap: var(--sp-2); }
.footer-social a {
  width: 36px;
  height: 36px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
  font-size: 0.9rem;
}
.footer-social a:hover {
  background: var(--gold-alpha);
  border-color: var(--gold-border);
  color: var(--gold);
}
.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: var(--sp-3);
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-dim); }
.footer-bottom a { color: var(--text-dim); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ── Mobile Sticky Bar ────────────────────────────────────── */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: #0A0A0A;
  border-top: 1px solid var(--border);
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
}
.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  gap: 4px;
  transition: color var(--transition);
  border-right: 1px solid var(--border);
}
.mobile-bar a:last-child { border-right: none; }
.mobile-bar a.book-btn {
  background: var(--gold);
  color: #0A0A0A;
}
.mobile-bar a:hover { color: var(--gold); }
.mobile-bar a.book-btn:hover { background: var(--gold-light); color: #0A0A0A; }

/* ── Scroll Animation ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── Service Package Cards ────────────────────────────────── */
.package-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  position: relative;
  transition: all var(--transition);
}
.package-card.featured {
  border-color: var(--gold-border);
  background: linear-gradient(145deg, #1A1A1A 0%, #141414 100%);
}
.package-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0A0A0A;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 4px 16px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.package-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.package-level {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.package-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.package-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
}
.package-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--sp-5);
}
.package-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.package-feature .pf-icon {
  width: 18px;
  height: 18px;
  background: var(--gold-alpha);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Gallery / Masonry ────────────────────────────────────── */
.gallery-grid {
  columns: 3;
  column-gap: var(--sp-3);
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--sp-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.3); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius-lg); }
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font);
  line-height: 1;
}

/* ── Contact Form ─────────────────────────────────────────── */
.form-group { margin-bottom: var(--sp-3); }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: var(--font);
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-border);
  box-shadow: 0 0 0 3px rgba(255,198,0,0.08);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; cursor: pointer; }

/* ── Badge / Chip ─────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: var(--gold-alpha);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Divider ──────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
  margin: var(--sp-8) 0;
}

/* ── Gold Accent Vertical Line for Sections ───────────────── */
.section-accent {
  display: flex;
  gap: var(--sp-4);
}
.section-accent-line {
  width: 4px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
  min-height: 100%;
}

/* ── Map Embed ────────────────────────────────────────────── */
.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/7;
  border: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .site-nav .nav-links { display: none; }
  .nav-mobile-btn { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.reverse { direction: ltr; }
  .gallery-grid { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
  .mobile-bar { display: grid; }
  body { padding-bottom: 64px; }

  .hero-content {
    bottom: 70px;
    padding-left: 48px;
    max-width: calc(100vw - 32px);
  }
  .hero-content::before { left: 20px; }
  .stats-sidebar { right: 16px; bottom: 70px; gap: 14px; }
  .stat-number { font-size: 22px; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .page-header { padding: 130px 0 60px; }
}

@media (max-width: 600px) {
  .stats-sidebar { display: none; }
  .hero-content { max-width: calc(100vw - 20px); bottom: 56px; }
  .hero-btn-row { flex-direction: column; align-items: flex-start; }
  .hero-btn-row .btn { width: 100%; justify-content: center; }
  .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .stats-bar-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Utilities ────────────────────────────────────────────── */
/* ── Stats Banner (Animated) ───────────────────────────────── */
.stats-banner {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-8) 0;
  position: relative;
  overflow: hidden;
}
.stats-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.5;
}
.stats-banner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  text-align: center;
}
.stats-banner-item h3 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1;
}
.stats-banner-item p {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stats-banner-icon {
  color: var(--gold);
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
}

/* ── Two Ways Section ─────────────────────────────────────── */
.two-ways-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
}
.two-ways-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.two-ways-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.two-ways-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.two-ways-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.two-ways-card:hover .two-ways-card-img img {
  transform: scale(1.05);
}
.two-ways-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
}
.two-ways-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}
.two-ways-card-body {
  padding: var(--sp-5);
}
.two-ways-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.two-ways-card-body p {
  font-size: 0.9rem;
  margin-bottom: var(--sp-3);
}
.two-ways-locations {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--sp-3);
}
.two-ways-loc {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
}
.two-ways-context {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 21/7;
}
.two-ways-context img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.two-ways-context-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: center;
  padding: var(--sp-6);
}
.two-ways-context-overlay p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 400px;
  line-height: 1.6;
}

/* ── Premium Service Cards ────────────────────────────────── */
.services-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.service-premium-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-premium-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.service-premium-card:hover::before { opacity: 1; }
.service-premium-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.service-premium-card.featured {
  border-color: var(--gold-border);
  background: linear-gradient(145deg, rgba(255,198,0,0.04) 0%, var(--surface2) 100%);
}
.service-premium-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.service-premium-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-premium-card:hover .service-premium-img img {
  transform: scale(1.05);
}
.service-premium-level {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
}
.service-premium-popular {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: #0A0A0A;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: 4px;
  text-transform: uppercase;
}
.service-premium-body {
  padding: var(--sp-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-premium-body h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.service-premium-body > p {
  font-size: 0.9rem;
  margin-bottom: var(--sp-3);
}
.service-premium-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--sp-4);
  flex: 1;
}
.service-premium-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
}

/* ── Why Choose Us Parallax ───────────────────────────────── */
.why-choose-parallax {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--sp-12) 0;
}
.why-choose-bg {
  position: absolute;
  inset: -20% 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}
.why-choose-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.88) 50%, rgba(10,10,10,0.8) 100%);
  z-index: 1;
}
.why-choose-content {
  position: relative;
  z-index: 2;
}
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.why-choose-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: var(--sp-3);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.why-choose-item:hover {
  background: rgba(255,198,0,0.04);
  border-color: var(--gold-border);
}
.why-choose-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.why-choose-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.why-choose-icon {
  width: 32px;
  height: 32px;
  background: var(--gold-alpha);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-choose-item .osd-icon.sm {
  margin-top: 2px;
}

/* ── Testimonials Grid (2-column for 6 items) ─────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

/* ── Gift Certificates Section ────────────────────────────── */
.gift-section {
  padding: var(--sp-12) 0;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%);
}
.gift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}
.gift-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gift-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gift-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gift-visual-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--sp-4);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gold-border);
}
.gift-content h2 {
  margin-bottom: var(--sp-2);
}
.gift-occasions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--sp-3);
}
.gift-occasion-item {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.gift-occasion-item:hover {
  border-color: var(--gold-border);
  background: var(--gold-alpha);
}

/* ── Responsive additions ─────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-banner-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
  .services-premium-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .why-choose-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .two-ways-grid { grid-template-columns: 1fr; }
  .two-ways-context { aspect-ratio: 16/7; }
  .gift-grid { grid-template-columns: 1fr; }
  .gift-visual { max-height: 300px; }
  .why-choose-bg { background-attachment: scroll; }
  .why-choose-parallax { min-height: auto; padding: var(--sp-10) 0; }
  .testimonials-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 0 4px var(--sp-3) 4px;
    scrollbar-width: none;
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }
  .testimonials-grid .testimonial-card {
    flex: 0 0 78%;
    min-width: 78%;
    scroll-snap-align: start;
    margin: 0;
  }
  .stats-banner-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .stats-banner-grid { grid-template-columns: 1fr 1fr; }
  .gift-occasions { gap: 8px; }
}

/* ── Service Area Map Section ──────────────────────────────── */
.service-area-map {
  position: relative;
  padding: var(--sp-12) 0;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}
.service-area-map-bg {
  position: absolute;
  inset: -10%;
  z-index: 0;
  filter: grayscale(100%) brightness(0.35);
  pointer-events: none;
}
.service-area-map-bg iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}
.service-area-map-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 40%, rgba(10,10,10,0.5) 100%);
}

/* ── Custom Brand Icons ───────────────────────────────────── */
.osd-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,198,0,0.12) 0%, rgba(255,198,0,0.04) 100%);
  border: 1px solid rgba(255,198,0,0.18);
  flex-shrink: 0;
}
.osd-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.osd-icon.sm {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}
.osd-icon.sm svg { width: 17px; height: 17px; }
.osd-icon.lg {
  width: 56px;
  height: 56px;
  border-radius: 14px;
}
.osd-icon.lg svg { width: 26px; height: 26px; }
.osd-icon-inline {
  display: inline-flex;
  vertical-align: middle;
}
.osd-icon-inline svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Add-On Carousel ──────────────────────────────────────── */
.addon-carousel-wrap {
  position: relative;
  padding: 0 48px;
}
.addon-carousel-wrap::before,
.addon-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 3;
  pointer-events: none;
}
.addon-carousel-wrap::before {
  left: 48px;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}
.addon-carousel-wrap::after {
  right: 48px;
  background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
}
.addon-carousel {
  display: flex;
  gap: var(--sp-3);
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 20px;
}
.addon-carousel::-webkit-scrollbar { display: none; }
.addon-carousel .addon-tile {
  scroll-snap-align: start;
  flex: 0 0 calc(33.33% - 12px);
  min-width: 280px;
}
.addon-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.addon-carousel-btn:hover {
  background: var(--gold-alpha);
  border-color: var(--gold-border);
}
.addon-carousel-prev { left: 0; }
.addon-carousel-next { right: 0; }
@media (max-width: 1024px) {
  .addon-carousel .addon-tile { flex: 0 0 calc(33.33% - 10px); }
  .addon-carousel-wrap { padding: 0 40px; }
}
@media (max-width: 768px) {
  .addon-carousel .addon-tile { flex: 0 0 calc(50% - 8px); min-width: 200px; }
}
@media (max-width: 500px) {
  .addon-carousel .addon-tile { flex: 0 0 80%; }
  .addon-carousel-wrap { padding: 0 36px; }
  .addon-carousel-wrap::before,
  .addon-carousel-wrap::after { display: none; }
}

/* ── Add-On Image Tiles ───────────────────────────────────── */
.addon-tile {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.addon-tile:hover {
  border-color: var(--gold-border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}
.addon-tile img:first-child {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  transition: transform 0.5s ease;
}
.addon-tile:hover img { transform: scale(1.05); }
.addon-tile-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.75) 60%, rgba(10,10,10,0.95) 100%);
}
.addon-tile-content {
  position: relative;
  z-index: 2;
  padding: var(--sp-4);
}
.addon-tile-content h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 4px;
}
.addon-tile-content p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.45;
  margin-bottom: 8px;
}
.addon-tile-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Package Card Hero Image ──────────────────────────────── */
.pkg-hero {
  position: relative;
  width: calc(100% + 48px);
  margin: -24px -24px var(--sp-4) -24px;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.package-card .pkg-hero {
  width: calc(100% + var(--sp-5) * 2);
  margin: calc(var(--sp-5) * -1) calc(var(--sp-5) * -1) var(--sp-4) calc(var(--sp-5) * -1);
}
.pkg-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.pkg-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.7) 60%, rgba(10,10,10,0.92) 100%);
}
.pkg-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-4) var(--sp-5);
  z-index: 2;
}
.pkg-hero-content .package-level {
  margin-bottom: 4px;
}
.pkg-hero-content .package-title {
  font-size: 1.8rem;
  margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.pkg-hero-content .package-tagline {
  color: rgba(255,255,255,0.75);
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* ── Nav Logo ──────────────────────────────────────────────── */

/* ── Stats Banner v2 ──────────────────────────────────────── */
.stats-banner-v2 {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-6) 0;
  position: relative;
}
.stats-banner-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.35;
}
.stats-v2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stats-v2-grid .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: var(--sp-2) 0;
}
.stats-v2-grid .stat-item + .stat-item {
  border-left: 1px solid var(--border);
}
.stat-number {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Two Ways v2 ──────────────────────────────────────────── */
.two-ways-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
}
.tw-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.tw-card:hover {
  border-color: var(--gold-border);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), inset 0 0 0 1px rgba(255,198,0,0.08);
}
.tw-card .tw-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.tw-card .tw-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.55);
}
.tw-card:hover .tw-bg img { transform: scale(1.03); filter: brightness(0.6); }
.tw-card .tw-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0.45) 40%, rgba(10,10,10,0.8) 65%, rgba(10,10,10,0.95) 100%);
  z-index: 1;
}
.tw-card .tw-content {
  position: relative;
  z-index: 2;
  padding: var(--sp-6);
}
.tw-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,198,0,0.1);
  border: 1px solid rgba(255,198,0,0.22);
  border-radius: 6px;
  padding: 5px 14px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-2);
}
.tw-card .tw-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}
.tw-card .tw-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: var(--sp-3);
  max-width: 380px;
}
.tw-locations {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--sp-3);
}
.tw-loc {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.tw-loc .osd-icon-inline svg { width: 14px; height: 14px; }

/* ── Gift Occasions v2 ────────────────────────────────────── */
.gift-occasions-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: var(--sp-3);
}
.gift-occ {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.gift-occ:hover {
  border-color: var(--gold-border);
  background: var(--gold-alpha);
}
.gift-occ .osd-icon-inline svg { width: 15px; height: 15px; }

/* ── Responsive v2 ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-v2-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-v2-grid .stat-item:nth-child(3) { border-left: none; }
  .stats-v2-grid .stat-item:nth-child(3),
  .stats-v2-grid .stat-item:nth-child(4) { border-top: 1px solid var(--border); padding-top: var(--sp-3); }
  .two-ways-v2 { grid-template-columns: 1fr; }
  .tw-card { min-height: 420px; }
  .gift-occasions-v2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .tw-card { min-height: 380px; }
  .nav-logo-wordmark { font-size: 0.88rem; }
  .gift-occasions-v2 { grid-template-columns: 1fr 1fr; }
  .why-choose-bg { background-attachment: scroll; background-size: cover; background-position: center center; inset: -30% 0; }
  .home-gallery-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .stats-v2-grid { grid-template-columns: 1fr 1fr; }
  .gift-occasions-v2 { grid-template-columns: 1fr; }
}

/* ── Utilities ────────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.mt-1 { margin-top: var(--sp-1); }
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mb-1 { margin-bottom: var(--sp-1); }
.mb-2 { margin-bottom: var(--sp-2); }
.mb-3 { margin-bottom: var(--sp-3); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-5 { margin-bottom: var(--sp-5); }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-2 { gap: var(--sp-2); }
.gap-3 { gap: var(--sp-3); }
.w-full { width: 100%; }
.hidden { display: none; }

@keyframes badgeGlow {
  0% { box-shadow: 0 0 12px rgba(255,198,0,0.3), 0 0 30px rgba(255,198,0,0.1); }
  100% { box-shadow: 0 0 22px rgba(255,198,0,0.55), 0 0 50px rgba(255,198,0,0.25); }
}

/* ══ GLOBAL OVERFLOW GUARD ══════════════════════════════════ */
html, body { overflow-x: hidden; }
.membership-grid { grid-template-columns: 1fr 1fr; }

/* ══ MOBILE OPTIMIZATION ═══════════════════════════════════ */
@media (max-width: 768px) {
  .membership-grid { grid-template-columns: 1fr !important; }
  /* Tighter spacing on mobile */
  .section { padding: var(--sp-8) 0; }
  .section-header h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
  .section-header p { font-size: 0.88rem; }
  .eyebrow { font-size: 0.7rem; }

  /* Hero adjustments */
  .hero { height: 75vh; max-height: 600px; }
  .hero-content h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .hero-content p { font-size: 0.85rem; }

  /* Stats banner — horizontal scroll on small screens */
  .stats-banner-grid { gap: var(--sp-3); }
  .stats-banner-grid .stat-number { font-size: 1.6rem; }
  .stats-banner-grid .stat-label { font-size: 0.7rem; }

  /* Package cards */
  .services-premium-grid { gap: var(--sp-4); }
  .service-premium-body { padding: var(--sp-4); }
  .service-premium-features li { font-size: 0.82rem; }
  .pkg-hero { aspect-ratio: 16/9; }

  /* Two Ways cards */
  .tw-card { min-height: 320px; }
  .tw-card-content h3 { font-size: 1.3rem; }

  /* Why Choose parallax section */
  .why-choose-parallax { padding: var(--sp-8) 0; }
  .why-choose-grid .why-item { padding: var(--sp-3); }
  .why-choose-grid .why-item h4 { font-size: 0.9rem; }
  .why-choose-grid .why-item p { font-size: 0.78rem; }

  /* Carousel tiles */
  .addon-tile h4 { font-size: 0.9rem; }
  .addon-tile p { font-size: 0.75rem; }
  .addon-tile-content { padding: var(--sp-3); }

  /* FAQ search */
  .faq-chips { gap: 6px; }
  .faq-chip { padding: 6px 14px; font-size: 0.75rem; }

  /* Gift section */
  .gift-visual { max-height: 250px; }

  /* Map section */
  .service-area-map { min-height: 400px; }
  .service-area-content { padding: var(--sp-4); }
  .service-area-content h2 { font-size: 1.4rem; }

  /* Booking modal */
  #bookingModal > div { padding: 32px 24px; margin: 16px; }

  /* Footer */
  .footer-logo img { height: 32px; }
  .footer-bottom { flex-direction: column; gap: var(--sp-2); text-align: center; }

  /* Buttons */
  .btn-group { flex-direction: column; width: 100%; }
  .btn-group .btn { width: 100%; justify-content: center; text-align: center; }

  /* CTA strip */
  .cta-strip { padding: var(--sp-8) 0; }
  .cta-strip h2 { font-size: clamp(1.3rem, 5vw, 1.8rem); }
}

@media (max-width: 480px) {
  /* Extra small phones */
  .container { padding: 0 var(--sp-2); }
  .hero-content { padding-left: 24px; }
  .hero-content::before { left: 8px; }
  .hero-content h1 { font-size: 1.5rem; }

  /* Stats — 2-col stays but tighter */
  .stats-v2-grid .stat-number { font-size: 1.5rem; }
  .stats-v2-grid .stat-label { font-size: 0.65rem; }

  /* Package cards full bleed feel */
  .service-premium-card { border-radius: var(--radius); }
  .pkg-hero { border-radius: var(--radius) var(--radius) 0 0; }

  /* Carousel */
  .addon-carousel-wrap { padding: 0 28px; }
  .addon-carousel-btn { width: 28px; height: 28px; }

  /* Two Ways */
  .tw-card { min-height: 280px; border-radius: var(--radius); }

  /* Service premium popular badge */
  .service-premium-popular { font-size: 0.58rem; padding: 4px 10px; }

  /* Booking modal tighter */
  #bookingModal > div { padding: 24px 16px; }
  #bookingModal h3 { font-size: 1.2rem; }

  /* FAQ */
  .faq-question { font-size: 0.88rem; padding: 14px 0; }
  .faq-answer { font-size: 0.84rem; }
  .faq-chips { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
  .faq-chip { flex-shrink: 0; }

  /* Nav logo */
  .nav-logo img { height: 28px; }

  /* Page headers */
  .page-header { padding: 110px 0 50px; }
  .page-header h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .page-header p { font-size: 0.85rem; }

  /* Gold line */
  .gold-line.h { width: 40px; }
}

/* Price badges on package cards */
.price-badge {
  background: rgba(0,0,0,0.85);
  color: #FFC600;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 10px;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  line-height: 1.3;
  white-space: nowrap;
}
