:root {
  --bg: #0e0c0a;
  --bg-2: #1a1714;
  --bg-3: #2a2520;
  --fg: #f0ebe3;
  --fg-muted: #9a9285;
  --accent: #c8974a;
  --accent-2: #e8c07d;
  --font-display: 'Cormorant Garamond', 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;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 6rem 6rem;
  gap: 4rem;
  border-bottom: 1px solid rgba(200, 151, 74, 0.12);
}
.hero-inner { max-width: 560px; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.eyebrow-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 2rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 2.5rem;
}
.hero-tagline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.tagline-mark { color: var(--accent); }
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.razor-silhouette {
  width: 160px;
  height: 340px;
  filter: drop-shadow(0 20px 60px rgba(200, 151, 74, 0.15));
}
.razor-silhouette svg { width: 100%; height: 100%; }

/* MANIFESTO */
.manifesto {
  padding: 8rem 6rem;
  background: var(--bg-2);
  border-bottom: 1px solid rgba(200, 151, 74, 0.12);
}
.manifesto-inner { max-width: 900px; }
.manifesto-label, .section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 2rem;
  max-width: 700px;
}
.manifesto-body p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 680px;
}
.manifesto-stat-row {
  display: flex;
  gap: 4rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(200, 151, 74, 0.15);
}
.manifesto-stat { display: flex; flex-direction: column; gap: 0.5rem; }
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* INSTRUMENT */
.instrument {
  padding: 8rem 6rem;
  background: var(--bg);
  border-bottom: 1px solid rgba(200, 151, 74, 0.12);
}
.instrument-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.material-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.chip {
  background: var(--bg-2);
  border: 1px solid rgba(200, 151, 74, 0.2);
  border-radius: 4px;
  padding: 1.25rem;
}
.chip-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}
.chip-value {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg);
}
.instrument-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.instrument-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.instrument-tagline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.tag {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(200, 151, 74, 0.3);
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
}

/* SUBSCRIPTION */
.subscription {
  padding: 8rem 6rem;
  background: var(--bg-2);
  border-bottom: 1px solid rgba(200, 151, 74, 0.12);
}
.subscription-inner { max-width: 700px; }
.subscription-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.subscription-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.subscription-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}
.subscription-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--fg-muted);
}
.feature-icon {
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  font-weight: bold;
}
.subscription-price {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--fg);
}
.price-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* VISION */
.vision {
  padding: 8rem 6rem;
  background: var(--bg);
  text-align: center;
}
.vision-inner { max-width: 700px; margin: 0 auto; }
.vision-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--fg);
  margin-bottom: 2.5rem;
}
.vision-sub p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* FOOTER */
.footer {
  padding: 3rem 6rem;
  background: var(--bg);
  border-top: 1px solid rgba(200, 151, 74, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--fg);
  letter-spacing: 0.05em;
}
.footer-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}
.footer-note {
  font-size: 0.7rem;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 6rem 2.5rem 4rem;
    text-align: center;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-headline { font-size: 3.5rem; }
  .hero-sub { max-width: 100%; }
  .hero-tagline { justify-content: center; }
  .hero-visual { display: none; }
  .manifesto, .instrument, .subscription, .vision { padding: 5rem 2.5rem; }
  .manifesto-stat-row { flex-direction: column; gap: 2rem; }
  .instrument-inner { grid-template-columns: 1fr; gap: 3rem; }
  .material-chips { grid-template-columns: 1fr 1fr; }
  .footer { padding: 2rem 2.5rem; flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 480px) {
  .hero { padding: 5rem 1.5rem 3rem; }
  .manifesto, .instrument, .subscription, .vision { padding: 4rem 1.5rem; }
  .hero-headline { font-size: 2.8rem; }
  .material-chips { grid-template-columns: 1fr; }
  .manifesto-stat-row { gap: 1.5rem; }
}
