:root {
  --bg: #f8f4ef;
  --bg-dark: #0d1f0d;
  --fg: #0d1f0d;
  --fg-light: #f8f4ef;
  --accent: #c49a3c;
  --muted: #8a7d6a;
  --border: rgba(13, 31, 13, 0.12);
}

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

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

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--fg-light);
  letter-spacing: 0.08em;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--bg-dark);
  display: flex;
  align-items: flex-end;
  padding: 0 3rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 40%, rgba(196, 154, 60, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 80% 80% at 20% 80%, rgba(196, 154, 60, 0.05) 0%, transparent 60%);
}

.hero-inner {
  position: relative;
  max-width: 900px;
}

.hero-overline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--fg-light);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1.125rem;
  color: rgba(248, 244, 239, 0.65);
  max-width: 520px;
  line-height: 1.7;
}

/* STATS */
.stats {
  background: var(--bg-dark);
  border-top: 1px solid rgba(248, 244, 239, 0.08);
  padding: 4rem 3rem;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 1rem 2rem;
}

.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(248, 244, 239, 0.5);
  line-height: 1.5;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(248, 244, 239, 0.1);
}

/* FEATURES */
.features {
  background: var(--bg);
  padding: 8rem 3rem;
}

.features-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-card {
  padding: 3.5rem;
}

.feature-card--dark {
  background: var(--bg-dark);
  color: var(--fg-light);
}

.feature-card--light {
  background: #f0ebe3;
}

.feature-icon {
  margin-bottom: 2rem;
}

.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: inherit;
}

.feature-body {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(13, 31, 13, 0.7);
}

.feature-card--dark .feature-body {
  color: rgba(248, 244, 239, 0.6);
}

/* COLLECTOR */
.collector {
  background: var(--bg-dark);
  padding: 8rem 3rem;
}

.collector-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.collector-text .section-eyebrow {
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.collector-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg-light);
  margin-bottom: 2rem;
}

.collector-body {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(248, 244, 239, 0.6);
  margin-bottom: 1.25rem;
}

.list-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 244, 239, 0.4);
  margin-bottom: 1.5rem;
}

.collector-items {
  list-style: none;
}

.collector-items li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(248, 244, 239, 0.75);
  line-height: 1.6;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(248, 244, 239, 0.08);
}

.item-check {
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* PROCESS */
.process {
  background: var(--bg);
  padding: 8rem 3rem;
}

.process-header {
  text-align: center;
  margin-bottom: 5rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  position: relative;
}

.step-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(13, 31, 13, 0.1);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.step-body {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--muted);
}

/* CLOSING */
.closing {
  background: var(--bg-dark);
  padding: 8rem 3rem;
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(248, 244, 239, 0.8);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.closing-attr {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 244, 239, 0.4);
  margin-bottom: 4rem;
}

.closing-divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 4rem;
  opacity: 0.5;
}

.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--fg-light);
}

/* FOOTER */
.footer {
  background: #071207;
  padding: 4rem 3rem 3rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(248, 244, 239, 0.5);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(248, 244, 239, 0.3);
  margin-bottom: 2rem;
}

.footer-legal {
  font-size: 0.7rem;
  color: rgba(248, 244, 239, 0.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 1.25rem 1.5rem; }
  .hero { padding: 0 1.5rem 4rem; }
  .hero-headline { font-size: clamp(3rem, 12vw, 4rem); }
  .stats { padding: 3rem 1.5rem; }
  .stats-inner { flex-direction: column; gap: 2rem; }
  .stat-divider { width: 60px; height: 1px; }
  .features { padding: 5rem 1.5rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .collector { padding: 5rem 1.5rem; }
  .collector-inner { grid-template-columns: 1fr; gap: 3rem; }
  .process { padding: 5rem 1.5rem; }
  .process-steps { grid-template-columns: 1fr; gap: 3rem; }
  .closing { padding: 5rem 1.5rem; }
  .footer { padding: 3rem 1.5rem 2rem; }
  .feature-card { padding: 2.5rem; }
}
