:root {
  --color-primary: #0f4a2f;
  --color-primary-strong: #0b3a24;
  --color-secondary: #1b6b4b;
  --color-gold: #c89616;
  --color-gold-soft: #e5c777;
  --color-bg: #f8f7f2;
  --color-surface: #ffffff;
  --color-surface-soft: #f1efe6;
  --color-text: #1e2b24;
  --color-muted: #4b5b54;
  --color-border: rgba(15, 74, 47, 0.12);
  --color-shadow: rgba(18, 37, 28, 0.12);
  --gradient-hero: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(243, 239, 226, 0.98));
  --gradient-panel: linear-gradient(160deg, rgba(15, 74, 47, 0.98), rgba(27, 107, 75, 0.95));
  --gradient-gold: linear-gradient(135deg, #e5c777, #c89616);
  --shadow-soft: 0 18px 45px rgba(18, 37, 28, 0.08);
  --shadow-card: 0 20px 50px rgba(18, 37, 28, 0.1);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --max-width: 1180px;
  --header-height: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(229, 199, 119, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(27, 107, 75, 0.1), transparent 24%),
    var(--color-bg);
  line-height: 1.7;
}

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

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  top: -50px;
  left: 16px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-surface);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(248, 247, 242, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 74, 47, 0.06);
  box-shadow: 0 8px 24px rgba(18, 37, 28, 0.05);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    padding 0.25s ease;
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(248, 247, 242, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 74, 47, 0.08);
  box-shadow: 0 12px 30px rgba(18, 37, 28, 0.08);
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 56px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.brand-logo {
  width: 230px;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}

.nav-toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-primary);
  box-shadow: var(--shadow-soft);
}

.nav-toggle-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.nav-toggle-bar:nth-child(1) {
  transform: translate(-50%, -50%) translateY(-6px);
}

.nav-toggle-bar:nth-child(2) {
  transform: translate(-50%, -50%);
}

.nav-toggle-bar:nth-child(3) {
  transform: translate(-50%, -50%) translateY(6px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  color: var(--color-muted);
  font-size: 0.96rem;
  font-weight: 600;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: var(--color-primary);
  background: rgba(15, 74, 47, 0.07);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.85rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gradient-gold);
  color: #2f2100;
  box-shadow: 0 14px 28px rgba(200, 150, 22, 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 32px rgba(200, 150, 22, 0.32);
}

.btn-secondary {
  border-color: rgba(15, 74, 47, 0.14);
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-primary);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 1);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-surface);
}

main {
  overflow: clip;
}

section {
  padding: 5.5rem 0;
}

.hero {
  position: relative;
  padding-top: 2.75rem;
  padding-bottom: 4.75rem;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  top: 6%;
  right: -4%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(229, 199, 119, 0.28), transparent 65%);
}

.hero::after {
  left: -8%;
  bottom: -12%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(27, 107, 75, 0.14), transparent 68%);
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: stretch;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 40px;
  background: var(--gradient-hero);
  box-shadow: var(--shadow-card);
}

.hero-copy {
  position: relative;
  padding: 1rem 1rem 1rem 0.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(15, 74, 47, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--color-secondary);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 5px rgba(200, 150, 22, 0.14);
}

.hero-title,
.page-title,
.section-title,
.cta-title,
.footer-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.hero-title {
  max-width: 14ch;
  font-size: clamp(2.9rem, 5vw, 4.55rem);
  line-height: 0.98;
}

.hero-subtitle {
  max-width: 61ch;
  margin: 1.4rem 0 0;
  color: var(--color-muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-note {
  max-width: 52ch;
  margin-top: 1.8rem;
  padding-left: 1rem;
  border-left: 3px solid rgba(200, 150, 22, 0.55);
  color: var(--color-muted);
  font-size: 0.98rem;
}

.hero-panel {
  position: relative;
  padding: 1.4rem;
  border-radius: 30px;
  background: var(--gradient-panel);
  color: var(--color-surface);
  box-shadow: 0 24px 54px rgba(8, 29, 19, 0.26);
  overflow: hidden;
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-panel::before {
  top: -70px;
  right: -60px;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(229, 199, 119, 0.22), transparent 70%);
}

.hero-panel::after {
  bottom: -90px;
  left: -55px;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 72%);
}

.panel-brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 1.5rem;
}

.panel-brand img {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.88);
  padding: 6px;
}

.panel-brand span {
  display: block;
}

.panel-overline {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 0.98;
  letter-spacing: -0.01em;
}

.panel-copy {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.feature-stack {
  position: relative;
  display: grid;
  gap: 0.95rem;
  margin-top: 1.6rem;
}

.feature-card {
  padding: 1rem 1rem 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.feature-card h3,
.card-title,
.detail-card h3,
.contact-card h3,
.support-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  line-height: 1.35;
}

.feature-card p,
.card-copy,
.detail-card p,
.contact-card p,
.support-card p,
.list-note,
.page-intro,
.section-copy {
  margin: 0;
  color: var(--color-muted);
}

.hero-panel .feature-card p {
  color: rgba(255, 255, 255, 0.78);
}

.section-shell {
  display: grid;
  gap: 1.5rem;
}

.section-header {
  display: grid;
  gap: 0.9rem;
  max-width: 52rem;
  margin-bottom: 2rem;
}

.section-kicker {
  color: var(--color-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2.3rem, 4vw, 3.3rem);
  line-height: 1.08;
}

.section-copy {
  font-size: 1.03rem;
}

.story-grid,
.mission-grid,
.cta-shell,
.contact-layout,
.form-layout,
.donate-layout,
.page-grid {
  display: grid;
  gap: 1.5rem;
}

.mission-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: stretch;
}

.story-panel,
.story-panel-strong,
.info-panel,
.cta-panel,
.contact-card,
.form-card,
.support-card,
.detail-card,
.service-card,
.audience-card,
.placeholder-card,
.privacy-card {
  padding: 1.55rem;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.story-panel-strong,
.cta-panel-strong {
  background: linear-gradient(165deg, rgba(15, 74, 47, 0.98), rgba(14, 60, 38, 0.98));
  color: var(--color-surface);
}

.story-panel-strong p,
.cta-panel-strong p,
.cta-panel-strong a,
.story-panel-strong .list-note {
  color: rgba(255, 255, 255, 0.82);
}

.story-panel h3,
.story-panel-strong h3,
.info-panel h3,
.cta-panel h3,
.contact-card h3,
.form-card h3,
.support-card h3,
.detail-card h3,
.placeholder-card h3,
.privacy-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 1.4rem;
  align-items: start;
}

.service-grid,
.audience-grid,
.projects-grid,
.contact-grid,
.support-grid,
.values-grid,
.leadership-grid {
  display: grid;
  gap: 1.2rem;
}

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

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

.projects-grid,
.values-grid,
.contact-grid,
.support-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-topline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: rgba(15, 74, 47, 0.08);
  color: var(--color-secondary);
  font-size: 0.85rem;
  font-weight: 600;
}

.service-card,
.audience-card,
.placeholder-card {
  position: relative;
  overflow: hidden;
}

.service-card::before,
.audience-card::before,
.placeholder-card::before,
.contact-card::before,
.support-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(200, 150, 22, 0.88), rgba(27, 107, 75, 0.68));
}

.service-card p,
.audience-card p,
.placeholder-card p {
  margin: 0;
  color: var(--color-muted);
}

.quote-mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--color-gold);
  font-size: 3rem;
  font-weight: 600;
  line-height: 0.6;
}

.vision-callout {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.page-hero {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.page-hero-shell {
  padding: 2rem;
  border-radius: 36px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(243, 239, 226, 0.94)),
    var(--color-surface);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.52);
}

.page-title {
  font-size: clamp(3rem, 4.8vw, 4.4rem);
  line-height: 1.02;
}

.page-intro {
  max-width: 48rem;
  margin-top: 1rem;
  font-size: 1.05rem;
}

.page-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: start;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: var(--color-secondary);
  font-weight: 600;
}

.resource-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.resource-card,
.related-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.35rem;
  border: 1px solid rgba(15, 74, 47, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.resource-card h3,
.related-card h3 {
  margin: 0;
}

.resource-card p,
.related-card p {
  margin: 0;
  color: var(--color-muted);
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.link-pill,
.text-link {
  color: var(--color-secondary);
  font-weight: 700;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.5rem;
  align-items: start;
}

.article-content,
.article-aside {
  display: grid;
  gap: 1rem;
}

.article-section {
  padding: 1.5rem;
  border: 1px solid rgba(15, 74, 47, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.article-section h2,
.article-section h3 {
  margin-top: 0;
}

.article-section p,
.article-section li {
  color: var(--color-muted);
}

.article-section ul,
.article-section ol {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
}

.page-callout {
  display: grid;
  gap: 0.75rem;
  padding: 1.35rem;
  border: 1px solid rgba(200, 150, 22, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(255, 250, 239, 0.96), rgba(243, 239, 226, 0.95)),
    var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.page-callout p,
.resource-card ul {
  margin: 0;
}

.page-callout h3 {
  color: var(--color-primary);
}

.page-callout .footer-links {
  display: grid;
  gap: 0.65rem;
}

.page-callout .footer-links a {
  color: var(--color-secondary);
  font-weight: 600;
}

.page-callout .footer-links a:hover {
  color: var(--color-primary);
}

.detail-list,
.contact-list,
.footer-links,
.quick-links,
.policy-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.detail-list li,
.contact-list li,
.policy-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(15, 74, 47, 0.08);
}

.detail-list li:last-child,
.contact-list li:last-child,
.policy-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.detail-list strong,
.contact-list strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-primary);
}

.detail-card {
  display: grid;
  gap: 0.8rem;
}

.detail-card p + p {
  margin-top: 0.55rem;
}

.support-panel {
  display: grid;
  gap: 1rem;
}

.form-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: start;
}

.form-card form {
  display: grid;
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field.full {
  grid-column: 1 / -1;
}

.is-hidden {
  display: none !important;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field label {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--color-primary);
}

.field-label-row {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(15, 74, 47, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-text);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(27, 107, 75, 0.65);
  box-shadow: 0 0 0 4px rgba(27, 107, 75, 0.1);
}

.detail-fields-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.upload-callout,
.request-reference-card {
  display: grid;
  gap: 1rem;
  padding: 1.3rem;
  border: 1px solid rgba(200, 150, 22, 0.28);
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(255, 250, 239, 0.96), rgba(243, 239, 226, 0.95)),
    var(--color-surface);
  box-shadow: 0 18px 36px rgba(18, 37, 28, 0.08);
}

.upload-callout h3,
.request-reference-card h3 {
  margin: 0;
}

.request-reference-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--color-primary);
}

.upload-callout p,
.request-reference-card p,
.repeat-note {
  margin: 0;
  color: var(--color-muted);
}

.upload-callout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.repeat-note {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(15, 74, 47, 0.06);
  font-size: 0.95rem;
}

.form-note,
.form-feedback {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.form-note strong {
  color: var(--color-primary);
}

.form-feedback {
  min-height: 1.4rem;
}

.form-feedback:not(:empty) {
  margin-top: 0.25rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(15, 74, 47, 0.06);
}

.feedback-reference {
  display: block;
  margin-top: 0.45rem;
  color: var(--color-primary);
}

.input-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.input-row > input:not([type="checkbox"]),
.input-row > select,
.input-row > textarea {
  flex: 1 1 240px;
}

.inline-choice {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 52px;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(15, 74, 47, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.inline-choice input {
  width: auto;
  margin: 0;
  accent-color: var(--color-secondary);
}

.inline-choice.is-active {
  border-color: rgba(27, 107, 75, 0.26);
  background: rgba(27, 107, 75, 0.08);
  color: var(--color-primary);
}

.compact-choice {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex: 0 0 auto;
  gap: 0.38rem;
  min-height: 1.1rem;
  padding: 0.1rem 0;
  border: 0;
  background: transparent;
  white-space: nowrap;
  color: var(--color-primary);
  line-height: 1;
}

.compact-choice span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.compact-choice input {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.compact-choice.is-active {
  border: 0;
  background: transparent;
}

.field-note {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-muted);
}

.checkbox-panel {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(15, 74, 47, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
}

.checkbox-panel summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--color-primary);
}

.checkbox-panel summary::-webkit-details-marker {
  display: none;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.checkbox-card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(15, 74, 47, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--color-text);
  font-weight: 600;
}

.checkbox-card input {
  width: auto;
  margin: 0;
  accent-color: var(--color-secondary);
}

.checkbox-card.is-selected {
  border-color: rgba(27, 107, 75, 0.24);
  background: rgba(27, 107, 75, 0.08);
  color: var(--color-primary);
}

.help-button {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.3rem;
  height: 1.3rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(75, 91, 84, 0.16);
  color: var(--color-muted);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(75, 91, 84, 0.12);
  transform: translateY(-0.02rem);
}

.help-button:hover,
.help-button:focus-visible {
  background: rgba(75, 91, 84, 0.22);
  color: var(--color-primary);
  outline: none;
  box-shadow:
    inset 0 0 0 1px rgba(75, 91, 84, 0.14),
    0 0 0 3px rgba(27, 107, 75, 0.12);
}

.field-help {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: rgba(15, 74, 47, 0.06);
  color: var(--color-muted);
  font-size: 0.92rem;
}

.other-input {
  flex: 1 1 220px;
}

.field.is-disabled-field label,
.field.is-disabled-field .field-note {
  opacity: 0.68;
}

.field.is-disabled-field input,
.field.is-disabled-field textarea,
.field.is-disabled-field select,
.is-na-field {
  background: rgba(224, 226, 220, 0.92) !important;
  color: rgba(75, 91, 84, 0.88);
  cursor: not-allowed;
}

.input-row.is-na-active {
  opacity: 1;
}

.is-na-field {
  border-color: rgba(75, 91, 84, 0.26) !important;
  box-shadow: inset 0 1px 2px rgba(30, 43, 36, 0.06);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.input-row.is-na-active .compact-choice {
  color: var(--color-muted);
}

.input-row.is-na-active .compact-choice span {
  font-weight: 700;
}

.form-feedback.success {
  background: rgba(27, 107, 75, 0.1);
  color: var(--color-secondary);
  font-weight: 700;
}

.form-feedback.error {
  background: rgba(200, 150, 22, 0.14);
  color: #8f3f00;
  font-weight: 700;
}

.cta {
  padding-top: 3rem;
}

.cta-shell {
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  padding: 2rem;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.74)),
    var(--color-surface);
  box-shadow: var(--shadow-card);
}

.cta-title {
  font-size: clamp(2.3rem, 3vw, 3.2rem);
  line-height: 1;
}

.cta-copy {
  margin: 1rem 0 0;
  max-width: 48rem;
  color: var(--color-muted);
}

.cta-contact-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.cta-contact-list a {
  color: var(--color-secondary);
  font-weight: 700;
}

.upload-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.upload-actions .btn {
  width: 100%;
}

.btn.is-disabled,
.btn[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.65;
  box-shadow: none;
}

@media (max-width: 760px) {
  .input-row {
    align-items: stretch;
  }

  .input-row > input:not([type="checkbox"]),
  .input-row > select,
  .input-row > textarea,
  .other-input {
    flex-basis: 100%;
  }

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

  .resource-grid,
  .related-grid,
  .article-shell {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  margin-top: 3rem;
  padding: 2rem 0 0.95rem;
  background:
    radial-gradient(circle at top right, rgba(229, 199, 119, 0.12), transparent 25%),
    linear-gradient(160deg, #0d3421, #0f4a2f 42%, #123f2a);
  color: var(--color-surface);
}

.footer-grid {
  display: grid;
  /* Changes to a 3-column layout: larger left column, two smaller right columns */
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem 2rem;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 0.7rem;
}

.footer-brand .brand-logo {
  width: 200px;
  max-width: 100%;
}

.footer-logo {
  filter: brightness(0) invert(1);
}

.footer-title {
  font-size: 1.45rem;
}

.footer-copy,
.footer-links a,
.footer-bottom,
.footer-heading {
  color: rgba(255, 255, 255, 0.78);
}

.footer-copy {
  max-width: 31rem;
  font-size: 0.93rem;
  line-height: 1.6;
}

.footer-heading {
  margin: 0 0 0.8rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  gap: 0.95rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.95rem;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
}

.footer-meta a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.footer-links a:hover,
.footer-meta a:hover {
  color: var(--color-gold-soft);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.84);
}

.muted-link {
  color: var(--color-secondary);
  font-weight: 700;
}

.muted-link:hover {
  color: var(--color-primary);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 74, 47, 0.08);
  color: var(--color-secondary);
  font-size: 0.82rem;
  font-weight: 700;
}

.surface-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.72)),
    var(--color-surface-soft);
}

.surface-plain {
  background: rgba(255, 255, 255, 0.58);
}

.centered-copy {
  max-width: 45rem;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-link::after {
  content: "->";
  font-size: 0.9rem;
}

.contact-grid .contact-card,
.support-grid .support-card,
.values-grid .detail-card,
.leadership-grid .detail-card {
  min-height: 100%;
}

.privacy-card h2 {
  margin: 0 0 0.6rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  letter-spacing: -0.01em;
}

.privacy-card p + p,
.detail-card p + p,
.placeholder-card p + p {
  margin-top: 0.8rem;
}

.policy-updated {
  color: var(--color-muted);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .hero-shell,
  .mission-grid,
  .page-grid,
  .cta-shell,
  .form-layout,
  .section-split {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1; /* Spans full width on medium screens */
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(15, 74, 47, 0.08);
    border-radius: 24px;
    background: rgba(248, 247, 242, 0.98);
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-link,
  .site-nav .btn {
    width: 100%;
  }
}

@media (max-width: 760px) {
  section {
    padding: 4.3rem 0;
  }

  .hero {
    padding-top: 1.4rem;
  }

  .hero-shell,
  .page-hero-shell,
  .cta-shell {
    padding: 1.35rem;
    border-radius: 28px;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(2.9rem, 11vw, 4rem);
  }

  .page-title {
    font-size: clamp(2.5rem, 10vw, 3.6rem);
  }

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

  .form-grid,
  .detail-fields-grid,
  .service-grid,
  .projects-grid,
  .contact-grid,
  .support-grid,
  .values-grid,
  .audience-grid,
  .leadership-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--max-width));
  }

  .header-shell {
    gap: 0.8rem;
  }

  .brand-logo {
    width: 180px;
  }

  .eyebrow,
  .mini-badge,
  .section-kicker {
    letter-spacing: 0.08em;
  }

  .story-panel,
  .story-panel-strong,
  .info-panel,
  .cta-panel,
  .contact-card,
  .form-card,
  .support-card,
  .detail-card,
  .service-card,
  .audience-card,
  .placeholder-card,
  .privacy-card {
    padding: 1.2rem;
    border-radius: 22px;
  }
}
