:root {
  --ink: #172019;
  --forest: #152419;
  --forest-2: #22372a;
  --cream: #f4efe4;
  --sand: #d7c6a0;
  --white: #fff;
  --muted: #667069;
  --line: rgba(23, 32, 25, .15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 4vw, 64px);
  color: white;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  font-size: 13px;
}
.nav-cta {
  border-bottom: 1px solid rgba(255,255,255,.75);
  padding-bottom: 3px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: white;
  background: var(--forest);
}
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  height: 100%;
}
.hero-image { object-fit: cover; object-position: 54% center; }
.hero-shade {
  background: linear-gradient(90deg, rgba(7,14,9,.82) 0%, rgba(7,14,9,.52) 42%, rgba(7,14,9,.05) 78%),
              linear-gradient(0deg, rgba(7,14,9,.65) 0%, transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding: 150px clamp(20px, 7vw, 110px) 150px;
}
.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .19em;
  font-size: 12px;
  font-weight: 800;
}
.eyebrow.dark { color: var(--forest-2); }
h1, h2, h3 { margin-top: 0; line-height: 1.02; }
h1 {
  margin-bottom: 28px;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(54px, 8vw, 118px);
  letter-spacing: -.045em;
}
h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(38px, 5vw, 70px);
  letter-spacing: -.035em;
}
.hero-copy {
  max-width: 650px;
  margin: 0 0 34px;
  color: rgba(255,255,255,.88);
  font-size: clamp(17px, 2vw, 21px);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}
.button-light { background: white; color: var(--forest); }
.button-dark {
  margin-top: 22px;
  background: var(--forest);
  color: white;
}
.hero-stats {
  position: absolute;
  right: clamp(20px, 4vw, 64px);
  bottom: 36px;
  z-index: 3;
  display: flex;
  gap: 34px;
}
.hero-stats div { display: grid; gap: 3px; }
.hero-stats strong { font-family: Georgia, serif; font-size: 30px; font-weight: 400; }
.hero-stats span { color: rgba(255,255,255,.75); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }

.section-pad { padding: clamp(78px, 10vw, 150px) clamp(20px, 7vw, 110px); }
.section-label {
  margin-bottom: 42px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 800;
}
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: start;
}
.intro h2 { max-width: 850px; }
.prose { max-width: 620px; color: #374139; font-size: 18px; }
.prose p:first-child { margin-top: 0; }

.image-band {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  background: var(--forest);
  color: white;
}
.image-band > img { height: 100%; object-fit: cover; }
.image-band-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 7vw, 100px);
}
.image-band-copy h2 { font-size: clamp(42px, 5vw, 72px); }
.image-band-copy p:last-child { max-width: 480px; color: rgba(255,255,255,.76); font-size: 17px; }

.beneficiary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}
.cause-card {
  position: relative;
  min-height: 320px;
  padding: 50px 34px 42px 0;
  border-bottom: 1px solid var(--line);
}
.cause-card + .cause-card { padding-left: 48px; border-left: 1px solid var(--line); }
.cause-number { color: #8d917e; font-family: Georgia, serif; }
.cause-card h3 { margin: 82px 0 18px; font-family: Georgia, serif; font-size: clamp(34px, 4vw, 56px); font-weight: 400; }
.cause-card p { max-width: 470px; color: var(--muted); font-size: 17px; }
.coming-soon { margin: 28px 0 0; color: var(--forest-2); font-weight: 700; }

.memorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ded7c9;
}
.memorial-image-wrap { min-height: 700px; }
.memorial-image-wrap img { height: 100%; object-fit: cover; }
.memorial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 120px);
}
.memorial-copy p:not(.eyebrow) { max-width: 560px; font-size: 18px; }
.small-note { margin-top: 28px; color: var(--muted); font-size: 14px !important; }

.gallery-intro { display: grid; grid-template-columns: .5fr 1.5fr; gap: 30px; align-items: start; }
.gallery-intro h2 { max-width: 800px; }
.gallery-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: repeat(2, minmax(260px, 380px));
  gap: 18px;
}
.gallery-grid figure { margin: 0; overflow: hidden; }
.gallery-grid img { height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-grid figure:hover img { transform: scale(1.025); }
.gallery-large { grid-row: 1 / span 2; }

.join {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  padding: 90px 20px;
  color: white;
  text-align: center;
  background: url('assets/camp.webp') center/cover no-repeat;
}
.join-overlay { position: absolute; inset: 0; background: rgba(8,17,10,.77); }
.join-inner { position: relative; z-index: 2; width: min(760px, 100%); }
.join h2 { margin-bottom: 20px; font-size: clamp(46px, 6vw, 82px); }
.join-inner > p:not(.eyebrow):not(.privacy) { max-width: 600px; margin: 0 auto 34px; color: rgba(255,255,255,.78); font-size: 18px; }
.signup-form {
  display: flex;
  width: min(600px, 100%);
  margin: 0 auto;
  padding: 6px;
  border-radius: 999px;
  background: white;
}
.signup-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 20px;
  border-radius: 999px;
  font: inherit;
}
.signup-form button {
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  color: white;
  background: var(--forest);
  font-weight: 800;
  cursor: pointer;
}
.privacy { margin-top: 15px !important; color: rgba(255,255,255,.58) !important; font-size: 12px !important; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: rgba(255,255,255,.68);
  background: #09100b;
  font-size: 13px;
}
footer div { display: flex; gap: 20px; }
.footer-brand { color: white; font-weight: 800; }
footer a { text-decoration: none; }

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

@media (max-width: 900px) {
  .hero-content { padding-bottom: 175px; }
  .hero-stats { left: 20px; right: auto; bottom: 38px; gap: 22px; }
  .intro-grid, .image-band, .memorial-split { grid-template-columns: 1fr; }
  .image-band > img { min-height: 500px; }
  .memorial-image-wrap { min-height: 520px; }
  .gallery-intro { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 640px) {
  .site-header { padding-top: 18px; }
  .brand span:last-child { display: none; }
  .nav-cta { font-size: 12px; }
  .hero-content { padding: 120px 20px 180px; }
  .hero-copy { font-size: 16px; }
  .hero-stats { width: calc(100% - 40px); justify-content: space-between; }
  .hero-stats strong { font-size: 24px; }
  .hero-stats span { font-size: 10px; }
  .section-pad { padding: 74px 20px; }
  .image-band { min-height: auto; }
  .image-band > img { min-height: 420px; }
  .image-band-copy, .memorial-copy { padding: 68px 20px; }
  .beneficiary-grid { grid-template-columns: 1fr; }
  .cause-card + .cause-card { padding-left: 0; border-left: 0; }
  .cause-card { min-height: 270px; }
  .cause-card h3 { margin-top: 55px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 330px); }
  .gallery-large { grid-row: auto; }
  .signup-form { flex-direction: column; border-radius: 20px; gap: 8px; }
  .signup-form input, .signup-form button { min-height: 52px; width: 100%; }
  footer, footer div { flex-direction: column; }
}

.hero-note {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}
.support { background: #e8e0d2; }
.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: start;
}
.support-grid h2 { max-width: 760px; }
@media (max-width: 900px) {
  .support-grid { grid-template-columns: 1fr; }
}
