:root {
  --ink: #17352a;
  --ink-soft: #52675f;
  --paper: #f6f3e9;
  --white: #fffdf8;
  --sand: #e5dcc0;
  --coral: #ef7b61;
  --line: rgba(23, 53, 42, 0.17);
  --page: min(100% - 40px, 1320px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p, figure { margin-top: 0; }

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  width: var(--page);
  min-height: 86px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.04rem;
  font-weight: 760;
  letter-spacing: -0.025em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-style: italic;
}

.main-nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  font-size: 0.8rem;
  font-weight: 670;
}

.main-nav a,
.footer-nav a { transition: opacity 160ms ease; }
.main-nav a:hover,
.footer-nav a:hover { opacity: 0.58; }

.header-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 720;
}

.button-icon,
.check-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  width: var(--page);
  min-height: 680px;
  margin-inline: auto;
  padding: clamp(4rem, 7vw, 7rem) 0;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(2.5rem, 6vw, 6.5rem);
  align-items: center;
}

.hero-copy { max-width: 650px; }

.eyebrow,
.section-label {
  margin-bottom: 1.7rem;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(239, 123, 97, 0.13);
}

.hero h1 {
  margin-bottom: 1.7rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7vw, 7.1rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.hero h1 em {
  color: var(--coral);
  font-weight: 400;
}

.hero-lede,
.section-lede {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.72;
}

.hero-lede { max-width: 590px; margin-bottom: 2rem; }

.hero-actions {
  margin-bottom: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  min-height: 52px;
  padding: 0 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 730;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover,
.header-link:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: var(--white); }
.button-primary:hover { background: #244c3c; }
.button-secondary { border: 1px solid var(--line); background: rgba(255, 255, 255, 0.34); }

.trust-note {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.5;
}

.trust-note .check-icon { color: var(--coral); }

.hero-media {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border-radius: 4px 112px 4px 4px;
  background: var(--ink);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 26, 20, 0.72), transparent 52%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: 58% center;
}

.hero-media figcaption {
  position: absolute;
  z-index: 1;
  right: 1.4rem;
  bottom: 1.4rem;
  left: 1.4rem;
  color: var(--white);
}

.hero-media figcaption span,
.giving-photo figcaption {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-media figcaption strong {
  display: block;
  max-width: 380px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 400;
  line-height: 1.12;
}

.action-strip {
  width: min(100%, 1500px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--coral);
}

.action-strip div {
  min-height: 105px;
  padding: 1.25rem clamp(1.1rem, 3vw, 2.6rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-right: 1px solid rgba(23, 53, 42, 0.22);
}

.action-strip div:last-child { border-right: 0; }
.action-strip span { align-self: flex-start; font-size: 0.66rem; }
.action-strip strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.3rem, 2vw, 2rem); font-weight: 400; }

.ways-section,
.start-section {
  width: var(--page);
  margin-inline: auto;
  padding: clamp(6rem, 10vw, 10rem) 0;
}

.section-heading,
.start-heading { max-width: 870px; margin-bottom: clamp(3rem, 6vw, 5rem); }

.section-heading h2,
.dignity-copy h2,
.giving-copy h2,
.start-heading h2,
.about-section h2 {
  margin-bottom: 1.4rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.ways-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ways-grid article {
  min-height: 310px;
  padding: 1.8rem clamp(1rem, 2vw, 1.8rem);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.ways-grid article:first-child { padding-left: 0; }
.ways-grid article:last-child { padding-right: 0; border-right: 0; }
.ways-grid article > span { color: var(--coral); font-family: Georgia, "Times New Roman", serif; font-size: 0.72rem; font-style: italic; }
.ways-grid h3 { margin: auto 0 0.75rem; font-family: Georgia, "Times New Roman", serif; font-size: 2rem; font-weight: 400; }
.ways-grid p { margin: 0; color: var(--ink-soft); font-size: 0.87rem; line-height: 1.65; }

.dignity-section {
  width: var(--page);
  margin: 0 auto clamp(6rem, 10vw, 10rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.section-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 76px 4px 4px 4px;
  background: var(--sand);
}

.section-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.dignity-copy .section-lede { max-width: 560px; margin-bottom: 2rem; }

.principle-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.principle-list li {
  padding: 1.05rem 0;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.8rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.6;
}

.principle-list .check-icon { color: var(--coral); }
.principle-list strong { color: var(--ink); }

.giving-section {
  width: min(100%, 1500px);
  margin-inline: auto;
  padding: clamp(5rem, 9vw, 9rem) max(20px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  background: var(--ink);
  color: var(--paper);
}

.section-label-light { color: rgba(255, 253, 248, 0.62); }
.section-lede-light { color: rgba(255, 253, 248, 0.68); }
.giving-copy .section-lede { max-width: 580px; margin-bottom: 2.3rem; }

.giving-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.giving-list li {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.giving-list li > span { color: var(--coral); font-family: Georgia, "Times New Roman", serif; font-size: 0.7rem; font-style: italic; }
.giving-list strong { display: block; margin-bottom: 0.25rem; font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; font-weight: 400; }
.giving-list p { margin: 0; color: rgba(255, 253, 248, 0.62); font-size: 0.8rem; line-height: 1.55; }

.giving-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 4px 92px 4px 4px;
  background: #28483c;
}

.giving-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 26, 20, 0.64), transparent 48%);
  pointer-events: none;
}

.giving-photo img { width: 100%; aspect-ratio: 10 / 11; object-fit: cover; }
.giving-photo figcaption { position: absolute; z-index: 1; right: 1.3rem; bottom: 1.3rem; left: 1.3rem; margin: 0; }

.start-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.start-grid p {
  min-height: 92px;
  margin: 0;
  padding: 1.35rem 1.5rem 1.35rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.3;
}

.start-grid p:nth-child(odd) { border-right: 1px solid var(--line); }
.start-grid p:nth-child(even) { padding-left: 1.5rem; }
.start-grid span { color: var(--coral); font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: 0.66rem; font-weight: 760; }

.about-section {
  width: min(100%, 1500px);
  margin-inline: auto;
  padding: clamp(5rem, 9vw, 9rem) max(20px, calc((100vw - 1320px) / 2));
  background: var(--coral);
}

.about-section h2 { max-width: 1050px; font-size: clamp(3.2rem, 6.5vw, 7rem); }

.about-copy {
  max-width: 760px;
  margin: clamp(2rem, 5vw, 4rem) 0 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.about-copy p { margin: 0; font-size: 0.88rem; line-height: 1.7; }

.site-footer {
  width: var(--page);
  margin-inline: auto;
  padding: 3rem 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-branding p {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.88rem;
  font-style: italic;
}

.footer-notice {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: #74827d;
  font-size: 0.68rem;
  line-height: 1.6;
}

.legal-shell { min-height: 100vh; }

.legal-header {
  width: var(--page);
  min-height: 86px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.legal-back { display: inline-flex; align-items: center; gap: 0.55rem; font-size: 0.78rem; font-weight: 700; }

.legal-content {
  width: min(100% - 40px, 820px);
  margin-inline: auto;
  padding: clamp(4rem, 9vw, 8rem) 0;
}

.legal-content > p:first-child {
  margin-bottom: 1.2rem;
  color: var(--coral);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-content h1 {
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.legal-updated { margin-bottom: 3rem; color: var(--ink-soft); font-size: 0.78rem; }

.legal-body {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.legal-body h2 {
  margin: 2.2rem 0 0.8rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 400;
}

.legal-body p,
.legal-body li { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.75; }
.legal-body ul { padding-left: 1.2rem; }
.legal-body strong { color: var(--ink); }

.legal-footer {
  width: var(--page);
  margin-inline: auto;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.72rem;
}

@media (max-width: 960px) {
  .site-header { grid-template-columns: 1fr auto; }
  .main-nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-media { min-height: 520px; }
  .hero-media img { height: 520px; }
  .ways-grid { grid-template-columns: repeat(2, 1fr); }
  .ways-grid article:nth-child(2) { border-right: 0; }
  .ways-grid article:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .ways-grid article:first-child,
  .ways-grid article:last-child { padding-inline: 1.8rem; }
  .dignity-section,
  .giving-section { grid-template-columns: 1fr; }
  .section-photo { max-width: 760px; }
  .giving-photo { max-width: 760px; }
  .giving-photo img { aspect-ratio: 16 / 10; }
}

@media (max-width: 680px) {
  :root { --page: min(100% - 28px, 1320px); }
  .site-header,
  .legal-header { min-height: 74px; }
  .header-link { font-size: 0; }
  .header-link .button-icon { width: 23px; height: 23px; }
  .hero { min-height: auto; padding: 3.5rem 0 4rem; gap: 3rem; }
  .hero h1 { font-size: clamp(3.5rem, 17vw, 5.25rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-media { min-height: 420px; border-radius: 4px 72px 4px 4px; }
  .hero-media img { height: 420px; object-position: 62% center; }
  .action-strip { grid-template-columns: repeat(2, 1fr); }
  .action-strip div { min-height: 88px; }
  .action-strip div:nth-child(2) { border-right: 0; }
  .action-strip div:nth-child(-n + 2) { border-bottom: 1px solid rgba(23, 53, 42, 0.22); }
  .ways-section,
  .start-section { padding: 5.5rem 0; }
  .ways-grid { grid-template-columns: 1fr; }
  .ways-grid article,
  .ways-grid article:first-child,
  .ways-grid article:last-child {
    min-height: 240px;
    padding: 1.5rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .ways-grid article:last-child { border-bottom: 0; }
  .dignity-section { margin-bottom: 5.5rem; gap: 2.5rem; }
  .section-photo { border-radius: 52px 4px 4px 4px; }
  .giving-section,
  .about-section { padding-inline: 20px; }
  .giving-section { gap: 2.5rem; }
  .giving-photo { border-radius: 4px 58px 4px 4px; }
  .giving-photo img { aspect-ratio: 4 / 3; }
  .start-grid { grid-template-columns: 1fr; }
  .start-grid p:nth-child(odd) { border-right: 0; }
  .start-grid p:nth-child(even) { padding-left: 0; }
  .about-copy { grid-template-columns: 1fr; gap: 1rem; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-nav { flex-wrap: wrap; gap: 1rem 1.4rem; }
  .footer-notice { grid-column: auto; }
  .legal-content { width: min(100% - 28px, 820px); padding: 3.5rem 0 5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
