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

:root {
  --black: #0a0a0a;
  --deep: #111111;
  --wine: #6B0F1A;
  --burgundy: #8B1A2A;
  --gold: #e0347a;
  --gold-light: #f06fa6;
  --cream: #F5EDD6;
  --white: #faf8f4;
  --muted: #888;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* AGE GATE */
#age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.age-gate-box {
  text-align: center;
  max-width: 480px;
  border: 1px solid var(--gold);
  padding: 3.5rem 3rem;
  background: var(--deep);
}
.age-gate-box .ornament { color: var(--gold); font-size: 1.2rem; letter-spacing: 0.4em; text-transform: uppercase; font-family: 'Lato', sans-serif; font-weight: 300; }
.age-gate-box h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 400; color: var(--white); margin: 1rem 0 0.5rem; }
.age-gate-box p { font-size: 0.88rem; color: var(--muted); margin-bottom: 2rem; letter-spacing: 0.05em; line-height: 1.8; }
.age-gate-btn {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-family: 'Lato', sans-serif;
  cursor: pointer;
  background: transparent;
  transition: all 0.3s;
  margin: 0.4rem;
}
.age-gate-btn:hover, .age-gate-btn.primary:hover { background: var(--gold); color: var(--black); }
.age-gate-btn.exit { border-color: #444; color: #666; font-size: 0.75rem; }
.age-gate-btn.exit:hover { background: #333; color: #aaa; }

/* NAVIGATION */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
  transition: background 0.4s;
}
nav.scrolled { background: rgba(10,10,10,0.98); border-bottom: 1px solid rgba(224,52,122,0.15); }
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.1em;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active { border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 1px; background: var(--cream); transition: all 0.3s; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 8rem 2rem 4rem;
  background: radial-gradient(ellipse at center top, #2a0a10 0%, #0a0a0a 60%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e0347a' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-subtitle { font-size: 0.78rem; letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1rem;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}
.divider { width: 60px; height: 1px; background: var(--gold); margin: 0 auto 2rem; }
.btn {
  display: inline-block;
  padding: 0.9rem 2.8rem;
  text-decoration: none;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-family: 'Lato', sans-serif;
  transition: all 0.3s;
  margin: 0.4rem;
}
.btn-primary { border: 1px solid var(--gold); color: var(--gold); background: transparent; }
.btn-primary:hover { background: var(--gold); color: var(--black); }
.btn-secondary { border: 1px solid rgba(245,237,214,0.3); color: var(--cream); }
.btn-secondary:hover { border-color: var(--cream); }
.scroll-hint { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); color: var(--gold); opacity: 0.5; font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; animation: fadeUpDown 2s ease-in-out infinite; }
@keyframes fadeUpDown { 0%,100% { opacity:0.4; transform:translateX(-50%) translateY(0); } 50% { opacity:0.8; transform:translateX(-50%) translateY(-6px); } }

/* SECTIONS */
section { padding: 7rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 0.72rem; letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; display: block; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--gold); }

/* INTRO / ABOUT PREVIEW */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-image {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #3a0a15, #1a1a1a);
  position: relative;
  overflow: hidden;
}
.intro-image::after {
  content: 'A S H L Y N N J A Y';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.6em;
  color: rgba(224,52,122,0.2);
}
.intro-image .photo-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  padding: 2rem;
  background: linear-gradient(to top, rgba(10,10,10,0.8), transparent 50%);
}
.intro-text p { color: rgba(245,237,214,0.75); margin-bottom: 1.2rem; font-size: 0.95rem; }
.intro-text .signature { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-style: italic; color: var(--gold); margin-top: 2rem; }

/* SERVICES PREVIEW */
.services-section { background: var(--deep); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 3rem; }
.service-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(224,52,122,0.1);
  transition: all 0.4s;
  background: var(--black);
}
.service-card:hover { border-color: rgba(224,52,122,0.4); background: #141414; }
.service-card .icon { color: var(--gold); font-size: 1.4rem; margin-bottom: 1rem; }
.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; color: var(--white); margin-bottom: 0.8rem; }
.service-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.8; }

/* GALLERY GRID */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin-top: 3rem; }
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item .img-fill {
  width: 100%; height: 100%;
  transition: transform 0.6s ease;
}
.gallery-item:hover .img-fill { transform: scale(1.05); }
.gallery-item .overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.5);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.gallery-item:hover .overlay { opacity: 1; }

.placeholder-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.ph-1 { background: linear-gradient(135deg, #2a0a10 0%, #111 100%); }
.ph-2 { background: linear-gradient(135deg, #1a1a0a 0%, #2a1a0a 100%); }
.ph-3 { background: linear-gradient(135deg, #0a0a2a 0%, #1a0a1a 100%); }
.ph-4 { background: linear-gradient(135deg, #1a0a0a 0%, #2a0a15 100%); }
.ph-5 { background: linear-gradient(135deg, #0a1a0a 0%, #101a10 100%); }
.ph-6 { background: linear-gradient(135deg, #1a1020 0%, #20101a 100%); }
.ph-7 { background: linear-gradient(135deg, #200a0a 0%, #300a10 100%); }
.ph-8 { background: linear-gradient(135deg, #0a0a1a 0%, #100a20 100%); }
.ph-9 { background: linear-gradient(135deg, #1a0a10 0%, #0a1a1a 100%); }

/* TESTIMONIALS */
.testimonial-section { text-align: center; }
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.testimonial { padding: 2rem; border-top: 1px solid rgba(224,52,122,0.2); }
.testimonial blockquote { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: var(--cream); line-height: 1.7; margin-bottom: 1rem; }
.testimonial cite { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

/* ABOUT PAGE */
.about-hero {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 4rem 4rem;
  background: radial-gradient(ellipse at top left, #2a0a10 0%, #0a0a0a 60%);
}
.about-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 300; color: var(--white); line-height: 1.1; }
.about-content { display: grid; grid-template-columns: 2fr 1fr; gap: 5rem; margin-top: 4rem; }
.about-body p { color: rgba(245,237,214,0.8); margin-bottom: 1.5rem; font-size: 0.95rem; }
.about-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; color: var(--white); margin: 2.5rem 0 1rem; }
.about-sidebar-item { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(224,52,122,0.1); }
.about-sidebar-item h4 { font-size: 0.72rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.about-sidebar-item p { font-size: 0.88rem; color: var(--muted); }

/* SESSIONS PAGE */
.sessions-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 4rem 4rem;
  background: linear-gradient(to bottom right, #2a0a10, #0a0a0a);
}
.sessions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }
.session-card {
  padding: 2.5rem;
  border: 1px solid rgba(224,52,122,0.12);
  background: var(--deep);
  transition: border-color 0.4s;
}
.session-card:hover { border-color: rgba(224,52,122,0.35); }
.session-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; color: var(--white); margin-bottom: 0.5rem; }
.session-card .duration { font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.session-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.9; }
.session-notice {
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  border-left: 2px solid var(--gold);
  background: var(--deep);
  font-size: 0.85rem;
  color: rgba(245,237,214,0.65);
  line-height: 1.9;
}
.session-notice strong { color: var(--gold); display: block; margin-bottom: 0.5rem; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; }

/* CONTACT PAGE */
.contact-hero {
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 4rem 4rem;
  background: radial-gradient(ellipse at bottom right, #2a0a10 0%, #0a0a0a 70%);
}
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 4rem; }
.contact-info p { color: rgba(245,237,214,0.7); font-size: 0.9rem; margin-bottom: 2rem; line-height: 1.9; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-detail .label { font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); min-width: 80px; padding-top: 0.2rem; }
.contact-detail .value { font-size: 0.9rem; color: var(--cream); }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group label { display: block; font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--deep);
  border: 1px solid rgba(224,52,122,0.2);
  color: var(--cream);
  padding: 0.9rem 1.1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select option { background: var(--deep); }

/* FOOTER */
footer {
  background: var(--deep);
  border-top: 1px solid rgba(224,52,122,0.1);
  padding: 3rem 4rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--gold); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-disclaimer { font-size: 0.72rem; color: #444; text-align: right; line-height: 1.7; }

/* PAGE HEADER (inner pages) */
.page-header {
  padding: 10rem 4rem 4rem;
  background: radial-gradient(ellipse at top, #1a0508 0%, #0a0a0a 60%);
  border-bottom: 1px solid rgba(224,52,122,0.08);
}
.page-header .section-label { margin-bottom: 1rem; }
.page-header h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 300; color: var(--white); line-height: 1.1; }
.page-header h1 em { color: var(--gold); font-style: italic; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 1.2rem 2rem; }
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 0; background: rgba(10,10,10,0.98); align-items: center; justify-content: center; gap: 2.5rem; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .hamburger { display: flex; }
  .intro-grid, .about-content, .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid, .sessions-grid, .testimonials { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  footer { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
  .footer-disclaimer { text-align: center; }
  .footer-links { justify-content: center; }
  section { padding: 4rem 1.5rem; }
  .page-header { padding: 7rem 1.5rem 3rem; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  nav { padding: 1rem 1.2rem; }
  .nav-logo { font-size: 0.85rem; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-subtitle { font-size: 0.75rem; letter-spacing: 0.18em; }
  .hero-actions { flex-direction: column; align-items: center; gap: 0.8rem; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .section-title { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .gallery-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-form-wrap { padding: 1.5rem; }
  .sessions-grid, .services-grid { grid-template-columns: 1fr; }
  .contact-form input, .contact-form select, .contact-form textarea { font-size: 16px; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.75rem; }
  .page-header { padding: 6rem 1.2rem 2.5rem; }
  section { padding: 3rem 1.2rem; }
  .about-photo img { max-height: 420px; }
  .session-notice { padding: 1.5rem; }
  footer { padding: 3rem 1.2rem 1.5rem; }
}
