:root {
  --bg: #111110;
  --fg: #f4f0eb;
  --accent: #b8966a;
  --muted: #7a7068;
  --surface: #1c1a17;
  --border: #2a2724;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garant', serif;
  font-weight: 600;
  line-height: 1.15;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
  background: rgba(17,17,16,0.85);
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: 'Cormorant Garant', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.hero-image-wrap {
  position: relative;
  overflow: hidden;
}
.hero-image {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 60%, #8a6a4a 0%, transparent 60%),
    radial-gradient(ellipse at 70% 40%, #c4a47a 0%, transparent 50%),
    linear-gradient(160deg, #1a1510 0%, #2a2018 40%, #0e0c09 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17,17,16,0.3) 0%, rgba(17,17,16,0.8) 100%);
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 64px 80px 56px;
  position: relative;
  z-index: 2;
}
.hero-headline {
  font-size: clamp(52px, 6vw, 80px);
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 17px;
  color: rgba(244,240,235,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 420px;
}
.hero-rule {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 20px;
}
.hero-meta {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  max-width: 340px;
}

/* Features */
.features {
  padding: 120px 64px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 56px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
}
.feature { position: relative; }
.feature-num {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 16px;
}
.feature h3 {
  font-size: 26px;
  color: var(--fg);
  margin-bottom: 12px;
}
.feature p {
  font-size: 15px;
  color: rgba(244,240,235,0.6);
  line-height: 1.65;
}

/* Manifesto */
.manifesto {
  padding: 120px 64px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.manifesto-inner { max-width: 900px; margin: 0 auto; }
.manifesto-quote {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-style: italic;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 48px;
}
.manifesto-rule {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 32px;
}
.manifesto-body {
  font-size: 17px;
  color: rgba(244,240,235,0.65);
  line-height: 1.8;
  max-width: 680px;
}

/* Closing */
.closing {
  padding: 140px 64px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(38px, 5vw, 64px);
  color: var(--fg);
  margin-bottom: 28px;
  line-height: 1.2;
}
.closing-sub {
  font-size: 17px;
  color: rgba(244,240,235,0.6);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* Footer */
.footer {
  padding: 64px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand {
  font-family: 'Cormorant Garant', serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--fg);
  margin-bottom: 8px;
}
.footer-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.footer-note {
  font-size: 13px;
  color: rgba(244,240,235,0.4);
  max-width: 400px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-image-wrap { height: 50vw; }
  .hero-content { padding: 48px 24px; }
  .hero-headline { font-size: 40px; }
  .features { padding: 80px 24px; }
  .features-grid { grid-template-columns: 1fr; gap: 40px; }
  .manifesto { padding: 80px 24px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 48px 24px; }
}