/* ==================== TOKENS ==================== */
:root {
  --bg: #0f0509;
  --bg-warm: #1a0b10;
  --surface: #200d17;
  --surface-2: #2d1020;
  --gold: #c8a35a;
  --gold-dim: #8a6e3a;
  --cream: #faf4ec;
  --cream-dim: #c4b8a8;
  --wine: #6b1d2a;
  --accent: #8b1a2e;
  --text: #f0e8e0;
  --text-muted: #a89888;
  --border: rgba(200, 163, 90, 0.18);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ==================== TYPOGRAPHY ==================== */
.section__label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

/* ==================== NAV ==================== */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 4rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(15, 5, 9, 0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.nav__brand { display: flex; align-items: center; gap: 0.6rem; }

.nav__logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.nav__tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(107, 29, 42, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 70% 30%, rgba(200, 163, 90, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 5rem;
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.4rem;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.8rem;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__lede {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 42ch;
  line-height: 1.7;
  margin-bottom: 2.4rem;
}

.hero__pulse {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  color: var(--gold-dim);
  letter-spacing: 0.03em;
}

.hero__pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wine);
  box-shadow: 0 0 0 0 rgba(139, 26, 46, 0.6);
  animation: pulse-ring 2s ease-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(139, 26, 46, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(139, 26, 46, 0); }
  100% { box-shadow: 0 0 0 0 rgba(139, 26, 46, 0); }
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__scene {
  width: 100%;
  height: 100%;
  min-height: 600px;
  background: linear-gradient(160deg, #0a0406 0%, #1a0b10 40%, #2d1020 70%, #1a080e 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__scene::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 30% 50% at 50% 80%, rgba(200, 163, 90, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 80% 40% at 50% 20%, rgba(107, 29, 42, 0.4) 0%, transparent 70%);
}

.hero__scene-rose {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: drift 8s ease-in-out infinite;
}

.hero__scene-rose--1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 26, 46, 0.7) 0%, transparent 70%);
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.hero__scene-rose--2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200, 163, 90, 0.3) 0%, transparent 70%);
  bottom: 25%;
  left: 15%;
  animation-delay: -4s;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-15px, 10px) scale(1.05); }
}

.hero__scene-light {
  position: absolute;
  width: 2px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, rgba(200, 163, 90, 0.4), transparent);
  left: 40%;
  top: 20%;
  transform: rotate(15deg);
}

.hero__scene-ink {
  position: absolute;
  width: 60%;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(200, 163, 90, 0.25), transparent);
  bottom: 35%;
  left: 20%;
}

.hero__scene-text {
  position: relative;
  z-index: 2;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: rgba(200, 163, 90, 0.5);
  text-align: center;
  line-height: 1.8;
  padding: 0 2rem;
}

/* ==================== STORYTELLING (opportunity) ==================== */
.storytelling {
  padding: 7rem 5rem;
  background: var(--bg-warm);
  position: relative;
}

.storytelling::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
  opacity: 0.4;
}

.storytelling__inner {
  max-width: 900px;
  margin: 0 auto;
}

.storytelling__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1.6rem;
  letter-spacing: -0.01em;
}

.storytelling__body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  max-width: 65ch;
}

.storytelling__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  border: 1px solid var(--border);
}

.storytelling__stat {
  padding: 2rem 2.5rem;
  border-right: 1px solid var(--border);
}

.storytelling__stat:last-child { border-right: none; }

.storytelling__stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.storytelling__stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* ==================== MANIFESTO ==================== */
.manifesto {
  padding: 8rem 5rem;
  background: var(--bg);
  text-align: center;
  position: relative;
}

.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(107, 29, 42, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.manifesto__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }

.manifesto__quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 1.2rem;
}

.manifesto__attr {
  font-size: 0.72rem;
  color: var(--gold-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.manifesto__divider {
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
  margin: 0 auto 3rem;
}

.manifesto__genres {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.8rem;
  align-items: center;
}

.manifesto__genres span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.manifesto__sep { color: var(--gold-dim); font-size: 0.7rem; }

/* ==================== FORMAT (how it works) ==================== */
.format {
  padding: 7rem 5rem;
  background: var(--surface);
}

.format__inner { max-width: 1000px; margin: 0 auto; }

.format__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.format__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.format__step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  position: relative;
}

.format__step:last-child { border-right: none; }

.format__step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: linear-gradient(to right, var(--wine), var(--gold-dim));
  opacity: 0;
  transition: opacity 0.3s;
}

.format__step:hover::before { opacity: 1; }

.format__step-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-dim);
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.format__step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.format__step-body {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==================== VISION ==================== */
.vision {
  padding: 8rem 5rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.vision::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(107, 29, 42, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.vision__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.vision__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.vision__body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.vision__seal {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.vision__seal-mark {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.05em;
  opacity: 0.6;
}

.vision__seal-text {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* ==================== FOOTER ==================== */
.footer {
  padding: 3rem 5rem;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--cream);
  display: block;
  margin-bottom: 0.3rem;
}

.footer__tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer__meta p {
  font-size: 0.75rem;
  color: var(--gold-dim);
  letter-spacing: 0.06em;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
  .nav { padding: 1.2rem 2rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__content { padding: 4rem 2rem; }
  .hero__visual { min-height: 320px; }
  .storytelling, .manifesto, .format, .vision { padding: 5rem 2rem; }
  .storytelling__stats { grid-template-columns: 1fr; }
  .storytelling__stat { border-right: none; border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
  .storytelling__stat:last-child { border-bottom: none; }
  .format__grid { grid-template-columns: 1fr 1fr; }
  .format__step { border-bottom: 1px solid var(--border); }
  .format__step:nth-child(even) { border-right: none; }
  .format__step:last-child { border-bottom: none; }
  .footer__inner { flex-direction: column; gap: 1.5rem; text-align: center; }
}

@media (max-width: 600px) {
  .format__grid { grid-template-columns: 1fr; }
  .format__step { border-right: none; }
  .hero__title { font-size: 2.4rem; }
}