:root {
  --bg-0: #0d0710;
  --bg-1: #170b16;
  --pink-500: #ff3f8f;
  --pink-400: #ff77ab;
  --pink-300: #ffa9c8;
  --pink-200: #ffd7e6;
  --pink-glow: rgba(255, 63, 143, 0.35);
  --text-0: #fff5f9;
  --text-muted: #e3b9cd;
  --card: rgba(255, 255, 255, 0.05);
  --card-border: rgba(255, 167, 199, 0.25);
  --radius-lg: 28px;
  --font-script: 'Dancing Script', cursive;
  --font-body: 'Poppins', sans-serif;
}

* { box-sizing: border-box; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: radial-gradient(circle at 20% 0%, var(--bg-1), var(--bg-0) 60%);
  color: var(--text-0);
  font-family: var(--font-body);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.glow-a {
  width: 420px; height: 420px;
  top: -120px; left: -100px;
  background: var(--pink-500);
}
.glow-b {
  width: 380px; height: 380px;
  bottom: -140px; right: -100px;
  background: #7a2b52;
}

/* One-screen layout */
.page {
  position: relative;
  z-index: 1;
  height: 100vh;
  height: 100dvh;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(10px, 2vh, 20px) 20px clamp(8px, 1.5vh, 14px);
  gap: clamp(6px, 1.4vh, 14px);
}

.top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(2px, 0.8vh, 8px);
  flex: none;
}

.wordmark {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: clamp(2.2rem, 7vh, 3.8rem);
  margin: 0;
  line-height: 1.05;
  background: linear-gradient(120deg, var(--pink-200), var(--pink-400) 60%, var(--pink-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px var(--pink-glow);
}

.hero-sub {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(0.78rem, 1.8vh, 0.95rem);
}

/* Photo card fills the remaining height */
.teaser {
  flex: 1;
  min-height: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.teaser-card {
  position: relative;
  display: block;
  height: 100%;
  max-width: 100%;
  aspect-ratio: 887 / 1182;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.teaser-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 400ms ease;
}

.teaser-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,7,16,0) 60%, rgba(13,7,16,0.65));
}

.private-pill {
  position: absolute;
  left: 50%;
  bottom: clamp(14px, 3vh, 26px);
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 34px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--pink-500), #ff6fae);
  color: #1a0510;
  font-weight: 700;
  font-size: 1.1rem;
  white-space: nowrap;
  box-shadow: 0 10px 30px var(--pink-glow);
  transition: transform 220ms ease, filter 220ms ease;
}

.teaser-card:hover .teaser-img { transform: scale(1.03); }
.teaser-card:hover .private-pill { transform: translateX(-50%) translateY(-2px); filter: brightness(1.06); }
.teaser-card:focus-visible { outline: 3px solid var(--pink-200); outline-offset: 4px; }

/* Bio */
.about {
  flex: none;
  max-width: 520px;
  text-align: center;
  font-size: clamp(0.82rem, 1.9vh, 1.05rem);
  line-height: 1.4;
}
.about p { margin: 0 0 clamp(2px, 0.6vh, 6px); }
.about-secret {
  color: var(--pink-300);
  font-style: italic;
}

.site-footer {
  flex: none;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.68rem;
  opacity: 0.85;
}

/* 18+ age gate */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(13, 7, 16, 0.72);
  -webkit-backdrop-filter: blur(28px) saturate(1.1);
  backdrop-filter: blur(28px) saturate(1.1);
}
.age-gate.is-open { display: flex; }

.age-card {
  width: 100%;
  max-width: 420px;
  padding: 36px 28px 28px;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  background: rgba(23, 11, 22, 0.88);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 60px var(--pink-glow);
}

.age-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 5vw, 1.75rem);
  font-weight: 700;
}

.age-card p {
  margin: 0 0 26px;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.age-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 220ms ease, filter 220ms ease, background 220ms ease;
}
.age-btn:focus-visible { outline: 3px solid var(--pink-200); outline-offset: 3px; }

.age-yes {
  border: none;
  background: linear-gradient(120deg, var(--pink-500), #ff6fae);
  color: #1a0510;
  box-shadow: 0 10px 30px var(--pink-glow);
  margin-bottom: 12px;
}
.age-yes:hover { transform: translateY(-2px); filter: brightness(1.06); }

.age-no {
  background: transparent;
  color: var(--pink-200);
  border: 1px solid var(--card-border);
}
.age-no:hover { background: var(--card); }
