:root {
  --ink: #0f171c;
  --paper: #f5f0e8;
  --paper-2: #efe5d4;
  --panel: #fffdf9;
  --red: #b62838;
  --red-dark: #7a1826;
  --navy: #111b21;
  --navy-soft: #1d2f3d;
  --text: #1e2d36;
  --muted: #5d676e;
  --line: rgba(17, 27, 34, 0.12);
  --shadow: 0 20px 50px rgba(18, 21, 24, 0.12);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  background: linear-gradient(180deg, #f7f3ee 0%, #efe4d4 100%);
  color: var(--text);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
main section[id] {
  scroll-margin-top: 110px;
}
html {
  scroll-padding-top: 96px;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.announcement {
  height: 30px;
  background: #0d1115;
  color: #edf2f0;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.announcement span {
  width: 28px;
  height: 1px;
  background: var(--red);
  display: inline-block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16, 16, 16, 0.97);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-shell {
  position: relative;
  max-width: 1260px;
  margin: 0 auto;
  min-height: 78px;
  padding: 8px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 12px;
  overflow: hidden;
}
.brand::after,
.footer-brand::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.28) 45%, transparent 60%);
  transform: translateX(-130%);
  transition: transform 0.8s ease;
  pointer-events: none;
}
.brand:hover::after,
.footer-brand:hover::after {
  transform: translateX(130%);
}
.brand img {
  width: 145px;
  height: 64px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 12px rgba(203, 160, 88, 0.22)) drop-shadow(0 4px 10px rgba(0,0,0,0.18)) brightness(1.04) saturate(1.08);
  transition: transform 0.28s ease, filter 0.28s ease;
}
.brand:hover img,
.footer-brand:hover img {
  transform: scale(1.02);
  filter: drop-shadow(0 0 14px rgba(203, 160, 88, 0.26)) drop-shadow(0 6px 14px rgba(0,0,0,0.22)) brightness(1.12) saturate(1.12);
}
.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 600;
}
.nav a {
  position: relative;
  padding: 8px 0;
  opacity: 0.9;
  color: #fff;
}
.nav a:not(.nav-donate)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}
.nav a:hover {
  opacity: 1;
}
.nav-donate {
  background: linear-gradient(135deg, #c82d3d, #a81f30);
  color: #fff;
  padding: 12px 22px !important;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(184, 45, 57, 0.2);
}
.nav-donate::before {
  content: "♥";
  display: inline-block;
  margin-right: 8px;
  font-size: 14px;
  transform: translateY(-1px);
}
.nav-donate b {
  margin-left: 0;
  font-size: 18px;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
}

.hero {
  position: relative;
  width: 100%;
  background: #f5f0e8;
  background-image: none;
  overflow: hidden;
  line-height: 0;
}
.hero::before,
.hero::after {
  content: none;
  background: none;
}

.hero-artwork,
.hero img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center top;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
  box-shadow: none;
}

.hero.section-paper {
  background: #f5f0e8;
  background-image: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}
.btn span {
  display: inline-block;
  margin-left: 10px;
  font-size: 18px;
  line-height: 1;
}
.btn-red {
  background: linear-gradient(135deg, #b51f25, #8a1a22);
  color: #fff;
  box-shadow: 0 16px 30px rgba(181, 31, 37, 0.18);
}
.btn-red:hover,
.btn-red:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(181, 31, 37, 0.24);
}
.btn-outline {
  background: rgba(244, 239, 229, 0.8);
  color: #101820;
  border-color: rgba(16, 24, 32, 0.52);
  box-shadow: inset 0 0 0 1px rgba(16, 24, 32, 0.04);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: #101820;
  color: #f4efe5;
  border-color: #101820;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero {
    background: #f5f0e8;
  }

  .hero-artwork {
    object-position: center top;
    max-height: 82vh;
  }
}

@media (max-width: 480px) {
  .hero {
    background: #f5f0e8;
  }

  .hero-artwork {
    object-position: center top;
    max-height: 72vh;
  }
}

.hero-portrait {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  height: min(72vw, 720px);
  display: block;
  overflow: hidden;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.hero-portrait::before {
  content: none;
  background: none;
}
.hero-portrait img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
}
.hero-portrait-copy {
  position: absolute;
  left: 5%;
  bottom: 7%;
  z-index: 2;
  display: grid;
  gap: 2px;
  max-width: 72%;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.82;
  letter-spacing: -0.07em;
  color: #f4efe5;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}
.hero-portrait-line {
  display: block;
  font-size: clamp(30px, 3vw, 62px);
  font-weight: 700;
}
.hero-portrait-line.highlight {
  color: #ffb0b7;
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy > * {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .btn,
  .btn-red,
  .btn-outline {
    transition: none;
  }
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #f7f3ee;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0 7%;
}
.pillars .section-action {
  grid-column: 1 / -1;
  padding: 0 0 30px;
  margin-top: 0;
}
.pillars article {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 150px;
  padding: 28px 26px;
  border-right: 1px solid var(--line);
}
.pillars article:last-child {
  border-right: none;
}
.pillar-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(182, 40, 56, 0.08);
  color: var(--red);
  font-size: 22px;
  font-weight: 700;
}
.pillar-icon.people {
  font-size: 14px;
  letter-spacing: 0.08em;
}
.pillar-icon.leaf {
  font-size: 26px;
}
.pillars h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
}
.pillars p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.dark-section {
  background: linear-gradient(180deg, #112734 0%, #0d1d26 100%);
  color: #f2efe6;
  overflow: hidden;
}
.story {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.6fr;
  gap: 36px;
  align-items: center;
  padding: 60px 7% 52px;
}
.story-copy {
  max-width: 540px;
}
.story-copy .eyebrow {
  color: #dce7ec;
}
.story-copy h2 {
  margin: 18px 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
}
.story-copy p {
  margin: 0 0 18px;
  color: rgba(242, 239, 230, 0.72);
  font-size: 15px;
}
.story-middle {
  border-left: 1px solid rgba(255,255,255,0.12);
  border-right: 1px solid rgba(255,255,255,0.12);
  padding: 0 26px;
  min-height: 240px;
  display: grid;
  place-items: center;
  text-align: center;
}
.quote-mark {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 78px;
  color: var(--red);
  line-height: 0.7;
}
.story-middle blockquote {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  line-height: 1.3;
  color: #f9f6f1;
}
.story-middle .signature {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.story-side {
  display: grid;
  gap: 12px;
  text-align: left;
}
.story-side span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.story-side .book {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f9f6f1;
}

.section-paper {
  position: relative;
  background: var(--paper);
  background-image: radial-gradient(rgba(17,27,34,.04) 0.8px, transparent 0.8px);
  background-size: 10px 10px;
}
.work {
  padding: 48px 5.5% 54px;
}
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.section-heading h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.06;
}
.section-heading h2 em {
  color: var(--red);
  font-style: normal;
}
.section-heading > i {
  display: none;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.work-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 22px;
  border: 1px solid rgba(17,27,34,0.06);
  box-shadow: 0 10px 22px rgba(19,18,15,0.05);
  padding: 24px 20px 22px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(19,18,15,0.08);
}
.work-card.warm { background: #f4e9d7; }
.work-card.blue { background: #e6eef1; }
.work-card.green { background: #e2ece5; }
.work-card.rose { background: #f3e4e3; }
.work-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.32);
  font-size: 28px;
  color: #161814;
}
.work-card h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  line-height: 1.15;
  color: var(--ink);
}
.work-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #59544b;
}
.upcoming {
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #f4eee5 0%, #e9dfd0 100%);
}
.upcoming-visual {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}
.upcoming-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  object-position: center;
  background: #efe6da;
  margin: 0;
}

.upcoming-copy {
  padding: 40px 0 40px 7%;
}
.upcoming-copy h2 {
  margin: 6px 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 4vw, 50px);
}
.date {
  font-size: 22px;
  font-weight: 700;
  font-family: "Playfair Display", Georgia, serif;
}
.upcoming-copy p {
  max-width: 420px;
  margin: 12px 0 22px;
  font-size: 14px;
  color: var(--muted);
}

.journey {
  display: grid;
  grid-template-columns: 0.92fr 1.9fr 0.38fr;
  gap: 28px;
  align-items: center;
  padding: 54px 5.2% 58px;
  background: #f4efe5;
}
.journey-copy {
  align-self: start;
  padding-top: 18px;
}
.journey-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.16em;
}
.journey-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--red);
  display: inline-block;
}
.journey-copy h2 {
  margin: 16px 0 8px;
  color: var(--red);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 3vw, 58px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.05em;
}
.journey-copy h3 {
  margin: 0 0 12px;
  color: #101820;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 1.8vw, 32px);
  line-height: 1.1;
}
.journey-copy p {
  margin: 0 0 24px;
  max-width: 420px;
  font-size: 15px;
  line-height: 1.6;
  color: #4f5458;
}
.journey-copy .btn {
  min-height: 50px;
  padding: 13px 22px;
}
.photo-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
}
.photo-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #d5cec2;
  box-shadow: 0 12px 24px rgba(16, 24, 32, 0.08);
  transition: transform 0.3s ease;
}
.photo-card:hover,
.photo-card:focus-within {
  transform: translateY(-2px) scale(1.015);
}
.photo-card.large {
  grid-row: span 2;
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 12px 10px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.72) 100%);
  color: #f4efe5;
  font-size: 9px;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.journey-note {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #55595a;
  padding-right: 8px;
}
.journey-note span {
  display: block;
}
.journey-note i {
  display: block;
  width: 44px;
  height: 2px;
  background: var(--red);
  margin-top: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .photo-card {
    transition: none;
  }
}

.donate {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #112734 0%, #0d1d26 100%);
}
.support-visual {
  width: 100%;
  background: #112734;
  margin: 0;
  padding: 0;
}
.support-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  margin: 0;
}

.contact {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr 0.6fr;
  gap: 45px;
  padding: 48px 7% 54px;
  align-items: start;
}
.contact-copy h2 {
  margin: 10px 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}
.contact-copy p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.contact-email {
  margin-top: 12px !important;
  font-size: 13px;
  color: var(--ink);
}
.contact-email a {
  color: var(--red);
  font-weight: 700;
}
.contact-details {
  border-left: 1px solid var(--line);
  padding-left: 35px;
}
.contact-details p {
  display: flex;
  gap: 14px;
  margin: 0 0 18px;
  font-size: 13px;
  color: var(--text);
}
.contact-details small {
  color: var(--muted);
}
.socials {
  margin-top: 26px;
}
.socials > b {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.socials > div {
  display: flex;
  gap: 8px;
}
.socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #111;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
}
.contact-side-actions {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12px;
}
.contact-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.whatsapp-intro {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.whatsapp-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #1ebc59);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: whatsappPulse 1.8s ease-in-out infinite;
}
.whatsapp-btn::before {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20.52 3.48A11.82 11.82 0 0 0 12.08 0C5.52 0 .11 5.4.11 12.06c0 2.13.56 4.19 1.62 6.01L0 24l6.08-1.6A12.08 12.08 0 0 0 12.08 24c6.56 0 11.96-5.4 11.96-12.06 0-3.21-1.26-6.23-3.52-8.46ZM12.08 22c-1.93 0-3.8-.52-5.45-1.5l-.39-.23-3.6.95 1-3.5-.26-.38A9.9 9.9 0 0 1 2.12 12.1c0-5.48 4.46-9.94 9.96-9.94 2.66 0 5.16 1.04 7.04 2.92A9.89 9.89 0 0 1 22.04 12c0 5.48-4.46 9.94-9.96 9.94Zm5.47-7.45c-.3-.15-1.76-.87-2.04-.97-.27-.1-.47-.15-.66.15-.2.3-.74.97-.91 1.17-.17.2-.34.22-.63.07-.3-.15-1.25-.46-2.37-1.46-.88-.78-1.46-1.74-1.63-2.03-.17-.3-.02-.46.13-.6.13-.13.3-.34.45-.5.15-.17.2-.3.3-.5.1-.2.05-.38-.02-.53-.07-.15-.66-1.6-.9-2.2-.24-.58-.48-.5-.66-.5h-.57c-.2 0-.53.08-.8.38-.27.3-1.03 1-1.03 2.45 0 1.45 1.06 2.84 1.2 3.04.15.2 2.07 3.16 5.02 4.43.7.3 1.25.48 1.68.62.7.22 1.34.19 1.84.12.56-.08 1.76-.72 2.01-1.42.25-.7.25-1.3.17-1.42-.08-.12-.28-.2-.58-.35Z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.whatsapp-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 26px rgba(37, 211, 102, 0.28);
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.22), 0 12px 24px rgba(37, 211, 102, 0.22); }
  50% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0.08), 0 16px 28px rgba(37, 211, 102, 0.28); }
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9d1c4;
  background: #fffdf8;
  border-radius: 10px;
  padding: 13px 14px;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(182, 40, 56, 0.06);
}
.contact-form .btn {
  width: 100%;
}
.form-note {
  min-height: 14px;
  margin: 0;
  font-size: 11px;
  color: var(--muted);
}

.story-page-shell {
  background: linear-gradient(180deg, #f7f3ee 0%, #efe4d4 100%);
  padding: 52px 24px 70px;
}

.story-page {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(20, 24, 27, 0.08);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 42px 32px 24px;
}

.story-page::before {
  content: "";
  position: absolute;
  inset: 16px 18px auto 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(182, 40, 56, 0.5), rgba(17,27,34,0.06), rgba(182, 40, 56, 0.5));
}

.story-page-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  color: var(--text);
}

.story-page-inner .eyebrow,
.work-page-inner .eyebrow,
.impact-page-inner .eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
}

.story-ornament {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 18px;
}

.story-ornament span {
  display: block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(182, 40, 56, 0.3));
  border-radius: 999px;
}

.story-ornament span:nth-child(2) {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(182, 40, 56, 0.12);
}

.story-page-inner h1 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-transform: uppercase;
}

.story-page-inner h2 {
  margin: 0 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.25;
  color: var(--ink);
  text-transform: uppercase;
}

.story-page-inner h3 {
  margin: 20px 0 10px;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-transform: uppercase;
}

.story-page-inner p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}

.story-page-inner p strong,
.story-page-inner h3 strong {
  color: var(--ink);
}

.story-callout {
  margin-top: 22px;
  padding: 20px 20px 10px;
  border: 1px solid rgba(17,27,34,0.08);
  border-left: 4px solid var(--red);
  border-radius: 18px;
  background: rgba(255,255,255,0.24);
  box-shadow: 0 10px 24px rgba(17,27,34,0.03);
}

.story-callout h3 {
  margin: 0 0 10px;
}

.work-page-inner .story-callout,
.impact-page-inner .story-callout {
  margin-top: 22px;
}

.section-action {
  display: flex;
  justify-content: flex-start;
  margin-top: 28px;
}

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

.impact-card {
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(17, 27, 34, 0.08);
  border-radius: 22px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 12px 22px rgba(17, 27, 34, 0.05);
}

.impact-card strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3vw, 46px);
  color: var(--red);
  line-height: 1;
  margin-bottom: 10px;
}

.impact-card span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}

.work-page-shell {
  background: linear-gradient(180deg, #f7f3ee 0%, #efe4d4 100%);
  padding: 52px 24px 70px;
}

.impact-page-shell,
.work-page-shell {
  background: linear-gradient(180deg, #f7f3ee 0%, #efe4d4 100%);
  padding: 52px 24px 70px;
}

.work-page,
.impact-page {
  max-width: 980px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(20, 24, 27, 0.08);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 42px 32px 24px;
}

.work-page-inner,
.impact-page-inner {
  max-width: 780px;
  margin: 0 auto;
  color: var(--text);
}

.work-page-inner h1,
.impact-page-inner h1,
.work-page-inner h2,
.impact-page-inner h2,
.work-page-inner h3,
.impact-page-inner h3 {
  margin: 0 0 16px;
  color: var(--ink);
}

.work-page-inner h1,
.impact-page-inner h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.work-page-inner h2,
.impact-page-inner h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.work-page-inner h3,
.impact-page-inner h3 {
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-page-inner p,
.impact-page-inner p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}

.work-page-inner .work-entry {
  position: relative;
  margin: 18px 0;
  padding: 18px 18px 14px 20px;
  border: 1px solid rgba(17,27,34,0.08);
  border-left: 4px solid var(--red);
  border-radius: 18px;
  background: rgba(255,255,255,0.35);
  box-shadow: 0 10px 22px rgba(17,27,34,0.03);
}

.work-page-inner .work-entry h3 {
  margin: 0 0 8px;
}

.work-page-inner .work-entry p {
  margin: 0;
}

.impact-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 26px;
  background: rgba(255,255,255,0.38);
  border: 1px solid rgba(17, 27, 34, 0.08);
  border-radius: 18px;
  overflow: hidden;
}

.impact-table th,
.impact-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(17, 27, 34, 0.08);
  text-align: left;
}

.impact-table th {
  width: 72%;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.impact-table td {
  width: 28%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1;
  color: var(--red);
  text-align: right;
}

.impact-table tr:last-child th,
.impact-table tr:last-child td {
  border-bottom: none;
}

.work-page-inner .wide-quote,
.impact-page-inner .wide-quote {
  position: relative;
  margin: 28px 0;
  padding: 18px 20px 18px 24px;
  border-left: 3px solid var(--red);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--ink);
  background: linear-gradient(90deg, rgba(182,40,56,0.07), rgba(255,255,255,0.12));
  border-radius: 0 14px 14px 0;
}

.work-page-inner .approach-list,
.impact-page-inner .approach-list {
  margin: 14px 0 12px;
  padding-left: 20px;
}

.work-page-inner .approach-list li,
.impact-page-inner .approach-list li {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
}

.work-page-inner .story-callout,
.impact-page-inner .story-callout {
  margin-top: 26px;
  padding: 18px 18px 8px;
  border: 1px solid rgba(17,27,34,0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.28);
}

.work-page-inner .flow,
.impact-page-inner .flow {
  margin-top: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

@media (max-width: 760px) {
  .story-page-shell {
    padding: 30px 18px 50px;
  }
  .story-page {
    padding: 26px 18px 18px;
    border-radius: 20px;
  }
  .story-page-inner p {
    font-size: 15px;
    line-height: 1.8;
  }
}

.footer {
  background: #090d0b;
  color: #d9d2c5;
  min-height: 130px;
  padding: 25px 6%;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr 0.6fr;
  gap: 18px;
  align-items: center;
}
.footer-brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  border-radius: 12px;
  padding: 4px 8px;
}
.footer-brand img {
  width: 150px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.22)) brightness(1.03) saturate(1.08);
  transition: transform 0.28s ease, filter 0.28s ease;
}
.footer-brand span {
  display: inline-block;
  width: 1px;
  height: 45px;
  background: rgba(255,255,255,0.2);
}
.footer-links {
  display: flex;
  gap: 22px;
  font-size: 12px;
}
.legal {
  font-size: 11px;
  color: #a8a196;
  justify-self: start;
}
.legal p {
  margin: 10px 0 0;
}
.footer-slogan {
  text-align: right;
  justify-self: end;
  align-self: center;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.8;
  white-space: nowrap;
}

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-copy { max-width: 540px; }
  .hero-portrait { height: 520px; }
  .story { grid-template-columns: 1fr 0.9fr; }
  .story-side { display: none; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .journey { grid-template-columns: 1fr 2fr; }
  .journey-note { display: none; }
  .donate { grid-template-columns: 1fr 0.7fr; }
  .donate-points { display: none; }
  .contact { grid-template-columns: 1fr 1fr; }
  .contact-form { grid-column: 1 / -1; }
  .footer { grid-template-columns: 1fr 1fr; }
  .footer-slogan { display: none; }
}

@media (max-width: 760px) {
  .announcement {
    font-size: 8px;
    letter-spacing: 0.12em;
  }
  .nav-shell {
    min-height: 68px;
    padding: 5px 18px;
  }
  .brand img {
    width: 118px;
    height: 58px;
  }
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: #0b100e;
    z-index: 100;
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 5px; }
  .nav-donate {
    text-align: center;
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 28px 22px 34px;
  }
  .hero-copy {
    max-width: none;
    justify-self: stretch;
    padding-top: 0;
  }
  .hero-kicker {
    margin-bottom: 14px;
    font-size: 9px;
    letter-spacing: 0.18em;
  }
  .hero-editorial {
    max-width: 100%;
    margin-bottom: 16px;
  }
  .hero-editorial::after {
    width: 32%;
    height: 10px;
    bottom: -10px;
  }
  .editorial-line {
    font-size: clamp(46px, 13vw, 64px);
  }
  .hero-caption {
    margin: 20px 0 24px;
    font-size: 16px;
    max-width: 100%;
  }
  .actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-portrait {
    order: -1;
    width: 100%;
    max-width: 540px;
    height: 320px;
    justify-self: center;
  }
  .hero-side-note { right: 18px; top: 18px; font-size: 8px; }
  .hero-bottom-art { display: none; }

  .pillars { grid-template-columns: 1fr; }
  .pillars article {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
  }
  .pillars article:last-child { border-bottom: none; }

  .story {
    grid-template-columns: 1fr;
    padding: 45px 24px;
  }
  .story-middle {
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 24px 0;
  }

  .work { padding: 42px 20px; }
  .work-grid { grid-template-columns: 1fr 1fr; }

  .upcoming {
    grid-template-columns: 1fr;
  }
  .upcoming-cta {
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: calc(100% - 40px);
    white-space: normal;
    text-align: center;
  }
  .upcoming-copy { padding: 30px 20px; }
  .upcoming > blockquote { display: none; }

  .journey {
    grid-template-columns: 1fr;
    padding: 42px 20px 46px;
    gap: 20px;
  }
  .journey-copy {
    padding-top: 0;
  }
  .journey-copy p {
    max-width: none;
  }
  .photo-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .photo-card.large {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .journey-note {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    font-size: 10px;
    letter-spacing: 0.15em;
  }

  .donate {
    grid-template-columns: 1fr;
    padding: 24px 10px;
  }

  .contact {
    grid-template-columns: 1fr;
    padding: 42px 20px;
  }
  .contact-details {
    border-left: none;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 16px;
  }
  .form-row { grid-template-columns: 1fr; }

  .footer {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}
