:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #151817;
  background: #ffffff;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  --accent: #2f756b;
  --ink: #151817;
  --muted: #646f6b;
  --soft: #8d9994;
  --measure: 840px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(var(--measure), calc(100% - 44px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.brand {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 720;
}

.site-nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav a,
.contact-inner a {
  transition: color 150ms ease;
}

.site-nav a:hover,
.contact-inner a:hover {
  color: var(--accent);
}

.hero {
  padding: clamp(78px, 10vw, 124px) 0 clamp(36px, 5vw, 56px);
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(2.8rem, 6.4vw, 5.5rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.22rem);
  line-height: 1.65;
}

.section {
  padding: clamp(30px, 4vw, 48px) 0;
}

.section-grid {
  display: block;
}

.section-kicker,
.role {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 720;
  letter-spacing: 0;
}

.section-kicker {
  margin-bottom: 18px;
  color: var(--accent);
  line-height: 1.45;
  text-transform: uppercase;
}

.approach p:last-child,
.disclaimer-section p:last-child,
.person-row p,
.footer-inner {
  color: var(--muted);
  line-height: 1.68;
}

.approach p:last-child,
.disclaimer-section p:last-child {
  max-width: 690px;
  margin: 0;
  font-size: 1.08rem;
}

.team-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 6vw, 74px);
  align-items: start;
}

.person-row {
  min-width: 0;
}

.person-row h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  font-weight: 640;
  line-height: 1.16;
  letter-spacing: 0;
}

.person-row p:last-child {
  margin-bottom: 0;
}

.role {
  margin-bottom: 10px;
  color: var(--soft);
  line-height: 1.45;
}

.contact-inner a {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.7vw, 1.24rem);
  line-height: 1.6;
  text-decoration: underline;
  text-decoration-color: #dfe6e3;
  text-underline-offset: 5px;
  word-break: break-word;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  padding: 28px 0 24px;
  font-size: 0.88rem;
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 60px;
  }

  .site-nav {
    gap: 16px;
  }

  .hero {
    padding-top: 76px;
  }

  .team-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-grid {
    display: block;
  }

  .section-kicker {
    margin-bottom: 14px;
  }
}
