:root {
  --forest: #2c5530;
  --leaf: #8cc63e;
  --moss: #ffd700;
  --earth: #659832;
  --clay: #8cc63e;
  --ink: #24352a;
  --muted: #64756a;
  --paper: #ffffff;
  --mist: #f4f9ef;
  --white: #fff;
  --line: rgba(29, 39, 33, .12);
  --shadow: 0 22px 60px rgba(44, 85, 48, .16);
}

* { box-sizing: border-box; }

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

img { max-width: 100%; }
a { color: inherit; }

.display-font { font-family: "Playfair Display", Georgia, serif; }

.teg-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 26px rgba(44,85,48,.08);
}

.teg-header .navbar { min-height: 92px; padding: 12px 0; }
.navbar-brand { display: flex; align-items: center; color: var(--forest); }
.navbar-brand img { width: 112px; height: 62px; object-fit: contain; filter: none; }
.navbar-toggler { border: 1px solid var(--line); color: var(--forest); }
.navbar-nav {
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(44,85,48,.1);
  border-radius: 999px;
  background: var(--mist);
}
.nav-link {
  color: var(--forest);
  font-weight: 800;
  font-size: .87rem;
  padding: 10px 14px !important;
  border-radius: 999px;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: var(--forest); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-donate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--leaf), var(--earth));
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.nav-donate:hover, .nav-donate.active { color: var(--white); filter: brightness(.95); box-shadow: 0 0 0 3px rgba(255,215,0,.25); }
.nav-partner {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid var(--forest);
  border-radius: 999px;
  color: var(--forest);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.nav-partner:hover { color: var(--white); background: var(--forest); }

.hero {
  min-height: min(720px, calc(100vh - 77px));
  display: grid;
  align-items: end;
  position: relative;
  color: var(--white);
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(21, 41, 23, .65), rgba(21, 41, 23, .2));
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 20%;
  background: linear-gradient(0deg, rgba(21, 41, 23, .55), transparent);
  z-index: 0;
}

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

.hero-inner { padding: clamp(42px, 8vh, 76px) 0 clamp(38px, 7vh, 62px); max-width: 900px; }
.eyebrow { color: var(--moss); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; }
.hero h1, .page-hero h1 { font: 700 clamp(1.8rem, 4.5vw, 3rem)/1.1 "Playfair Display", Georgia, serif; letter-spacing: -0.01em; margin: 14px 0 18px; }
.hero p { max-width: 760px; font-size: clamp(1.05rem, 2vw, 1.35rem); color: rgba(255, 255, 255, .9); }

.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.btn-teg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
}
.btn-teg.primary { background: linear-gradient(135deg, var(--leaf), var(--earth)); color: var(--white); }
.btn-teg.secondary { color: var(--white); border-color: rgba(255, 255, 255, .45); }
.btn-teg.dark { background: var(--forest); color: var(--white); }
.btn-teg.light { background: var(--white); color: var(--forest); border-color: var(--line); }

.angle-label {
  display: inline-block;
  padding: 8px 20px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--leaf);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
  transform: skew(-10deg);
}
.angle-label span, .angle-label.dark { transform: skew(10deg); }
.angle-label.dark { background: #050605; color: var(--white); }

.section { padding: clamp(68px, 8vw, 116px) 0; }
.section.alt { background: var(--mist); }
.section.forest { background: var(--forest); color: var(--white); }
.section-intro { max-width: 760px; margin-bottom: 38px; }
.section-intro.center { text-align: center; margin-left: auto; margin-right: auto; }
.section h2 { font: 700 clamp(2rem, 4vw, 3.4rem)/1.08 "Playfair Display", Georgia, serif; margin: 10px 0 16px; color: inherit; }
.lead-text { color: var(--muted); font-size: 1.08rem; }
.forest .lead-text { color: rgba(255, 255, 255, .78); }

.split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr); gap: clamp(30px, 5vw, 70px); align-items: center; }
.photo-stack { position: relative; }
.photo-main { border-radius: 8px; min-height: 430px; width: 100%; object-fit: cover; box-shadow: var(--shadow); }
.photo-note {
  position: absolute;
  left: -18px;
  bottom: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 6px solid var(--leaf);
  max-width: 310px;
  padding: 18px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 700;
}

.stat-grid, .card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.stat, .content-card, .person-card, .news-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 32px rgba(23, 61, 42, .08);
}
.stat strong { display: block; color: var(--forest); font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; }
.stat span { color: var(--muted); font-weight: 700; }
.forest .stat { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }
.forest .stat strong { color: var(--moss); }
.forest .stat span { color: rgba(255,255,255,.78); }

.content-card h3, .person-card h3, .news-card h3 { font-weight: 800; color: var(--forest); margin-bottom: 12px; }
.content-card p, .news-card p { color: var(--muted); margin-bottom: 0; }
.content-card .icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 8px; background: var(--mist); color: var(--forest); margin-bottom: 18px; }
.content-card.emphasis { background: var(--forest); color: var(--white); }
.content-card.emphasis h3 { color: var(--white); }
.content-card.emphasis p { color: rgba(255,255,255,.78); }

.timeline { border-left: 3px solid var(--leaf); padding-left: 26px; display: grid; gap: 22px; }
.timeline-item { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 22px; }
.timeline-item b { color: var(--leaf); display: block; margin-bottom: 6px; }

.page-hero {
  color: var(--white);
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: min(560px, calc(100vh - 77px));
  display: grid;
  align-items: center;
  padding: clamp(54px, 9vh, 86px) 0 clamp(44px, 8vh, 72px);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(21, 41, 23, .65), rgba(21, 41, 23, .2));
  z-index: 0;
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero p { max-width: 760px; color: rgba(255,255,255,.86); font-size: 1.18rem; }
.compact-hero { min-height: min(420px, calc(100vh - 92px)); }
.text-brand {
  color: var(--moss);
  background: linear-gradient(90deg, var(--leaf), var(--moss));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.quote-panel {
  padding: clamp(28px, 5vw, 54px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.quote-panel p { font-size: 1.08rem; }

.person-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; object-position: center top; background: var(--mist); border-radius: 6px; margin-bottom: 18px; }
.news-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 6px; margin-bottom: 18px; }
.person-card a, .news-card a.inline { color: var(--forest); font-weight: 800; text-decoration: none; }

.partner-strip { display: grid; grid-template-columns: repeat(5, minmax(80px, 1fr)); gap: 16px; align-items: center; }
.partner-strip img { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 14px; height: 92px; width: 100%; object-fit: contain; }

.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.meta { color: var(--muted); font-size: .9rem; font-weight: 700; }
.exhibition-band { background: var(--forest); color: var(--white); border-radius: 8px; padding: clamp(28px, 5vw, 54px); }

.editorial-hero {
  padding: clamp(70px, 11vw, 128px) 0 clamp(48px, 7vw, 82px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.editorial-hero h1 {
  max-width: 900px;
  font: 700 clamp(2.7rem, 7vw, 6rem)/.95 "Playfair Display", Georgia, serif;
  margin: 0 0 22px;
  color: var(--forest);
}
.editorial-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}
.news-list-section { background: #fbfcf8; }
.featured-story {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  margin-bottom: clamp(54px, 7vw, 86px);
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(44,85,48,.1);
}
.featured-media {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: var(--mist);
}
.featured-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.featured-copy h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  font-weight: 900;
  margin: 12px 0 18px;
}
.featured-copy h2 a,
.article-card h3 a {
  color: inherit;
  text-decoration: none;
}
.featured-copy p { color: var(--muted); }
.story-meta {
  color: var(--leaf);
  font-size: .86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.story-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 14px;
  color: var(--forest);
  font-weight: 900;
  text-decoration: none;
}
.news-intro { margin-bottom: 26px; }
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.article-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(44,85,48,.08);
}
.article-card-image {
  display: block;
  overflow: hidden;
  background: var(--mist);
}
.article-card-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.article-card:hover .article-card-image img { transform: scale(1.04); }
.article-card-body { padding: 22px; }
.article-card h3 {
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.25;
  font-weight: 900;
}
.article-card p { color: var(--muted); }

.article-page { background: var(--white); }
.article-kicker {
  padding: clamp(54px, 8vw, 96px) 0 28px;
  background: #fbfcf8;
}
.back-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--forest);
  font-weight: 900;
  text-decoration: none;
}
.article-kicker h1 {
  max-width: 1020px;
  font: 700 clamp(2.2rem, 5.6vw, 5rem)/1 "Playfair Display", Georgia, serif;
  color: var(--forest);
  margin: 0 0 20px;
}
.article-kicker p {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}
.article-meta-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 26px;
  color: var(--muted);
  font-weight: 800;
}
.article-meta-row i { color: var(--leaf); }
.article-media-wrap { background: #fbfcf8; padding-bottom: clamp(42px, 6vw, 70px); }
.article-hero-image {
  width: 100%;
  max-height: 680px;
  object-fit: contain;
  display: block;
  border-radius: 18px;
  background: var(--mist);
  box-shadow: 0 24px 70px rgba(44,85,48,.14);
}
.article-read-section { padding: clamp(58px, 7vw, 92px) 0; }
.article-shell {
  display: grid;
  grid-template-columns: 110px minmax(0, 780px);
  gap: clamp(24px, 5vw, 56px);
  justify-content: center;
}
.article-aside { position: relative; }
.share-box {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 12px;
  justify-items: center;
  color: var(--muted);
  font-weight: 900;
}
.share-box a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--forest);
  text-decoration: none;
}
.article-body-clean {
  font-size: 1.08rem;
  line-height: 1.85;
  color: #26352b;
}
.article-body-clean > *:first-child { margin-top: 0; }
.article-body-clean p {
  margin-bottom: 1.35rem;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}
.article-body-clean li {
  margin-bottom: .55rem;
  text-align: justify;
  hyphens: auto;
}
.article-body-clean h2,
.article-body-clean h3,
.article-body-clean h4 {
  color: var(--forest);
  font-weight: 900;
  line-height: 1.18;
  margin: 2.2rem 0 1rem;
}
.article-body-clean h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.article-body-clean img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  margin: 2rem 0;
}
.article-body-clean blockquote {
  margin: 2rem 0;
  padding: 1.4rem 1.6rem;
  border-left: 5px solid var(--leaf);
  background: var(--mist);
  border-radius: 0 10px 10px 0;
  color: var(--forest);
  font-weight: 700;
}

.contact-panel-section {
  background: #20231f;
  color: var(--white);
  padding: clamp(70px, 8vw, 112px) 0;
}
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}
.contact-copy h2 {
  max-width: 650px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}
.contact-copy p {
  max-width: 630px;
  color: rgba(255,255,255,.68);
  font-size: 1.1rem;
}
.contact-methods { display: grid; gap: 18px; margin: 32px 0; }
.contact-method {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  color: var(--forest);
  text-decoration: none;
}
.contact-method i, .social-row a, .donate-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(140,198,62,.18);
  color: var(--leaf);
}
.contact-method b { display: block; color: var(--forest); }
.contact-method span { color: var(--muted); }
.social-row { display: flex; gap: 12px; flex-wrap: wrap; }
.social-row a { color: var(--forest); text-decoration: none; background: var(--mist); border: 1px solid var(--line); }

.contact-form-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 30px 80px rgba(0,0,0,.2);
}
.contact-form-card h2 { margin-bottom: 24px; font-weight: 900; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--forest);
  font-weight: 800;
}
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  min-height: 56px;
  padding: 0 18px;
  font: inherit;
}
.contact-form-card textarea { padding-top: 16px; resize: vertical; }
.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder { color: var(--muted); }
.contact-form-card button {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--leaf), var(--earth));
  color: var(--white);
  font-weight: 900;
}

.donate-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  max-width: 940px;
  margin: 0 auto 48px;
}
.donate-card {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
  padding: 38px 28px 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(44,85,48,.12);
}
.donate-card.recommended {
  border: 2px solid var(--leaf);
  background: var(--mist);
}
.donate-card.recommended > span {
  position: absolute;
  top: -13px;
  padding: 4px 16px;
  border-radius: 999px;
  background: var(--leaf);
  color: var(--white);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.donate-card h3 { margin: 6px 0 0; font-weight: 900; color: var(--ink); }
.donate-card p { color: var(--muted); }
.donate-note {
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 38px;
  border-radius: 14px;
  background: var(--mist);
}
.future-impact {
  padding: clamp(36px, 6vw, 70px);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--leaf), var(--forest));
  color: var(--white);
}
.future-impact .card-grid { margin-bottom: 34px; }
.future-impact article {
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}
.future-impact article i { color: var(--forest); font-size: 1.4rem; margin-bottom: 14px; }

.teg-footer {
  position: relative;
  margin-top: 110px;
  background: #151916;
  color: rgba(255,255,255,.72);
  padding: 118px 0 30px;
  border-top-left-radius: 54px;
  border-top-right-radius: 54px;
}
/* Newsletter moved to inline bootstrap grid */
.footer-logo { width: 92px; margin-bottom: 18px; }
.teg-footer h3 { color: var(--white); font-size: 1rem; font-weight: 800; margin-bottom: 16px; }
.teg-footer a { display: block; color: rgba(255,255,255,.78); text-decoration: none; margin-bottom: 8px; }
.teg-footer a:hover { color: var(--moss); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.2); border-radius: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 34px; padding-top: 22px; font-size: .9rem; }

@media (max-width: 991px) {
  .navbar-collapse { padding-top: 16px; }
  .navbar-collapse {
    margin-top: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 16px 40px rgba(44,85,48,.12);
  }
  .navbar-nav { align-items: stretch; border-radius: 16px; padding: 10px; }
  .nav-link { margin-left: 0; padding: 10px 14px !important; }
  .nav-actions { margin-top: 12px; align-items: stretch; flex-direction: column; }
  .nav-donate, .nav-partner { margin: 0; justify-content: center; }
  .footer-newsletter { grid-template-columns: 1fr; position: static; transform: none; width: auto; margin: -54px 20px 48px; }
  .teg-footer { padding-top: 70px; }
  .split { grid-template-columns: 1fr; }
  .stat-grid, .card-grid, .news-grid, .article-grid { grid-template-columns: 1fr 1fr; }
  .contact-panel { grid-template-columns: 1fr; }
  .donate-options { grid-template-columns: 1fr; }
  .featured-story { grid-template-columns: 1fr; }
  .article-shell { grid-template-columns: 1fr; }
  .article-aside { display: none; }
}

@media (max-width: 767px) {
  .container {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }
  .teg-header .navbar { min-height: 76px; padding: 8px 0; }
  .navbar-brand img { width: 96px; height: 54px; }
  .navbar-toggler {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
  }
  .navbar-nav {
    border-radius: 14px;
    background: var(--mist);
  }
  .nav-link {
    width: 100%;
    text-align: center;
    border-radius: 10px;
  }
  .nav-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .nav-donate,
  .nav-partner {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
  }
  .hero {
    min-height: auto;
    align-items: center;
    padding: 72px 0;
  }
  .hero::after { height: 55%; }
  .hero-inner {
    padding: 0;
    max-width: none;
  }
  .hero h1,
  .page-hero h1,
  .editorial-hero h1,
  .article-kicker h1 {
    font-size: clamp(2.15rem, 12vw, 3.5rem);
    line-height: 1.02;
  }
  .hero p,
  .page-hero p,
  .editorial-hero p,
  .article-kicker p {
    font-size: 1rem;
    line-height: 1.65;
  }
  .page-hero,
  .compact-hero {
    min-height: auto;
    padding: 72px 0 58px;
  }
  .editorial-hero {
    padding: 56px 0 42px;
  }
  .section {
    padding: 56px 0;
  }
  .section h2,
  .featured-copy h2 {
    font-size: clamp(1.85rem, 9vw, 2.65rem);
  }
  .angle-label {
    padding: 7px 14px;
    margin-bottom: 16px;
    font-size: .68rem;
    letter-spacing: .07em;
  }
  .actions {
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }
  .btn-teg {
    width: 100%;
    justify-content: center;
    min-height: 50px;
  }
  .split,
  .featured-story,
  .contact-panel {
    gap: 24px;
  }
  .featured-story {
    padding: 14px;
    border-radius: 14px;
  }
  .featured-media img,
  .article-card-image img {
    aspect-ratio: 16 / 11;
  }
  .article-card-body {
    padding: 18px;
  }
  .story-meta {
    font-size: .72rem;
    letter-spacing: .06em;
  }
  .article-kicker {
    padding: 50px 0 20px;
  }
  .article-meta-row {
    display: grid;
    gap: 10px;
    margin-top: 22px;
    font-size: .92rem;
  }
  .article-media-wrap {
    padding-bottom: 34px;
  }
  .article-hero-image {
    border-radius: 12px;
    max-height: none;
  }
  .article-read-section {
    padding: 48px 0;
  }
  .article-body-clean {
    font-size: 1rem;
    line-height: 1.82;
  }
  .article-body-clean p,
  .article-body-clean li {
    text-align: justify;
  }
  .article-body-clean h2,
  .article-body-clean h3,
  .article-body-clean h4 {
    text-align: left;
  }
  .photo-main {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .photo-note {
    position: static;
    margin-top: 14px;
    max-width: none;
  }
  .contact-panel-section {
    padding: 58px 0;
  }
  .contact-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .contact-method {
    grid-template-columns: 46px 1fr;
    gap: 12px;
  }
  .contact-method i,
  .social-row a,
  .donate-icon {
    width: 46px;
    height: 46px;
  }
  .contact-form-card {
    padding: 22px;
  }
  .donate-card,
  .donate-note {
    padding: 30px 20px;
  }
  .future-impact {
    padding: 28px 18px;
    border-radius: 14px;
  }
  .footer-newsletter {
    margin: -44px 14px 42px;
    padding: 24px 18px;
    border-radius: 14px;
  }
  .footer-newsletter h2 {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }
  .footer-newsletter input,
  .footer-newsletter button {
    min-height: 52px;
  }
  .teg-footer {
    margin-top: 72px;
    padding-top: 56px;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
  }
  .footer-logo {
    width: 110px;
  }
  .footer-bottom {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .stat-grid, .card-grid, .news-grid, .article-grid, .partner-strip { grid-template-columns: 1fr; }
  .footer-newsletter form { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .section-intro.center { text-align: left !important; }
  .content-card.text-center { text-align: left !important; }
  .content-card .icon.mx-auto { margin-left: 0 !important; margin-right: auto !important; }
  .social-row.justify-content-center { justify-content: flex-start !important; }
  .contact-form-card h2.text-center { text-align: left !important; }
  .newsletter-section .row.align-items-center { text-align: left !important; }
}

@media (max-width: 420px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .navbar-brand img {
    width: 86px;
    height: 48px;
  }
  .hero h1,
  .page-hero h1,
  .editorial-hero h1,
  .article-kicker h1 {
    font-size: clamp(2rem, 12.5vw, 3rem);
  }
  .content-card,
  .stat,
  .person-card,
  .news-card {
    padding: 20px;
  }
  .article-body-clean {
    font-size: .98rem;
    line-height: 1.78;
  }
  .article-body-clean p,
  .article-body-clean li {
    text-align: left;
    hyphens: none;
  }
}
