:root {
  --bg: #f4f0e7;
  --surface: #fffdf8;
  --text: #14221d;
  --muted: #5b6862;
  --accent: #23604e;
  --accent-dark: #174438;
  --line: #d7d1c5;
  --dark: #13201b;
  --dark-muted: #c5d0cb;
  --radius: 20px;
  --max: 1180px;
  --shadow: 0 22px 65px rgba(20, 34, 29, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
p, h1, h2, h3, dl { margin-top: 0; }
img { display: block; max-width: 100%; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-180%);
  background: var(--text);
  color: white;
  padding: 9px 13px;
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 240, 231, 0.94);
  border-bottom: 1px solid rgba(20, 34, 29, 0.08);
  backdrop-filter: blur(15px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  text-decoration: none;
  display: grid;
  line-height: 1.15;
}
.brand strong { letter-spacing: -0.015em; }
.brand span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
}

#site-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}
#site-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 750;
}
#site-nav a:hover { color: var(--accent); }

.nav-cta {
  border: 1px solid var(--text);
  padding: 8px 15px;
  border-radius: 999px;
}

.menu-button {
  display: none;
  border: 1px solid var(--text);
  border-radius: 999px;
  padding: 7px 12px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 750;
}

.hero { padding: 92px 0 72px; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(330px, 0.78fr);
  gap: 62px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.042em;
}

h1 {
  max-width: 14ch;
  margin-bottom: 28px;
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: 0.99;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.15rem, 4.5vw, 4rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.3;
  letter-spacing: -0.018em;
}

.lead {
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.32rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 33px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  background: var(--accent);
  color: white;
}
.button.primary:hover { background: var(--accent-dark); }

.button.secondary {
  border-color: var(--text);
  background: transparent;
}
.button.secondary:hover { background: rgba(20, 34, 29, 0.05); }

.decision-panel {
  padding: 30px;
  border: 1px solid rgba(20, 34, 29, 0.08);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.decision-panel ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.decision-panel li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.decision-panel li:first-child { border-top: 0; }
.decision-panel span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 850;
}
.decision-panel strong { font-size: 1.05rem; }

.metric-strip {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric-strip > div {
  padding: 22px 20px;
  border-left: 1px solid var(--line);
}
.metric-strip > div:first-child { border-left: 0; }
.metric-strip strong, .metric-strip span { display: block; }
.metric-strip strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
}
.metric-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.4;
}

.section { padding: 92px 0; }
.tinted { background: #e9e4d9; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 72px;
}

.body-copy { max-width: 68ch; }
.body-copy p {
  color: var(--muted);
  font-size: 1.07rem;
}

.principle {
  margin-top: 26px;
  border-left: 3px solid var(--accent);
  padding-left: 17px;
  color: var(--text) !important;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 42px;
}
.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.04rem;
}

.three-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.speciality-card,
.work-card,
.foundation-grid article {
  padding: 26px;
  border: 1px solid rgba(20, 34, 29, 0.08);
  border-radius: var(--radius);
  background: var(--surface);
}

.number {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 850;
}

.speciality-card p,
.work-card p,
.foundation-grid p {
  color: var(--muted);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 19px;
}

.work-card.featured {
  background: var(--dark);
  color: white;
}
.work-card.featured p,
.work-card.featured dd { color: var(--dark-muted); }

.tag {
  margin-bottom: 12px;
  color: var(--accent) !important;
  font-size: 0.71rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.work-card.featured .tag { color: #9ed0c0 !important; }

.work-context {
  margin-bottom: 18px;
  font-size: 0.84rem;
  font-weight: 750;
}

.work-card dl { margin-bottom: 0; }
.work-card dl > div {
  padding-top: 13px;
  margin-top: 13px;
  border-top: 1px solid rgba(20, 34, 29, 0.13);
}
.work-card.featured dl > div { border-color: rgba(255,255,255,0.17); }

.work-card dt {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.work-card.featured dt { color: #9ed0c0; }

.work-card dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.section-cta {
  max-width: 800px;
  margin-top: 30px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  font-weight: 750;
}

.foundations-section { padding-top: 40px; }

.foundation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.evidence {
  margin: 22px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--text) !important;
  font-size: 0.82rem;
  font-weight: 750;
}

.dark-section {
  background: var(--dark);
  color: white;
}
.dark-section .eyebrow { color: #9ed0c0; }
.dark-section p { color: var(--dark-muted); }

.value-list article {
  padding: 19px 0;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.value-list article:first-child { border-top: 0; }

.idea-list { border-top: 1px solid var(--line); }
.idea-list article {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 15px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.idea-list span {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 850;
}
.idea-list h3 {
  max-width: 700px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.6vw, 2rem);
}

.ideas-note {
  margin-top: 19px;
  color: var(--muted);
  font-size: 0.84rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 72px;
}

.role-list {
  margin: 32px 0;
  border-top: 1px solid var(--line);
}
.role-list > div {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.role-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 1.1fr);
  gap: 72px;
}

.contact-grid > div:first-child > p:last-child {
  max-width: 60ch;
  color: var(--muted);
}

.contact-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.contact-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-link {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  font-weight: 800;
}
.contact-link:hover { color: var(--accent); }
.contact-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
}
.footer-grid p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
}
.copyright {
  grid-column: 1 / -1;
  margin-top: 13px;
  font-size: 0.78rem;
}

@media (max-width: 920px) {
  .hero-grid,
  .split,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 43px;
  }

  .metric-strip { grid-template-columns: repeat(2, 1fr); }
  .metric-strip > div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .metric-strip > div:nth-child(4) { border-top: 1px solid var(--line); }

  .three-column,
  .foundation-grid { grid-template-columns: 1fr; }

  h1 { max-width: 15ch; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .hero { padding: 62px 0 56px; }
  .section { padding: 70px 0; }
  .foundations-section { padding-top: 20px; }

  .menu-button { display: block; }

  #site-nav {
    display: none;
    position: absolute;
    top: 69px;
    left: 14px;
    right: 14px;
    flex-direction: column;
    align-items: stretch;
    padding: 17px;
    border-radius: 15px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }
  #site-nav.open { display: flex; }
  .nav-cta { border: 0; padding: 0; }
  .brand span { display: none; }

  .metric-strip { grid-template-columns: 1fr; }
  .metric-strip > div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .metric-strip > div:first-child { border-top: 0; }

  .work-grid { grid-template-columns: 1fr; }

  .role-list > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  h1 { font-size: clamp(2.65rem, 13vw, 4.2rem); }
}
