:root {
  --forest-950: #062316;
  --forest-900: #093321;
  --forest-800: #0b3d2e;
  --forest-700: #11543d;
  --forest-600: #18744f;
  --leaf-500: #38b46c;
  --leaf-400: #72d66f;
  --moss-100: #eef8e9;
  --moss-50: #f6fbf2;
  --sand-100: #fbf4e4;
  --gold-500: #d8a022;
  --earth-700: #754d28;
  --slate-900: #0d1f18;
  --slate-700: #35463e;
  --slate-500: #6b7d73;
  --white: #ffffff;
  --border: rgba(13, 31, 24, 0.11);
  --shadow-soft: 0 24px 70px rgba(6, 35, 22, 0.14);
  --shadow-card: 0 20px 48px rgba(12, 60, 38, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--slate-900);
  background:
    radial-gradient(circle at top left, rgba(114, 214, 111, 0.16), transparent 34rem),
    linear-gradient(180deg, #fbfff7 0%, #f2f8ef 42%, #ffffff 100%);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.container {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

.icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-height);
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(6, 35, 22, 0.11);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.34), transparent 24px),
    linear-gradient(135deg, var(--leaf-500), var(--forest-800));
  box-shadow: 0 14px 30px rgba(17, 84, 61, 0.24);
  font-size: 29px;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--forest-950);
}

.brand-text small {
  margin-top: 5px;
  color: var(--forest-700);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.53);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.desktop-nav a {
  padding: 11px 15px;
  border-radius: 999px;
  color: var(--forest-900);
  font-size: 14px;
  font-weight: 800;
  transition: 0.2s ease;
}

.desktop-nav a:hover {
  background: var(--forest-800);
  color: var(--white);
}

.header-cta {
  min-width: max-content;
  padding: 14px 20px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--forest-800), var(--leaf-500));
  box-shadow: 0 18px 38px rgba(17, 84, 61, 0.24);
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: var(--forest-800);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: 0.2s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  width: min(100% - 30px, 520px);
  margin: -8px auto 0;
  padding: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 0 0 26px 26px;
  box-shadow: var(--shadow-soft);
}

.mobile-nav.open {
  display: grid;
  gap: 6px;
}

.mobile-nav a {
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--forest-900);
  font-weight: 900;
}

.mobile-nav a:hover,
.mobile-cta {
  background: var(--moss-100);
}

.mobile-cta {
  color: var(--forest-800);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-height);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(120deg, rgba(6, 35, 22, 0.88), rgba(6, 35, 22, 0.52)),
    url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?q=80&w=1800&auto=format&fit=crop") center/cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 88% 18%, rgba(114, 214, 111, 0.28), transparent 24rem),
    linear-gradient(180deg, transparent 68%, var(--moss-50) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.13);
  filter: blur(0.2px);
  animation: float 7s ease-in-out infinite;
}

.icon-one {
  top: 18%;
  right: 8%;
  font-size: 100px;
}

.icon-two {
  bottom: 20%;
  left: 5%;
  font-size: 76px;
  animation-delay: 1.4s;
}

.icon-three {
  top: 38%;
  left: 45%;
  font-size: 56px;
  animation-delay: 2.1s;
}

.hero-grid {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: 56px;
  padding-block: 76px 110px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--forest-700);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow.light {
  color: var(--leaf-400);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2.1vw, 21px);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 16px 22px;
  font-weight: 950;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  color: var(--forest-950);
  background: linear-gradient(135deg, var(--leaf-400), #e8ff9a);
  box-shadow: 0 22px 48px rgba(114, 214, 111, 0.28);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.btn-light {
  color: var(--forest-950);
  background: var(--white);
  box-shadow: 0 18px 38px rgba(6, 35, 22, 0.18);
}

.full-width {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 850;
}

.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}

.hero-card-image {
  height: 230px;
  background:
    linear-gradient(180deg, transparent, rgba(6, 35, 22, 0.75)),
    url("https://images.unsplash.com/photo-1511497584788-876760111969?q=80&w=1200&auto=format&fit=crop") center/cover;
}

.hero-card-content {
  padding: 28px;
}

.card-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--leaf-400);
  background: rgba(114, 214, 111, 0.12);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.hero-card h2 {
  margin-bottom: 12px;
  font-size: clamp(27px, 3.2vw, 38px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.mini-stats div {
  padding: 16px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.mini-stats strong,
.mini-stats span {
  display: block;
}

.mini-stats strong {
  color: var(--leaf-400);
  font-size: 18px;
}

.mini-stats span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
}

.impact-strip {
  position: relative;
  z-index: 3;
  margin-top: -54px;
}

.impact-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.impact-strip-grid div {
  padding: 25px;
  border-right: 1px solid var(--border);
}

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

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

.impact-strip-grid strong {
  margin-bottom: 6px;
  color: var(--forest-900);
  font-size: clamp(21px, 2.7vw, 31px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.impact-strip-grid span {
  color: var(--slate-500);
  font-size: 14px;
  font-weight: 750;
}

.section {
  padding-block: 104px;
}

.section-white {
  background:
    radial-gradient(circle at right top, rgba(56, 180, 108, 0.11), transparent 28rem),
    var(--white);
}

.section-sand {
  background:
    radial-gradient(circle at left bottom, rgba(216, 160, 34, 0.14), transparent 32rem),
    linear-gradient(180deg, var(--sand-100), #fffaf0);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 42px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.split-content h2,
.manifesto-card h2,
.contact-info h2 {
  margin-bottom: 16px;
  color: var(--forest-950);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.section-heading p,
.large-text,
.contact-info p {
  color: var(--slate-500);
  font-size: 18px;
  line-height: 1.75;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.mission-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.mission-card::after {
  content: "";
  position: absolute;
  inset: auto -24px -44px auto;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: rgba(56, 180, 108, 0.12);
}

.mission-card:hover,
.blog-card:hover,
.social-card:hover,
.photo-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(12, 60, 38, 0.17);
}

.card-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 20px;
  color: var(--forest-800);
  background: linear-gradient(135deg, #e8f9de, #d6f5cc);
  font-size: 30px;
}

.mission-card h3 {
  margin-bottom: 12px;
  color: var(--forest-950);
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.mission-card p {
  position: relative;
  z-index: 1;
  color: var(--slate-500);
  line-height: 1.7;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 52px;
  align-items: center;
}

.action-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.action-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(17, 84, 61, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--forest-900);
  font-weight: 850;
  box-shadow: 0 14px 30px rgba(117, 77, 40, 0.06);
}

.action-item .icon {
  margin-top: 2px;
  color: var(--leaf-500);
  font-size: 19px;
}

.project-stack {
  position: relative;
  display: grid;
  gap: 18px;
}

.project-stack::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -50px;
  top: -40px;
  z-index: 0;
  border-radius: 50%;
  background: rgba(56, 180, 108, 0.18);
}

.photo-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: 270px;
  box-shadow: var(--shadow-soft);
  transition: 0.22s ease;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.03);
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(6, 35, 22, 0.88));
}

.photo-card div {
  position: absolute;
  inset: auto 22px 22px 22px;
  z-index: 2;
  color: var(--white);
}

.photo-card span,
.photo-card strong {
  display: block;
}

.photo-card span {
  margin-bottom: 7px;
  color: var(--leaf-400);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.photo-card strong {
  max-width: 440px;
  font-size: 27px;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.small-photo {
  width: min(82%, 430px);
  min-height: 230px;
  margin-top: -84px;
  margin-left: auto;
  border: 10px solid #fff8e9;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.impact-card {
  min-height: 320px;
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.impact-card span {
  display: inline-flex;
  margin-bottom: 72px;
  color: inherit;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.impact-card h3 {
  margin-bottom: 12px;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.045em;
}

.impact-card p {
  margin-bottom: 0;
  line-height: 1.7;
}

.impact-card.dark {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(114, 214, 111, 0.2), transparent 12rem),
    var(--forest-950);
}

.impact-card.green {
  color: var(--white);
  background: linear-gradient(135deg, var(--forest-700), var(--leaf-500));
}

.impact-card.gold {
  color: var(--forest-950);
  background: linear-gradient(135deg, #f8e7b2, #dff8c3);
}

.impact-card.dark p,
.impact-card.green p {
  color: rgba(255, 255, 255, 0.78);
}

.impact-card.gold p {
  color: rgba(6, 35, 22, 0.68);
}

.manifesto-section {
  padding-block: 42px 104px;
}

.manifesto-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(6, 35, 22, 0.9), rgba(17, 84, 61, 0.82)),
    url("https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?q=80&w=1600&auto=format&fit=crop") center/cover;
  box-shadow: var(--shadow-soft);
}

.manifesto-card h2 {
  max-width: 860px;
  margin-bottom: 0;
  color: var(--white);
}

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

.blog-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: 0.22s ease;
}

.blog-image-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.blog-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image-wrap img {
  transform: scale(1.06);
}

.blog-body {
  padding: 25px;
}

.blog-kicker,
.modal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--forest-700);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.blog-body h3 {
  margin-bottom: 12px;
  color: var(--forest-950);
  font-size: 25px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.blog-body p {
  color: var(--slate-500);
  line-height: 1.7;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  padding: 0;
  color: var(--forest-700);
  background: transparent;
  font-weight: 950;
}

.contact-section {
  padding-block: 104px;
  color: var(--white);
  background:
    radial-gradient(circle at left top, rgba(114, 214, 111, 0.22), transparent 30rem),
    linear-gradient(145deg, var(--forest-950), var(--forest-800));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.7fr);
  gap: 52px;
  align-items: start;
}

.contact-info h2 {
  color: var(--white);
}

.contact-info p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 850;
}

.contact-list .icon {
  color: var(--leaf-400);
  font-size: 20px;
}

.social-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.social-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  min-width: 155px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  transition: 0.22s ease;
}

.social-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--white);
  font-size: 22px;
  background: var(--forest-600);
}

.social-card h3 {
  margin-bottom: 0;
  color: var(--white);
  font-size: 17px;
}

.social-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.5;
}

.social-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--leaf-400);
  font-size: 13px;
  font-weight: 950;
}

.facebook {
  background: #1877f2;
}

.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.linkedin {
  background: #0a66c2;
}

.contact-form {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.contact-form h3 {
  margin-bottom: 22px;
  font-size: 29px;
  letter-spacing: -0.04em;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  outline: none;
  border-radius: 16px;
  padding: 15px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transition: 0.18s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.contact-form select option {
  color: var(--slate-900);
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--leaf-400);
  box-shadow: 0 0 0 4px rgba(114, 214, 111, 0.14);
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 35, 22, 0.72);
  backdrop-filter: blur(10px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 860px);
  max-height: 92vh;
  overflow: auto;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.35);
  animation: modalIn 0.24s ease both;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--forest-950);
  background: rgba(255, 255, 255, 0.86);
  font-size: 28px;
  line-height: 1;
}

.modal-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.modal-body {
  padding: 34px;
}

.modal-body h2 {
  margin-bottom: 12px;
  color: var(--forest-950);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.modal-description {
  color: var(--slate-500);
  line-height: 1.7;
}

.article-box {
  margin-top: 22px;
  padding: 22px;
  border-radius: 20px;
  background: var(--moss-50);
}

.article-box p {
  margin: 0;
  color: var(--slate-700);
  line-height: 1.8;
}

.site-footer {
  padding-block: 30px;
  color: rgba(255, 255, 255, 0.68);
  background: var(--forest-950);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
}

.footer-inner p {
  margin: 0;
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.visible {
  animation: revealIn 0.72s cubic-bezier(0.21, 0.7, 0.23, 1) forwards;
}

.delay-1.visible {
  animation-delay: 0.12s;
}

.delay-2.visible {
  animation-delay: 0.24s;
}

@keyframes revealIn {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes float {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -18px, 0) rotate(4deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

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

  .hero-grid {
    min-height: auto;
  }

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

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

  .impact-strip-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .mission-grid {
    gap: 16px;
  }

  .manifesto-card {
    grid-template-columns: 1fr;
  }

  .small-photo {
    margin-top: -54px;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    font-size: 24px;
  }

  .brand-text strong {
    font-size: 14px;
  }

  .brand-text small {
    font-size: 9px;
    max-width: 185px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-grid {
    padding-block: 58px 96px;
    gap: 32px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

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

  .trust-row span {
    flex: 1 1 140px;
    justify-content: center;
  }

  .hero-card-image {
    height: 190px;
  }

  .hero-card-content,
  .contact-form,
  .modal-body {
    padding: 23px;
  }

  .mini-stats,
  .mission-grid,
  .blog-grid,
  .impact-grid,
  .impact-strip-grid,
  .action-list {
    grid-template-columns: 1fr;
  }

  .impact-strip-grid div,
  .impact-strip-grid div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

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

  .section {
    padding-block: 76px;
  }

  .section-heading h2,
  .split-content h2,
  .manifesto-card h2,
  .contact-info h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .mission-card,
  .impact-card {
    min-height: auto;
  }

  .small-photo {
    width: 92%;
    min-height: 210px;
  }

  .blog-image-wrap,
  .modal-image {
    height: 230px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .modal {
    align-items: end;
    padding: 10px;
  }

  .modal-card {
    border-radius: 28px 28px 0 0;
    max-height: 94vh;
  }
}
