:root {
  --bg: #f6f2ea;
  --surface: rgba(255, 252, 247, 0.9);
  --surface-strong: #ffffff;
  --section-tint: #dfe9dd;
  --text: #191613;
  --muted: #5d544b;
  --line: rgba(25, 22, 19, 0.12);
  --accent: #d89c27;
  --accent-dark: #246b5c;
  --nav-bg: rgba(245, 241, 234, 0.88);
  --shadow: 0 24px 50px rgba(26, 20, 12, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(221, 186, 107, 0.35) 0, transparent 28%),
    linear-gradient(180deg, #f6f2ea 0%, #f2ede3 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header,
.page-shell,
.section,
.hero,
.topbar,
.navbar,
.site-footer {
  padding-left: min(6vw, 60px);
  padding-right: min(6vw, 60px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 8px;
  font-size: 14px;
  color: var(--muted);
}

.topbar-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 12px;
  padding-bottom: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 420px;
  max-width: 520px;
}

.brand img {
  width: 86px;
  aspect-ratio: 1;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
}

.brand span,
.admin-link {
  color: var(--muted);
  font-size: 15px;
}

.brand div {
  min-width: 0;
}

.brand span {
  display: block;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.page-hero {
  max-width: 860px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.button-secondary,
.amount-chip {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.hero,
.page-hero,
.highlight-hero {
  display: grid;
  gap: 28px;
  align-items: center;
}

.hero {
  grid-template-columns: 1.05fr 0.95fr;
  min-height: calc(100vh - 120px);
  padding-top: 34px;
  padding-bottom: 40px;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  font-weight: 900;
  color: var(--accent-dark);
}

.eyebrow.inverse {
  color: rgba(255, 255, 255, 0.82);
}

h1,
h2,
h3 {
  margin: 0 0 18px;
  font-family: "DM Serif Display", serif;
  line-height: 0.97;
}

h1 {
  font-size: clamp(46px, 8vw, 86px);
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
}

h3 {
  font-size: 28px;
}

.lead,
.section-intro,
.about-copy p,
.info-card p,
.guide-card p,
.faq-item p,
.highlight-copy p,
.donation-aside p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 18px;
}

.lead.compact {
  max-width: 58ch;
}

.lead.inverse {
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.amount-list,
.footer-links,
.inline-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stack {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 16px;
}

.hero-stack img,
.about-media img,
.highlight-hero img,
.gallery-card img {
  width: 100%;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.hero-stack img {
  min-height: 220px;
}

.hero-stack img:first-child {
  grid-row: span 2;
  height: 100%;
}

.section,
.page-shell {
  padding-top: 40px;
  padding-bottom: 40px;
}

.about-split,
.mission-band,
.guides-layout,
.transparency-layout,
.two-column,
.site-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.about-split {
  align-items: center;
}

.mission-band {
  background: linear-gradient(180deg, rgba(233, 241, 230, 0.95) 0%, rgba(233, 241, 230, 0.7) 100%);
}

.mission-copy {
  grid-column: 1 / -1;
}

.program-grid,
.testimonial-grid {
  display: grid;
  gap: 22px;
}

.program-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-column: 1 / -1;
}

.program-card,
.testimonial-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.program-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.program-card div {
  padding: 18px;
}

.program-card h3 {
  font-size: 24px;
}

.impact-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  grid-column: 1 / -1;
}

.impact-pill {
  display: grid;
  gap: 6px;
  align-items: start;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.impact-pill strong {
  font-family: "DM Serif Display", serif;
  font-size: 44px;
  color: var(--accent);
}

.impact-pill span {
  font-weight: 800;
  color: var(--muted);
}

.about-copy p {
  margin-bottom: 16px;
}

.inline-contact {
  align-items: center;
  margin-top: 24px;
}

.inline-label {
  display: block;
  color: var(--accent-dark);
  font-weight: 800;
  margin-bottom: 6px;
}

.guides-layout {
  background: linear-gradient(180deg, rgba(219, 232, 222, 0.9) 0%, rgba(219, 232, 222, 0.65) 100%);
}

.guides-grid,
.gallery-grid,
.related-list {
  display: grid;
  gap: 22px;
}

.guides-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gallery-grid-rich {
  align-items: stretch;
}

.info-card,
.gallery-card,
.form-card,
.flash,
.faq-item {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.info-card,
.form-card,
.guide-card {
  padding: 30px;
}

.guide-card h3 {
  color: var(--accent-dark);
}

.transparency-layout {
  align-items: center;
}

.quick-donate-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
  background:
    radial-gradient(circle at top right, rgba(216, 156, 39, 0.18) 0, transparent 34%),
    linear-gradient(135deg, rgba(26, 74, 66, 0.08) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-radius: 34px;
  margin-left: min(6vw, 60px);
  margin-right: min(6vw, 60px);
  box-shadow: var(--shadow);
}

.quick-donate-copy,
.quick-donate-card {
  padding: 34px;
}

.quick-donate-card {
  background: rgba(255, 255, 255, 0.92);
  border-left: 1px solid var(--line);
  display: grid;
  gap: 22px;
  align-content: start;
}

.quick-donate-label {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-dark);
}

.quick-donate-amounts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quick-donate-chip {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 248, 235, 0.98) 100%);
  border: 1px solid rgba(216, 156, 39, 0.22);
  box-shadow: 0 18px 34px rgba(34, 27, 20, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-donate-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(34, 27, 20, 0.12);
}

.quick-donate-chip span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.quick-donate-chip strong {
  font-family: "DM Serif Display", serif;
  font-size: 34px;
  color: var(--accent);
  line-height: 1;
}

.quick-donate-actions {
  display: grid;
  gap: 12px;
}

.quick-donate-actions p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.bullet-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.bullet-list li {
  display: flex;
  gap: 12px;
  align-items: start;
  line-height: 1.6;
  font-size: 18px;
}

.bullet-list li::before {
  content: "›";
  color: var(--accent);
  font-weight: 900;
}

.stats-column {
  display: grid;
  gap: 18px;
}

.stat-line {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.stat-line strong {
  font-family: "DM Serif Display", serif;
  font-size: 64px;
  color: var(--accent);
}

.stat-line span {
  font-size: 30px;
  font-weight: 800;
}

.gallery-link {
  position: relative;
  overflow: hidden;
  min-height: 430px;
}

.gallery-link img {
  height: 100%;
  min-height: 430px;
}

.gallery-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(16, 16, 18, 0.88) 58%);
  color: #fff;
}

.gallery-overlay p,
.gallery-overlay .text-link {
  color: rgba(255, 255, 255, 0.85);
}

.gallery-meta {
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
}

.faq-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  overflow: hidden;
  border-radius: 34px;
  background: #17203d;
  color: #fff;
  box-shadow: var(--shadow);
}

.testimonials-section {
  background:
    radial-gradient(circle at top right, rgba(53, 118, 101, 0.16) 0, transparent 28%),
    linear-gradient(180deg, rgba(31, 101, 87, 0.08) 0%, rgba(31, 101, 87, 0.02) 100%);
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  padding: 26px;
}

.testimonial-quote {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-person img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-person span {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 34px;
  padding-bottom: 34px;
  background: linear-gradient(135deg, #4a3830 0%, #6a554b 100%);
  color: #fff;
  border-radius: 34px;
  margin-left: min(6vw, 60px);
  margin-right: min(6vw, 60px);
}

.cta-banner .eyebrow,
.cta-banner .lead {
  color: rgba(255, 255, 255, 0.82);
}

.cta-banner .button {
  flex: 0 0 auto;
  min-width: 164px;
  padding: 16px 28px;
  white-space: nowrap;
  text-align: center;
}

.faq-media,
.faq-list {
  padding: 38px;
}

.faq-media {
  background-size: cover;
  background-position: center;
  display: grid;
  align-items: end;
  min-height: 520px;
}

.faq-item {
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.faq-item + .faq-item {
  margin-top: 16px;
}

.faq-item summary {
  cursor: pointer;
  font-size: 28px;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.highlight-hero {
  grid-template-columns: 1.05fr 0.95fr;
  padding-top: 20px;
}

.highlight-hero img {
  min-height: 520px;
}

.highlight-copy {
  padding: 12px 0;
}

.highlight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-weight: 700;
}

.related-list a {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.form-card {
  display: grid;
  gap: 14px;
}

.committee-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.committee-hero-card {
  padding: 28px;
  background: linear-gradient(135deg, rgba(36, 107, 92, 0.12) 0%, rgba(216, 156, 39, 0.08) 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.committee-grid {
  display: grid;
  gap: 26px;
}

.committee-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: stretch;
  padding: 22px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.committee-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 24px;
}

.committee-card-copy {
  align-self: center;
}

.committee-card-copy h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.committee-card .role {
  font-size: 18px;
}

.contact-panel {
  align-content: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 10px;
}

.contact-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row span {
  color: var(--accent-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.contact-row strong {
  font-size: 22px;
  line-height: 1.4;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  font: inherit;
  background: rgba(255, 255, 255, 0.9);
}

.amount-chip {
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  cursor: pointer;
}

.donation-aside {
  align-content: start;
}

.site-footer {
  margin-top: 36px;
  align-items: stretch;
  background: linear-gradient(135deg, #111827 0%, #1f3b37 100%);
  color: #fff;
  border-top: 0;
  padding-top: 42px;
  padding-bottom: 42px;
}

.footer-copy p,
.footer-contact span,
.footer-links a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-contact {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.footer-links a {
  font-weight: 800;
}

.footer-map {
  min-height: 320px;
  overflow: hidden;
  border-radius: 28px;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.flash {
  margin: 12px min(6vw, 60px);
  padding: 16px 18px;
  font-weight: 700;
}

.flash-success {
  border-left: 5px solid #198754;
}

.flash-warning {
  border-left: 5px solid #c98400;
}

.flash-error {
  border-left: 5px solid #c0392b;
}

@media (max-width: 980px) {
  .navbar,
  .nav-links,
  .about-split,
  .mission-band,
  .guides-layout,
  .guides-grid,
  .transparency-layout,
  .two-column,
  .committee-hero,
  .faq-band,
  .highlight-hero,
  .site-footer,
  .program-grid,
  .testimonial-grid,
  .impact-band {
    grid-template-columns: 1fr;
  }

  .navbar {
    position: relative;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
  }

  .brand span {
    white-space: normal;
  }

  .site-header.nav-ready .nav-toggle {
    display: inline-flex;
    margin-left: 12px;
    flex: 0 0 auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(300px, calc(100vw - (min(6vw, 60px) * 2)));
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

  .site-header.nav-ready .nav-links {
    display: none;
  }

  .site-header.nav-ready.nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 10px 6px;
  }

  .nav-links .button {
    width: 100%;
    margin-top: 6px;
  }

  .site-header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .faq-media {
    min-height: 320px;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    margin-left: min(6vw, 60px);
    margin-right: min(6vw, 60px);
  }

  .quick-donate-section {
    grid-template-columns: 1fr;
    margin-left: min(6vw, 60px);
    margin-right: min(6vw, 60px);
  }

  .quick-donate-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .stat-line {
    grid-template-columns: 1fr;
  }

  .committee-card {
    grid-template-columns: 1fr;
  }

  .committee-card img {
    min-height: 260px;
  }
}

@media (max-width: 720px) {
  .topbar {
    display: none;
  }

  h1 {
    font-size: clamp(40px, 14vw, 62px);
  }

  h2 {
    font-size: clamp(32px, 11vw, 48px);
  }

  .faq-item summary,
  .stat-line span {
    font-size: 24px;
  }

  .stat-line strong {
    font-size: 48px;
  }

  .brand img {
    width: 64px;
  }

  .brand {
    gap: 12px;
    max-width: calc(100% - 64px);
  }

  .brand strong {
    font-size: 18px;
  }

  .brand span {
    display: none;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }

  .contact-row strong {
    font-size: 18px;
  }

  .quick-donate-amounts {
    grid-template-columns: 1fr;
  }
}
