:root {
  --bg: #FAF8F5;
  --bg-alt: #F0EDE7;
  --fg: #2D2D2D;
  --fg-muted: #6B6B6B;
  --accent: #8BA888;
  --accent-dark: #6A8A68;
  --accent-pale: #E8EDE6;
  --border: #D8D3CB;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* Navigation */
.site-nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 300;
}

/* Hero */
.hero {
  padding: 80px 40px 100px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}
.hero-orb-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 280px;
}
.orb {
  position: absolute;
  border-radius: 50%;
}
.orb-1 {
  width: 220px; height: 220px;
  background: radial-gradient(circle at 40% 40%, var(--accent-pale), #D8E8D4);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.orb-2 {
  width: 160px; height: 160px;
  background: radial-gradient(circle at 35% 35%, #FAF8F5, #E0EDE0);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  box-shadow: 0 4px 40px rgba(139, 168, 136, 0.25);
}
.orb-3 {
  width: 100px; height: 100px;
  background: radial-gradient(circle at 40% 40%, var(--accent), var(--accent-dark));
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  opacity: 0.85;
}
.branch-lines {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200px; height: 200px;
}

/* Manifesto */
.manifesto {
  background: var(--fg);
  padding: 80px 40px;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 300;
  font-style: italic;
  color: #FAF8F5;
  line-height: 1.5;
  text-align: center;
  letter-spacing: -0.3px;
}

/* What We Do */
.what-we-do {
  padding: 90px 40px;
  background: var(--bg);
}
.wwd-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 48px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.card {
  padding: 36px 32px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(139, 168, 136, 0.15);
}
.card-icon {
  margin-bottom: 20px;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}
.card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Closing */
.closing {
  background: var(--accent-pale);
  padding: 100px 40px;
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 300;
  color: var(--fg);
  line-height: 1.6;
  margin-bottom: 48px;
  letter-spacing: -0.2px;
}
.closing-branch {
  display: flex;
  justify-content: center;
}
.closing-branch svg {
  width: 300px;
}

/* Footer */
footer {
  background: var(--fg);
  padding: 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #FAF8F5;
}
.footer-domain {
  font-size: 12px;
  color: #888;
}
.footer-note {
  font-size: 13px;
  color: #888;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-orb-container { height: 200px; }
  .cards { grid-template-columns: 1fr; gap: 20px; }
  .nav-tagline { display: none; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .hero { padding: 60px 24px 70px; }
  .manifesto { padding: 60px 24px; }
  .what-we-do { padding: 60px 24px; }
  .closing { padding: 60px 24px; }
}