:root {
  --forest: #132e2a;
  --forest-2: #1c443d;
  --teal: #2f6b5e;
  --gold: #c06a2c;
  --gold-2: #e08a45;
  --cream: #f7f1e7;
  --sand: #efe4d2;
  --ink: #1b1714;
  --muted: #6a6158;
  --line: rgba(27, 23, 20, 0.12);
  --white: #fffcf8;
  --shadow: 0 18px 50px rgba(19, 46, 42, 0.16);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Outfit, system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3,
.display {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font: 600 0.92rem Outfit, sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: white;
  box-shadow: 0 10px 24px rgba(192, 106, 44, 0.28);
}

.btn-dark {
  background: var(--forest);
  color: var(--cream);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255, 252, 248, 0.35);
}

.btn-line {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 241, 231, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
}

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.brand-tag {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: Outfit, sans-serif;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a:not(.btn) {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--forest);
}

.nav a:not(.btn).active,
.nav a:not(.btn):hover {
  color: var(--gold);
}

.nav .btn {
  color: #fff;
}

.menu-btn {
  display: none;
  background: none;
  border: 0;
  font: 600 0.9rem Outfit, sans-serif;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: end start;
  color: white;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(19, 46, 42, 0.15) 0%, rgba(19, 46, 42, 0.78) 100%),
    linear-gradient(90deg, rgba(19, 46, 42, 0.45), transparent 55%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 0 0 72px;
  max-width: 760px;
}

.kicker {
  display: inline-block;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--gold-2);
}

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.1rem);
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.12rem;
  max-width: 54ch;
  color: rgba(255, 252, 248, 0.9);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stats {
  background: var(--forest);
  color: var(--cream);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 42px 0;
}

.stat strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
}

.stat span {
  color: rgba(247, 241, 231, 0.72);
  font-size: 0.92rem;
}

.section {
  padding: 88px 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 42px;
}

.section-head h2,
.page-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin: 8px 0 14px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.prose p + p {
  margin-top: 1rem;
}

.media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(19, 46, 42, 0.08);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body,
.team-body,
.product-body {
  padding: 22px;
}

.card h3,
.team-card h3 {
  font-size: 1.55rem;
  margin-bottom: 8px;
}

.quote {
  margin-top: 22px;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery-grid button {
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-grid button:hover img {
  transform: scale(1.05);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12, 18, 16, 0.92);
  display: grid;
  place-items: center;
  z-index: 80;
  padding: 24px;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  color: white;
  background: transparent;
  border: 0;
  font-size: 2rem;
  cursor: pointer;
}

.cta-band {
  background:
    linear-gradient(120deg, rgba(19, 46, 42, 0.82), rgba(192, 106, 44, 0.55)),
    url("../photos/kids-peeking.jpg") center/cover;
  color: white;
}

.cta-band .wrap {
  padding: 72px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.page-hero {
  background: var(--forest);
  color: var(--cream);
  padding: 84px 0 56px;
}

.page-hero p {
  max-width: 62ch;
  color: rgba(247, 241, 231, 0.82);
}

.team-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 22px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(19, 46, 42, 0.08);
}

.team-card.featured img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top center;
}

.team-card.featured img.photo-darius {
  object-position: center 45%;
}

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
}

.role {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.donate-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.amounts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 22px 0 18px;
}

.amount:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.amount.selected {
  border-color: var(--gold);
  background: #fff6ee;
  box-shadow: 0 0 0 2px rgba(192, 106, 44, 0.18);
}

button.amount {
  width: 100%;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.amount {
  display: block;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.amount strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
}

.form {
  display: grid;
  gap: 14px;
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: 400 1rem Outfit, sans-serif;
  background: var(--cream);
}

.form label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
}

.form label.check,
.choice-list .check {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 400 !important;
}

.form input[type="checkbox"] {
  width: auto;
  padding: 0;
}

.choice-list,
.donation-field {
  display: grid;
  gap: 10px;
  border: 0;
  padding: 0;
  min-width: 0;
}

.choice-list legend,
.donation-field legend {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.field-error,
.form-error {
  color: #9b2c2c;
  font-size: 0.88rem;
  font-weight: 500;
}

.form input[aria-invalid="true"],
.form fieldset[aria-invalid="true"] {
  border-color: #c0392b;
  outline-color: #c0392b;
}

.other-amount {
  margin-top: 4px;
}

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.notice {
  background: #e8f3ea;
  color: #215232;
  padding: 12px 14px;
  border-radius: 12px;
}

.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}

.product img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.feed-list {
  display: grid;
  gap: 28px;
}

.feed-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(19, 46, 42, 0.08);
}

.embed-frame,
.embed-portrait {
  min-width: 0;
}

.embed-portrait {
  max-width: 320px;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
}

.embed-portrait iframe,
.embed-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
}

.embed-frame iframe,
.embed-frame .twitter-timeline,
.embed-frame .instagram-media {
  width: 100% !important;
  min-height: 480px;
  margin: 0 auto !important;
}

iframe {
  width: 100%;
  border: 0;
  border-radius: 16px;
  min-height: 152px;
}

.site-footer {
  background: var(--forest);
  color: var(--cream);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.site-footer a {
  color: rgba(247, 241, 231, 0.86);
  text-decoration: none;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.legal {
  border-top: 1px solid rgba(247, 241, 231, 0.15);
  padding-top: 18px;
  font-size: 0.86rem;
  color: rgba(247, 241, 231, 0.7);
}

@media (max-width: 980px) {
  .stats-grid,
  .cards,
  .split,
  .team-grid,
  .donate-grid,
  .music-grid,
  .footer-grid,
  .products,
  .feed-block {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav {
    display: none;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
    z-index: 50;
    box-shadow: 0 18px 30px rgba(19, 46, 42, 0.12);
  }

  .menu-btn {
    display: inline-flex;
  }

  .cta-band .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .stats-grid,
  .cards,
  .team-grid,
  .donate-grid,
  .music-grid,
  .footer-grid,
  .products,
  .row-2,
  .feed-block {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 80vh;
  }

  .media img,
  .team-card.featured img,
  .team-card img {
    min-height: 280px;
    height: 320px;
  }
}
