:root {
  color-scheme: light;
  --paper: #f4f1ea;
  --paper-deep: #e6dfd2;
  --ink: #19201d;
  --muted: #5f665f;
  --line: #c9c0b1;
  --green: #496b5a;
  --clay: #b9503e;
  --blue: #365f86;
  --white: #fffdf8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 92%, white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
}

.brand img {
  border: 1px solid var(--line);
  border-radius: 6px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.72fr);
  align-items: center;
  gap: clamp(32px, 6vw, 88px);
  min-height: calc(100svh - 108px);
  padding: clamp(44px, 7vw, 96px) clamp(18px, 6vw, 84px) clamp(32px, 5vw, 64px);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  margin: 0;
  font-size: clamp(52px, 9vw, 132px);
  line-height: 0.94;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.42;
}

.hero-visual {
  margin: 0;
  justify-self: end;
  width: min(100%, 430px);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 18px 18px 0 var(--paper-deep);
}

.panel-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) repeat(3, minmax(180px, 1fr));
  gap: 16px;
  padding: 28px clamp(18px, 6vw, 84px) 80px;
}

.section-heading {
  padding-right: 28px;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

article {
  min-height: 178px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

article h3 {
  margin: 0 0 42px;
  font-size: 18px;
  letter-spacing: 0;
}

article p,
.split-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  padding: 80px clamp(18px, 6vw, 84px);
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
}

.split-section .eyebrow,
.split-section p {
  color: #cfd8d0;
}

.split-section p {
  max-width: 700px;
  font-size: clamp(20px, 2.4vw, 34px);
  line-height: 1.35;
}

.link-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 32px clamp(18px, 6vw, 84px) 56px;
}

.link-strip a {
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
  font-weight: 650;
}

.link-strip a:hover {
  border-color: var(--blue);
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero,
  .panel-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    justify-self: start;
    max-width: 340px;
  }

  .panel-grid {
    padding-top: 18px;
  }
}

