/* ==========================================================
   Noire Lune Studio — Shared Stylesheet
   Dark luxury beauty salon | noirelunestudio.com
   ========================================================== */

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

/* ---------- Design Tokens ---------- */
:root {
  --bg:           #1a1612;
  --bg-surface:   #211e1a;
  --bg-elevated:  #2a2420;
  --bg-card:      #241f1b;
  --gold:         #b89a6e;
  --gold-light:   #d4b896;
  --gold-dark:    #8a7050;
  --cream:        #f0e8dc;
  --rose:         #c9a99a;
  --rose-dark:    #a0847a;
  --text:         #e8ddd4;
  --text-muted:   #9a8a7a;
  --text-faint:   #6a5a4e;
  --border:       rgba(184, 154, 110, 0.18);
  --border-faint: rgba(184, 154, 110, 0.08);
  --shadow:       0 8px 48px rgba(0, 0, 0, 0.55);
  --shadow-sm:    0 2px 16px rgba(0, 0, 0, 0.35);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --radius:       6px;
  --radius-lg:    12px;
  --nav-h:        72px;
  --max-w:        1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }
::selection { background: var(--gold); color: var(--bg); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
p { max-width: 65ch; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
}
.section {
  padding-block: clamp(5rem, 10vw, 9rem);
}
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-heading {
  margin-bottom: 1.25rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 52ch;
  font-weight: 300;
}
.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-block: 1.5rem;
  opacity: 0.7;
}
.gold { color: var(--gold); }
.cream { color: var(--cream); }
.rose  { color: var(--rose); }

/* Gold button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.28s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(184,154,110,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(184,154,110,0.08);
  transform: translateY(-2px);
}
.btn svg, .btn img { width: 18px; height: 18px; flex-shrink: 0; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =====================================================
   COOKIE CONSENT BANNER
   ===================================================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 1.25rem clamp(1rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  backdrop-filter: blur(12px);
  box-shadow: 0 -4px 32px rgba(0,0,0,0.4);
  transition: transform 0.4s var(--ease);
}
#cookie-banner.hidden {
  transform: translateY(110%);
}
#cookie-banner p {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0;
}
#cookie-banner p a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
#cookie-accept {
  padding: 0.6rem 1.5rem;
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg);
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
#cookie-accept:hover { background: var(--gold-light); }
#cookie-decline {
  padding: 0.6rem 1.25rem;
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text-muted);
  border-radius: var(--radius);
  border: 1px solid var(--border-faint);
  cursor: pointer;
  transition: color 0.2s;
}
#cookie-decline:hover { color: var(--cream); }

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.navbar.scrolled {
  background: rgba(26, 22, 18, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border-faint), 0 4px 32px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  z-index: 1001;
}
.nav-logo-mark {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  font-style: italic;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-text .brand {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.06em;
}
.nav-logo-text .tagline-small {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  padding: 0.55rem 1.35rem !important;
  background: var(--gold) !important;
  color: var(--bg) !important;
  border-radius: var(--radius) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.14em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.nav-overlay.open {
  transform: translateX(0);
}
.nav-overlay a {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.04em;
  text-align: center;
  transition: color 0.2s;
}
.nav-overlay a:hover { color: var(--gold); }
.nav-overlay .mobile-cta {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--bg);
  border-radius: var(--radius);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(184,154,110,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(201,169,154,0.05) 0%, transparent 60%),
    var(--bg);
}
.hero-grain {
  position: absolute;
  inset: 0;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.4;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-inline: clamp(1rem, 5vw, 3rem);
  max-width: 900px;
}
.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s var(--ease) 0.2s both;
}
.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: 0.01em;
  animation: fadeInUp 1s var(--ease) 0.4s both;
  font-style: italic;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  margin: 1.75rem auto;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  max-width: 46ch;
  font-weight: 300;
  animation: fadeInUp 1s var(--ease) 0.6s both;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s var(--ease) 0.8s both;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-faint);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeIn 1s var(--ease) 1.4s both;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* =====================================================
   ABOUT
   ===================================================== */
.about {
  background: var(--bg-surface);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elevated);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-frame-inner {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 70% 60% at 40% 45%, rgba(184,154,110,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 70% 70%, rgba(201,169,154,0.08) 0%, transparent 55%),
    var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-monogram {
  font-family: var(--font-heading);
  font-size: 7rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.25;
  font-style: italic;
  user-select: none;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 100px;
  height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--bg);
  line-height: 1.2;
  box-shadow: 0 8px 32px rgba(184,154,110,0.4);
}
.about-badge .num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}
.about-badge .lbl {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}
.about-text .section-sub {
  margin-bottom: 2rem;
}
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.pillar {
  padding: 1.25rem;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border-faint);
  transition: border-color 0.2s;
}
.pillar:hover { border-color: var(--border); }
.pillar-icon {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.pillar h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.pillar p {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 100%;
}

/* =====================================================
   SERVICES
   ===================================================== */
.services {
  background: var(--bg);
}
.services-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.services-header .divider { margin-inline: auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-faint);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  text-align: center;
  transition: all 0.32s var(--ease);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  transition: border-color 0.3s, background 0.3s;
}
.service-card:hover .service-icon {
  background: rgba(184,154,110,0.1);
  border-color: var(--gold);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}
.service-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 100%;
  line-height: 1.6;
}
.service-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

/* =====================================================
   LOCATIONS
   ===================================================== */
.locations {
  background: var(--bg-surface);
}
.locations-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.locations-header .divider { margin-inline: auto; }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.location-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-faint);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s var(--ease);
  text-decoration: none;
  display: block;
}
.location-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.5);
}
.location-card-bg {
  height: 180px;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(184,154,110,0.1) 0%, transparent 70%),
    var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--gold);
  opacity: 0.5;
  font-weight: 300;
  transition: opacity 0.3s;
  position: relative;
}
.location-card:hover .location-card-bg { opacity: 0.85; }
.location-card-body {
  padding: 1.5rem;
}
.location-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,154,110,0.1);
  border: 1px solid rgba(184,154,110,0.2);
  border-radius: 30px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.75rem;
}
.location-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
  letter-spacing: 0.03em;
}
.location-card .region {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 100%;
}
.location-arrow {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}
.location-card:hover .location-arrow {
  opacity: 1;
  transform: translateX(0);
}
.location-arrow svg {
  width: 14px;
  height: 14px;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials {
  background: var(--bg);
  overflow: hidden;
}
.testimonials-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.testimonials-header .divider { margin-inline: auto; }
.testimonial-track-wrap {
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.6s var(--ease);
}
.testimonial-slide {
  flex: 0 0 100%;
  padding-inline: clamp(1rem, 10vw, 8rem);
  text-align: center;
}
.stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--gold);
}
.testimonial-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 2rem;
  max-width: 70ch;
  margin-inline: auto;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.testimonial-name {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}
.testimonial-loc {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}
.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  cursor: pointer;
}
.testimonial-btn:hover {
  border-color: var(--gold);
  background: rgba(184,154,110,0.1);
}
.testimonial-btn svg { width: 16px; height: 16px; }
.testimonial-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.testimonial-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-faint);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}
.testimonial-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* =====================================================
   BOOKING CTA
   ===================================================== */
.booking-cta {
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}
.booking-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(184,154,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.booking-cta-inner {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}
.booking-cta .section-label { display: block; text-align: center; }
.booking-cta h2 { margin-bottom: 1rem; }
.booking-cta p {
  color: var(--text-muted);
  margin: 0 auto 2.5rem;
  max-width: 48ch;
}
.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.25rem;
  background: #25D366;
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.28s var(--ease);
  border: none;
  font-family: var(--font-body);
  text-decoration: none;
}
.wa-btn:hover {
  background: #1fb956;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.3);
}
.wa-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-faint);
  padding-top: clamp(3rem, 6vw, 5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(3rem, 5vw, 4rem);
}
.footer-brand .nav-logo {
  margin-bottom: 1.25rem;
  display: inline-flex;
}
.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 32ch;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--text-muted);
}
.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,154,110,0.08);
}
.social-icon svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid var(--border-faint);
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: var(--text-faint);
  max-width: 100%;
}
.footer-bottom a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =====================================================
   LINKS PAGE
   ===================================================== */
body.links-page {
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  background: var(--bg);
}
.links-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100svh;
  width: 100%;
  padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 6vw, 2rem);
  padding-bottom: 3rem;
  position: relative;
}
.links-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 20%, rgba(184,154,110,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 80% 90%, rgba(201,169,154,0.05) 0%, transparent 55%),
    var(--bg);
  z-index: -1;
}
.links-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2.5rem;
}
.links-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 0 4px rgba(184,154,110,0.12);
}
.links-avatar span {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold);
  font-style: italic;
}
.links-name {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}
.links-handle {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
.links-tagline {
  font-size: 0.78rem;
  font-style: italic;
  font-family: var(--font-heading);
  color: var(--gold);
  margin-top: 0.5rem;
  letter-spacing: 0.06em;
}
.links-container {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.link-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all 0.28s var(--ease);
  border: 1px solid var(--border-faint);
  background: var(--bg-card);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.link-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,154,110,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.link-btn:hover::before { opacity: 1; }
.link-btn:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.link-btn-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.link-btn span { flex: 1; }
.link-btn-arrow {
  opacity: 0.4;
  transition: opacity 0.3s, transform 0.3s;
}
.link-btn:hover .link-btn-arrow {
  opacity: 1;
  transform: translateX(3px);
}
.link-btn-arrow svg { width: 14px; height: 14px; color: var(--gold); }

/* Primary CTA variants */
.link-btn.wa {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}
.link-btn.wa:hover {
  background: #1fb956;
  border-color: #1fb956;
  box-shadow: 0 8px 32px rgba(37,211,102,0.3);
}
.link-btn.wa .link-btn-icon { background: rgba(255,255,255,0.15); }
.link-btn.gold-link {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}
.link-btn.gold-link:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 8px 32px rgba(184,154,110,0.35);
}
.link-btn.gold-link .link-btn-icon { background: rgba(26,22,18,0.15); }
.link-btn.gold-link .link-btn-arrow svg { color: var(--bg); }

.links-section-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-align: center;
  padding: 0.5rem 0 0.25rem;
  width: 100%;
  max-width: 460px;
}
.links-divider {
  width: 100%;
  max-width: 460px;
  height: 1px;
  background: var(--border-faint);
  margin-block: 0.25rem;
}
.links-footer {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.68rem;
  color: var(--text-faint);
  letter-spacing: 0.06em;
}
.links-footer a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.4; transform: scaleY(0.7); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 400px; margin-inline: auto; }
  .about-badge { bottom: -1rem; right: -1rem; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-pillars { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; }
}

@media (max-width: 400px) {
  .services-grid { grid-template-columns: 1fr; }
}
