:root {
  --color-ink: #2b2b2b;
  --color-muted: #4a5565;
  --color-soft: #6a7282;
  --color-cloud: #f5f2ec;
  --color-gold: #c3a46f;
  --color-green: #4a5d4a;
  --color-white: #ffffff;
  --color-footer-text: #99a1af;
  --color-footer-rule: #364153;
  --font-body: "Inter", Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --page-max: 1920px;
  --shell: 1728px;
  --space-page: clamp(24px, 5vw, 96px);
  --space-section: clamp(64px, 5vw, 100px);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-card: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.08);
  --breakpoint-tablet: 980px;
  --breakpoint-mobile: 640px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  clip: auto;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--color-white);
  background: var(--color-ink);
  border-radius: var(--radius-sm);
}

.shell {
  width: min(100% - (var(--space-page) * 2), var(--shell));
  margin-inline: auto;
}

.section {
  padding-block: var(--space-section);
}

.language-bar {
  height: 50px;
  display: flex;
  justify-content: center;
  background: var(--color-ink);
}

.language-bar__inner {
  width: min(100%, var(--page-max));
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  padding-inline: var(--space-page);
}

.language-bar__icon {
  width: 13px;
  height: 13px;
}

.language-option {
  min-height: 30px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.language-option--active {
  color: var(--color-white);
  background: var(--color-gold);
}

.language-bar__divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(43, 43, 43, 0.1);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  width: min(100%, var(--page-max));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-inline: var(--space-page);
}

.brand {
  flex: 0 0 210px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.brand__mark {
  width: 50.35px;
  height: 56px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand__text,
.footer-brand__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.brand__text span:first-child,
.footer-brand__text span:first-child {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand__text span:first-child {
  color: var(--color-ink);
}

.brand__text span:last-child,
.footer-brand__text span:last-child {
  font-size: 12px;
  font-weight: 400; 
  line-height: 13px;
  letter-spacing: 1px;
}

.brand__text span:last-child {
  color: #6b6b6b;
}

/* .primary-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.primary-nav__link {
  position: relative;
  color: var(--color-ink);
  white-space: nowrap;
}

.primary-nav__link--active {
  color: var(--color-gold);
}

.primary-nav__link--active::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -22px;
  height: 2px;
  background: var(--color-gold);
} */

.primary-nav {
    position: relative;
}

.primary-nav .menu {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-nav .menu > li {
    position: relative;
    margin: 0;
    padding: 0;
}

.primary-nav .menu > li > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--color-ink);
    text-decoration: none;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    transition: color .3s ease;
}

.primary-nav .menu > li > a:hover {
    color: var(--color-gold);
}

.primary-nav .current-menu-item > a,
.primary-nav .current-menu-parent > a,
.primary-nav .current-menu-ancestor > a {
    color: var(--color-gold);
}

.primary-nav .current-menu-item > a::after,
.primary-nav .current-menu-parent > a::after,
.primary-nav .current-menu-ancestor > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -22px;
    height: 2px;
    background: var(--color-gold);
}

.primary-nav .menu-item-has-children > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.primary-nav .menu-item-has-children > a::before {
    content: "";
    order: 2;
    width: 6px;
    height: 6px;
    /*border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor; */
    transform: rotate(45deg);
    margin-top: -3px;
}

.primary-nav .sub-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;

    min-width: 240px;

    margin: 0;
    padding: 12px 0;

    list-style: none;

    background: #fff;
    border-radius: 12px;

    box-shadow:
        0 10px 15px rgba(0,0,0,.08),
        0 4px 6px rgba(0,0,0,.05);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: all .25s ease;

    z-index: 999;
}

.primary-nav .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-nav .sub-menu li {
    margin: 0;
}

.primary-nav .sub-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--color-ink);
    text-decoration: none;
    transition: background .2s ease;
}

.primary-nav .sub-menu a:hover {
    background: rgba(0,0,0,.04);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  white-space: nowrap;
}

.button__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button--small {
  min-height: 36px;
  padding: 8px 16px;
  font-size: 14px;
  line-height: 20px;
}

.button--small:first-child {
  min-height: 40px;
}

.button--small .button__icon {
  width: 15px;
  height: 15px;
}

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

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

.button--outline {
  color: var(--color-ink);
  background: transparent;
  border-color: var(--color-ink);
}

.button--light {
  color: var(--color-ink);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.button--light-gold {
  color: var(--color-gold);
  background: var(--color-white);
}

.button--outline-gold {
  color: var(--color-gold);
  background: transparent;
  border-color: var(--color-gold);
}

.button--dark {
  color: var(--color-white);
  background: var(--color-ink);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(43, 43, 43, 0.18);
  border-radius: var(--radius-md);
  cursor: pointer;
}

.menu-toggle__bar {
  width: 20px;
  height: 2px;
  background: var(--color-ink);
}

.hero {
  position: relative;
  min-height: 819px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
  isolation: isolate;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.86) 22.7%, rgba(0, 0, 0, 0) 54.2%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.16));
}

.hero__content {
  width: min(100%, var(--page-max));
  margin-inline: auto;
  padding: 44px var(--space-page) 87px;
}

.hero h1 {
  max-width: 1024px;
  font-family: var(--font-display);
  font-size: clamp(56px, 5vw, 96px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero__kicker {
  max-width: 612px;
  margin-top: 18px;
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: clamp(30px, 2.5vw, 48px);
  font-weight: 500;
  line-height: 1;
}

.hero__copy {
  max-width: 800px;
  margin-top: 18px;
  color: #e5e7eb;
  font-size: clamp(21px, 1.56vw, 30px);
  line-height: 1.625;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15.82px;
  margin-top: 18px;
}

.hero__actions .button {
  box-shadow: var(--shadow-card);
}

.about {
  background: var(--color-white);
}

.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 816.5px) minmax(360px, 816.5px);
  align-items: center;
  gap: 80px;
}

.about__media,
.about__content,
.pillar-card,
.gallery-card,
.vision__inner,
.cta__inner,
.footer-column,
.footer-brand {
  min-width: 0;
}

.about__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.about__media img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.about__content h2 {
  max-width: 790px;
  font-family: var(--font-display);
  font-size: clamp(34px, 2.5vw, 48px);
  font-weight: 700;
  line-height: 1;
}

.about__content blockquote {
  position: relative;
  margin: 24px 0 0;
  padding-left: 36px;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: clamp(22px, 1.56vw, 30px);
  font-style: italic;
  line-height: 1.625;
}

.about__content blockquote::before {
  position: absolute;
  content: "";
  left: 6px;
  top: 0;
  width: 4px;
  height: 28px;
  border-radius: 999px;
  background: var(--color-gold);
}

.about__text {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  color: var(--color-muted);
  font-size: 20px;
  line-height: 1.46;
}

.pillars {
  background: var(--color-cloud);
}

.section-heading {
  margin-bottom: 64px;
}

.section-heading--center {
  text-align: center;
}

.section-heading h2,
.vision h2,
.gallery h2,
.cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
}

.section-heading h2 {
  font-size: clamp(34px, 2.5vw, 48px);
  line-height: 1;
}

.section-heading p {
  margin-top: 16px;
  color: var(--color-muted);
  font-size: 20px;
  line-height: 1.4;
}

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

.pillar-card {
  min-height: 370px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 32px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.pillar-card__icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.pillar-card__icon img {
  width: 32px;
  height: 32px;
}

.pillar-card__icon--gold {
  background: var(--color-gold);
}

.pillar-card__icon--green {
  background: var(--color-green);
}

.pillar-card__icon--dark {
  background: var(--color-ink);
}

.pillar-card h3 {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.pillar-card p {
  margin-top: 20px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 26px;
}

.pillar-card .text-link {
  margin-top: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.text-link img {
  width: 18px;
  height: 18px;
}

.text-link--gold {
  color: var(--color-gold);
}

.text-link--green {
  color: var(--color-green);
}

.text-link--dark {
  color: var(--color-ink);
}

.vision {
  display: flex;
  justify-content: center;
  background: var(--color-white);
  text-align: center;
}

.vision__inner {
  width: min(100% - (var(--space-page) * 2), 1167px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  padding: 8px 16px;
  color: var(--color-gold);
  background: var(--color-cloud);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.vision h2 {
  max-width: 992px;
  margin-inline: auto;
  font-size: clamp(34px, 2.5vw, 48px);
  line-height: 1.25;
}

.vision p {
  max-width: 992px;
  margin: 32px auto 0;
  color: var(--color-muted);
  font-size: 20px;
  line-height: 1.625;
}

.gallery {
  background: var(--color-cloud);
}

.gallery__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 40px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.section-label span {
  width: 24px;
  height: 1px;
  background: var(--color-gold);
}

.gallery h2 {
  margin-top: 20px;
  font-size: clamp(34px, 2.5vw, 48px);
  line-height: 1;
}

.gallery__head p:not(.section-label) {
  margin-top: 20px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 28px;
}

.gallery__view {
  flex: 0 0 auto;
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 20px;
}

.gallery__view img {
  width: 16px;
  height: 16px;
}

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

.gallery-card {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid rgba(43, 43, 43, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-small);
}

.gallery-card__media {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.gallery-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card__media span {
  position: absolute;
  top: 14px;
  left: 12px;
  padding: 4px 10px;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: var(--shadow-small);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
}

.gallery-card__body {
  min-height: 100px;
  padding: 17px 16px 16px;
  border-top: 1px solid rgba(43, 43, 43, 0.1);
}

.gallery-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.gallery-card p {
  margin-top: 4px;
  color: var(--color-soft);
  font-size: 12px;
  line-height: 19.5px;
}

.gallery__action {
  display: flex;
  justify-content: center;
  padding-top: 80px;
}

.gallery__action .button {
  min-height: 44px;
  padding: 12px 32px;
  font-size: 14px;
  line-height: 20px;
}

.gallery__action .button__icon {
  width: 16px;
  height: 16px;
}

.cta {
  padding-block: 80px;
  color: var(--color-white);
  background: var(--color-gold);
  text-align: center;
}

.cta__inner {
  width: min(100% - (var(--space-page) * 2), 1728px);
  margin-inline: auto;
}

.cta h2 {
  font-size: clamp(28px, 1.875vw, 36px);
  line-height: 40px;
}

.cta p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 28px;
}

.cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.cta__actions .button {
  min-height: 60px;
  box-shadow: var(--shadow-card);
}

.site-footer {
  padding-top: 64px;
  color: var(--color-footer-text);
  background: var(--color-ink);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px;
}

.footer-brand__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-brand__mark {
  width: 50.35px;
  height: 56px;
  flex: 0 0 auto;
  object-fit: contain;
}

.footer-brand__text span:first-child,
.footer-brand__text span:last-child {
  color: var(--color-white);
}

.footer-brand p {
  max-width: 381px;
  margin-top: 16px;
  font-size: 14px;
  line-height: 22.75px;
}

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

.footer-column h2 {
  margin-bottom: 8px;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 25.2px;
}

.footer-column a,
.footer-column span {
  color: var(--color-footer-text);
  font-size: 14px;
  line-height: 20px;
}

.footer-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-menu li {
    margin: 0 0 8px;
    padding: 0;
}

.footer-menu a {
    color: var(--color-footer-text);
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
}

.footer-menu a:hover {
    color: var(--color-gold);
}

.footer-contact ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact li img {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-links a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold);
  border-radius: 999px;
}

.social-links img {
  width: 16px;
  height: 16px;
}

.site-footer__bottom {
  margin-top: 48px;
  padding-block: 33px 20px;
  border-top: 1px solid var(--color-footer-rule);
  text-align: center;
}

.site-footer__bottom p {
  font-size: 14px;
  line-height: 20px;
}

@media (max-width: 1280px) {
  .site-header__inner {
    gap: 18px;
  }

  .brand {
    flex-basis: 180px;
  }

  .brand__text span:first-child,
  .footer-brand__text span:first-child {
    font-size: 16px;
  }

  .primary-nav {
    gap: 20px;
  }

  .header-actions {
    gap: 8px;
  }

  .button--small {
    padding-inline: 12px;
  }

  .hero {
    min-height: 680px;
  }

  .about__inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .about__media img {
    height: 520px;
  }

  .pillar-grid {
    gap: 32px;
  }
}

@media (max-width: 980px) {
  :root {
    --space-page: clamp(20px, 5vw, 40px);
    --space-section: 72px;
  }

  .language-bar__inner {
    justify-content: center;
  }

  .site-header {
    height: 72px;
  }

  .site-header__inner {
    position: relative;
  }

  .brand {
    width: 180px;
    flex-basis: 180px;
  }

  .menu-toggle {
    display: inline-flex;
  }
  /* 
  .primary-nav {
    position: fixed;
    inset: 122px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px var(--space-page);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(43, 43, 43, 0.1);
    box-shadow: var(--shadow-small);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav__link {
    padding: 14px 0;
  }

  .primary-nav__link--active::after {
    display: none;
  } */

  .primary-nav {
        position: fixed;
        inset: 122px 0 auto;
        display: none;
        background: rgba(255,255,255,.98);
        border-bottom: 1px solid rgba(43,43,43,.1);
        box-shadow: var(--shadow-small);
        padding: 18px var(--space-page);
    }

    .primary-nav.is-open {
        display: block;
    }

    .primary-nav .menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .primary-nav .menu > li > a {
        display: block;
        padding: 14px 0;
    }

    .primary-nav .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        background: transparent;
        padding-left: 15px;
        min-width: auto;
    }

    .primary-nav .menu-item-has-children:hover > .sub-menu {
        display: block;
    }

    .primary-nav .current-menu-item > a::after,
    .primary-nav .current-menu-parent > a::after,
    .primary-nav .current-menu-ancestor > a::after {
        display: none;
    }

    .primary-nav .sub-menu{
        display:none;
        padding-left:20px;
    }

    .primary-nav .menu-item.submenu-open > .sub-menu{
        display:block;
    }

    .primary-nav .menu-item-has-children > a{
        display:flex;
        justify-content:space-between;
        align-items:center;
    }

    .primary-nav .menu-item-has-children > a::after{
        content:"";
        font-size:18px;
        transition:.3s;
    }

    .primary-nav .menu-item.submenu-open > a::after{
        transform:rotate(45deg);
    }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: 640px;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.56) 58%, rgba(0, 0, 0, 0.2) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.24));
  }

  .hero__content {
    padding-block: 72px;
  }

  .hero h1 {
    max-width: 720px;
  }

  .hero__copy {
    max-width: 680px;
  }

  .about__inner,
  .pillar-grid,
  .gallery-grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .about__media img {
    height: min(72vw, 520px);
  }

  .about__text {
    font-size: 17px;
  }

  .pillar-card {
    min-height: auto;
  }

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

  .gallery-card__media {
    height: min(62vw, 400px);
  }

  .site-footer__inner {
    gap: 36px;
  }
}

@media (max-width: 640px) {
  :root {
    --space-page: 24px;
    --space-section: 56px;
  }

  .site-header__inner,
  .hero__content,
  .shell,
  .vision__inner,
  .cta__inner {
    width: 100%;
    max-width: 100vw;
  }

  .site-header__inner,
  .hero__content,
  .shell,
  .cta__inner {
    padding-inline: var(--space-page);
  }

  .vision__inner {
    width: calc(100% - (var(--space-page) * 2));
  }

  main,
  section,
  header,
  footer {
    max-width: 100vw;
    /* overflow-x: hidden; */
  }

  .language-bar {
    height: 44px;
  }

  .language-bar__inner {
    gap: 12px;
  }

  .site-header {
    height: 68px;
  }

  .brand {
    width: 158px;
    flex-basis: 158px;
  }

  .brand__mark {
    width: 42px;
    height: 47px;
  }

  .brand__text span:first-child {
    font-size: 13px;
    line-height: 16px;
  }

  .brand__text span:last-child {
    font-size: 10px;
    line-height: 12px;
  }

  .primary-nav {
    inset-block-start: 67px; /*112px;*/
  }

  .hero {
    min-height: 650px;
    align-items: flex-end;
  }

  .hero__image {
    object-position: 61% top;
  }

  .hero__content {
    padding-block: 80px 48px;
  }

  .hero h1 {
    max-width: calc(100vw - (var(--space-page) * 2));
    font-size: 48px;
    line-height: 1.1;
  }

  .hero__kicker {
    max-width: calc(100vw - (var(--space-page) * 2));
    font-size: 28px;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .hero__copy {
    max-width: calc(100vw - (var(--space-page) * 2));
    font-size: 17px;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .hero__actions,
  .cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding: 13px 20px;
  }

  .about__inner {
    gap: 36px;
  }

  .about__content h2,
  .section-heading h2,
  .vision h2,
  .gallery h2 {
    max-width: calc(100vw - (var(--space-page) * 2));
    font-size: 32px;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .about__text,
  .section-heading p,
  .vision p,
  .gallery__head p:not(.section-label),
  .cta p {
    max-width: calc(100vw - (var(--space-page) * 2));
    overflow-wrap: anywhere;
  }

  .about__content blockquote {
    padding-left: 24px;
    font-size: 20px;
    line-height: 1.45;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading p,
  .vision p,
  .cta p {
    font-size: 16px;
    line-height: 1.55;
  }

  .pillar-grid {
    gap: 20px;
  }

  .pillar-card {
    padding: 26px 24px;
  }

  .vision__inner {
    width: min(100% - 40px, 1167px);
  }

  .gallery__head {
    margin-bottom: 28px;
  }

  .gallery-grid {
    gap: 20px;
  }

  .gallery__action {
    padding-top: 36px;
  }

  .cta {
    padding-block: 56px;
  }

  .cta h2 {
    font-size: 28px;
    line-height: 1.25;
  }

  .cta__actions {
    margin-top: 28px;
  }

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

  .site-footer__bottom {
    margin-top: 36px;
  }
}

.page-hero {
  padding-block: clamp(96px, 7vw, 136px);
  background: var(--color-cloud);
  text-align: center;
}

.page-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero .section-label {
  justify-content: center;
}

.page-hero h1 {
  max-width: 1040px;
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: clamp(52px, 4.9vw, 88px);
  font-weight: 700;
  line-height: 1.08;
}

.page-hero p:not(.section-label) {
  max-width: 880px;
  margin-top: 24px;
  color: var(--color-muted);
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.55;
}

.page-hero--about {
  background:
    linear-gradient(180deg, rgba(245, 242, 236, 0.96), rgba(245, 242, 236, 0.96)),
    url("./assets/hero.jpg") center 37% / cover;
}

.page-hero--work {
  background:
    linear-gradient(180deg, rgba(245, 242, 236, 0.95), rgba(245, 242, 236, 0.95)),
    url("./assets/gallery-drum.jpg") center 42% / cover;
}

.page-hero--gallery {
  background:
    linear-gradient(180deg, rgba(245, 242, 236, 0.94), rgba(245, 242, 236, 0.94)),
    url("./assets/gallery-arts.jpg") center 46% / cover;
}

.page-hero--involved {
  background:
    linear-gradient(180deg, rgba(245, 242, 236, 0.95), rgba(245, 242, 236, 0.95)),
    url("./assets/hero.jpg") center 36% / cover;
}

.page-hero--donate {
  background:
    linear-gradient(180deg, rgba(245, 242, 236, 0.95), rgba(245, 242, 236, 0.95)),
    url("./assets/about.jpg") center 42% / cover;
}

.page-hero--stories {
  background:
    linear-gradient(180deg, rgba(245, 242, 236, 0.94), rgba(245, 242, 236, 0.94)),
    url("./assets/gallery-gathering.jpg") center 48% / cover;
}

.page-hero .button {
  width: auto;
  margin-top: 32px;
  box-shadow: var(--shadow-card);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 816px) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
}

.split-layout__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.split-layout__media img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.split-layout__content {
  min-width: 0;
}

.split-layout__content h2,
.mission-panel h2,
.impact-section h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 2.5vw, 48px);
  font-weight: 700;
  line-height: 1.08;
}

.split-layout__content .section-label {
  margin-bottom: 20px;
}

.split-layout__content blockquote {
  position: relative;
  margin: 24px 0 0;
  padding-left: 28px;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: clamp(22px, 1.45vw, 28px);
  font-style: italic;
  line-height: 1.55;
}

.split-layout__content blockquote::before {
  position: absolute;
  content: "";
  top: 2px;
  left: 0;
  width: 4px;
  height: 32px;
  border-radius: 999px;
  background: var(--color-gold);
}

.body-copy {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.65;
}

.purpose-section {
  background: var(--color-cloud);
}

.value-grid,
.mission-grid,
.metric-grid {
  display: grid;
  gap: 32px;
}

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

.value-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.value-card h3 {
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.value-card p {
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 26px;
}

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

.mission-panel {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(36px, 4vw, 64px);
  background: var(--color-cloud);
  border-radius: var(--radius-lg);
}

.mission-panel .eyebrow {
  margin-bottom: 24px;
  background: var(--color-white);
}

.mission-panel p {
  max-width: 720px;
  margin-top: 24px;
  color: var(--color-muted);
  font-size: 20px;
  line-height: 1.6;
}

.mission-panel--dark {
  color: var(--color-white);
  background: var(--color-ink);
}

.mission-panel--dark .eyebrow {
  background: rgba(255, 255, 255, 0.1);
}

.mission-panel--dark p {
  color: rgba(255, 255, 255, 0.78);
}

.impact-section {
  background: var(--color-white);
}

.work-overview,
.impact-band {
  background: var(--color-cloud);
}

.program-section {
  background: var(--color-white);
}

.program-section--soft {
  background: var(--color-cloud);
}

.program-row {
  display: grid;
  grid-template-columns: minmax(0, 816px) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
}

.program-row--reverse .program-row__media {
  order: 2;
}

.program-row--reverse .program-row__content {
  order: 1;
}

.program-row__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.program-row__media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.program-row__content {
  min-width: 0;
}

.program-row__content .section-label {
  margin-bottom: 20px;
}

.program-row__content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 2.5vw, 48px);
  font-weight: 700;
  line-height: 1.08;
}

.program-row__content > p {
  margin-top: 24px;
  color: var(--color-muted);
  font-size: 20px;
  line-height: 1.6;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.55;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  content: "";
  top: 0.65em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-gold);
}

.gallery-page {
  background: var(--color-cloud);
}

.gallery-page__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 40px;
}

.gallery-page__head h2,
.gallery-highlight h2 {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: clamp(36px, 2.5vw, 48px);
  font-weight: 700;
  line-height: 1.08;
}

.gallery-page__head p:not(.section-label),
.gallery-highlight p {
  max-width: 780px;
  margin-top: 20px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 28px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 0 auto;
}

.gallery-filter {
  min-height: 40px;
  padding: 8px 16px;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid rgba(43, 43, 43, 0.1);
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.gallery-filter--active {
  color: var(--color-white);
  background: var(--color-gold);
  border-color: var(--color-gold);
}

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

.gallery-page-grid .gallery-card__media {
  height: 360px;
}

.gallery-card--feature {
  grid-column: span 2;
}

.gallery-card--feature .gallery-card__media {
  height: 520px;
}

.gallery-highlight {
  background: var(--color-white);
}

.gallery-highlight__inner {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
}

.gallery-highlight__content {
  min-width: 0;
}

.gallery-highlight__content .button {
  width: auto;
  margin-top: 32px;
}

.gallery-highlight__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.gallery-highlight__media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.involvement-options,
.form-section {
  background: var(--color-cloud);
}

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

.involved-feature {
  background: var(--color-white);
}

.involved-feature__inner,
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
}

.involved-feature__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.involved-feature__media img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.involved-feature__content,
.form-layout__intro {
  min-width: 0;
}

.involved-feature__content .section-label,
.form-layout__intro .section-label {
  margin-bottom: 20px;
}

.involved-feature__content h2,
.form-layout__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 2.5vw, 48px);
  font-weight: 700;
  line-height: 1.08;
}

.involved-feature__content > p,
.form-layout__intro > p {
  margin-top: 24px;
  color: var(--color-muted);
  font-size: 20px;
  line-height: 1.6;
}

.contact-summary {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.contact-summary a,
.contact-summary span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 24px;
}

.contact-summary img {
  width: 18px;
  height: 18px;
}

.inquiry-form {
  display: grid;
  gap: 24px;
  padding: clamp(28px, 3.5vw, 48px);
  background: var(--color-white);
  border: 1px solid rgba(43, 43, 43, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

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

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid rgba(43, 43, 43, 0.16);
  border-radius: var(--radius-md);
  font: inherit;
  font-size: 16px;
  line-height: 24px;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: 3px solid rgba(195, 164, 111, 0.32);
  border-color: var(--color-gold);
}

.inquiry-form .button {
  width: auto;
  justify-self: start;
}

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

.metric-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  background: var(--color-cloud);
  border-radius: var(--radius-lg);
}

.metric-card strong {
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
}

.metric-card span {
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.donation-options {
  background: var(--color-cloud);
}

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

.donation-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  background: var(--color-white);
  border: 1px solid rgba(43, 43, 43, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.donation-card--featured {
  border-color: rgba(195, 164, 111, 0.5);
  box-shadow: 0 18px 32px rgba(43, 43, 43, 0.14);
}

.donation-card__label {
  display: inline-flex;
  padding: 7px 14px;
  color: var(--color-gold);
  background: var(--color-cloud);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.donation-card__amount {
  margin-top: 28px;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: clamp(38px, 2.9vw, 56px);
  line-height: 1;
}

.donation-card p {
  margin-top: 22px;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.55;
}

.donation-card .text-link {
  margin-top: auto;
}

.donation-note {
  display: grid;
  gap: 6px;
  margin-top: 32px;
  padding: 20px;
  background: var(--color-white);
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-small);
}

.donation-note strong {
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.3;
}

.donation-note span {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.5;
}

.amount-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.amount-fieldset legend {
  margin-bottom: 12px;
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

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

.amount-options label {
  position: relative;
  display: block;
}

.amount-options input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.amount-options span {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  color: var(--color-ink);
  background: var(--color-cloud);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-weight: 600;
  line-height: 24px;
  text-align: center;
}

.amount-options input:checked + span {
  color: var(--color-white);
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.amount-options input:focus-visible + span {
  outline: 3px solid rgba(195, 164, 111, 0.32);
  outline-offset: 2px;
}

.stories-feature {
  background: var(--color-white);
}

.stories-feature__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
}

.stories-feature__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.stories-feature__media img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.stories-feature__content {
  min-width: 0;
}

.stories-feature__content .section-label {
  margin-bottom: 20px;
}

.stories-feature__content h2,
.stories-quote h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 2.5vw, 48px);
  font-weight: 700;
  line-height: 1.08;
}

.stories-feature__content p:not(.section-label) {
  margin-top: 24px;
  color: var(--color-muted);
  font-size: 20px;
  line-height: 1.6;
}

.stories-feature__content .button {
  width: auto;
  margin-top: 32px;
}

.stories-list {
  background: var(--color-cloud);
}

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

.story-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid rgba(43, 43, 43, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-small);
}

.story-card--large {
  grid-column: span 2;
}

.story-card__media {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.story-card--large .story-card__media {
  height: 480px;
}

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

.story-card__media span {
  position: absolute;
  top: 14px;
  left: 12px;
  padding: 4px 10px;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: var(--shadow-small);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
}

.story-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}

.story-card__meta {
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.story-card h3 {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(24px, 1.65vw, 32px);
  font-weight: 700;
  line-height: 1.18;
}

.story-card p:not(.story-card__meta) {
  margin-top: 16px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.6;
}

.story-card .text-link {
  margin-top: auto;
  padding-top: 24px;
}

.stories-quote {
  background: var(--color-white);
  text-align: center;
}

.stories-quote__inner {
  width: min(100% - (var(--space-page) * 2), 1120px);
  margin-inline: auto;
}

.stories-quote p {
  max-width: 850px;
  margin: 24px auto 0;
  color: var(--color-muted);
  font-size: 20px;
  line-height: 1.6;
}

.about-hero {
  background: var(--color-cloud);
  overflow: hidden;
}

.about-hero__inner {
  min-height: 612px;
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(40px, 5vw, 88px);
}

.about-hero__copy {
  min-width: 0;
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 3.75vw, 72px);
  font-weight: 700;
  line-height: 0.98;
}

.about-hero p {
  margin-top: 26px;
  color: var(--color-muted);
  font-size: clamp(17px, 1.05vw, 20px);
  line-height: 1.55;
}

.about-hero__media {
  margin: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.about-hero__media img {
  width: min(100%, 1000px);
  max-height: 590px;
  object-fit: contain;
}

.founder-section {
  background: var(--color-white);
}

.founder-section h2,
.build-section h2,
.partners-section h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 2.5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
}

.founder-section__layout {
  display: grid;
  grid-template-columns: minmax(320px, 528px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 5.5vw, 72px);
  margin-top: 44px;
}

.founder-section__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.founder-section__media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.founder-section__content {
  display: grid;
  gap: 20px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.72;
}

.founder-section__content strong {
  color: var(--color-muted);
  font-weight: 700;
}

.foundation-gaps {
  background: var(--color-cloud);
}

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

.foundation-card {
  min-height: 332px;
  padding: 32px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.foundation-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
}

.foundation-icon img {
  width: 22px;
  height: 22px;
}

.foundation-icon--gold {
  background: var(--color-gold);
}

.foundation-icon--green {
  background: var(--color-green);
}

.foundation-icon--dark {
  background: var(--color-ink);
}

.foundation-card h3,
.build-item h3 {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.foundation-card p {
  margin-top: 16px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
}

.build-section,
.partners-section {
  background: var(--color-white);
}

.build-list {
  display: grid;
  gap: 34px;
  margin-top: 64px;
}

.build-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: flex-start;
  gap: 24px;
}

.build-item h3 {
  margin-top: 0;
}

.build-item p {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
}

.partners-section {
  padding-top: 36px;
}

.partners-grid {
  width: min(100%, 720px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 56px;
  margin: 54px auto 0;
  text-align: center;
}

.partner-card img {
  width: 148px;
  height: 148px;
  margin-inline: auto;
  object-fit: cover;
  border-radius: 999px;
  box-shadow: var(--shadow-small);
}

.partner-card h3 {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.partner-card p {
  margin-top: 5px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.35;
}

.about-cta {
  padding-block: 112px;
  color: var(--color-white);
  background: var(--color-gold);
  text-align: center;
}

.about-cta__inner {
  width: min(100% - (var(--space-page) * 2), 1120px);
  margin-inline: auto;
}

.about-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 2.2vw, 44px);
  font-weight: 700;
  line-height: 1.15;
}

.about-cta p {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.55;
}

.work-hero {
  padding-block: 78px 72px;
  background: var(--color-cloud);
  text-align: center;
}

.work-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 3.1vw, 64px);
  font-weight: 700;
  line-height: 1.05;
}

.work-hero p {
  margin-top: 22px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.55;
}

.work-pillar-section {
  background: var(--color-white);
}

.work-pillar-section--soft,
.work-gallery {
  background: var(--color-cloud);
}

.work-pillar {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(64px, 7vw, 128px);
}

.work-pillar--reverse {
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.98fr);
}

.work-pillar__content {
  min-width: 0;
}

.work-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.work-title-row h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 2.1vw, 44px);
  font-weight: 700;
  line-height: 1.15;
}

.work-pillar__intro, .work-pillar__content p {
  margin-top: 28px;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.65;
}

.work-pillar__intro, .work-pillar__content a.button {
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.65;
}

.work-list, .work-pillar__content ul {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.work-list li, .work-pillar__content ul li {
  position: relative;
  padding-left: 28px;
}

.work-list li::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 0;
  width: 17px;
  height: 17px;
  border: 2px solid var(--color-gold);
  border-radius: 999px;
}

.work-pillar__content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    background: url("../images/Icon-right.svg") no-repeat center;
    background-size: contain;
}

.work-list strong, .work-pillar__content ul li strong {
  display: block;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.25;
}

.work-list span {
  display: block;
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.6;
}

.work-pillar__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.work-pillar__media img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.work-gallery .gallery__head {
  margin-bottom: 44px;
}

.work-feature-card {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid rgba(43, 43, 43, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-small);
}

.work-feature-card__media {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.work-feature-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-feature-card__media span {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 10px;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: var(--shadow-small);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
}

.work-feature-card__body {
  padding: 28px 32px 30px;
}

.work-feature-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.work-feature-card p {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.55;
}

.work-gallery__grid {
  margin-top: 32px;
}

.gallery-hero {
  padding-block: 118px 76px;
  background: var(--color-cloud);
  text-align: center;
}

.gallery-hero__inner {
  width: min(100% - (var(--space-page) * 2), 980px);
  margin-inline: auto;
}

.gallery-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(46px, 4vw, 72px);
  font-weight: 700;
  line-height: 1;
  color: var(--color-ink);
}

.gallery-hero p {
  max-width: 900px;
  margin: 28px auto 0;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.55;
}

.gallery-stats {
  display: flex;
  justify-content: center;
  gap: clamp(36px, 5vw, 72px);
  margin: 42px 0 0;
}

.gallery-stats div {
  min-width: 72px;
}

.gallery-stats dt {
  font-family: var(--font-display);
  color: var(--color-gold);
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 700;
  line-height: 1;
}

.gallery-stats dd {
  margin: 8px 0 0;
    color: var(--color-footer-text);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.2px;
    line-height: 16px;
    text-transform: uppercase;
}

.gallery-filter-strip {
  background: var(--color-white);
  border-bottom: 1px solid rgba(43, 43, 43, 0.08);
}

.gallery-filter-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.gallery-filter-strip__inner > p {
  color: #d1d5dc;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gallery-tab {
  min-height: 31px;
  padding: 6px 17px;
  color: var(--color-muted);
  background: var(--color-white);
  border: 1px solid rgba(43, 43, 43, 0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(43, 43, 43, 0.04);
}

.gallery-tab span {
  margin-left: 6px;
  color: #aeb5bf;
  font-size: 11px;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #F3F4F6;
}

.gallery-tab--active {
  color: var(--color-white);
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.gallery-tab--active span {
  color: rgba(255, 255, 255, 0.78);
  background: #FFFFFF40;
}

.gallery-collection {
  padding-block: 72px 112px;
  background: var(--color-white);
}

.gallery-feature-card {
  position: relative;
  min-height: clamp(390px, 32vw, 560px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 34px rgba(43, 43, 43, 0.13);
}

.gallery-feature-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0.68) 100%);
}

.gallery-feature-card img,
.gallery-item__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-tag {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 7px 13px;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(43, 43, 43, 0.12);
}

.gallery-tag-events{
background: var(--color-gold);
color: var(--color-white);
}

.gallery-feature-card__content {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 3vw, 48px);
  right: clamp(28px, 3vw, 48px);
  bottom: clamp(28px, 3vw, 48px);
  max-width: 850px;
  color: var(--color-white);
  width: 60%;
}

.gallery-feature-card__content p:first-child {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-feature-card h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.1vw, 58px);
  font-weight: 700;
  line-height: 1.08;
}

.gallery-feature-card__content p:last-child {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.gallery-item {
  grid-column: span 2;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid rgba(43, 43, 43, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 18px rgba(43, 43, 43, 0.08);
}

.gallery-item--wide {
  grid-column: span 3;
}

.gallery-item__media {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.gallery-item--wide .gallery-item__media {
  height: 390px;
}

.gallery-item__body {
  min-height: 118px;
  padding: 20px 20px 22px;
  border-top: 1px solid rgba(43, 43, 43, 0.08);
}

.gallery-item h2 {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.gallery-item p {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* ==========================
   GALLERY MODAL
========================== */

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 40px;

  opacity: 0;
  visibility: hidden;
  transition: .3s ease;
}

.gallery-modal.active {
  opacity: 1;
  visibility: visible;
}

.gallery-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.92);
}

.gallery-modal__container {
  position: relative;
  width: min(100%, 700px);

  display: flex;
  flex-direction: column;

  gap: 18px; /* creates screenshot-style gap */
}

/* .gallery-modal__container {
  position: relative;
  width: min(100%, 900px);
  height: 80vh;
  z-index: 2;

  display: flex;
  flex-direction: column;
} */

.gallery-modal__image-wrapper {
  height: 350px;
  overflow: hidden;
  border-radius: 20px;
}

.gallery-modal__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-modal__content {
  background: #fff;
  border-radius: 20px;

  padding: 20px;

  min-height: 140px;
  max-height: 180px;
  overflow-y: auto;
}

.gallery-modal__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.gallery-modal__counter {
  font-size: 14px;
  color: #999;
}

.gallery-modal__content h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 30px;
  font-family: var(--font-display);
  color: var(--color-ink);
}

.gallery-modal__content p {
  margin: 0;
  font-weight: 400;
  color: var(--color-soft);
  line-height: 1.7;
  font-size: 14px;
}

.gallery-modal__close {
  position: absolute;
  top: 40px;
  right: 40px;

  width: 40px;
  height: 40px;

  border: none;
  border-radius: 50%;

  background: #fff;
  cursor: pointer;
  z-index: 3;

  font-size: 20px;
}

.gallery-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 44px;
  height: 44px;

  border: none;
  border-radius: 50%;

  background: #fff;
  cursor: pointer;
  z-index: 3;

  font-size: 22px;
}

.gallery-modal__nav--prev {
  left: 40px;
}

.gallery-modal__nav--next {
  right: 40px;
}

.gallery-item,
.gallery-feature-card {
  cursor: pointer;
}

.gallery-modal-tag {
  /* position: absolute; */
  /* z-index: 2; */
  /* top: 16px;
  left: 16px; */
  padding: 7px 13px;
  color: var(--color-white);
  background: var(--color-gold);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(43, 43, 43, 0.12);
}

/* ==========================
   TABLET
========================== */

@media (max-width: 991px) {

  .gallery-modal {
    padding: 24px;
  }

  .gallery-modal__nav--prev {
    left: 12px;
  }

  .gallery-modal__nav--next {
    right: 12px;
  }

  .gallery-modal__nav {
    width: 48px;
    height: 48px;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {

  .gallery-modal {
    padding: 16px;
    align-items: center;
  }

  .gallery-modal__container {
    width: 100%;
  }

.gallery-modal__container {
  height: 75vh;
}

  .gallery-modal__content {
    padding: 18px;
  }

  .gallery-modal__content h2 {
    font-size: 24px;
  }

  .gallery-modal__nav {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .gallery-modal__nav--next {
      right: 4px;
  }

      .gallery-modal__nav--prev {
      right: 4px;
  }

  .gallery-modal__close {
    /* width: 40px;
    height: 42px; */
    top: 16px;
    right: 16px;
  }

  .gallery-modal__image-wrapper {
    height: 300px;
  }

  .gallery-modal__container {
    gap: 14px;
  }
}

.involved-hero {
  padding-block: 86px 82px;
  background: var(--color-cloud);
  text-align: center;
}

.involved-hero h1 {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-size: clamp(48px, 3.4vw, 70px);
  font-weight: 700;
  line-height: 1.05;
}

.involved-hero p {
  margin-top: 22px;
  color: var(--color-muted);
  font-size: 20px;
  line-height: 1.5;
}

.volunteer-section {
  padding-block: 112px;
  background: var(--color-white);
}

.volunteer-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 0.9fr);
  align-items: center;
  gap: clamp(64px, 8vw, 132px);
}

.involved-title-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.involved-title-row--center {
  justify-content: center;
}

.involved-title-row .pillar-card__icon {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
}

.involved-title-row .pillar-card__icon img {
  width: 28px;
  height: 28px;
}

.involved-title-row h2,
.partner-section__head h2,
.why-involved__head h2 {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-size: clamp(36px, 2.7vw, 52px);
  font-weight: 700;
  line-height: 1.1;
}

.volunteer-section__lead {
  max-width: 800px;
  margin-top: 34px;
  color: var(--color-muted);
  font-size: 20px;
  line-height: 1.55;
}

.volunteer-list-group {
  margin-top: 34px;
}

.volunteer-list-group h3 {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.volunteer-list-group ul {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding-left: 22px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.55;
}

.volunteer-section__content .button {
  width: auto;
  margin-top: 42px;
  padding-inline: 32px;
}

.volunteer-section__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 48px rgba(43, 43, 43, 0.13);
}

.volunteer-section__media img {
  width: 100%;
  height: clamp(440px, 36vw, 600px);
  object-fit: cover;
}

.get-involved-partner-section {
  padding-block: 96px 112px;
  background: var(--color-cloud);
}

.get-involved-partner-section .partner-section__head {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.get-involved-partner-section .partner-section__head p {
  margin-top: 28px;
  color: var(--color-muted);
  font-size: 20px;
  line-height: 1.45;
}

.get-involved-partner-section .partner-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 72px;
}

.get-involved-partner-section .partner-card {
  min-height: 296px;
  padding: 40px 36px 34px;
  background: var(--color-white);
  border: 1px solid rgba(43, 43, 43, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.get-involved-partner-section  .partner-card .pillar-card__icon {
  width: 48px;
  height: 48px;
}

.get-involved-partner-section  .partner-card .pillar-card__icon img {
  width: 24px;
  height: 24px;
}

.get-involved-partner-section .partner-card h3 {
  margin-top: 32px;
  font-family: var(--font-display);
  color: var(--color-ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.get-involved-partner-section .partner-card p {
  margin-top: 22px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.55;
}

.get-involved-partner-section .partner-card p + p {
  margin-top: 22px;
  color: var(--color-soft);
  font-size: 14px;
}

.get-involved-partner-section .partner-section__action {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.get-involved-partner-section .partner-section__action .button {
  width: auto;
  padding-inline: 32px;
}

.why-involved {
  padding-block: 100px 112px;
  background: var(--color-white);
}

.why-involved__head {
  text-align: center;
}

.why-involved__head p {
  margin-top: 22px;
  color: var(--color-muted);
  font-size: 20px;
  line-height: 1.5;
}

.why-involved__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 132px;
  margin: 72px 0 0;
  padding: 0;
  list-style: none;
}

.why-involved__grid li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 20px;
}

.why-involved__grid span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: var(--color-gold);
  border-radius: 50%;
  font-weight: 700;
  line-height: 1;
}

.why-involved__grid li:nth-child(3) span,
.why-involved__grid li:nth-child(4) span {
  background: var(--color-green);
}

.why-involved__grid h3 {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.why-involved__grid p {
  margin-top: 6px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.55;
}

.involved-cta {
  padding-block: 100px;
}

.donate-hero {
  padding-block: 96px 88px;
  background: var(--color-cloud);
  text-align: center;
}

.donate-hero h1 {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-size: clamp(48px, 3.8vw, 72px);
  font-weight: 700;
  line-height: 1.05;
}

.donate-hero p {
  margin-top: 22px;
  color: var(--color-muted);
  font-size: 20px;
  line-height: 1.5;
}

.donate-main {
  padding-block: 128px 104px;
  background: var(--color-white);
}

.donate-main__grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(560px, 0.92fr);
  gap: clamp(72px, 8vw, 160px);
  align-items: start;
}

.donate-reasons h2 {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-size: clamp(36px, 2.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
}

.donate-reason {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.donate-reason .pillar-card__icon {
  width: 48px;
  height: 48px;
}

.donate-reason .pillar-card__icon img {
  width: 24px;
  height: 24px;
}

.donate-reason h3,
.transparency-box h3 {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.donate-reason p,
.transparency-box p {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.55;
}

.transparency-box {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 22px;
  margin-top: 56px;
  padding: 36px 34px;
  background: var(--color-cloud);
  border-radius: var(--radius-lg);
}

.transparency-box img {
  width: 24px;
  height: 24px;
  margin-top: 2px;
  opacity: 0.74;
}

.donate-form-area {
  display: grid;
  gap: 28px;
}

.donate-form-card {
  padding: 38px 36px 34px;
  background: var(--color-white);
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(43, 43, 43, 0.13);
}

.donate-form-card h2 {
  margin-bottom: 28px;
  font-family: var(--font-display);
  color: var(--color-ink);
  font-size: clamp(30px, 2vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.donor-toggle,
.donate-amounts {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.donor-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 28px;
  overflow: hidden;
  border: 1px solid rgba(106, 114, 130, 0.3);
  border-radius: var(--radius-md);
}

.donor-toggle label,
.donate-amounts__grid label {
  position: relative;
  display: block;
}

.donor-toggle input,
.donate-amounts__grid input {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.donor-toggle span {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  background: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.donor-toggle input:checked + span {
  color: var(--color-white);
  background: var(--color-gold);
}

.donate-amounts legend {
  margin-bottom: 14px;
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

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

.donate-amounts__grid span {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid rgba(106, 114, 130, 0.34);
  border-radius: var(--radius-md);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.donate-amounts__grid input:checked + span {
  color: var(--color-white);
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.donor-toggle input:focus-visible + span,
.donate-amounts__grid input:focus-visible + span,
.donate-consent input:focus-visible {
  outline: 3px solid rgba(195, 164, 111, 0.32);
  outline-offset: 2px;
}

.donate-custom-amount {
  display: block;
  margin-top: 16px;
}

.donate-form-field {
  display: grid;
  gap: 8px;
}

.donate-custom-amount input,
.donate-form-field input,
.donate-form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid rgba(106, 114, 130, 0.34);
  border-radius: var(--radius-md);
  font: inherit;
  font-size: 15px;
  line-height: 1.4;
}

.donate-form-field textarea {
  min-height: 82px;
  resize: vertical;
}

.donate-custom-amount input::placeholder,
.donate-form-field input::placeholder,
.donate-form-field textarea::placeholder {
  color: #aeb5bf;
}

.donate-custom-amount input:focus,
.donate-form-field input:focus,
.donate-form-field textarea:focus {
  outline: 3px solid rgba(195, 164, 111, 0.32);
  border-color: var(--color-gold);
}

.donate-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
  margin-top: 28px;
}

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

.donate-form-field span {
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.donate-form-field em {
  color: #d45454;
  font-style: normal;
}

.donate-form-field small {
  color: #a0a8b3;
  font-size: 12px;
  font-weight: 600;
}

.donate-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  margin-top: 24px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.donate-consent input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--color-green);
}

.donate-consent a,
.other-support a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.payment-options {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(106, 114, 130, 0.22);
}

.payment-options h3 {
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.payment-options ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.45;
  list-style: none;
}

.payment-options li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--color-gold);
  font-weight: 700;
}

.donate-submit {
  width: 100%;
  margin-top: 26px;
  color: var(--color-white);
  background: #eadcc0;
  box-shadow: var(--shadow-card);
}

.donate-security {
  margin-top: 22px;
  color: #a0a8b3;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

.other-support {
  padding: 30px 34px;
  background: var(--color-cloud);
  border-radius: var(--radius-lg);
}

.other-support h2 {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.other-support ul {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding-left: 16px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.5;
}

.other-support p {
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.5;
}

.donate-impact {
  padding-block: 90px 102px;
  background: var(--color-cloud);
  text-align: center;
}

.donate-impact__head h2 {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-size: clamp(34px, 2.4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
}

.donate-impact__head p {
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.5;
}

.donate-impact__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(40px, 7vw, 120px);
  margin-top: 78px;
}

.donate-impact-card {
  display: grid;
  justify-items: center;
}

.donate-impact-card__icon {
  width: 88px;
  height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 50%;
}

.donate-impact-card__icon img {
  width: 38px;
  height: 38px;
}

.donate-impact-card h3 {
  margin-top: 40px;
  font-family: var(--font-display);
  color: var(--color-ink);
  font-size: clamp(30px, 2.3vw, 42px);
  font-weight: 700;
  line-height: 1;
}

.donate-impact-card p {
  max-width: 500px;
  margin-top: 16px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.5;
}

.stories-hero-v2 {
  padding-block: 94px 84px;
  background: var(--color-cloud);
  text-align: center;
}

.stories-hero-v2 h1 {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-size: clamp(52px, 4.1vw, 80px);
  font-weight: 700;
  line-height: 1.04;
}

.stories-hero-v2 p {
  margin-top: 24px;
  color: var(--color-muted);
  font-size: 20px;
  line-height: 1.5;
}

.stories-featured-v2 {
  padding-block: 116px 104px;
  background: var(--color-white);
}

.featured-story-card {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(520px, 1fr);
  overflow: hidden;
  background: var(--color-cloud);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 36px rgba(43, 43, 43, 0.13);
}

.featured-story-card__media {
  margin: 0;
  min-height: 560px;
}

.featured-story-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-story-card__content {
  align-self: center;
  padding: clamp(48px, 5vw, 96px);
}

.featured-story-card__eyebrow {
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.featured-story-card h2,
.more-stories-section__head h2,
.stories-impact-band__head h2,
.stories-next-cta h2 {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-weight: 700;
  line-height: 1.1;
}

.featured-story-card h2 {
  margin-top: 26px;
  font-size: clamp(38px, 2.9vw, 54px);
}

.featured-story-card blockquote {
  position: relative;
  margin: 28px 0 0;
  padding-left: 36px;
  color: var(--color-muted);
}

.featured-story-card blockquote::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 4px;
  height: 100%;
  background: var(--color-gold);
}

.featured-story-card blockquote p {
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.65;
}

.featured-story-card cite {
  display: block;
  margin-top: 18px;
  color: var(--color-ink);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
}

.featured-story-card__content > p:not(.featured-story-card__eyebrow) {
  margin-top: 28px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
}

.featured-story-card .text-link {
  margin-top: 30px;
}

.more-stories-section {
  padding-block: 24px 96px;
  background: var(--color-white);
}

.more-stories-section__head h2 {
  font-size: clamp(34px, 2.4vw, 48px);
}

.more-stories-section__head p {
  margin-top: 14px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.5;
}

.more-stories-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  margin-top: 58px;
}

.story-preview-card {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid rgba(43, 43, 43, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.story-preview-card {
  position: relative;
}


.story-preview-card span {
    position: absolute;
    top: 14px;
    left: 12px;
    padding: 4px 10px;
    color: var(--color-ink);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    box-shadow: var(--shadow-small);
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
}

.story-preview-card > img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.story-preview-card__body {
  padding: 30px 26px 28px;
}

.story-preview-card h3 {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.story-preview-card p {
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.6;
}

.story-preview-card .text-link {
  margin-top: 26px;
  font-size: 14px;
}

.stories-impact-band {
  padding-block: 84px 94px;
  color: var(--color-white);
  background: var(--color-gold);
  text-align: center;
}

.stories-impact-band__head h2 {
  color: var(--color-white);
  font-size: clamp(34px, 2.5vw, 50px);
}

.stories-impact-band__head p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.5;
}

.stories-impact-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  margin: 72px 0 0;
}

.stories-impact-stats dt {
  font-family: var(--font-display);
  font-size: clamp(48px, 4vw, 76px);
  font-weight: 700;
  line-height: 1;
}

.stories-impact-stats dd {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.35;
}

.stories-next-cta {
  padding-block: 88px 112px;
  background: var(--color-white);
  text-align: center;
}

.stories-next-cta__inner {
  width: min(100% - (var(--space-page) * 2), 980px);
  margin-inline: auto;
}

.stories-next-cta__icon {
  width: 54px;
  height: 54px;
  margin-inline: auto;
  opacity: 0.9;
}

.stories-next-cta h2 {
  margin-top: 38px;
  font-size: clamp(34px, 2.5vw, 50px);
}

.stories-next-cta p {
  margin-top: 20px;
  color: var(--color-muted);
  font-size: 20px;
  line-height: 1.5;
}

.story-detail-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-ink);
}

.story-detail-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.46) 48%, rgba(0, 0, 0, 0.76) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.84) 100%),
    url("./assets/story-detail-hero.jpg") center 38% / cover;
}

.story-detail-hero__content {
  position: relative;
  z-index: 1;
  padding-block: 0 96px;
}

.story-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.4;
}

.story-detail-back::before {
  content: "<";
  font-size: 18px;
}

.story-detail-category {
  display: inline-flex;
  margin-top: 28px;
  padding: 8px 16px;
  color: var(--color-white);
  background: var(--color-gold);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.story-detail-hero h1 {
  max-width: 1040px;
  margin-top: 26px;
  font-family: var(--font-display);
  font-size: clamp(52px, 5.2vw, 98px);
  font-weight: 700;
  line-height: 1.05;
}

.story-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.4;
  list-style: none;
}

.story-detail-meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.story-detail-meta li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  opacity: 0.7;
}

.story-article {
  width: min(100% - (var(--space-page) * 2), 1360px);
  padding-block: 78px 72px;
}

.story-article__intro {
  position: relative;
  margin-bottom: 34px;
  padding-left: 26px;
  color: var(--color-muted);
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.7;
}

.story-article__intro::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 3px;
  height: calc(100% - 4px);
  content: "";
  background: var(--color-gold);
}

.story-article__section {
  margin-top: 34px;
}

.story-article h2 {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-size: clamp(28px, 2vw, 38px);
  font-weight: 700;
  line-height: 1.18;
  margin-top: 34px;
}

.story-article p {
  margin-top: 16px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.75;
}

.story-callout,
.story-note,
.story-article blockquote {
  margin: 30px 0;
  padding: 28px 34px;
  background: var(--color-cloud);
  border-radius: var(--radius-md);
}

.story-callout, .story-article blockquote {
  position: relative;
  padding-left: 74px;
}

.story-callout::before, .story-article blockquote::before {
  position: absolute;
  top: 22px;
  left: 28px;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  content: '"';
  background: var(--color-gold);
  border-radius: 50%;
  color: #FFF;
  font: "Playfair Display";
}

.story-callout p, .story-article blockquote p {
  margin: 0;
  color: var(--color-muted);
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.55;
}

.story-callout--large p {
  font-size: 22px;
}

.story-article__image, .story-article figure {
  margin: 40px 0 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.story-article__image img, .story-article figure img {
  width: 100%;
  max-height: 820px;
  object-fit: cover;
}

.story-note {
  border-left: 3px solid var(--color-gold);
}

.story-note p {
  margin: 0;
}

.story-detail-impact {
  padding-block: 72px;
  color: var(--color-white);
  background: var(--color-gold);
  text-align: center;
}

.story-detail-impact h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 2.3vw, 44px);
  font-weight: 700;
  line-height: 1.1;
}

.story-detail-impact__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  margin: 52px 0 0;
}

.story-detail-impact dt {
  font-family: var(--font-display);
  font-size: clamp(34px, 3vw, 54px);
  font-weight: 700;
  line-height: 1;
}

.story-detail-impact dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.3;
}

.story-journey {
  padding-block: 76px;
  background: var(--color-white);
  text-align: center;
}

.story-journey h2,
.story-inspired h2,
.story-related h2 {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-size: clamp(28px, 2.1vw, 40px);
  font-weight: 700;
  line-height: 1.15;
}

.story-journey__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  width: min(100%, 1160px);
  margin: 42px auto 0;
}

.story-journey__grid img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.story-inspired {
  padding-block: 86px;
  background: var(--color-cloud);
  text-align: center;
}

.story-inspired__inner {
  width: min(100% - (var(--space-page) * 2), 820px);
  margin-inline: auto;
}

.story-inspired p {
  margin-top: 16px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.55;
}

.story-related {
  padding-block: 82px 92px;
  background: var(--color-white);
  text-align: center;
}

.story-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 42px;
  text-align: left;
}

.story-related .story-preview-card > img {
  height: 210px;
}

.story-related .story-preview-card__body {
  padding: 22px;
}

.story-related .story-preview-card h3 {
  font-size: 18px;
}

.story-related .story-preview-card p {
  font-size: 13px;
}

.story-view-all-card {
  min-height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 40px;
  background: var(--color-cloud);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-small);
  text-align: center;
}

.story-view-all-card span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: var(--color-gold);
  border-radius: 50%;
}

.story-view-all-card strong {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-size: 17px;
  line-height: 1.3;
}

.story-view-all-card small {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.4;
}

.contact-hero {
  padding-block: 104px 92px;
  background: var(--color-cloud);
  text-align: center;
}

.contact-hero h1 {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-size: clamp(56px, 4vw, 82px);
  font-weight: 700;
  line-height: 1.05;
}

.contact-hero p {
  margin-top: 28px;
  color: var(--color-muted);
  font-size: 22px;
  line-height: 1.5;
}

.contact-section {
  padding-block: 124px 130px;
  background: var(--color-white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.62fr) minmax(620px, 1.32fr);
  gap: clamp(72px, 8vw, 132px);
  align-items: start;
}

.contact-info h2,
.contact-form-card h2 {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-size: clamp(34px, 2.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
}

.contact-info__list {
  display: grid;
  gap: 36px;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.contact-info__list li {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 20px;
}

.contact-info__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.contact-info__icon--gold {
  background: var(--color-gold);
}

.contact-info__icon--green {
  background: var(--color-green);
}

.contact-info__icon--dark {
  background: var(--color-ink);
}

.contact-info__icon img {
  width: 25px;
  height: 25px;
}

.contact-info h3,
.response-card h3 {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.contact-info a,
.contact-info p {
  display: block;
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.5;
}

.response-card {
  margin-top: 54px;
  padding: 34px 38px;
  background: var(--color-cloud);
  border-radius: var(--radius-lg);
}

.response-card h3 {
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 700;
}

.response-card p {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.55;
}

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

.contact-form-card {
  padding: 48px 42px 52px;
  background: var(--color-white);
  border: 1px solid rgba(106, 114, 130, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.contact-form-card h2 {
  margin-bottom: 34px;
}

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

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

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

.contact-form-grid span {
  /*color: var(--color-ink); */
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.contact-form-grid em {
  color: var(--color-ink);
  font-style: normal;
}

.contact-form-grid input,
.contact-form-grid textarea {
  width: 100%;
  min-height: 58px;
  padding: 14px 18px;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid rgba(106, 114, 130, 0.34);
  border-radius: var(--radius-md);
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
}

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

.contact-form-grid input::placeholder,
.contact-form-grid textarea::placeholder {
  color: #aeb5bf;
}

.contact-form-grid input:focus,
.contact-form-grid textarea:focus {
  outline: 3px solid rgba(195, 164, 111, 0.32);
  border-color: var(--color-gold);
}

.contact-consent {
  display: grid;
  /*grid-template-columns: 18px minmax(0, 1fr); */
  gap: 12px;
  margin-top: 34px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.contact-consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--color-green);
}

.contact-submit {
  width: auto;
  margin-top: 30px;
  padding-inline: 38px;
}

.contact-routing {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.contact-routing article {
  min-height: 112px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 22px;
  background: var(--color-cloud);
  border-radius: var(--radius-md);
  text-align: center;
}

.contact-routing h2 {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.contact-routing a {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .page-hero {
    padding-block: 88px;
  }

  .split-layout,
  .program-row,
  .work-pillar,
  .work-pillar--reverse,
  .gallery-highlight__inner,
  .involved-feature__inner,
  .form-layout,
  .stories-feature__inner,
  .about-hero__inner,
  .founder-section__layout,
  .value-grid,
  .involvement-grid,
  .donation-grid,
  .foundation-gaps__grid,
  .mission-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .gallery-page__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-filters {
    justify-content: flex-start;
  }

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

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

  .gallery-card--feature {
    grid-column: span 2;
  }

  .split-layout__media img,
  .program-row__media img,
  .gallery-highlight__media img,
  .involved-feature__media img,
  .stories-feature__media img {
    height: min(72vw, 560px);
  }

  .about-hero__inner {
    padding-block: 72px;
  }

  .about-hero__media {
    justify-content: center;
  }

  .founder-section__media img {
    height: min(72vw, 460px);
  }

  .work-pillar__media img {
    height: min(66vw, 540px);
  }

  .work-pillar--reverse .work-pillar__media,
  .work-pillar--reverse .work-pillar__content {
    order: initial;
  }

  .gallery-hero {
    padding-block: 88px 64px;
  }

  .gallery-filter-strip__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 18px;
  }

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

  .gallery-item,
  .gallery-item--wide {
    grid-column: span 1;
  }

  .gallery-item__media,
  .gallery-item--wide .gallery-item__media {
    height: min(48vw, 360px);
  }

  .volunteer-section__inner {
    grid-template-columns: 1fr;
  }

  .volunteer-section__media {
    order: -1;
  }

  .volunteer-section__media img {
    height: min(64vw, 520px);
  }

  .get-involved-partner-section .partner-card-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .why-involved__grid {
    gap: 36px 48px;
  }

  .donate-main__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .donate-form-area {
    max-width: 760px;
    width: 100%;
    margin-inline: auto;
  }

  .donate-impact__grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

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

  .featured-story-card__media {
    min-height: min(70vw, 560px);
  }

  .more-stories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

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

  .story-detail-hero {
    min-height: 620px;
  }

  .story-detail-impact__grid,
  .story-journey__grid,
  .story-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .contact-form-column {
    max-width: 980px;
    width: 100%;
    margin-inline: auto;
  }

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

  .program-row--reverse .program-row__media,
  .program-row--reverse .program-row__content {
    order: initial;
  }

  .mission-panel {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding-block: 64px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .page-hero p:not(.section-label),
  .body-copy,
  .mission-panel p {
    font-size: 16px;
  }

  .split-layout__content h2,
  .program-row__content h2,
  .mission-panel h2,
  .gallery-page__head h2,
  .gallery-highlight h2,
  .involved-feature__content h2,
  .form-layout__intro h2,
  .impact-section h2 {
    font-size: 32px;
    overflow-wrap: anywhere;
  }

  .program-row__content > p,
  .involved-feature__content > p,
  .form-layout__intro > p,
  .check-list {
    font-size: 16px;
  }

  .value-card,
  .mission-panel,
  .metric-card {
    padding: 28px 24px;
  }

  .value-card {
    min-height: auto;
  }

  .metric-card {
    min-height: 170px;
  }

  .metric-card strong {
    font-size: 44px;
  }

  .metric-card span {
    font-size: 21px;
  }

  .gallery-page__head p:not(.section-label),
  .gallery-highlight p {
    font-size: 16px;
    line-height: 1.55;
  }

  .gallery-page-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card--feature {
    grid-column: auto;
  }

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

  .story-card--large {
    grid-column: auto;
  }

  .gallery-page-grid .gallery-card__media,
  .gallery-card--feature .gallery-card__media,
  .story-card__media,
  .story-card--large .story-card__media {
    height: min(70vw, 360px);
  }

  .gallery-hero {
    padding-block: 64px 48px;
  }

  .gallery-hero h1 {
    font-size: 42px;
  }

  .gallery-hero p {
    font-size: 15px;
    line-height: 1.55;
  }

  .gallery-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 320px;
    margin-inline: auto;
  }

  .gallery-tabs {
    width: 100%;
    gap: 8px;
  }

  .gallery-tab {
    flex: 1 1 calc(50% - 8px);
  }

  .gallery-collection {
    padding-block: 40px 72px;
  }

  .gallery-feature-card {
    min-height: 420px;
  }

  .gallery-feature-card__content {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .gallery-feature-card h2 {
    font-size: 30px;
  }

  .gallery-feature-card__content p:last-child {
    font-size: 14px;
  }

  .gallery-masonry {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery-item__media,
  .gallery-item--wide .gallery-item__media {
    height: min(68vw, 320px);
  }

  .gallery-item__body {
    min-height: auto;
    padding: 18px;
  }

  .involved-hero {
    padding-block: 58px 54px;
  }

  .involved-hero h1,
  .involved-title-row h2,
  .partner-section__head h2,
  .why-involved__head h2 {
    font-size: 36px;
  }

  .involved-hero p,
  .volunteer-section__lead,
  .partner-section__head p,
  .why-involved__head p {
    font-size: 15px;
  }

  .volunteer-section,
  .partner-section,
  .why-involved {
    padding-block: 64px;
  }

  .involved-title-row {
    align-items: flex-start;
  }

  .involved-title-row--center {
    align-items: center;
  }

  .volunteer-section__media img {
    height: min(72vw, 360px);
  }

  .volunteer-list-group ul,
  .partner-card p,
  .why-involved__grid p {
    font-size: 14px;
  }

  .volunteer-section__content .button,
  .partner-section__action .button {
    width: 100%;
  }

  .partner-card-grid,
  .why-involved__grid {
    margin-top: 42px;
  }

  .partner-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .why-involved__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .why-involved__grid h3 {
    font-size: 18px;
  }

  .involved-cta {
    padding-block: 64px;
  }

  .donate-hero {
    padding-block: 58px 54px;
  }

  .donate-hero h1,
  .donate-reasons h2,
  .donate-impact__head h2 {
    font-size: 36px;
  }

  .donate-hero p,
  .donate-impact__head p {
    font-size: 15px;
  }

  .donate-main,
  .donate-impact {
    padding-block: 64px;
  }

  .donate-reason {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
  }

  .donate-reason .pillar-card__icon {
    width: 40px;
    height: 40px;
  }

  .donate-reason h3,
  .transparency-box h3 {
    font-size: 18px;
  }

  .donate-reason p,
  .transparency-box p,
  .other-support p,
  .other-support ul {
    font-size: 14px;
  }

  .transparency-box {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .donate-form-card {
    padding: 28px 20px;
  }

  .donate-form-card h2 {
    font-size: 28px;
  }

  .donate-amounts__grid,
  .donate-form-grid {
    grid-template-columns: 1fr;
  }

  .donate-consent {
    font-size: 12px;
  }

  .other-support {
    padding: 24px;
  }

  .donate-impact__grid {
    margin-top: 48px;
  }

  .donate-impact-card h3 {
    margin-top: 26px;
  }

  .donate-impact-card p {
    font-size: 14px;
  }

  .stories-hero-v2 {
    padding-block: 58px 54px;
  }

  .stories-hero-v2 h1,
  .featured-story-card h2,
  .more-stories-section__head h2,
  .stories-impact-band__head h2,
  .stories-next-cta h2 {
    font-size: 36px;
  }

  .stories-hero-v2 p,
  .more-stories-section__head p,
  .stories-impact-band__head p,
  .stories-next-cta p {
    font-size: 15px;
  }

  .stories-featured-v2,
  .more-stories-section,
  .stories-impact-band,
  .stories-next-cta {
    padding-block: 64px;
  }

  .featured-story-card__media {
    min-height: min(78vw, 380px);
  }

  .featured-story-card__content {
    padding: 30px 22px;
  }

  .featured-story-card blockquote {
    padding-left: 22px;
  }

  .featured-story-card blockquote p,
  .featured-story-card__content > p:not(.featured-story-card__eyebrow) {
    font-size: 14px;
  }

  .more-stories-grid,
  .stories-impact-stats {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 36px;
  }

  .story-preview-card > img {
    height: min(64vw, 300px);
  }

  .story-preview-card__body {
    padding: 24px 20px;
  }

  .story-preview-card h3 {
    font-size: 20px;
  }

  .story-preview-card p {
    font-size: 14px;
  }

  .stories-impact-stats dt {
    font-size: 44px;
  }

  .stories-next-cta .cta__actions {
    align-items: stretch;
  }

  .story-detail-hero {
    min-height: 560px;
  }

  /* .story-detail-hero__bg {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.58) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.86) 100%),
      url("./assets/story-detail-hero.jpg") center / cover;
  } */

  .story-detail-hero__content {
    padding-block: 0 54px;
  }

  .story-detail-hero h1 {
    font-size: 38px;
  }

  .story-detail-meta {
    gap: 10px 18px;
    font-size: 13px;
  }

  .story-article {
    padding-block: 52px;
  }

  .story-article__intro,
  .story-article p {
    font-size: 14px;
  }

  .story-article h2,
  .story-detail-impact h2,
  .story-journey h2,
  .story-inspired h2,
  .story-related h2 {
    font-size: 28px;
  }

  .story-callout {
    padding: 24px 22px 24px 54px;
  }

  .story-callout::before {
    left: 20px;
  }

  .story-callout p,
  .story-callout--large p {
    font-size: 17px;
  }

  .story-detail-impact,
  .story-journey,
  .story-inspired,
  .story-related {
    padding-block: 56px;
  }

  .story-detail-impact__grid,
  .story-journey__grid,
  .story-related__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .story-detail-impact dt {
    font-size: 38px;
  }

  .story-journey__grid img {
    aspect-ratio: 1.5 / 1;
  }

  .story-inspired .cta__actions {
    align-items: stretch;
  }

  .contact-hero {
    padding-block: 58px 54px;
  }

  .contact-hero h1,
  .contact-info h2,
  .contact-form-card h2 {
    font-size: 36px;
  }

  .contact-hero p {
    font-size: 15px;
  }

  .contact-section {
    padding-block: 64px;
  }

  .contact-info__list {
    gap: 28px;
    margin-top: 34px;
  }

  .contact-info__list li {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
  }

  .contact-info__icon {
    width: 44px;
    height: 44px;
  }

  .contact-info__icon img {
    width: 20px;
    height: 20px;
  }

  .contact-info h3 {
    font-size: 19px;
  }

  .contact-info a,
  .contact-info p {
    font-size: 14px;
  }

  .response-card,
  .contact-form-card {
    padding: 24px;
  }

  .contact-form-grid,
  .contact-routing {
    grid-template-columns: 1fr;
  }

  .contact-form-grid input,
  .contact-form-grid textarea {
    font-size: 14px;
  }

  .contact-form-grid textarea {
    min-height: 160px;
  }

  .contact-submit {
    width: 100%;
  }

  .gallery-highlight__content .button {
    width: 100%;
  }

  .page-hero .button {
    width: 100%;
  }

  .stories-feature__content h2,
  .stories-quote h2 {
    font-size: 32px;
    overflow-wrap: anywhere;
  }

  .stories-feature__content p:not(.section-label),
  .stories-quote p {
    font-size: 16px;
    line-height: 1.55;
  }

  .stories-feature__content .button {
    width: 100%;
  }

  .story-card__body {
    padding: 22px;
  }

  .about-hero__inner {
    min-height: auto;
    padding-block: 54px;
  }

  .about-hero h1,
  .founder-section h2,
  .build-section h2,
  .partners-section h2 {
    font-size: 36px;
  }

  .about-hero p,
  .founder-section__content,
  .build-item p,
  .about-cta p {
    font-size: 15px;
  }

  .foundation-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .build-list {
    margin-top: 40px;
  }

  .build-item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 16px;
  }

  .foundation-icon {
    width: 40px;
    height: 40px;
  }

  .foundation-card h3,
  .build-item h3 {
    font-size: 21px;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-cta {
    padding-block: 64px;
  }

  .work-hero {
    padding-block: 56px;
  }

  .work-hero h1 {
    font-size: 40px;
  }

  .work-hero p,
  .work-pillar__intro {
    font-size: 15px;
  }

  .work-title-row {
    align-items: flex-start;
  }

  .work-title-row h2 {
    font-size: 30px;
  }

  .work-list span {
    font-size: 13px;
  }

  .work-feature-card__media {
    height: min(52vw, 360px);
  }

  .work-feature-card__body {
    padding: 22px;
  }

  .work-feature-card h3 {
    font-size: 23px;
  }

  .donation-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .donation-card__amount {
    font-size: 40px;
  }

  .amount-options {
    grid-template-columns: 1fr;
  }

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

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


#gallery-featured-container .gallery-feature-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    height:500px;
}

/* Image */
#gallery-featured-container .gallery-item__media{
    position:absolute;
    inset:0;
    z-index:1;
    height:100%;
}

#gallery-featured-container .gallery-item__media img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Gradient */
#gallery-featured-container .gallery-feature-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.75) 0%,
        rgba(0,0,0,.4) 35%,
        transparent 70%
    );
    z-index:2;
    pointer-events:none;
}

/* Heading */
#gallery-featured-container .gallery-item__body{
    position:absolute;
    left:40px;
    right:40px;
    bottom:35px;
    z-index:3;      /* Must be above the gradient */
    padding:0;
    border:0;
    min-height:auto;
}

#gallery-featured-container .gallery-item__body h2{
    margin:0;
    font-size:56px;
    line-height:1.1;
}

#gallery-featured-container .gallery-item__body h2 a{
    color:#fff;
    text-decoration:none;
}

#gallery-featured-container .gallery-item__body p{
    color: #ffffffa6;
    font-weight: 400;
    margin-top: 15px;
    font-size: 16px;
    line-height: 26px;
    width: 65%;
}

#gallery-featured-container  span.gallery-featured {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.2px;
    color: #ffffff99;
}

/* Badge */
#gallery-featured-container .gallery-tag{
    position:absolute;
    top:20px;
    left:20px;
    z-index:3;
}


/* ===========================
   Tablet
=========================== */
@media (max-width: 1024px) {

    #gallery-featured-container .gallery-feature-card {
        height: 420px;
    }

    #gallery-featured-container .gallery-item__body {
        left: 30px;
        right: 30px;
        bottom: 30px;
    }

    #gallery-featured-container .gallery-item__body h2 {
        font-size: 42px;
    }

    #gallery-featured-container .gallery-item__body p {
        width: 85%;
        font-size: 15px;
        line-height: 24px;
    }

    #gallery-featured-container .gallery-tag {
        top: 18px;
        left: 18px;
    }
}


/* ===========================
   Mobile Landscape
=========================== */
@media (max-width: 768px) {

    #gallery-featured-container .gallery-feature-card {
        height: 360px;
        border-radius: 16px;
    }

    #gallery-featured-container .gallery-item__body {
        left: 24px;
        right: 24px;
        bottom: 24px;
    }

    #gallery-featured-container .gallery-item__body h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    #gallery-featured-container .gallery-item__body p {
        width: 100%;
        margin-top: 12px;
        font-size: 14px;
        line-height: 22px;
    }

    #gallery-featured-container .gallery-tag {
        top: 16px;
        left: 16px;
    }
}


/* ===========================
   Mobile
=========================== */
@media (max-width: 576px) {

    #gallery-featured-container .gallery-feature-card {
        height: 300px;
        border-radius: 14px;
    }

    #gallery-featured-container .gallery-item__body {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    #gallery-featured-container .gallery-item__body h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    #gallery-featured-container .gallery-item__body p {
        width: 100%;
        margin-top: 10px;
        font-size: 13px;
        line-height: 20px;
    }

    #gallery-featured-container span.gallery-featured {
        font-size: 11px;
        letter-spacing: 1px;
    }

    #gallery-featured-container .gallery-tag {
        top: 14px;
        left: 14px;
    }
}

body.page-template-template-container .wp-block-heading, body.page-template-template-container .wp-block-paragraph{
  margin-bottom: 10px;
}

body.page-template-template-container .wp-block-paragraph a{
  color: var(--color-gold);
}

.cky-consent-container .cky-consent-bar .cky-notice .cky-notice-btn-wrapper .cky-btn.cky-btn-accept{
  background-color: #c3a46f;
  border-color: #c3a46f;
}

.cky-consent-container .cky-consent-bar .cky-notice .cky-notice-btn-wrapper .cky-btn.cky-btn-reject{
    color: #c3a46f;
    border-color: #c3a46f;
}

body.single-story .story-related .story-preview-card img{
  width : 100%;
  height: 300px;       
    object-fit: cover;  
    object-position: center;
}

.more-stories-section .story-preview-card > a > img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    object-position: center;
    display: block;
}