*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #080808;
  --ink2: #0e0e0e;
  --ink3: #141414;
  --ink4: #1a1a1a;
  --bone: #f6f3ec;
  --gold: #c9980e;
  --gold-h: #d4a417;
  --gold-dim: rgba(201,152,14,0.12);
  --mute: #777777;
  --mute2: #444444;
  --border: #222222;
  --border2: #1a1a1a;
  --white: #ffffff;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ink);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 80px;
}
@media (min-width: 768px) { body { padding-bottom: 0; } }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 48px; } }

/* LABEL */
.label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.label.center { justify-content: center; }
.gold-label { color: var(--gold); }
.label-bar { display: block; width: 20px; height: 1px; background: var(--gold); flex-shrink: 0; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 14px 24px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.15s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
}
.btn:active { transform: scale(0.97); }
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: 0 0 0 0 rgba(201,152,14,0);
}
.btn-gold:hover {
  background: var(--gold-h);
  border-color: var(--gold-h);
  box-shadow: 0 8px 24px rgba(201,152,14,0.25);
  transform: translateY(-1px);
}
.btn-outline {
  background: rgba(255,255,255,0.04);
  color: var(--white);
  border-color: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}
.btn-outline-sm {
  background: rgba(255,255,255,0.04);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 13px 20px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.2s var(--ease);
  backdrop-filter: blur(8px);
}
.btn-outline-sm:hover { background: rgba(255,255,255,0.08); }
.btn-lg { padding: 16px 30px; font-size: 16px; }

/* LOGO */
.logo { display: flex; align-items: center; gap: 10px; white-space: nowrap; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo-main { font-family: 'Unbounded', sans-serif; font-size: 13px; font-weight: 800; line-height: 1; letter-spacing: -0.01em; }
.logo-sub { font-family: 'DM Sans', sans-serif; font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); line-height: 1; }

/* NAV */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(8,7,6,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (min-width: 768px) { .nav-inner { padding: 0 48px; height: 64px; } }
.nav-links { display: none; }
@media (min-width: 900px) {
  .nav-links { display: flex; gap: 28px; flex: 1; }
  .nav-links a { font-size: 13px; font-weight: 500; color: var(--mute); transition: color 0.2s; letter-spacing: 0.01em; }
  .nav-links a:hover { color: var(--white); }
}
.nav-cta { display: flex; align-items: center; gap: 12px; margin-left: auto; flex-shrink: 0; }
.nav-phone { display: none; font-size: 13px; font-weight: 500; color: var(--mute); transition: color 0.2s; }
.nav-phone:hover { color: var(--white); }
@media (min-width: 768px) { .nav-phone { display: block; } }

/* HERO */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-bg img.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(8,7,6,0.7) 0%, rgba(8,7,6,0.3) 100%),
    linear-gradient(to bottom, rgba(8,7,6,0.3) 0%, rgba(8,7,6,0.5) 60%, rgba(8,7,6,1) 100%);
}
.hero-content {
  position: relative;
  padding-top: 110px;
  padding-bottom: 80px;
  width: 100%;
}
@media (min-width: 768px) { .hero-content { padding-top: 160px; padding-bottom: 120px; } }

/* Hero entrance animations */
.hero .label { opacity: 0; transform: translateY(16px); animation: fadeUp 0.8s var(--ease) 0.1s forwards; }
.hero h1 span { opacity: 0; transform: translateY(24px); animation: fadeUp 0.9s var(--ease) forwards; }
.hero h1 span:nth-child(1) { animation-delay: 0.2s; }
.hero h1 span:nth-child(2) { animation-delay: 0.35s; }
.hero-sub { opacity: 0; transform: translateY(16px); animation: fadeUp 0.8s var(--ease) 0.5s forwards; }
.hero-btns { opacity: 0; transform: translateY(16px); animation: fadeUp 0.8s var(--ease) 0.65s forwards; }
.hero-stats { opacity: 0; transform: translateY(16px); animation: fadeUp 0.8s var(--ease) 0.75s forwards; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(38px, 10vw, 92px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.6); margin-bottom: 36px; font-weight: 400; max-width: 380px; line-height: 1.6; }
@media (min-width: 768px) { .hero-sub { font-size: 18px; } }
.hero-btns { display: flex; flex-direction: column; gap: 10px; margin-bottom: 64px; }
@media (min-width: 480px) { .hero-btns { flex-direction: row; gap: 12px; flex-wrap: wrap; } }
.hero-btns .btn { width: 100%; }
@media (min-width: 480px) { .hero-btns .btn { width: auto; } }

.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hstat-num {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(26px, 6vw, 38px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.hstat-lbl { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); }
.scroll-hint {
  display: none;
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  flex-direction: column; align-items: center; gap: 6px;
  font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mute2);
  animation: fadeUp 1s var(--ease) 1.2s both;
}
@media (min-width: 768px) { .scroll-hint { display: flex; } }

/* SECTIONS */
.how { padding: 96px 0; }
.services { padding: 96px 0; background: var(--ink2); }
.gallery { padding: 96px 0; }
.reviews { padding: 96px 0; background: var(--ink2); }
.referral { padding: 24px 0 96px; }
.about { padding: 96px 0; }
.booking { padding: 96px 0; background: var(--ink2); }
@media (min-width: 768px) {
  .how, .gallery, .about, .referral { padding: 128px 0; }
  .services, .reviews, .booking { padding: 128px 0; }
  .referral { padding: 0 0 128px; }
}

/* SPLIT HEADER */
.split-header { margin-bottom: 48px; }
@media (min-width: 768px) { .split-header { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-bottom: 64px; } }
.split-header h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(24px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
@media (min-width: 768px) { .split-header h2 { margin-bottom: 0; } }
.split-header p { font-size: 15px; color: var(--mute); line-height: 1.75; }

/* STEPS */
.steps { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
@media (min-width: 768px) { .steps { flex-direction: row; } }
.step {
  padding: 36px 28px;
  background: var(--ink2);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: background 0.3s var(--ease);
}
.step:last-child { border-bottom: none; }
@media (min-width: 768px) {
  .step { padding: 48px 40px; border-bottom: none; border-right: 1px solid var(--border); flex: 1; }
  .step:last-child { border-right: none; }
}
.step:hover { background: var(--ink3); }
.step-num { font-family: 'Unbounded', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 20px; }
.step h3 { font-family: 'Unbounded', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.015em; }
.step p { font-size: 14px; color: var(--mute); line-height: 1.7; }

/* SERVICE CARD */
.svc-card {
  background: var(--ink2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 24px;
  transition: border-color 0.3s;
}
.svc-card:hover { border-color: rgba(201,152,14,0.3); }
@media (min-width: 768px) { .svc-card { padding: 56px; } }
.svc-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; gap: 16px; }
.svc-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.svc-top h3 { font-family: 'Unbounded', sans-serif; font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.5); letter-spacing: -0.01em; line-height: 1.3; }
.svc-price { font-family: 'Unbounded', sans-serif; font-size: clamp(44px, 8vw, 64px); font-weight: 800; line-height: 1; letter-spacing: -0.04em; }
.svc-price-sub { font-size: 11px; color: var(--mute); font-weight: 500; text-align: right; margin-top: 6px; letter-spacing: 0.06em; text-transform: uppercase; }
.svc-desc { font-size: 14px; color: var(--mute); margin-bottom: 28px; line-height: 1.75; max-width: 520px; }
.svc-card .btn { margin-bottom: 40px; width: 100%; }
@media (min-width: 480px) { .svc-card .btn { width: auto; } }
.svc-lists { display: flex; flex-direction: column; gap: 32px; border-top: 1px solid var(--border); padding-top: 40px; }
@media (min-width: 768px) { .svc-lists { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; } }
.svc-col h4 { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.svc-col ul { list-style: none; }
.svc-col ul li { font-size: 14px; color: rgba(255,255,255,0.65); padding: 10px 0; border-bottom: 1px solid var(--border2); line-height: 1.4; }
.svc-col ul li:last-child { border-bottom: none; }
.addon-list li { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.addon-price { font-family: 'Unbounded', sans-serif; font-size: 12px; font-weight: 700; color: var(--gold); flex-shrink: 0; }

/* GALLERY */
.gallery h2 { font-family: 'Unbounded', sans-serif; font-size: clamp(28px, 7vw, 64px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 12px; }
.gallery-sub { font-size: 14px; color: var(--mute); margin-bottom: 40px; letter-spacing: 0.01em; }
.gallery-grid { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 768px) { .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); } }
.gcard-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--ink2);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.gcard-img-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}
.gimg { width: 100%; height: 280px; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
@media (min-width: 768px) { .gimg { height: 420px; } }
.gcard-img-wrap:hover .gimg { transform: scale(1.03); }
.gimg.hidden { display: none; }
.gcard-badge { position: absolute; top: 12px; left: 12px; z-index: 2; display: flex; align-items: center; gap: 5px; background: rgba(8,7,6,0.7); backdrop-filter: blur(8px); padding: 5px 10px; border-radius: 100px; font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.08); }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: block; }
.gtoggle { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; background: rgba(8,7,6,0.85); backdrop-filter: blur(12px); border-radius: 100px; padding: 4px; gap: 2px; border: 1px solid rgba(255,255,255,0.08); }
.gtbtn { background: transparent; border: none; color: var(--mute); font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 9px 20px; border-radius: 100px; cursor: pointer; transition: all 0.2s var(--ease); -webkit-tap-highlight-color: transparent; }
.gtbtn.active { background: var(--gold); color: var(--ink); }
.gcard-caption { display: flex; justify-content: flex-end; padding: 0 2px; }
.gcard-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute2); }

/* REVIEWS */
.reviews-head { margin-bottom: 40px; }
@media (min-width: 768px) { .reviews-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; gap: 40px; } }
.reviews-head h2 { font-family: 'Unbounded', sans-serif; font-size: clamp(24px, 5.5vw, 48px); font-weight: 800; line-height: 1.05; letter-spacing: -0.025em; margin-bottom: 8px; }
@media (min-width: 768px) { .reviews-head h2 { margin-bottom: 0; max-width: 480px; } }
.reviews-hint { font-size: 12px; color: var(--mute); line-height: 1.6; letter-spacing: 0.01em; }
@media (min-width: 768px) { .reviews-hint { max-width: 160px; text-align: right; flex-shrink: 0; } }
.reviews-scroll-wrap { overflow-x: auto; padding: 0 20px 4px; max-width: 1120px; margin: 0 auto; scrollbar-width: none; -ms-overflow-style: none; cursor: grab; }
.reviews-scroll-wrap:active { cursor: grabbing; }
.reviews-scroll-wrap::-webkit-scrollbar { display: none; }
@media (min-width: 768px) { .reviews-scroll-wrap { padding: 0 48px 4px; } }
.reviews-track { display: flex; gap: 12px; width: max-content; }
.rcard {
  background: var(--ink3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
@media (min-width: 768px) { .rcard { padding: 36px; width: 380px; } }
.rcard:hover { border-color: rgba(201,152,14,0.2); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.rcard-stars { font-size: 14px; color: var(--gold); letter-spacing: 4px; margin-bottom: 18px; }
.rcard p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.8; flex: 1; margin-bottom: 24px; }
.rcard-foot { display: flex; justify-content: space-between; align-items: flex-end; }
.rcard-name { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.rcard-src { font-size: 11px; color: var(--mute); letter-spacing: 0.04em; }
.rcard-num { font-size: 11px; font-weight: 600; color: var(--mute2); letter-spacing: 0.06em; }
.rdots { display: flex; gap: 6px; justify-content: center; margin-top: 32px; }
.rdot { width: 6px; height: 6px; border-radius: 50%; background: var(--mute2); border: none; cursor: pointer; padding: 0; transition: background 0.2s, transform 0.2s; }
.rdot.active { background: var(--gold); transform: scale(1.3); }

/* REFERRAL */
.referral-card {
  background: var(--ink2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.referral-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,152,14,0.08) 0%, transparent 70%);
  pointer-events: none;
}
@media (min-width: 768px) { .referral-card { flex-direction: row; justify-content: space-between; align-items: center; padding: 64px 72px; gap: 56px; } }
.referral-left h2 { font-family: 'Unbounded', sans-serif; font-size: clamp(20px, 4vw, 42px); font-weight: 800; line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 16px; }
.referral-left h2 em { font-style: normal; color: var(--gold); }
.referral-left p { font-size: 14px; color: var(--mute); line-height: 1.75; }
.referral-right { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; flex-shrink: 0; }
@media (min-width: 768px) { .referral-right { align-items: flex-end; } }
.referral-right .btn { width: 100%; }
@media (min-width: 480px) { .referral-right .btn { width: auto; } }
.text-badge { display: inline-block; background: rgba(201,152,14,0.12); color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 8px; border-radius: 100px; margin-left: 6px; vertical-align: middle; }
.referral-call { font-size: 13px; color: var(--mute); transition: color 0.2s; }
.referral-call:hover { color: var(--white); }

/* ABOUT */
.about-grid { display: flex; flex-direction: column; gap: 40px; }
@media (min-width: 900px) { .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; } }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 320px; object-fit: cover; border-radius: 20px; display: block; transition: transform 0.6s var(--ease); }
@media (min-width: 768px) { .about-img-wrap img { height: 580px; } }
.about-img-wrap:hover img { transform: scale(1.02); }
.about-caption { position: absolute; bottom: 16px; left: 16px; right: 16px; background: rgba(8,7,6,0.88); backdrop-filter: blur(12px); border-radius: 12px; padding: 14px 18px; border: 1px solid rgba(255,255,255,0.06); }
.about-caption-label { font-size: 9px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.about-caption-text { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.8); }
.about-text h2 { font-family: 'Unbounded', sans-serif; font-size: clamp(26px, 4.5vw, 48px); font-weight: 800; line-height: 1.05; letter-spacing: -0.025em; margin-bottom: 24px; }
.about-text p { font-size: 15px; color: var(--mute); line-height: 1.8; margin-bottom: 18px; }
.about-stats { display: flex; gap: 40px; padding-top: 8px; }
.astat-num { font-family: 'Unbounded', sans-serif; font-size: clamp(32px, 5vw, 44px); font-weight: 800; line-height: 1; margin-bottom: 5px; letter-spacing: -0.025em; }
.astat-lbl { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); }

/* BOOKING */
.booking h2 { font-family: 'Unbounded', sans-serif; font-size: clamp(26px, 4.5vw, 48px); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 12px; }
.booking h2.center, .booking-sub.center { text-align: center; }
.booking-sub { font-size: 15px; color: var(--mute); margin-bottom: 40px; }
.booksy-widget-wrap {
  max-width: 600px;
  margin: 0 auto 24px;
  background: var(--ink3);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.booksy-widget-wrap > * { width: 100%; }
.booking-phone { text-align: center; font-size: 13px; color: var(--mute); }
.booking-phone a { color: rgba(255,255,255,0.75); font-weight: 600; transition: color 0.2s; }
.booking-phone a:hover { color: var(--gold); }
.contact-prefer { display: inline-flex; align-items: center; gap: 6px; }

/* FOOTER */
.footer { background: var(--ink2); border-top: 1px solid var(--border); padding: 56px 0 0; }
.footer-inner { display: flex; flex-direction: column; gap: 36px; padding-bottom: 48px; }
@media (min-width: 768px) { .footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px; padding-bottom: 64px; } }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: var(--mute); line-height: 1.75; max-width: 260px; }
.footer-col h4 { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li, .footer-col ul li a { font-size: 14px; color: var(--mute); margin-bottom: 10px; display: block; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px; display: flex; flex-direction: column; gap: 4px; font-size: 11px; color: var(--mute2); letter-spacing: 0.03em; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; padding: 24px 48px; } }

/* STICKY MOBILE CTA */
.sticky-cta {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  background: rgba(8,7,6,0.95);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  gap: 10px;
  backdrop-filter: blur(20px);
}
.sticky-cta .btn-outline-sm { flex: 1; }
.btn-sticky-book {
  flex: 2;
  background: var(--gold);
  color: var(--ink);
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s var(--ease), transform 0.15s;
}
.btn-sticky-book:hover { background: var(--gold-h); }
.btn-sticky-book:active { transform: scale(0.97); }
@media (min-width: 768px) { .sticky-cta { display: none; } }

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.99);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.revealed { opacity: 1; transform: translateY(0) scale(1); }

/* SPOTLIGHT GLOW */
.step, .rcard, .svc-card, .referral-card, .gcard-img-wrap {
  position: relative;
  overflow: hidden;
}
.step::after, .rcard::after, .svc-card::after, .referral-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(500px circle at var(--gx, -100%) var(--gy, -100%), rgba(201,152,14,0.07), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}
.gcard-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(300px circle at var(--gx, -100%) var(--gy, -100%), rgba(201,152,14,0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 2;
}
.glow-active::after { opacity: 1; }
/* ensure content sits above glow layer */
.step > *, .rcard > *, .svc-card > *, .referral-card > * { position: relative; z-index: 1; }
