:root {
  --bg: #f7f0e7;
  --bg-soft: #fffaf4;
  --surface: rgba(255, 250, 244, 0.76);
  --surface-strong: #fff8ef;
  --ink: #2f231b;
  --muted: #705948;
  --line: rgba(67, 42, 20, 0.12);
  --gold: #e2a93d;
  --gold-deep: #bb7b16;
  --leaf: #3d7856;
  --berry: #a94432;
  --shadow: 0 22px 60px rgba(81, 46, 19, 0.16);
  --radius: 26px;
  --content: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(251, 212, 120, 0.45), transparent 24%),
    radial-gradient(circle at top right, rgba(109, 165, 121, 0.22), transparent 20%),
    linear-gradient(180deg, #fff7ec 0%, #f6eddf 38%, #fff9f1 100%);
}

img,
video {
  display: block;
  width: 100%;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 340px;
  height: 340px;
  pointer-events: none;
  filter: blur(12px);
  opacity: 0.5;
  z-index: 0;
}

.site-shell::before {
  top: -80px;
  right: -80px;
  background:
    radial-gradient(circle at center, rgba(226, 169, 61, 0.34), transparent 62%);
}

.site-shell::after {
  left: -120px;
  bottom: 5%;
  background:
    radial-gradient(circle at center, rgba(61, 120, 86, 0.28), transparent 62%);
}

.topbar,
main > section {
  position: relative;
  z-index: 1;
}

.topbar {
  width: var(--content);
  margin: 20px auto 0;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 248, 239, 0.84);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.brand p,
.brand strong {
  margin: 0;
}

.brand p {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 52px);
  padding: 4px;
  background: rgba(80, 54, 36, 0.08);
  border-radius: 999px;
}

.lang-btn,
.button,
.mini-cta {
  font: inherit;
  border: 0;
  cursor: pointer;
}

.lang-btn {
  min-height: 38px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
}

.lang-btn.active {
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(79, 50, 20, 0.14);
}

.mini-cta,
.button {
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.mini-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--leaf), #5b9a74);
  color: #fff;
  font-weight: 700;
}

.hero {
  width: var(--content);
  margin: 26px auto 0;
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: center;
  min-height: calc(100vh - 150px);
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(135deg, rgba(255, 247, 234, 0.94), rgba(246, 232, 212, 0.82)),
    url("PHOTO-2026-07-03-09-56-44 11.jpg") center / cover;
  box-shadow: var(--shadow);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 250, 243, 0.92) 6%, rgba(255, 250, 243, 0.62) 42%, rgba(255, 250, 243, 0.16) 100%);
}

.hero-copy,
.hero-media {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker,
.small-label {
  margin: 0 0 14px;
  color: var(--berry);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
blockquote {
  margin: 0;
}

h1,
h2 {
  font-family: "Fraunces", serif;
  line-height: 0.98;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 5vw, 5.5rem);
}

h2 {
  font-size: clamp(2.1rem, 3vw, 3.45rem);
}

.hero-text,
.band-copy p,
.mission-copy p,
.video-copy p,
.donate-copy p,
.location-card p,
.contact-card p,
.need-card p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions,
.donate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.button:hover,
.mini-cta:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff9ef;
  box-shadow: 0 14px 24px rgba(187, 123, 22, 0.28);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(67, 42, 20, 0.1);
}

.hero-highlights {
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
}

.hero-highlights li {
  min-height: 110px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(6px);
}

.hero-highlights strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.hero-highlights span {
  color: var(--muted);
  line-height: 1.5;
}

.hero-media {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: end;
}

.hero-card {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 18px 42px rgba(70, 44, 18, 0.18);
}

.hero-card img {
  height: 100%;
  object-fit: cover;
}

.hero-card-main {
  aspect-ratio: 0.95;
}

.hero-card-side {
  aspect-ratio: 0.72;
  transform: translateY(38px);
}

.story-band,
.mission-grid,
.needs-section,
.gallery-section,
.video-section,
.donate-section,
.location-section {
  width: var(--content);
  margin: 26px auto 0;
}

.story-band {
  padding: 28px 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 24px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fbf0de, #f5e4ca);
  box-shadow: var(--shadow);
}

.band-note {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  align-self: center;
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 26px;
  align-items: center;
}

.mission-copy,
.video-copy,
.donate-copy {
  padding: 14px 0;
}

.mission-copy blockquote {
  margin-top: 24px;
  padding: 22px 24px;
  border-left: 4px solid var(--gold);
  border-radius: 0 22px 22px 0;
  background: rgba(255, 250, 244, 0.72);
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.6;
}

.mission-visual {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mission-visual img {
  aspect-ratio: 0.98;
  object-fit: cover;
}

.section-heading {
  margin-bottom: 22px;
  max-width: 780px;
}

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

.need-card {
  min-height: 210px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 250, 244, 0.75);
  border: 1px solid rgba(90, 58, 29, 0.09);
  box-shadow: var(--shadow);
}

.need-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.accent-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, var(--leaf), #6aa17f);
  color: #fffaf2;
}

.accent-card .small-label,
.accent-card strong {
  color: inherit;
}

.accent-card strong {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  line-height: 1.1;
}

.gallery-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 16px;
}

.gallery-layout figure {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
  background: var(--surface-strong);
}

.gallery-layout img {
  height: 100%;
  object-fit: cover;
}

.gallery-large {
  grid-row: span 2;
  min-height: 580px;
}

.gallery-layout figure:not(.gallery-large) {
  min-height: 282px;
}

.video-section,
.donate-section,
.location-section {
  display: grid;
  gap: 24px;
}

.video-section {
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.95fr);
  align-items: center;
}

.video-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #000;
}

.video-frame video {
  aspect-ratio: 9 / 16;
  max-height: 720px;
  object-fit: cover;
}

.donate-section {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  padding: 30px;
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(125deg, rgba(64, 119, 87, 0.96), rgba(80, 58, 41, 0.92)),
    url("PHOTO-2026-07-03-09-56-44 3.jpg") center / cover;
  box-shadow: var(--shadow);
}

.donate-copy,
.contact-card {
  color: #fffaf2;
}

.donate-copy .section-kicker,
.donate-copy h2,
.donate-copy p,
.contact-card .small-label,
.contact-card p,
.contact-card h3,
.contact-card a {
  color: inherit;
}

.contact-card {
  align-self: center;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.contact-card h3 {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  margin-bottom: 8px;
}

.contact-card a,
.text-link {
  color: var(--berry);
  font-weight: 800;
  text-decoration: none;
}

.contact-card a {
  color: #fffaf2;
}

.donate-section .button.secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fffaf2;
  border-color: rgba(255, 255, 255, 0.22);
}

.location-section {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 34px;
}

.location-card,
.motto-card {
  min-height: 260px;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.location-card {
  background: rgba(255, 250, 244, 0.76);
}

.motto-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  background:
    linear-gradient(125deg, rgba(226, 169, 61, 0.94), rgba(169, 68, 50, 0.9));
  color: #fffaf2;
  overflow: hidden;
}

.motto-card .section-kicker,
.motto-card h2 {
  color: inherit;
}

.motto-card h2 {
  max-width: 14ch;
}

.motto-visual {
  width: 100%;
  max-width: 420px;
  align-self: center;
  border-radius: 22px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.78));
  box-shadow: 0 18px 34px rgba(44, 25, 9, 0.14);
  filter: brightness(1.06) saturate(1.04) contrast(1.01);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .topbar {
    border-radius: 28px;
  }

  .hero,
  .story-band,
  .mission-grid,
  .video-section,
  .donate-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 26px;
  }

  .hero-card-side {
    transform: none;
  }

  .hero-highlights,
  .needs-grid,
  .gallery-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-large {
    grid-column: 1 / -1;
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  :root {
    --content: min(100vw - 24px, 1180px);
    --radius: 22px;
  }

  .topbar {
    padding: 14px;
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding: 22px 18px;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.45rem, 10vw, 3.7rem);
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .hero-media,
  .hero-highlights,
  .needs-grid,
  .gallery-layout,
  .location-section {
    grid-template-columns: 1fr;
  }

  .hero-card-main,
  .hero-card-side,
  .gallery-layout figure,
  .gallery-large {
    min-height: auto;
    aspect-ratio: 1 / 1;
  }

  .button,
  .mini-cta {
    width: 100%;
  }

  .hero-actions,
  .donate-actions {
    flex-direction: column;
  }

  .story-band,
  .donate-section {
    padding: 22px 18px;
  }

  .location-card,
  .motto-card,
  .need-card,
  .contact-card {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
