/* ============================================================
   VIC SALON — Global Stylesheet
   Design: Luxury Black & Gold  |  Inspired by Florian Hurel
   ============================================================ */

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

/* ---- CSS Variables ---- */
:root {
  --gold: #C9A846;
  --gold-light: #E2C97A;
  --gold-dark: #9A7E2F;
  --black: #0a0a0a;
  --black-soft: #111111;
  --charcoal: #1a1a1a;
  --cream: #F5EFE0;
  --cream-light: #FAF6EE;
  --white: #ffffff;
  --grey: #aaaaaa;
  --grey-light: #dddddd;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-sans); }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ---- Page Loader ---- */
#page-loader {
  position: fixed; inset: 0;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { font-family: var(--font-serif); font-size: 2rem; color: var(--gold); letter-spacing: 0.3em; animation: loaderPulse 1.5s infinite; }
@keyframes loaderPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 40px;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 40px rgba(201,168,70,0.12);
  padding: 0 40px;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1400px; margin: 0 auto;
  height: 80px;
}
.nav-left, .nav-right { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  position: relative;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--gold); }

.nav-logo {
  display: flex; flex-direction: column; align-items: center;
  text-decoration: none;
}
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.6rem; font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  line-height: 1;
}
.nav-logo-sub {
  font-size: 0.55rem; letter-spacing: 0.4em;
  color: var(--white); text-transform: uppercase;
  margin-top: 2px; font-weight: 600;
}
.nav-logo-tagline {
  font-family: var(--font-elegant);
  font-style: italic; font-size: 0.65rem;
  color: var(--gold-light); letter-spacing: 0.08em;
  margin-top: 1px;
}
.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  font-weight: 700; font-size: 0.62rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 10px 22px; border-radius: 0;
  border: 1px solid var(--gold);
  transition: var(--transition);
}
.nav-cta:hover { background: transparent; color: var(--gold) !important; }
.nav-cta::after { display: none; }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { width: 26px; height: 1.5px; background: var(--white); transition: var(--transition); display: block; }
.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 Menu */
.mobile-menu {
  position: fixed; inset: 0; background: var(--black);
  z-index: 999; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
  transform: translateX(100%); transition: transform 0.5s cubic-bezier(0.77,0,0.175,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .nav-link { font-size: 1rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
  transform: scale(1.05);
}
.hero-slide.active { opacity: 1; animation: kenBurns 8s ease forwards; }
@keyframes kenBurns { 0%{transform:scale(1.05)} 100%{transform:scale(1)} }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.75) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 20px;
  max-width: 900px;
}
.hero-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  margin-bottom: 24px; display: block;
  opacity: 0; animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400; line-height: 1.05;
  letter-spacing: 0.03em; color: var(--white);
  opacity: 0; animation: fadeUp 0.8s ease 0.6s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-divider {
  width: 60px; height: 1px; background: var(--gold);
  margin: 28px auto;
  opacity: 0; animation: fadeUp 0.8s ease 0.8s forwards;
}
.hero-subtitle {
  font-family: var(--font-elegant);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.95); letter-spacing: 0.05em;
  opacity: 0; animation: fadeUp 0.8s ease 1s forwards;
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: center;
  margin-top: 40px;
  opacity: 0; animation: fadeUp 0.8s ease 1.2s forwards;
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeUp 0.8s ease 1.5s forwards;
}
.hero-scroll span { font-size: 0.6rem; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; }
.scroll-line { width: 1px; height: 50px; background: var(--gold); animation: scrollLine 2s ease infinite; }
@keyframes scrollLine { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* Slide Indicators */
.hero-indicators {
  position: absolute; bottom: 40px; right: 40px; z-index: 2;
  display: flex; flex-direction: column; gap: 8px;
}
.hero-indicator {
  width: 2px; height: 20px; background: rgba(255,255,255,0.3);
  cursor: pointer; transition: var(--transition);
}
.hero-indicator.active { background: var(--gold); height: 40px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 0.68rem;
  font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid var(--gold);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-101%); transition: transform 0.4s ease;
}
.btn span { position: relative; z-index: 1; }
.btn:hover::before { transform: translateX(0); }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { color: var(--black); }
.btn-outline { background: transparent; color: var(--white); }
.btn-outline:hover { color: var(--black); }
.btn-dark { background: transparent; border-color: var(--white); color: var(--white); }
.btn-dark::before { background: var(--white); }
.btn-dark:hover { color: var(--black); }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
section { position: relative; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section-pad { padding: 120px 0; }
.section-pad-sm { padding: 80px 0; }

.section-eyebrow {
  font-size: 0.62rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; display: block; margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; line-height: 1.15;
  letter-spacing: 0.02em;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-lead {
  font-family: var(--font-elegant);
  font-size: 1.1rem; font-style: italic;
  color: var(--grey); margin-top: 16px;
  font-weight: 300; letter-spacing: 0.03em;
}
.gold-line {
  width: 50px; height: 1px; background: var(--gold);
  margin: 28px 0;
}
.gold-line.center { margin: 28px auto; }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.bg-cream { background-color: var(--cream); color: var(--black); }
.bg-charcoal { background-color: var(--charcoal); }
.bg-black { background-color: var(--black); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.revealed { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

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

/* ============================================================
   PAGE HERO (internal pages)
   ============================================================ */
.page-hero {
  height: 55vh; min-height: 380px;
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 60px; position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%);
}
.page-hero-content { position: relative; z-index: 2; text-align: center; }
.page-hero-eyebrow { font-size: 0.6rem; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 16px; display: block; }
.page-hero-title { font-family: var(--font-serif); font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 400; line-height: 1.05; }
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-sub { font-family: var(--font-elegant); font-style: italic; font-size: 1.1rem; color: rgba(255,255,255,0.92); margin-top: 12px; }

/* ============================================================
   SERVICE CARDS (Home Signature Services)
   ============================================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(201,168,70,0.15);
}
.service-card {
  position: relative; overflow: hidden;
  aspect-ratio: 4/5; cursor: pointer;
  background: var(--black);
}
.service-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.service-card:hover img { transform: scale(1.08); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  transition: background 0.4s ease;
}
.service-card:hover .service-card-overlay { background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%); }
.service-card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  transform: translateY(0); transition: transform 0.4s ease;
}
.service-card-tag {
  font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 8px; display: block;
}
.service-card-title {
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 500;
  line-height: 1.2; margin-bottom: 8px;
}
.service-card-desc {
  font-size: 0.8rem; color: rgba(255,255,255,0.92);
  line-height: 1.5; font-style: italic;
  opacity: 0; max-height: 0; overflow: hidden;
  transition: opacity 0.4s ease 0.1s, max-height 0.4s ease;
}
.service-card:hover .service-card-desc { opacity: 1; max-height: 60px; }
.service-card-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-top: 16px;
  opacity: 0; transform: translateX(-10px);
  transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
}
.service-card:hover .service-card-arrow { opacity: 1; transform: translateX(0); }

/* ============================================================
   ABOUT SPLIT SECTION
   ============================================================ */
.about-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.about-image { position: relative; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.about-image:hover img { transform: scale(1.04); }
.about-image-accent {
  position: absolute; bottom: 40px; left: -20px;
  background: var(--gold); padding: 20px 28px; max-width: 200px;
}
.about-image-accent .stat-number { font-family: var(--font-serif); font-size: 2.2rem; color: var(--black); font-weight: 700; }
.about-image-accent .stat-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--black); font-weight: 600; margin-top: 2px; }
.about-text { padding: 80px 70px; display: flex; flex-direction: column; justify-content: center; }

/* ============================================================
   STATS
   ============================================================ */
.stats-section { padding: 80px 0; background: var(--charcoal); border-top: 1px solid rgba(201,168,70,0.2); border-bottom: 1px solid rgba(201,168,70,0.2); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(201,168,70,0.15); }
.stat-item { text-align: center; padding: 40px 20px; background: var(--charcoal); }
.stat-number { font-family: var(--font-serif); font-size: 3rem; color: var(--gold); font-weight: 700; line-height: 1; }
.stat-suffix { font-size: 1.8rem; }
.stat-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); margin-top: 12px; font-weight: 600; }

/* ============================================================
   GOOGLE REVIEWS
   ============================================================ */
.reviews-section { padding: 100px 0; background: var(--black); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.review-card {
  background: var(--charcoal); padding: 36px 32px;
  border: 1px solid rgba(201,168,70,0.15);
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.review-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 3px; }
.review-text { font-family: var(--font-elegant); font-style: italic; font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,0.95); }
.review-author { margin-top: 24px; display: flex; align-items: center; gap: 14px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-weight: 700; color: var(--black); font-size: 1.1rem; flex-shrink: 0; }
.review-name { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; }
.review-date { font-size: 0.68rem; color: var(--grey); margin-top: 2px; }
.google-badge { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.google-badge span { font-size: 0.62rem; color: var(--grey); letter-spacing: 0.05em; }
.reviews-cta { text-align: center; margin-top: 50px; }

/* ============================================================
   INSTAGRAM SECTION
   ============================================================ */
.instagram-section { padding: 100px 0; background: var(--charcoal); }
.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; margin-top: 50px; }
.insta-item { aspect-ratio: 1; overflow: hidden; position: relative; cursor: pointer; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.insta-item:hover img { transform: scale(1.08); }
.insta-item-overlay { position: absolute; inset: 0; background: rgba(201,168,70,0.7); opacity: 0; display: flex; align-items: center; justify-content: center; transition: opacity 0.4s ease; }
.insta-item:hover .insta-item-overlay { opacity: 1; }
.insta-icon { font-size: 2rem; color: var(--black); }

/* ============================================================
   SERVICE PAGE LAYOUT
   ============================================================ */
.service-section { padding: 80px 0; border-bottom: 1px solid rgba(201,168,70,0.1); }
.service-section:last-child { border-bottom: none; }
.service-section-header { margin-bottom: 50px; }
.service-sub-header {
  display: inline-block;
  font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  border-bottom: 1px solid rgba(201,168,70,0.4);
  padding-bottom: 6px; margin-bottom: 40px;
}
.service-list { display: grid; gap: 0; }
.service-item {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s ease;
}
.service-item:hover { border-color: rgba(201,168,70,0.3); }
.service-item-name { font-size: 0.9rem; font-weight: 500; letter-spacing: 0.03em; }
.service-item-desc { font-size: 0.78rem; color: var(--grey); margin-top: 3px; font-style: italic; }
.service-item-price { font-family: var(--font-serif); font-size: 0.85rem; color: var(--gold); font-weight: 600; letter-spacing: 0.05em; white-space: nowrap; margin-left: 20px; text-align: right; }
.service-note { font-size: 0.72rem; color: var(--grey); font-style: italic; margin-top: 20px; letter-spacing: 0.02em; }

.service-image-side { position: relative; border: 1px solid rgba(201,168,70,0.2); overflow: hidden; }
.service-image-side img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.service-image-side:hover img { transform: scale(1.04); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.two-col-reverse { direction: rtl; }
.two-col-reverse > * { direction: ltr; }

/* Gender Tabs */
.gender-tabs { display: flex; gap: 0; margin-bottom: 40px; border-bottom: 1px solid rgba(201,168,70,0.2); }
.gender-tab {
  padding: 12px 32px; font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 600; color: var(--grey);
  cursor: pointer; border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: var(--transition);
}
.gender-tab.active { color: var(--gold); border-color: var(--gold); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ============================================================
   MEMBERSHIP
   ============================================================ */
.membership-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(201,168,70,0.15); margin-top: 60px; }
.membership-card { background: var(--charcoal); padding: 52px 44px; position: relative; transition: background 0.4s ease; }
.membership-card:hover { background: #1e1e1e; }
.membership-tier {
  font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 20px; display: block;
}
.membership-name { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 400; margin-bottom: 32px; }
.membership-name em { font-style: italic; }
.membership-features { display: flex; flex-direction: column; gap: 16px; }
.membership-feature { display: flex; align-items: flex-start; gap: 12px; }
.feature-icon { color: var(--gold); font-size: 0.8rem; margin-top: 2px; flex-shrink: 0; }
.feature-text { font-size: 0.85rem; color: rgba(255,255,255,0.93); line-height: 1.5; }
.membership-card-elite { background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%); border: 1px solid rgba(201,168,70,0.4); }
.membership-badge {
  position: absolute; top: 24px; right: 24px;
  background: var(--gold); color: var(--black);
  font-size: 0.55rem; letter-spacing: 0.2em; font-weight: 700;
  text-transform: uppercase; padding: 6px 12px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 4px;
}
.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(201,168,70,0);
  transition: background 0.4s ease;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(10,10,10,0.5); }
.gallery-item-zoom { opacity: 0; font-size: 1.5rem; color: var(--white); transition: opacity 0.4s ease; }
.gallery-item:hover .gallery-item-zoom { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 24px; right: 32px; font-size: 2rem; cursor: pointer; color: var(--white); }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2rem; color: var(--gold); cursor: pointer; padding: 20px; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; }
.contact-info { display: flex; flex-direction: column; gap: 40px; }
.contact-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-icon { width: 48px; height: 48px; border: 1px solid rgba(201,168,70,0.4); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.contact-label { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 6px; }
.contact-value { font-size: 0.95rem; line-height: 1.6; color: rgba(255,255,255,0.95); }
.contact-value a:hover { color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.form-input, .form-textarea, .form-select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0; padding: 14px 16px;
  color: var(--white); font-family: var(--font-sans); font-size: 0.9rem;
  transition: border-color 0.3s ease;
  width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--gold); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-select option { background: var(--charcoal); color: var(--white); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.map-wrapper { margin-top: 80px; }
.map-wrapper iframe { width: 100%; height: 400px; border: none; filter: grayscale(30%) contrast(1.1); }

/* Social links */
.social-links { display: flex; gap: 16px; margin-top: 12px; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,70,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.95rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black-soft);
  border-top: 1px solid rgba(201,168,70,0.2);
  padding-top: 80px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand { }
.footer-logo { font-family: var(--font-serif); font-size: 2rem; color: var(--gold); letter-spacing: 0.15em; }
.footer-logo-sub { font-size: 0.6rem; letter-spacing: 0.35em; color: var(--white); text-transform: uppercase; margin-top: 2px; }
.footer-tagline { font-family: var(--font-elegant); font-style: italic; color: var(--grey); font-size: 0.95rem; margin: 20px 0; }
.footer-col-title { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 24px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-link { font-size: 0.82rem; color: rgba(255,255,255,0.88); transition: color 0.3s ease; }
.footer-link:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 28px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.72rem; color: var(--grey); letter-spacing: 0.05em; }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-btns { position: fixed; bottom: 32px; right: 32px; z-index: 800; display: flex; flex-direction: column; gap: 12px; }
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(0,0,0,0.5); }
.float-wa { background: #25D366; color: var(--white); }
.float-call { background: var(--gold); color: var(--black); }
.float-top { background: var(--charcoal); color: var(--white); border: 1px solid rgba(201,168,70,0.3); opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.float-top.visible { opacity: 1; pointer-events: all; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,168,70,0.1); }
.philosophy-card { background: var(--charcoal); padding: 50px 36px; text-align: center; transition: background 0.4s ease; }
.philosophy-card:hover { background: #1e1e1e; }
.philosophy-icon { font-size: 2rem; margin-bottom: 20px; }
.philosophy-title { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 16px; font-weight: 500; }
.philosophy-text { font-size: 0.85rem; color: var(--grey); line-height: 1.8; }

.team-section .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,168,70,0.1); }
.team-card { background: var(--charcoal); padding: 40px 32px; text-align: center; }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; background: var(--gold); margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--black); }
.team-name { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500; }
.team-role { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-top: 6px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav-left, .nav-right { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-split { grid-template-columns: 1fr; }
  .about-text { padding: 60px 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .section-pad { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .membership-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .team-section .team-grid { grid-template-columns: 1fr 1fr; }
  .hero-indicators { display: none; }
  .hero-scroll { display: none; }
}

@media (max-width: 768px) {
  .nav-left, .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .nav { padding: 0 20px; }
  .nav-inner { height: 64px; }
  .hero-title { font-size: 2.5rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .team-section .team-grid { grid-template-columns: 1fr; }
  .page-hero-title { font-size: 2.5rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item.wide { grid-column: span 1; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .float-btns { bottom: 20px; right: 20px; }
}

/* ============================================================
   DAY / NIGHT MODE — BULLETPROOF (all !important to beat inline styles)
   ============================================================ */

/* === BASE === */
body.light-mode {
  background-color: #ffffff !important;
  color: #1a1a1a !important;
}

/* Override inline style="background:var(--black)..." on <main>, <section>, <div> */
body.light-mode main,
body.light-mode main * { color: #1a1a1a; }
body.light-mode main { background-color: #f8f5f0 !important; color: #1a1a1a !important; }

body.light-mode section { background-color: #f8f5f0 !important; color: #1a1a1a !important; }

/* === HEADINGS & TEXT — no dim, no rgba === */
body.light-mode h1,
body.light-mode h2,
body.light-mode h3,
body.light-mode h4,
body.light-mode h5,
body.light-mode h6 { color: #1a1a1a !important; }
body.light-mode p { color: #3a3a3a !important; }
body.light-mode span { color: inherit; }
body.light-mode li { color: #3a3a3a !important; }
body.light-mode .section-eyebrow { color: #9A7E2F !important; }
body.light-mode .section-title { color: #1a1a1a !important; }
body.light-mode .section-title em { color: #C9A846 !important; }
body.light-mode .section-lead { color: #555555 !important; }
body.light-mode .gold-line { background: #C9A846 !important; }

/* === NAV === */
body.light-mode .nav { background: rgba(255,255,255,0.92) !important; }
body.light-mode .nav.scrolled {
  background: rgba(255,255,255,0.98) !important;
  box-shadow: 0 2px 40px rgba(0,0,0,0.08) !important;
}
body.light-mode .nav-link { color: #2a2a2a !important; }
body.light-mode .nav-link:hover,
body.light-mode .nav-link.active { color: #C9A846 !important; }
body.light-mode .nav-logo-text { color: #C9A846 !important; }
body.light-mode .nav-logo-sub { color: #2a2a2a !important; }
body.light-mode .nav-logo-tagline { color: #777 !important; }
body.light-mode .nav-hamburger span { background: #2a2a2a !important; }
body.light-mode .mobile-menu { background: #ffffff !important; }
body.light-mode .mobile-menu .nav-link { color: #2a2a2a !important; }
body.light-mode .nav-cta { background: #C9A846 !important; color: #0a0a0a !important; border-color: #C9A846 !important; }
body.light-mode .nav-cta:hover { background: transparent !important; color: #C9A846 !important; }

/* === SPECIFIC SECTION OVERRIDES === */
body.light-mode .signature-section { background: #f8f5f0 !important; }
body.light-mode .bg-black,
body.light-mode .reviews-section { background: #ede9e1 !important; }
body.light-mode .bg-charcoal { background: #e2ddd5 !important; }
body.light-mode .stats-section { background: #e2ddd5 !important; border-color: rgba(0,0,0,0.08) !important; }
body.light-mode .instagram-section { background: #ede9e1 !important; }
body.light-mode .experience-section { background: #e8e4dc !important; }

/* === PAGE HERO (keep dark for readability over images) === */
body.light-mode .page-hero-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.38) 100%) !important;
}
body.light-mode .page-hero-eyebrow { color: #C9A846 !important; }
body.light-mode .page-hero-title { color: #ffffff !important; }
body.light-mode .page-hero-sub { color: rgba(255,255,255,0.9) !important; }
body.light-mode .page-hero-title em { color: #C9A846 !important; }

/* === STATS === */
body.light-mode .stat-item { background: #e2ddd5 !important; }
body.light-mode .stat-number { color: #C9A846 !important; }
body.light-mode .stat-label { color: #555555 !important; }

/* === SERVICE CARDS === */
body.light-mode .service-card { background: #ddd8d0 !important; }
body.light-mode .service-card-title { color: #ffffff !important; }
body.light-mode .service-card-desc { color: rgba(255,255,255,0.9) !important; }

/* === ABOUT SPLIT === */
body.light-mode .about-text { background: #f8f5f0 !important; }
body.light-mode .about-text .section-title { color: #1a1a1a !important; }
body.light-mode .about-text p,
body.light-mode .about-text .section-lead { color: #555555 !important; }

/* === REVIEWS === */
body.light-mode .review-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.09) !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06) !important;
}
body.light-mode .review-text { color: #333333 !important; }
body.light-mode .review-name { color: #1a1a1a !important; }
body.light-mode .review-date { color: #777 !important; }
body.light-mode .review-card-v2 {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.09) !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06) !important;
}
body.light-mode .review-quote { color: #333333 !important; }
body.light-mode .review-name-v2 { color: #1a1a1a !important; }
body.light-mode .review-author-v2 { border-top-color: rgba(0,0,0,0.1) !important; }
body.light-mode .review-meta { color: #777 !important; }
body.light-mode .rev-btn { border-color: rgba(201,168,70,0.5) !important; color: #9A7E2F !important; }
body.light-mode .rev-dot { background: rgba(0,0,0,0.2) !important; }
body.light-mode .rev-dot.active { background: #C9A846 !important; }

/* === SERVICE PAGES === */
body.light-mode .service-section { background: #f8f5f0 !important; border-bottom-color: rgba(0,0,0,0.08) !important; }
body.light-mode .service-sub-header { color: #9A7E2F !important; border-bottom-color: rgba(201,168,70,0.4) !important; }
body.light-mode .service-item { border-bottom-color: rgba(0,0,0,0.08) !important; }
body.light-mode .service-item:hover { border-color: rgba(201,168,70,0.4) !important; }
body.light-mode .service-item-name { color: #1a1a1a !important; }
body.light-mode .service-item-desc { color: #555555 !important; }
body.light-mode .service-item-price { color: #C9A846 !important; }
body.light-mode .service-note { color: #777 !important; }
body.light-mode .gender-tabs { border-bottom-color: rgba(0,0,0,0.12) !important; }
body.light-mode .gender-tab { color: #777 !important; }
body.light-mode .gender-tab.active { color: #C9A846 !important; border-color: #C9A846 !important; }

/* === MEMBERSHIP === */
body.light-mode .membership-grid { background: rgba(0,0,0,0.08) !important; }
body.light-mode .membership-card {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.1) !important;
}
body.light-mode .membership-card:hover { background: #f5f0e8 !important; }
body.light-mode .membership-card-elite {
  background: #f0ece4 !important;
  border-color: rgba(201,168,70,0.5) !important;
}
body.light-mode .membership-name { color: #1a1a1a !important; }
body.light-mode .membership-tier { color: #9A7E2F !important; }
body.light-mode .feature-text { color: #444444 !important; }
body.light-mode .membership-badge { background: #C9A846 !important; color: #0a0a0a !important; }

/* === PHILOSOPHY / ABOUT CARDS === */
body.light-mode .philosophy-grid { background: rgba(0,0,0,0.08) !important; }
body.light-mode .philosophy-card { background: #ffffff !important; }
body.light-mode .philosophy-card:hover { background: #f5f2ec !important; }
body.light-mode .philosophy-title { color: #1a1a1a !important; }
body.light-mode .philosophy-text { color: #555555 !important; }
body.light-mode .philosophy-icon { color: #C9A846 !important; }

/* === TEAM === */
body.light-mode .team-section .team-grid { background: rgba(0,0,0,0.08) !important; }
body.light-mode .team-card { background: #ffffff !important; }
body.light-mode .team-name { color: #1a1a1a !important; }
body.light-mode .team-role { color: #9A7E2F !important; }

/* === CONTACT === */
body.light-mode .contact-value { color: #333333 !important; }
body.light-mode .contact-value a:hover { color: #C9A846 !important; }
body.light-mode .contact-label { color: #9A7E2F !important; }
body.light-mode .contact-icon { border-color: rgba(201,168,70,0.5) !important; color: #C9A846 !important; }
body.light-mode .form-input,
body.light-mode .form-textarea,
body.light-mode .form-select {
  background: #ffffff !important;
  border-color: rgba(0,0,0,0.18) !important;
  color: #1a1a1a !important;
}
body.light-mode .form-input::placeholder,
body.light-mode .form-textarea::placeholder { color: #999 !important; }
body.light-mode .form-input:focus,
body.light-mode .form-textarea:focus,
body.light-mode .form-select:focus { border-color: #C9A846 !important; }
body.light-mode .form-label { color: #9A7E2F !important; }
body.light-mode .form-select option { background: #ffffff !important; color: #1a1a1a !important; }

/* === SOCIAL & FLOATING === */
body.light-mode .social-link { border-color: rgba(201,168,70,0.5) !important; color: #C9A846 !important; }
body.light-mode .social-link:hover { background: #C9A846 !important; color: #ffffff !important; }
body.light-mode .float-top { background: #ffffff !important; color: #1a1a1a !important; border-color: rgba(0,0,0,0.15) !important; }

/* === GALLERY === */
body.light-mode .gallery-item-zoom { color: #ffffff !important; }

/* === FOOTER === */
body.light-mode .footer { background: #e2ddd5 !important; border-top-color: rgba(0,0,0,0.1) !important; }
body.light-mode .footer-logo { color: #C9A846 !important; }
body.light-mode .footer-logo-sub { color: #1a1a1a !important; }
body.light-mode .footer-tagline { color: #555555 !important; }
body.light-mode .footer-col-title { color: #9A7E2F !important; }
body.light-mode .footer-link { color: #444444 !important; }
body.light-mode .footer-link:hover { color: #C9A846 !important; }
body.light-mode .footer-copy { color: #666 !important; }
body.light-mode .footer-bottom { border-top-color: rgba(0,0,0,0.1) !important; }

/* === SCROLLBAR === */
body.light-mode ::-webkit-scrollbar-track { background: #f0ede6 !important; }
body.light-mode ::-webkit-scrollbar-thumb { background: #C9A846 !important; }

/* === BUTTONS === */
body.light-mode .btn-outline { color: #1a1a1a !important; border-color: #1a1a1a !important; }
body.light-mode .btn-outline::before { background: #1a1a1a !important; }
body.light-mode .btn-outline:hover { color: #ffffff !important; }

/* === PAGE LOADER === */
body.light-mode #page-loader { background: #f8f5f0 !important; }
body.light-mode .loader-logo { color: #C9A846 !important; }

/* === EXPERIENCE JOURNEY (new section) === */
body.light-mode .journey-section { background: #e8e4dc !important; }
body.light-mode .journey-step { background: #ffffff !important; }
body.light-mode .journey-step-title { color: #1a1a1a !important; }
body.light-mode .journey-step-desc { color: #555555 !important; }
body.light-mode .journey-step-number { color: #C9A846 !important; }

/* === INSTAGRAM REELS SECTION === */
body.light-mode .reels-section { background: #f0ece4 !important; }
body.light-mode .reel-card { background: #ffffff !important; }
body.light-mode .reel-caption { color: #1a1a1a !important; }

/* === ABOUT PAGE FOUNDER SECTION === */
body.light-mode .founder-section { background: #f8f5f0 !important; }
body.light-mode .founder-story p { color: #333333 !important; }
body.light-mode .founder-name { color: #1a1a1a !important; }
body.light-mode .timeline-item { border-color: rgba(201,168,70,0.4) !important; }
body.light-mode .timeline-year { color: #C9A846 !important; }
body.light-mode .timeline-text { color: #333333 !important; }
body.light-mode .about-lead-italic { color: #333333 !important; }
body.light-mode .about-body-p { color: #555555 !important; }
body.light-mode .founders-joint-message { color: #444444 !important; }
body.light-mode .about-cta-lead { color: #444444 !important; }
body.light-mode .about-body-section { background: #f8f5f0 !important; color: #1a1a1a !important; }
body.light-mode .founders-section { background: #ede9e1 !important; }
body.light-mode .timeline-section { background: #f8f5f0 !important; }
body.light-mode .philosophy-section { background: #e8e4dc !important; }
body.light-mode .about-cta-section { background: #f8f5f0 !important; }

/* Theme Toggle Button */
.theme-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,70,0.4);
  background: none;
  color: var(--gold);
  font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.theme-toggle:hover { background: var(--gold); color: var(--black); }

/* ============================================================
   SCROLLING MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 10;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
}
.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--black);
  opacity: 0.5;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   ENHANCED STATS (5 columns)
   ============================================================ */
.stats-5 .stats-grid {
  grid-template-columns: repeat(5, 1fr);
}
@media(max-width:900px){ .stats-5 .stats-grid { grid-template-columns: repeat(3, 1fr); } }
@media(max-width:600px){ .stats-5 .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-number { font-family: var(--font-serif); font-size: 2.6rem; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey); margin-top: 10px; }

/* ============================================================
   ENHANCED REVIEWS — CAROUSEL
   ============================================================ */
.reviews-carousel {
  position: relative;
  overflow: hidden;
  margin: 50px 0 40px;
}
.reviews-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.review-card-v2 {
  min-width: calc(33.333% - 19px);
  background: var(--charcoal);
  border: 1px solid rgba(201,168,70,0.12);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}
@media(max-width:900px){ .review-card-v2 { min-width: calc(100% - 0px); } }
.review-stars-v2 { color: var(--gold); font-size: 0.9rem; letter-spacing: 3px; }
.review-quote {
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.8;
  flex: 1;
}
body.light-mode .review-quote { color: #333; }
.review-author-v2 { display: flex; align-items: center; gap: 14px; border-top: 1px solid rgba(201,168,70,0.15); padding-top: 20px; }
.review-avatar-v2 {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700;
  color: var(--black); flex-shrink: 0;
}
.review-name-v2 { font-weight: 600; font-size: 0.85rem; color: var(--white); }
body.light-mode .review-name-v2 { color: #1a1a1a; }
.review-meta { font-size: 0.68rem; color: var(--grey); display: flex; align-items: center; gap: 8px; margin-top: 3px; }
.review-g-icon { color: #4285f4; }
.reviews-nav { display: flex; gap: 12px; justify-content: center; align-items: center; margin-top: 32px; }
.rev-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(201,168,70,0.35);
  background: none; color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer;
  transition: all 0.3s;
}
.rev-btn:hover { background: var(--gold); color: var(--black); }
.rev-dots { display: flex; gap: 8px; }
.rev-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(201,168,70,0.3); cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.rev-dot.active { background: var(--gold); width: 20px; border-radius: 3px; }

/* ============================================================
   LOGO IMAGE SUPPORT
   ============================================================ */
.nav-logo-img { width: 56px; height: auto; }


/* ============================================================
   DARK MODE — FORCE BRIGHT TEXT EVERYWHERE
   ============================================================ */
body:not(.light-mode) {
  --grey: #bbbbbb;
}
body:not(.light-mode) p,
body:not(.light-mode) span:not(.section-eyebrow):not(.nav-logo-sub):not(.nav-logo-tagline),
body:not(.light-mode) li,
body:not(.light-mode) label {
  color: rgba(255,255,255,0.93);
}
body:not(.light-mode) .section-lead,
body:not(.light-mode) .page-hero-sub,
body:not(.light-mode) .review-text,
body:not(.light-mode) .feature-text,
body:not(.light-mode) .philosophy-text,
body:not(.light-mode) .footer-tagline,
body:not(.light-mode) .footer-link,
body:not(.light-mode) .contact-value,
body:not(.light-mode) .service-item-desc,
body:not(.light-mode) .service-note,
body:not(.light-mode) .membership-desc,
body:not(.light-mode) .journey-step-desc,
body:not(.light-mode) .reel-caption,
body:not(.light-mode) .stat-label {
  color: rgba(255,255,255,0.9) !important;
}
body:not(.light-mode) .section-eyebrow {
  color: var(--gold) !important;
}
body:not(.light-mode) h1,
body:not(.light-mode) h2,
body:not(.light-mode) h3,
body:not(.light-mode) h4,
body:not(.light-mode) h5,
body:not(.light-mode) h6 {
  color: #ffffff !important;
}
body:not(.light-mode) h1 em,
body:not(.light-mode) h2 em,
body:not(.light-mode) h3 em {
  color: var(--gold) !important;
}
