:root {
  --ink: #17201c;
  --muted: #5f6863;
  --soft: #f5f7f3;
  --paper: #ffffff;
  --line: #dfe5df;
  --green: #17633f;
  --green-dark: #103d2a;
  --ochre: #b78339;
  --mist: #eaf1ed;
  --shadow: 0 18px 45px rgba(23, 32, 28, 0.1);
}

* {
  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;
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(223, 229, 223, 0.9);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: var(--green);
  color: white;
  font-size: 13px;
  letter-spacing: 0;
}

.brand-text {
  font-size: 15px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--green);
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background: var(--soft);
}

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

.eyebrow,
.label {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  max-width: 100%;
  overflow-wrap: break-word;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  max-width: 980px;
}

.lede,
.page-hero p,
.intro-grid > p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--green);
  color: white;
}

.button.secondary {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}

.button.light {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.hero-media,
.image-hero img {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.compact-section {
  padding-top: clamp(44px, 6vw, 76px);
  padding-bottom: clamp(44px, 6vw, 76px);
}

.muted {
  background: var(--soft);
}

.dark {
  background: var(--green-dark);
  color: white;
}

.dark .eyebrow {
  color: #b6dec5;
}

.dark p {
  color: rgba(255, 255, 255, 0.76);
}

.intro-grid,
.split,
.section-head,
.founder-strip,
.founder-hero,
.image-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.section h2,
.business-list h2 {
  font-size: clamp(32px, 4vw, 54px);
}

.section-head {
  margin-bottom: 28px;
}

.prose p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.business-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  overflow: hidden;
}

.business-card img,
.business-list img,
.image-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
}

.business-card > div:not(.text-visual) {
  padding: 20px;
}

.business-card h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.business-card p:not(.label),
.business-list p,
.values-grid p,
.metric-grid span {
  color: var(--muted);
}

.business-card a,
.business-list a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-weight: 850;
  text-decoration: none;
}

.text-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-height: 220px;
  padding: 16px;
  background: var(--mist);
}

.text-visual span {
  display: grid;
  place-items: center;
  min-height: 88px;
  border: 1px solid rgba(23, 99, 63, 0.2);
  border-radius: 6px;
  color: var(--green);
  font-weight: 850;
}

.page-hero {
  padding: clamp(60px, 9vw, 124px) clamp(18px, 5vw, 72px);
  background: var(--soft);
}

.page-hero > p {
  max-width: 820px;
}

.founder-hero,
.image-hero {
  align-items: center;
}

.image-hero img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.values-grid,
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.values-grid article,
.metric-grid article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.values-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--green);
  font-weight: 850;
}

.values-grid h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.metric-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
}

.metric-grid span {
  display: block;
  font-size: 15px;
}

.business-list {
  display: grid;
  gap: 18px;
}

.business-list article {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.business-list .text-visual {
  min-height: 260px;
  border-radius: 8px;
}

.founder-strip {
  align-items: center;
}

.portrait {
  display: grid;
  place-items: center;
  width: 140px;
  height: 140px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), var(--ochre));
  color: white;
  font-size: 42px;
  font-weight: 900;
}

.portrait.large {
  width: min(320px, 100%);
  height: auto;
  aspect-ratio: 1;
  justify-self: end;
  font-size: clamp(58px, 8vw, 96px);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.route-grid a {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  text-decoration: none;
}

.route-grid strong,
.route-grid span {
  display: block;
}

.route-grid strong {
  margin-bottom: 12px;
  font-size: 22px;
}

.route-grid span {
  color: var(--green);
  font-weight: 850;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 30px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: white;
}

.site-footer div:first-child {
  display: grid;
  gap: 4px;
}

.site-footer span,
.footer-links a {
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-links a {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 1120px) {
  .hero,
  .intro-grid,
  .split,
  .section-head,
  .founder-strip,
  .founder-hero,
  .image-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .business-grid,
  .values-grid,
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portrait.large {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    align-items: center;
    min-height: 66px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    width: 44px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: white;
    color: var(--ink);
    padding: 0;
    font-size: 0;
    font-weight: 800;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--green);
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 35px;
    line-height: 1.12;
  }

  .lede,
  .page-hero p,
  .intro-grid > p {
    font-size: 17px;
  }

  .hero-media img {
    aspect-ratio: 4 / 3;
  }

  .business-grid,
  .values-grid,
  .metric-grid,
  .route-grid,
  .business-list article {
    grid-template-columns: 1fr;
  }

  .business-card {
    min-height: auto;
  }

  .business-list article {
    gap: 18px;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
