:root {
  --bg: #0D0D0D;
  --bg-2: #141414;
  --fg: #F0EDE8;
  --fg-muted: #8A8680;
  --accent: #E8553A;
  --accent-glow: rgba(232, 85, 58, 0.15);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 8vw 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 80%, rgba(232,85,58,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(232,85,58,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fog-layer {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, rgba(240,237,232,0.03) 0%, transparent 60%);
  animation: drift 20s ease-in-out infinite;
}

.fog-2 { animation-delay: -7s; animation-duration: 26s; opacity: 0.6; }
.fog-3 { animation-delay: -13s; animation-duration: 33s; opacity: 0.4; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(2%, 1%) rotate(1deg); }
  50% { transform: translate(-1%, 2%) rotate(-0.5deg); }
  75% { transform: translate(1%, -1%) rotate(0.5deg); }
}

.hero-content { position: relative; z-index: 1; max-width: 800px; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 540px;
}

.hero-accent {
  position: absolute;
  right: 8vw;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1;
}

.accent-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.accent-text {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  writing-mode: vertical-rl;
}

/* ── NARRATIVES ───────────────────────────────── */
.narratives {
  padding: 120px 8vw;
  background: var(--bg-2);
  position: relative;
}

.narratives::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(232,85,58,0.3), transparent);
}

.narratives-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.narrative-card {
  padding: 48px 40px;
  background: var(--bg);
  position: relative;
  transition: background 0.3s ease;
}

.narrative-card:hover { background: #1A1A1A; }

.narrative-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.narrative-card:hover::before { transform: scaleX(1); }

.card-num {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(232,85,58,0.15);
  line-height: 1;
  margin-bottom: 24px;
}

.narrative-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.narrative-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── REPERTOIRE ──────────────────────────────── */
.repertoire {
  padding: 120px 8vw;
  position: relative;
}

.repertoire::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(232,85,58,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.repertoire-header { margin-bottom: 64px; }

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.repertoire-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(240,237,232,0.08);
}

.platform {
  padding: 40px 28px;
  background: var(--bg);
  transition: transform 0.3s ease;
}

.platform:hover { transform: translateY(-4px); }

.p-icon { margin-bottom: 20px; }

.platform h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.platform p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── MANIFESTO ───────────────────────────────── */
.manifesto {
  padding: 120px 8vw;
  background: var(--bg-2);
}

.manifesto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.manifesto-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--fg);
  border-left: 3px solid var(--accent);
  padding-left: 32px;
}

.manifesto-quote cite {
  display: block;
  margin-top: 20px;
  padding-left: 32px;
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-style: normal;
}

.manifesto-body p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ── CLOSING ─────────────────────────────────── */
.closing {
  padding: 140px 8vw;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(232,85,58,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner { position: relative; z-index: 1; }

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.closing > .closing-inner > p {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.closing-divider {
  width: 60px;
  height: 1px;
  background: rgba(232,85,58,0.4);
  margin: 0 auto 48px;
}

.closing-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 48px;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.closing-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--fg-muted);
}

/* ── FOOTER ──────────────────────────────────── */
.footer {
  padding: 48px 8vw;
  border-top: 1px solid rgba(240,237,232,0.08);
}

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

.footer-brand { display: flex; flex-direction: column; gap: 4px; }

.footer-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-style: italic;
}

.footer-meta p {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 768px) {
  .hero { padding: 60px 6vw 60px; }
  .hero-accent { display: none; }

  .narratives { padding: 80px 6vw; }
  .narratives-inner { grid-template-columns: 1fr; }

  .repertoire { padding: 80px 6vw; }
  .platform-grid { grid-template-columns: 1fr 1fr; }

  .manifesto { padding: 80px 6vw; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 48px; }

  .closing { padding: 100px 6vw; }
  .closing-stats { gap: 40px; }

  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .platform-grid { grid-template-columns: 1fr; }
  .closing-stats { flex-direction: column; gap: 32px; }
}