:root {
  --forest: #123c2c;
  --forest-deep: #09281d;
  --green: #1f6047;
  --lime: #cde66b;
  --lime-soft: #eaf3bd;
  --sand: #f4f0e5;
  --paper: #fbfaf5;
  --white: #ffffff;
  --ink: #14241d;
  --muted: #617069;
  --line: rgba(18, 60, 44, 0.15);
  --orange: #e66a36;
  --display: "Manrope", system-ui, sans-serif;
  --body: "DM Sans", system-ui, sans-serif;
  --page: min(1240px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

main,
section,
article,
form,
fieldset {
  min-width: 0;
}

body::selection {
  background: var(--lime);
  color: var(--forest-deep);
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--lime);
  color: var(--forest-deep);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 100;
  display: flex;
  width: min(1240px, calc(100vw - 36px));
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 10px 12px 10px 20px;
  background: rgba(251, 250, 245, 0.9);
  box-shadow: 0 10px 38px rgba(11, 37, 27, 0.1);
  backdrop-filter: blur(18px);
  transition: top 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.scrolled {
  top: 8px;
  background: rgba(251, 250, 245, 0.97);
  box-shadow: 0 12px 44px rgba(11, 37, 27, 0.16);
}

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

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.site-nav a {
  border-radius: 999px;
  padding: 11px 14px;
  color: #385046;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 150ms ease, background 150ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(18, 60, 44, 0.07);
  color: var(--forest);
}

.site-nav .nav-cta {
  margin-left: 4px;
  padding: 13px 18px;
  background: var(--forest);
  color: var(--white);
}

.site-nav .nav-cta:hover {
  background: var(--green);
  color: var(--white);
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  width: var(--page);
  min-height: 810px;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 64px;
  align-items: center;
  margin: 0 auto;
  padding: 136px 0 70px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-kicker span {
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.hero h1,
.archive-hero h1 {
  margin: 0;
  color: var(--forest-deep);
  font-size: clamp(58px, 7.2vw, 108px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.hero h1 em,
.archive-hero h1 em {
  color: var(--green);
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.mobile-title-break {
  display: none;
}

.hero-copy > p {
  max-width: 570px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

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

.button-primary:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

.button-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--forest);
}

.button-ghost:hover {
  border-color: var(--forest);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-visual > img {
  width: 100%;
  height: 620px;
  border-radius: 260px 260px 24px 24px;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(18, 60, 44, 0.2);
}

.hero-badge {
  position: absolute;
  right: -24px;
  bottom: 72px;
  display: grid;
  width: 220px;
  gap: 5px;
  border: 5px solid var(--paper);
  border-radius: 20px;
  padding: 18px;
  background: var(--lime);
  color: var(--forest-deep);
  transform: rotate(-2deg);
}

.hero-badge strong {
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.2;
}

.hero-badge span {
  font-size: 12px;
  line-height: 1.35;
}

.hero-location {
  position: absolute;
  bottom: -20px;
  left: -34px;
  display: flex;
  width: 190px;
  align-items: start;
  gap: 12px;
  border-radius: 18px;
  padding: 18px;
  background: var(--forest-deep);
  box-shadow: 0 20px 40px rgba(9, 40, 29, 0.2);
  color: var(--white);
}

.hero-location > span {
  color: var(--lime);
  font-size: 11px;
}

.hero-location p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.45;
}

.hero-location strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 15px;
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--forest-deep);
  color: var(--white);
}

.impact-strip div {
  display: grid;
  min-height: 170px;
  align-content: center;
  gap: 5px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  padding: 24px max(24px, calc((100vw - 1240px) / 8));
}

.impact-strip div:last-child {
  border-right: 0;
}

.impact-strip strong {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.impact-strip span {
  color: rgba(255, 255, 255, 0.63);
  font-size: 13px;
}

.section {
  padding: 120px max(32px, calc((100vw - 1240px) / 2));
}

.section-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 13px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label.light {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--lime);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.intro-heading {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 48px;
  align-items: start;
  margin-top: 76px;
}

.intro-heading h2,
.story-copy h2,
.mission-copy h2,
.field-head h2,
.governance-head h2,
.blog-head h2,
.related-posts h2 {
  margin: 0;
  color: var(--forest-deep);
  font-size: clamp(40px, 5.4vw, 74px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.intro-copy {
  max-width: 650px;
  margin: 30px 0 70px auto;
  color: var(--muted);
  font-size: 18px;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  background: var(--white);
}

.service-card > div:first-child {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-number {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.card-tag {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card > div:nth-child(2) {
  position: relative;
  z-index: 2;
  max-width: 510px;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--forest-deep);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.service-featured {
  min-height: 540px;
  grid-row: span 2;
  color: var(--white);
}

.service-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 40, 29, 0.15), rgba(9, 40, 29, 0.9));
}

.service-featured img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-featured .card-number,
.service-featured h3,
.service-featured p {
  color: var(--white);
}

.service-featured p {
  color: rgba(255, 255, 255, 0.75);
}

.service-dark {
  background: var(--forest);
}

.service-dark h3,
.service-dark .card-number {
  color: var(--white);
}

.service-dark p {
  color: rgba(255, 255, 255, 0.68);
}

.service-lime {
  background: var(--lime);
}

.card-arrow {
  position: absolute;
  right: 22px;
  bottom: 20px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.35;
}

.pathway-section {
  background: var(--forest-deep);
  color: var(--white);
}

.pathway-head {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 50px;
  margin: 76px 0 70px;
}

.pathway-head h2 {
  max-width: 850px;
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 6vw, 78px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.pathway-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.pathway-list li {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
  padding: 8px 28px 8px 22px;
}

.pathway-list li:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.pathway-list > li > span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
}

.pathway-list h3 {
  margin-bottom: 8px;
  font-size: 29px;
  letter-spacing: -0.04em;
}

.pathway-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.story-section {
  background: var(--sand);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 80px;
  align-items: center;
  margin-top: 76px;
}

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  height: 650px;
  border-radius: 22px;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  right: -18px;
  bottom: 28px;
  border-radius: 999px;
  padding: 11px 16px;
  background: var(--lime);
  color: var(--forest-deep);
  font-size: 12px;
  font-weight: 800;
}

.story-copy > p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 17px;
}

.story-copy h2 {
  margin-bottom: 32px;
  font-size: clamp(40px, 5vw, 66px);
}

.story-quote {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.story-quote span {
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 60px;
  line-height: 0.7;
}

.story-quote p {
  margin: 0;
  color: var(--forest) !important;
  font-family: var(--display);
  font-size: 23px !important;
  font-weight: 700;
  line-height: 1.35;
}

.story-continue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  border-bottom: 1px solid var(--forest);
  padding-bottom: 4px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.mission-section {
  background: var(--lime);
}

.mission-copy {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 60px;
  margin-bottom: 70px;
}

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

.mission-panels article {
  min-height: 330px;
  border-radius: 22px;
  padding: 30px;
  background: var(--forest-deep);
  color: var(--white);
}

.mission-panels article:nth-child(2) {
  background: var(--paper);
  color: var(--forest-deep);
}

.mission-panels span {
  display: block;
  margin-bottom: 85px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mission-panels article:nth-child(2) span {
  color: var(--orange);
}

.mission-panels h3 {
  margin: 0;
  font-size: clamp(27px, 3.2vw, 43px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.values-row span {
  border: 1px solid rgba(9, 40, 29, 0.25);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--forest-deep);
  font-size: 12px;
  font-weight: 700;
}

.field-head,
.blog-head,
.governance-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin: 76px 0 56px;
}

.field-head > p {
  max-width: 400px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.field-gallery {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: 330px 330px;
  gap: 16px;
}

.field-gallery figure,
.field-video {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
  background: var(--forest);
}

.gallery-wide {
  grid-row: 1 / 3;
}

.field-gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.field-gallery figure:hover img {
  transform: scale(1.03);
}

.field-gallery figcaption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(9, 40, 29, 0.82);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.field-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.field-video > div {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: grid;
  max-width: calc(100% - 24px);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(9, 40, 29, 0.88);
  color: var(--white);
  pointer-events: none;
}

.field-video span {
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.field-video strong {
  font-size: 12px;
}

.governance-section {
  background: var(--sand);
}

.governance-head {
  align-items: start;
}

.director-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.director-card {
  display: grid;
  min-height: 180px;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 28px 24px 28px 0;
}

.director-card:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.director-card:nth-child(even) {
  padding-left: 28px;
}

.director-card > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.director-card h3 {
  margin: 2px 0 8px;
  color: var(--forest-deep);
  font-size: 20px;
  letter-spacing: -0.03em;
}

.director-card p {
  margin: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.director-card small {
  color: var(--muted);
}

.partners-section {
  padding: 52px max(32px, calc((100vw - 1240px) / 2));
  background: var(--white);
  text-align: center;
}

.partners-section > p {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-track {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 42px;
  align-items: center;
  justify-content: center;
}

.partner-track img {
  width: 112px;
  height: 58px;
  filter: grayscale(1);
  object-fit: contain;
  opacity: 0.67;
  transition: filter 160ms ease, opacity 160ms ease;
}

.partner-track img:hover {
  filter: grayscale(0);
  opacity: 1;
}

.blog-section {
  background: var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--forest);
  color: var(--forest);
  font-weight: 800;
  text-decoration: none;
}

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

.post-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.post-image {
  position: relative;
  display: block;
  height: 240px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.post-card:hover .post-image img {
  transform: scale(1.035);
}

.post-image > span {
  position: absolute;
  top: 14px;
  left: 14px;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(251, 250, 245, 0.9);
  color: var(--forest);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.post-content {
  padding: 24px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.post-date {
  display: block;
  margin: 17px 0 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.post-content h3 {
  margin: 18px 0 12px;
  font-size: 24px;
  letter-spacing: -0.045em;
  line-height: 1.13;
}

.post-content h3 a {
  text-decoration: none;
}

.post-content p {
  color: var(--muted);
  font-size: 14px;
}

.post-link {
  display: inline-flex;
  gap: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.loading-copy {
  grid-column: 1 / -1;
  color: var(--muted);
}

.contact-section {
  display: grid;
  min-height: 790px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  background: var(--forest-deep);
}

.contact-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.contact-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 40, 29, 0.08), rgba(9, 40, 29, 0.86));
}

.contact-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-visual > div {
  position: absolute;
  right: 52px;
  bottom: 56px;
  left: 52px;
  z-index: 1;
  color: var(--white);
}

.contact-visual p {
  max-width: 450px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-visual h2 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(44px, 5.6vw, 76px);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.contact-content {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 42px;
  align-items: start;
  padding: 100px max(40px, calc((100vw - 1240px) / 2)) 100px 56px;
  color: var(--white);
}

.contact-details {
  display: grid;
  gap: 8px;
}

.contact-details > a {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.contact-details > p:last-child {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label > span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--lime);
  background: rgba(255, 255, 255, 0.11);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  width: fit-content;
  margin-top: 4px;
  background: var(--lime);
  color: var(--forest-deep);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.form-trap {
  position: absolute;
  left: -10000px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 80px max(32px, calc((100vw - 1240px) / 2)) 28px;
  background: #061a13;
  color: var(--white);
}

.brand-light,
.brand-light small {
  color: var(--white);
}

.footer-brand > p {
  max-width: 340px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.55);
}

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

.footer-nav > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-nav span {
  margin-bottom: 7px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Full Our Story page */
.story-page {
  background: var(--paper);
}

.story-page-hero {
  position: relative;
  display: flex;
  min-height: 840px;
  align-items: end;
  overflow: hidden;
  padding: 170px max(32px, calc((100vw - 1240px) / 2)) 78px;
  color: var(--white);
}

.story-page-hero > img,
.story-page-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.story-page-hero > img {
  object-fit: cover;
  object-position: center 42%;
}

.story-page-overlay {
  background:
    linear-gradient(180deg, rgba(6, 26, 19, 0.08) 15%, rgba(6, 26, 19, 0.88) 92%),
    linear-gradient(90deg, rgba(6, 26, 19, 0.55), transparent 68%);
}

.story-page-title {
  position: relative;
  z-index: 1;
  max-width: 1000px;
}

.story-page-title h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(56px, 7.6vw, 108px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

.story-page-title h1 em {
  color: var(--lime);
  font-family: Georgia, serif;
  font-weight: 400;
}

.story-page-title > p:last-child {
  max-width: 670px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
}

.story-scroll {
  position: absolute;
  right: max(32px, calc((100vw - 1240px) / 2));
  bottom: 82px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  padding-bottom: 5px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.story-chapter {
  padding: 120px max(32px, calc((100vw - 1240px) / 2));
}

.story-chapter-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 13px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-chapter-label strong {
  color: var(--muted);
}

.story-chapter-label.light {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--lime);
}

.story-chapter-label.light strong {
  color: rgba(255, 255, 255, 0.55);
}

.story-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 90px;
  align-items: start;
  margin: 82px 0 72px;
}

.story-lead {
  margin: 0;
  color: var(--forest-deep);
  font-family: var(--display);
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.07;
}

.story-prose {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.story-prose p:last-child {
  margin-bottom: 0;
}

.story-landscape {
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
  background: var(--forest);
}

.story-landscape img {
  width: 100%;
  height: min(620px, 52vw);
  object-fit: cover;
}

.story-landscape figcaption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.story-landscape figcaption span:first-child {
  color: var(--lime);
  font-weight: 800;
}

.story-crisis {
  padding: 120px max(32px, calc((100vw - 1240px) / 2));
  background: var(--forest-deep);
  color: var(--white);
}

.story-crisis-heading {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 60px;
  margin: 82px 0 70px;
}

.story-crisis-heading h2,
.story-company-heading h2,
.story-response h2,
.story-film-heading h2,
.story-closing h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 1;
}

.story-crisis-heading h2 {
  color: var(--white);
}

.story-crisis-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 70px;
  align-items: center;
}

.story-crisis-grid figure {
  height: 620px;
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
}

.story-crisis-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-crisis-grid .story-prose {
  color: rgba(255, 255, 255, 0.68);
}

.story-company {
  background: var(--sand);
}

.story-company-heading {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 60px;
  margin: 82px 0 72px;
}

.story-company-heading h2,
.story-response h2,
.story-closing h2 {
  color: var(--forest-deep);
}

.story-timeline {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 0;
  list-style: none;
}

.story-timeline li {
  display: grid;
  grid-template-columns: 0.35fr 1.65fr;
  gap: 50px;
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}

.story-timeline time {
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.story-timeline div {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 40px;
  align-items: baseline;
}

.story-timeline h3 {
  margin: 0;
  color: var(--forest-deep);
  font-size: 24px;
  letter-spacing: -0.04em;
}

.story-timeline p {
  margin: 0;
  color: var(--muted);
}

.story-response {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: 80px;
  align-items: center;
  padding: 120px max(32px, calc((100vw - 1240px) / 2));
}

.story-response-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
}

.story-response-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(40px, 5vw, 67px);
}

.story-response-copy .button {
  margin-top: 18px;
}

.story-response-visual {
  position: relative;
  min-height: 650px;
}

.story-response-visual img {
  width: 100%;
  height: 650px;
  border-radius: 260px 260px 22px 22px;
  object-fit: cover;
}

.story-response-visual > div {
  position: absolute;
  right: -18px;
  bottom: 38px;
  display: grid;
  max-width: 260px;
  border: 5px solid var(--paper);
  border-radius: 18px;
  padding: 18px;
  background: var(--lime);
  color: var(--forest-deep);
  transform: rotate(-2deg);
}

.story-response-visual span {
  font-size: 12px;
}

.story-film {
  padding: 120px max(32px, calc((100vw - 1240px) / 2));
  background: var(--forest);
  color: var(--white);
}

.story-film-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 60px;
}

.story-film-heading h2 {
  color: var(--white);
}

.story-film-frame {
  overflow: hidden;
  border-radius: 24px;
  background: var(--forest-deep);
}

.story-film-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.story-closing {
  display: grid;
  justify-items: center;
  padding: 130px max(24px, calc((100vw - 1050px) / 2));
  background: var(--lime);
  text-align: center;
}

.story-closing h2 {
  max-width: 1000px;
}

.story-closing > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 42px;
}

/* Blog archive */
.blog-archive {
  min-height: 100vh;
  padding-top: 112px;
}

.archive-hero {
  display: grid;
  min-height: 570px;
  align-content: end;
  padding: 80px max(32px, calc((100vw - 1240px) / 2));
  background:
    linear-gradient(90deg, rgba(9, 40, 29, 0.93), rgba(9, 40, 29, 0.2)),
    url("/assets/images/hero.jpg") center / cover;
}

.archive-hero h1,
.archive-hero h1 em {
  color: var(--white);
}

.archive-hero > p:last-child {
  max-width: 610px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.archive-list {
  padding: 90px max(32px, calc((100vw - 1240px) / 2)) 120px;
}

.archive-count {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.archive-grid .post-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.archive-grid .post-card-featured .post-image {
  height: 100%;
  min-height: 440px;
}

.archive-grid .post-card-featured .post-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.archive-grid .post-card-featured h3 {
  font-size: clamp(30px, 4vw, 48px);
}

/* Article */
.article-page {
  padding-top: 112px;
}

.article-hero {
  display: grid;
  justify-items: center;
  padding: 80px max(24px, calc((100vw - 1040px) / 2)) 64px;
  text-align: center;
}

.article-back {
  margin-bottom: 42px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-meta span:first-child {
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--lime-soft);
  color: var(--forest);
}

.article-hero h1 {
  max-width: 1040px;
  margin: 0;
  color: var(--forest-deep);
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.article-hero > p {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.article-image {
  width: min(1240px, calc(100vw - 64px));
  height: min(680px, 60vw);
  overflow: hidden;
  margin: 0 auto;
  border-radius: 24px;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-layout {
  display: grid;
  width: min(980px, calc(100vw - 48px));
  grid-template-columns: 120px minmax(0, 760px);
  gap: 70px;
  margin: 84px auto 120px;
}

.article-layout aside {
  display: grid;
  align-content: start;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.article-layout aside span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-layout aside a {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.article-body {
  color: #31463d;
  font-size: 19px;
  line-height: 1.82;
}

.article-content-column {
  min-width: 0;
}

.article-author {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 72px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.article-author-image {
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--lime-soft);
  color: var(--forest);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
}

.article-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-author .eyebrow {
  margin-bottom: 4px;
}

.article-author h2 {
  margin: 0;
  color: var(--forest-deep);
  font-size: 27px;
  letter-spacing: -0.04em;
}

.article-author strong {
  display: block;
  margin-top: 2px;
  color: var(--green);
  font-size: 13px;
}

.article-author > div:last-child > p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.article-body > p:first-child {
  color: var(--ink);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.65;
}

.article-body h2 {
  margin: 56px 0 18px;
  color: var(--forest-deep);
  font-size: 35px;
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.article-body h3 {
  margin: 36px 0 12px;
  color: var(--forest);
  font-size: 24px;
}

.article-body ul {
  display: grid;
  gap: 9px;
  margin: 24px 0;
  padding-left: 24px;
}

.article-body li::marker {
  color: var(--orange);
}

.related-posts {
  display: grid;
  gap: 52px;
  padding: 100px max(32px, calc((100vw - 1240px) / 2));
  background: var(--sand);
}

.related-posts .blog-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compact-footer {
  padding-top: 64px;
}

.not-found {
  display: grid;
  min-height: 72vh;
  place-content: center;
  padding: 150px 24px 80px;
  text-align: center;
}

.not-found h1 {
  margin: 0;
  color: var(--forest-deep);
  font-size: clamp(48px, 8vw, 88px);
  letter-spacing: -0.07em;
  line-height: 1;
}

.not-found > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.not-found > div {
  display: flex;
  gap: 10px;
  justify-content: center;
}

@media (max-width: 1080px) {
  :root {
    --page: min(100% - 48px, 960px);
  }

  .hero {
    min-height: 730px;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(54px, 8vw, 82px);
  }

  .hero-visual,
  .hero-visual > img {
    min-height: 540px;
    height: 540px;
  }

  .contact-section {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    padding-left: 40px;
  }
}

@media (max-width: 820px) {
  :root {
    --page: calc(100vw - 36px);
  }

  .site-header {
    min-height: 68px;
    border-radius: 15px;
    padding-left: 13px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 6px;
    border: 0;
    border-radius: 12px;
    background: var(--forest);
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    transition: transform 180ms ease;
  }

  .nav-toggle.open span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle.open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(251, 250, 245, 0.98);
    box-shadow: 0 20px 44px rgba(9, 40, 29, 0.18);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .site-nav .nav-cta {
    margin: 4px 0 0;
    text-align: center;
  }

  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    padding-top: 130px;
  }

  .hero-copy {
    min-width: 0;
    padding: 24px 0 12px;
  }

  .hero h1,
  .story-page-title h1,
  .archive-hero h1,
  .article-hero h1 {
    overflow-wrap: anywhere;
  }

  .hero-visual,
  .hero-visual > img {
    min-height: 500px;
    height: 500px;
  }

  .hero-visual > img {
    border-radius: 200px 200px 22px 22px;
  }

  .hero-location {
    left: 14px;
  }

  .hero-badge {
    right: 8px;
  }

  .impact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .impact-strip div:nth-child(2) {
    border-right: 0;
  }

  .impact-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .section {
    padding: 86px 24px;
  }

  .intro-heading,
  .pathway-head,
  .mission-copy {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 52px;
  }

  .service-grid,
  .story-grid,
  .story-intro-grid,
  .story-crisis-grid,
  .story-response,
  .mission-panels,
  .blog-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-featured {
    min-height: 480px;
    grid-row: auto;
  }

  .pathway-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .pathway-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  }

  .story-grid {
    gap: 52px;
  }

  .story-page-hero {
    min-height: 760px;
  }

  .story-page-title {
    max-width: 720px;
  }

  .story-scroll {
    display: none;
  }

  .story-intro-grid,
  .story-crisis-grid,
  .story-response {
    gap: 52px;
  }

  .story-crisis-heading,
  .story-company-heading {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 56px;
  }

  .story-timeline li {
    grid-template-columns: 0.35fr 1.65fr;
    gap: 28px;
  }

  .story-timeline div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .story-response-visual,
  .story-response-visual img {
    min-height: 560px;
    height: 560px;
  }

  .story-image img {
    height: 560px;
  }

  .field-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 470px 350px 350px;
  }

  .gallery-wide {
    grid-row: auto;
  }

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

  .director-card:nth-child(odd) {
    border-right: 0;
  }

  .director-card:nth-child(even) {
    padding-left: 0;
  }

  .contact-visual {
    min-height: 560px;
  }

  .contact-content {
    grid-template-columns: 0.7fr 1.3fr;
    padding: 70px 32px;
  }

  .site-footer {
    gap: 52px;
  }

  .archive-grid .post-card-featured {
    grid-template-columns: 1fr;
  }

  .archive-grid .post-card-featured .post-image {
    min-height: 340px;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .article-layout aside {
    display: flex;
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
  }

  .site-header {
    top: 10px;
    width: calc(100vw - 20px);
  }

  .brand strong {
    font-size: 16px;
  }

  .hero {
    gap: 28px;
    padding: 114px 0 54px;
  }

  .hero h1,
  .archive-hero h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .story-page-hero {
    min-height: 690px;
    padding: 140px 20px 48px;
  }

  .story-page-title h1 {
    font-size: clamp(46px, 14vw, 64px);
  }

  .story-page-title > p:last-child {
    font-size: 16px;
  }

  .story-chapter,
  .story-crisis,
  .story-response,
  .story-film {
    padding: 82px 20px;
  }

  .story-intro-grid {
    margin: 56px 0 48px;
  }

  .story-lead {
    font-size: 34px;
  }

  .story-prose {
    font-size: 16px;
  }

  .story-landscape img {
    height: 360px;
  }

  .story-landscape figcaption {
    align-items: start;
    flex-direction: column;
    gap: 3px;
  }

  .story-crisis-heading h2,
  .story-company-heading h2,
  .story-film-heading h2,
  .story-closing h2 {
    font-size: 40px;
  }

  .story-crisis-grid figure {
    height: 430px;
  }

  .story-timeline li,
  .story-timeline div {
    grid-template-columns: 1fr;
  }

  .story-timeline li {
    gap: 10px;
    padding: 28px 0;
  }

  .story-response-visual,
  .story-response-visual img {
    min-height: 460px;
    height: 460px;
  }

  .story-response-visual > div {
    right: 6px;
  }

  .story-film-heading {
    align-items: start;
    flex-direction: column;
    gap: 5px;
  }

  .story-closing {
    padding: 90px 20px;
  }

  .story-closing > div,
  .story-closing .button {
    width: 100%;
  }

  .mobile-title-break {
    display: block;
  }

  .hero-copy > p {
    margin-top: 26px;
    font-size: 17px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-visual,
  .hero-visual > img {
    min-height: 420px;
    height: 420px;
  }

  .hero-badge {
    right: 4px;
    bottom: 42px;
    width: 190px;
  }

  .hero-location {
    bottom: -28px;
    left: 8px;
    width: 160px;
  }

  .impact-strip div {
    min-height: 140px;
    padding: 22px;
  }

  .impact-strip strong {
    font-size: 34px;
  }

  .intro-heading h2,
  .story-copy h2,
  .mission-copy h2,
  .field-head h2,
  .governance-head h2,
  .blog-head h2,
  .related-posts h2 {
    font-size: 40px;
  }

  .intro-copy {
    margin-bottom: 48px;
  }

  .service-card {
    min-height: 280px;
  }

  .service-featured {
    min-height: 450px;
  }

  .pathway-list {
    grid-template-columns: 1fr;
  }

  .pathway-list li,
  .pathway-list li:last-child {
    min-height: 190px;
    border-right: 0;
  }

  .story-image img {
    height: 430px;
  }

  .image-caption {
    right: 10px;
  }

  .mission-panels article {
    min-height: 280px;
  }

  .mission-panels span {
    margin-bottom: 60px;
  }

  .field-head,
  .blog-head,
  .governance-head {
    align-items: start;
    flex-direction: column;
    margin-top: 52px;
  }

  .field-gallery {
    grid-template-rows: 400px 330px 270px;
  }

  .director-card {
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding-right: 0;
  }

  .post-image {
    height: 220px;
  }

  .contact-visual {
    min-height: 480px;
  }

  .contact-visual > div {
    right: 24px;
    bottom: 30px;
    left: 24px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    padding: 64px 24px;
  }

  .form-row,
  .site-footer,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 60px;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .archive-hero {
    min-height: 500px;
    padding: 60px 24px;
  }

  .archive-list {
    padding: 70px 20px 90px;
  }

  .archive-grid,
  .related-posts .blog-grid {
    grid-template-columns: 1fr;
  }

  .archive-grid .post-card-featured {
    grid-column: auto;
  }

  .archive-grid .post-card-featured .post-image {
    min-height: 260px;
  }

  .archive-grid .post-card-featured .post-content {
    padding: 24px;
  }

  .article-page {
    padding-top: 90px;
  }

  .article-hero {
    padding: 64px 20px 42px;
  }

  .article-back {
    margin-bottom: 30px;
  }

  .article-hero h1 {
    font-size: 43px;
  }

  .article-hero > p {
    font-size: 17px;
  }

  .article-image {
    width: calc(100vw - 24px);
    height: 62vw;
    border-radius: 16px;
  }

  .article-layout {
    width: calc(100vw - 40px);
    margin: 54px auto 86px;
  }

  .article-body {
    font-size: 17px;
  }

  .article-body > p:first-child {
    font-size: 20px;
  }

  .article-body h2 {
    font-size: 29px;
  }

  .article-author {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
    margin-top: 54px;
  }

  .article-author-image {
    width: 64px;
    height: 64px;
    font-size: 18px;
  }

  .related-posts {
    padding: 76px 20px;
  }

  .not-found > div {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
