/* ==========================================================================
   Famous Cutzz — Award-tier design system
   ========================================================================== */

:root {
  --bg: #070707;
  --bg-elevated: #0e0e0e;
  --bg-card: #121212;
  --bg-card-hover: #181818;
  --border: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(201, 162, 39, 0.35);
  --gold: #c9a227;
  --gold-light: #e4c766;
  --gold-dim: #8a7020;
  --gold-glow: rgba(201, 162, 39, 0.25);
  --text: #f5f0e8;
  --text-muted: #a39e94;
  --text-dim: #6b6660;
  --white: #ffffff;
  --black: #000000;
  --danger: #c44;
  --radius: 4px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --nav-h: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1240px;
  --section-pad: clamp(5rem, 12vw, 9rem);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) var(--bg);
}
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
em { font-style: italic; color: var(--gold-light); }
strong { font-weight: 600; }
::selection { background: var(--gold); color: var(--black); }

/* Custom cursor (desktop) */
.cursor, .cursor-dot {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
}
.cursor {
  width: 40px; height: 40px;
  border: 1px solid rgba(201, 162, 39, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s, border-color 0.3s, opacity 0.3s;
  mix-blend-mode: difference;
}
.cursor.gold {
  width: 64px; height: 64px;
  background: rgba(201, 162, 39, 0.15);
  border-color: var(--gold);
  mix-blend-mode: normal;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: translate(-50%, -50%);
}
body.has-cursor .cursor,
body.has-cursor .cursor-dot { opacity: 1; }
body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: grid;
  place-items: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner { text-align: center; }
.loader-mark {
  /* Match mobile “perfect” feel on all screens: wide full logo, no crop */
  width: min(78vw, 340px);
  height: auto;
  margin: 0 auto 1.35rem;
  color: var(--gold);
  animation: pulse 1.5s ease-in-out infinite;
}
.loader-mark img {
  width: 100%;
  height: auto;
  max-height: min(28vh, 220px);
  object-fit: contain;
  object-position: center center;
  display: block;
  margin: 0 auto;
  background: transparent !important;
}
.loader-text {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.loader-bar {
  width: min(60vw, 200px);
  height: 1px;
  background: var(--border);
  margin: 0 auto;
  overflow: hidden;
}
.loader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-light));
  animation: loadBar 1.6s var(--ease) forwards;
}
@keyframes loadBar { to { width: 100%; } }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.96); }
}

/* Layout */
.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}
.section {
  padding: var(--section-pad) 0;
  position: relative;
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(3rem, 6vw, 4.5rem);
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}
.section-sub {
  margin-top: 1.25rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 300;
}
.section-sub a {
  color: var(--gold-light);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.section-sub a:hover { border-color: var(--gold); }
.lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 36em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-sm { padding: 0.65rem 1.2rem; font-size: 0.78rem; }
.btn-lg { padding: 1.15rem 2.1rem; font-size: 0.95rem; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% 200%;
  color: var(--black);
  box-shadow: 0 0 0 0 var(--gold-glow);
}
.btn-gold:hover {
  background-position: 100% 0;
  box-shadow: 0 8px 32px var(--gold-glow);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201, 162, 39, 0.05);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s, height 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 7, 7, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom-color: var(--border);
  height: 76px;
}
.nav-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  z-index: 10;
  flex-shrink: 0;
  max-width: min(42vw, 260px);
  line-height: 0;
  /* Extra vertical room so the logo never clips at the top */
  padding: 6px 0;
  box-sizing: content-box;
}
.nav-logo-img {
  display: block;
  /* Slightly smaller on desktop so the full mark fits cleanly */
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  object-position: center center;
  background: transparent !important;
}
.nav.scrolled .nav-logo-img {
  height: 44px;
  max-width: 210px;
}
@media (max-width: 900px) {
  :root { --nav-h: 84px; }
  .nav-logo {
    max-width: min(48vw, 220px);
  }
  .nav-logo-img {
    height: 48px;
    max-width: min(46vw, 210px);
  }
  .nav.scrolled {
    height: 76px;
  }
  .nav.scrolled .nav-logo-img {
    height: 42px;
  }
}
@media (max-width: 700px) {
  :root { --nav-h: 78px; }
  .nav-logo {
    max-width: min(58vw, 220px);
    padding: 4px 0;
  }
  .nav-logo-img {
    display: block;
    height: 50px;
    max-width: 100%;
  }
  .nav.scrolled {
    height: 70px;
  }
  .nav.scrolled .nav-logo-img {
    height: 44px;
  }
}
.footer-logo {
  max-width: 300px;
}
.footer-logo .nav-logo-img {
  height: 72px;
  max-width: 300px;
}
.footer-tagline {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 300;
  max-width: 28em;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-phone {
  display: none;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.nav-phone:hover { color: var(--gold-light); }
@media (min-width: 1100px) {
  .nav-phone { display: flex; }
}
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 10;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.nav-burger.open span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav-burger.open span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-actions .btn { display: none; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(7, 7, 7, 0.97);
  backdrop-filter: blur(24px);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu[hidden] { display: grid !important; }
.mobile-menu:not(.open)[hidden] {
  display: grid !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.mobile-menu-links a:not(.btn) {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 500;
  color: var(--text);
  transition: color 0.3s;
}
.mobile-menu-links a:not(.btn):hover { color: var(--gold); }
.mobile-menu-links .btn { margin-top: 1rem; }

/* ========== HERO FILM (Option C — asset-led luxury) ========== */
.hero-film {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 2rem) 0 clamp(4.5rem, 9vh, 6.5rem);
  overflow: hidden;
  background: #050505;
  z-index: 1;
}

/* Media stack */
.hf-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #050505;
  overflow: hidden;
}
.hf-reel {
  position: absolute;
  inset: 0;
}
.hf-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  /* Opacity transitions are applied inline only during crossfade */
  transition: none;
  will-change: opacity;
  background: #050505;
  /* Isolate paint so stacked frames blend cleanly */
  transform: translateZ(0);
}
.hf-frame.is-active { opacity: 1; }
.hf-frame.is-top { z-index: 3; }
.hf-frame.is-bottom { z-index: 1; }

.hf-video,
.hf-still {
  position: absolute;
  inset: -2%; /* slight overscan so edges never show a hard crop line */
  width: 104%;
  height: 104%;
  max-width: none;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.hf-video {
  /* Prefer video when loaded; still sits underneath as seamless poster */
  z-index: 1;
  opacity: 0;
  /* Long soft rise so video never “snaps” over the still */
  transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}
.hf-video.is-ready { opacity: 1; }
.hf-still {
  z-index: 0;
  filter: brightness(0.84) contrast(1.04);
  /* Match video grade so switch is invisible */
}
.hf-frame.has-video .hf-still {
  /* Keep still painted under video for the entire clip */
}

/* Cinematic grade */
.hf-grade {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8,6,4,0.15), transparent 30%, rgba(8,6,4,0.2) 100%);
  mix-blend-mode: soft-light;
  opacity: 0.7;
}
.hf-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(5,5,5,0.5) 0%,
      rgba(5,5,5,0.12) 34%,
      rgba(5,5,5,0.42) 62%,
      rgba(5,5,5,0.94) 100%),
    linear-gradient(100deg, rgba(5,5,5,0.55) 0%, transparent 48%);
}

/* Cursor light — soft gold mirror reflection */
.hf-cursor-light {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: radial-gradient(
    520px circle at var(--lx, 50%) var(--ly, 40%),
    rgba(228, 199, 102, 0.16) 0%,
    rgba(201, 162, 39, 0.06) 28%,
    transparent 58%
  );
  mix-blend-mode: screen;
}
.hf-specular {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease;
  background: radial-gradient(
    180px circle at var(--lx, 50%) var(--ly, 40%),
    rgba(255, 248, 220, 0.22) 0%,
    rgba(228, 199, 102, 0.08) 35%,
    transparent 70%
  );
  mix-blend-mode: overlay;
}
.hero-film.has-pointer .hf-cursor-light,
.hero-film.has-pointer .hf-specular {
  opacity: 1;
}

.hf-vignette {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 70% at 50% 40%, transparent 0%, rgba(0,0,0,0.5) 100%);
}
.hf-grain {
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Content — always on, award-grade type */
.hf-content {
  position: relative;
  z-index: 10;
  width: min(100% - 2.5rem, 900px);
  margin: 0 auto;
  padding-bottom: 0.5rem;
}

.hf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.35rem;
  opacity: 0;
  transform: translateY(14px);
}
.hf-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px var(--gold);
  animation: pulse 2.2s ease-in-out infinite;
}

.hf-title {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.hf-line {
  display: block;
  overflow: hidden;
  font-size: clamp(2.9rem, 9vw, 6.4rem);
}
.hf-line-inner {
  display: block;
  transform: translateY(110%);
  will-change: transform;
}
.hf-line-accent .hf-line-inner {
  font-style: italic;
  color: var(--gold-light);
  text-shadow: 0 0 90px rgba(201, 162, 39, 0.28);
}

.hf-sub {
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 30em;
  margin-bottom: 1.85rem;
  opacity: 0;
  transform: translateY(16px);
}

.hf-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.85rem;
  opacity: 0;
  transform: translateY(16px);
}

.hero-stats,
.hf-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--border);
  max-width: 520px;
  opacity: 0;
  transform: translateY(14px);
}
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.stat-divider {
  width: 1px; height: 36px;
  background: var(--border);
}

/* Film meta */
.hf-film-meta {
  position: absolute;
  top: calc(var(--nav-h) + 1.1rem);
  right: clamp(1.25rem, 4vw, 2.5rem);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
  opacity: 0;
}
.hf-reel-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hf-reel-dots {
  display: flex;
  gap: 0.35rem;
}
.hf-reel-dots span {
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.hf-reel-dots span::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: var(--gold);
}
.hf-reel-dots span.is-active::after {
  animation: hfDot linear forwards;
  animation-duration: var(--dot-dur, 6s);
}
.hf-reel-dots span.is-done::after { width: 100%; animation: none; }
@keyframes hfDot {
  from { width: 0; }
  to { width: 100%; }
}

.hf-scroll {
  position: absolute;
  bottom: 1.75rem;
  right: clamp(1.25rem, 4vw, 2.5rem);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0;
  transition: color 0.3s;
}
.hf-scroll:hover { color: var(--gold); }
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Intro complete state (no-js / reduced) */
.hero-film.is-ready .hf-eyebrow,
.hero-film.is-ready .hf-sub,
.hero-film.is-ready .hf-cta,
.hero-film.is-ready .hf-stats,
.hero-film.is-ready .hf-film-meta,
.hero-film.is-ready .hf-scroll {
  opacity: 1;
  transform: none;
}
.hero-film.is-ready .hf-line-inner {
  transform: none;
}

@media (max-width: 700px) {
  .hf-scroll { display: none; }
  .stat-divider { display: none; }
  .hf-cta { flex-direction: column; align-items: stretch; }
  .hf-cta .btn { width: 100%; justify-content: center; }
  .hf-film-meta { top: calc(var(--nav-h) + 0.65rem); }
  .hf-br { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hf-video { display: none !important; }
  .hf-still { opacity: 1 !important; transform: scale(1.06); }
  .hf-cursor-light,
  .hf-specular { display: none !important; }
  .scroll-line { animation: none; }
  .hf-eyebrow-dot { animation: none; }
  .hf-frame { transition: none; }
}

/* Marquee */
.marquee {
  border-block: 1px solid var(--border);
  background: var(--bg-elevated);
  overflow: hidden;
  padding: 1.1rem 0;
}
.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.mq-dot { color: var(--gold-dim); font-size: 0.6rem; align-self: center; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ========== EXPERIENCE ========== */
.experience { background: var(--bg); }
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 900px) {
  .exp-grid { grid-template-columns: 1fr; }
  .exp-visual { order: -1; }
}
.exp-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.exp-list li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.exp-icon {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  min-width: 2rem;
  padding-top: 0.15rem;
}
.exp-list strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.exp-list p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
}
.exp-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.exp-frame > img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.exp-float-card {
  position: absolute;
  bottom: -8%; right: -8%;
  width: 48%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--bg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  aspect-ratio: 1;
}
.exp-float-card img {
  width: 100%; height: 100%;
  object-fit: cover;
}
@media (max-width: 600px) {
  .exp-float-card { width: 42%; bottom: -5%; right: -5%; }
}

/* ========== SERVICES ========== */
.services {
  background: radial-gradient(ellipse at 50% 0%, rgba(201,162,39,0.06) 0%, transparent 55%), var(--bg-elevated);
}
.service-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  padding: 0.35rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 100px;
  width: fit-content;
  margin-inline: auto;
}
.service-tab {
  padding: 0.7rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-radius: 100px;
  transition: all 0.35s var(--ease);
}
.service-tab:hover { color: var(--text); }
.service-tab.active {
  background: var(--gold);
  color: var(--black);
}
.service-panel { display: none; }
.service-panel.active { display: block; animation: fadeUp 0.5s var(--ease); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 700px) {
  .service-grid { grid-template-columns: 1fr; }
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 220px;
  transition: border-color 0.4s, transform 0.4s var(--ease), background 0.4s;
}
.service-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}
.service-card.featured {
  background: linear-gradient(145deg, rgba(201,162,39,0.12) 0%, var(--bg-card) 50%);
  border-color: var(--border-gold);
}
.service-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  margin-bottom: 0.85rem;
  font-weight: 600;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.55;
}
.service-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.service-meta { display: flex; align-items: baseline; gap: 0.75rem; }
.price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold-light);
}
.duration {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Service list rows */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
}
.service-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.service-row:last-child { border-bottom: none; }
.service-row:hover { background: rgba(201,162,39,0.04); }
.service-row-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.service-row-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}
.service-row-time {
  font-size: 0.8rem;
  color: var(--text-dim);
  min-width: 4.5rem;
  text-align: right;
}
.service-row-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold-light);
  min-width: 3.5rem;
  text-align: right;
}
@media (max-width: 700px) {
  .service-row {
    grid-template-columns: 1fr auto;
    gap: 0.5rem 1rem;
  }
  .service-row-time { grid-column: 1; text-align: left; }
  .service-row-price { grid-column: 2; grid-row: 1; }
  .service-row .btn { grid-column: 1 / -1; margin-top: 0.5rem; width: 100%; }
}
.services-note {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.services-note a {
  color: var(--gold-light);
  margin-left: 0.5rem;
  border-bottom: 1px solid var(--border-gold);
}

/* ========== GALLERY ========== */
.gallery { padding-bottom: calc(var(--section-pad) * 0.35); }

/* ========== BEFORE / AFTER SLIDERS ========== */
.ba-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ba-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color 0.35s, box-shadow 0.35s;
}
.ba-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.ba-compare {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0a0a0a;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none; /* own the horizontal drag — page still scrolls outside */
  --pos: 50%;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  max-width: none;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.ba-after {
  z-index: 1;
}
.ba-before-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: var(--pos);
  overflow: hidden;
  border-right: 0;
}
.ba-before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--ba-full, 100%);
  max-width: none;
}
.ba-labels {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}
.ba-label {
  position: absolute;
  top: 0.85rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ba-label-before {
  left: 0.75rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.ba-label-after {
  right: 0.75rem;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: 1px solid transparent;
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  z-index: 5;
  width: 0;
  pointer-events: none;
  transform: translateX(-50%);
}
.ba-handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, var(--gold-light), transparent);
  box-shadow: 0 0 12px rgba(201, 162, 39, 0.45);
}
.ba-handle-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), 0 0 20px rgba(201, 162, 39, 0.3);
}
.ba-range {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  /* Large hit area for thumbs */
  touch-action: none;
}
.ba-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 56px;
  height: 100%;
  cursor: ew-resize;
}
.ba-range::-moz-range-thumb {
  width: 56px;
  height: 100%;
  border: 0;
  background: transparent;
  cursor: ew-resize;
}
.ba-meta {
  padding: 1.15rem 1.25rem 1.35rem;
  border-top: 1px solid var(--border);
}
.ba-meta h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}
.ba-meta p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .ba-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
  }
}
@media (max-width: 700px) {
  .ba-grid {
    grid-template-columns: 1fr;
    max-width: min(100%, 440px);
    margin-inline: auto;
    gap: 1.35rem;
  }
  .ba-compare {
    /* Slightly shorter on phones so more of the card fits above the fold */
    aspect-ratio: 4 / 5;
    min-height: 280px;
  }
  .ba-handle-knob {
    width: 56px;
    height: 56px;
  }
  .ba-label {
    font-size: 0.62rem;
    top: 0.65rem;
    padding: 0.32rem 0.55rem;
  }
  .ba-label-before { left: 0.55rem; }
  .ba-label-after { right: 0.55rem; }
  .ba-meta {
    padding: 1rem 1.1rem 1.2rem;
  }
  .ba-meta h3 { font-size: 1.2rem; }
  .ba-meta p { font-size: 0.88rem; }
  .ba-card {
    border-radius: var(--radius-lg);
  }
}

/* Lightbox — enlarge portfolio photos (full image, never cropped to half) */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  width: 100%;
  height: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding:
    max(0.5rem, env(safe-area-inset-top))
    max(0.5rem, env(safe-area-inset-right))
    max(0.5rem, env(safe-area-inset-bottom))
    max(0.5rem, env(safe-area-inset-left));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
  overscroll-behavior: contain;
  box-sizing: border-box;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lightbox[hidden] { display: flex !important; }
.lightbox:not(.open)[hidden] {
  display: flex !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.lightbox-stage {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  min-width: 0;
  padding: 3.25rem 3.5rem 1rem;
  box-sizing: border-box;
  overflow: hidden;
}
/* Full photo visible — size by viewport, never crop */
.lightbox-stage img,
.lightbox #lightboxImg {
  display: block;
  max-width: min(92vw, 1200px) !important;
  max-height: calc(100dvh - 7rem) !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: none;
  cursor: zoom-out;
  /* Override global img { max-width: 100% } parent quirks */
  flex-shrink: 1;
}
.lightbox-close {
  position: absolute;
  top: max(0.75rem, env(safe-area-inset-top));
  right: max(0.75rem, env(safe-area-inset-right));
  min-width: 48px;
  height: 48px;
  padding: 0 0.85rem;
  font-size: 1.75rem;
  color: var(--text);
  line-height: 1;
  transition: color 0.3s, transform 0.3s, background 0.3s;
  z-index: 5;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lightbox-close-x {
  font-size: 1.85rem;
  line-height: 1;
  margin-top: -2px;
}
.lightbox-close-text {
  display: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lightbox-close:hover,
.lightbox-close:focus-visible {
  color: var(--gold-light);
  border-color: var(--border-gold);
  transform: scale(1.04);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 2rem;
  color: var(--text-muted);
  transition: color 0.3s, background 0.3s, border-color 0.3s;
  z-index: 4;
  line-height: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(12, 12, 12, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.lightbox-nav:hover {
  color: var(--gold-light);
  border-color: var(--border-gold);
}
.lightbox-nav.prev { left: 0.75rem; }
.lightbox-nav.next { right: 0.75rem; }

/* Always-visible mobile exit bar */
.lightbox-mobile-bar {
  display: none;
  width: 100%;
  flex: 0 0 auto;
  padding: 0.75rem 1rem max(1rem, env(safe-area-inset-bottom));
  z-index: 5;
}
.lightbox-mobile-close {
  width: 100%;
  min-height: 52px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: 0;
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

@media (max-width: 700px) {
  .lightbox {
    padding-top: max(0.35rem, env(safe-area-inset-top));
    padding-bottom: 0;
  }
  .lightbox-stage {
    padding: 3rem 0.5rem 0.35rem;
  }
  .lightbox-stage img,
  .lightbox #lightboxImg {
    max-width: calc(100vw - 1rem) !important;
    max-height: calc(100dvh - 9.75rem) !important;
    border-radius: var(--radius);
  }
  .lightbox-close {
    min-width: auto;
    height: 44px;
    padding: 0 0.9rem 0 0.7rem;
    gap: 0.4rem;
  }
  .lightbox-close-text { display: inline; }
  .lightbox-close-x { font-size: 1.5rem; }
  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    top: auto;
    bottom: calc(5.75rem + env(safe-area-inset-bottom));
    transform: none;
  }
  .lightbox-nav.prev { left: 0.75rem; }
  .lightbox-nav.next { right: 0.75rem; }
  .lightbox-mobile-bar { display: block; }
}

@media (min-width: 701px) {
  .lightbox-mobile-bar { display: none !important; }
}

/* ========== TEAM ========== */
.team { background: var(--bg); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s var(--ease);
}
.team-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
}
.team-photo {
  position: relative;
  /* Taller frame for full-body portraits */
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #0e0e0e;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Keep faces/upper body in frame for full-length shop portraits */
  object-position: center 18%;
  filter: grayscale(12%);
  transition: transform 0.8s var(--ease), filter 0.5s;
}
.team-card:hover .team-photo img {
  transform: scale(1.04);
  filter: grayscale(0%);
}
.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,7,7,0.7) 0%, transparent 45%);
  pointer-events: none;
}
.team-info { padding: 1.5rem 1.5rem 1.75rem; }
.team-info h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
}
.team-role {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0.35rem 0 0.85rem;
}
.team-bio {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* ========== REVIEWS ========== */
.reviews {
  background: var(--bg-elevated);
  overflow: hidden;
  /* Avoid clipping marquee cards at section edges on mobile */
  overflow-x: clip;
}
.reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}
.reviews-score {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.score-big {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--gold-light);
}
.stars {
  color: var(--gold);
  letter-spacing: 0.1em;
  font-size: 1rem;
}
.score-meta p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
/*
 * Full-bleed marquee: break out of .container so cards aren’t clipped by
 * page padding mid-scroll (especially tight on mobile).
 */
.reviews-track-wrap {
  --reviews-gap: 1.25rem;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0.35rem 0 0.5rem;
  overflow: hidden;
  /* Softer edge fade — aggressive masks looked like text “cut off” on phones */
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 3%,
    #000 97%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 3%,
    #000 97%,
    transparent 100%
  );
}
.reviews-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: var(--reviews-gap);
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  animation: reviewScroll 55s linear infinite;
}
/* Pause only on real hover — sticky :hover on mobile freezes the strip mid-card */
@media (hover: hover) and (pointer: fine) {
  .reviews-track:hover { animation-play-state: paused; }
}
@keyframes reviewScroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
.review-card {
  width: min(340px, 82vw);
  flex: 0 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* Marquee + preserve-3d can clip card edges on iOS */
  transform: translateZ(0);
  transform-style: flat;
  box-sizing: border-box;
  min-height: 0;
  overflow: visible;
}
.review-card p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 3.6vw, 1.25rem);
  font-weight: 400;
  line-height: 1.45;
  font-style: italic;
  color: var(--text);
  flex: 1 1 auto;
  margin: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}
.review-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.review-card footer strong {
  font-size: 0.9rem;
  font-weight: 500;
  font-style: normal;
}
.review-card footer span {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-style: normal;
}
.reviews-cta {
  text-align: center;
  margin-top: 2.5rem;
}

@media (max-width: 700px) {
  .reviews-head {
    margin-bottom: 2rem;
    gap: 1.25rem;
  }
  .score-big {
    font-size: 3.25rem;
  }
  .reviews-track-wrap {
    --reviews-gap: 0.9rem;
    /* Minimal fade on small screens so full quotes stay readable */
    mask-image: linear-gradient(
      90deg,
      transparent 0%,
      #000 1.5%,
      #000 98.5%,
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0%,
      #000 1.5%,
      #000 98.5%,
      transparent 100%
    );
  }
  .reviews-track {
    animation-duration: 65s;
  }
  .review-card {
    width: min(300px, 78vw);
    padding: 1.25rem 1.15rem;
    gap: 0.85rem;
  }
  .review-card p {
    font-size: 1.05rem;
    line-height: 1.4;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    transform: none !important;
  }
  .reviews-track-wrap {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    mask-image: none;
    -webkit-mask-image: none;
    overflow: visible;
  }
  .review-card {
    width: 100%;
    max-width: 420px;
  }
}

/* ========== WHY ========== */
.why { background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 800px) {
  .why-grid { grid-template-columns: 1fr; }
}
.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 500px) {
  .why-cards { grid-template-columns: 1fr; }
}
.why-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.4s, transform 0.4s var(--ease);
}
.why-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}
.why-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.85rem;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.55;
}

/* ========== VISIT ========== */
.visit {
  background: radial-gradient(ellipse at 80% 50%, rgba(201,162,39,0.05) 0%, transparent 50%), var(--bg-elevated);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) {
  .visit-grid { grid-template-columns: 1fr; }
}
.visit-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2.5rem 0;
}
@media (max-width: 500px) {
  .visit-details { grid-template-columns: 1fr; }
}
.visit-block h3 {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hours-list li,
.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-muted);
}
.hours-list li span:last-child,
.contact-list a {
  color: var(--text);
  font-weight: 400;
}
.hours-list .closed { color: var(--text-dim); }
.contact-list a {
  transition: color 0.3s;
  border-bottom: none;
}
.contact-list a:hover { color: var(--gold-light); }
.contact-list li { justify-content: flex-start; }
.visit-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 0.85rem; }
.visit-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.visit-map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1;
  min-height: 360px;
  background: var(--bg-card);
}
.visit-map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.9);
  transition: filter 0.5s;
}
.visit-map:hover iframe { filter: grayscale(0.3) invert(0.92) contrast(0.95); }
.map-link {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: rgba(7,7,7,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.8rem;
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  transition: background 0.3s;
}
.map-link:hover { background: rgba(201,162,39,0.15); }

/* Final CTA */
.final-cta {
  position: relative;
  padding: clamp(5rem, 12vw, 8rem) 0;
  text-align: center;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
}
.final-cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,7,7,0.82);
}
.final-cta-content {
  position: relative;
  z-index: 1;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 500;
  margin-bottom: 1rem;
}
.final-cta p {
  color: var(--text-muted);
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 2rem;
}
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  align-items: center;
}
.final-cta-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text);
  background: rgba(0, 0, 0, 0.25);
}
.final-cta-actions .btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ========== BOOKSY WIDGET ========== */
.booksy-inline {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-gold);
  background: linear-gradient(160deg, rgba(201, 162, 39, 0.08), rgba(12, 12, 12, 0.9));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  /* When page scrolls to #booksyInline / auto-scroll after step change */
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}
.booksy-inline-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}
.booksy-inline-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  margin: 0.35rem 0 0.65rem;
}
.booksy-inline-sub {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
}
.booksy-inline-frame {
  position: relative;
  width: 100%;
  min-height: 560px;
  border-radius: var(--radius-lg);
  /* visible so Booksy can grow height for barber photos / hair designs */
  overflow: visible;
  background: #fff;
  border: 1px solid rgba(201, 162, 39, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}
.booksy-widget-dialog {
  scroll-margin-top: calc(var(--nav-h) + 12px) !important;
}
/* Soften Booksy’s injected chrome inside our frame */
.booksy-inline-frame .booksy-widget-container,
.booksy-inline-frame .booksy-widget-container-inline {
  width: 100% !important;
  max-width: 100% !important;
  background: #fff !important;
}
.booksy-inline-frame iframe {
  width: 100% !important;
  max-width: 100% !important;
  border: 0 !important;
  border-radius: var(--radius-lg);
  display: block;
  min-height: 560px;
  background: #fff;
  /*
   * No invert/dark filter — Booksy is cross-origin, so filters apply to the
   * whole iframe (including barber & hair-design photos) and wash them out.
   * Keep native Booksy colors so photos match the original look.
   */
  filter: none !important;
  position: relative;
  z-index: 1;
}
/* Optional dark shell only if explicitly enabled — photos will look inverted */
html.booksy-dark-ui .booksy-inline-frame iframe,
html.booksy-dark-ui .booksy-widget-dialog iframe {
  filter: invert(0.92) hue-rotate(180deg) contrast(0.95) saturate(0.75) brightness(1.05);
}

/*
 * Hide Booksy’s default floating pill — our gold “Book” buttons open the
 * same dialog via JS (.booksy-widget-button.click()).
 * Keep the node in the DOM so the widget can still mount the booking modal.
 */
.booksy-widget-container-dialog,
.booksy-widget-container.booksy-widget-container-dialog {
  position: fixed !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  z-index: -1 !important;
}

/* —— Booksy dialog shell → gold border; content stays native Booksy —— */
.booksy-widget-overlay {
  z-index: 10050 !important;
  background: rgba(5, 5, 5, 0.88) !important;
  backdrop-filter: blur(14px) saturate(1.1) !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.1) !important;
}
.booksy-widget-dialog {
  z-index: 10060 !important;
  position: relative;
  background: #fff !important;
  border: 1px solid rgba(201, 162, 39, 0.55) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 30px 80px rgba(0, 0, 0, 0.75),
    0 0 60px rgba(201, 162, 39, 0.12) !important;
  padding: 0 !important;
}
.booksy-widget-dialog > .ui-dialog-content {
  background: #fff !important;
  padding: 0 !important;
  position: relative;
  z-index: 1;
}
.booksy-widget-dialog iframe {
  border-radius: 15px !important;
  background: #fff !important;
  display: block;
  position: relative;
  z-index: 1;
  filter: none !important;
  /* Let Booksy control height so all barber / design photos can load */
  min-height: 480px;
}

/* Decorative ring only — never cover the iframe (was darkening photos) */
.booksy-widget-dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(201, 162, 39, 0.2);
  background: transparent;
}

body.has-booksy-widget .float-book {
  bottom: 1.25rem;
}

/* Explicit opt-in for native photos (default behavior) */
html.booksy-native-ui .booksy-inline-frame iframe,
html.booksy-native-ui .booksy-widget-dialog iframe {
  filter: none !important;
}

@media (max-width: 700px) {
  .booksy-inline {
    padding: 1.15rem;
    margin-top: 2rem;
  }
  .booksy-inline-frame {
    min-height: 480px;
  }
  .booksy-inline-frame iframe {
    min-height: 480px;
  }
  .final-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .final-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-top: 4rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-brand p {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
  max-width: 28ch;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 600px) {
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
.footer-cols h4 {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-cols a,
.footer-cols p {
  display: block;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
  transition: color 0.3s;
  font-weight: 300;
}
.footer-cols a:hover { color: var(--gold-light); }
.footer-appt {
  color: var(--gold) !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.75rem !important;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer-tag { color: var(--text-dim); }
.footer-signature {
  text-align: right;
  line-height: 1.45;
  max-width: 36rem;
}
.footer-signature strong {
  color: var(--text-muted);
  font-weight: 500;
}
.footer-sig-sep {
  margin: 0 0.35rem;
  opacity: 0.55;
}
.footer-sig-mail {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.footer-sig-mail:hover,
.footer-sig-mail:focus-visible {
  color: var(--gold-light);
  border-bottom-color: rgba(201, 162, 39, 0.55);
}
.footer-sig-note {
  color: var(--text-dim);
  font-weight: 300;
}
@media (max-width: 600px) {
  .footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-signature {
    text-align: left;
  }
}

/* Float book bar (mobile) */
.float-book {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
  background: linear-gradient(to top, rgba(7,7,7,0.98), rgba(7,7,7,0.9));
  border-top: 1px solid var(--border);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  display: none;
}
.float-book .btn { width: 100%; }
.float-book.visible { transform: translateY(0); }
@media (max-width: 900px) {
  .float-book { display: block; }
  body { padding-bottom: 72px; }
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Premium 3D layer (restrained)
   ========================================================================== */

#webgl {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  mix-blend-mode: screen;
}

/* Keep content above WebGL; solid section floors so nothing looks muddy */
main {
  position: relative;
  z-index: 1;
}
.nav, .footer, .mobile-menu, .float-book, .loader {
  z-index: 2;
}
/* Lightbox must sit above everything (coverflow uses high local z-index) */
.lightbox {
  z-index: 9000 !important;
}
.section,
.marquee,
.final-cta,
.footer {
  background: var(--bg);
  position: relative;
}


/* Depth lift on premium cards */
.service-card,
.team-card,
.why-card,
.exp-frame {
  transform-style: preserve-3d;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.35s,
    background 0.35s;
}
/* Review cards sit in a CSS marquee — preserve-3d + hover transform clips them on mobile */
.review-card {
  transform-style: flat;
  transition:
    box-shadow 0.45s var(--ease),
    border-color 0.35s,
    background 0.35s;
}
.service-card:hover,
.team-card:hover,
.why-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(201, 162, 39, 0.12);
}
.exp-frame {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}
.exp-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
}

/* ========== 3D COVERFLOW ========== */
.coverflow {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 3.5rem;
  padding: 0 3.5rem;
  user-select: none;
}
.coverflow-stage {
  perspective: 1400px;
  height: clamp(320px, 48vw, 460px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  cursor: default;
  touch-action: pan-y;
}
.coverflow-track {
  position: relative;
  width: min(260px, 52vw);
  height: min(380px, 100%);
  transform-style: preserve-3d;
  margin: 0 auto;
}
.coverflow-item {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease,
    filter 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.35s;
  cursor: zoom-in;
  -webkit-tap-highlight-color: transparent;
  backface-visibility: hidden;
  will-change: transform, opacity;
  /* Allow horizontal swipe + tap; avoid browser hijacking the gesture */
  touch-action: pan-y;
  pointer-events: auto;
  -webkit-user-select: none;
  user-select: none;
}
.coverflow-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
  user-select: none;
}
.coverflow-item::after {
  content: "Click to enlarge";
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  transform: translateX(-50%) translateY(6px);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(201, 162, 39, 0.35);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.coverflow-item.is-active:hover::after,
.coverflow-item.is-active:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.coverflow-item.is-active {
  border-color: rgba(201, 162, 39, 0.55);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(201, 162, 39, 0.12);
  z-index: 10;
}
.coverflow-item.is-active:hover {
  border-color: var(--gold-light);
}
.coverflow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(12, 12, 12, 0.75);
  backdrop-filter: blur(12px);
  color: var(--text);
  display: grid;
  place-items: center;
  transition: border-color 0.3s, color 0.3s, background 0.3s, transform 0.3s;
}
.coverflow-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(20, 18, 10, 0.9);
  transform: translateY(-50%) scale(1.05);
}
.coverflow-btn.prev { left: 0; }
.coverflow-btn.next { right: 0; }
.coverflow-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.coverflow-dots button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.3s, transform 0.3s, width 0.3s;
  padding: 0;
}
.coverflow-dots button.is-active {
  background: var(--gold);
  width: 18px;
  border-radius: 4px;
}

/* Hidden data source for coverflow / lightbox — not displayed */
.gallery-data {
  display: none !important;
}

@media (max-width: 700px) {
  .coverflow { padding: 0 2.5rem; }
  .coverflow-btn {
    width: 44px;
    height: 44px;
  }
  .coverflow-stage {
    height: clamp(300px, 78vw, 400px);
  }
  .coverflow-item.is-active::after {
    content: "Tap to enlarge";
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  #webgl { display: none !important; }
  .coverflow-item { transition: none; }
  .service-card:hover,
  .team-card:hover,
  .why-card:hover,
  .exp-frame:hover {
    transform: none;
  }
}
