:root {
  --ink: #17211b;
  --muted: #5f6f66;
  --line: #dce7df;
  --paper: #fffdf8;
  --soft: #f4f8ef;
  --soft-2: #eef6f7;
  --primary: #136f47;
  --primary-dark: #0d5135;
  --warm: #f28c28;
  --warm-dark: #c96d13;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(26, 57, 42, 0.12);
  --radius: 8px;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(
      180deg,
      rgba(244, 248, 239, 0.65),
      rgba(255, 253, 248, 0) 420px
    ),
    var(--paper);
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

img,
video,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.site-chrome {
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 10px 28px rgba(16, 41, 27, 0.08);
}

.announcement {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 700;
}

.announcement-inner,
.announcement-links,
.site-header-inner,
.desktop-nav,
.header-actions,
.hero-controls {
  display: flex;
  align-items: center;
}

.announcement-inner {
  justify-content: space-between;
  gap: 18px;
  min-height: 40px;
}

.announcement-links {
  gap: clamp(18px, 4vw, 34px);
  flex-wrap: wrap;
}

.announcement a,
.footer a {
  text-decoration: none;
}

.pill-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  white-space: nowrap;
}

.site-header {
  background: rgba(255, 253, 248, 0.98);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header-inner {
  min-height: 80px;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: clamp(138px, 12vw, 178px);
  height: auto;
}

.desktop-nav {
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
  color: #31483b;
  flex: 1;
  justify-content: center;
}

.desktop-nav a,
.header-actions > a:not(.button),
.mobile-nav a {
  text-decoration: none;
  border-radius: 999px;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.desktop-nav a {
  padding: 10px 12px;
  white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--primary-dark);
  background: #e9f4ea;
}

.header-actions {
  gap: 10px;
  font-weight: 800;
  font-size: clamp(12px, 0.78vw, 14px);
  flex-shrink: 0;
}

.header-actions > a:not(.button) {
  color: var(--primary-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 10px 24px rgba(19, 111, 71, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
  box-shadow: 0 14px 30px rgba(19, 111, 71, 0.24);
}

.button.warm {
  border-color: var(--warm);
  background: var(--warm);
  box-shadow: 0 10px 22px rgba(242, 140, 40, 0.2);
}

.button.warm:hover {
  background: var(--warm-dark);
}

.button.outline {
  background: transparent;
  color: var(--primary-dark);
  box-shadow: none;
}

.menu-button {
  display: none;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 10px 20px 18px;
}

.mobile-nav a {
  display: block;
  padding: 13px 8px;
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}

.hero {
  position: relative;
  height: clamp(620px, calc(100vh - 120px), 760px);
  min-height: 620px;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-media,
.hero-media::after,
.page-hero::after {
  position: absolute;
  inset: 0;
}

.hero-media {
  transition: opacity 0.35s ease;
}

.hero-media > img,
.hero-media > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media::after {
  content: "";
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.58),
      rgba(0, 0, 0, 0.26) 48%,
      rgba(0, 0, 0, 0.5)
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent 58%);
  pointer-events: none;
}

.page-hero::after {
  content: "";
  background:
    linear-gradient(
      90deg,
      rgba(8, 38, 24, 0.54),
      rgba(8, 38, 24, 0.18) 54%,
      rgba(8, 38, 24, 0.36)
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.16), transparent 48%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(180px, 260px);
  align-items: center;
  align-content: center;
  gap: clamp(36px, 8vw, 120px);
  padding: 132px 0 196px;
  color: var(--white);
}

.hero-eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0 0 14px;
  font-family: Outfit, Inter, sans-serif;
  font-size: clamp(44px, 4.1vw, 78px);
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-copy p,
.page-hero p {
  margin: 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-actions .button.outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero-actions .button.outline:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.16);
}

.hero-controls {
  position: absolute;
  z-index: 5;
  left: clamp(18px, 2.4vw, 48px);
  right: clamp(18px, 2.4vw, 48px);
  top: 50%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.hero-control {
  pointer-events: auto;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--primary);
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(19, 111, 71, 0.28);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.hero-control:hover {
  background: var(--primary-dark);
  transform: scale(1.04);
}

.hero-video::-webkit-media-controls-panel {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
}

.hero-show-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-width: 166px;
  min-height: 56px;
  padding: 0 26px;
  border: 0;
  border-radius: 6px;
  background: var(--primary);
  color: var(--white);
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(19, 111, 71, 0.28);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.hero-show-more:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.hero-indicators {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 40px;
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: clamp(18px, 3vw, 36px);
  width: min(86vw, 1220px);
  transform: translateX(-50%);
}

.hero-indicator {
  display: grid;
  gap: 10px;
  width: 100%;
  min-width: 0;
  min-height: 62px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.hero-indicator.is-active {
  border-color: var(--white);
  color: var(--white);
}

.hero-indicator span {
  padding-top: 12px;
  font-size: 15px;
  font-weight: 700;
}

.hero-indicator strong {
  overflow: hidden;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 761px) {
  .hero-copy {
    padding-left: 64px;
  }
}

.page-hero {
  position: relative;
  min-height: clamp(360px, 44vh, 460px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--primary-dark);
}

.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(72px, 10vw, 104px) 0 clamp(56px, 8vw, 76px);
  color: var(--white);
}

.section {
  padding: clamp(68px, 9vw, 112px) 0;
}

.section.alt {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.section-title {
  max-width: 720px;
}

.section-title.center {
  margin-inline: auto;
  text-align: center;
}

@media (max-width:450px) {
  .section-title.center {
    margin-inline: auto;
    text-align: left;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--warm-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2,
h3,
h4 {
  font-family: Outfit, Inter, sans-serif;
  letter-spacing: 0;
}

h2 {
  margin: 10px 0 14px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
}

h3 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 30px);
  line-height: 1.15;
}

h4 {
  margin: 0 0 10px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.25;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.space {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.team-section {
  overflow: hidden;
  background: var(--white);
}

.team-section-inner {
  width: 100%;
}

.team-section .section-title {
  margin-bottom: clamp(38px, 5vw, 64px);
}

.team-section .eyebrow {
  color: var(--warm-dark);
}

.team-section .eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.team-section h2 {
  margin: 10px 0 14px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
}

.team-slider {
  --team-gap: clamp(24px, 2vw, 38px);
  --team-visible: 4;
  --team-slide-width: calc(
    (100vw - (var(--team-gap) * (var(--team-visible) - 1)) - 92px) /
      var(--team-visible)
  );
  --team-slide-step: calc(var(--team-slide-width) + var(--team-gap));
  width: 100%;
  touch-action: pan-y;
  user-select: none;
}

.team-viewport {
  overflow: hidden;
  width: 100%;
  padding-inline: 46px;
}

.team-track {
  display: flex;
  gap: var(--team-gap);
  will-change: transform;
  transition: transform 0.42s ease;
}

.team-card {
  flex: 0 0 var(--team-slide-width);
  min-width: 0;
}

.team-card-button {
  display: grid;
  width: 100%;
  grid-template-rows: auto auto auto;
  gap: 14px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-align: left;
}

.team-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.22 / 1;
  border-radius: 4px;
  object-fit: cover;
  object-position: center top;
  background: var(--soft-2);
}

.team-name {
  margin-top: 12px;
  color: #111111;
  font-family: outfit;
  font-size: clamp(24px, 1.7vw, 32px);
  line-height: 1.12;
}

.team-role {
  color: var(--warm-dark);
  font-size: clamp(16px, 1.1vw, 22px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-dots {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: clamp(42px, 5vw, 58px);
}

.team-slider.is-static .team-dots {
  display: none;
}

.team-dot {
  width: 10px;
  height: 10px;
  border: 1px solid #cfd5dc;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.team-dot.is-active {
  border-color: #202020;
  background: #202020;
}

.team-modal[hidden] {
  display: none;
}

.team-modal {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.team-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 22, 15, 0.66);
}

.team-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 430px);
  gap: 28px;
  width: min(760px, 100%);
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.team-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.team-modal-panel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  object-fit: cover;
}

.team-modal-copy {
  align-self: center;
  padding-right: 24px;
}

.team-modal-copy span {
  color: var(--warm-dark);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-modal-copy h3 {
  margin-top: 12px;
  color: var(--ink);
}

.team-modal-copy p {
  margin-top: 12px;
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.check-list li::before {
  content: "\2713";
  margin-right: 9px;
  color: var(--primary);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(300px, 0.96fr) minmax(0, 1.04fr);
}

.grid {
  display: grid;
  gap: 22px;
}

.grid > * {
  min-width: 0;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.media-card,
.form-card,
.receipt,
.stat-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.card {
  display: block;
  padding: clamp(22px, 3vw, 32px);
  text-decoration: none;
  min-width: 0;
}

.section.alt.mission-vision-section {
  background:
    linear-gradient(135deg, rgba(19, 111, 71, 0.08), rgba(242, 140, 40, 0.08)),
    var(--soft);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
  margin-top: clamp(32px, 5vw, 48px);
}

.mission-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 300px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(19, 111, 71, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 54px rgba(26, 57, 42, 0.12);
}

.mission-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--warm));
}

.mission-card-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: Outfit, Inter, sans-serif;
  font-size: 25px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(19, 111, 71, 0.22);
}

.mission-card h3 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3vw, 36px);
}

.mission-card p {
  max-width: 620px;
  font-size: clamp(16px, 1.35vw, 19px);
}

.founder-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(255, 253, 248, 0.96),
      rgba(244, 248, 239, 0.88)
    ),
    var(--paper);
}

.founder-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 111, 71, 0.1) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(19, 111, 71, 0.08) 0 1px, transparent 1px 100%);
  background-size: 44px 44px;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 16%,
    #000 84%,
    transparent
  );
  opacity: 0.42;
  pointer-events: none;
}

.founder-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: start;
}

.founder-message {
  align-self: start;
  min-width: 0;
}

.foundation-values {
  align-self: start;
}

.founder-message h2 {
  max-width: 620px;
}

.founder-copy {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  padding-left: 24px;
  border-left: 4px solid var(--warm);
}

.founder-copy p {
  font-size: clamp(16px, 1.22vw, 18px);
}

.foundation-values {
  display: grid;
  gap: 0;
  min-width: 0;
  border-block: 1px solid rgba(19, 111, 71, 0.18);
}

.value-line {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 30px);
  padding: clamp(22px, 3vw, 32px) 0;
  border-bottom: 1px solid rgba(19, 111, 71, 0.16);
}

.value-line:last-child {
  border-bottom: 0;
}

.value-line > span {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5px;
  color: var(--warm-dark);
  font-family: Outfit, Inter, sans-serif;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 900;
  line-height: 1;
}

.value-line h3 {
  margin-bottom: 8px;
  font-size: clamp(24px, 2.6vw, 34px);
}

.value-line p {
  max-width: 620px;
  font-size: clamp(15px, 1.1vw, 17px);
}

a.card,
a.media-card {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

a.card:hover,
a.media-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(26, 57, 42, 0.16);
}

.image-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-pair img:nth-child(2) {
  aspect-ratio: 4 / 4;
  margin-bottom: 42px;
}

.media-card {
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.media-card > img,
.media-card video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--soft-2);
}

.video-gallery .media-card video {
  aspect-ratio: 16 / 9;
}

.form-message.is-error {
  color: #b42318;
}

.form-message.is-success {
  color: var(--primary);
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.media-card-content {
  padding: 24px;
}

.media-card-content a:not(.button) {
  color: var(--primary);
  font-weight: 800;
}

.stat-band {
  background: var(--primary-dark);
  color: var(--white);
}

.stat-band p,
.stat-band .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.stat-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.stat-value {
  font-family: Outfit, Inter, sans-serif;
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}

.gallery-grid,
.gallery-full {
  display: grid;
  gap: 16px;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-grid img,
.gallery-full img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
}

.gallery-full {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 240px;
}

.gallery-full figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft-2);
}

.gallery-full figure.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-full figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(8, 38, 24, 0.76);
  color: var(--white);
  font-weight: 800;
}

.form-card {
  padding: clamp(24px, 4vw, 40px);
  min-width: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

label.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #ccd9d1;
  border-radius: var(--radius);
  padding: 12px 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 126px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(242, 140, 40, 0.34);
  outline-offset: 2px;
}

.form-message {
  min-height: 24px;
  margin-top: 18px;
  font-weight: 800;
  color: var(--primary);
}

.receipt {
  display: none;
  margin-top: 28px;
  padding: 28px;
}

.receipt.is-visible {
  display: block;
}

.map {
  width: 100%;
  min-height: clamp(320px, 44vw, 440px);
  border: 0;
}

.footer {
  padding: 68px 0 26px;
  background: #10291b;
  color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(0, 0.8fr));
  gap: clamp(28px, 5vw, 58px);
}

.footer-brand-block {
  max-width: 360px;
}

.footer-cta {
  margin-top: 22px;
}

.footer p,
.footer span {
  color: rgba(255, 255, 255, 0.72);
}

.footer h3 {
  color: var(--white);
}

.footer .brand img {
  filter: brightness(0) invert(1);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-links span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.copyright {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

@media (max-width: 1120px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid,
  .gallery-full {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-slider {
    --team-gap: 26px;
    --team-visible: 3;
    --team-slide-width: calc(
      (100vw - (var(--team-gap) * (var(--team-visible) - 1)) - 64px) /
        var(--team-visible)
    );
  }

  .team-viewport {
    padding-inline: 32px;
  }

  .team-name {
    font-size: clamp(22px, 2.5vw, 28px);
  }

  .team-role {
    font-size: clamp(15px, 1.8vw, 18px);
  }
}

@media (max-width: 900px) {
  .founder-layout {
    grid-template-columns: 1fr;
  }

  .founder-message {
    position: static;
  }

  .grid.three {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .announcement-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 9px 0;
  }

  .announcement-links {
    gap: 8px 14px;
  }

  .site-header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 142px;
  }

  .hero {
    height: min(680px, calc(100vh - 120px));
    min-height: 520px;
  }

  .page-hero {
    min-height: 440px;
  }

  .hero-copy {
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: end;
    gap: 22px;
    padding: 72px 0 108px;
    text-align: center;
  }

  .page-hero-copy {
    padding: 64px 0 54px;
  }

  .hero-copy h1,
  .page-hero h1 {
    max-width: 380px;
    margin-inline: auto;
    font-size: clamp(27px, 7.8vw, 38px);
    line-height: 1.18;
  }

  .hero-copy p,
  .hero-eyebrow {
    display: none;
  }

  .hero-show-more {
    justify-self: center;
    min-width: 170px;
    min-height: 58px;
    padding: 0 24px;
    border-radius: 7px;
  }

  .hero-controls {
    display: none;
  }

  .hero-control {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .hero-indicators {
    bottom: 46px;
    display: flex;
    justify-content: center;
    width: min(100% - 28px, 360px);
    gap: 14px;
  }

  .hero-indicator {
    width: 10px;
    min-height: 10px;
    min-width: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.54);
  }

  .hero-indicator.is-active {
    background: var(--white);
  }

  .hero-indicator span,
  .hero-indicator strong {
    display: none;
  }

  .split,
  .split.reverse,
  .mission-vision-grid,
  .grid.two,
  .grid.three,
  .grid.four,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .mission-card {
    min-height: 0;
  }

  .team-section {
    padding-block: 58px;
  }

  .team-section .section-title {
    padding-left: 15px;
    padding-right: 15px;
    margin-inline: auto;
    margin-bottom: 34px;
    text-align: left;
  }

  .team-slider {
    --team-gap: 28px;
    --team-visible: 1;
    --team-slide-width: min(100vw - 96px, 300px);
    --team-slide-step: calc(var(--team-slide-width) + var(--team-gap));
  }

  .team-viewport {
    /* padding-inline: calc((100vw - var(--team-slide-width)) / 2); */
    padding-left: 15px;
    padding-right: 15px;
  }

  .team-card-button {
    text-align: center;
  }

  .team-card img {
    aspect-ratio: 1.22 / 1;
  }

  .team-name {
    margin-top: 8px;
    font-size: 26px;
  }

  .team-role {
    font-size: 16px;
  }

  .team-dots {
    margin-top: 34px;
  }

  .team-modal-panel {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .team-modal-panel img {
    width: min(100%, 280px);
    margin-inline: auto;
  }

  .team-modal-copy {
    padding-right: 0;
    text-align: center;
  }

  .image-pair {
    grid-template-columns: 1fr;
  }

  .image-pair img:nth-child(2) {
    margin-bottom: 0;
  }

  .gallery-grid,
  .gallery-full {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-full figure.large {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-full img {
    aspect-ratio: 4 / 3;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .announcement {
    font-size: 13px;
  }

  .announcement-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-button {
    min-width: 48px;
    padding-inline: 12px;
  }

  .mobile-nav {
    padding-inline: 12px;
  }

  .button {
    width: 100%;
  }

  .hero {
    height: min(620px, calc(100vh - 116px));
    min-height: 500px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(25px, 8vw, 34px);
  }

  .hero-show-more {
    min-width: 160px;
    min-height: 56px;
    padding: 0 22px;
    font-size: 15px;
  }

  .hero-indicators {
    gap: 7px;
  }

  .hero-indicator {
    min-height: 18px;
  }

  .team-section .section-title {
    padding-left: 15px;
    padding-right: 15px;
  }

  .team-slider {
    --team-slide-width: min(100vw - 84px, 286px);
  }

  .team-name {
    font-size: 24px;
  }

  .founder-copy {
    padding-left: 18px;
  }

  .value-line {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .card,
  .media-card-content,
  .form-card,
  .receipt {
    padding: 20px;
  }
}
