/* Brows And Beyond By Ramya — Luxury Beauty Theme */

:root {
  --rose-gold: #c4876a;
  --rose-gold-light: #d4a88a;
  --rose-gold-dark: #a66b52;
  --blush: #f8ece8;
  --blush-deep: #edd5cc;
  --nude: #f5f0eb;
  --nude-dark: #e8dfd6;
  --gold: #c9a227;
  --gold-light: #e8d5a3;
  --charcoal: #4a4a4a;
  --charcoal-light: #6b6b6b;
  --white: #ffffff;
  --cream: #fdfbf9;
  --shadow: rgba(196, 135, 106, 0.15);
  --shadow-deep: rgba(74, 74, 74, 0.12);
  --font-script: 'Great Vibes', cursive;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', system-ui, sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

.font-script { font-family: var(--font-script); }
.font-display { font-family: var(--font-display); }

/* Loader */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo {
  width: 120px;
  height: auto;
  animation: pulse 1.5s ease-in-out infinite;
}
.loader-bar {
  width: 120px;
  height: 2px;
  background: var(--blush);
  margin-top: 1.5rem;
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--rose-gold), var(--gold));
  animation: loadSlide 1.2s ease-in-out infinite;
}
@keyframes loadSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(0.98); }
}

/* Navigation */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  background: transparent;
}
.site-nav.scrolled {
  background: rgba(253, 251, 249, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px var(--shadow);
  padding: 0.6rem 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 52px;
  width: auto;
  transition: var(--transition);
}
.site-nav.scrolled .nav-logo img { height: 44px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose-gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--rose-gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
  color: var(--white);
  box-shadow: 0 4px 20px var(--shadow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--rose-gold);
}
.btn-outline:hover {
  background: var(--rose-gold);
  color: var(--white);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #b8941f);
  color: var(--white);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}

/* Hero with video */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(253, 251, 249, 0.75) 0%,
    rgba(248, 236, 232, 0.82) 45%,
    rgba(253, 251, 249, 0.9) 100%
  );
  z-index: 1;
}
.hero--video .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(253, 251, 249, 0.55) 0%,
    rgba(248, 236, 232, 0.72) 50%,
    rgba(253, 251, 249, 0.88) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 1rem;
  font-weight: 500;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.hero h1 .accent {
  font-family: var(--font-script);
  font-size: 1.2em;
  color: var(--rose-gold);
  display: block;
}
.hero-sub {
  font-size: 1rem;
  color: var(--charcoal-light);
  max-width: 560px;
  margin: 1.5rem auto 2.5rem;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Sections */
section { padding: 5rem 0; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
}
.section-title .script {
  font-family: var(--font-script);
  color: var(--rose-gold);
  font-size: 1.1em;
}
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.25rem auto 0;
}

/* Cards */
.service-card, .testimonial-card {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--blush-deep);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-gold), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px var(--shadow);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blush);
  color: var(--rose-gold);
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.service-meta {
  display: flex;
  gap: 1.5rem;
  margin: 1rem 0 1.5rem;
  font-size: 0.8rem;
  color: var(--charcoal-light);
}
.service-meta span { display: flex; align-items: center; gap: 0.35rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* About block */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img,
#meet-ramya .split-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 20%;
}
#meet-ramya.split-section .split-media {
  min-height: 420px;
}
.about-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--rose-gold-light);
  z-index: -1;
}

/* Gallery */
.gallery-grid {
  columns: 3;
  column-gap: 1.25rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(74, 74, 74, 0.7));
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-family: var(--font-display);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--white);
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Testimonials */
.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  min-height: 200px;
}
.testimonial-slide {
  display: none;
  animation: fadeIn 0.6s ease;
}
.testimonial-slide.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.testimonial-quote::before {
  content: '"';
  font-family: var(--font-script);
  font-size: 3rem;
  color: var(--rose-gold-light);
  line-height: 0;
  display: block;
  margin-bottom: 0.5rem;
}
.testimonial-author {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-gold);
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.testimonial-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--blush-deep);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.testimonial-dots button.active {
  background: var(--rose-gold);
  transform: scale(1.2);
}
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 1rem; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--blush-deep);
}
.faq-question {
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--rose-gold); }
.faq-question .icon {
  font-size: 1.25rem;
  color: var(--rose-gold);
  transition: transform var(--transition);
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding-bottom: 1.25rem;
  color: var(--charcoal-light);
  font-size: 0.95rem;
}

/* Forms */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--charcoal-light);
  font-weight: 500;
}
.form-control {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--blush-deep);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--rose-gold);
}
textarea.form-control { min-height: 120px; resize: vertical; }

/* Booking */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.calendar-widget {
  background: var(--white);
  border: 1px solid var(--blush-deep);
  padding: 1.5rem;
}
.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
}
.time-slot {
  padding: 0.6rem;
  border: 1px solid var(--blush-deep);
  background: var(--white);
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.time-slot:hover,
.time-slot.selected {
  border-color: var(--rose-gold);
  background: var(--blush);
  color: var(--rose-gold-dark);
}
.time-slot.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--blush) 0%, var(--nude) 100%);
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '✦';
  position: absolute;
  font-size: 8rem;
  color: var(--rose-gold-light);
  opacity: 0.15;
  top: -20px;
  right: 10%;
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 70px; margin-bottom: 1rem; filter: brightness(1.1); }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; }
.footer h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-gold-light);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--rose-gold-light); }
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}
.social-icons a:hover {
  border-color: var(--rose-gold);
  background: var(--rose-gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-credit {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
}

.footer-credit a {
  color: var(--rose-gold-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-credit a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Floating CTA */
.floating-book {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}
.floating-book .btn { box-shadow: 0 8px 32px var(--shadow-deep); }
.whatsapp-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}
.whatsapp-btn:hover { transform: scale(1.08); }

/* Flash messages */
.flash-messages {
  position: fixed;
  top: 90px;
  right: 1.5rem;
  z-index: 1001;
  max-width: 360px;
}
.flash {
  padding: 1rem 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  animation: slideIn 0.4s ease;
}
.flash.success { background: #e8f5e9; border-left: 3px solid #4caf50; color: #2e7d32; }
.flash.error { background: #ffebee; border-left: 3px solid #e57373; color: #c62828; }
.flash.info { background: var(--blush); border-left: 3px solid var(--rose-gold); }
@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Page headers */
.page-hero {
  padding: 10rem 0 4rem;
  text-align: center;
  background: linear-gradient(180deg, var(--blush) 0%, var(--cream) 100%);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
}

/* Animations on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Admin */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 240px;
  background: var(--charcoal);
  color: white;
  padding: 2rem 0;
}
.admin-sidebar a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.85rem;
}
.admin-sidebar a:hover { background: rgba(255,255,255,0.05); color: var(--rose-gold-light); }
.admin-main { flex: 1; padding: 2rem; background: var(--nude); }
.admin-table { width: 100%; border-collapse: collapse; background: white; }
.admin-table th, .admin-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--blush-deep);
  font-size: 0.9rem;
}
.status-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.status-pending { background: #fff3e0; color: #e65100; }
.status-confirmed { background: #e8f5e9; color: #2e7d32; }
.status-cancelled { background: #ffebee; color: #c62828; }

/* Instagram placeholder */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.instagram-grid a {
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
}
.instagram-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.instagram-grid a:hover img { transform: scale(1.1); }

.hidden { display: none !important; }

/* Content pages (aftercare, terms, privacy) */
.content-page { max-width: 800px; }
.content-block { margin-bottom: 2.5rem; }
.content-block h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--rose-gold-dark);
  margin-bottom: 1rem;
}
.content-block h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.75rem; }
.content-block ul { padding-left: 1.25rem; line-height: 1.9; color: var(--charcoal-light); }
.content-block li { margin-bottom: 0.5rem; }
.disclaimer-box {
  background: var(--blush);
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--rose-gold);
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.6;
  cursor: pointer;
}
.consent-label input { margin-top: 0.25rem; flex-shrink: 0; }

/* Admin */
.admin-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--blush-deep);
}
.admin-filters .form-control { max-width: 180px; }

.consent-checkbox {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--charcoal-light);
  margin: 1rem 0 1.25rem;
  cursor: pointer;
}
.consent-checkbox input { margin-top: 0.2rem; flex-shrink: 0; }
.consent-checkbox a { color: var(--rose-gold); text-decoration: underline; }
.admin-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.btn-danger {
  background: #b85c5c;
  color: white;
  border: none;
}
.btn-danger:hover { background: #9e4a4a; color: white; }
.status-completed { background: #e3f2fd; color: #1565c0; }
.status-no_show { background: #fce4ec; color: #c2185b; }
.no-slots-msg {
  padding: 1rem;
  background: var(--blush);
  font-size: 0.9rem;
  color: var(--charcoal-light);
  text-align: center;
}

/* Bella-inspired sections */
.hero-hook {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: var(--charcoal-light);
  max-width: 520px;
  margin: 0 auto 2rem;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--blush);
}
.split-media img,
.split-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3.5rem;
  background: var(--white);
}
.split-content--blush { background: var(--blush); }
.split-content--nude { background: var(--nude); }

.concern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.concern-card {
  background: var(--white);
  border: 1px solid var(--blush-deep);
  overflow: hidden;
  transition: var(--transition);
}
.concern-card:hover {
  box-shadow: 0 12px 36px var(--shadow);
  transform: translateY(-4px);
}
.concern-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.concern-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.concern-card:hover .concern-card-image img { transform: scale(1.05); }
.concern-card-body { padding: 1.75rem; }
.concern-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}
.concern-card p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  margin-bottom: 1rem;
}
.concern-card .learn-more {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-gold);
  text-decoration: none;
  font-weight: 600;
}
.concern-card .learn-more:hover { color: var(--rose-gold-dark); }

.consultation-band {
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  padding: 4.5rem 2rem;
}
.consultation-band .section-eyebrow { color: var(--rose-gold-light); }
.consultation-band .section-title { color: var(--white); }
.consultation-band p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 1rem auto 2rem; }

.announcement-bar {
  padding: 0.85rem 0;
  background: linear-gradient(90deg, var(--blush), var(--nude));
  text-align: center;
}
.announcement-bar p { margin: 0; font-size: 0.9rem; }

.statement-banner {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--blush) 0%, var(--nude) 50%, var(--blush-deep) 100%);
  position: relative;
}
.statement-banner h2 {
  font-family: var(--font-script);
  font-size: clamp(3.5rem, 10vw, 7rem);
  color: var(--rose-gold);
  line-height: 1;
  margin: 0;
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.reviews-badge .stars { margin: 0; font-size: 0.85rem; }

.reviews-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 0 2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--rose-gold-light) var(--blush);
}
.reviews-scroll::-webkit-scrollbar { height: 6px; }
.reviews-scroll::-webkit-scrollbar-thumb { background: var(--rose-gold-light); border-radius: 3px; }
.review-card {
  flex: 0 0 min(340px, 85vw);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--blush-deep);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.review-card .stars { margin-bottom: 1rem; }
.review-card blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
  flex: 1;
  margin: 0 0 1.25rem;
  color: var(--charcoal);
}
.review-card cite {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-gold);
  font-style: normal;
  font-weight: 600;
}

.video-showcase {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--charcoal);
  box-shadow: 0 20px 50px var(--shadow-deep);
}
.video-showcase video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-showcase-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(255,255,255,0.92);
  padding: 0.4rem 0.85rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-gold);
}

.nav-cta-text { font-size: 0.7rem !important; letter-spacing: 0.16em !important; }

/* Real customer reviews */
.client-reviews-section {
  background: linear-gradient(180deg, var(--blush) 0%, var(--cream) 100%);
  padding: 5rem 0;
}
.featured-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.featured-review-card {
  background: var(--white);
  border: 1px solid var(--blush-deep);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  overflow: hidden;
  transition: var(--transition);
  min-height: 280px;
}
.featured-review-card:hover {
  box-shadow: 0 20px 48px var(--shadow);
  transform: translateY(-4px);
}
.featured-review-visual,
.featured-review-proof {
  position: relative;
  overflow: hidden;
  background: var(--nude);
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.featured-review-visual img,
.featured-review-proof img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}
.featured-review-card:hover .featured-review-visual img,
.featured-review-card:hover .featured-review-proof img {
  transform: scale(1.04);
}
.featured-review-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--rose-gold);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  font-weight: 600;
}
.featured-review-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-review-content blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
  margin: 0.75rem 0 1.25rem;
  color: var(--charcoal);
  flex: 1;
}
.featured-review-content footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}
.featured-review-content cite {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-gold);
  font-style: normal;
  font-weight: 600;
}
.review-source {
  font-size: 0.7rem;
  color: var(--charcoal-light);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.review-source i { color: var(--rose-gold); font-size: 0.65rem; }

.review-card--with-proof {
  flex: 0 0 min(380px, 90vw);
  padding: 0;
  overflow: hidden;
  flex-direction: row;
}
.review-card-proof {
  width: 110px;
  flex-shrink: 0;
  overflow: hidden;
  border-right: 1px solid var(--blush-deep);
}
.review-card-proof img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: top center;
}
.review-card-text {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.review-card-text .review-source {
  margin-top: 0.5rem;
  font-size: 0.65rem;
}

.work-showcase-section {
  background: var(--white);
  padding: 5rem 0;
}
.work-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.work-showcase-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--nude);
}
.work-showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.work-showcase-item:hover img { transform: scale(1.06); }
.work-showcase-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(74, 74, 74, 0.85));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.95rem;
  transform: translateY(100%);
  transition: transform var(--transition);
}
.work-showcase-item:hover figcaption { transform: translateY(0); }
.work-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-gold-light);
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
}

.section-divider {
  border: none;
  border-top: 1px solid var(--blush-deep);
  margin: 0;
}

/* Contraindications / Good candidate page */
.candidate-intro p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--charcoal);
}
.candidate-heading {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
  line-height: 1.35;
}
.candidate-heading em {
  font-style: italic;
  color: var(--rose-gold);
}
.contraindication-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contraindication-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--blush-deep);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--charcoal);
}
.contraindication-list li:last-child { border-bottom: none; }
.contra-icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--rose-gold-dark);
  line-height: 1;
}
.contraindication-list--not .contra-icon { color: #b85c5c; }
.contraindication-list--clearance .contra-icon,
.contraindication-list--prep .contra-icon { color: var(--rose-gold-dark); }
.candidate-notes {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.candidate-note-card {
  background: var(--white);
  border: 1px solid var(--blush-deep);
  padding: 1.75rem 2rem;
}
.candidate-note-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--rose-gold);
}
.candidate-note-card p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  margin: 0;
  line-height: 1.75;
}
.candidate-note-card a {
  color: var(--rose-gold);
  font-weight: 500;
}
.candidate-disclaimer {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--charcoal-light);
  line-height: 1.7;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--blush-deep);
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 2; }
  .about-split { grid-template-columns: 1fr; }
  .booking-layout { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .split-section.reverse { direction: ltr; }
  .split-content { padding: 3rem 1.5rem; }
  .concern-grid { grid-template-columns: 1fr; }
  .featured-reviews-grid { grid-template-columns: 1fr; }
  .featured-review-card { grid-template-columns: 1fr; }
  .work-showcase-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -4px 0 24px var(--shadow);
    transition: right var(--transition);
    align-items: flex-start;
  }
  .nav-links.open { right: 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .floating-book { bottom: 1rem; right: 1rem; }
  .work-showcase-grid { grid-template-columns: 1fr; }
  .review-card--with-proof { flex-direction: column; }
  .review-card-proof { width: 100%; height: 120px; border-right: none; border-bottom: 1px solid var(--blush-deep); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 280px; }
}
