:root {
  --bg: #faf7f2;
  --fg: #1a1a1a;
  --fg-muted: #6b5e4e;
  --accent: #c84b31;
  --accent-dark: #a83a24;
  --green: #2d5a4a;
  --green-light: #3a7a5e;
  --cream: #f0ebe0;
  --white: #ffffff;
}

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

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

/* Navigation */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid rgba(26,26,26,0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* Hero */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 48px;
  font-weight: 300;
}
.hero-proof {
  display: flex;
  gap: 32px;
}
.hero-stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 2px;
  line-height: 1.3;
}
.hero-right { display: flex; align-items: center; justify-content: center; }
.calendar-illustration { width: 100%; max-width: 380px; }
.calendar-illustration svg { width: 100%; height: auto; }

/* Proof bar */
.proofbar {
  background: var(--green);
  padding: 40px 48px;
}
.proofbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.proofbar-label {
  font-size: 13px;
  color: rgba(250,247,242,0.6);
  font-weight: 400;
  white-space: nowrap;
}
.proofbar-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}
.proof-stat { display: flex; flex-direction: column; }
.proof-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--bg);
  line-height: 1;
}
.proof-label {
  font-size: 12px;
  color: rgba(250,247,242,0.65);
  margin-top: 4px;
  line-height: 1.4;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(250,247,242,0.2);
}

/* Section typography */
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--fg);
}

/* What we do */
.whatwedo {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px;
}
.whatwedo-header { margin-bottom: 56px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(26,26,26,0.08);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26,26,26,0.08);
}
.service-card--accent {
  background: var(--green);
  border-color: var(--green);
}
.service-card--tall { grid-row: span 1; }
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card--accent .service-icon { background: rgba(250,247,242,0.1); }
.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.service-card--accent .service-title { color: var(--bg); }
.service-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.service-card--accent .service-desc { color: rgba(250,247,242,0.75); }

/* Niches */
.niches {
  background: var(--cream);
  padding: 100px 48px;
}
.niches > * {
  max-width: 1200px;
  margin: 0 auto;
}
.niches {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.niches-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-top: 20px;
}
.niche-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(26,26,26,0.06);
  margin-bottom: 16px;
  transition: transform 0.15s ease;
}
.niche-card:hover { transform: translateX(4px); }
.niche-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.niche-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}
.niche-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* Manifesto */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  padding: 100px 48px;
}
.manifesto-inner { max-width: 900px; margin: 0 auto; }
.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: var(--bg);
  margin-bottom: 32px;
  border-left: 4px solid var(--accent);
  padding-left: 28px;
}
.manifesto-body {
  font-size: 17px;
  color: rgba(250,247,242,0.65);
  line-height: 1.75;
  max-width: 700px;
  margin-bottom: 64px;
}
.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid rgba(250,247,242,0.1);
  padding-top: 48px;
}
.mstat {}
.mstat-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.mstat-desc {
  font-size: 13px;
  color: rgba(250,247,242,0.55);
  line-height: 1.5;
}

/* Closing */
.closing {
  padding: 100px 48px;
  background: var(--bg);
}
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 64px;
  letter-spacing: -1px;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}
.timeline-item {
  padding-top: 24px;
  border-top: 2px solid var(--accent);
}
.timeline-week {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.timeline-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.timeline-content p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}
.closing-vision {
  background: var(--green);
  border-radius: 16px;
  padding: 40px 48px;
  display: flex;
  gap: 48px;
  align-items: center;
}
.closing-vision h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--bg);
  white-space: nowrap;
}
.closing-vision p {
  font-size: 16px;
  color: rgba(250,247,242,0.8);
  line-height: 1.65;
}

/* Footer */
.footer {
  background: var(--cream);
  padding: 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--fg);
  display: block;
  margin-bottom: 8px;
}
.footer-desc {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-note {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 60px 32px 48px; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .niches { grid-template-columns: 1fr; gap: 48px; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .manifesto-stats { grid-template-columns: 1fr; gap: 24px; }
  .closing-vision { flex-direction: column; }
  .proofbar-inner { flex-direction: column; gap: 24px; }
  .proofbar-stats { gap: 24px; }
  .footer-inner { flex-direction: column; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .hero-proof { gap: 20px; }
  .nav { padding: 20px 24px; }
  .proofbar, .whatwedo, .niches, .manifesto, .closing { padding: 64px 24px; }
}