@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --ink: #17202a;
  --muted: #667085;
  --line: #e5e7eb;
  --paper: #ffffff;
  --soft: #f5f6f8;
  --accent: #9a6a24;
  --dark: #101820;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.7;
}
.container { width: min(1120px, calc(100% - 40px)); margin: auto; }
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; }
.brand { color: var(--ink); text-decoration: none; font-weight: 700; font-size: 1.25rem; letter-spacing: .08em; }
.brand span { color: var(--accent); }
nav { display: flex; gap: 28px; }
nav a { color: var(--ink); text-decoration: none; font-size: .9rem; }
nav a:hover { color: var(--accent); }
.menu-toggle { display: none; border: 0; background: none; font-size: 1.5rem; }

.hero { padding: 110px 0 100px; background: linear-gradient(135deg, #f7f8fa 0%, #fff 60%); }
.hero-grid { display: grid; grid-template-columns: 1.45fr .75fr; gap: 70px; align-items: center; }
.eyebrow { margin: 0 0 18px; color: var(--accent); font-size: .76rem; font-weight: 700; letter-spacing: .16em; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; line-height: 1.15; }
h1 { font-size: clamp(2.7rem, 6vw, 5.3rem); margin: 0 0 26px; max-width: 850px; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); margin: 0 0 22px; }
h3 { line-height: 1.25; margin: 10px 0; }
.hero-copy { max-width: 680px; font-size: 1.12rem; color: #4b5563; }
.actions, .contact-links { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.button { display: inline-block; padding: 12px 20px; text-decoration: none; border-radius: 4px; font-weight: 600; }
.primary { background: var(--ink); color: white; }
.secondary { border: 1px solid #cfd3d8; color: var(--ink); background: white; }
.hero-card { padding: 42px; background: var(--dark); color: white; border-radius: 6px; box-shadow: 0 25px 70px rgba(16,24,32,.14); }
.initials { font-family: "Playfair Display", Georgia, serif; font-size: 4rem; color: #d9b27a; }
.hero-card p { font-size: 1.05rem; }

.section { padding: 100px 0; }
.muted { background: var(--soft); }
.two-col { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.body-copy { color: #4b5563; font-size: 1.04rem; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.cards article { background: white; padding: 28px; border: 1px solid var(--line); min-height: 210px; }
.cards span { color: var(--accent); font-weight: 700; font-size: .8rem; }
.cards p, .insight-grid p { color: var(--muted); margin-bottom: 0; }
.section-intro { color: var(--muted); max-width: 650px; }
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 42px; }
.insight-grid article { border-top: 2px solid var(--ink); padding-top: 22px; }
.tag { font-size: .72rem; letter-spacing: .12em; font-weight: 700; color: var(--accent) !important; }
.dark { background: var(--dark); color: white; }
.dark .eyebrow { color: #d9b27a; }
.leadership-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; }
.leadership-grid p:last-child { color: #d0d5db; font-size: 1.05rem; }
.contact { text-align: center; max-width: 760px; }
.contact-links { justify-content: center; }
.note { font-size: .8rem; color: var(--muted); margin-top: 25px; }
footer { border-top: 1px solid var(--line); padding: 25px 0; font-size: .82rem; color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; }
footer a { color: var(--ink); text-decoration: none; }

@media (max-width: 800px) {
  .container { width: min(100% - 28px, 680px); }
  .hero { padding: 75px 0; }
  .hero-grid, .two-col, .leadership-grid { grid-template-columns: 1fr; gap: 45px; }
  .cards, .insight-grid { grid-template-columns: 1fr; }
  nav { display: none; position: absolute; top: 72px; left: 0; right: 0; padding: 18px 20px; background: white; border-bottom: 1px solid var(--line); flex-direction: column; gap: 16px; }
  nav.open { display: flex; }
  .menu-toggle { display: block; }
  .section { padding: 75px 0; }
  .footer-inner { flex-direction: column; }
}
