/* ─── Variables ─── */
:root {
  --bg: #faf8f4;
  --bg-alt: #f2efe9;
  --fg: #1a1a1a;
  --fg-muted: #6b6560;
  --accent: #c4532b;
  --accent-warm: #e8834a;
  --charcoal: #1a1a1a;
  --cream: #faf8f4;
  --border: #e0dbd3;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg); font-family: var(--sans); font-size: 16px; line-height: 1.6; }
img, svg { display: block; max-width: 100%; }

/* ─── Nav ─── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
}
.nav-brand { font-family: var(--sans); font-weight: 500; font-size: 0.75rem; letter-spacing: 0.2em; color: var(--charcoal); }
.nav-tagline { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.12em; color: var(--fg-muted); text-transform: uppercase; }

/* ─── Hero ─── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}
.hero-left {
  background: var(--charcoal);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 3rem;
  position: relative;
  overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(196, 83, 43, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 2.5rem;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}
.hero-headline em { font-style: italic; color: var(--accent-warm); }
.hero-sub {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(250, 248, 244, 0.7);
  max-width: 36ch;
}
.hero-right {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}
.hero-visual { width: 100%; max-width: 400px; }

/* ─── Design Frame (Mockup) ─── */
.design-frame {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}
.frame-label {
  background: var(--accent);
  color: white;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  padding: 0.6rem 1rem;
  font-weight: 500;
}
.frame-content { padding: 1.5rem; }
.design-swatch {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, #2a2a2a 0%, #3d2a1f 40%, #c4532b 100%);
  border-radius: 2px;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}
.design-swatch::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 6px,
    rgba(255,255,255,0.04) 6px,
    rgba(255,255,255,0.04) 8px
  );
}
.design-prompt {
  font-size: 0.8rem;
  color: rgba(250,248,244,0.6);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.design-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tag {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.6rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  color: rgba(250,248,244,0.5);
}
.frame-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(196, 83, 43, 0.12);
  font-size: 0.75rem;
  color: var(--accent-warm);
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-warm);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ─── Manifesto ─── */
.manifesto { background: var(--bg-alt); padding: 6rem 3rem; }
.manifesto-inner { max-width: 760px; margin: 0 auto; }
.manifesto-quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--charcoal);
  margin-bottom: 3rem;
  border-left: 3px solid var(--accent);
  padding-left: 2rem;
}
.manifesto-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}

/* ─── Pillars ─── */
.pillars { padding: 5rem 3rem; }
.pillars-header { text-align: center; margin-bottom: 3.5rem; }
.pillars-header h2 {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.pillar {
  background: var(--bg);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
}
.pillar:hover { background: #fdfcf9; }
.pillar-icon {
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.pillar p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--fg-muted);
}

/* ─── Creators ─── */
.creators { background: var(--charcoal); color: var(--cream); padding: 5rem 3rem; }
.creators-content { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.creators-text h2 {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.creators-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(250,248,244,0.65);
}
.creators-stats { display: flex; flex-direction: column; gap: 2.5rem; }
.stat { border-left: 2px solid var(--accent); padding-left: 1.5rem; }
.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.5);
  margin-top: 0.4rem;
  display: block;
}

/* ─── Closer ─── */
.closer {
  padding: 7rem 3rem;
  text-align: center;
  background: var(--bg);
}
.closer-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}
.closer-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Footer ─── */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 3rem;
  text-align: center;
}
.footer-brand {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.footer-tag { font-size: 0.8rem; color: var(--fg-muted); margin-bottom: 0.25rem; }
.footer-copy { font-size: 0.75rem; color: var(--fg-muted); }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 3rem 1.5rem 2.5rem; min-height: auto; }
  .hero-headline { font-size: 3.5rem; }
  .hero-right { padding: 2rem 1.5rem; }
  .hero-visual { max-width: 100%; }
  .manifesto { padding: 4rem 1.5rem; }
  .pillars { padding: 4rem 1.5rem; }
  .creators { padding: 4rem 1.5rem; }
  .creators-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .closer { padding: 5rem 1.5rem; }
  .footer { padding: 2rem 1.5rem; }
}