/* FORGE — Dark luxury, cinematic, high-status */

:root {
  --bg-primary: #080808;
  --bg-secondary: #0f0f0f;
  --bg-panel: #111114;
  --accent: #e8a23c;
  --accent-dim: #b87c28;
  --text-primary: #f0ece6;
  --text-secondary: #8a8a96;
  --text-muted: #4a4a56;
  --steel: #3a3a4a;
  --border: rgba(255,255,255,0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Grain overlay */
.grain-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ─── Manifesto ─── */
.manifesto {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 80px 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.manifesto::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--accent);
}

.manifesto-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  font-weight: 600;
}

.manifesto-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.manifesto-headline em {
  font-style: italic;
  color: var(--accent);
}

.manifesto-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 440px;
  line-height: 1.7;
  font-weight: 300;
}

/* Hex grid */
.hex-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px;
}

.hex {
  height: 80px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  position: relative;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hex.h1 { background: var(--accent-dim); }
.hex.h3 { background: var(--accent); }
.hex.h5 { opacity: 0.6; }

.manifesto-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── What ─── */
.what {
  padding: 120px 80px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}

.what-tag {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 600;
}

.what-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 28px;
  max-width: 700px;
}

.what-body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
  font-weight: 300;
}

/* ─── Pillars ─── */
.pillars {
  padding: 120px 80px;
  border-bottom: 1px solid var(--border);
}

.pillars-header {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 60px;
  font-weight: 600;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.pillar {
  background: var(--bg-primary);
  padding: 48px 40px;
}

.pillar-num {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 600;
}

.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.pillar-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

/* ─── Aesthetic ─── */
.aesthetic {
  padding: 120px 80px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}

.aesthetic-tag {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 600;
}

.aesthetic-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 64px;
  max-width: 600px;
}

.aesthetic-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.panel {
  padding: 40px 36px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.panel::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.panel:hover::after {
  transform: scaleX(1);
}

.panel-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 600;
}

.panel p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

/* ─── Closing ─── */
.closing {
  padding: 120px 80px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 3px; height: 100%;
  background: var(--accent);
}

.closing-tag {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 600;
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
  max-width: 800px;
}

.closing-body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 60px;
}

.closing-stamp {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.12;
  letter-spacing: 0.1em;
  line-height: 1;
}

/* ─── Footer ─── */
.footer {
  padding: 60px 80px;
  background: var(--bg-primary);
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.footer-note {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .manifesto {
    grid-template-columns: 1fr;
    padding: 80px 40px 60px;
  }
  .manifesto-visual { display: none; }
  .what { padding: 80px 40px; }
  .pillars { padding: 80px 40px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .aesthetic { padding: 80px 40px; }
  .aesthetic-panels { grid-template-columns: 1fr; }
  .closing { padding: 80px 40px; }
  .footer { padding: 60px 40px; }
}

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

section {
  animation: fadeUp 0.8s ease forwards;
}

.manifesto { animation-delay: 0.1s; }
.what { animation-delay: 0.2s; }
.pillars { animation-delay: 0.3s; }
.aesthetic { animation-delay: 0.4s; }
.closing { animation-delay: 0.5s; }
.footer { animation-delay: 0.6s; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--steel); }

/* Selection */
::selection { background: var(--accent); color: var(--bg-primary); }