/* ============================================
   CSS VARIABLES & RESET
============================================ */
:root {
  --black:    #0a0a0a;
  --charcoal: #111111;
  --dark:     #1a1a1a;
  --mid:      #2a2a2a;
  --border:   #333333;
  --muted:    #666666;
  --light:    #aaaaaa;
  --white:    #f5f0e8;
  --gold:     #c9a84c;
  --gold-lt:  #e2c97e;
  --gold-dk:  #9e7a2a;
  --accent:   #d4af5a;
  /* Typography: 1 heading, 1 body, 1 accent */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --font-accent: 'Dancing Script', cursive;
  --font-display: var(--font-heading);
  --font-script: var(--font-accent);
  --nav-h: 70px;
  --breadcrumb-bar-h: 2.125rem;
  --transition: .35s cubic-bezier(.4,0,.2,1);
  --radius: 4px;
  --gold-glow: 0 0 40px rgba(201,168,76,.15);
  /* Type scale (fluid where noted) */
  --step--1: 0.6875rem;
  --step-0: 0.8125rem;
  --step-1: 0.9rem;
  --step-2: 1rem;
  --step-3: clamp(2rem, 4vw, 3rem);
  --step-4: clamp(2.625rem, 5.5vw, 4.25rem);
  /* Spacing */
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 3rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; visibility: visible; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================
   UTILITY
============================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.gold { color: var(--gold); }
.script { font-family: var(--font-script); color: var(--gold); }
/* Section header block: eyebrow → title → optional sub → rule (.divider) */
.section-header {
  max-width: 600px;
}
.section-header .section-label {
  margin-bottom: 0.75rem;
}
.section-label {
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
}
.section-title em {
  font-style: italic;
  color: var(--gold-lt);
}
.section-header > .section-title {
  margin-bottom: 0.35rem;
}
.section-sub {
  font-size: var(--step-1);
  color: var(--muted);
  line-height: 1.65;
  max-width: 500px;
}
.section-sub--narrow {
  max-width: 380px;
  line-height: 1.7;
}
.divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: var(--space-lg) 0;
}
/* FAQ column: eyebrow-only header */
.section-header--faq {
  max-width: none;
  margin-bottom: 1rem;
}
.section-header--faq .section-label {
  margin-bottom: 0;
}
#gallery .section-header {
  margin-bottom: var(--space-xl);
}
#reviews .section-header {
  margin-bottom: 1.5rem;
}
#about-owner .section-header {
  margin-bottom: var(--space-xl);
}
#location .section-header {
  margin-bottom: var(--space-xl);
}
#contact .contact-grid > div:first-child > .section-header {
  margin-bottom: 2.5rem;
}
.hero-zip-block {
  margin-bottom: var(--space-lg);
  padding: .85rem;
  border: 1px solid rgba(201,168,76,.45);
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(180deg, rgba(201,168,76,.11), rgba(201,168,76,.04));
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.fee-panel__cta {
  margin-top: var(--space-md);
  width: 100%;
  justify-content: center;
  font-size: var(--step-0);
}
.footer-hours-note {
  font-size: var(--step-0);
  color: var(--muted);
  margin-top: var(--space-md);
}
.reveal--delay-1 { transition-delay: 0.05s; }
.reveal--delay-2 { transition-delay: 0.1s; }
.reveal--delay-3 { transition-delay: 0.15s; }
.reveal--delay-4 { transition-delay: 0.2s; }
.reveal--delay-5 { transition-delay: 0.25s; }
.btn-primary {
  display: inline-flex; align-items: center; gap: .6rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(201,168,76,.25);
  white-space: nowrap;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,.4);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: .6rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .85rem 1.8rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-secondary:hover {
  background: rgba(201,168,76,.08);
  transform: translateY(-2px);
}

/* ============================================
   NOISE TEXTURE OVERLAY
============================================ */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .4;
}

/* ============================================
   LOCATION HEADER + BREADCRUMB
============================================ */
.location-top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  transition: var(--transition);
}
.location-top-bar #nav {
  position: static;
  height: var(--nav-h);
  border-bottom: none;
  background: transparent;
}
.breadcrumb-wrap {
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  min-height: var(--breadcrumb-bar-h);
  display: flex;
  align-items: center;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.breadcrumb-link {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-link:hover {
  color: var(--gold);
}
.breadcrumb-sep {
  color: var(--border);
  user-select: none;
}
.breadcrumb-current {
  color: var(--white);
  font-weight: 600;
}
body.location-page .mobile-nav {
  top: calc(var(--breadcrumb-bar-h) + var(--nav-h));
}
body.location-page .hero .hero__wrap {
  padding-top: calc(clamp(104px, 14vw, 136px) + var(--breadcrumb-bar-h));
}
@media (max-width: 768px) {
  body.location-page .hero .hero__wrap {
    padding-top: calc(92px + var(--breadcrumb-bar-h));
  }
}

/* ============================================
   STICKY NAVIGATION
============================================ */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid rgba(201,168,76,.12);
  transition: var(--transition);
}
#nav.scrolled {
  height: 58px;
  background: rgba(10,10,10,.97);
  border-bottom-color: rgba(201,168,76,.2);
}
.nav-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  line-height: 1;
}
.brand__logo {
  display: block;
  height: 72px;
  width: auto;
  object-fit: contain;
  transition: height 0.35s ease;
}
#nav.scrolled .brand__logo {
  height: 48px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .05em;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--light);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  display: flex; align-items: center; gap: 1rem;
}
.nav-phone {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .08em;
  color: var(--gold);
  text-transform: uppercase;
  transition: color .2s;
}
.nav-phone:hover { color: var(--gold-lt); }
.nav-phone svg { width:16px; height:16px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.lang-flag {
  display: block;
  width: 22px;
  height: auto;
  aspect-ratio: 3 / 2;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.lang-switch {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: var(--radius);
  transition: var(--transition);
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}
.lang-switch__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
  white-space: nowrap;
}
.lang-switch:hover {
  color: var(--white);
  border-color: rgba(201, 168, 76, 0.55);
  background: rgba(201, 168, 76, 0.06);
}
.lang-switch.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 168, 76, 0.65);
  box-shadow: inset 0 0 0 1px rgba(201, 168, 76, 0.25);
  cursor: default;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 32px; height: 32px;
  cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(10,10,10,.98);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem 2rem;
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  /* opacity:0 alone still leaves links hit-testable over the page below */
  pointer-events: none;
  transition: var(--transition);
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.mobile-nav ul a {
  font-size: .9rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--light);
}
.mobile-nav .mn-call {
  margin-top: 1.5rem;
  display: flex;
}

/* ============================================
   HERO
============================================ */
#hero {
  min-height: clamp(720px, 85vh, 980px);
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--black);
  isolation: isolate;
}

/* Hero background */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(5,7,10,.65) 0%, rgba(5,7,10,.4) 35%, rgba(5,7,10,.18) 60%, transparent 75%),
    radial-gradient(ellipse 120% 80% at 20% 50%, transparent 50%, rgba(5,7,10,.25) 100%),
    image-set(url("./images/Background-960.webp") 1x, url("./images/Background-1600.webp") 2x) 55% center / cover no-repeat;
  filter: blur(3px) saturate(1.12) brightness(.88) contrast(1.06);
  transform: scale(1.02);
  z-index: -3;
}

/* Bottom fade into next section */
#hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(220px, 28vh);
  background: linear-gradient(to top, var(--black) 0%, rgba(10,10,10,.92) 25%, rgba(10,10,10,.4) 70%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

/* Hero layout & van */
.hero__wrap {
  position: relative;
  z-index: 5;
  padding: 120px 0 64px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 28px;
  min-height: 600px;
}
.hero__left {
  max-width: 640px;
}
.hero__right {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@keyframes van-move {
  0%, 100% { transform: translate(4cm, 10px) rotate(-1deg); }
  50% { transform: translate(calc(4cm + 12px), 4px) rotate(-0.6deg); }
}
@keyframes van-move-mobile {
  0%, 100% { transform: translate(0, 0) rotate(-0.5deg) scale(1); }
  50% { transform: translate(0, 6px) rotate(-0.5deg) scale(1.02); }
}
.van {
  position: relative;
  z-index: 1;
  width: min(760px, 48vw);
  transform: translate(4cm, 10px) rotate(-1deg);
  filter: drop-shadow(0 30px 44px rgba(0,0,0,.62));
  will-change: transform;
  animation: van-move 4s ease-in-out infinite;
}
.vanShadow {
  position: absolute;
  z-index: 0;
  right: 40px;
  bottom: 105px;
  width: min(520px, 38vw);
  height: 120px;
  background: radial-gradient(closest-side, rgba(0,0,0,.55), transparent 70%);
  filter: blur(18px);
  transform: rotate(-2deg);
  pointer-events: none;
}

.hero-content { max-width: 560px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 32px; height: 1px;
  background: var(--gold);
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: .5rem;
  color: #fff;
}
.hero-h1 em {
  font-style: normal;
  color: #fff;
  display: block;
}
@keyframes hero-script-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-script {
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold-lt);
  display: block;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  opacity: 0;
  animation: hero-script-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}
.hero-sub {
  font-size: 1.0625rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  max-width: 26rem;
  margin-bottom: 2.5rem;
  line-height: 1.65;
  letter-spacing: 0.015em;
}
.hero-zip-label {
  display: block;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(201,168,76,.98);
  margin-bottom: .5rem;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 2.5rem;
}
.trust-band {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
}
.trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 500;
  letter-spacing: .05em;
  color: rgba(255,255,255,.88);
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ZIP checker inline */
.zip-form {
  display: flex; gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
  background: rgba(255,255,255,.03);
}
.zip-form:focus-within { border-color: var(--gold); }
.zip-form input {
  flex: 1; min-width: 0;
  background: none; border: none; outline: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .98rem; padding: .9rem 1rem;
}
.zip-form input::placeholder { color: var(--muted); }
#hero .zip-form input { color: #fff; }
#hero .zip-form input::placeholder { color: rgba(255,255,255,.75); }
.zip-form button {
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: .9rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .9rem 1.35rem;
  white-space: nowrap;
  transition: background .2s;
}
.zip-form button:hover { background: var(--gold-lt); }
.zip-form button:focus-visible {
  outline: 2px solid rgba(201,168,76,.95);
  outline-offset: -2px;
}
#zip-result {
  margin-top: .75rem;
  font-size: .85rem;
  padding: .8rem 2.5rem .8rem 1rem;
  border-radius: var(--radius);
  position: relative;
  display: none;
}

#zip-result.served { background: rgba(100,200,100,.1); color: #7ddf7d; border: 1px solid rgba(100,200,100,.25); display: block; }
#zip-result.not-served { background: rgba(200,80,80,.1); color: #e08080; border: 1px solid rgba(200,80,80,.25); display: block; }
.zip-result-close {
  position: absolute;
  top: .35rem;
  right: .35rem;
  width: 1.6rem;
  height: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 2px;
  color: inherit;
  opacity: .9;
  font-size: 1rem;
  line-height: 1;
  transition: opacity .2s, background .2s;
}
.zip-result-close:hover { opacity: 1; background: rgba(255,255,255,.12); }
.zip-result-close:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.zip-result-actions { margin-top: .75rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.zip-result-actions a {
  font-size: .75rem; font-weight: 600;
  color: inherit; opacity: .95;
  padding: .4rem .75rem;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  transition: opacity .2s, background .2s;
}
.zip-result-actions a:hover { opacity: 1; background: rgba(255,255,255,.12); }
.zip-result-call { color: inherit !important; font-weight: 600; border-bottom: 1px solid currentColor; margin-right: .25rem; }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-van-wrap {
  position: relative;
  width: 100%;
}
.hero-van-bg {
  position: absolute;
  width: 85%; height: 85%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.hero-van-card {
  position: relative;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 360px;
  margin: 0 auto;
  box-shadow: 0 24px 80px rgba(0,0,0,.5), var(--gold-glow);
}
.hero-van-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
  display: block;
}
.hero-van-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: .5rem;
}
.hero-van-card p {
  font-size: .85rem; color: var(--light);
  margin-bottom: 1.5rem;
}
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border-radius: 4px; overflow: hidden;
  margin-top: 1.5rem;
}
.hero-stat {
  background: var(--mid);
  padding: .75rem .5rem;
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  color: var(--gold);
}
.hero-stat span { font-size: .68rem; color: var(--muted); letter-spacing: .05em; }
.float-badge {
  position: absolute; top: -12px; right: -12px;
  background: var(--gold);
  color: var(--black);
  font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem .7rem;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(201,168,76,.4);
}

/* ============================================
   SECTION DEFAULTS
============================================ */
section { padding: 7rem 0; }
section:nth-child(odd) { background: var(--black); }
section:nth-child(even) { background: var(--charcoal); }

/* ============================================
   SERVICES
============================================ */
#services {
  background: var(--charcoal);
  --svc-bg: #0d0c0b;
  --svc-surface: #131210;
  --svc-surface-2: #1a1815;
  --svc-border: rgba(255,255,255,.08);
  --svc-border-gold: rgba(196,152,79,.3);
  --svc-text: #f0ebe3;
  --svc-muted: rgba(240,235,227,.45);
  --svc-gold: #c4984f;
  --svc-gold-light: #dbb978;
  --svc-gold-dim: rgba(196,152,79,.12);
}
#services .section-header {
  margin-bottom: 3.5rem;
  max-width: 520px;
}
#services .section-header .section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--svc-gold);
}
#services .section-header .section-title {
  font-size: var(--step-4);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--svc-text);
  margin-bottom: 1rem; /* overrides .section-header > .section-title */
}
#services .section-header .section-title em {
  color: var(--svc-gold-light);
}
#services .section-header .section-sub {
  font-size: var(--step-2);
  color: var(--svc-muted);
  font-weight: 400;
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 0;
}
#services .section-header .divider {
  margin-top: 1.25rem;
  margin-bottom: 0;
}
#services .service-main {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--svc-border);
  margin-bottom: 2px;
  background: var(--svc-surface);
}
#services .service-main__image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}
#services .service-ba {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  touch-action: none;
  user-select: none;
  --ba-pct: 50%;
}
#services .service-ba__layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
#services .service-ba__layer--after {
  z-index: 1;
}
#services .service-ba__layer--before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--ba-pct)) 0 0);
}
#services .service-ba__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(.88) contrast(1.04);
}
#services .service-ba__labels {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 18px 20px;
  gap: 12px;
}
#services .service-ba__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, .75);
  padding: 6px 10px;
  border-radius: 2px;
  background: rgba(13, 12, 11, .55);
  border: 1px solid rgba(201, 168, 76, .35);
}
#services .service-ba__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pct);
  width: 40px;
  margin-left: -20px;
  z-index: 4;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: none;
  background: transparent;
  border: none;
  padding: 0;
}
#services .service-ba__handle::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 8%;
  bottom: 8%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 0 10px rgba(0, 0, 0, .45);
  border-radius: 1px;
}
#services .service-ba__handle-grip {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--svc-surface);
  border: 2px solid var(--svc-gold);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .4);
  position: relative;
  z-index: 1;
  pointer-events: none;
}
#services .service-ba__handle:focus {
  outline: none;
}
#services .service-ba__handle:focus-visible .service-ba__handle-grip {
  box-shadow: 0 0 0 2px var(--svc-surface), 0 0 0 4px var(--svc-gold);
}
#services .service-main__image-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 55%, var(--svc-surface) 100%),
              linear-gradient(0deg, rgba(0,0,0,.35) 0%, transparent 50%);
}
#services .service-main__image-tag {
  position: absolute;
  bottom: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(13,12,11,.75);
  border: 1px solid var(--svc-border-gold);
  border-radius: 2px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
#services .service-main__image-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--svc-gold);
  box-shadow: 0 0 8px var(--svc-gold);
  animation: svc-pulse 2.5s ease-in-out infinite;
}
@keyframes svc-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}
#services .service-main__image-tag-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--svc-gold-light);
}
#services .service-main__content {
  padding: 52px 52px 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
#services .service-main__content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--svc-border-gold) 30%, var(--svc-border-gold) 70%, transparent);
}
#services .service-main__header {
  margin-bottom: 36px;
}
#services .service-main__number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .15em;
  color: var(--svc-gold);
  opacity: .7;
  margin-bottom: 10px;
  display: block;
}
#services .service-main__title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.1;
  color: var(--svc-text);
  margin-bottom: 16px;
}
#services .service-main__price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
#services .service-main__price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--svc-gold-light);
  letter-spacing: -.01em;
  line-height: 1;
}
#services .service-main__price-note {
  font-size: 13px;
  color: var(--svc-muted);
  font-weight: 400;
}
#services .service-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--svc-gold), transparent);
  margin-bottom: 32px;
  opacity: .6;
}
#services .service-main__styles-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--svc-gold);
  margin-bottom: 16px;
  opacity: .8;
}
#services .haircut-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
#services .haircut-list li {
  font-size: 13px;
  font-weight: 500;
  color: rgba(240,235,227,.75);
  padding: 7px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 2px;
  letter-spacing: .01em;
  transition: all .2s ease;
  cursor: default;
}
#services .haircut-list li:hover {
  background: var(--svc-gold-dim);
  border-color: var(--svc-border-gold);
  color: var(--svc-text);
}
#services .haircut-list__call {
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}
#services .haircut-list__call:hover {
  background: transparent !important;
  border-color: transparent !important;
}
#services .service-main__call-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--svc-gold);
  text-decoration: none;
  border: 1px solid var(--svc-border-gold);
  border-radius: 2px;
  background: var(--svc-gold-dim);
  transition: all .2s ease;
  white-space: nowrap;
}
#services .service-main__call-btn:hover {
  background: rgba(196,152,79,.2);
  border-color: rgba(196,152,79,.5);
  color: var(--svc-gold-light);
}
#services .service-main__call-btn svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
#services .service-main__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
#services .btn--gallery {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--svc-text);
  padding: 13px 28px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 2px;
  background: transparent;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
#services .btn--gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.04);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
#services .btn--gallery:hover::before { transform: scaleX(1); }
#services .btn--gallery:hover { border-color: rgba(255,255,255,.3); }
#services .btn--gallery svg { width: 14px; height: 14px; opacity: .7; }
#services .btn--call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--svc-bg);
  padding: 13px 28px;
  border: 1px solid var(--svc-gold);
  border-radius: 2px;
  background: var(--svc-gold);
  transition: all .25s ease;
  white-space: nowrap;
}
#services .btn--call:hover {
  background: var(--svc-gold-light);
  border-color: var(--svc-gold-light);
}
#services .btn--call svg {
  flex-shrink: 0;
  opacity: 0.9;
}
@media (max-width: 480px) {
  #services .btn--call {
    font-size: 11px;
    letter-spacing: .04em;
    padding: 12px 18px;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }
}
#services .service-main__note {
  font-size: 13px;
  color: var(--svc-muted);
  line-height: 1.65;
  border: none;
  padding: 0;
}
#services .service-main__note a {
  color: var(--svc-gold);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
#services .service-main__note a:hover { border-bottom-color: var(--svc-gold); }
#services .add-ons-wrap {
  margin-top: 2px;
  padding: 36px 48px;
  background: var(--svc-surface);
  border: 1px solid var(--svc-border);
  border-radius: 4px;
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
#services .add-ons__label-col {
  flex-shrink: 0;
  padding-top: 4px;
}
#services .add-ons__title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--svc-gold);
  margin-bottom: 6px;
  opacity: .8;
}
#services .add-ons__sub {
  font-size: 13px;
  color: var(--svc-muted);
  line-height: 1.5;
  white-space: nowrap;
}
#services .add-ons__divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, transparent, var(--svc-border-gold), transparent);
  flex-shrink: 0;
  min-height: 48px;
}
#services .add-ons__list {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  padding-top: 4px;
}
#services .add-on {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--svc-border);
  border-radius: 3px;
  transition: all .2s ease;
  flex: 1 1 0;
  min-width: 0;
}
#services .add-on:hover {
  background: var(--svc-gold-dim);
  border-color: var(--svc-border-gold);
}
#services .add-on__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--svc-gold-dim);
  border: 1px solid var(--svc-border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#services .add-on__icon svg {
  width: 14px;
  height: 14px;
  color: var(--svc-gold);
}
#services .add-on__info { flex: 1; }
#services .add-on__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--svc-text);
  display: block;
  margin-bottom: 2px;
}
#services .add-on__desc {
  font-size: 12px;
  color: var(--svc-muted);
}
#services .add-on__price {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--svc-gold-light);
  letter-spacing: -.01em;
  flex-shrink: 0;
}
#services .add-on__price--inquire {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
}
@keyframes svc-fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
#services .section-header .section-label { animation: svc-fadeUp .6s ease both; }
#services .section-header .section-title { animation: svc-fadeUp .6s .1s ease both; }
#services .section-header .section-sub   { animation: svc-fadeUp .6s .2s ease both; }
#services .section-header .divider      { animation: svc-fadeUp .6s .25s ease both; }
#services .service-main     { animation: svc-fadeUp .7s .3s ease both; }
#services .add-ons-wrap     { animation: svc-fadeUp .7s .45s ease both; }
@media (max-width: 820px) {
  #services .service-main {
    grid-template-columns: 1fr;
  }
  #services .service-main__image-wrap { min-height: 300px; }
  #services .service-ba { min-height: 300px; }
  #services .service-ba__handle {
    width: 52px;
    margin-left: -26px;
  }
  #services .service-main__content {
    padding: 40px 32px;
  }
  #services .service-main__content::before { display: none; }
  #services .add-ons-wrap {
    flex-direction: column;
    gap: 24px;
    padding: 28px 24px;
  }
  #services .add-ons__divider { width: 100%; height: 1px; min-height: unset; }
  #services .add-ons__list { flex-wrap: wrap; }
  #services .add-on { flex: none; min-width: unset; width: 100%; }
}

/* ============================================
   GALLERY
============================================ */
#gallery { background: var(--black); }
/* LightWidget embed area */
.lightwidget-wrap {
  margin-top: 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  min-height: 200px;
  display: block;
  padding: 0;
}
.lightwidget-wrap .lightwidget-widget {
  display: block;
  width: 100% !important;
  min-height: 420px;
  border: 0;
  vertical-align: bottom;
}
@media (max-width: 768px) {
  .lightwidget-wrap .lightwidget-widget {
    min-height: min(560px, 72vh);
  }
}
.gallery-cta { text-align: center; margin-top: 2rem; }

/* ============================================
   REVIEWS
============================================ */
#reviews { background: var(--charcoal); }
.reviews-invite {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.1rem 1.5rem;
  margin-bottom: 3.5rem;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.reviews-invite__text {
  margin: 0;
  flex: 1;
  min-width: min(100%, 280px);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--light);
}
.reviews-invite__btn {
  flex-shrink: 0;
  text-decoration: none;
}
@media (max-width: 540px) {
  .reviews-invite {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .reviews-invite__btn {
    justify-content: center;
  }
}
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.reviews-grid--pair {
  grid-template-columns: repeat(2, 1fr);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.reviews-cta-wrap {
  text-align: center;
  margin-top: 2.25rem;
}
.reviews-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.review-price {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.review-price__amount {
  display: inline-block;
  margin-left: 0.35rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  text-transform: none;
}
.review-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.75rem;
  position: relative;
  transition: border-color .3s, transform .3s;
}
.review-card:hover {
  border-color: rgba(201,168,76,.3);
  transform: translateY(-3px);
}
.review-stars { color: var(--gold); font-size: .9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-quote {
  font-size: .88rem; color: var(--light);
  line-height: 1.7; margin-bottom: 1.25rem;
  font-style: italic;
}
.review-quote::before { content: '"'; color: var(--gold); font-size: 1.5rem; line-height: 0; vertical-align: -4px; }
.review-author { font-size: .78rem; font-weight: 600; letter-spacing: .05em; }
.review-location { font-size: .72rem; color: var(--muted); }
.review-google-link {
  color: var(--gold);
  font-weight: 500;
  border-bottom: 1px solid rgba(201, 168, 76, 0.45);
  text-decoration: none;
}
.review-google-link:hover {
  color: var(--gold-lt);
  border-bottom-color: var(--gold-lt);
}

/* ============================================
   ABOUT THE OWNER
============================================ */
#about-owner { background: var(--black); }
.owner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.owner-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.owner-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  object-fit: cover;
  display: block;
}
.owner-img--inside { aspect-ratio: 3/2; }
.owner-img--door { aspect-ratio: 3/2; }
.owner-content { max-width: 520px; }
.owner-greeting {
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .35rem;
}
.owner-name {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.owner-djr-origin {
  font-size: 1rem;
  font-weight: 400;
  color: var(--light);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 32rem;
}
.owner-djr-origin .owner-djr-origin__mark {
  color: var(--gold);
  font-weight: 600;
}
.owner-initial {
  color: var(--gold);
  font-weight: 700;
}
.owner-bio-block {
  position: relative;
  padding-left: 1rem;
  border-left: 2px solid var(--border);
  margin-bottom: 1.25rem;
  transition: border-color .3s;
}
.owner-bio-block:hover {
  border-left-color: var(--gold);
}
.owner-bio {
  font-size: 1.125rem;
  color: var(--light);
  line-height: 1.8;
  margin-bottom: 0;
}
.owner-bio strong { color: var(--white); }
.gold-highlight {
  color: var(--gold);
  font-weight: 700;
}
.owner-badge {
  display: inline-block;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: .2rem .6rem;
  border-radius: 2px;
  vertical-align: middle;
}
.owner-content .btn-primary { margin-top: 1.25rem; }
@media (max-width: 1024px) {
  .owner-grid { grid-template-columns: 1fr; gap: 2rem; }
  .owner-images { order: 1; }
  .owner-content { order: 2; max-width: none; }
}

/* ============================================
   LOCATION
============================================ */
#location { background: var(--black); }
.location-grid {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 3rem; align-items: start;
}
#map {
  height: 420px;
  border-radius: 6px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.location-panels { display: flex; flex-direction: column; gap: 1.5rem; }
.panel {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.panel-head {
  display: flex; align-items: center; gap: .75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold);
}
.panel-body { padding: 1.25rem; }
.fee-table { width: 100%; border-collapse: collapse; }
.fee-table th {
  text-align: left; font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); padding: .4rem .5rem;
}
.fee-table td { padding: .6rem .5rem; font-size: .82rem; color: var(--light); }
.fee-table tr:not(:last-child) td { border-bottom: 1px solid rgba(255,255,255,.05); }
.fee-table td:last-child { color: var(--gold); font-weight: 500; }
.fee-note {
  margin-top: .75rem;
  font-size: .75rem; color: var(--muted);
  font-style: italic;
}
.hours-row {
  display: flex; justify-content: space-between;
  font-size: .82rem; padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--muted); }
.hours-row .time { color: var(--white); font-weight: 500; }
.hours-row.today .day { color: var(--gold); }
.hours-row.today .time { color: var(--gold-lt); }
.zip-panel-form {
  display: flex; gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.zip-panel-form:focus-within { border-color: var(--gold); }
.zip-panel-form input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--white); font-family: var(--font-body);
  font-size: .85rem; padding: .7rem .9rem;
}
.zip-panel-form input::placeholder { color: var(--muted); }
.zip-panel-form button {
  background: var(--gold); color: var(--black);
  font-family: var(--font-body); font-size: .7rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 0 1rem;
}
#zip-panel-result {
  margin-top: .75rem; font-size: .82rem;
  padding: .5rem .75rem; border-radius: 3px;
  display: none;
}

#zip-panel-result.served { background: rgba(100,200,100,.1); color: #7ddf7d; border: 1px solid rgba(100,200,100,.2); display: block; }
#zip-panel-result.not-served { background: rgba(200,80,80,.1); color: #e08080; border: 1px solid rgba(200,80,80,.2); display: block; }
#zip-panel-result .zip-result-actions { margin-top: .6rem; }
#zip-panel-result .zip-result-actions a { font-size: .7rem; padding: .35rem .6rem; }

.locations-list-heading {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.5rem;
  margin-bottom: .75rem;
}
.neighborhood-tags {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 0;
}
.neighborhood-tag {
  font-size: .68rem; font-weight: 500;
  background: transparent;
  font-family: inherit;
  line-height: 1;
  appearance: none;
  letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid var(--border);
  color: #9d9d9d; padding: .3rem .7rem;
  border-radius: 2px;
  transition: border-color .2s, color .2s, background .2s;
}
.neighborhood-tag[data-location] {
  cursor: pointer;
}
.neighborhood-tag[data-location]:hover {
  border-color: rgba(201, 168, 76, 0.5);
  color: var(--gold-lt);
}
.neighborhood-tag[data-location]:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.neighborhood-tag.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.dedicated-pages {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.dedicated-pages__heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.5rem;
  font-family: var(--font-body);
}
.dedicated-pages__sub {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 36rem;
}
.dedicated-pages__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}
.dedicated-pages__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.dedicated-pages__link::after {
  content: "\2192";
  font-size: 0.85rem;
  color: var(--gold);
  opacity: 0.75;
  transition: transform 0.2s ease;
}
.dedicated-pages__link:hover {
  border-color: rgba(201, 168, 76, 0.45);
  color: var(--gold-lt);
  background: rgba(201, 168, 76, 0.06);
}
.dedicated-pages__link:hover::after {
  transform: translateX(3px);
}
.dedicated-pages__link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
@media (min-width: 600px) {
  .dedicated-pages__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 900px) {
  .dedicated-pages__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ============================================
   FAQ (base styles, used inside contact section)
============================================ */
.faq-item { background: var(--dark); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-size: .9rem; font-weight: 500;
  color: var(--white); text-align: left;
  transition: color .2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question svg {
  flex-shrink: 0; color: var(--gold);
  transition: transform .3s;
}
.faq-question.open svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: .85rem; color: var(--muted);
  line-height: 1.7;
}

/* ============================================
   CONTACT
============================================ */
#contact { background: var(--black); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 4rem; align-items: end;
}
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem;
  transition: border-color .2s;
}
a.contact-card {
  text-decoration: none;
  color: inherit;
}
.contact-card:hover { border-color: rgba(201,168,76,.3); }
.contact-card-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-card-info label {
  display: block; font-size: .68rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .2rem;
}
.contact-card-info a, .contact-card-info span {
  font-size: .9rem; color: var(--white); font-weight: 500;
}
.contact-card-info a:hover { color: var(--gold); }
.contact-card-info .contact-card-note {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.35rem;
  font-weight: 400;
  line-height: 1.35;
}

/* Contact FAQ (right column) */
.contact-faq {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}
.contact-faq__list {
  display: flex;
  flex-direction: column;
}
.contact-faq__list .faq-item {
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.contact-faq__list .faq-item:last-child {
  border-bottom: none;
}
.contact-faq__list .faq-question {
  padding: 1rem 0;
  font-size: .88rem;
}
.contact-faq__list .faq-answer-inner {
  padding: 0 0 1rem;
}

/* ============================================
   FOOTER
============================================ */
footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand p {
  font-size: .85rem; color: var(--muted);
  max-width: 260px; margin-top: .75rem; line-height: 1.6;
}
.footer-logo-img {
  display: block;
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.5rem;
}
.footer-col h3 {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-col ul a { font-size: .82rem; color: var(--muted); transition: color .2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-contact-item {
  display: flex; gap: .75rem;
  font-size: .82rem; margin-bottom: .75rem; color: var(--muted);
}
.footer-contact-item svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.footer-contact-item a { color: var(--muted); transition: color .2s; }
.footer-contact-item a:hover { color: var(--white); }
.footer-social {
  display: flex; gap: .75rem; margin-top: 1rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .75rem; color: var(--muted); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .72rem; color: var(--muted); transition: color .2s; }
.footer-legal a:hover { color: var(--white); }

.footer-map {
  margin-bottom: 3rem;
}
.footer-map__title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-map__frame {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  /* 4:3 embed (600×450) */
  padding-bottom: 75%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.footer-map__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================================
   SCROLL ANIMATIONS
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
      .hero__grid { grid-template-columns: 1fr; gap: 18px; min-height: auto; }
      .hero__right {
        justify-content: center;
        min-height: 380px;
        padding-top: 1rem;
      }
      .van {
        width: min(580px, 85vw);
        max-height: 320px;
        object-fit: contain;
        object-position: center center;
        transform: translate(0, 0) rotate(-0.5deg);
        animation: van-move-mobile 5s ease-in-out infinite;
      }
      .vanShadow { display: none; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; align-items: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  section { padding: 5rem 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  /* Must override base `display: none` so the drawer can open on tap */
  .mobile-nav { display: block; visibility: visible; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  #map {
    height: min(360px, 55vh);
  }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  /* Hero van: phone-optimized */
  #hero { min-height: clamp(640px, 90vh, 820px); }
  .hero__wrap { padding: 100px 0 48px; }
  .hero__right {
    min-height: 280px;
    padding-top: 0.5rem;
  }
  .van {
    width: min(340px, 88vw);
    max-height: 220px;
    object-fit: contain;
    object-position: center bottom;
    transform: translate(0, 0);
    animation: van-move-mobile 6s ease-in-out infinite;
  }
}
@media (max-width: 480px) {
  /* Hero van: small phone */
  .hero__right { min-height: 240px; }
  .van {
    width: min(300px, 92vw);
    max-height: 200px;
  }
}

/* Leaflet dark map overrides */
/* Dark basemap (CartoDB) — no tile filter needed */
.leaflet-control-attribution {
  background: rgba(10, 10, 10, 0.82) !important;
  color: var(--muted) !important;
  font-size: 0.65rem !important;
  line-height: 1.35;
  max-width: 100%;
  border-radius: 4px 0 0 0;
}
.leaflet-control-attribution a {
  color: var(--gold) !important;
}
.leaflet-popup-content-wrapper {
  background: var(--dark) !important;
  color: var(--white) !important;
  border: 1px solid var(--border) !important;
  border-radius: 4px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.5) !important;
}
.leaflet-popup-tip { background: var(--dark) !important; }
.leaflet-popup-content { font-family: var(--font-body); font-size: .85rem; }
.popup-title { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold); margin-bottom: .25rem; }
.popup-sub {
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.5;
  margin-bottom: .75rem;
  max-width: 16rem;
}
.popup-btn {
  display: inline-block;
  background: var(--gold); color: var(--black);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .4rem .9rem; border-radius: 2px;
}

/* Gold line separator */
.gold-sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0;
  opacity: .3;
}

/* Sticky call bar for mobile */
.mobile-sticky-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: .75rem 1.5rem;
  gap: .75rem;
}
.mobile-sticky-bar a { flex: 1; justify-content: center; }
@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: flex;
    pointer-events: none;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.28s ease, transform 0.28s ease;
  }
  .mobile-sticky-bar.mobile-sticky-bar--visible {
    opacity: 1;
    transform: translateY(0);
  }
  .mobile-sticky-bar > a {
    pointer-events: auto;
  }
  .mobile-sticky-bar:not(.mobile-sticky-bar--visible) > a {
    pointer-events: none;
  }
  @media (prefers-reduced-motion: reduce) {
    .mobile-sticky-bar {
      transition: none;
    }
  }
  html {
    scroll-padding-bottom: calc(7rem + env(safe-area-inset-bottom, 0px));
  }
  body {
    padding-bottom: calc(7rem + env(safe-area-inset-bottom, 0px));
  }
  #hero { padding-bottom: 6rem; }
  #gallery,
  #location {
    padding-bottom: 1.5rem;
  }
}

/* ============================================
   BOOKING MODAL (Call / Text to Book)
============================================ */
.book-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.book-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.book-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}
.book-modal__panel {
  position: relative;
  width: 100%;
  max-width: 22rem;
  background: linear-gradient(165deg, #151515 0%, #0a0a0a 100%);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 12px;
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.08),
    0 24px 48px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(201, 168, 76, 0.12);
}
.book-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--light);
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}
.book-modal__close:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}
.book-modal__close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.book-modal__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold);
}
.book-modal__icon svg {
  width: 2.5rem;
  height: 2.5rem;
}
.book-modal__title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.book-modal__subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--light);
  margin: 0 0 1rem;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}
.book-modal__subtitle[hidden] {
  display: none !important;
}
.book-modal__number {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 4.5vw, 1.65rem);
  font-weight: 700;
  color: var(--gold-lt);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.book-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.book-modal__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.95rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  border: none;
  text-decoration: none;
  box-sizing: border-box;
}
.book-modal__btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--black);
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.35), 0 0 28px rgba(201, 168, 76, 0.2);
}
.book-modal__btn--primary:hover {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.45), 0 0 36px rgba(201, 168, 76, 0.25);
}
.book-modal__btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}
.book-modal__btn--ghost:hover {
  border-color: rgba(201, 168, 76, 0.45);
  background: rgba(201, 168, 76, 0.06);
}
.book-modal__btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.book-modal__btn--primary:focus-visible {
  outline-color: var(--gold-lt);
}
.book-modal__hint {
  margin-top: 1.25rem;
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--muted);
}
@media (prefers-reduced-motion: reduce) {
  .book-modal,
  .book-modal__btn {
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  .reveal,
  #services .section-header .section-label,
  #services .section-header .section-title,
  #services .section-header .section-sub,
  #services .section-header .divider,
  #services .service-main,
  #services .add-ons-wrap,
  .hero-script,
  .van,
  .hero-route__van,
  .service-main__image-tag-dot {
    animation: none !important;
    transition: none !important;
  }
}


.lightwidget-placeholder {
  min-height: 420px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}
@media (max-width: 768px) {
  .lightwidget-placeholder { min-height: min(560px, 72vh); }
}
