/* ============================================
   LAVISH LIPS XOXO — Stylesheet
   Aesthetic: matte black + neon pink + gold luxe
   ============================================ */

/* ---------- RESET ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; line-height: 1.55; }
img,svg,video { display: block; max-width: 100%; height: auto; }
button { font: inherit; border: 0; background: 0; cursor: pointer; color: inherit; }
a { color: inherit; text-decoration: none; }
input,select,textarea { font: inherit; }
:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; border-radius: 4px; }

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Color */
  --bg: #0a0a0a;
  --bg-2: #121212;
  --surface: #161616;
  --surface-hi: #1d1d1d;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);

  --ink: #f5f0ec;
  --ink-dim: #a09b97;
  --ink-faint: #6b6764;

  --pink: #ff2d8c;
  --pink-soft: #ffd0e3;
  --pink-deep: #c81f6e;
  --pink-glow: rgba(255, 45, 140, 0.45);

  --gold: #d4a574;
  --gold-bright: #ecc78f;
  --gold-deep: #a8804f;

  /* Typography */
  --font-script: 'Italianno', cursive;
  --font-display: 'Playfair Display', 'Cormorant Garamond', serif;
  --font-body: 'Outfit', 'Manrope', system-ui, sans-serif;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* Other */
  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 24px;
  --max-w: 1240px;
  --max-w-narrow: 920px;
}

/* ---------- BASE ---------- */
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

/* subtle film grain over the whole page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ---------- TYPOGRAPHY ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--pink);
  text-shadow:
    0 0 6px var(--pink-glow),
    0 0 18px var(--pink-glow),
    0 0 40px rgba(255, 45, 140, 0.25);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.08;
  color: var(--ink);
}

h2.section-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-style: italic;
  font-weight: 400;
  margin-top: var(--space-3);
  margin-bottom: var(--space-5);
  max-width: 22ch;
}

.lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--ink-dim);
  font-weight: 300;
  max-width: 60ch;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
  position: relative;
  isolation: isolate;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  color: #fff;
  box-shadow: 0 0 0 0 var(--pink-glow), 0 10px 30px -10px rgba(255, 45, 140, 0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px 0 var(--pink-glow), 0 14px 36px -8px rgba(255, 45, 140, 0.7);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-deep) 100%);
  color: #1a1208;
  box-shadow: 0 10px 30px -10px rgba(212, 165, 116, 0.5);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -8px rgba(212, 165, 116, 0.7);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.04);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-arrow::after {
  content: '→';
  font-family: var(--font-body);
  letter-spacing: 0;
  transition: transform 0.25s ease;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---------- ANNOUNCEMENT BAR ---------- */
.announce {
  background: linear-gradient(90deg, var(--pink-deep) 0%, var(--pink) 50%, var(--pink-deep) 100%);
  color: #fff;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  padding: 0.55rem 1rem;
  position: relative;
  z-index: 50;
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.nav-logo {
  font-family: var(--font-script);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--pink);
  text-shadow: 0 0 18px var(--pink-glow);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
}
.nav-logo .xoxo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-shadow: none;
  text-transform: uppercase;
  align-self: center;
  position: relative;
  top: -0.4em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover { color: var(--pink); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--pink);
  transition: width 0.25s ease, left 0.25s ease;
}
.nav-links a:hover::after { width: 100%; left: 0; }

.nav-cta { display: inline-flex; }

.nav-burger {
  display: none;
  width: 28px;
  height: 22px;
  position: relative;
  cursor: pointer;
}
.nav-burger span {
  position: absolute;
  height: 1.5px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.2s ease;
}
.nav-burger span:nth-child(1) { top: 4px; }
.nav-burger span:nth-child(2) { top: 10.25px; }
.nav-burger span:nth-child(3) { top: 16.5px; }
.nav-burger.open span:nth-child(1) { top: 10.25px; transform: rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { top: 10.25px; transform: rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(4rem, 9vw, 6rem);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}

/* honeycomb pattern echoing studio ceiling */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 45, 140, 0.18), transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(212, 165, 116, 0.08), transparent 60%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='180' viewBox='0 0 160 180'><g fill='none' stroke='%23ffffff' stroke-width='0.6' opacity='0.18'><polygon points='40,5 75,5 92.5,35 75,65 40,65 22.5,35'/><polygon points='120,5 155,5 172.5,35 155,65 120,65 102.5,35'/><polygon points='80,65 115,65 132.5,95 115,125 80,125 62.5,95'/><polygon points='40,125 75,125 92.5,155 75,185 40,185 22.5,155'/><polygon points='120,125 155,125 172.5,155 155,185 120,185 102.5,155'/></g></svg>");
  background-size: 200px 230px;
  mask-image: radial-gradient(ellipse 100% 70% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 100% 70% at 50% 50%, #000 30%, transparent 80%);
}

.hero-content {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}

.hero .eyebrow {
  justify-content: center;
  margin-bottom: var(--space-5);
  animation: fade-up 0.9s ease-out 0.1s both;
}
.hero .eyebrow::before,
.hero .eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.hero-title {
  font-family: var(--font-script);
  font-size: clamp(5rem, 14vw, 11rem);
  line-height: 0.88;
  color: var(--pink);
  text-shadow:
    0 0 8px var(--pink-glow),
    0 0 24px var(--pink-glow),
    0 0 60px rgba(255, 45, 140, 0.3),
    0 0 100px rgba(255, 45, 140, 0.15);
  margin-bottom: 0.4rem;
  letter-spacing: 0;
  animation: fade-up 1.1s ease-out 0.2s both, pulse-glow 3.6s ease-in-out 1.3s infinite;
}

.hero-mark {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-top: -0.5rem;
  margin-bottom: var(--space-6);
  animation: fade-up 1.1s ease-out 0.4s both;
}
.hero-mark::before,
.hero-mark::after {
  content: '◆';
  font-size: 0.5em;
  color: var(--gold-deep);
  margin: 0 1rem;
  vertical-align: middle;
  letter-spacing: 0;
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--ink-dim);
  font-weight: 300;
  max-width: 56ch;
  margin: 0 auto var(--space-7);
  animation: fade-up 1.1s ease-out 0.55s both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  animation: fade-up 1.1s ease-out 0.7s both;
}

.hero-meta {
  margin-top: var(--space-7);
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  animation: fade-up 1.1s ease-out 0.85s both;
}
.hero-meta .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 12px var(--pink);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 0 8px var(--pink-glow), 0 0 24px var(--pink-glow), 0 0 60px rgba(255, 45, 140, 0.3); }
  50% { text-shadow: 0 0 12px var(--pink-glow), 0 0 36px var(--pink-glow), 0 0 80px rgba(255, 45, 140, 0.45); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- SECTIONS GENERIC ---------- */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}
.section-alt { background: var(--bg-2); }

/* Promotions section - subtle pink-tinted alt background */
.section-promo {
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(255, 45, 140, 0.06), transparent 70%),
    var(--bg);
  position: relative;
}
.section-promo::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 600px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 45, 140, 0.5), transparent);
}

.promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
  max-width: 1100px;
  margin: 0 auto;
}

.promo-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 45, 140, 0.06), rgba(10, 10, 10, 0.5));
  border: 1px solid rgba(255, 45, 140, 0.25);
  border-radius: var(--radius);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.promo-card:hover {
  transform: translateY(-3px);
  border-color: var(--pink);
  box-shadow: 0 16px 50px rgba(255, 45, 140, 0.15);
}
.promo-card.featured {
  border-color: var(--pink);
  box-shadow: 0 0 0 1px rgba(255, 45, 140, 0.4), 0 12px 40px rgba(255, 45, 140, 0.18);
}
.promo-card.featured:hover {
  box-shadow: 0 0 0 1px var(--pink), 0 18px 50px rgba(255, 45, 140, 0.25);
}

.promo-discount {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--pink);
  text-shadow: 0 0 14px rgba(255, 45, 140, 0.4);
  margin-bottom: 0.3rem;
}

.promo-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}

.promo-desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0;
}

.promo-expires {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0.2rem 0;
}

.promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  margin-top: 0.6rem;
  padding: 0.75rem 1.3rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--pink);
  border-radius: 999px;
  font-weight: 500;
  transition: all 0.25s ease;
  text-decoration: none;
}
.promo-cta:hover {
  background: #ff4a9f;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 45, 140, 0.35);
}
.promo-cta span { transition: transform 0.25s ease; }
.promo-cta:hover span { transform: translateX(3px); }

@media (max-width: 720px) {
  .promo-discount { font-size: 2rem; }
  .promo-title { font-size: 1.3rem; }
}
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 720px; }
.section-head-center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head-center .eyebrow { justify-content: center; }
.section-head-center .eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Clickable card wrapper - turns the whole card into a booking link */
.service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  cursor: pointer;
  height: 100%;
}
.service-card-link:hover .service-card,
.service-card-link:focus-visible .service-card {
  transform: translateY(-4px);
  border-color: var(--pink);
  box-shadow: 0 12px 40px rgba(255, 45, 140, 0.14);
}
.service-card-link.featured:hover .service-card,
.service-card-link.featured:focus-visible .service-card {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(212, 165, 116, 0.18);
}
.service-card-link:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 4px;
}
.service-card-link:hover .service-card::before,
.service-card-link:focus-visible .service-card::before {
  opacity: 1;
}

/* "Book this →" cue at the bottom of clickable cards */
.service-book-cue {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px dashed rgba(255, 45, 140, 0.18);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  opacity: 0.65;
  transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease;
}
.service-card-link:hover .service-book-cue,
.service-card-link:focus-visible .service-book-cue {
  opacity: 1;
}
.service-card-link:hover .service-book-cue span:last-child,
.service-card-link:focus-visible .service-book-cue span:last-child {
  transform: translateX(4px);
}
.service-book-cue span:last-child {
  display: inline-block;
  font-size: 1rem;
  transition: transform 0.25s ease;
}
.service-card-link.featured .service-book-cue {
  color: var(--gold);
  border-top-color: rgba(212, 165, 116, 0.25);
}
.service-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  border-color: rgba(212, 165, 116, 0.3);
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-hi) 100%);
}
.service-card.featured::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 45, 140, 0.08);
  border: 1px solid rgba(255, 45, 140, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--pink);
}
.service-card.featured .service-icon {
  background: rgba(212, 165, 116, 0.08);
  border-color: rgba(212, 165, 116, 0.4);
  color: var(--gold);
}
.service-icon svg { width: 24px; height: 24px; }

.service-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}
.service-tagline {
  font-size: 0.9rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: var(--space-4);
  line-height: 1.4;
}
.service-desc {
  font-size: 0.92rem;
  color: var(--ink-dim);
  font-weight: 300;
  margin-bottom: var(--space-5);
  flex: 1;
}
.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}
.service-price {
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.service-price-from {
  font-size: 0.7rem;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-right: 0.4rem;
}
.service-duration {
  color: var(--ink-faint);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.services-note {
  text-align: center;
  margin-bottom: var(--space-7);
  color: var(--ink-dim);
  font-size: 0.95rem;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  z-index: 2;
  pointer-events: none;
}
.about-image::after {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  bottom: 16px;
  left: 16px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: 0.5;
  z-index: -1;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-hi) 100%);
}
.about-image.placeholder::after { opacity: 1; }
.about-image .placeholder-icon {
  font-family: var(--font-script);
  font-size: 6rem;
  color: var(--pink);
  text-shadow: 0 0 30px var(--pink-glow);
}

.about-body p {
  font-size: 1.05rem;
  color: var(--ink-dim);
  font-weight: 300;
  margin-bottom: var(--space-4);
  max-width: 50ch;
}
.about-signature {
  margin-top: var(--space-5);
  font-family: var(--font-script);
  font-size: 2.4rem;
  color: var(--pink);
  line-height: 1;
}
.about-role {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0 1.75rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-stats:empty { display: none; }
.stat { text-align: center; }
.stat-value {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.1rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.45rem;
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  line-height: 1.3;
}

.about-cta { margin-top: 1.5rem; }
.about-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(255, 45, 140, 0.06);
  border: 1px solid rgba(255, 45, 140, 0.3);
  border-radius: 999px;
  transition: all 0.25s ease;
}
.about-ig svg { width: 18px; height: 18px; color: var(--pink); }
.about-ig:hover {
  background: rgba(255, 45, 140, 0.12);
  border-color: var(--pink);
  transform: translateY(-1px);
}

@media (max-width: 560px) {
  .about-stats { grid-template-columns: 1fr 1fr 1fr; gap: 0.8rem; padding: 1.1rem 0; }
  .stat-value { font-size: 1.65rem; }
  .stat-label { font-size: 0.6rem; letter-spacing: 0.14em; }
}

/* ---------- FEATURES / PILLARS ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-5);
}
.pillar {
  text-align: center;
  padding: var(--space-6) var(--space-4);
  position: relative;
}
.pillar:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  height: 60%;
  width: 1px;
  background: var(--line);
}
.pillar-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.pillar-icon svg { width: 36px; height: 36px; }
.pillar-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: var(--space-3);
}
.pillar-body {
  font-size: 0.92rem;
  color: var(--ink-dim);
  font-weight: 300;
}

/* ---------- GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: var(--space-4);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform 0.35s ease;
}
.gallery-item:hover { transform: scale(1.015); }
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-row: span 2; grid-column: 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1.1); }
.gallery-item.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--surface), var(--surface-hi));
}
.gallery-item.placeholder svg {
  width: 56px;
  height: 56px;
  color: var(--pink);
  opacity: 0.3;
}
.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--space-5) var(--space-4) var(--space-4);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  color: var(--ink);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(20%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); opacity: 1; }

.gallery-cta {
  margin-top: var(--space-7);
  text-align: center;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
}
.testimonial {
  background: var(--surface);
  padding: var(--space-6);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial-stars {
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: var(--space-3);
  font-size: 0.95rem;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: var(--space-5);
  flex: 1;
  position: relative;
}
.testimonial-quote::before {
  content: '"';
  position: absolute;
  top: -2.4rem;
  left: -0.3rem;
  font-size: 5rem;
  font-family: var(--font-display);
  color: var(--pink);
  opacity: 0.18;
  line-height: 1;
}
.testimonial-attr {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
}
.testimonial-name {
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.testimonial-service {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  padding: var(--space-5) 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  list-style: none;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--pink); }
.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  position: relative;
}
.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-toggle::before { width: 10px; height: 1.5px; }
.faq-toggle::after { width: 1.5px; height: 10px; }
.faq-item[open] .faq-toggle { background: var(--pink); border-color: var(--pink); transform: rotate(135deg); }
.faq-item[open] .faq-toggle::before,
.faq-item[open] .faq-toggle::after { background: #fff; }
.faq-answer {
  padding: 0 0 var(--space-5);
  color: var(--ink-dim);
  font-weight: 300;
  font-size: 0.98rem;
  max-width: 64ch;
}

/* ---------- BOOK / CTA SECTION ---------- */
.book-section {
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}
.book-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255, 45, 140, 0.18), transparent 65%),
    radial-gradient(ellipse 100% 50% at 50% 0%, rgba(212, 165, 116, 0.07), transparent 60%);
  z-index: -1;
}
.book-title {
  font-family: var(--font-script);
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  color: var(--pink);
  text-shadow: 0 0 12px var(--pink-glow), 0 0 40px rgba(255, 45, 140, 0.3);
  line-height: 0.95;
  margin-bottom: var(--space-3);
}
.book-sub {
  font-size: 1.05rem;
  color: var(--ink-dim);
  max-width: 50ch;
  margin: 0 auto var(--space-7);
}
.book-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
}
.book-divider {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: var(--space-5) 0;
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
}
.book-divider::before,
.book-divider::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--line);
}

/* ---------- FOOTER ---------- */
.footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding: var(--space-9) 0 var(--space-5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}
.footer-brand .nav-logo {
  font-size: 3rem;
  margin-bottom: var(--space-3);
}
.footer-brand p {
  color: var(--ink-dim);
  font-size: 0.92rem;
  max-width: 32ch;
}
.footer-col h4 {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: var(--space-4);
}
.footer-col ul { list-style: none; }
.footer-col li {
  font-size: 0.92rem;
  color: var(--ink-dim);
  margin-bottom: var(--space-2);
  line-height: 1.6;
}
.footer-col a {
  color: var(--ink-dim);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--pink); }
.hours-list { display: grid; grid-template-columns: auto 1fr; gap: 0.4rem 1rem; font-size: 0.9rem; }
.hours-day { color: var(--ink-faint); letter-spacing: 0.06em; }
.hours-time { color: var(--ink-dim); }
.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-3);
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover { background: var(--pink); border-color: var(--pink); color: #fff; }
.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
}
.footer-bottom a { color: var(--ink-faint); }
.footer-bottom a:hover { color: var(--pink); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 64px 0 auto 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-6) var(--space-5);
    gap: var(--space-5);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    z-index: 30;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1rem; }
  .nav-burger { display: block; }
  .nav-cta { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 480px; margin: 0 auto; }

  .pillar:not(:last-child)::after { display: none; }
  .pillar { border-bottom: 1px solid var(--line); padding-bottom: var(--space-6); }
  .pillar:last-child { border-bottom: 0; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item:nth-child(1) { grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-row: span 1; grid-column: auto; }

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

@media (max-width: 560px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-logo { font-size: 1.85rem; }
  .nav-logo .xoxo { font-size: 0.75rem; }
}

/* ---------- SCROLL REVEAL ----------
   Content is visible by default. Only hidden if JS adds .js-ready to body. */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
body.js-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
}
body.js-ready .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- ACCESSIBILITY ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
