@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --bg: #f7f1e6;
  --paper: #fffdf9;
  --paper-2: #fffaf3;
  --ink: #183a36;
  --muted: #5d665f;
  --line: #e6dccb;
  --rose: #bd7468;
  --teal: #244f49;
  --navy: #071a2c;
  --shadow: 0 18px 50px rgba(23, 29, 30, 0.12);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: linear-gradient(180deg, #fbf7f0 0%, var(--bg) 100%);
  color: #20302d;
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.7;
  font-weight: 400;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.02em;
  font-weight: 500;
}
h1 {
  font-size: clamp(42px, 6vw, 64px);
}
h2 {
  font-size: clamp(32px, 4vw, 46px);
}
h3 {
  font-size: 28px;
}
p {
  margin: 0;
}

.wrap {
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
}

.page-content {
  padding-bottom: 0;
}

/* Header overlays hero — large logo shrinks on scroll */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(247, 241, 230, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(23, 29, 30, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 0 18px;
  transition: padding 0.25s ease;
}
.site-header.is-scrolled .header-inner {
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}
.brand-logo {
  width: clamp(130px, 16vw, 168px);
  height: auto;
  display: block;
  transition: width 0.25s ease;
}
.site-header.is-scrolled .brand-logo {
  width: clamp(72px, 9vw, 88px);
}

.nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  background: none;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.nav-link {
  color: #111111;
  text-decoration: none;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  padding: 0;
  background: none;
}
.nav-link:hover {
  color: var(--rose);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.header-donate.btn {
  display: none;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 8px;
  white-space: nowrap;
  min-height: 0;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #1d352e;
  cursor: pointer;
  padding: 0;
  box-shadow: none;
}

.nav-toggle-bars,
.nav-toggle-x {
  position: relative;
  width: 22px;
  height: 16px;
  display: block;
}

.nav-toggle-bars span,
.nav-toggle-x span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 1.75px;
  border-radius: 2px;
  background: currentColor;
}

.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 7px; width: 16px; }
.nav-toggle-bars span:nth-child(3) { top: 14px; }

.nav-toggle-x {
  display: none;
}

.nav-toggle-x span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.nav-toggle-x span:nth-child(2) {
  top: 7px;
  transform: rotate(-45deg);
}

.site-header.nav-open .nav-toggle-bars {
  display: none;
}

.site-header.nav-open .nav-toggle-x {
  display: block;
}

.section {
  padding: 56px 0;
}
.section-title {
  margin-bottom: 22px;
}

/* Why FCIS — full-bleed sky background, text on left */
.section-why {
  padding: 0;
  min-height: clamp(560px, 78vh, 760px);
  display: flex;
  align-items: center;
  background-color: #f3e8d8;
  background-image: var(--why-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}

.why-inner {
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0;
}

.why-content {
  max-width: min(560px, 100%);
}

.why-title {
  margin: 0 0 24px;
  color: #1d352e;
  font-size: clamp(36px, 4.5vw, 52px);
}

.why-para {
  margin: 0 0 18px;
  color: #2f3d39;
  font-size: 16px;
  line-height: 1.75;
  max-width: 48ch;
}

.why-para:last-child {
  margin-bottom: 0;
}

/* Programs & Initiatives — accordion over interior background */
.section-about {
  padding: 72px 0;
  min-height: clamp(640px, 82vh, 860px);
  background-color: #f7f1e6;
  background-image:
    linear-gradient(
      90deg,
      #f7f1e6 0%,
      rgba(247, 241, 230, 0.97) 42%,
      rgba(247, 241, 230, 0.72) 58%,
      rgba(247, 241, 230, 0.22) 74%,
      transparent 100%
    ),
    var(--about-image);
  background-repeat: no-repeat;
  background-size: auto, cover;
  background-position:
    center,
    right center;
}

.about-inner {
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
}

.about-content {
  max-width: min(640px, 100%);
}

.about-title {
  margin: 0 0 14px;
  color: #1d352e;
  font-size: clamp(34px, 4.2vw, 48px);
  font-weight: 500;
  line-height: 1.1;
}

.about-subtitle {
  margin: 0 0 28px;
  color: #4a544f;
  font-size: 16px;
  line-height: 1.7;
  max-width: 42ch;
}

.programs-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.programs-item {
  background: rgba(255, 252, 247, 0.92);
  border: 1px solid rgba(90, 70, 55, 0.08);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(23, 29, 30, 0.04);
  overflow: hidden;
  scroll-margin-top: 110px;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.programs-item.is-open {
  background: #fffdf9;
  border-color: rgba(90, 70, 55, 0.1);
  box-shadow: 0 14px 36px rgba(23, 29, 30, 0.08);
  border-radius: 22px;
}

.programs-trigger {
  width: 100%;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  color: #1d352e;
  font: inherit;
}

.programs-item.is-open .programs-trigger {
  padding: 18px 20px 10px;
}

.programs-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(189, 116, 104, 0.55);
  background: transparent;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.programs-item.is-open .programs-icon {
  background: #ebdbcf;
  border-color: transparent;
}

.programs-icon svg {
  width: 18px;
  height: 18px;
}

.programs-item-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  line-height: 1.2;
  color: #1d352e;
  flex: 1;
}

.programs-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.programs-item.is-open .programs-chevron {
  transform: rotate(180deg);
  border: 1px solid rgba(189, 116, 104, 0.35);
  background: rgba(255, 255, 255, 0.7);
}

.programs-panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    opacity 0.25s ease;
}

.programs-panel.is-open {
  max-height: 2000px;
  opacity: 1;
}

.programs-body {
  padding: 4px 20px 20px;
}

.programs-para {
  margin: 0 0 12px;
  color: #4a433c;
  font-size: 15px;
  line-height: 1.7;
}

.programs-para:last-child {
  margin-bottom: 0;
}

.programs-intro {
  font-weight: 600;
  color: #3a332e;
  margin-top: 4px;
}

.vision-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

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

.vision-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
  align-content: start;
}

.vision-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(90, 70, 55, 0.05);
  border-radius: 12px;
  padding: 12px 12px;
  min-height: 0;
}

.vision-point-icon {
  flex: 0 0 auto;
  color: var(--rose);
  display: inline-flex;
  margin-top: 1px;
}

.vision-point-icon svg {
  width: 16px;
  height: 16px;
}

.vision-point-text {
  font-size: 13px;
  line-height: 1.4;
  color: #3d4a46;
}

.vision-closing {
  margin-top: 16px;
  margin-bottom: 0;
  padding: 0;
  width: 100%;
}

/* Full-bleed hero: image is the page background, menu overlays it */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background-color: #f7f1e6;
  background-image: var(--hero-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 140px 0 72px;
}

.hero-content {
  max-width: min(540px, 100%);
}

.hero-headline {
  margin: 0 0 16px;
  font-size: clamp(42px, 5.6vw, 64px);
  line-height: 1.05;
  color: #111111;
}

.hero-subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #3d4a46;
  max-width: 40ch;
}

.hero-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.hero-highlight-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-highlight-icon svg {
  width: 20px;
  height: 20px;
}

.hero-tagline {
  margin: 0;
  font-weight: 600;
  font-size: 15px;
  color: var(--teal);
}

.content-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: stretch;
}

.copy-panel {
  padding: 28px;
  background: var(--paper);
}

.visual-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.contact-link {
  color: inherit;
  text-decoration: none;
}
.contact-link:hover {
  text-decoration: underline;
}

/* Phase 4 — dark evening section, mosque visible on the right */
.section-evening {
  position: relative;
  padding: 72px 0 48px;
  background-color: #0b1522;
  background-image:
    linear-gradient(
      90deg,
      rgba(8, 14, 24, 0.72) 0%,
      rgba(8, 14, 24, 0.6) 52%,
      rgba(8, 14, 24, 0.3) 72%,
      rgba(8, 14, 24, 0.08) 88%,
      rgba(8, 14, 24, 0) 100%
    ),
    var(--evening-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  color: rgba(247, 241, 230, 0.9);
}

.evening-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.evening-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 18px;
  align-items: stretch;
  max-width: min(1060px, 100%);
}

.evening-card {
  background: rgba(12, 20, 33, 0.72);
  border: 1px solid rgba(247, 241, 230, 0.16);
  border-radius: 18px;
  padding: 24px 24px 22px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  scroll-margin-top: 110px;
}

.evening-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.15;
  color: #e8ddd0;
}

.evening-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(189, 116, 104, 0.55);
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.evening-card-icon svg {
  width: 18px;
  height: 18px;
}

.evening-para {
  margin: 0 0 12px;
  color: rgba(247, 241, 230, 0.82);
  font-size: 15px;
  line-height: 1.65;
}

.evening-para:last-child {
  margin-bottom: 0;
}

.evening-meta {
  font-size: 13.5px;
  color: rgba(247, 241, 230, 0.68);
  margin-bottom: 10px;
}

.jumuah-lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.jumuah-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.line-icon {
  color: var(--rose);
  display: inline-flex;
  margin-top: 2px;
  flex: 0 0 auto;
}

.line-icon svg {
  width: 18px;
  height: 18px;
}

.line-text {
  color: rgba(247, 241, 230, 0.88);
  font-size: 15px;
  line-height: 1.55;
}

.line-label {
  color: var(--rose);
  font-weight: 600;
  margin-right: 4px;
}

.line-value {
  color: rgba(247, 241, 230, 0.92);
}

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

.donations-intro {
  color: var(--rose);
  font-weight: 600;
  margin-bottom: 8px;
}

.evening-bullets {
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(247, 241, 230, 0.88);
}

.evening-bullets li {
  margin: 6px 0;
  font-size: 14.5px;
  line-height: 1.45;
}

/* Donate modal */
body.donate-modal-open {
  overflow: hidden;
}

.donate-modal[hidden] {
  display: none !important;
}

.donate-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.donate-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 24, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.donate-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(90vh, 820px);
  display: flex;
  flex-direction: column;
  background: #fffdf9;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.donate-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(90, 70, 55, 0.1);
  background: #f7f1e6;
}

.donate-modal-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 500;
  color: #1d352e;
}

.donate-modal-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #1d352e;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.donate-modal-close:hover {
  background: rgba(90, 70, 55, 0.08);
}

.donate-modal-body {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  background: #fff;
}

.donate-modal-empty {
  margin: 0;
  padding: 28px 20px;
  color: #4a433c;
  text-align: center;
}

.zeffy-embed {
  margin: 0;
  min-height: 520px;
  background: #fff;
}

.zeffy-embed iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
  display: block;
}

.evening-cta {
  margin-top: 16px;
}

.evening-donate {
  width: 100%;
  padding: 14px 22px;
  font-size: 15px;
  border-radius: 12px;
}

.evening-donate-icon {
  display: inline-flex;
}

.evening-donate-icon svg {
  width: 16px;
  height: 16px;
}

.evening-card--contact {
  padding: 22px 24px;
}

.contact-heading {
  margin-bottom: 18px;
}

.contact-subtitle {
  margin: -4px 0 0;
  max-width: 52ch;
}

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

.contact-cell {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 18px;
  border-left: 1px solid rgba(247, 241, 230, 0.14);
}

.contact-cell:first-child {
  border-left: 0;
  padding-left: 0;
}

.contact-cell-icon {
  color: var(--rose);
  display: inline-flex;
  flex: 0 0 auto;
  margin-top: 2px;
}

.contact-cell-icon svg {
  width: 18px;
  height: 18px;
}

.contact-cell-label {
  font-weight: 600;
  color: rgba(247, 241, 230, 0.92);
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-cell-value {
  color: rgba(247, 241, 230, 0.7);
  font-size: 13.5px;
  line-height: 1.45;
  word-break: break-word;
}

.site-footer {
  padding: 22px 0 36px;
  background: #0b1522;
  color: rgba(247, 241, 230, 0.72);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-copy {
  margin: 0;
  font-size: 13.5px;
  color: rgba(247, 241, 230, 0.72);
  white-space: nowrap;
}

.footer-credit-link {
  color: rgba(247, 241, 230, 0.82);
  text-decoration: none;
  border-bottom: 1px solid rgba(189, 116, 104, 0.45);
}

.footer-credit-link:hover {
  color: var(--rose);
  border-bottom-color: var(--rose);
}

.footer-legal {
  flex: 1;
  text-align: right;
  margin: 0;
}

.footer-line {
  margin: 0;
  color: rgba(247, 241, 230, 0.62);
  font-size: 13px;
  line-height: 1.55;
}

.panel {
  background: var(--paper);
  border: 1px solid rgba(36, 79, 73, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.panel img {
  display: block;
  width: 100%;
  height: auto;
}

.note,
.copy {
  padding: 18px 20px;
}

.copy {
  background: #fff;
}

.para {
  margin-top: 10px;
}

.cta-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition:
    transform 0.08s ease,
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}
.btn:active {
  transform: translateY(1px);
}
.btn-donate {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
  border-radius: 10px;
}
.btn-donate:hover {
  background: #a8645a;
  border-color: #a8645a;
  color: #fff;
}
.btn-primary {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
  border-radius: 10px;
}
.btn-primary:hover {
  background: #a8645a;
  border-color: #a8645a;
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--teal);
  border-color: rgba(36, 79, 73, 0.35);
  border-radius: 10px;
}
.btn-ghost:hover {
  background: rgba(36, 79, 73, 0.06);
}

.hero .btn {
  padding: 13px 26px;
}

.nav-donate {
  margin-left: 4px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  white-space: nowrap;
}

.block {
  background: var(--paper-2);
  border: 1px solid #ecdcc6;
  border-radius: 16px;
  padding: 16px;
  white-space: pre-wrap;
  font-size: 15px;
  color: #2f3d39;
}

/* Accordion */
.accordion {
  margin-top: 2px;
}
.acc-item {
  border-top: 1px solid var(--line);
  padding-top: 4px;
  margin-top: 6px;
}
.acc-item:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.acc-trigger {
  width: 100%;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 14px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  color: var(--ink);
}
.acc-icon {
  color: var(--rose);
  display: flex;
}
.acc-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  flex: 1;
}
.acc-chevron {
  color: var(--muted);
  transform: rotate(0deg);
  transition: transform 0.18s ease;
  font-size: 18px;
}

.icon-accent {
  color: var(--rose);
  display: flex;
}
.line-icon {
  color: var(--rose);
  display: inline-flex;
}
.support-title-icon {
  color: var(--rose);
  margin-right: 10px;
  display: inline-flex;
  vertical-align: -4px;
}
.contact-icon {
  color: var(--rose);
  display: inline-flex;
  margin-right: 6px;
}
.acc-panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.25s ease,
    opacity 0.25s ease;
}
.acc-panel.is-open {
  max-height: 1200px;
  opacity: 1;
}
.acc-item.is-open .acc-chevron {
  transform: rotate(180deg);
}
.acc-body {
  padding: 0 10px 14px 44px;
}
.bullet-list {
  margin: 10px 0 0 18px;
}
.bullet-list li {
  margin: 6px 0;
}
.intro-bullets {
  margin-top: 10px;
  font-weight: 600;
}
.closing {
  margin-top: 12px;
}

.card-title {
  font-size: clamp(26px, 3vw, 32px);
  margin-bottom: 12px;
}

@media (max-width: 980px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  .evening-top {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-cell {
    border-left: 0;
    padding: 12px 0;
    border-top: 1px solid rgba(247, 241, 230, 0.12);
  }
  .contact-cell:first-child,
  .contact-cell:nth-child(2) {
    border-top: 0;
  }
  .footer-legal {
    text-align: left;
  }
  .section {
    padding: 40px 0;
  }
  .section-evening {
    padding: 48px 0 32px;
  }
  .section-why {
    min-height: auto;
    background-position: center top;
  }
  .why-inner {
    padding: 64px 0;
  }
  .why-content {
    max-width: 100%;
    padding: 20px 16px;
    background: linear-gradient(
      180deg,
      rgba(247, 241, 230, 0.88) 0%,
      rgba(247, 241, 230, 0.7) 100%
    );
    border-radius: 16px;
  }
  .section-about {
    background-image:
      linear-gradient(
        180deg,
        rgba(247, 241, 230, 0.94) 0%,
        rgba(247, 241, 230, 0.78) 55%,
        rgba(247, 241, 230, 0.4) 100%
      ),
      var(--about-image);
    background-size: auto, cover;
    background-position:
      center,
      center right;
    padding: 48px 0;
    min-height: 0;
  }
  .about-content {
    max-width: 100%;
  }
  .about-subtitle {
    margin-bottom: 22px;
  }
  .programs-trigger {
    padding: 14px 14px;
  }
  .programs-body {
    padding: 4px 14px 16px;
  }
  .vision-points {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    background-position: 72% center;
  }
  .hero-inner {
    padding: 120px 0 48px;
  }
  .hero-content {
    max-width: 100%;
    padding: 20px 18px 22px;
    background: linear-gradient(
      180deg,
      rgba(247, 241, 230, 0.9) 0%,
      rgba(247, 241, 230, 0.75) 100%
    );
    border-radius: 16px;
  }
  .hero-headline {
    font-size: clamp(32px, 8.5vw, 42px);
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-copy {
    white-space: normal;
  }
  .footer-legal {
    text-align: left;
  }
}

/* Mobile header — collapse nav behind hamburger */
@media (max-width: 900px) {
  .header-actions {
    display: inline-flex;
  }
  .header-donate.btn {
    display: inline-flex;
    padding: 6px 12px;
    font-size: 12px;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .header-inner {
    flex-wrap: wrap;
    align-items: center;
    padding: 12px 0;
  }
  .brand-logo,
  .site-header.is-scrolled .brand-logo {
    width: 96px;
  }
  .nav {
    display: none;
  }
  .site-header.nav-open {
    background: rgba(247, 241, 230, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(23, 29, 30, 0.08);
  }
  .site-header.nav-open .nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 4px;
    padding: 6px 0 16px;
    order: 3;
  }
  .site-header.nav-open .nav-link {
    width: 100%;
    padding: 10px 2px;
    font-size: 17px;
    border-bottom: 1px solid rgba(90, 70, 55, 0.08);
  }
  .site-header.nav-open .nav-donate,
  .site-header.nav-open .nav-donate-link {
    display: none;
  }
  .hero-inner {
    padding: 110px 0 48px;
  }
}

@media (max-width: 640px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-cell,
  .contact-cell:nth-child(2) {
    border-top: 1px solid rgba(247, 241, 230, 0.12);
  }
  .contact-cell:first-child {
    border-top: 0;
  }
  .evening-card {
    padding: 18px 16px;
  }
}
