:root {
  --bg: #F8F5F0;
  --surface: #FFFFFF;
  --primary: #1B3A2D;
  --primary-light: #2D5A42;
  --accent: #B85C38;
  --text: #1A1A1A;
  --text-muted: #5A5A5A;
  --border: #D8D3CB;
  --cream-dark: #EDE8DF;
}

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

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

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.hero-brand {
  padding: 48px 48px 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.wordmark-suffix {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-content {
  padding: 48px 48px 40px;
}

.hero-tag {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-aside {
  padding: 32px 48px 48px;
  border-top: 1px solid var(--border);
}

.stat-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* PHILOSOPHY */
.philosophy {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.quote-block blockquote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 32px;
  max-width: 720px;
}

.philosophy-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
}

.philosophy-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* SERVICES */
.services {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}

.section-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.service-card {
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--border);
  padding-right: 40px;
}

.service-card:first-child { padding-left: 0; }
.service-card:last-child { border-right: none; padding-right: 0; }

.service-number {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 400;
}

.service-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* BACKGROUND */
.background {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.background-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.background-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.affiliations-block {}

.affiliations-list {
  list-style: none;
  border-top: 1px solid var(--border);
  margin-top: 24px;
}

.affiliations-list li {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.affil-role {
  color: var(--text-muted);
  min-width: 140px;
  font-size: 13px;
}

.affil-name {
  color: var(--text);
  font-weight: 500;
}

.linkedin-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 2px;
}

/* CLOSING STATEMENT */
.closing-statement {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.closing-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 8px;
}

.contact-row {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.contact-email {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

.contact-locations {
  font-size: 14px;
  color: var(--text-muted);
}

/* FOOTER */
.site-footer {
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.footer-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

.footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-meta {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-meta a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-meta a:hover { color: var(--primary); }

.footer-sep { opacity: 0.5; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-brand,
  .hero-content,
  .hero-aside,
  .philosophy,
  .services,
  .background,
  .closing-statement,
  .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .philosophy-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
  }

  .service-card:last-child {
    border-bottom: none;
  }

  .background-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .stat-row {
    gap: 24px;
  }

  .site-footer {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 36px;
  }

  .closing-text {
    font-size: 22px;
  }
}