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

:root {
  --black: #050208;
  --deep: #0d0610;
  --plum: #2a0a2e;
  --plum-dim: #180619;
  --crimson: #9b1a3a;
  --crimson-bright: #d4214e;
  --crimson-dim: #3d0818;
  --crimson-faint: #1a0309;
  --blush: #e8a0b0;
  --blush-dim: #8a4055;
  --blush-faint: #1e080e;
  --gold: #d4a853;
  --gold-dim: #7a5820;
  --gold-faint: #1e1205;
  --white: #f5ede8;
  --text: #f0e8e2;
  --text-dim: #c9b8b0;
  --text-muted: #9a8880;
  --serif: 'Playfair Display', serif;
  --sans: 'Raleway', sans-serif;
  --mono: 'Share Tech Mono', monospace;
}

html { scroll-behavior: smooth; }
body {
  background: var(--black);
  font-family: var(--sans);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ── */
#cur {
  position: fixed; width: 10px; height: 10px;
  background: var(--blush); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  mix-blend-mode: screen;
}
#cur2 {
  position: fixed; width: 30px; height: 30px;
  border: 1px solid rgba(212,168,83,.3); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: left .12s ease, top .12s ease, width .3s, height .3s;
}

/* ── PETAL CANVAS ── */
#petalCanvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}

/* ── GRAIN ── */
.grain {
  position: fixed; inset: -50%; width: 200%; height: 200%;
  z-index: 1; pointer-events: none; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: gr .5s steps(1) infinite;
}
@keyframes gr {
  0%,100%{transform:translate(0,0)} 25%{transform:translate(-2%,3%)} 
  50%{transform:translate(3%,-1%)} 75%{transform:translate(-1%,2%)}
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.6rem 4rem;
  background: linear-gradient(to bottom, rgba(5,2,8,.9) 0%, transparent 100%);
  opacity: 0; animation: fadeIn 1s ease forwards 3.5s;
}
.nav-logo {
  font-family: var(--serif); font-size: 1.25rem;
  font-style: italic; letter-spacing: .15em;
  color: var(--blush); text-decoration: none;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: var(--sans); font-size: .85rem; letter-spacing: .2em;
  color: var(--text-dim); text-decoration: none; text-transform: uppercase;
  font-weight: 300; transition: color .3s;
}
.nav-links a:hover { color: var(--blush); }

/* ── PAGE ── */
.page { position: relative; z-index: 10; }

/* ── HERO ── */
.hero {
  height: 100vh; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
}

/* Background gradient */
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(42,10,46,.6) 0%, rgba(5,2,8,0) 70%);
  z-index: 0;
}

/* Anime character silhouette area */
.hero-anime {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 340px; height: 500px; z-index: 1;
  background: linear-gradient(to top, 
    rgba(155,26,58,.15) 0%, 
    rgba(42,10,46,.08) 50%, 
    transparent 100%);
  /* Placeholder — replace with actual anime illustration */
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 2rem;
}
.hero-anime-placeholder {
  font-family: var(--serif); font-size: 6rem;
  color: rgba(232,160,176,.08); letter-spacing: .1em;
  font-style: italic;
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  font-family: var(--mono); font-size: .58rem; letter-spacing: .6em;
  color: var(--crimson-bright); text-transform: uppercase;
  opacity: 0; animation: riseIn .8s ease forwards 1.5s;
  margin-bottom: 2.5rem;
}

.hero-title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(2.8rem, 8vw, 7rem);
  line-height: .95; letter-spacing: .02em;
  opacity: 0; animation: riseIn 1.2s ease forwards 1.8s;
  margin-bottom: 2.5rem;
}
.hero-title .t1 { display: block; color: var(--white); }
.hero-title .t2 { display: block; color: var(--blush); font-style: italic; }
.hero-title .t3 { display: block; color: var(--crimson-bright); font-size: .38em; letter-spacing: .4em; font-style: normal; margin-top: 1rem; font-weight: 400; }

.hero-rule {
  width: 0; height: 1px; margin: 0 auto 2.5rem;
  background: linear-gradient(90deg, transparent, var(--blush-dim), var(--crimson), var(--blush-dim), transparent);
  animation: expandW 1s ease forwards 3s;
}

.hero-voice {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  line-height: 1.9; color: var(--text-dim);
  max-width: 520px; margin: 0 auto 3rem;
  opacity: 0; animation: riseIn 1s ease forwards 3.2s;
}

.hero-cta {
  opacity: 0; animation: riseIn 1s ease forwards 3.8s;
}
.btn-enter {
  display: inline-block; font-family: var(--serif);
  font-style: italic; font-size: 1rem;
  letter-spacing: .15em; color: var(--black);
  background: linear-gradient(135deg, var(--blush) 0%, var(--crimson-bright) 100%);
  padding: 1.1rem 3.5rem; text-decoration: none;
  position: relative; overflow: hidden;
  transition: opacity .3s;
}
.btn-enter:hover { opacity: .9; }

.btn-secondary {
  display: inline-block; font-family: var(--sans);
  font-size: .65rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--blush); border: 1px solid var(--blush-dim);
  padding: .9rem 2.5rem; text-decoration: none;
  transition: all .3s;
}
.btn-secondary:hover { background: rgba(232,160,176,.08); border-color: var(--blush); }

.hero-approved {
  position: absolute; bottom: 3rem; right: 4rem; z-index: 2;
  font-family: var(--serif); font-style: italic;
  font-size: .85rem; color: var(--text-muted);
  opacity: 0; animation: fadeIn 1s forwards 4.5s;
  text-align: right; line-height: 1.7;
}
.hero-approved span { display: block; color: var(--gold-dim); font-size: .7rem; font-family: var(--mono); font-style: normal; letter-spacing: .2em; margin-top: .3rem; }

/* ── SECTION BASE ── */
.section {
  position: relative; z-index: 10;
  padding: 9rem 4rem;
  max-width: 1200px; margin: 0 auto;
  width: 100%; box-sizing: border-box;
}
.section-label {
  font-family: var(--mono); font-size: .72rem;
  letter-spacing: .5em; color: var(--crimson-bright);
  text-transform: uppercase; margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.section-label::before { content: '♦'; color: var(--blush-dim); font-size: .6rem; }
.section-title {
  font-family: var(--serif); font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700; color: var(--white); line-height: 1.25;
  margin-bottom: 1.5rem; word-spacing: .05em;
}
.section-title em { color: var(--blush); font-style: italic; }
.section-title br + * { margin-top: .1em; }
.section-body {
  font-size: 1.1rem; line-height: 2.1; color: var(--text-dim);
  font-weight: 300; max-width: 620px;
}

/* ── DIVIDER ── */
.silk-divider {
  position: relative; z-index: 10;
  text-align: center; padding: 2rem;
  color: var(--crimson-dim); font-size: .7rem;
  letter-spacing: 1em;
}

/* ── ABOUT / PERSONA ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7rem; align-items: center;
}
.about-img {
  position: relative; aspect-ratio: 2/3;
  background: var(--plum-dim);
  overflow: hidden;
}
.about-img::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(155,26,58,.25), transparent 60%);
  z-index: 1;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; filter: sepia(.1) contrast(1.05); }
.about-img-placeholder {
  width: 100%; height: 100%; display: flex;
  align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic;
  font-size: 1.2rem; color: var(--crimson-dim); letter-spacing: .2em;
}
.about-frame-line {
  position: absolute; z-index: 2;
  background: var(--blush-dim);
}
.afl-top { top: 12px; left: 12px; right: 12px; height: 1px; }
.afl-bottom { bottom: 12px; left: 12px; right: 12px; height: 1px; }
.afl-left { top: 12px; bottom: 12px; left: 12px; width: 1px; }
.afl-right { top: 12px; bottom: 12px; right: 12px; width: 1px; }

.personality-chips {
  display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2.5rem;
}
.chip {
  font-family: var(--mono); font-size: .58rem; letter-spacing: .2em;
  color: var(--blush-dim); border: 1px solid rgba(138,64,85,.3);
  padding: .4rem 1rem; text-transform: lowercase;
  transition: all .3s;
}
.chip:hover { color: var(--blush); border-color: var(--blush-dim); background: rgba(232,160,176,.05); }

/* ── FOR COUPLES ── */
.couples-wrap {
  position: relative; z-index: 10;
  background: linear-gradient(to bottom, transparent, rgba(42,10,46,.3), transparent);
  border-top: 1px solid rgba(155,26,58,.15);
  border-bottom: 1px solid rgba(155,26,58,.15);
  padding: 9rem 4rem;
}
.couples-inner { max-width: 1100px; margin: 0 auto; }
.couples-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 6rem; align-items: center; margin-top: 4rem;
}
.couples-quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--blush); line-height: 1.6;
  position: relative; padding-left: 2rem;
}
.couples-quote::before {
  content: '"'; position: absolute; left: 0; top: -.5rem;
  font-size: 4rem; color: var(--crimson-dim); line-height: 1;
  font-family: var(--serif);
}
.couples-body { font-size: 1rem; line-height: 2.1; color: var(--text-dim); font-weight: 300; }

/* ── WHY CONFIDENT WOMEN ── */
.confident-wrap {
  position: relative; z-index: 10;
  padding: 9rem 4rem;
  max-width: 1100px; margin: 0 auto;
}
.confident-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; background: rgba(155,26,58,.15);
  margin-top: 4rem;
}
.confident-card {
  background: var(--black); padding: 2.5rem;
  position: relative; overflow: hidden; transition: background .4s;
}
.confident-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--blush-dim), transparent);
  transform: scaleX(0); transition: transform .5s;
}
.confident-card:hover::after { transform: scaleX(1); }
.confident-card:hover { background: var(--plum-dim); }
.confident-num {
  font-family: var(--serif); font-size: 2.5rem;
  color: rgba(155,26,58,.2); font-style: italic;
  margin-bottom: .5rem; display: block;
}
.confident-title {
  font-family: var(--serif); font-size: 1.05rem;
  color: var(--blush); margin-bottom: .8rem;
}
.confident-desc { font-size: .9rem; line-height: 1.9; color: var(--text-dim); font-weight: 300; }

/* ── THE FANTASY ── */
.fantasy-wrap {
  position: relative; z-index: 10;
  padding: 9rem 4rem;
  background: rgba(42,10,46,.2);
  border-top: 1px solid rgba(212,168,83,.08);
  border-bottom: 1px solid rgba(212,168,83,.08);
}
.fantasy-inner {
  max-width: 780px; margin: 0 auto; text-align: center;
}
.fantasy-body {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  line-height: 2; color: var(--text-dim); margin-bottom: 2rem;
}
.fantasy-line {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .3em;
  color: var(--gold-dim); margin: 2rem auto;
  display: flex; align-items: center; gap: 1rem; justify-content: center;
}
.fantasy-line::before, .fantasy-line::after {
  content: ''; flex: 1; max-width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim));
}
.fantasy-line::after { background: linear-gradient(270deg, transparent, var(--gold-dim)); }

/* ── DISCRETION ── */
.discretion-wrap {
  position: relative; z-index: 10;
  padding: 9rem 4rem; max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
}
.discretion-card {
  padding: 3rem; border: 1px solid var(--crimson-dim);
  background: rgba(61,8,24,.15); position: relative;
}
.discretion-card::before {
  content: ''; position: absolute;
  top: -1px; left: 2rem; right: 2rem; height: 2px;
  background: linear-gradient(90deg, transparent, var(--crimson), transparent);
}
.discretion-icon { font-size: 1.5rem; margin-bottom: 1.5rem; display: block; }
.discretion-title {
  font-family: var(--serif); font-size: 1.1rem;
  color: var(--blush); margin-bottom: 1rem;
}
.discretion-body { font-size: .9rem; line-height: 2; color: var(--text-dim); font-weight: 300; }

/* ── LEGAL NOTICE ── */
.legal-banner {
  position: relative; z-index: 10;
  background: rgba(10,5,12,.8);
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  padding: 2.5rem 6rem; text-align: center;
}
.legal-text {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .15em;
  color: var(--gold-dim); line-height: 2; max-width: 900px; margin: 0 auto;
}
.legal-text strong { color: var(--gold); font-style: normal; }

/* ── SCHEDULING ── */
.schedule-wrap {
  position: relative; z-index: 10;
  padding: 9rem 4rem;
  background: rgba(42,10,46,.15);
}
.schedule-inner { max-width: 720px; margin: 0 auto; }
.schedule-intro {
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; line-height: 2; color: var(--text-dim);
  margin-bottom: 3rem; text-align: center;
}
.schedule-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label {
  font-family: var(--mono); font-size: .55rem; letter-spacing: .3em;
  color: var(--blush-dim); text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(5,2,8,.8); border: 1px solid var(--text-muted);
  color: var(--text); font-family: var(--sans);
  font-size: .9rem; font-weight: 300;
  padding: .9rem 1.2rem; outline: none; width: 100%;
  transition: border-color .3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blush-dim); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: #0d0610; }
.form-check {
  display: flex; gap: 1rem; align-items: flex-start;
  font-size: .85rem; color: var(--text-dim); line-height: 1.8; cursor: pointer;
  font-weight: 300;
}
.form-check input { margin-top: .25rem; accent-color: var(--crimson-bright); flex-shrink: 0; }
.form-note {
  font-family: var(--mono); font-size: .55rem; letter-spacing: .12em;
  color: var(--text-muted); text-align: center; line-height: 2; margin-top: .5rem;
}

/* ── DONATION ── */
.donation-wrap {
  position: relative; z-index: 10;
  padding: 9rem 4rem; text-align: center;
}
.donation-inner { max-width: 620px; margin: 0 auto; }
.donation-box {
  margin-top: 3rem; padding: 3rem;
  border: 1px solid var(--gold-dim);
  background: rgba(212,168,83,.03);
  position: relative;
}
.donation-box::before {
  content: '♦'; position: absolute; top: -1rem; left: 50%; transform: translateX(-50%);
  background: var(--black); padding: 0 1rem;
  color: var(--gold-dim); font-size: .7rem;
}
.donation-method {
  font-family: var(--serif); font-size: 1.1rem;
  color: var(--gold); margin-bottom: .5rem;
}
.donation-detail {
  font-family: var(--mono); font-size: .65rem; letter-spacing: .2em;
  color: var(--text-dim); margin-bottom: 2rem; line-height: 2;
}
.donation-tiers {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-top: 2rem;
}
.tier {
  padding: 1.5rem 1rem; border: 1px solid var(--text-muted);
  transition: border-color .3s; cursor: default;
}
.tier:hover { border-color: var(--gold-dim); }
.tier-name { font-family: var(--mono); font-size: .55rem; letter-spacing: .3em; color: var(--crimson-bright); text-transform: uppercase; margin-bottom: .5rem; }
.tier-desc { font-size: .85rem; color: var(--text-dim); font-weight: 300; line-height: 1.7; }

/* ── THE DYNAMIC ── */
.dynamic-wrap {
  position: relative; z-index: 10;
  padding: 9rem 4rem;
  max-width: 900px; margin: 0 auto; text-align: center;
}
.dynamic-body {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  line-height: 1.9; color: var(--text-dim);
  max-width: 680px; margin: 0 auto 2rem;
}
.dynamic-detail {
  font-family: var(--sans); font-size: .9rem; font-weight: 300;
  line-height: 2.1; color: var(--text-muted);
  max-width: 560px; margin: 0 auto;
  padding: 1.5rem 2rem; border: 1px solid var(--crimson-faint);
  background: rgba(61,8,24,.08);
}

/* ── EXPERIENCES ── */
.experiences-wrap {
  position: relative; z-index: 10;
  padding: 9rem 4rem;
  background: rgba(42,10,46,.15);
  border-top: 1px solid rgba(155,26,58,.12);
  border-bottom: 1px solid rgba(155,26,58,.12);
}
.experiences-inner { max-width: 1000px; margin: 0 auto; }
.experiences-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(155,26,58,.12);
  margin-top: 4rem;
}
.experience-card {
  background: var(--black); padding: 3rem 2.5rem; text-align: center;
  position: relative; overflow: hidden; transition: background .4s;
}
.experience-card:hover { background: var(--plum-dim); }
.experience-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--crimson), transparent);
  transform: scaleX(0); transition: transform .5s;
}
.experience-card:hover::before { transform: scaleX(1); }
.experience-icon { font-size: 1.5rem; margin-bottom: 1.5rem; display: block; opacity: .7; }
.experience-name {
  font-family: var(--serif); font-size: 1.1rem;
  color: var(--blush); margin-bottom: 1rem;
}
.experience-desc {
  font-family: var(--sans); font-size: .85rem; font-weight: 300;
  line-height: 1.9; color: var(--text-dim);
}
.experience-note {
  font-family: var(--mono); font-size: .55rem; letter-spacing: .15em;
  color: var(--text-muted); margin-top: 1.5rem; line-height: 1.8;
}

/* ── WHO ASHLEY MEETS ── */
.who-wrap {
  position: relative; z-index: 10;
  padding: 9rem 4rem;
}
.who-inner { max-width: 820px; margin: 0 auto; }
.who-list {
  margin: 2.5rem 0; display: flex; flex-direction: column; gap: 1rem;
}
.who-item {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.5rem 2rem; border: 1px solid var(--text-muted);
  background: rgba(5,2,8,.5); transition: border-color .3s;
}
.who-item:hover { border-color: var(--blush-dim); }
.who-item::before { content: '✦'; color: var(--crimson-bright); flex-shrink: 0; margin-top: .1rem; font-size: .7rem; }
.who-item-text { font-family: var(--sans); font-size: .9rem; font-weight: 300; line-height: 1.8; color: var(--text-dim); }
.who-closing {
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; color: var(--text-dim); line-height: 2;
  margin: 2rem 0; padding: 1.5rem 2rem;
  border-left: 2px solid var(--crimson-dim);
}
.who-invite {
  font-family: var(--serif); font-style: italic;
  font-size: 1.05rem; color: var(--blush);
  text-align: center; margin-top: 2rem;
}

/* ── FIRST MESSAGE GUIDE ── */
.message-guide {
  margin-top: 3rem; padding: 2.5rem;
  border: 1px solid var(--gold-faint);
  background: rgba(212,168,83,.025);
}
.message-guide-title {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .4em;
  color: var(--gold-dim); text-transform: uppercase; margin-bottom: 1.5rem;
}
.message-guide-list {
  list-style: none; display: flex; flex-direction: column; gap: .7rem;
}
.message-guide-list li {
  font-family: var(--sans); font-size: .88rem; font-weight: 300;
  color: var(--text-dim); display: flex; align-items: baseline; gap: .8rem;
  line-height: 1.7;
}
.message-guide-list li::before { content: '·'; color: var(--gold-dim); flex-shrink: 0; }
.message-guide-note {
  font-family: var(--serif); font-style: italic;
  font-size: .9rem; color: var(--text-muted); margin-top: 1.5rem; line-height: 1.9;
}

/* ── SCARCITY BADGES ── */
.scarcity-row {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-top: 2.5rem;
}
.scarcity-badge {
  font-family: var(--mono); font-size: .58rem; letter-spacing: .2em;
  color: var(--text-dim); border: 1px solid var(--text-muted);
  padding: .5rem 1.2rem; display: flex; align-items: center; gap: .6rem;
  transition: border-color .3s;
}
.scarcity-badge::before { content: '✦'; color: var(--gold-dim); }
.scarcity-badge:hover { border-color: var(--gold-dim); }

/* ── TESTIMONIALS ── */
.testimonials-wrap {
  position: relative; z-index: 10;
  padding: 9rem 4rem;
  background: rgba(42,10,46,.12);
  border-top: 1px solid rgba(155,26,58,.12);
  border-bottom: 1px solid rgba(155,26,58,.12);
}
.testimonials-inner { max-width: 1000px; margin: 0 auto; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 4rem;
}
.testimonial {
  padding: 2.5rem; position: relative;
  background: rgba(5,2,8,.6);
  border-top: 1px solid var(--crimson-dim);
}
.testimonial-quote {
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; line-height: 1.9; color: var(--text-dim);
  margin-bottom: 1.5rem; position: relative;
}
.testimonial-quote::before {
  content: '"'; font-size: 3rem; color: var(--crimson-dim);
  font-family: var(--serif); line-height: .8;
  display: block; margin-bottom: .5rem;
}
.testimonial-source {
  font-family: var(--mono); font-size: .55rem;
  letter-spacing: .25em; color: var(--gold-dim); text-transform: uppercase;
}

/* ── MOOD WIDGET ── */
.mood-wrap {
  position: relative; z-index: 10;
  padding: 5rem 6rem; text-align: center;
}
.mood-inner {
  max-width: 560px; margin: 0 auto;
  border: 1px solid var(--plum);
  padding: 3rem; background: rgba(42,10,46,.2);
  position: relative;
}
.mood-inner::before {
  content: ''; position: absolute;
  top: -1px; left: 3rem; right: 3rem; height: 2px;
  background: linear-gradient(90deg, transparent, var(--crimson-bright), transparent);
}
.mood-label { font-family: var(--mono); font-size: .58rem; letter-spacing: .5em; color: var(--crimson-bright); text-transform: uppercase; margin-bottom: 1.5rem; }
.mood-title { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--blush); margin-bottom: 2rem; }
.mood-list { display: flex; flex-direction: column; gap: .8rem; }
.mood-item {
  font-family: var(--sans); font-size: .85rem; font-weight: 300;
  color: var(--text-dim); display: flex; align-items: center;
  gap: 1rem; justify-content: center;
}

/* ── GALLERY — EDITORIAL ── */
.gallery-wrap {
  position: relative; z-index: 10;
  padding: 9rem 4rem;
  background: rgba(42,10,46,.15);
  text-align: center;
}
/* Editorial magazine layout */
.gallery-editorial {
  max-width: 960px; margin: 4rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 4px;
}
.gallery-editorial .gc {
  background: var(--plum-dim); overflow: hidden;
  position: relative; cursor: pointer;
}
.gallery-editorial .gc::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(155,26,58,.5), transparent 50%);
  opacity: 0; transition: opacity .5s;
}
.gallery-editorial .gc:hover::after { opacity: 1; }
.gallery-editorial .gc img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; display: block; }
.gallery-editorial .gc:hover img { transform: scale(1.04); }
/* Editorial layout positions */
.gc-wide { grid-column: span 2; aspect-ratio: 16/9; }
.gc-tall { grid-row: span 2; aspect-ratio: auto; }
.gc-sq   { aspect-ratio: 1/1; }
.gc-port { aspect-ratio: 3/4; }
.gallery-cell-placeholder {
  width: 100%; height: 100%; min-height: 220px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic;
  color: rgba(155,26,58,.15); font-size: .8rem; letter-spacing: .2em;
}

/* ── CLOSING STATEMENT ── */
.closing-wrap {
  position: relative; z-index: 10;
  padding: 10rem 6rem; text-align: center;
  background: linear-gradient(to bottom, transparent, rgba(42,10,46,.25), transparent);
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-line1 {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.4rem, 3.5vw, 2.5rem);
  color: var(--text-dim); line-height: 1.5; margin-bottom: .5rem;
}
.closing-line2 {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.6rem, 4vw, 3rem);
  color: var(--blush); line-height: 1.4; margin-bottom: 3rem;
}
.closing-rule {
  width: 0; height: 1px; margin: 0 auto 3rem;
  background: linear-gradient(90deg, transparent, var(--blush-dim), transparent);
  animation: expandW 1s ease forwards;
}
.closing-wrap.visible .closing-rule { width: 280px; }

/* ── MEMBERS PORTAL ── */
.portal-wrap {
  position: relative; z-index: 10;
  padding: 9rem 4rem; text-align: center;
}
.portal-inner { max-width: 480px; margin: 0 auto; }
.portal-form { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2.5rem; }
.portal-link {
  font-family: var(--mono); font-size: .58rem; letter-spacing: .2em;
  color: var(--text-muted); margin-top: 1.5rem; display: block;
}
.portal-link a { color: var(--blush-dim); text-decoration: none; }
.portal-link a:hover { color: var(--blush); }

/* ── STATUS MESSAGES ── */
.msg-success {
  padding: 1.5rem 2rem; border: 1px solid var(--gold-dim);
  background: rgba(212,168,83,.04); margin-bottom: 2rem;
  font-family: var(--mono); font-size: .62rem; letter-spacing: .15em;
  color: var(--gold); text-align: center;
}
.msg-error {
  padding: 1.5rem 2rem; border: 1px solid var(--crimson-dim);
  background: rgba(155,26,58,.04); margin-bottom: 2rem;
  font-family: var(--mono); font-size: .62rem; letter-spacing: .15em;
  color: var(--crimson-bright); text-align: center;
}

/* ── FOOTER ── */
footer {
  position: relative; z-index: 10;
  border-top: 1px solid rgba(155,26,58,.2);
  padding: 4rem 6rem;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 2rem;
}
.foot-name {
  font-family: var(--serif); font-style: italic;
  font-size: 1.1rem; color: var(--blush);
}
.foot-sub {
  font-family: var(--mono); font-size: .5rem;
  letter-spacing: .25em; color: var(--text-muted); margin-top: .3rem;
}
.foot-links { display: flex; gap: 2rem; }
.foot-links a {
  font-family: var(--mono); font-size: .55rem; letter-spacing: .2em;
  color: var(--text-muted); text-decoration: none; text-transform: uppercase;
  transition: color .3s;
}
.foot-links a:hover { color: var(--blush); }
.foot-copy { font-family: var(--mono); font-size: .5rem; letter-spacing: .15em; color: var(--text-muted); }

/* ── WP CONTENT ── */
.wp-content {
  position: relative; z-index: 10;
  padding: 8rem 6rem; max-width: 900px; margin: 0 auto;
}
.wp-content h1, .wp-content h2 {
  font-family: var(--serif); color: var(--blush); margin-bottom: 1.5rem;
}
.wp-content p { font-size: 1rem; line-height: 2.1; color: var(--text-dim); margin-bottom: 1.5rem; font-weight: 300; }
.wp-content a { color: var(--crimson-bright); }

/* ── ANIMATIONS ── */
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes riseIn { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
@keyframes expandW { from{width:0} to{width:300px} }
.reveal { opacity:0; transform:translateY(28px); transition:opacity .9s ease, transform .9s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.rd1 { transition-delay:.15s; }
.rd2 { transition-delay:.3s; }

/* ── MOBILE STICKY CTA ── */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: linear-gradient(135deg, var(--crimson) 0%, var(--blush-dim) 100%);
  padding: 1rem 2rem;
  text-align: center;
}
.sticky-cta a {
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; letter-spacing: .1em;
  color: var(--white); text-decoration: none;
  display: block;
}

/* ── GALLERY LOCK TEASER ── */
.gallery-lock {
  position: relative; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  min-height: 180px; background: var(--plum-dim);
  border: 1px solid var(--crimson-dim);
  cursor: pointer; transition: border-color .3s;
  padding: 2rem;
}
.gallery-lock:hover { border-color: var(--blush-dim); }
.gallery-lock-icon { font-size: 1.6rem; margin-bottom: .8rem; opacity: .6; }
.gallery-lock-text {
  font-family: var(--mono); font-size: .58rem; letter-spacing: .3em;
  color: var(--text-muted); text-transform: uppercase; text-align: center;
  line-height: 1.9;
}
.gallery-lock-link {
  font-family: var(--serif); font-style: italic;
  font-size: .85rem; color: var(--blush-dim); margin-top: .8rem;
  text-decoration: none; display: block; text-align: center;
  transition: color .3s;
}
.gallery-lock-link:hover { color: var(--blush); }

/* ── FOOTER LEGAL BLOCK ── */
.foot-legal {
  position: relative; z-index: 10;
  border-top: 1px solid var(--text-muted);
  padding: 2.5rem 6rem;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1.5rem;
  background: rgba(5,2,8,.8);
}
.foot-legal-text {
  font-family: var(--mono); font-size: .52rem; letter-spacing: .12em;
  color: var(--text-muted); line-height: 2; max-width: 700px;
}
.foot-legal-links {
  display: flex; gap: 1.5rem; flex-shrink: 0;
}
.foot-legal-links a {
  font-family: var(--mono); font-size: .52rem; letter-spacing: .2em;
  color: var(--text-muted); text-decoration: none; text-transform: uppercase;
  transition: color .3s;
}
.foot-legal-links a:hover { color: var(--blush-dim); }

/* ── RESPONSIVE — add sticky CTA on mobile ── */
@media(max-width:768px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 56px; }
  .foot-legal { padding: 2rem; flex-direction: column; text-align: center; }
  .foot-legal-links { justify-content: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .experiences-grid { grid-template-columns: 1fr; }
  .gallery-editorial { grid-template-columns: 1fr 1fr; }
  .gc-wide { grid-column: span 2; }
  .gc-tall { grid-row: auto; }
}

/* ── AVAILABILITY CALENDAR CARDS ─────────────────────────────── */
.avail-card {
  background: var(--black);
  padding: 1.8rem 1rem 1.5rem;
  text-align: center;
  cursor: default;
  transition: background .25s, transform .2s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
}
.avail-open {
  cursor: pointer;
}
.avail-open:hover {
  background: rgba(155,26,58,.12);
  transform: translateY(-2px);
}
.avail-taken {
  opacity: .45;
}
.avail-past {
  opacity: .25;
}
.avail-month {
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--crimson-bright);
}
.avail-day-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--text);
  line-height: 1;
  margin: .2rem 0;
}
.avail-weekday {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 300;
  letter-spacing: .1em;
  color: var(--text-dim);
}
.avail-status-tag {
  margin-top: .7rem;
  font-family: var(--mono);
  font-size: .52rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  border: 1px solid rgba(212,168,83,.2);
  padding: .25rem .6rem;
}
.avail-taken .avail-status-tag {
  color: var(--text-muted);
  border-color: transparent;
}
.avail-open:hover .avail-status-tag {
  color: var(--gold);
  border-color: rgba(212,168,83,.5);
}

/* ── MEMBERS GALLERY ─────────────────────────────────────────────── */
.gallery-members-wrap {
  position: relative;
  z-index: 10;
  max-width: 1300px;
  margin: 0 auto;
  padding: 8rem 4rem 6rem;
}
.gallery-members-header {
  margin-bottom: 3rem;
}

/* Grid */
.mg-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 3px;
  margin-bottom: 2rem;
}
.mg-item { overflow: hidden; cursor: pointer; }
.mg-wide   { grid-column: span 4; }
.mg-tall   { grid-column: span 2; grid-row: span 2; }
.mg-square { grid-column: span 2; }

.mg-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.mg-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, filter .5s ease;
  filter: brightness(.9) saturate(.95);
}
.mg-inner:hover img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1.05);
}
.mg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,2,8,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}
.mg-inner:hover .mg-overlay {
  background: rgba(5,2,8,.35);
}
.mg-zoom {
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0;
  transform: scale(.8);
  transition: opacity .3s, transform .3s;
}
.mg-inner:hover .mg-zoom {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox */
#mg-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5,2,8,.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
#mg-lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#mg-lb-img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  border: 1px solid rgba(155,26,58,.2);
}
.mg-lb-close {
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.5rem;
  cursor: pointer;
  font-family: var(--sans);
  transition: color .2s;
}
.mg-lb-close:hover { color: var(--blush); }
.mg-lb-prev,
.mg-lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 3rem;
  cursor: pointer;
  padding: 1rem;
  transition: color .2s;
  font-family: var(--sans);
  font-weight: 100;
}
.mg-lb-prev { left: 1rem; }
.mg-lb-next { right: 1rem; }
.mg-lb-prev:hover,
.mg-lb-next:hover { color: var(--blush); }
#mg-lb-counter {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .3em;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .gallery-members-wrap { padding: 6rem 1.5rem 4rem; }
  .mg-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .mg-wide   { grid-column: span 3; }
  .mg-tall   { grid-column: span 1; grid-row: span 2; }
  .mg-square { grid-column: span 2; }
}
@media (max-width: 560px) {
  .mg-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .mg-wide   { grid-column: span 2; }
  .mg-tall   { grid-column: span 1; grid-row: span 2; }
  .mg-square { grid-column: span 1; }
}

/* Gallery Sets — Index Cards */
.gs-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.gs-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.gs-card-drop {
  border: 1px solid rgba(155,26,58,.15);
  background: rgba(5,2,8,.5);
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.gs-card-link:hover .gs-card-drop {
  border-color: rgba(155,26,58,.4);
  transform: translateY(-2px);
}
.gs-card-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.gs-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, filter .5s ease;
  filter: brightness(.85) saturate(.9);
}
.gs-card-link:hover .gs-card-cover img {
  transform: scale(1.04);
  filter: brightness(.95) saturate(1);
}
.gs-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(5,2,8,.7));
  pointer-events: none;
}
.gs-card-nocover {
  aspect-ratio: 4 / 3;
  background: rgba(155,26,58,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.gs-card-badge {
  position: absolute;
  top: .8rem;
  right: .8rem;
  background: var(--crimson,#9b1a3a);
  color: #fff;
  font-family: var(--mono,monospace);
  font-size: .5rem;
  letter-spacing: .15em;
  padding: .25rem .6rem;
  text-transform: uppercase;
}
.gs-card-body {
  padding: 1.2rem 1.4rem 1.4rem;
}
.gs-card-title {
  font-family: var(--serif,serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--blush,#e8a0b0);
  margin-bottom: .35rem;
  line-height: 1.3;
}
.gs-card-teaser {
  font-family: var(--sans,sans-serif);
  font-size: .8rem;
  font-weight: 300;
  color: var(--text-dim,#c9b8b0);
  line-height: 1.6;
  margin-bottom: .5rem;
}
.gs-card-meta {
  font-family: var(--mono,monospace);
  font-size: .48rem;
  letter-spacing: .15em;
  color: var(--text-muted,#9a8880);
  text-transform: uppercase;
}

/* Gallery Set Detail — back link + new badge */
.gs-back-link {
  font-family: var(--mono,monospace);
  font-size: .6rem;
  letter-spacing: .2em;
  color: var(--text-muted,#9a8880);
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  transition: color .15s;
}
.gs-back-link:hover { color: var(--blush,#e8a0b0); }
.gs-badge-new {
  font-family: var(--mono,monospace);
  font-size: .5rem;
  letter-spacing: .2em;
  color: var(--crimson-bright,#c42255);
  border: 1px solid rgba(155,26,58,.35);
  padding: .3rem .8rem;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .gs-index-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   ASHLEY'S RED LIGHT LOUNGE — page-level overrides
════════════════════════════════════════════════════════════════ */

/* Force solid dark background on the entire members page */
.page-template-page-members,
.page-template-page-members body,
.page-template-page-members .page {
  background: #050208 !important;
  min-height: 100vh;
}

/* Nav: solid dark, no fade-in, no transparent gradient bleed */
.page-template-page-members nav {
  opacity: 1 !important;
  animation: none !important;
  background: #050208 !important;
  border-bottom: 1px solid rgba(155,26,58,.2);
}

/* Ensure .page wrapper has no max-width or padding that boxes in the lounge */
.page-template-page-members .page {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}

/* Hide sticky mobile CTA on members page */
.page-template-page-members .sticky-cta { display: none; }

/* Admin bar offset */
.admin-bar.page-template-page-members .lounge-page { padding-top: 102px; }
@media screen and (max-width: 782px) {
  .admin-bar.page-template-page-members .lounge-page { padding-top: 116px; }
}
