:root {
  --bg: #f8f4ee;
  --surface: #ffffff;
  --primary: #a8b5a2;
  --secondary: #d9b8b0;
  --text: #3f3a37;
  --accent: #c8a96b;
  --border: #e7ddd1;
  --shadow: 0 10px 30px rgba(63, 58, 55, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial,
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: #000;
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
}

.container {
  width: min(100% - 2rem, 1100px);
  margin-inline: auto;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: #f3ebe2;
}

.stack > * + * {
  margin-top: 1rem;
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.9rem, 6vw, 3.2rem);
}

h2 {
  font-size: clamp(1.5rem, 5vw, 2.3rem);
}

h3 {
  font-size: 1.1rem;
}

p,
ul {
  margin: 0;
}

.list {
  padding-left: 1.2rem;
}

.lead {
  font-size: 1.05rem;
}

.helper-text {
  font-size: 0.95rem;
  opacity: 0.95;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(6px);
  background: rgba(248, 244, 238, 0.92);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  height: 4.2rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.8rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-weight: 700;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--secondary);
  color: #2f2926;
  display: inline-grid;
  place-items: center;
  font-size: 0.8rem;
}

.brand-text {
  font-size: 0.95rem;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.26rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  background: #fff;
  padding: 0.35rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
}

.mobile-nav {
  display: none;
  position: absolute;
  inset: calc(100% + 1px) 1rem auto 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mobile-nav a {
  display: block;
  text-decoration: none;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.65rem 1rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--accent);
  color: #2f2926;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #b58f50;
}

.btn-secondary {
  background: #fff;
  border-color: var(--primary);
}

.btn-header {
  min-height: 2.3rem;
  padding-inline: 0.8rem;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero {
  position: relative;
  min-height: 86dvh;
  display: flex;
  align-items: center;
  background: linear-gradient(
      130deg,
      rgba(63, 58, 55, 0.7),
      rgba(63, 58, 55, 0.4)
    ),
    url("https://images.unsplash.com/photo-1592417817038-d13fd7342605?auto=format&fit=crop&w=1400&q=80")
      center/cover no-repeat;
      /* url("https://images.unsplash.com/photo-1517486808906-6ca8b3f04846?auto=format&fit=crop&w=1400&q=80")
      center/cover no-repeat; */
  color: #fff;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.cards {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 1rem;
  box-shadow: 0 4px 16px rgba(63, 58, 55, 0.06);
}

blockquote {
  margin: 0;
  border-left: 4px solid var(--secondary);
  padding: 0.7rem 1rem;
  background: #fff;
  border-radius: 0.5rem;
  font-weight: 500;
}

.donation-qr {
  width: fit-content;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 1rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.9rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-item p {
  margin-top: 0.7rem;
}

.contact-grid {
  display: grid;
  gap: 1rem;
}

.site-footer {
  background: #efe6dc;
  border-top: 1px solid var(--border);
}

.footer-inner {
  padding: 1.2rem 0 2rem;
  display: grid;
  gap: 0.75rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-nav a {
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 370px) {
  .brand-text {
    display: none;
  }

  .btn-header {
    padding-inline: 0.65rem;
  }
}

@media (min-width: 720px) {
  .section {
    padding: 5rem 0;
  }

  .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

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

@media (min-width: 920px) {
  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: inline-flex;
    position: static;
    inset: auto;
    border: 0;
    box-shadow: none;
    background: transparent;
    gap: 0.35rem;
  }

  .mobile-nav a {
    border-bottom: 0;
    border-radius: 999px;
    padding: 0.5rem 0.8rem;
  }

  .mobile-nav a:hover,
  .mobile-nav a:focus-visible {
    background: #ece2d6;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .hero {
    min-height: 72vh;
  }
}
