:root {
  --ink: #14213d;
  --muted: #5f6b7a;
  --paper: #ffffff;
  --canvas: #f4f1ea;
  --line: #d9d6cf;
  --brand: #b24a2f;
  --brand-dark: #74301f;
  --accent: #e7b44f;
  --soft: #f9e9dd;
  --shadow: 0 18px 50px rgba(20, 33, 61, 0.10);
  --radius-lg: 30px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

a:hover {
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--ink);
  color: #ffffff;
  font-size: 0.84rem;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar span,
.topbar a {
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 241, 234, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(20, 33, 61, 0.10);
}

.header-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cd809f3b66e {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.cd809f3b66e img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 18px;
  background: #ffffff;
  padding: 7px;
  box-shadow: 0 8px 22px rgba(20, 33, 61, 0.12);
}

.brand-copy {
  min-width: 0;
}

.brand-name {
  display: block;
  max-width: 500px;
  color: var(--brand-dark);
  font-size: clamp(1.05rem, 2.1vw, 1.55rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.brand-tagline {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 12px;
  background: var(--ink);
  color: #ffffff;
  padding: 11px 14px;
  cursor: pointer;
}

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

.site-nav a {
  border-radius: 999px;
  padding: 10px 15px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--brand);
  color: #ffffff;
}

.c6cf6d9ef72 {
  padding: 42px 0 28px;
}

.hero-grid {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 610px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 78px);
  color: #ffffff;
}

.eyebrow {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 8px 13px;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.c6cf6d9ef72 h1,
.page-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.06em;
  overflow-wrap: anywhere;
}

.c6cf6d9ef72 h1 strong,
.page-hero h1 strong {
  color: var(--accent);
}

.c6cf6d9ef72 p {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 900;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: transparent;
  color: #ffffff;
}

.hero-media {
  position: relative;
  min-height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, var(--ink) 0%, transparent 36%);
}

.hero-note {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  width: min(330px, calc(100% - 56px));
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  padding: 22px;
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.hero-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--brand-dark);
  font-size: 1.1rem;
}

.section {
  padding: 46px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.program-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(20, 33, 61, 0.06);
}

.program-card.large {
  grid-column: span 7;
}

.program-card.small {
  grid-column: span 5;
}

.program-card img {
  height: 260px;
  object-fit: cover;
}

.program-card .card-body {
  padding: 24px;
}

.program-card h3 {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-size: 1.45rem;
}

.program-card p {
  margin: 0;
  color: var(--muted);
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.18);
}

.impact-item {
  background: var(--brand-dark);
  padding: 30px;
  color: #ffffff;
}

.impact-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 1.35rem;
}

.split-feature {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.split-feature img {
  min-height: 480px;
  height: 100%;
  object-fit: cover;
}

.feature-copy {
  padding: clamp(32px, 5vw, 64px);
}

.feature-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.feature-copy p {
  color: var(--muted);
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 14px 0;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  content: "✓";
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  line-height: 20px;
}

.page-hero {
  padding: 44px 0 28px;
}

.page-hero-inner {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.page-hero-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

.page-hero-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(34px, 6vw, 72px);
  background: linear-gradient(90deg, rgba(20, 33, 61, 0.96), rgba(20, 33, 61, 0.38));
}

.page-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.content-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 12px 30px rgba(20, 33, 61, 0.06);
}

.panel h2,
.panel h3 {
  margin-top: 0;
  color: var(--brand-dark);
}

.panel p {
  color: var(--muted);
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius-md);
  min-height: 100%;
}

.image-panel img {
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.values-grid,
.governance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  border-top: 5px solid var(--accent);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: var(--paper);
  padding: 26px;
  box-shadow: 0 12px 30px rgba(20, 33, 61, 0.06);
}

.value-card h3 {
  margin-top: 0;
  color: var(--brand-dark);
}

.value-card p {
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
}

.contact-card {
  border-radius: var(--radius-md);
  background: var(--ink);
  padding: clamp(26px, 4vw, 44px);
  color: #ffffff;
}

.contact-card h2 {
  margin-top: 0;
  color: var(--accent);
}

.contact-card a,
.contact-card p {
  color: rgba(255, 255, 255, 0.84);
  overflow-wrap: anywhere;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  padding: 14px 15px;
  color: var(--ink);
}

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

.contact-form button {
  justify-self: start;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  padding: 13px 22px;
  font-weight: 900;
  cursor: pointer;
}

.map-frame {
  overflow: hidden;
  margin-top: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 430px;
  border: 0;
}

.site-footer {
  margin-top: 52px;
  background: var(--ink);
  color: #ffffff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 36px;
  padding: 48px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: #ffffff;
  object-fit: contain;
  padding: 8px;
}

.footer-name {
  color: var(--accent);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.footer-inner h3 {
  margin-top: 0;
  color: var(--accent);
  font-size: 1rem;
}

.footer-inner p,
.footer-inner a {
  color: rgba(255, 255, 255, 0.76);
  overflow-wrap: anywhere;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: 90px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
    padding: 12px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    text-align: center;
  }

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

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

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

  .hero-media {
    min-height: 430px;
  }

  .hero-media::after {
    background: linear-gradient(180deg, var(--ink) 0%, transparent 34%);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .program-card.large,
  .program-card.small {
    grid-column: span 12;
  }

  .values-grid,
  .governance-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 680px) {
  .site-shell {
    width: min(100% - 20px, 1240px);
  }

  .topbar-inner {
    min-height: 44px;
    flex-direction: column;
    justify-content: center;
    gap: 1px;
    padding: 5px 0;
    text-align: center;
  }

  .header-inner {
    min-height: 78px;
    gap: 12px;
  }

  .cd809f3b66e img {
    width: 50px;
    height: 50px;
  }

  .brand-tagline {
    display: none;
  }

  .site-nav {
    top: 78px;
  }

  .c6cf6d9ef72 {
    padding-top: 20px;
  }

  .hero-copy,
  .page-hero-overlay {
    padding: 28px 22px;
  }

  .c6cf6d9ef72 h1,
  .page-hero h1 {
    font-size: clamp(2.15rem, 12vw, 3.65rem);
  }

  .c6cf6d9ef72 p,
  .page-hero p {
    font-size: 0.96rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-media {
    min-height: 340px;
  }

  .hero-note {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .section {
    padding: 34px 0;
  }

  .impact-strip,
  .values-grid,
  .governance-grid,
  .footer-inner,
  .form-row {
    grid-template-columns: 1fr;
  }

  .program-card img {
    height: 220px;
  }

  .split-feature img,
  .image-panel img {
    min-height: 300px;
  }

  .page-hero-inner,
  .page-hero-overlay {
    min-height: 360px;
  }

  .contact-form button {
    width: 100%;
  }

  .map-frame iframe {
    min-height: 330px;
  }
}

/* Long organization-name safeguard */
.c6cf6d9ef72 h1 strong,
.page-hero h1 strong {
  display: inline;
  font-size: clamp(1.75rem, 3.7vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

@media (max-width: 640px) {
  .c6cf6d9ef72 h1 strong,
  .page-hero h1 strong {
    font-size: clamp(1.55rem, 8.5vw, 2.35rem);
    line-height: 1.12;
  }
}
