:root {
  --red: #7b1722;
  --red-dark: #4c0d14;
  --ink: #171515;
  --cream: #f7f3ec;
  --gold: #e5b84d;
  --muted: #67615e;
  --white: #fff;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  background: #fff;
  line-height: 1.6;
}
a {
  color: inherit;
}
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  padding: 0.8rem;
  z-index: 100;
}
.skip:focus {
  left: 1rem;
}
.site-header {
  height: 84px;
  padding: 0 max(24px, calc((100% - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #ece7e2;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.05rem;
}
.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}
.site-header nav a {
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 600;
}
.site-header nav a:hover {
  color: var(--red);
}
.nav-give {
  background: var(--red);
  color: white !important;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
}
.menu-toggle {
  display: none;
}
.hero {
  min-height: 680px;
  position: relative;
  color: #fff;
  display: grid;
  align-items: center;
}
.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-media {
  background: url("family-hero-v2.png") center center / cover no-repeat;
}
.hero-shade {
  background: linear-gradient(
    90deg,
    rgba(18, 8, 9, 0.91) 0%,
    rgba(37, 11, 14, 0.68) 48%,
    rgba(20, 8, 9, 0.1) 80%
  );
}
.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 48px));
  margin: auto;
  padding: 90px 0;
  max-width: var(--max);
}
.hero-content > * {
  max-width: 760px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 1rem;
}
.eyebrow.dark {
  color: var(--red);
}
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.12;
  margin-top: 0;
}
h1 {
  font-size: clamp(2.7rem, 6vw, 5.3rem);
  letter-spacing: -0.035em;
  margin-bottom: 1.4rem;
}
h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-copy {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #f5edef;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
}
.button.primary {
  background: var(--gold);
  color: var(--ink);
}
.button.light {
  background: #fff;
  color: var(--red-dark);
}
.button.text-link {
  color: #fff;
}
.button.gold {
  background: var(--gold);
  color: var(--ink);
}
.button.outline {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}
.reassurance {
  font-size: 0.88rem;
  color: #ddd1d2;
  margin-top: 1.25rem;
}
.section {
  padding: 100px max(24px, calc((100% - var(--max)) / 2));
}
.section-heading {
  max-width: 720px;
  margin-bottom: 3rem;
}
.section-heading.compact {
  margin: 0;
}
.section-heading h2,
.story h2,
.partner h2,
.give h2,
.contact h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}
.impact {
  padding: 72px max(24px, calc((100% - var(--max)) / 2));
  background: var(--cream);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #d9d1c7;
  margin-top: 2.5rem;
}
.impact-grid div {
  background: var(--cream);
  padding: 1.6rem;
}
.impact-grid strong {
  display: block;
  font-family: "Playfair Display", serif;
  color: var(--red);
  font-size: 2.8rem;
  line-height: 1;
}
.impact-grid span {
  font-size: 0.9rem;
  color: var(--muted);
}
.impact-gallery-heading {
  max-width: 720px;
  margin: 4rem 0 1.5rem;
}
.impact-gallery-heading h3 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  margin-bottom: .65rem;
}
.impact-gallery-heading p:last-child {
  color: var(--muted);
}
.impact-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
}
.impact-gallery figure {
  margin: 0;
  overflow: hidden;
  background: #ded7cf;
}
.impact-gallery figure:nth-child(-n+2) {
  grid-column: span 2;
}
.impact-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .25s ease;
}
.impact-gallery figure:nth-child(-n+2) img {
  aspect-ratio: 2 / 1;
}
.impact-gallery figure:hover img {
  transform: scale(1.025);
}
.help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.help-card {
  position: relative;
  display: block;
  text-decoration: none;
  padding: 2rem;
  border: 1px solid #e7e0da;
  min-height: 260px;
  transition: 0.2s ease;
  background: #fff;
}
.help-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(40, 18, 20, 0.1);
  border-color: var(--gold);
}
.help-card.featured {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.card-number {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
}
.help-card h3 {
  font-size: 1.65rem;
  margin: 0.7rem 0;
}
.help-card p {
  color: var(--muted);
  max-width: 470px;
}
.help-card.featured p {
  color: #eadcde;
}
.card-action {
  position: absolute;
  bottom: 1.7rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
}
.featured .card-action {
  color: var(--gold);
}
.safety-note {
  margin-top: 1.5rem;
  padding: 1.2rem 1.5rem;
  background: #f8f5f1;
  border-left: 4px solid var(--gold);
  color: #534d49;
}
.story {
  background: var(--red-dark);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(280px, 460px) minmax(0, 650px);
  gap: 4rem;
  align-items: center;
  justify-content: center;
}
.story-photo {
  margin: 0;
  position: relative;
}
.story-photo::before {
  content: "";
  position: absolute;
  inset: -14px 14px 14px -14px;
  border: 1px solid rgba(229, 184, 77, 0.65);
}
.story-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  position: relative;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
}
.story p {
  font-size: 1.08rem;
  color: #eadfe0;
}
.story .mission {
  padding-top: 1rem;
  color: #fff;
}
.program-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #ddd5ce;
}
.program-list article {
  padding: 2.3rem 2rem 2.3rem 0;
  border-bottom: 1px solid #ddd5ce;
}
.program-list article:nth-child(even) {
  padding-left: 2rem;
  border-left: 1px solid #ddd5ce;
}
.program-list span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  font-weight: 700;
}
.program-list h3 {
  font-size: 1.7rem;
  margin: 0.65rem 0;
}
.program-list p {
  color: var(--muted);
}
.program-list a {
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
}
.program-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.3rem;
}
.event-feature {
  background: var(--cream);
  display: grid;
  grid-template-columns: minmax(260px, 390px) minmax(0, 650px);
  gap: 4rem;
  align-items: center;
  justify-content: center;
}
.event-poster {
  margin: 0;
}
.event-poster img {
  width: 100%;
  display: block;
  box-shadow: 0 24px 60px rgba(44, 18, 21, .16);
}
.event-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1rem;
}
.event-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}
.event-schedule {
  margin: 2rem 0;
  border-top: 1px solid #d9d1c7;
}
.event-schedule div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  padding: .8rem 0;
  border-bottom: 1px solid #d9d1c7;
}
.event-schedule dt {
  font-weight: 700;
  color: var(--red);
}
.event-schedule dd {
  margin: 0;
}
.partner {
  background: var(--ink);
  color: #fff;
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: space-between;
}
.partner > div:first-child {
  max-width: 730px;
}
.partner p:not(.eyebrow) {
  color: #d4ceca;
}
.partner-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 220px;
}
.inquiry {
  background: #fff;
}
.inquiry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}
.inquiry-form {
  padding: 2rem;
  border: 1px solid #e3dcd4;
  border-top: 5px solid var(--red);
  background: var(--cream);
  scroll-margin-top: 110px;
}
.inquiry-form:target {
  outline: 3px solid rgba(229, 184, 77, 0.65);
  outline-offset: 4px;
}
.inquiry-form h3 {
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
}
.inquiry-form > p {
  color: var(--muted);
  margin-top: 0;
}
.inquiry-form label {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.9rem;
}
.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid #cfc5bc;
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.inquiry-form input:focus,
.inquiry-form textarea:focus,
.inquiry-form select:focus {
  outline: 3px solid rgba(229, 184, 77, 0.45);
  border-color: var(--red);
}
.inquiry-form .consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 500;
}
.inquiry-form .consent input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
}
.form-submit {
  margin-top: 1.25rem;
  width: 100%;
  border: 0;
  border-radius: 4px;
  padding: 0.9rem 1.1rem;
  background: var(--red);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.form-submit:hover {
  background: var(--red-dark);
}
.inquiry-form .form-note {
  font-size: 0.82rem;
  margin-top: 1rem;
}
.form-note a {
  color: var(--red);
}
.give {
  background: var(--cream);
}
.give-copy {
  max-width: 760px;
}
.gift-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.gift-grid a {
  background: #fff;
  text-decoration: none;
  padding: 2rem;
  display: flex;
  min-height: 275px;
  flex-direction: column;
  border: 1px solid #e3dcd4;
  position: relative;
}
.gift-grid a:hover {
  border-color: var(--red);
}
.gift-grid strong {
  font-family: "Playfair Display", serif;
  color: var(--red);
  font-size: 3rem;
}
.gift-grid span {
  color: var(--muted);
}
.gift-grid b {
  margin-top: auto;
  color: var(--red);
}
.gift-grid .preferred {
  border: 2px solid var(--red);
}
.gift-grid small {
  position: absolute;
  right: 1rem;
  top: 1rem;
  background: var(--gold);
  padding: 0.2rem 0.5rem;
  font-weight: 700;
}
.giving-note {
  font-size: 0.85rem;
  color: var(--muted);
}
.contact {
  text-align: center;
  background: var(--red);
  color: #fff;
}
.contact > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 2rem;
  color: #eadcde;
}
.contact-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.phone {
  color: #fff;
  font-weight: 700;
}
footer {
  padding: 64px max(24px, calc((100% - var(--max)) / 2)) 30px;
  background: #100f0f;
  color: #d5ceca;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
footer > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
footer strong {
  color: #fff;
}
footer a {
  text-decoration: none;
}
.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.footer-brand img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}
.footer-brand div {
  display: flex;
  flex-direction: column;
}
.footer-brand strong {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
}
.legal {
  grid-column: 1/-1;
  border-top: 1px solid #353232;
  padding-top: 1.3rem;
  font-size: 0.82rem;
}
@media (max-width: 800px) {
  .site-header {
    height: 72px;
  }
  .brand span {
    display: none;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1.5rem 24px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }
  .site-header nav.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
    border: 1px solid #d8d1cc;
    background: #fff;
    padding: 0.5rem 0.8rem;
    font-weight: 700;
  }
  .hero {
    min-height: 720px;
  }
  .hero-shade {
    background: linear-gradient(
      90deg,
      rgba(18, 8, 9, 0.9),
      rgba(37, 11, 14, 0.62)
    );
  }
  .hero-content {
    width: calc(100% - 36px);
    padding: 60px 0;
  }
  .hero-copy {
    font-size: 1rem;
  }
  .section {
    padding: 72px 20px;
  }
  .impact {
    padding: 60px 20px;
  }
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .impact-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .help-grid,
  .program-list,
  .gift-grid,
  .inquiry-grid {
    grid-template-columns: 1fr;
  }
  .program-list article,
  .program-list article:nth-child(even) {
    padding: 1.8rem 0;
    border-left: 0;
  }
  .story {
    grid-template-columns: 1fr;
    padding-top: 60px;
  }
  .event-feature {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .event-poster {
    max-width: 420px;
  }
  .story-photo {
    max-width: 620px;
  }
  .partner {
    align-items: flex-start;
    flex-direction: column;
  }
  .partner-actions {
    width: 100%;
  }
  .gift-grid a {
    min-height: 230px;
  }
  footer {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .legal {
    grid-column: auto;
  }
}
@media (max-width: 430px) {
  h1 {
    font-size: 2.65rem;
  }
  .hero-actions .button {
    width: 100%;
  }
  .impact-grid {
    grid-template-columns: 1fr;
  }
  .impact-gallery {
    grid-template-columns: 1fr;
  }
  .impact-gallery figure:nth-child(-n+2) {
    grid-column: auto;
  }
  .impact-gallery figure:nth-child(-n+2) img {
    aspect-ratio: 4 / 3;
  }
  .impact-grid div {
    padding: 1.25rem;
  }
  .section-heading h2,
  .story h2,
  .partner h2,
  .give h2,
  .contact h2 {
    font-size: 2.25rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .help-card {
    transition: none;
  }
}

/* Shared interior pages */
.interior-page section[id] {
  scroll-margin-top: 84px;
}
.interior-hero {
  min-height: 590px;
  padding: 80px max(24px, calc((100% - var(--max)) / 2));
  background: var(--red-dark);
  color: #fff;
  display: grid;
  align-items: center;
}
.interior-hero > div:first-child {
  max-width: 760px;
}
.interior-hero h1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
}
.interior-hero h1 em {
  color: var(--gold);
  font-style: normal;
}
.interior-hero p:not(.eyebrow) {
  color: #eee2e4;
  font-size: 1.13rem;
}
.split-hero {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 4rem;
}
.split-hero figure {
  margin: 0;
  align-self: stretch;
  min-height: 430px;
}
.split-hero figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  box-shadow: 18px 18px 0 rgba(229, 184, 77, .9);
}
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.6rem;
}
.button.outline-dark {
  color: var(--red);
  border: 1px solid var(--red);
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(30, 14, 16, .16);
}
.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* About */
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: #ddd5ce;
}
.purpose-grid .section-heading {
  grid-column: 1 / -1;
  max-width: 760px;
  background: #fff;
  margin: 0;
  padding-bottom: 1.25rem;
}
.purpose-grid .section-heading .eyebrow {
  margin-bottom: .45rem;
}
.purpose-grid .section-heading h2 {
  margin-bottom: 0;
}
.purpose-grid article {
  background: var(--cream);
  padding: 2.4rem;
}
.purpose-grid article > span,
.leader-list article span {
  color: var(--red);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.purpose-grid article h3 {
  font-size: 1.9rem;
  margin: .6rem 0;
}
.purpose-grid .purpose-wide {
  grid-column: 1 / -1;
  background: var(--red-dark);
  color: #fff;
}
.purpose-wide p {
  max-width: 900px;
  color: #eee1e2;
}
.purpose-wide blockquote {
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 4px solid var(--gold);
  max-width: 880px;
  font: 600 1.2rem/1.6 "Playfair Display", serif;
}
.purpose-wide cite {
  display: block;
  color: var(--gold);
  font: 700 .82rem/1.5 "DM Sans", sans-serif;
  margin-top: .7rem;
}
.purpose-wide a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}
.values-section {
  background: var(--cream);
}
.values-art {
  margin: 0;
}
.values-art img,
.wide-brand-art {
  width: 100%;
  display: block;
}
.values-art img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #fff;
}
.founders-section {
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr);
  gap: 4rem;
  background: var(--red-dark);
  color: #fff;
  align-items: start;
}
.founders-photo {
  margin: 0;
  position: sticky;
  top: 108px;
}
.founders-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: -16px 16px 0 var(--gold);
}
.founders-section h2,
.feeding-section h2,
.what-is-jubilee h2,
.leaders-section h2,
.visit-section h2,
.bounty-intro h2,
.gathering-section h2 {
  font-size: clamp(2.3rem, 4.5vw, 4rem);
}
.founders-section p {
  color: #eadfe0;
}
.founders-section .role-line {
  color: var(--gold);
  font-weight: 700;
}
.video-section {
  background: var(--cream);
}
.wide-brand-art {
  margin-top: 2rem;
}

/* Give */
.giving-hero {
  min-height: 620px;
  background:
    radial-gradient(circle at 78% 42%, rgba(229, 184, 77, .24), transparent 21rem),
    linear-gradient(120deg, var(--red-dark), #27090d 74%);
}
.giving-hero .button {
  margin-top: 1.2rem;
}
.giving-impact {
  background: var(--cream);
}
.giving-options a {
  box-shadow: 0 14px 36px rgba(44, 18, 21, .06);
}
.secure-giving {
  background: #fff;
}
.secure-giving .section-heading {
  margin-bottom: 2rem;
}
.gift-process {
  border: 1px solid #ddd5ce;
  border-top: 6px solid var(--red);
  background: var(--cream);
  padding: clamp(1.25rem, 3vw, 2.5rem);
  box-shadow: 0 24px 60px rgba(44, 18, 21, .12);
}
.gift-process fieldset {
  border: 0;
  padding: 0 0 2rem;
  margin: 0 0 2rem;
  border-bottom: 1px solid #d8cfc6;
}
.gift-process legend {
  width: 100%;
  margin-bottom: 1rem;
  font: 700 1.35rem/1.3 "Playfair Display", serif;
}
.gift-process legend span {
  display: inline-grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  margin-right: .6rem;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font: 700 .9rem/1 "DM Sans", sans-serif;
}
.gift-choices {
  display: grid;
  gap: .75rem;
}
.purpose-choices {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.frequency-choices,
.amount-choices {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.gift-choices label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .65rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid #d8cfc6;
  cursor: pointer;
}
.gift-choices label:has(input:checked) {
  border: 2px solid var(--red);
  box-shadow: inset 0 0 0 2px rgba(123, 23, 34, .08);
}
.gift-choices input {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--red);
  margin-top: .2rem;
}
.gift-choices span {
  display: grid;
  gap: .25rem;
}
.gift-choices small {
  color: var(--muted);
  line-height: 1.45;
}
.gift-process-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.gift-process-footer > div {
  display: grid;
  gap: .25rem;
}
.gift-process-footer small {
  color: var(--muted);
}
.gift-process-footer .form-submit {
  width: auto;
  margin: 0;
  min-width: 260px;
}
.donation-help {
  color: var(--muted);
  font-size: .92rem;
  margin-top: 1.2rem;
}
.donation-help a {
  color: var(--red);
  font-weight: 700;
}

/* Team */
.team-hero {
  background: linear-gradient(120deg, var(--red-dark), #1f090c 78%);
}
.team-founders {
  background: var(--cream);
}
.founder-cards {
  display: grid;
  gap: 1.2rem;
}
.founder-cards article {
  display: grid;
  grid-template-columns: minmax(250px, 360px) minmax(0, 1fr);
  background: #fff;
  border: 1px solid #e0d8d0;
}
.founder-cards article:nth-child(even) {
  direction: rtl;
}
.founder-cards article:nth-child(even) > * {
  direction: ltr;
}
.founder-cards img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}
.founder-cards article > div {
  padding: clamp(1.6rem, 4vw, 3rem);
}
.founder-cards h3,
.team-grid h3 {
  font-size: 2rem;
  margin: .35rem 0 1rem;
}
.team-role {
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}
.leadership-team {
  background: #fff;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.team-grid article {
  background: var(--cream);
  border-bottom: 5px solid var(--red);
}
.team-grid img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
.team-grid article > div {
  padding: 1.5rem;
}
.team-grid h3 {
  margin-bottom: .5rem;
}
.team-grid p {
  color: var(--muted);
}

/* Support */
.support-hero {
  min-height: 520px;
  background: linear-gradient(120deg, var(--red-dark), #311015 72%);
}
.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 3rem;
  align-items: start;
}
.support-form h2,
.support-aside h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.support-aside {
  position: sticky;
  top: 108px;
  padding: 2rem;
  background: var(--cream);
  border-top: 5px solid var(--gold);
}
.support-aside a {
  color: var(--red);
  font-weight: 700;
  overflow-wrap: anywhere;
}

/* Bounty for Families */
.bounty-hero {
  background: linear-gradient(90deg, rgba(30, 12, 14, .96), rgba(76, 13, 20, .88)), url("bounty-brochure.webp") center / cover;
}
.bounty-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 4rem;
  align-items: center;
}
.bounty-intro > div {
  max-width: 720px;
}
.bounty-video {
  width: 100%;
  max-height: 680px;
  background: #111;
  box-shadow: 18px 18px 0 var(--gold);
}
.bounty-impact {
  padding-top: 80px;
  padding-bottom: 80px;
}
.feeding-section {
  display: grid;
  grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr);
  gap: 4rem;
  align-items: start;
}
.feeding-section figure {
  margin: 0;
  position: sticky;
  top: 108px;
}
.feeding-section figure img {
  width: 100%;
  display: block;
  box-shadow: 0 22px 55px rgba(40, 18, 20, .13);
}
.giving-levels {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  border-top: 1px solid #ddd5ce;
}
.giving-levels li {
  padding: .9rem 0;
  border-bottom: 1px solid #ddd5ce;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 1rem;
}
.giving-levels strong {
  color: var(--red);
}
.giving-levels span {
  color: var(--muted);
}

/* Jubilee */
.jubilee-hero figure img {
  object-fit: contain;
  background: #fff;
  padding: 1rem;
}
.gathering-section {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 4rem;
  align-items: start;
}
.gathering-card {
  background: var(--cream);
  padding: 2.3rem;
  border-top: 5px solid var(--gold);
}
.gathering-card h2 {
  font-size: 2.6rem;
}
.gathering-card a:not(.button) {
  color: var(--red);
}
.jubilee-belief blockquote {
  margin: 0 0 2rem;
  padding: 1.4rem 1.6rem;
  border-left: 5px solid var(--red);
  background: var(--cream);
  font: 600 1.15rem/1.6 "Playfair Display", serif;
}
.jubilee-belief cite {
  display: block;
  color: var(--red);
  margin-top: .7rem;
  font: 700 .82rem/1.5 "DM Sans", sans-serif;
}
.what-is-jubilee {
  background: var(--cream);
  display: grid;
  grid-template-columns: minmax(260px, 400px) minmax(0, 650px);
  gap: 4rem;
  justify-content: center;
  align-items: center;
}
.what-is-jubilee figure {
  margin: 0;
}
.what-is-jubilee img {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: contain;
}
.jubilee-declaration {
  color: var(--red);
  font: 700 1.7rem "Playfair Display", serif;
}
.leaders-section {
  background: #fff;
}
.leader-list {
  display: grid;
  gap: 1px;
  background: #ddd5ce;
}
.leader-list article {
  display: grid;
  grid-template-columns: minmax(220px, 330px) minmax(0, 1fr);
  background: var(--cream);
}
.leader-list article:nth-child(even) {
  direction: rtl;
}
.leader-list article:nth-child(even) > * {
  direction: ltr;
}
.leader-list img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}
.leader-list article > div {
  padding: 2.5rem;
}
.leader-list h3 {
  font-size: 2rem;
  margin: .5rem 0 1rem;
}
.leader-list p {
  color: var(--muted);
}
.visit-section {
  background: var(--red);
  color: #fff;
}
.visit-section .section-heading {
  max-width: 800px;
}
.visit-section .section-heading > p:last-child {
  color: #eadcde;
}
.visit-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .2);
}
.visit-steps article {
  padding: 2rem;
  background: var(--red-dark);
}
.visit-steps article > span {
  color: var(--gold);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.visit-steps h3 {
  font-size: 1.65rem;
  margin: .6rem 0;
}
.visit-steps p {
  color: #eadfe0;
}
.visit-steps a {
  color: var(--gold);
  font-weight: 700;
  overflow-wrap: anywhere;
}
.service-flow {
  margin-top: 2rem;
  padding: 2rem;
  background: #fff;
  color: var(--ink);
}
.service-flow ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.service-flow li {
  display: grid;
  gap: .6rem;
  align-content: start;
}
.service-flow li span {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
}
.visit-actions {
  display: flex;
  justify-content: center;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

@media (max-width: 800px) {
  .split-hero,
  .founders-section,
  .bounty-intro,
  .feeding-section,
  .gathering-section,
  .what-is-jubilee {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .split-hero figure {
    min-height: 360px;
  }
  .purpose-grid {
    grid-template-columns: 1fr;
  }
  .purpose-grid .purpose-wide,
  .purpose-grid .section-heading {
    grid-column: auto;
  }
  .founders-photo,
  .feeding-section figure {
    position: static;
  }
  .leader-list article,
  .leader-list article:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .leader-list img {
    min-height: 0;
    max-height: 520px;
    object-position: center 25%;
  }
  .visit-steps,
  .service-flow ol {
    grid-template-columns: 1fr;
  }
  .purpose-choices,
  .frequency-choices,
  .amount-choices,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gift-process-footer {
    align-items: stretch;
    flex-direction: column;
  }
  .gift-process-footer .form-submit {
    width: 100%;
    min-width: 0;
  }
  .founder-cards article,
  .founder-cards article:nth-child(even),
  .support-layout {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .founder-cards img {
    min-height: 0;
    max-height: 580px;
    object-position: center top;
  }
  .support-aside {
    position: static;
  }
}
@media (max-width: 520px) {
  .event-schedule div,
  .giving-levels li {
    grid-template-columns: 1fr;
    gap: .1rem;
  }
  .interior-hero {
    padding: 64px 20px;
  }
  .purpose-choices,
  .frequency-choices,
  .amount-choices,
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* Family Pathway */
.pathway-page section[id] {
  scroll-margin-top: 84px;
}
.pathway-hero {
  min-height: 650px;
  position: relative;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.pathway-hero-media,
.pathway-hero-shade {
  position: absolute;
  inset: 0;
}
.pathway-hero-media {
  background: url("pathway-premarital-hero.png") center 42% / cover no-repeat;
  transform: scale(1.02);
}
.pathway-hero-shade {
  background: linear-gradient(90deg, rgba(20, 8, 9, .94) 0%, rgba(76, 13, 20, .78) 50%, rgba(20, 8, 9, .18) 100%);
}
.pathway-hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 48px));
  margin: auto;
  padding: 100px 0;
}
.pathway-hero-content > * {
  max-width: 790px;
}
.pathway-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
}
.pathway-hero-content h1 em {
  color: var(--gold);
  font-style: normal;
}
.pathway-hero-content > p:not(.eyebrow) {
  max-width: 690px;
  color: #f0e5e6;
  font-size: 1.15rem;
}
.pathway-intro {
  background: var(--cream);
}
.contrast-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.contrast-card {
  padding: 2.4rem;
  background: #fff;
  border-top: 5px solid var(--red);
}
.contrast-card.change-card {
  background: var(--red-dark);
  color: #fff;
  border-color: var(--gold);
}
.contrast-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.4rem;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .8rem;
}
.check-list li {
  position: relative;
  padding-left: 1.65rem;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 700;
}
.change-card .check-list li::before,
.marriage .check-list li::before {
  color: var(--gold);
}
.pathway-options {
  background: var(--ink);
  color: #fff;
}
.pathway-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.pathway-card-grid article {
  padding: 2rem;
  border: 1px solid #4a4543;
  display: flex;
  flex-direction: column;
  min-height: 350px;
}
.pathway-card-grid article > span {
  color: var(--gold);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
}
.pathway-card-grid h3 {
  font-size: 1.75rem;
  margin: .8rem 0;
}
.pathway-card-grid p {
  color: #d8d0cc;
}
.pathway-card-grid strong {
  color: #fff;
  font-size: .95rem;
}
.pathway-card-grid a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  margin-top: auto;
  padding-top: 1.5rem;
}
.program-kicker {
  color: var(--red);
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .14em;
  font-weight: 700;
  margin-bottom: 1.3rem;
}
.program-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 3rem;
  align-items: start;
}
.program-heading h2,
.marriage h2,
.coaching h2,
.pathway-final h2 {
  font-size: clamp(2.35rem, 4.5vw, 4rem);
}
.price-panel {
  padding: 1.5rem;
  background: var(--cream);
  border-top: 5px solid var(--gold);
}
.price-panel > strong {
  display: block;
  color: var(--red);
  font: 700 3.2rem/1 "Playfair Display", serif;
}
.price-panel > span {
  color: var(--muted);
}
.price-panel .button {
  width: 100%;
}
.lead-copy {
  max-width: 760px;
  font-size: 1.12rem;
  color: var(--muted);
  margin: 1.5rem 0 2.5rem;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: #ded6cf;
  margin-bottom: 4rem;
}
.included-grid div {
  background: #fff;
  padding: 1.5rem;
}
.included-grid strong,
.included-grid span {
  display: block;
}
.included-grid strong {
  color: var(--red);
}
.included-grid span {
  color: var(--muted);
  font-size: .9rem;
  margin-top: .35rem;
}
.timeline {
  max-width: 920px;
  margin: 0 auto;
}
.timeline article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.4rem;
  padding: 2rem 0;
  border-top: 1px solid #ddd4cc;
}
.timeline-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font: 700 1.5rem "Playfair Display", serif;
}
.timeline article span {
  color: var(--red);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
}
.timeline h3 {
  font-size: 1.75rem;
  margin: .35rem 0;
}
.timeline p {
  color: var(--muted);
}
.timeline ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .35rem 1.5rem;
  padding-left: 1.2rem;
}
.soft-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.soft-cta div {
  display: grid;
  max-width: 750px;
}
.soft-cta strong {
  font: 700 1.45rem "Playfair Display", serif;
}
.soft-cta span {
  color: #eadcde;
}
.marriage {
  background: var(--red-dark);
  color: #fff;
}
.marriage .section-heading > p:last-child {
  color: #e2d5d6;
}
.retreat-layout {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: 1px;
  background: #74303a;
}
.retreat-date,
.retreat-details {
  padding: 2.5rem;
  background: #5a111b;
}
.retreat-date > span {
  color: var(--gold);
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .12em;
  font-weight: 700;
}
.retreat-date > strong {
  display: block;
  font: 700 2.5rem/1.15 "Playfair Display", serif;
  margin: 1.2rem 0;
}
.retreat-date p,
.retreat-details .note {
  color: #e2d5d6;
}
.retreat-price {
  margin-top: 2rem;
  color: var(--gold);
  font: 700 2.8rem "Playfair Display", serif;
}
.retreat-price small {
  color: #fff;
  font: 500 .9rem "DM Sans", sans-serif;
}
.retreat-details h3 {
  font-size: 2rem;
}
.retreat-details .button {
  margin-top: 1.5rem;
}
.coaching {
  background: var(--cream);
}
.coaching-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 4rem;
  align-items: start;
}
.coaching-photo {
  grid-column: 1 / -1;
  margin: 0 0 .5rem;
  position: relative;
}
.coaching-photo::before {
  content: "";
  position: absolute;
  inset: -12px 12px 12px -12px;
  border: 1px solid rgba(123, 23, 34, .3);
}
.coaching-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center 42%;
  position: relative;
  box-shadow: 0 18px 48px rgba(45, 20, 22, .13);
}
.coaching-layout > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}
.coach-signature {
  display: flex;
  flex-direction: column;
  border-left: 4px solid var(--gold);
  padding-left: 1rem;
  margin-top: 2rem;
}
.coach-signature strong {
  font: 700 1.35rem "Playfair Display", serif;
}
.coach-signature span {
  color: var(--muted);
}
.coaching-panel {
  background: #fff;
  border-top: 5px solid var(--red);
  padding: 2rem;
  box-shadow: 0 18px 50px rgba(45, 20, 22, .08);
}
.coaching-panel h3 {
  font-size: 1.7rem;
}
.session-details {
  border-top: 1px solid #ddd4cc;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.session-details strong {
  color: var(--red);
  font: 700 2.4rem "Playfair Display", serif;
}
.session-details span {
  color: var(--muted);
  font-size: .85rem;
}
.coaching-panel .button {
  width: 100%;
  margin-top: 1.3rem;
}
.testimonials {
  background: #fff;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.testimonial-grid blockquote {
  margin: 0;
  padding: 2rem;
  background: var(--cream);
  border-top: 4px solid var(--gold);
}
.testimonial-grid blockquote p {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  line-height: 1.55;
}
.testimonial-grid cite {
  color: var(--red);
  font-style: normal;
  font-weight: 700;
}
.pathway-final {
  text-align: center;
  background: var(--red);
  color: #fff;
}
.pathway-final > p:not(.eyebrow) {
  color: #eadcde;
  font-size: 1.1rem;
}
.final-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: .8rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .pathway-card-grid,
  .included-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pathway-card-grid article:last-child,
  .testimonial-grid blockquote:last-child {
    grid-column: 1 / -1;
  }
  .coaching-layout {
    gap: 2rem;
  }
}
@media (max-width: 700px) {
  .pathway-page section[id] {
    scroll-margin-top: 72px;
  }
  .pathway-hero {
    min-height: 720px;
  }
  .pathway-hero-shade {
    background: linear-gradient(90deg, rgba(20, 8, 9, .92), rgba(76, 13, 20, .68));
  }
  .pathway-hero-media {
    background-position: 54% center;
  }
  .pathway-hero-content {
    width: calc(100% - 36px);
    padding: 70px 0;
  }
  .contrast-grid,
  .pathway-card-grid,
  .program-heading,
  .included-grid,
  .retreat-layout,
  .coaching-layout,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .pathway-card-grid article:last-child,
  .testimonial-grid blockquote:last-child {
    grid-column: auto;
  }
  .program-heading {
    gap: 1.5rem;
  }
  .price-panel {
    max-width: 360px;
  }
  .timeline article {
    grid-template-columns: 46px 1fr;
    gap: .8rem;
  }
  .timeline-number {
    width: 42px;
    height: 42px;
  }
  .timeline ul {
    grid-template-columns: 1fr;
  }
  .soft-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .soft-cta .button {
    width: 100%;
  }
  .coaching-photo img {
    aspect-ratio: 4 / 3;
  }
}
