:root {
  --cream: #fbf6f0;
  --cream-deep: #f3e8db;
  --white: #ffffff;
  --beige: #e6d8c6;
  --beige-deep: #d8c4ad;
  --blush: #f6d3d8;
  --blush-soft: #fbe6e8;
  --pink: #efb9c2;
  --pink-ink: #d98b98;
  --ink: #463d36;
  --ink-soft: #6f635a;
  --glass: rgba(255, 255, 255, 0.55);
  --glass-line: rgba(255, 255, 255, 0.7);
  --shadow: 30px 40px 80px -40px rgba(120, 96, 80, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shell-max: 460px;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: "Jost", sans-serif;
  color: var(--ink);
  background: #efe4d6;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Desktop ambient surround */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(120% 90% at 20% 0%, var(--blush-soft) 0%, transparent 55%),
    radial-gradient(120% 90% at 100% 100%, #f0dccf 0%, transparent 50%),
    linear-gradient(160deg, #f4e9dd 0%, #ecdccd 100%);
}
.ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: multiply;
}

/* Phone shell */
.shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--shell-max);
  margin: 0 auto;
  min-height: 100dvh;
  background: var(--cream);
  overflow: hidden;
}

@media (min-width: 600px) {
  body { padding: 28px 0; }
  .shell {
    min-height: calc(100dvh - 56px);
    border-radius: 42px;
    box-shadow: var(--shadow);
    outline: 1px solid rgba(255, 255, 255, 0.6);
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 78dvh;
  min-height: 480px;
  max-height: 720px;
  overflow: hidden;
}
@media (min-width: 600px) { .hero { height: 560px; } }

.hero__media {
  position: absolute;
  inset: 0;
  will-change: transform, opacity;
  transform-origin: 50% 35%;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  display: block;
}
/* Soft cream-to-white overlay gradient */
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--cream) 2%, rgba(251, 246, 240, 0.35) 26%, rgba(251, 246, 240, 0) 52%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 30%);
}

.hero__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 24px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.identity {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 1s var(--ease) 0.25s forwards;
}
.identity__name {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 9vw, 2.9rem);
  letter-spacing: -0.01em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 24px rgba(90, 60, 50, 0.4);
}
.identity__handle {
  margin-top: 8px;
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 14px rgba(90, 60, 50, 0.45);
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  opacity: 0;
  transform: translateY(16px);
  animation: rise 1s var(--ease) 0.45s forwards;
}
.social {
  --glow: rgba(239, 185, 194, 0);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--glass);
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 8px 22px -10px rgba(120, 90, 80, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 0 0 0 var(--glow);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.4s var(--ease);
}
.social:hover {
  --glow: rgba(239, 185, 194, 0.55);
  transform: translateY(-3px) scale(1.06);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 30px -12px rgba(120, 90, 80, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 0 26px 2px var(--glow);
}
.social:active { transform: scale(0.94); }

/* Per-platform brand glow — keeps the glossy glass base, tints the hover halo */
.social--tiktok:hover {
  --glow: rgba(37, 244, 238, 0.5);
  color: #1f1c1f;
  box-shadow: 0 14px 30px -12px rgba(120, 90, 80, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 0 26px 2px var(--glow), 0 0 16px -2px rgba(254, 44, 85, 0.5);
}

/* ---------- CONTENT ---------- */
.content {
  position: relative;
  padding: 6px 24px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--pink-ink);
  margin: 4px 0 18px;
}

/* Featured card */
.feature {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 30px;
  overflow: hidden;
  text-decoration: none;
  isolation: isolate;
  box-shadow: 0 30px 50px -28px rgba(140, 100, 90, 0.6);
  animation: floatShadow 6s ease-in-out infinite;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
}
.feature__img {
  position: absolute;
  inset: 0;
  background: url("./assets/featured.png") center 28% / cover no-repeat;
  transform: scale(1.04);
  animation: slowZoom 16s ease-in-out infinite alternate;
}
.feature__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(251, 246, 240, 0.12) 0%, rgba(230, 216, 198, 0.32) 55%, rgba(214, 196, 173, 0.55) 100%),
    radial-gradient(120% 80% at 50% 100%, rgba(246, 211, 216, 0.35), transparent 60%);
}
.feature__shine {
  position: absolute;
  top: -60%;
  left: -40%;
  width: 60%;
  height: 220%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: rotate(8deg);
  animation: shimmer 5.5s ease-in-out infinite;
  pointer-events: none;
}
.feature__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--ink);
}
.feature__lock {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--pink-ink);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 22px -10px rgba(160, 110, 120, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.feature__title {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 9vw, 2.6rem);
  color: #fff;
  text-shadow: 0 2px 20px rgba(120, 80, 70, 0.45);
}
.feature__sub {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}
.feature:hover { transform: translateY(-4px) scale(1.015); box-shadow: 0 40px 60px -28px rgba(140, 100, 90, 0.7); }
.feature:active { transform: scale(0.99); }

/* CTA */
.cta {
  position: relative;
  margin-top: 22px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 19px 26px;
  border-radius: 22px;
  text-decoration: none;
  overflow: hidden;
  color: #7a4a52;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, #ffffff 0%, var(--blush-soft) 45%, var(--blush) 100%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 16px 30px -14px rgba(214, 150, 160, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.95), inset 0 -8px 16px -10px rgba(214, 150, 160, 0.5);
  animation: pulse 2.8s ease-in-out infinite;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.cta__shine {
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.85), transparent);
  transform: skewX(-18deg);
  animation: ctaShine 4.5s ease-in-out infinite;
}
.cta__lock { display: grid; place-items: center; color: var(--pink-ink); }
.cta__label { position: relative; }
.cta:hover { transform: translateY(-2px); box-shadow: 0 22px 38px -14px rgba(214, 150, 160, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.95); }
.cta:active { transform: scale(0.98); }

.footnote {
  margin-top: 26px;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  text-align: center;
}

/* ---------- AGE GATE ---------- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 26px;
}
.age-gate[hidden] { display: none; }
.age-gate__overlay {
  position: absolute;
  inset: 0;
  background: rgba(243, 232, 219, 0.55);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}
.age-gate__modal {
  position: relative;
  width: 100%;
  max-width: 380px;
  padding: 38px 30px 30px;
  text-align: center;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(26px) saturate(1.5);
  -webkit-backdrop-filter: blur(26px) saturate(1.5);
  box-shadow: 0 40px 80px -30px rgba(150, 110, 100, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  animation: pop 0.7s var(--ease) both;
}
.age-gate__badge {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 50%;
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  color: var(--pink-ink);
  background: linear-gradient(180deg, #fff, var(--blush-soft));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 #fff, 0 10px 20px -10px rgba(214, 150, 160, 0.7);
}
.age-gate__badge span { font-size: 0.9rem; }
.age-gate__title {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 1.7rem;
  color: var(--ink);
}
.age-gate__body {
  margin: 12px auto 26px;
  max-width: 30ch;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink-soft);
}
.age-gate__actions { display: flex; flex-direction: column; gap: 12px; }

.btn-glass {
  display: block;
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 18px;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.btn-glass--solid {
  color: #7a4a52;
  background: linear-gradient(180deg, #fff, var(--blush) 120%);
  box-shadow: 0 14px 26px -12px rgba(214, 150, 160, 0.8), inset 0 1px 0 #fff;
}
.btn-glass--solid:hover { transform: translateY(-2px); box-shadow: 0 20px 32px -12px rgba(214, 150, 160, 0.9), inset 0 1px 0 #fff; }
.btn-glass--solid:active { transform: scale(0.97); }
.btn-glass--ghost {
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.btn-glass--ghost:hover { background: rgba(255, 255, 255, 0.6); }

/* ---------- KEYFRAMES ---------- */
@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes pop { from { opacity: 0; transform: translateY(18px) scale(0.96); } to { opacity: 1; transform: none; } }
@keyframes slowZoom { from { transform: scale(1.04); } to { transform: scale(1.16); } }
@keyframes floatShadow {
  0%, 100% { transform: translateY(0); box-shadow: 0 30px 50px -28px rgba(140, 100, 90, 0.55); }
  50% { transform: translateY(-6px); box-shadow: 0 42px 60px -30px rgba(140, 100, 90, 0.45); }
}
@keyframes shimmer {
  0% { left: -50%; }
  55%, 100% { left: 130%; }
}
@keyframes ctaShine {
  0% { left: -120%; }
  60%, 100% { left: 130%; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 16px 30px -14px rgba(214, 150, 160, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 0 0 0 rgba(239, 185, 194, 0.45); }
  50% { box-shadow: 0 16px 30px -14px rgba(214, 150, 160, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 0 0 12px rgba(239, 185, 194, 0); }
}

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