:root {
  --bg: #FAFAF7;
  --bg-dark: #0F0F12;
  --fg: #0F0F12;
  --fg-muted: #6B6B72;
  --fg-subtle: #9A9AA3;
  --accent: #C9A84C;
  --accent-light: #F0E6CC;
  --surface: #FFFFFF;
  --border: #E8E8E2;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 5%;
  border-bottom: 1px solid var(--border);
}
.nav__brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav__brand-accent { color: var(--accent); }
.nav__tagline {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  font-weight: 500;
}

/* HERO */
.hero {
  padding: 8rem 5% 6rem;
  max-width: 900px;
}
.hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 2rem;
  font-weight: 500;
}
.hero__headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 2.5rem;
}
.hero__sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 540px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 4rem;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.hero__stat {}
.hero__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.hero__stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--fg-subtle);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* PHILOSOPHY */
.philosophy {
  background: var(--bg-dark);
  color: #F0EDE8;
  padding: 7rem 5%;
}
.philosophy__inner { max-width: 820px; margin: 0 auto; }
.philosophy__label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.philosophy__statement {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #E8E4DC;
  margin-bottom: 0;
}
.philosophy__break {
  width: 48px;
  height: 1px;
  background: rgba(201,168,76,0.3);
  margin: 4rem 0;
}
.philosophy__statement--accent { color: #F5F0E4; }

/* FEATURES */
.features {
  padding: 7rem 5%;
  border-top: 1px solid var(--border);
}
.features__header { margin-bottom: 5rem; max-width: 680px; }
.features__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.features__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--fg);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.feature-card {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.feature-card--offset { background: var(--bg); }
.feature-card__icon {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.feature-card__body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* CLOSER */
.closer {
  background: #0F0F12;
  color: #F0EDE8;
  padding: 8rem 5%;
  text-align: center;
}
.closer__inner { max-width: 700px; margin: 0 auto; }
.closer__mark {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}
.closer__circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
}
.closer__headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #F5F0E4;
  margin-bottom: 1.5rem;
}
.closer__sub {
  font-size: 1rem;
  color: #8A8A95;
  font-weight: 300;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 5%;
  background: var(--bg);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.footer__brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.footer__brand-accent { color: var(--accent); }
.footer__tagline {
  font-size: 0.8rem;
  color: var(--fg-subtle);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer__meta {
  font-size: 0.75rem;
  color: var(--fg-subtle);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 5rem 5% 4rem; }
  .hero__headline { font-size: 2.75rem; }
  .hero__sub { font-size: 1rem; }
  .hero__stats { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .hero__stat-divider { display: none; }
  .features__grid { grid-template-columns: 1fr; }
  .philosophy { padding: 5rem 5%; }
  .closer { padding: 5rem 5%; }
  .footer__inner { flex-direction: column; gap: 0.75rem; text-align: center; }
  .nav__tagline { display: none; }
}
@media (max-width: 480px) {
  .hero__headline { font-size: 2.25rem; }
  .feature-card { padding: 2rem 1.5rem; }
}