/* ============================================
   TAYLOR MADE ESTHETICS — Luxury Style System
   ============================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --black: #0a0a0a;
  --black-light: #141414;
  --black-card: #1a1a1a;
  --gold: #c9a96e;
  --gold-light: #d4b87a;
  --gold-shimmer: #e8d5a3;
  --pink: #e8b4b8;
  --pink-light: #f5d0d0;
  --pink-soft: #fdf6f6;
  --blush: #f9eced;
  --white: #ffffff;
  --white-dim: #f5f5f5;
  --gray: #999999;
  --gray-light: #cccccc;
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
  --hgs-pink: #e91e8c;
  --hgs-pink-light: #f472b6;
  --hgs-pink-bg: #fce4ec;
  --hgs-pink-dark: #c2185b;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  font-size: 15px;
}

body.loading {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- TYPOGRAPHY ---------- */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
  position: relative;
  line-height: 1;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
  padding-top: 8px;
  color: var(--black);
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.section-subtitle {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray);
  max-width: 540px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 18px 40px;
  border-radius: 0;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-outline {
  border: 1px solid var(--white);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

/* ---------- PRELOADER ---------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-logo {
  width: 140px;
  height: auto;
  margin-bottom: 40px;
  display: block;
  animation: preloaderPulse 2s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.preloader-bar {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto;
  overflow: hidden;
}

.preloader-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--gold);
  transition: width 0.3s ease;
}

/* ---------- NAVIGATION ---------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-smooth);
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 160px;
  width: auto;
  transition: height 0.3s ease;
}

#navbar.scrolled .nav-logo img {
  height: 120px;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-book-btn {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 12px 28px;
  transition: all 0.3s ease;
}

.nav-book-btn:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.4);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-links {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-links a {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 300;
  color: var(--white);
  transition: color 0.3s ease;
}

.mobile-links a:hover {
  color: var(--gold);
}

.mobile-book-btn {
  display: inline-block;
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--black) !important;
  margin-top: 16px;
}

/* ---------- HERO ---------- */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--black);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 40px;
}

.hero-subtitle {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.hero-title span {
  display: block;
}

.hero-desc {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto 44px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-scroll-indicator span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

/* ---------- MARQUEE ---------- */
.marquee-section {
  background: var(--black);
  padding: 24px 0;
  overflow: hidden;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.marquee-track {
  overflow: hidden;
  width: 100%;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marqueeScroll 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-content-reverse {
  animation: marqueeScrollReverse 25s linear infinite;
}

.marquee-content span {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 20px;
}

.marquee-dot {
  display: inline-block;
  width: 6px !important;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  padding: 0 !important;
  letter-spacing: 0 !important;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeScrollReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ---------- MARQUEE PROMO ---------- */
.marquee-promo {
  border-color: rgba(233, 30, 140, 0.25);
}

.marquee-promo .marquee-content span {
  color: var(--hgs-pink);
}

.marquee-promo .marquee-dot {
  background: var(--hgs-pink);
}

.marquee-content-promo {
  animation: marqueeScroll 35s linear infinite;
}

.marquee-content-promo.marquee-content-reverse {
  animation: marqueeScrollReverse 35s linear infinite;
}

/* ---------- HOT GIRL SUMMER ---------- */
.hgs-section {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #fce4ec 0%, #f7c6d0 100%);
  overflow: hidden;
}

.hgs-palm {
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  pointer-events: none;
  opacity: 0.08;
}

.hgs-palm-left {
  left: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 600'%3E%3Cpath d='M60 600V320c0-20-30-80-55-120C-10 175 5 140 20 130c15-10 35 5 40 30v160m0 0c0-30-10-100 10-160s50-80 70-85 25 15 10 50-50 100-70 140-20 40-20 55m0 0c0-25 20-90 60-140s70-70 85-55 0 40-20 70-60 90-100 110-25 15-25 15' stroke='%23e91e8c' fill='none' stroke-width='3'/%3E%3C/svg%3E") no-repeat center top;
  background-size: contain;
}

.hgs-palm-right {
  right: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 600'%3E%3Cpath d='M140 600V320c0-20 30-80 55-120 15-25 0-60-15-70s-35 5-40 30v160m0 0c0-30 10-100-10-160s-50-80-70-85-25 15-10 50 50 100 70 140 20 40 20 55m0 0c0-25-20-90-60-140S20 80 5 95s0 40 20 70 60 90 100 110 25 15 25 15' stroke='%23e91e8c' fill='none' stroke-width='3'/%3E%3C/svg%3E") no-repeat center top;
  background-size: contain;
}

.hgs-header {
  text-align: center;
  margin-bottom: 40px;
}

.hgs-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--hgs-pink);
  background: rgba(233, 30, 140, 0.1);
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.hgs-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  font-style: italic;
  color: var(--hgs-pink-dark);
  line-height: 1.1;
  margin-bottom: 8px;
}

.hgs-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hgs-pink);
}

.hgs-promo-banner {
  text-align: center;
  background: var(--hgs-pink);
  color: var(--white);
  padding: 20px 32px;
  margin-bottom: 48px;
  border-radius: 4px;
}

.hgs-promo-text {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hgs-promo-detail {
  display: block;
  font-size: 13px;
  font-weight: 300;
  opacity: 0.9;
}

.hgs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.hgs-card-hero {
  margin-bottom: 48px;
}

.hgs-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: 4px;
  border: 1px solid rgba(233, 30, 140, 0.1);
  position: relative;
  transition: all 0.4s var(--ease-smooth);
}

.hgs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(233, 30, 140, 0.12);
  border-color: var(--hgs-pink-light);
}

.hgs-card-featured {
  border: 2px solid var(--hgs-pink);
}

.hgs-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--hgs-pink);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 2px;
}

.hgs-card-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 10px;
}

.hgs-card-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.hgs-card-price {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  color: var(--hgs-pink);
}

.hgs-cta-wrap {
  text-align: center;
}

.hgs-btn {
  background: var(--hgs-pink);
  color: var(--white);
}

.hgs-btn:hover {
  background: var(--hgs-pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(233, 30, 140, 0.3);
}

/* ---------- ABOUT ---------- */
#about {
  padding: 100px 0;
  background: var(--white);
}

.about-photos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 60px;
}

.about-photo {
  flex: 0 0 auto;
  width: 220px;
  overflow: hidden;
  border-radius: 4px;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  filter: grayscale(10%);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.about-photo:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.about-logo {
  flex: 0 0 auto;
  width: 140px;
}

.about-logo img {
  width: 100%;
  display: block;
}

.about-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.about-heading {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 500;
  color: var(--black);
  margin-bottom: 16px;
}

.about-subheading {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--gold);
  margin-top: 28px;
  margin-bottom: 10px;
}

.about-text {
  font-size: 15px;
  font-weight: 300;
  color: #555;
  line-height: 1.9;
}

/* ---------- SERVICES ---------- */
.services-section {
  padding: 120px 0;
}

.services-her {
  background: var(--pink-soft);
}

.services-him {
  background: var(--black);
}

.services-him .section-label {
  color: var(--gold);
}

.services-him .section-title {
  color: var(--white);
}

.services-him .section-subtitle {
  color: rgba(255,255,255,0.5);
}

.services-him .addons-note {
  border-color: rgba(201, 169, 110, 0.2);
}

.services-him .addons-note p {
  color: rgba(255,255,255,0.5);
}

.services-him .addons-note strong {
  color: var(--gold);
}

/* Service Tabs */
.service-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.service-tab {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 28px;
  color: var(--gray);
  border: 1px solid rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.services-her .service-tab:hover,
.services-her .service-tab.active {
  color: var(--black);
  border-color: var(--gold);
  background: var(--white);
}

.services-him .service-tab {
  color: rgba(255,255,255,0.4);
  border-color: rgba(255,255,255,0.1);
}

.services-him .service-tab:hover,
.services-him .service-tab.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}

.service-category {
  display: none;
}

.service-category.active {
  display: block;
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
  transition: all 0.4s var(--ease-smooth);
  border: 1px solid rgba(0,0,0,0.04);
}

.services-him .service-card {
  background: var(--black-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.services-him .service-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border-color: rgba(201, 169, 110, 0.3);
}

.service-card.featured {
  border: 1px solid var(--gold);
}

.services-him .service-card.featured {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.08), rgba(201, 169, 110, 0.02));
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 4px 12px;
}

.service-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.services-him .service-number {
  color: var(--gold);
}

.service-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--black);
}

.services-him .service-name {
  color: var(--white);
}

.service-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.services-him .service-desc {
  color: rgba(255,255,255,0.45);
}

.service-price {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.service-book {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-book:hover {
  letter-spacing: 3px;
}

.addons-note {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.addons-note p {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
}

.addons-note strong {
  font-weight: 500;
  color: var(--black);
}

/* ---------- EXPERIENCE ---------- */
#experience {
  padding: 140px 0;
  background: var(--blush);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.experience-card {
  text-align: center;
  padding: 48px 28px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s var(--ease-smooth);
}

.experience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.06);
  border-color: var(--gold);
}

.experience-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  color: var(--gold);
}

.experience-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--black);
}

.experience-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.8;
}

/* ---------- MEMBERSHIP ---------- */
#membership {
  padding: 0;
  background: var(--black);
  overflow: hidden;
}

.membership-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.membership-content {
  padding: 120px 80px 120px calc(max((100vw - 1280px) / 2, 40px));
}

.membership-content .section-label {
  color: var(--gold);
}

.membership-content .section-title {
  color: var(--white);
}

.membership-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
}

.membership-desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 32px;
}

.membership-perks {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.membership-perks li {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 12px;
}

.perk-check {
  color: var(--gold);
  font-size: 16px;
  font-weight: 600;
}

.membership-visual {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.membership-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.membership-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.membership-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.55);
}

/* ---------- TESTIMONIALS ---------- */
#testimonials {
  padding: 120px 0;
  background: var(--pink-soft);
}

.testimonials-carousel {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  min-height: 200px;
}

.testimonial-card {
  display: none;
  animation: fadeInTestimonial 0.6s ease;
}

.testimonial-card.active {
  display: block;
}

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

.testimonial-stars {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 24px;
  letter-spacing: 4px;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--black);
  margin-bottom: 28px;
}

.testimonial-author {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}

.t-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

.t-dot:hover {
  background: var(--gold);
}

/* ---------- GALLERY PAGE ---------- */
.gallery-page {
  background: var(--black);
  color: var(--white);
}

.gallery-hero {
  padding: 180px 0 80px;
  text-align: center;
  background: var(--black);
}

.gallery-hero .section-title {
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 120px;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--black-card);
  cursor: pointer;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/5;
  transition: transform 0.6s var(--ease-smooth), filter 0.6s ease;
  filter: grayscale(15%);
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.4) 0%, transparent 50%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
  opacity: 0;
}

/* Gallery Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-smooth);
  cursor: pointer;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox img,
.gallery-lightbox video {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 32px;
  color: var(--white);
  cursor: pointer;
  z-index: 10000;
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 80px;
  }

  .gallery-hero {
    padding: 140px 0 60px;
  }
}

/* ---------- GOOGLE REVIEWS ---------- */
#google-reviews {
  padding: 120px 0;
  background: var(--white);
}

.reviews-header {
  text-align: center;
  margin-bottom: 48px;
}

.reviews-stars {
  font-size: 32px;
  color: var(--gold);
  letter-spacing: 6px;
  margin-bottom: 20px;
}

.reviews-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 12px;
}

.reviews-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.reviews-subtitle {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.8;
}

.reviews-widget {
  max-width: 900px;
  margin: 0 auto;
}

.reviews-cta {
  text-align: center;
  margin-top: 48px;
}

.reviews-leave-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 16px 36px;
  transition: all 0.4s var(--ease-smooth);
}

.reviews-leave-btn:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}

/* ---------- CONTACT ---------- */
#contact {
  padding: 140px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

.contact-item h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-item p {
  font-size: 14px;
  font-weight: 300;
  color: #555;
  line-height: 1.8;
}

.contact-item a {
  color: #555;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--gold);
}

.contact-map {
  border-radius: 12px;
  overflow: hidden;
}

/* ---------- FOOTER ---------- */
#footer {
  background: var(--black);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  width: 80px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  max-width: 280px;
}

.footer-grid h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-grid ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-grid ul a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s ease;
}

.footer-grid ul a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  transition: all 0.3s ease;
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
}

.footer-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 14px !important;
  color: rgba(201, 169, 110, 0.4) !important;
}

/* ---------- MOBILE STICKY BOOK ---------- */
.mobile-book-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--gold);
  padding: 16px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-smooth);
}

.mobile-book-bar.visible {
  transform: translateY(0);
}

.mobile-book-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
}

/* ---------- SCROLL REVEAL ---------- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- TEXT SPLIT ANIMATIONS ---------- */
.split-word {
  display: inline-block;
  will-change: transform, opacity;
}


/* ---------- 3D PERSPECTIVE ---------- */
.experience-grid {
  perspective: 1000px;
}

.experience-card {
  will-change: transform, opacity;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

/* ---------- HERO VIDEO SCALE ---------- */
.hero-video {
  will-change: transform;
}

.hero-content {
  will-change: transform, opacity;
}

/* ---------- LENIS OVERRIDES ---------- */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .container {
    padding: 0 28px;
  }

  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .container {
    padding: 0 20px;
  }

  /* HGS */
  .hgs-section {
    padding: 72px 0 56px;
  }

  .hgs-grid {
    grid-template-columns: 1fr;
  }

  /* Nav */
  .nav-links,
  .nav-book-btn {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  /* Hero */
  #hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-desc {
    font-size: 14px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .hero-scroll-indicator {
    bottom: 100px;
  }

  /* About */
  #about {
    padding: 60px 0;
  }

  .about-photos {
    gap: 16px;
  }

  .about-photo {
    width: 140px;
  }

  .about-logo {
    width: 100px;
  }

  /* Services */
  .services-section {
    padding: 80px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-tabs {
    gap: 6px;
  }

  .service-tab {
    padding: 10px 18px;
    font-size: 10px;
  }

  .service-card {
    padding: 32px 28px;
  }

  /* Experience */
  #experience {
    padding: 80px 0;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Membership */
  #membership {
    padding: 0;
  }

  .membership-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .membership-content {
    padding: 80px 20px;
  }

  .membership-visual {
    min-height: 350px;
    position: relative;
  }

  /* Testimonials */
  #testimonials {
    padding: 80px 0;
  }

  /* Contact */
  #contact {
    padding: 80px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Mobile book bar */
  .mobile-book-bar {
    display: block;
  }

  /* Add padding at bottom for sticky bar */
  #footer {
    padding-bottom: 80px;
  }
}

@media (max-width: 480px) {
  .hgs-palm {
    display: none;
  }

  .hero-subtitle {
    font-size: 9px;
    letter-spacing: 3px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .service-tabs {
    flex-direction: column;
    align-items: center;
  }

  .service-tab {
    width: 100%;
    max-width: 240px;
  }

  .experience-card {
    padding: 32px 20px;
  }
}
