/* =========================================================
   DESI BARBER — Premium Luxury Design System
   Dark cinematic · Gold accents · Editorial typography
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Pure black + gold palette ONLY */
  --bg-void:        #000000;
  --bg-charcoal:    #050505;
  --bg-charcoal-2:  #0a0a0a;
  --bg-card:        #0d0d0d;
  --line:           rgba(212, 175, 55, 0.22);
  --line-soft:      rgba(212, 175, 55, 0.08);

  --gold:           #d4af37;
  --gold-bright:    #f5d76e;
  --gold-deep:      #a47e1b;
  --gold-glow:      rgba(212, 175, 55, 0.45);

  --ink:            #ffffff;
  --ink-mute:       #c9b676;
  --ink-faint:      #8a7430;

  /* Typography */
  --font-display:   'Bebas Neue', 'Impact', sans-serif;
  --font-serif:     'Cormorant Garamond', 'Garamond', serif;
  --font-body:      'Inter', -apple-system, sans-serif;

  /* Spacing rhythm */
  --space-section:  clamp(5rem, 10vw, 10rem);

  /* Motion */
  --ease-luxe:      cubic-bezier(0.25, 1, 0.32, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Light luxury mode — gold on warm-tinted white */
[data-theme="light"] {
  --bg-void:        #ffffff;
  --bg-charcoal:    #f7f3e7;
  --bg-charcoal-2:  #efe9d4;
  --bg-card:        #fbf7eb;
  --line:           rgba(164, 126, 27, 0.30);
  --line-soft:      rgba(164, 126, 27, 0.10);
  --gold:           #a47e1b;
  --gold-bright:    #c79e2a;
  --gold-deep:      #6b5212;
  --ink:            #000000;
  --ink-mute:       #6b5212;
  --ink-faint:      #a48a3e;
}

/* =========================================================
   RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg-void);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
  transition: background 0.5s var(--ease-luxe), color 0.5s var(--ease-luxe);
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease-luxe); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-void); }
::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* Selection */
::selection { background: var(--gold); color: var(--bg-void); }

/* =========================================================
   GRAIN / NOISE OVERLAY
   ========================================================= */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.9;
  text-transform: uppercase;
}
.serif {
  font-family: var(--font-serif);
  font-weight: 400;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

h1, .h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
h3, .h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 500;
  line-height: 1.15;
  font-style: italic;
}
h4, .h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
p { color: var(--ink-mute); font-weight: 300; font-size: 1rem; }
p.bright { color: rgba(255,255,255,0.78); }
.lead {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
}

.gold { color: var(--gold); }
.gold-text {
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================================================
   LAYOUT PRIMITIVES
   ========================================================= */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}
.section {
  padding: var(--space-section) 0;
  position: relative;
}
.divider-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  margin: 0 auto;
  width: 60%;
  opacity: 0.6;
}
.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 4rem;
  max-width: 760px;
}
.section-head.center {
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all 0.4s var(--ease-luxe);
  background: linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(0,0,0,0));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav.scrolled {
  padding: 0.75rem 0;
  background: rgba(0,0,0,0.92);
  border-bottom: 1px solid var(--line);
}
[data-theme="light"] .nav { background: linear-gradient(to bottom, rgba(255,255,255,0.85), rgba(255,255,255,0)); }
[data-theme="light"] .nav.scrolled { background: rgba(255,255,255,0.95); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  letter-spacing: 0.15em;
  font-size: 1.1rem;
  color: var(--ink);
}
.brand-mark {
  width: 50px; 
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #000;
  overflow: hidden;
  position: relative;
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s var(--ease-luxe);
}
.brand-mark img { width: 86%; height: 86%; object-fit: contain; filter: invert(1) brightness(1.1); }
[data-theme="light"] .brand-mark { background: #fff; }
[data-theme="light"] .brand-mark img { filter: none; }
.brand:hover .brand-mark {
  transform: rotate(360deg);
  box-shadow: 0 0 20px var(--gold-glow);
}
.brand-name { display: flex; flex-direction: column; line-height: 1;font-weight: bold;
    font-size: larger; }
.brand-name .tag { font-family: var(--font-body); font-size: 0.45rem; letter-spacing: 0.4em; color: var(--gold); margin-top: 4px; font-weight: 500; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 400;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-luxe);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.theme-toggle {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  transition: all 0.3s var(--ease-luxe);
}
.theme-toggle:hover { border-color: var(--gold); transform: rotate(180deg); }

.menu-toggle {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.menu-toggle span {
  width: 22px; height: 1px;
  background: var(--ink);
  transition: all 0.3s var(--ease-luxe);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); background: var(--gold); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); background: var(--gold); }

/* =========================================================
   BUTTONS — with shimmer sweep
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.05rem 1.85rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--gold);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-luxe);
  white-space: nowrap;
  isolation: isolate;
}
/* Shimmer sweep */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.8s var(--ease-luxe);
  z-index: -1;
}
.btn:hover::before { transform: translateX(100%); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-bright));
  color: #000;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 20px 40px -15px var(--gold-glow);
  transform: translateY(-3px);
}
.btn-ghost { color: var(--ink); background: transparent; }
.btn-ghost:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -12px var(--gold-glow);
}
.btn .arrow { transition: transform 0.4s var(--ease-luxe); }
.btn:hover .arrow { transform: translateX(6px); }

/* =========================================================
   HERO — Cinematic fullscreen with editorial layout
   ========================================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

/* Full-bleed cinematic background image */
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.15) brightness(0.55);
  animation: heroZoom 30s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0%   { transform: scale(1) translateX(0); }
  100% { transform: scale(1.12) translateX(-2%); }
}

/* Dark vignette + gold light overlays */
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 80% 50%, rgba(212,175,55,0.18), transparent 50%),
    radial-gradient(ellipse 60% 40% at 20% 20%, rgba(0,0,0,0.6), transparent 60%),
    linear-gradient(110deg, #000 0%, rgba(0,0,0,0.85) 35%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.7) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 30%, rgba(0,0,0,0.9) 100%);
  z-index: 2;
}

/* Gold horizontal accent line crossing the hero */
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 18%; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
  opacity: 0.25;
  z-index: 2;
}

/* Subtle floating gold particles */
.hero-particles {
  position: absolute; inset: 0;
  z-index: 3;
  pointer-events: none;
}
.hero-particles span {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  opacity: 0;
  animation: rise 14s linear infinite;
}
.hero-particles span:nth-child(1)  { left: 10%; animation-delay: 0s;  animation-duration: 13s; }
.hero-particles span:nth-child(2)  { left: 22%; animation-delay: 2s;  animation-duration: 16s; }
.hero-particles span:nth-child(3)  { left: 35%; animation-delay: 4s;  animation-duration: 12s; }
.hero-particles span:nth-child(4)  { left: 48%; animation-delay: 1s;  animation-duration: 15s; }
.hero-particles span:nth-child(5)  { left: 62%; animation-delay: 3s;  animation-duration: 14s; }
.hero-particles span:nth-child(6)  { left: 75%; animation-delay: 5s;  animation-duration: 17s; }
.hero-particles span:nth-child(7)  { left: 86%; animation-delay: 2s;  animation-duration: 13s; }
.hero-particles span:nth-child(8)  { left: 92%; animation-delay: 8s;  animation-duration: 18s; }
@keyframes rise {
  0%   { transform: translateY(105vh) scale(0.6); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.7; }
  100% { transform: translateY(-10vh) scale(1.2); opacity: 0; }
}

/* HERO LAYOUT — editorial 2-column */
.hero-inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Logo block — feature mark, top-left of hero column */
.hero-logo-wrap {
  position: relative;
  width: clamp(110px, 11vw, 150px);
  aspect-ratio: 1;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: scale(0.85);
  animation: logoEntrance 1.2s var(--ease-spring) 0.2s forwards;
}
.hero-logo-rings {
  position: absolute; inset: -18%;
  pointer-events: none;
}
.hero-logo-rings::before,
.hero-logo-rings::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0;
}
.hero-logo-rings::before { animation: ringPulse 3.5s ease-out infinite; animation-delay: 1.2s; }
.hero-logo-rings::after  { animation: ringPulse 3.5s ease-out infinite; animation-delay: 2.1s; }
@keyframes ringPulse {
  0%   { transform: scale(0.85); opacity: 0.6; }
  100% { transform: scale(1.6);  opacity: 0; }
}

.hero-logo-frame {
  position: absolute; inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(212,175,55,0.22), transparent 70%),
    #000;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  box-shadow:
    0 0 0 1px rgba(212,175,55,0.1),
    0 0 50px rgba(212,175,55,0.45),
    0 0 100px rgba(212,175,55,0.2),
    inset 0 0 30px rgba(212,175,55,0.1);
  overflow: hidden;
  animation: logoGlow 4s ease-in-out infinite;
}
@keyframes logoGlow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(212,175,55,0.1), 0 0 50px rgba(212,175,55,0.45), 0 0 100px rgba(212,175,55,0.2), inset 0 0 30px rgba(212,175,55,0.1); }
  50%      { box-shadow: 0 0 0 1px rgba(212,175,55,0.3), 0 0 80px rgba(212,175,55,0.6),  0 0 160px rgba(212,175,55,0.3), inset 0 0 50px rgba(212,175,55,0.18); }
}
.hero-logo-frame img {
  width: 78%; height: 78%; object-fit: contain;
  filter: invert(1) brightness(1.05) drop-shadow(0 0 6px rgba(212,175,55,0.5));
}
[data-theme="light"] .hero-logo-frame img { filter: none; }
[data-theme="light"] .hero-logo-frame { background: radial-gradient(circle at 50% 50%, rgba(164,126,27,0.2), transparent 70%), #fff; }

.hero-logo-orbit {
  position: absolute; inset: -8%;
  border: 1px dashed var(--gold);
  border-radius: 50%;
  opacity: 0.5;
  animation: spin 30s linear infinite;
}
.hero-logo-orbit::before {
  content: '◆';
  position: absolute;
  top: -7px; left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 12px;
  background: #000;
  padding: 0 4px;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes logoEntrance {
  0%   { opacity: 0; transform: scale(0.7) rotate(-8deg); }
  60%  { opacity: 1; transform: scale(1.05) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

/* Hero text */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-luxe) 0.6s forwards;
}
.hero-eyebrow .line {
  width: 50px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(3.5rem, 10vw, 9.5rem);
  letter-spacing: 0.01em;
  line-height: 0.88;
  opacity: 0;
  animation: heroTextReveal 1.4s var(--ease-luxe) 0.8s forwards;
  text-shadow: 0 6px 30px rgba(0,0,0,0.5);
}
.hero h1 .line-1 {
  display: block;
  color: #fff;
  font-family: var(--font-display);
}
.hero h1 .italic {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 0.5rem;
}
.hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin: 2rem 0 2.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-luxe) 1.1s forwards;
  line-height: 1.5;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-luxe) 1.3s forwards;
}

/* Right side: vertical meta */
.hero-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-luxe) 1.5s forwards;
  padding-left: 2rem;
  border-left: 1px solid rgba(212,175,55,0.3);
  align-self: stretch;
  justify-content: center;
}
.hero-side-item .label {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.4rem;
}
.hero-side-item .value {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  line-height: 1.3;
}

.scroll-cue {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 4;
  animation: float 3s ease-in-out infinite;
}
.scroll-cue::after {
  content: '';
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes heroTextReveal {
  from { opacity: 0; transform: translateY(30px); letter-spacing: 0.15em; }
  to   { opacity: 1; transform: translateY(0);    letter-spacing: 0.01em; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, -8px); }
}

/* =========================================================
   LOCATION BOOKING BAR — pure black + gold luxury
   Below the hero, sits flush against it
   ========================================================= */
.loc-bar {
  background: linear-gradient(180deg, #000 0%, #050505 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 0;
  position: relative;
}
.loc-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.loc-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.loc-chip {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 110px;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  background: linear-gradient(135deg, #0a0a0a 0%, #0d0d0d 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.5s var(--ease-luxe);
  isolation: isolate;
}
.loc-chip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 50%, rgba(212,175,55,0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-luxe);
  z-index: -1;
}
.loc-chip::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  transition: width 0.5s var(--ease-luxe);
  z-index: -2;
  opacity: 0;
}
.loc-chip:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(212,175,55,0.3);
}
.loc-chip:hover::before { opacity: 1; }
.loc-chip-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
  flex: 1;
}
.loc-chip-city {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  width: 200px;
}
.loc-chip-addr {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.78rem;
  color: var(--ink-mute);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.loc-chip-status {
   font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}
.loc-chip-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  transition: all 0.4s var(--ease-luxe);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.loc-chip-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-luxe);
  z-index: -1;
}
.loc-chip-btn:hover { color: #000; }
.loc-chip-btn:hover::before { transform: scaleX(1); }
.loc-chip-btn .arrow { transition: transform 0.4s var(--ease-luxe); }
.loc-chip-btn:hover .arrow { transform: translateX(4px); }

.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: dotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 2rem 0;
  position: relative;
  background: var(--bg-charcoal);
}
.marquee-track {
  display: flex;
  gap: 4rem;
  animation: scroll-x 40s linear infinite;
  white-space: nowrap;
}
.marquee span {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  display: inline-flex;
  align-items: center;
  gap: 4rem;
}
.marquee span::after {
  content: '◆';
  color: var(--gold);
  font-size: 0.8em;
}
@keyframes scroll-x {
  to { transform: translateX(-50%); }
}

/* =========================================================
   FEATURED SERVICES (cards)
   ========================================================= */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.svc-card {
  position: relative;
  background: var(--bg-charcoal);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  overflow: hidden;
  transition: all 0.5s var(--ease-luxe);
  isolation: isolate;
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(212,175,55,0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-luxe);
  z-index: -1;
}
.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.6s var(--ease-luxe);
}
.svc-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px -20px rgba(212,175,55,0.25);
}
.svc-card:hover::before { opacity: 1; }
.svc-card:hover::after  { transform: scaleX(1); }
.svc-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
}
.svc-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.svc-desc { font-size: 0.92rem; color: var(--ink-mute); margin-bottom: 1.5rem; }
.svc-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.svc-meta .price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
}
.svc-meta .duration {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--ink-faint);
  text-transform: uppercase;
}

/* =========================================================
   ABOUT SPLIT
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.split-img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 18px;
  overflow: hidden;
}
.split-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(0.85);
  transition: all 0.9s var(--ease-luxe);
}
.split-img:hover img { transform: scale(1.05); filter: grayscale(0) contrast(1.05) brightness(1); }
.split-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6));
  pointer-events: none;
}
.split-img .stamp {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  z-index: 2;
}

/* =========================================================
   WHY US — stats / feature row
   ========================================================= */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.stat {
  text-align: center;
  padding: 2.5rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-charcoal);
  transition: all 0.4s var(--ease-luxe);
}
.stat:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1;
}
.stat .num .plus { font-size: 0.6em; vertical-align: super; }
.stat .label {
  margin-top: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* =========================================================
   FEATURES (icon + text)
   ========================================================= */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}
.feat {
  padding: 2rem 0;
  border-top: 1px solid var(--gold);
  position: relative;
}
.feat-num {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}
.feat h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 400;
}
.feat p { font-size: 0.92rem; }

/* =========================================================
   SHOWCASE — signature haircuts (large editorial cards)
   ========================================================= */
.showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.show-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
}
.show-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-luxe), filter 0.7s var(--ease-luxe);
  filter: grayscale(1) brightness(0.7);
}
.show-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.95));
  pointer-events: none;
  transition: background 0.5s var(--ease-luxe);
}
.show-card:hover img { transform: scale(1.08); filter: grayscale(0) brightness(0.9); }
.show-card:hover::after { background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.85)); }
.show-card .meta {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  z-index: 2;
  transition: transform 0.5s var(--ease-luxe);
}
.show-card:hover .meta { transform: translateY(-6px); }
.show-card .tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.show-card .name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-transform: uppercase;
}

/* =========================================================
   TEAM CARDS
   ========================================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.team-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-charcoal);
  border: 1px solid var(--line-soft);
  transition: all 0.5s var(--ease-luxe);
}
.team-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px -20px rgba(212,175,55,0.3);
}
.team-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.team-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.1) brightness(0.85);
  transition: all 0.7s var(--ease-luxe);
}
.team-card:hover .team-photo img { filter: grayscale(0) contrast(1.1) brightness(1); transform: scale(1.06); }
.team-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.95) 100%);
}
.team-info {
  padding: 1.5rem 1.75rem 2rem;
  text-align: left;
  position: relative;
}
.team-info .role {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.team-info h4 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  font-weight: 400;
}
.team-info .exp {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-mute);
}
.team-socials {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  display: flex;
  gap: 0.5rem;
}
.team-socials a {
  width: 32px; height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  transition: all 0.3s var(--ease-luxe);
}
.team-socials a:hover { background: var(--gold); color: var(--bg-void); }

/* =========================================================
   GALLERY (masonry)
   ========================================================= */
.masonry {
  columns: 3 280px;
  column-gap: 1.25rem;
}
.masonry > * {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  display: block;
}
.masonry img {
  width: 100%;
  display: block;
  transition: transform 0.8s var(--ease-luxe), filter 0.6s var(--ease-luxe);
  filter: grayscale(1) brightness(0.8);
}
.masonry > *:hover img { transform: scale(1.05); filter: grayscale(0) brightness(1); }
.masonry .cap {
  position: absolute;
  bottom: 1rem; left: 1rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--ink);
  background: rgba(0,0,0,0.7);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  opacity: 0;
  transition: opacity 0.4s var(--ease-luxe);
  backdrop-filter: blur(8px);
}
.masonry > *:hover .cap { opacity: 1; }

/* =========================================================
   TESTIMONIAL
   ========================================================= */
.testi {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.testi .quote-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 1rem;
  font-style: italic;
}
.testi blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 2rem;
}
.testi .author {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.testi .author img {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold);
}
.testi .author .info {
  text-align: left;
}
.testi .author .name {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--ink);
}
.testi .author .city {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
}
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.testi-dots button {
  width: 30px; height: 2px;
  background: var(--line);
  transition: background 0.3s var(--ease-luxe);
}
.testi-dots button.active { background: var(--gold); }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  background:
    radial-gradient(ellipse at center, rgba(212,175,85,0.10), transparent 70%),
    var(--bg-charcoal);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-banner h2 {
  font-size: clamp(2.5rem, 7vw, 6rem);
  margin-bottom: 1.5rem;
}
.cta-banner h2 .italic {
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: none;
}
.cta-banner p { max-width: 480px; margin: 0 auto 2.5rem; }

/* =========================================================
   PRICING PREVIEW
   ========================================================= */
.price-list {
  max-width: 920px;
  margin: 0 auto;
}
.price-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s var(--ease-luxe);
}
.price-row:hover { padding-left: 1rem; border-color: var(--gold); }
.price-row .name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.price-row .dots {
  border-bottom: 1px dotted var(--line);
  transform: translateY(-6px);
}
.price-row .amt {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--bg-charcoal);
  border-top: 1px solid var(--line);
  padding: 5rem 0 2rem;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.footer-brand .brand-mark { width: 48px; height: 65px; }
.footer-brand .name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
}
.footer-col p { font-size: 0.9rem; margin-bottom: 1.5rem; max-width: 320px; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  font-size: 0.85rem;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
  transition: color 0.3s, padding-left 0.3s;
}
.footer-col ul a:hover { color: var(--gold); padding-left: 6px; }
.footer-bot {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.socials { display: flex; gap: 0.75rem; }
.socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink-mute);
  transition: all 0.3s var(--ease-luxe);
}
.socials a:hover { color: var(--bg-void); background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
.fab-whatsapp {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: grid;
  place-items: center;
  z-index: 90;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,0.5);
  transition: transform 0.3s var(--ease-luxe);
}
.fab-whatsapp:hover { transform: scale(1.08); }
.fab-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid #25D366;
  opacity: 0.5;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* =========================================================
   PAGE HEAD (inner pages)
   ========================================================= */
.page-head {
  padding: 11rem 0 5rem;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at top, rgba(212,175,85,0.08), transparent 60%),
    var(--bg-charcoal);
}
.page-head .crumbs {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  color: var(--ink-faint);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.page-head .crumbs a { color: var(--gold); }
.page-head h1 {
  font-size: clamp(3rem, 9vw, 7rem);
  margin-bottom: 1.25rem;
}
.page-head h1 .italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
}
.page-head .lead { max-width: 640px; margin: 0 auto; }

/* =========================================================
   TIMELINE
   ========================================================= */
.timeline {
  position: relative;
  padding-left: 2rem;
  max-width: 800px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.tl-item {
  position: relative;
  padding: 0 0 3rem 2.5rem;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: -6px; top: 0.5rem;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--bg-void);
}
.tl-year {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.tl-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

/* =========================================================
   FORMS
   ========================================================= */
.form-card {
  background: var(--bg-charcoal);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(2rem, 5vw, 3.5rem);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.field label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.field input,
.field textarea,
.field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
  font-size: 1rem;
  color: var(--ink);
  font-family: var(--font-serif);
  font-style: italic;
  transition: border-color 0.3s var(--ease-luxe);
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Booking step indicator */
.steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 16px; left: 5%; right: 5%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
  background: var(--bg-charcoal);
  padding: 0 0.5rem;
}
.step-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink-mute);
  font-size: 0.95rem;
  transition: all 0.4s var(--ease-luxe);
}
.step.active .step-num { background: var(--gold); border-color: var(--gold); color: var(--bg-void); }
.step .step-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.step.active .step-label { color: var(--gold); }

.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 0.6rem;
}
.slot {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.3s var(--ease-luxe);
}
.slot:hover { border-color: var(--gold); color: var(--gold); }
.slot.selected { background: var(--gold); color: var(--bg-void); border-color: var(--gold); }
.slot.disabled { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }

/* Service select cards */
.svc-select {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}
.svc-select label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s var(--ease-luxe);
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.svc-select label:hover { border-color: var(--gold); }
.svc-select label .price { color: var(--gold); }
.svc-select input { display: none; }
.svc-select input:checked + label { border-color: var(--gold); background: rgba(212,175,85,0.08); }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.3s var(--ease-luxe);
}
.faq-q:hover { color: var(--gold); }
.faq-q .ic {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold);
  transition: transform 0.4s var(--ease-luxe);
  font-family: var(--font-serif);
  font-style: italic;
}
.faq-item.open .faq-q .ic { transform: rotate(45deg); background: var(--gold); color: var(--bg-void); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-luxe), padding 0.5s var(--ease-luxe);
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 1.75rem;
}
.faq-a p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-mute);
  max-width: 700px;
}

/* =========================================================
   LOCATIONS
   ========================================================= */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 2rem;
}
.loc-card {
  background: var(--bg-charcoal);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s var(--ease-luxe);
}
.loc-card:hover { border-color: var(--gold); transform: translateY(-6px); }
.loc-photo {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.loc-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) brightness(0.8); transition: filter 0.6s, transform 0.8s var(--ease-luxe); }
.loc-card:hover .loc-photo img { filter: grayscale(0) brightness(1); transform: scale(1.06); }
.loc-info { padding: 1.75rem; }
.loc-info .city {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}
.loc-info .area {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.loc-info ul li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: var(--ink-mute);
  border-top: 1px solid var(--line-soft);
}
.loc-info ul li:first-child { border-top: none; }
.loc-info ul li .ic-i { color: var(--gold); flex-shrink: 0; width: 16px; }

/* =========================================================
   ANIMATIONS — global motion system
   ========================================================= */

/* Page load fade — applies to every page */
body {
  animation: pageIn 0.8s var(--ease-luxe) both;
}
@keyframes pageIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-luxe), transform 1s var(--ease-luxe);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal — child elements pop in sequence when parent is .reveal-stagger */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-luxe), transform 0.9s var(--ease-luxe);
}
.reveal-stagger.in > *           { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 0.65s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 0.75s; }

/* Section heading underline grow */
.section-head h2 {
  position: relative;
}

/* Animated gold accent on h2 */
h2.glow-in {
  background: linear-gradient(135deg, #fff 0%, var(--gold) 50%, var(--gold-bright) 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 100% 0; }
  50%      { background-position: 0 0; }
}

/* Reduce motion respect */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .showcase { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .loc-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-side {
    flex-direction: row;
    border-left: none;
    border-top: 1px solid rgba(212,175,55,0.3);
    padding-left: 0;
    padding-top: 2rem;
    margin-top: 1rem;
    gap: clamp(1.5rem, 5vw, 4rem);
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-links.mobile-open {
    display: flex;
    position: fixed;
    inset: 70px 0 0 0;
    z-index: 500;
    background: rgba(0,0,0,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 3rem 2rem;
    gap: 1.75rem;
    border-top: 1px solid var(--line);
  }
  [data-theme="light"] .nav-links.mobile-open { background: rgba(255,255,255,0.97); }
  .nav-links.mobile-open a {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.1em;
  }
  .menu-toggle { display: flex; }
  .hero { padding-top: 7rem; padding-bottom: 3rem; }
  .hero-logo-wrap { width: 95px; margin-bottom: 1.75rem; }
  .hero-side { font-size: 0.85rem; }
  .hero-side-item .value { font-size: 0.95rem; }
  .hero-side-item .label { font-size: 0.55rem; }
  .loc-bar-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .loc-chip {
  align-items: center;
  min-height: 100px;
  padding-right: 9rem !important;
}
.loc-chip-btn {
  position: absolute !important;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
}
  .showcase { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .price-row { grid-template-columns: 1fr; gap: 0.4rem; padding: 1.25rem 0; }
  .price-row .dots { display: none; }
  .masonry { columns: 1; }
  .testi blockquote { font-size: 1.3rem; }
  .scroll-cue { display: none; }
}

@media (max-width: 480px) {
  .hero { padding-top: 5.5rem; }
  .hero-logo-wrap { width: 80px; margin-bottom: 1.25rem; }
  .hero h1 { font-size: 2.7rem; }
  .hero-sub { font-size: 0.95rem; margin: 1.5rem 0 2rem; }
  .btn { padding: 0.95rem 1.4rem; font-size: 0.72rem; letter-spacing: 0.2em; }
  .hero-cta { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-cta .btn { justify-content: center; }
  .hero-eyebrow { font-size: 0.62rem; letter-spacing: 0.3em; }
  .hero-eyebrow .line { width: 24px; }
  .loc-chip-addr { font-size: 0.72rem; }
  .loc-chip-city { font-size: 0.95rem; }
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switch{
  position: fixed;
  top: clamp(70px, 9vw, 100px);   /* sits just below the nav/BOOK button */
  right: clamp(14px, 3vw, 26px);  /* aligned to the right edge */
  /* remove the old left/bottom */
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 6px 8px 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(216,168,52,.45);
  background: rgba(12,12,13,.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 32px -8px rgba(0,0,0,.7), 0 0 0 1px rgba(0,0,0,.35);
  animation: langIn .55s cubic-bezier(.16,1,.3,1) both;
  animation-delay: .35s;
}

@keyframes langIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.lang-globe {
  display: block;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
  flex: 0 0 16px;
  color: rgba(216,168,52,.85);
  margin-right: 3px;
  overflow: hidden;
}

.lang-btn {
  font-family: 'Oswald','Barlow',sans-serif;
  font-weight: 600;
  letter-spacing: .06em;
  font-size: 12.5px;
  line-height: 1;
  cursor: pointer;
  color: rgba(239,231,216,.72);
  background: transparent;
  border: none;
  padding: 7px 10px;
  border-radius: 999px;
  transition: color .18s ease, background .18s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  white-space: nowrap;
}
.lang-btn:hover { color: var(--gold,#d8a834); }

.lang-btn.active,
.lang-btn.is-active {
  color: #0c0c0d;
  background: linear-gradient(180deg,#f3c969,#d8a834);
  box-shadow: 0 2px 8px rgba(216,168,52,.4);
}

.lang-btn:focus-visible {
  outline: 2px solid var(--gold,#d8a834);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .lang-switch {
    top: clamp(64px, 14vw, 84px);
    right: 12px;
    padding: 5px 6px 5px 9px;
    gap: 1px;
  }
  .lang-globe { width: 14px; height: 14px; margin-right: 2px; }
  .lang-btn { font-size: 11.5px; padding: 6px 8px; }
}

@media (max-width: 380px) {
  .lang-switch {
    top: 60px;
    right: 8px;
    padding: 4px 5px 4px 8px;
  }
  .lang-btn { font-size: 11px; padding: 5px 7px; }
}
