:root {
  --bg: #f4eee6;
  --surface: #fff8f1;
  --gum-green: #c46239;
  --wattle-gold: #f0a75a;
  --sunset-rose: #e48c76;
  --sky-blue: #4a6178;
  --text: #2a1c16;
  --muted: #6d5240;
  --shadow: 0 18px 40px -24px rgba(88, 53, 31, 0.4);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a:hover,
a:focus {
  text-decoration: underline;
}

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

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.announcement {
  background: var(--sky-blue);
  color: #fef8f1;
  font-size: 0.9rem;
}

.announcement .container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 0;
}

.announcement a {
  color: inherit;
  font-weight: 600;
}

.announcement .divider {
  opacity: 0.6;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 252, 247, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px -28px rgba(45, 24, 12, 0.45);
}

.site-nav .container {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Cabin", "Segoe UI", sans-serif;
  font-weight: 600;
  color: var(--gum-green);
}

.brand-mark {
  font-size: 1.9rem;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #2c1a13;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-size: 1.1rem;
}

.brand-tag {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0 auto 0 0;
  padding: 0;
  font-weight: 600;
  color: var(--muted);
  position: relative;
}

.nav-links a {
  position: relative;
  padding-bottom: 6px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--wattle-gold);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  width: 100%;
}

.nav-cta {
  font-weight: 600;
  background: var(--gum-green);
  color: #fff7ef;
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus {
  transform: translateY(-1px);
  text-decoration: none;
  box-shadow: 0 18px 45px -18px rgba(196, 98, 57, 0.45);
}

.nav-toggle {
  border: none;
  background: transparent;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hero {
  position: relative;
  padding: 5rem 0 6rem;
  color: #fff7ef;
  background: url('photo-1583668928323-0d810eec29dc.avif') center/cover no-repeat;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(29, 17, 11, 0.65), rgba(29, 17, 11, 0.55)),
    radial-gradient(circle at 70% 20%, rgba(196, 98, 57, 0.45), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(228, 140, 118, 0.45), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Cabin", "Segoe UI", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.3rem);
  margin-bottom: 1rem;
}

.hero-copy p {
  color: rgba(255, 247, 239, 0.85);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.hero-copy .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--wattle-gold);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn {
  border: none;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--gum-green);
  color: #fff7ef;
  box-shadow: var(--shadow);
}

.btn.primary:hover,
.btn.primary:focus {
  transform: translateY(-1px);
  box-shadow: 0 20px 45px -20px rgba(196, 98, 57, 0.5);
  text-decoration: none;
}

.btn.secondary {
  background: rgba(240, 167, 90, 0.18);
  color: #8c4023;
  border: 1px solid rgba(240, 167, 90, 0.35);
}

.btn.ghost {
  background: transparent;
  color: #fff7ef;
  border: 1px solid rgba(255, 247, 239, 0.6);
  box-shadow: none;
}

.btn.ghost:hover,
.btn.ghost:focus {
  transform: translateY(-1px);
  background: rgba(255, 247, 239, 0.12);
  text-decoration: none;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
  color: rgba(255, 247, 239, 0.88);
  font-weight: 600;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-highlights li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--wattle-gold);
  box-shadow: 0 0 0 4px rgba(240, 167, 90, 0.25);
}

.hero-card {
  background: rgba(255, 248, 241, 0.9);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(196, 98, 57, 0.1);
  color: var(--text);
}

.hero-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gum-green);
  background: rgba(196, 98, 57, 0.12);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}

.hero-card h2 {
  font-size: 1.5rem;
  font-family: "Cabin", sans-serif;
  margin-bottom: 0.8rem;
}

.hero-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  margin: 1.4rem 0;
}

.hero-card dt {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-card dd {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gum-green);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-family: "Cabin", sans-serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
  color: var(--text);
}

.section-header p {
  color: var(--muted);
  margin: 0 auto;
  max-width: 640px;
}

.communities {
  padding: 4.5rem 0;
}

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

.community-card {
  background: var(--surface);
  padding: 1.8rem;
  border-radius: var(--radius);
  border: 1px solid rgba(196, 98, 57, 0.08);
  box-shadow: 0 18px 40px -30px rgba(60, 35, 20, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.community-card:hover,
.community-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 30px 55px -35px rgba(60, 35, 20, 0.4);
}

.community-card h3 {
  font-family: "Cabin", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--gum-green);
}

.values {
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(252, 239, 225, 0.8), rgba(255, 248, 241, 0.65));
}

.values-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 42px;
  align-items: start;
}

.values-intro h2 {
  font-family: "Cabin", sans-serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.values-intro p {
  color: var(--muted);
}

.values-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.values-list li {
  background: var(--surface);
  padding: 1.6rem;
  border-radius: 18px;
  border: 1px solid rgba(228, 140, 118, 0.3);
  box-shadow: 0 14px 30px -26px rgba(60, 35, 20, 0.35);
}

.values-list h3 {
  font-family: "Cabin", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--gum-green);
}

.programs {
  padding: 5rem 0 4rem;
}

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

.program-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(196, 98, 57, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 25px 50px -36px rgba(60, 35, 20, 0.4);
}

.program-card h3 {
  font-family: "Cabin", sans-serif;
  color: var(--gum-green);
  margin: 0;
}

.link-arrow {
  font-weight: 600;
  color: var(--gum-green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.link-arrow::after {
  content: "→";
  transition: transform 0.2s ease;
}

.link-arrow:hover::after,
.link-arrow:focus::after {
  transform: translateX(4px);
}

.stories {
  padding: 5rem 0;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.story-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.2rem;
  border: 1px solid rgba(196, 98, 57, 0.1);
  box-shadow: 0 28px 55px -38px rgba(60, 35, 20, 0.4);
}

.story-card blockquote {
  margin: 0 0 1.2rem;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--muted);
}

.story-card cite {
  font-weight: 600;
  color: var(--gum-green);
}

.story-info {
  background: linear-gradient(160deg, rgba(42, 28, 22, 0.92), rgba(196, 98, 57, 0.88));
  color: #fff7ef;
  border-radius: var(--radius);
  padding: 2.5rem;
  display: grid;
  gap: 1rem;
}

.story-info p {
  color: rgba(255, 247, 239, 0.9);
}

.cta {
  padding: 5rem 0 4rem;
  background: linear-gradient(180deg, rgba(196, 98, 57, 0.12), rgba(74, 97, 120, 0.12));
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: start;
}

.cta-copy h2 {
  font-family: "Cabin", sans-serif;
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.cta-copy p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.contact-list .label {
  font-weight: 600;
  color: var(--gum-green);
  display: block;
}

.cta-form {
  background: var(--surface);
  padding: 2.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(196, 98, 57, 0.1);
  display: grid;
  gap: 1rem;
}

.cta-form h3 {
  margin: 0;
  font-family: "Cabin", sans-serif;
  color: var(--text);
}

.cta-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--muted);
}

.cta-form input,
.cta-form select,
.cta-form textarea {
  border-radius: 12px;
  border: 1px solid rgba(110, 82, 64, 0.25);
  padding: 0.8rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fffdf9;
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  border-color: var(--gum-green);
  outline: none;
  box-shadow: 0 0 0 4px rgba(196, 98, 57, 0.18);
}

.privacy-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.site-footer {
  background: #20110c;
  color: rgba(255, 247, 239, 0.82);
  padding: 2.5rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 2rem;
}

.site-footer h3,
.site-footer h4 {
  font-family: "Cabin", sans-serif;
  color: #fff7ef;
  margin-top: 0;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.site-footer a {
  color: rgba(255, 247, 239, 0.82);
}

.site-footer a:hover,
.site-footer a:focus {
  color: #fff7ef;
  text-decoration: none;
}

.site-footer .copyright {
  text-align: center;
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 247, 239, 0.6);
}

@media (max-width: 1100px) {
  .community-grid,
  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .values-grid,
  .cta-grid,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    order: -1;
  }
}

@media (max-width: 768px) {
  .site-nav .container {
    justify-content: space-between;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    inset: 72px 16px auto;
    flex-direction: column;
    background: rgba(255, 248, 241, 0.98);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 45px -32px rgba(32, 17, 12, 0.6);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.2s ease;
    pointer-events: none;
  }

  .nav-links.is-open {
    transform: scaleY(1);
    pointer-events: auto;
  }

  .nav-cta {
    display: none;
  }

  .announcement .container {
    gap: 6px;
  }

  .community-grid,
  .program-grid,
  .stories-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stories-grid {
    gap: 16px;
  }

  .hero {
    padding: 4rem 0 3.5rem;
  }

  .cta {
    padding: 4rem 0 3rem;
  }
}

@media (max-width: 480px) {
  .hero-card dl {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .announcement .container {
    flex-direction: column;
    text-align: center;
  }
}
