:root {
  --bg: #fbf7f0;
  --surface: #fffdf9;
  --surface-alt: #f6eee5;
  --surface-strong: #ead8c4;
  --text: #2f1f1c;
  --muted: #70514b;
  --primary: #7d0f14;
  --primary-dark: #5f090d;
  --primary-soft: #b43a31;
  --accent: #dca85d;
  --border: #e2ccc0;
  --success: #37624f;
  --shadow: 0 20px 50px rgba(72, 22, 17, 0.12);
  --radius: 18px;
  --font-heading: "Noto Serif", serif;
  --font-body: "Newsreader", serif;
  --font-label: "Work Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: linear-gradient(180deg, #fffaf3 0%, #fbf7f0 35%, #f7efe7 100%);
  color: var(--text);
}

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

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

button,
.button-link {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding: 48px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(220, 168, 93, 0.18);
  color: var(--primary);
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-grid,
.two-column,
.three-column,
.four-column {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

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

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

.four-column {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.feature-card,
.stat-card,
.support-card,
.info-card,
.timeline-item,
.cta-panel,
.form-panel,
.content-panel {
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card,
.feature-card,
.support-card,
.info-card,
.timeline-item,
.form-panel,
.content-panel {
  padding: 28px;
}

.stat-card {
  padding: 24px;
  text-align: center;
  background: linear-gradient(180deg, #fffefb 0%, #f8efe6 100%);
}

.card h3,
.feature-card h3,
.support-card h3,
.info-card h3,
.timeline-item h3,
.content-panel h3 {
  margin-top: 0;
}

.hero-copy h1,
.page-header h1,
.section-title {
  margin: 16px 0;
  font-family: var(--font-heading);
  line-height: 1.08;
  color: var(--primary-dark);
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 4.9rem);
}

.page-header h1 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
}

.section-title {
  font-size: clamp(2rem, 3vw, 3rem);
}

.lead,
.page-lead {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--muted);
  line-height: 1.75;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button-link,
.button-solid,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  font-family: var(--font-label);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.button-link:hover,
.button-solid:hover,
.button-outline:hover {
  transform: translateY(-2px);
}

.button-solid {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
  color: #fff;
  border: 1px solid transparent;
}

.button-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.button-light {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-media {
  position: relative;
}

.hero-media img,
.page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  border-radius: 24px;
  z-index: -1;
}

.hero-media::before {
  width: 160px;
  height: 160px;
  background: rgba(220, 168, 93, 0.35);
  left: -18px;
  bottom: -18px;
}

.hero-media::after {
  width: 80px;
  height: 280px;
  background: rgba(125, 15, 20, 0.12);
  right: -16px;
  top: 40px;
}

.page-header {
  padding: 44px 0 32px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-family: var(--font-label);
  font-size: 0.86rem;
  color: var(--muted);
}

.breadcrumb span:last-child {
  color: var(--primary);
  font-weight: 700;
}

.page-banner {
  margin-top: 28px;
  height: 320px;
}

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

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(125, 15, 20, 0.08);
  color: var(--primary);
  margin-bottom: 18px;
}

.icon-badge .material-symbols-outlined {
  font-size: 30px;
}

.meta-list,
.bullet-list,
.check-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.8;
}

.meta-list li,
.bullet-list li,
.check-list li {
  margin-bottom: 0.35rem;
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  padding-left: 1.8rem;
  position: relative;
}

.check-list li::before {
  content: "done";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Material Symbols Outlined";
  color: var(--success);
  font-size: 1rem;
}

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

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.stat-label {
  font-family: var(--font-label);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.spotlight {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #f6ece6 0%, #fff8ef 100%);
  border: 1px solid var(--border);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  position: relative;
  overflow: hidden;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
}

.timeline-item h3,
.timeline-item p {
  margin-left: 18px;
}

.support-band {
  background: linear-gradient(135deg, var(--primary) 0%, #8a161f 52%, #b93d30 100%);
  color: #fff;
  border-radius: 34px;
  padding: 44px;
  box-shadow: var(--shadow);
}

.support-band h2,
.support-band p {
  color: #fff;
}

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

.support-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  box-shadow: none;
}

.support-card p,
.support-card li {
  color: rgba(255, 255, 255, 0.86);
}

.resource-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.resource-table th,
.resource-table td {
  padding: 18px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.resource-table th {
  background: #7d0f14;
  color: #fff;
  font-family: var(--font-label);
  letter-spacing: 0.04em;
}

.resource-table td {
  background: rgba(255, 253, 249, 0.95);
  color: var(--muted);
}

.resource-table tr:last-child td {
  border-bottom: none;
}

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

.contact-item {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid var(--border);
}

.placeholder-box {
  min-height: 220px;
  padding: 26px;
  border: 1px dashed #c59f82;
  border-radius: 24px;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 248, 238, 0.95),
    rgba(255, 248, 238, 0.95) 18px,
    rgba(246, 234, 221, 0.95) 18px,
    rgba(246, 234, 221, 0.95) 36px
  );
}

.placeholder-box h3 {
  margin-top: 0;
}

.site-footer {
  margin-top: 56px;
  background: #2c0c0f;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover {
  color: #fff;
}

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

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 10px;
  font-family: var(--font-label);
  font-size: 0.95rem;
}

.footer-note {
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--font-label);
  font-size: 0.9rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
}

.header-top {
  background: rgba(255, 250, 243, 0.96);
  border-bottom: 1px solid rgba(125, 15, 20, 0.08);
}

.header-top-inner,
.nav-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-top-inner {
  min-height: 82px;
}

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

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.15;
}

.brand-subtitle {
  font-family: var(--font-label);
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.hamburger-button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(125, 15, 20, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--primary);
  cursor: pointer;
}

.nav-bar {
  background: linear-gradient(90deg, var(--primary) 0%, #8d1820 40%, #a82d28 100%);
  color: #fff;
}

.nav-bar-inner {
  min-height: 62px;
}

.desktop-nav,
.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav > ul > li {
  position: relative;
}

.nav-link,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem 0.7rem;
  font-family: var(--font-label);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.96);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-link:hover,
.nav-trigger:hover,
.nav-link.is-active,
.nav-trigger.is-active {
  color: #fff3d5;
}

.nav-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% - 4px);
  min-width: 270px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.98);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.desktop-nav > ul > li:hover .nav-dropdown,
.desktop-nav > ul > li:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-group + .dropdown-group {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.dropdown-label {
  display: block;
  padding: 6px 10px;
  font-family: var(--font-label);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.dropdown-link {
  display: block;
  padding: 10px;
  border-radius: 12px;
  color: var(--muted);
  font-family: var(--font-label);
  font-size: 0.92rem;
}

.dropdown-link:hover,
.dropdown-link.is-active {
  background: rgba(125, 15, 20, 0.08);
  color: var(--primary-dark);
}

.donate-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.05rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-family: var(--font-label);
  font-weight: 700;
}

.mobile-nav-panel {
  display: none;
  background: var(--primary);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.mobile-nav-panel.is-open {
  display: block;
}

.mobile-nav-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-panel a,
.mobile-dropdown-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.95rem 0;
  font-family: var(--font-label);
  color: rgba(255, 255, 255, 0.96);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}

.mobile-submenu {
  display: none;
  padding-left: 16px;
}

.mobile-submenu.is-open {
  display: block;
}

.mobile-submenu a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
}

.mobile-only {
  display: none;
}

@media (max-width: 1024px) {
  .hero-grid,
  .two-column,
  .three-column,
  .four-column,
  .stats-grid,
  .support-grid,
  .footer-grid,
  .contact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .desktop-nav {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
  }

  .nav-bar-inner {
    justify-content: flex-end;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 1.2rem, 1180px);
  }

  .section {
    padding: 56px 0;
  }

  .hero-grid,
  .two-column,
  .three-column,
  .four-column,
  .stats-grid,
  .support-grid,
  .footer-grid,
  .contact-strip {
    grid-template-columns: 1fr;
  }

  .header-top-inner {
    min-height: 74px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand-subtitle,
  .top-actions .icon-button {
    display: none;
  }

  .support-band {
    padding: 28px;
  }

  .page-banner {
    height: 220px;
  }
}
