/* ZINAAA — it's implied. */
/* Ultra premium. Black. Clean. Marilyn. */

:root {
  --black: #0A0A0A;
  --white: #FFFFFF;
  --off-white: #F5F0EB;
  --charcoal: #1A1A1A;
  --gold: #C9A84C;
  --red-lip: #CC0000;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── HERO ─────────────────────────────────── */

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

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  z-index: 1;
}

/* ─── SILHOUETTE ────────────────────────────── */

.silhouette-wrap {
  width: 200px;
  height: 325px;
  opacity: 0;
  transform: translateY(20px);
  animation: silhouette-enter 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.marilyn {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 40px rgba(255,255,255,0.06));
}

/* Skirt lift animation */
.skirt-left {
  transform-origin: 100px 320px;
  animation: skirt-lift-left 3s ease-in-out 1.8s infinite alternate;
}
.skirt-right {
  transform-origin: 220px 320px;
  animation: skirt-lift-right 3s ease-in-out 1.8s infinite alternate;
}

@keyframes skirt-lift-left {
  0% { transform: rotate(0deg) translateX(0); opacity: 1; }
  50% { transform: rotate(-18deg) translateX(-8px); opacity: 0.9; }
  100% { transform: rotate(0deg) translateX(0); opacity: 1; }
}
@keyframes skirt-lift-right {
  0% { transform: rotate(0deg) translateX(0); opacity: 1; }
  50% { transform: rotate(18deg) translateX(8px); opacity: 0.9; }
  100% { transform: rotate(0deg) translateX(0); opacity: 1; }
}

@keyframes silhouette-enter {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── WORDMARK ──────────────────────────────── */

.wordmark {
  opacity: 0;
  animation: fade-up 1s ease 1.2s forwards;
}

.logo-text {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--white);
  line-height: 1;
}

/* ─── TAGLINE ───────────────────────────────── */

.tagline {
  opacity: 0;
  animation: fade-up 1s ease 1.6s forwards;
}

.tagline-inner {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--off-white);
  letter-spacing: 0.06em;
}

/* ─── CTA ───────────────────────────────────── */

.cta-wrap {
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  animation: fade-up 1s ease 2s forwards;
}

.cta-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.cta-btn:hover {
  color: var(--black);
  border-color: var(--white);
}

.cta-btn:hover::before { transform: scaleX(1); }

.cta-btn.large {
  padding: 1.2rem 3rem;
  font-size: 0.9rem;
}

.cta-sub {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ─── SCROLL HINT ───────────────────────────── */

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fade-up 1s ease 2.4s forwards;
}

.scroll-hint span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  margin: 0 auto;
  animation: scroll-line 2s ease-in-out 3s infinite;
}

@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(0.5); opacity: 0.1; }
}

/* ─── BLACK PAGES ───────────────────────────── */

.black-page {
  background: var(--black);
  padding: 8rem 2rem;
  text-align: center;
}

.black-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.black-headline em {
  font-style: italic;
  color: var(--off-white);
}

.black-body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

.black-body em {
  color: var(--off-white);
  font-style: italic;
}

/* ─── STATEMENT ─────────────────────────────── */

.statement {
  padding: 10rem 2rem;
  text-align: center;
}

.statement-inner { max-width: 800px; margin: 0 auto; }

.statement-line {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.4;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}

.statement-line.accent {
  color: var(--white);
  font-style: italic;
}

/* ─── WHAT IT IS ────────────────────────────── */

.what-it-is {
  padding: 8rem 2rem;
  background: var(--charcoal);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem;
}

.what-item { text-align: center; }

.what-number {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.25);
  margin-bottom: 1rem;
}

.what-item h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--white);
}

.what-item p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}

/* ─── FOR WOMEN ─────────────────────────────── */

.for-women { border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }

/* ─── FOR EVERYONE ──────────────────────────── */

.for-everyone {
  padding: 8rem 2rem;
  background: var(--black);
  text-align: center;
}

.everyone-intro {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 700px;
  margin: 0 auto 3rem;
}

.faith-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.faith-row span {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.everyone-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.4);
}

/* ─── NAME STATEMENT ────────────────────────── */

.name-statement { padding: 12rem 2rem; }

.name-big {
  font-size: clamp(5rem, 15vw, 12rem) !important;
  letter-spacing: 0.1em;
  margin-bottom: 3rem !important;
}

/* ─── EARLY ACCESS ──────────────────────────── */

.early-access {
  padding: 8rem 2rem;
  text-align: center;
  background: var(--charcoal);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.already {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

/* ─── FOOTER ────────────────────────────────── */

.footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.15);
  width: 100%;
  text-align: center;
  margin-top: 1rem;
}

/* ─── ANIMATIONS ────────────────────────────── */

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── INTERSECTION OBSERVER REVEALS ─────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── MOBILE ────────────────────────────────── */

@media (max-width: 768px) {
  .silhouette-wrap { width: 150px; height: 244px; }
  .what-grid { gap: 3rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .name-big { font-size: clamp(4rem, 20vw, 8rem) !important; }
}
