:root {
  color-scheme: light;
  --bg: #fff7d3;
  --bg-dark: #3d2315;
  --accent: #3d2315;
  --accent-soft: #ffcff9;
  --ink: #3d2315;
  --muted: #6b4a3d;
  --card: #ffffff;
  --line: #e6d5c1;
  --shadow: 0 24px 60px rgba(61, 35, 21, 0.18);
  --radius: 24px;
  font-family: "Work Sans", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: radial-gradient(circle at top left, #fffdf3, var(--bg));
  color: var(--ink);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 243, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 500;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 24px rgba(61, 35, 21, 0.25);
}

.button:hover {
  transform: translateY(-2px);
}

.button.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.button.inverse {
  background: #fff;
  color: var(--accent);
}

.button.small {
  padding: 10px 16px;
  font-size: 0.95rem;
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
}

.hero-content h1 {
  font-family: "DM Serif Display", "Georgia", serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
}

.tagline {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

.hero-actions {
  margin: 28px 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  color: var(--muted);
}

.hero-meta strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

.hero-card {
  background: linear-gradient(140deg, var(--bg-dark), #5a3a2a);
  color: #fff;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card h2 {
  font-size: 1.4rem;
}

.event-title {
  font-weight: 600;
  font-size: 1.1rem;
}

.event-detail {
  font-size: 0.95rem;
  opacity: 0.8;
}

.event-note {
  opacity: 0.85;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 24px;
}

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

.section-heading h2 {
  font-family: "DM Serif Display", "Georgia", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading .subnote {
  margin-top: 8px;
  font-size: 0.95rem;
  color: var(--muted);
}

.section-heading .subactions {
  margin-top: 14px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 15px 30px rgba(31, 28, 26, 0.08);
  border: 1px solid rgba(217, 207, 196, 0.6);
}

.card h3 {
  margin-bottom: 12px;
}

.highlight {
  background: linear-gradient(120deg, #fff3dc, #ffe1f5);
  border-radius: var(--radius);
  margin: 40px auto;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: left;
}

.impact-grid h3 {
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.impact-grid > div {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(217, 207, 196, 0.5);
}

.event .pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.signup {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.calendly-inline-widget {
  height: 720px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.form-note {
  margin-top: 16px;
  color: var(--muted);
}

.donate {
  background: linear-gradient(140deg, #3d2315, #2b1a10);
  color: #fff;
  border-radius: var(--radius);
}

.donate .section-heading p {
  color: rgba(255, 255, 255, 0.75);
}

.donate-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.donate-panel:first-of-type {
  border-top: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.footer {
  text-align: center;
  padding: 30px 24px 50px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 60px;
  }

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