/* ════════════════════════════════════════════════════════════════════════════
   Golden Scissors — Customer Stylesheet
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Design Tokens ─────────────────────────────────────────────────────────── */
:root {
  --bg:           #0D0D0D;
  --surface-1:    #1C1C1C;
  --surface-2:    #242424;
  --surface-3:    #1a1a1a;
  --border:       #2A2A2A;
  --border-light: rgba(255,255,255,.06);
  --gold:         #C9A84C;
  --gold-light:   #D4B86A;
  --gold-dim:     rgba(201,168,76,.14);
  --gold-glow:    rgba(201,168,76,.25);
  --text-primary: #FFFFFF;
  --text-sec:     #A8A8A8;
  --text-muted:   #6B6B6B;

  --r-card:  12px;
  --r-btn:   10px;
  --r-input: 8px;

  --font-body:    'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;

  --max-mobile:   420px;
  --ease-spring:  cubic-bezier(.16,1,.3,1);
  --ease-out:     cubic-bezier(.25,.46,.45,.94);
}

/* ── Reset + Global ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Hide all scrollbars globally while keeping scroll behaviour */
* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
*::-webkit-scrollbar { display: none; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* Fade the page in on first load */
  animation: pageLoad .5s ease both;
}

@keyframes pageLoad {
  from { opacity: 0; }
  to   { opacity: 1; }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; }

/* ── Utility ──────────────────────────────────────────────────────────────── */
.hidden       { display: none !important; }
.mobile-only  { display: block; }
.desktop-only { display: none; }

@media (min-width: 768px) {
  .mobile-only  { display: none; }
  .desktop-only { display: block; }
}

/* ── Container ────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-mobile);
  margin: 0 auto;
  padding: 0 1.375rem;
}
@media (min-width: 768px) {
  .container { max-width: 1160px; }
}

/* ════════════════════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATION SYSTEM
   ════════════════════════════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity  .75s var(--ease-spring),
    transform .75s var(--ease-spring);
}
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="scale"] { transform: scale(.93); }

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .17s; }
[data-reveal-delay="3"] { transition-delay: .26s; }
[data-reveal-delay="4"] { transition-delay: .35s; }
[data-reveal-delay="5"] { transition-delay: .44s; }
[data-reveal-delay="6"] { transition-delay: .53s; }

/* ════════════════════════════════════════════════════════════════════════════
   FUTURISTIC NAVIGATION
   ════════════════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  flex-direction: column;
  /* Start fully transparent */
  background: transparent;
  transition:
    background .5s var(--ease-out),
    border-color .5s var(--ease-out),
    height .4s var(--ease-out);
}
.site-header.scrolled {
  background: rgba(13,13,13,.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 1.5rem;
  flex: 1;
}

/* ── Nav Rule ─────────────────────────────────────────────────────── */
.nav-rule {
  height: 0.5px;
  width: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width .6s var(--ease-spring);
  margin: 0 auto;
}
.site-header.scrolled .nav-rule { width: 100%; }

/* ── Logo ─────────────────────────────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}
.logo-scissors {
  color: var(--gold);
  display: flex;
  align-items: center;
  transition: transform .5s var(--ease-spring), filter .4s ease;
}
.logo:hover .logo-scissors {
  transform: rotate(-20deg) scale(1.1);
  filter: drop-shadow(0 0 10px var(--gold-glow));
}
.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.logo-word {
  font-family: var(--font-body);
  font-size: .625rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-sec);
  transition: color .3s;
}
.logo-word-accent {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--text-primary);
}
.logo:hover .logo-word { color: var(--text-primary); }

/* ── Centre nav links ─────────────────────────────────────────────── */
.header-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-link {
  position: relative;
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding-bottom: 2px;
  transition: color .25s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease-spring);
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--text-primary); }

/* ── Nav CTA button ───────────────────────────────────────────────── */
.nav-cta {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1.1rem;
  border-radius: var(--r-btn);
  background: var(--gold);
  color: #000;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity .4s, transform .4s var(--ease-spring), box-shadow .3s;
}
.nav-cta i { font-size: .875rem; }
.site-header.scrolled .nav-cta {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.nav-cta:hover {
  box-shadow: 0 4px 20px var(--gold-glow);
}

/* Main content offset for fixed nav */
.main-content { padding-top: 64px; }

/* ════════════════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100svh - 64px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5rem 0 4rem;
}

/* Atmospheric grain texture via pseudo-element */
.hero-grain {
  position: absolute;
  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.04'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: .6;
  pointer-events: none;
  z-index: 0;
}

/* Ambient gold orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.hero-orb-1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(201,168,76,.07) 0%, transparent 70%);
  animation-duration: 14s;
}
.hero-orb-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -80px;
  background: radial-gradient(circle, rgba(201,168,76,.05) 0%, transparent 70%);
  animation-duration: 10s;
  animation-delay: -5s;
}
@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(20px, -30px) scale(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Rating badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .9rem;
  border: 0.5px solid rgba(201,168,76,.4);
  border-radius: 99px;
  background: rgba(201,168,76,.06);
  margin-bottom: 1.75rem;
  animation: fadeUp .7s var(--ease-spring) .1s both;
}
.hero-stars { display: flex; gap: 2px; }
.hero-badge-text {
  font-size: .75rem;
  font-weight: 500;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .45rem;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .65rem;
  color: var(--text-muted);
  padding: .1rem .35rem;
  border: 0.5px solid var(--border);
  border-radius: 4px;
}
.live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

/* Hero title */
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1rem;
}
.hero-title-line {
  display: block;
  font-size: clamp(3rem, 12vw, 6.5rem);
  animation: fadeUp .9s var(--ease-spring) .25s both;
}
.hero-title-italic {
  font-style: italic;
  color: var(--gold);
  animation-delay: .35s;
}

.hero-tagline {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: var(--text-sec);
  letter-spacing: .04em;
  margin-bottom: 1.75rem;
  animation: fadeUp .7s var(--ease-spring) .5s both;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  margin-bottom: 2.5rem;
  animation: fadeUp .7s var(--ease-spring) .62s both;
}
.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8125rem;
  color: var(--text-muted);
  transition: color .25s;
}
.hero-meta-item i { font-size: 1rem; }
.hero-meta-item:hover { color: var(--text-sec); }
.phone-link { color: var(--text-sec) !important; }
.phone-link:hover { color: var(--text-primary) !important; }

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .875rem;
  animation: fadeUp .7s var(--ease-spring) .75s both;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeUp .5s var(--ease-spring) 1.2s both;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(.6); transform-origin: top; }
  50%       { opacity: 1;  transform: scaleY(1);  }
}

/* Hero entry animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* ════════════════════════════════════════════════════════════════════════════
   GALLERY
   ════════════════════════════════════════════════════════════════════════════ */
.gallery-section { overflow: hidden; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 240px;
}
@media (min-width: 640px) {
  .gallery-grid { height: 380px; }
}
@media (min-width: 900px) {
  .gallery-grid { height: 460px; }
}

.gallery-panel {
  position: relative;
  overflow: hidden;
  background: var(--surface-1);
  background-size: cover;
  background-position: center;
  cursor: default;
  transition: transform .7s var(--ease-spring);
}
.gallery-grid:hover .gallery-panel { transform: scale(.98); }
.gallery-grid:hover .gallery-panel:hover { transform: scale(1.02); z-index: 1; }

/* CSS placeholder panels (shown when no Google photo) */

/* Panel 1 — diagonal gold lattice */
.gallery-css-1 {
  background: linear-gradient(150deg, #141008 0%, #1c1610 50%, #0f0e0c 100%);
}
.gallery-css-1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(201,168,76,.18) 0,   rgba(201,168,76,.18) 1px,
    transparent 1px,           transparent 42px
  ),
  repeating-linear-gradient(
    45deg,
    rgba(201,168,76,.07) 0,   rgba(201,168,76,.07) 1px,
    transparent 1px,           transparent 42px
  );
}
.gallery-css-1::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(201,168,76,.12) 0%, transparent 60%);
}

/* Panel 2 — large scissors centrepiece */
.gallery-css-2 {
  background: linear-gradient(180deg, #181410 0%, #0f0d0b 100%);
}
.gallery-css-2::before {
  content: '✂';
  position: absolute;
  font-size: 9rem;
  color: rgba(201,168,76,.35);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-20deg);
  line-height: 1;
  pointer-events: none;
  text-shadow: 0 0 60px rgba(201,168,76,.2);
  filter: drop-shadow(0 0 20px rgba(201,168,76,.15));
}
.gallery-css-2::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201,168,76,.08) 0%, transparent 55%);
}

/* Panel 3 — atmospheric gold glow */
.gallery-css-3 {
  background: radial-gradient(ellipse at 65% 35%, #221c0f 0%, #0f0d0b 65%);
}
.gallery-css-3::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 60% 35%, rgba(201,168,76,.22) 0%, transparent 45%),
    radial-gradient(circle at 30% 75%, rgba(201,168,76,.1) 0%, transparent 35%);
}
.gallery-css-3::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.25);
  box-shadow:
    0 0 0 30px rgba(201,168,76,.04),
    0 0 0 60px rgba(201,168,76,.02);
}

/* Overlay — always slightly visible on placeholder panels */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity .4s;
}
/* Placeholder panels show label permanently (photo panels on hover only) */
.gallery-panel-css .gallery-overlay { opacity: 1; }
.gallery-panel:not(.gallery-panel-css):hover .gallery-overlay { opacity: 1; }
.gallery-label {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
}
.gallery-sub {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  margin-top: .2rem;
}

/* ════════════════════════════════════════════════════════════════════════════
   SHARED SECTION STYLES
   ════════════════════════════════════════════════════════════════════════════ */
.section { padding: 5rem 0; }
.section-alt { background: var(--surface-1); }

.section-head { margin-bottom: 2rem; }
.section-eyebrow {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.375rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}
.section-sub {
  font-size: .9rem;
  color: var(--text-muted);
  margin-top: .5rem;
}
.section-cta { margin-top: 2rem; }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .75rem;
  font-size: .7rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 0.5px solid var(--border);
  border-radius: 6px;
  padding: .2rem .5rem;
}

/* ════════════════════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .8125rem 1.625rem;
  border-radius: var(--r-btn);
  font-size: .9375rem;
  font-weight: 600;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition:
    opacity .2s,
    transform .15s var(--ease-spring),
    box-shadow .3s;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn-gold {
  background: var(--gold);
  color: #000;
}
.btn-gold:hover {
  opacity: .9;
  box-shadow: 0 6px 28px var(--gold-glow), 0 2px 8px rgba(0,0,0,.4);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border: 0.5px solid rgba(255,255,255,.15);
  color: var(--text-sec);
  transition: border-color .25s, color .25s, transform .15s var(--ease-spring);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 0.5px solid var(--border);
  color: var(--text-sec);
}
.btn-outline:hover { border-color: var(--text-sec); color: var(--text-primary); }

.btn-lg { padding: .9375rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* ════════════════════════════════════════════════════════════════════════════
   FORMS
   ════════════════════════════════════════════════════════════════════════════ */
.form-group { display: flex; flex-direction: column; gap: .375rem; }
.form-label { font-size: .8125rem; font-weight: 500; color: var(--text-sec); }
.form-input {
  background: var(--surface-2);
  border: 0.5px solid var(--border);
  border-radius: var(--r-input);
  color: var(--text-primary);
  padding: .8125rem 1rem;
  font-size: .9375rem;
  width: 100%;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-error { font-size: .78rem; color: #e25555; }
.input-error { border-color: #e25555; }
.optional-label { font-size: .75rem; font-weight: 400; color: var(--text-muted); }

/* ════════════════════════════════════════════════════════════════════════════
   ALERTS
   ════════════════════════════════════════════════════════════════════════════ */
.alert {
  padding: .875rem 1rem;
  border-radius: var(--r-card);
  margin-bottom: 1.25rem;
  font-size: .875rem;
}
.alert-success {
  background: rgba(201,168,76,.1);
  border: 0.5px solid rgba(201,168,76,.4);
  color: var(--gold);
}
.alert-danger {
  background: rgba(226,85,85,.08);
  border: 0.5px solid rgba(226,85,85,.3);
  color: #e25555;
}

/* ════════════════════════════════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
@media (min-width: 768px)  { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--surface-1);
  border: 0.5px solid var(--border);
  border-radius: var(--r-card);
  padding: 1.125rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .625rem;
  transition:
    border-color .3s,
    transform .4s var(--ease-spring),
    box-shadow .3s;
  cursor: default;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(201,168,76,.1);
}
.service-card.selectable { cursor: pointer; }
.service-card.selected {
  border-color: var(--gold);
  background: var(--gold-dim);
  box-shadow: 0 0 0 2px rgba(201,168,76,.2);
}

.service-icon { font-size: 1.625rem; line-height: 1; }
.service-info { flex: 1; }
.service-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: .2rem;
}
.service-duration {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .73rem;
  color: var(--text-muted);
}
.service-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
}

/* ════════════════════════════════════════════════════════════════════════════
   TEAM
   ════════════════════════════════════════════════════════════════════════════ */
.team-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: .75rem;
}
.team-card {
  background: var(--surface-2);
  border: 0.5px solid var(--border);
  border-radius: var(--r-card);
  padding: 1.5rem 1.25rem 1.25rem;
  min-width: 150px;
  text-align: center;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .375rem;
  transition:
    border-color .3s,
    transform .4s var(--ease-spring),
    box-shadow .3s;
  cursor: default;
}
.team-card:hover {
  border-color: rgba(201,168,76,.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
}
.team-card.selectable { cursor: pointer; }
.team-card.selected { border-color: var(--gold); background: var(--gold-dim); }

.team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .5rem;
  transition: transform .4s var(--ease-spring), box-shadow .3s;
}
.team-card:hover .team-avatar {
  transform: scale(1.08);
  box-shadow: 0 0 20px var(--gold-glow);
}
.team-name { font-size: .9375rem; font-weight: 600; }
.team-specialty { font-size: .73rem; color: var(--text-muted); }
.team-book-link {
  font-size: .73rem;
  color: var(--gold);
  margin-top: .375rem;
  opacity: 0;
  transition: opacity .3s;
}
.team-card:hover .team-book-link { opacity: 1; }

/* ════════════════════════════════════════════════════════════════════════════
   REVIEWS MARQUEE
   ════════════════════════════════════════════════════════════════════════════ */
.marquee-wrapper {
  overflow: hidden;
  padding: 1rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  mask-image:         linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.review-card {
  background: var(--surface-1);
  border: 0.5px solid var(--border);
  border-radius: var(--r-card);
  padding: 1.375rem 1.25rem;
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: border-color .3s, transform .4s var(--ease-spring);
}
.review-card:hover {
  border-color: rgba(201,168,76,.3);
  transform: translateY(-3px);
}
.review-stars { display: flex; gap: 3px; align-items: center; }
.review-text {
  font-size: .875rem;
  color: var(--text-sec);
  line-height: 1.6;
  font-style: italic;
}
.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.review-name { font-size: .8125rem; font-weight: 600; }
.review-date {
  font-size: .7rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .25rem;
}
.review-source-g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  font-size: .6rem;
  font-weight: 700;
  background: #4285F4;
  color: #fff;
  border-radius: 3px;
}

/* ════════════════════════════════════════════════════════════════════════════
   REVIEW FORM — Centered card
   ════════════════════════════════════════════════════════════════════════════ */
.review-form-section { display: flex; align-items: center; justify-content: center; }

.review-form-wrap {
  background: var(--surface-2);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
}

.review-form-cols {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 540px) {
  .review-form-cols { grid-template-columns: 1fr 1fr; }
  .review-form-cols > *:last-child { grid-column: 1 / -1; }
}

/* Star selector */
.star-field { margin-bottom: 1.25rem; }
.star-selector {
  display: flex;
  gap: .375rem;
  margin-top: .5rem;
}
.star-btn {
  width: 36px;
  height: 36px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform .2s var(--ease-spring);
}
.star-btn svg {
  width: 100%;
  height: 100%;
  fill: var(--border);
  stroke: none;
  transition: fill .2s, filter .2s;
}
.star-btn:hover svg,
.star-btn.active svg {
  fill: var(--gold);
  filter: drop-shadow(0 0 6px var(--gold-glow));
}
.star-btn:hover { transform: scale(1.2) rotate(-5deg); }
.star-btn:active { transform: scale(.9); }

/* ════════════════════════════════════════════════════════════════════════════
   BOTTOM NAVIGATION (mobile)
   ════════════════════════════════════════════════════════════════════════════ */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-mobile);
  background: rgba(18,18,18,.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 0.5px solid rgba(255,255,255,.06);
  display: flex;
  align-items: stretch;
  height: 68px;
  z-index: 300;
  /* safe area for notch phones */
  padding-bottom: env(safe-area-inset-bottom, 0);
}
@media (min-width: 768px) { .bottom-nav { display: none; } }

.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .2rem;
  color: var(--text-muted);
  font-size: .625rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  transition: color .2s;
}
.bottom-nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 25%;
  width: 50%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s var(--ease-spring);
}
.bottom-nav-item i { font-size: 1.375rem; transition: transform .3s var(--ease-spring); }
.bottom-nav-item.active { color: var(--gold); }
.bottom-nav-item.active::before { transform: scaleX(1); }
.bottom-nav-item.active i { transform: translateY(-2px); }

/* ════════════════════════════════════════════════════════════════════════════
   INFO PAGE
   ════════════════════════════════════════════════════════════════════════════ */
.card {
  background: var(--surface-1);
  border: 0.5px solid var(--border);
  border-radius: var(--r-card);
  padding: 1.375rem;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-row { border-bottom: 0.5px solid rgba(255,255,255,.04); }
.hours-row:last-child { border-bottom: none; }
.hours-day, .hours-time { padding: .875rem 0; font-size: .9375rem; }
.hours-day { color: var(--text-sec); }
.hours-time { text-align: right; color: var(--text-primary); }
.hours-today .hours-day,
.hours-today .hours-time { color: var(--gold); font-weight: 600; }
.today-badge {
  display: inline-block;
  background: var(--gold-dim);
  border: 0.5px solid rgba(201,168,76,.4);
  color: var(--gold);
  font-size: .6rem;
  font-weight: 700;
  padding: .1rem .4rem;
  border-radius: 4px;
  margin-left: .5rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.contact-card { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 38px;
  height: 38px;
  background: var(--surface-2);
  border: 0.5px solid var(--border);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.0625rem;
  flex-shrink: 0;
}
.contact-details { display: flex; flex-direction: column; gap: .125rem; }
.contact-label { font-size: .7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }
.contact-value { font-size: .9375rem; color: var(--text-primary); line-height: 1.5; }
a.contact-value:hover { color: var(--gold); }
.cta-banner {
  background: var(--surface-1);
  border: 0.5px solid var(--border);
  border-radius: var(--r-card);
  padding: 2.5rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.125rem;
}
.cta-banner-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

/* ════════════════════════════════════════════════════════════════════════════
   BOOKING PAGE
   ════════════════════════════════════════════════════════════════════════════ */
.book-page { padding: 2rem 0 5rem; }

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}
.step-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: background .3s, border-color .3s, color .3s, box-shadow .3s;
}
.step-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  box-shadow: 0 0 16px var(--gold-glow);
}
.step-dot.done {
  background: var(--gold-dim);
  border-color: rgba(201,168,76,.4);
  color: var(--gold);
}
.step-line { height: 0.5px; width: 3rem; background: var(--border); }

.step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.125rem;
}
.step-actions {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
}
.step-actions .btn { flex: 1; }

/* Calendar */
.calendar-wrapper {
  background: var(--surface-1);
  border: 0.5px solid var(--border);
  border-radius: var(--r-card);
  padding: 1.125rem;
}
.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cal-month-label { font-weight: 600; font-size: .9375rem; }
.cal-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--surface-2);
  border: 0.5px solid var(--border);
  color: var(--text-sec);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .2s, color .2s, transform .2s var(--ease-spring);
}
.cal-nav-btn:hover { border-color: var(--gold); color: var(--gold); transform: scale(1.08); }

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  text-align: center;
}
.cal-day-header {
  font-size: .625rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: .3rem 0;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.cal-day {
  padding: .5rem 0;
  font-size: .875rem;
  border-radius: 8px;
  cursor: pointer;
  color: var(--text-sec);
  transition: background .15s, color .15s, transform .2s var(--ease-spring);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cal-day:hover:not(.cal-past):not(.cal-empty) {
  background: var(--surface-2);
  color: var(--text-primary);
  transform: scale(1.1);
}
.cal-day.cal-today { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--gold); }
.cal-day.cal-selected { background: var(--gold); color: #000; font-weight: 600; box-shadow: 0 0 12px var(--gold-glow); }
.cal-day.cal-past, .cal-day.cal-empty { color: var(--text-muted); cursor: default; opacity: .35; }

/* Time Slots */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
}
.time-slot {
  padding: .6875rem;
  text-align: center;
  border-radius: 8px;
  border: 0.5px solid var(--border);
  background: var(--surface-2);
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--text-primary);
  transition: border-color .2s, background .2s, transform .2s var(--ease-spring), box-shadow .2s;
}
.time-slot:hover:not(.slot-taken) {
  border-color: var(--gold);
  transform: scale(1.04);
}
.time-slot.slot-selected {
  border-color: var(--gold);
  background: var(--gold-dim);
  color: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}
.time-slot.slot-taken {
  color: var(--text-muted);
  text-decoration: line-through;
  cursor: not-allowed;
  opacity: .4;
}
.slots-loader { color: var(--text-muted); font-size: .875rem; padding: 1rem 0; }

/* Booking Summary */
.summary-box {
  background: var(--surface-1);
  border: 0.5px solid var(--border);
  border-radius: var(--r-card);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5625rem 0;
  border-bottom: 0.5px solid rgba(255,255,255,.04);
}
.summary-row:last-child { border-bottom: none; }
.summary-label { font-size: .8125rem; color: var(--text-muted); }
.summary-value { font-size: .9rem; font-weight: 500; text-align: right; }
.summary-price-row .summary-price {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--gold);
}

.payment-note {
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  font-size: .8125rem;
  color: var(--text-muted);
  background: var(--surface-2);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: .75rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.payment-note i { color: var(--gold); flex-shrink: 0; margin-top: 1px; }

/* Success */
.success-card {
  background: var(--surface-1);
  border: 0.5px solid rgba(201,168,76,.3);
  border-radius: var(--r-card);
  padding: 2.5rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeUp .6s var(--ease-spring) both;
}
.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  font-size: 1.625rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
  box-shadow: 0 0 32px var(--gold-glow);
  animation: scaleIn .5s var(--ease-spring) .1s both;
}
@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.success-title {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: .375rem;
}
.success-sub { color: var(--text-sec); font-size: .9rem; margin-bottom: 1.375rem; }
.success-card .summary-box { width: 100%; text-align: left; }
.success-actions { display: flex; flex-direction: column; gap: .625rem; width: 100%; margin-top: 1.25rem; }

/* WhatsApp + Calendar CTAs on success */
.btn-wa {
  background: var(--surface-2);
  border: 0.5px solid var(--border);
  color: var(--text-sec);
  font-size: .875rem;
}
.btn-wa:hover { border-color: var(--gold); color: var(--gold); }

/* ════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .hero-meta       { flex-direction: row; justify-content: center; gap: 2rem; }
  .hero-actions    { flex-direction: row; justify-content: center; }
  .main-content    { padding-bottom: 0; }
  .book-page       { max-width: 580px; margin: 0 auto; }
  .review-form-wrap { padding: 3rem 2.5rem; }
}
@media (max-width: 767px) {
  .main-content { padding-bottom: 80px; }
}
