:root {
  --ink: #070707;
  --ink-soft: #101011;
  --paper: #f3f1e9;
  --paper-soft: #dedbd2;
  --white: #ffffff;
  --muted: #aaa9af;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(7, 7, 7, 0.16);
  --pink: #ff4f78;
  --yellow: #ffd23f;
  --green: #78df7a;
  --blue: #49c9ff;
  --cyan: #43e5da;
  --violet: #9568ff;
  --orange: #ff8a3d;
  --magenta: #f342c2;
  --rainbow: linear-gradient(100deg, #ff4f78 0%, #ff9a42 17%, #ffd23f 31%, #78df7a 47%, #43e5da 62%, #49a5ff 76%, #9568ff 89%, #f342c2 100%);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-width: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: Manrope, system-ui, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }

.shell {
  width: min(100% - 48px, 1360px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus-visible {
  top: 10px;
  left: 10px;
  z-index: 1000;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 14px;
  overflow: visible;
  clip: auto;
  clip-path: none;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 101;
  width: calc(var(--scroll-progress, 0) * 1%);
  height: 3px;
  background: var(--rainbow);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  min-width: 0;
  padding: 12px clamp(20px, 4.4vw, 76px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 7, 7, 0.78);
  backdrop-filter: blur(20px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(7, 7, 7, 0.94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 58px;
  height: 58px;
  aspect-ratio: 1;
  object-fit: contain;
}

.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font: 800 0.92rem/1 Syne, Manrope, sans-serif; letter-spacing: 0.08em; }
.brand-copy small { margin-top: 6px; color: var(--muted); font-size: 0.66rem; letter-spacing: 0.05em; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 32px);
  min-width: 0;
  font-size: 0.87rem;
  font-weight: 700;
}

.site-nav a:not(.nav-cta) {
  position: relative;
  color: #d0cfd4;
  transition: color 0.2s ease;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--rainbow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav a:not(.nav-cta):hover,
.site-nav a[aria-current="page"]:not(.nav-cta) { color: var(--white); }
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover,
.nav-cta[aria-current="page"] { color: var(--ink); }

.nav-cta:hover { transform: translateY(-2px); background: var(--paper); }

.menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ink-soft);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.menu-icon { display: grid; gap: 4px; width: 19px; }
.menu-icon span { display: block; width: 100%; height: 2px; border-radius: 999px; background: currentColor; transition: transform 0.2s ease, opacity 0.2s ease; }
.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

h1, h2, h3 {
  margin: 0;
  font-family: Syne, Manrope, sans-serif;
  line-height: 1.02;
}

h1 { font-size: clamp(3.6rem, 7.4vw, 7.8rem); letter-spacing: -0.066em; }
h2 { font-size: clamp(2.45rem, 5vw, 5.2rem); letter-spacing: -0.052em; }
h3 { font-size: clamp(1.4rem, 2vw, 2rem); letter-spacing: -0.035em; }

.rainbow-text {
  background: var(--rainbow);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.eyebrow,
.section-number,
.card-kicker,
.footer-label,
.note-index {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow > span { display: block; width: 34px; height: 3px; border-radius: 999px; background: var(--rainbow); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 15px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.button span { font-size: 1.1em; transition: transform 0.2s ease; }
.button:hover { transform: translateY(-3px); }
.button:hover span { transform: translate(2px, -1px); }
.button-primary { background: var(--rainbow); color: var(--ink); box-shadow: 0 14px 42px rgba(112, 93, 255, 0.2); }
.button-primary:hover { filter: saturate(1.14) brightness(1.06); box-shadow: 0 18px 54px rgba(112, 93, 255, 0.28); }
.button-dark { border-color: var(--dark-line); background: var(--ink); color: var(--white); }
.button-light { border-color: var(--line); background: var(--white); color: var(--ink); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.text-link span { transition: transform 0.2s ease; }
.text-link:hover span { transform: translateX(4px); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  align-items: center;
  gap: clamp(30px, 5vw, 84px);
  min-height: calc(100svh - 83px);
  padding-block: clamp(56px, 8vw, 112px);
}

.hero::before {
  content: "";
  position: absolute;
  top: 11%;
  left: -14%;
  width: min(520px, 44vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 79, 120, 0.2), transparent 67%);
  filter: blur(20px);
  pointer-events: none;
}

.hero-copy { position: relative; z-index: 1; min-width: 0; }
.hero-copy h1 { max-width: 880px; margin-top: 22px; }
.hero-lead { max-width: 720px; margin: 30px 0 0; color: #bbb9c1; font-size: clamp(1.04rem, 1.5vw, 1.3rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 38px; }
.hero-principles { display: flex; flex-wrap: wrap; gap: 12px 22px; margin: 38px 0 0; padding: 0; color: #d0cfd4; list-style: none; font-size: 0.8rem; font-weight: 700; }
.hero-principles li::before { content: "✦"; margin-right: 8px; color: var(--yellow); }

.hero-stage {
  position: relative;
  width: min(100%, 600px);
  aspect-ratio: 1;
  justify-self: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.075), transparent 35%), var(--ink-soft);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: auto -18% -30% -12%;
  height: 56%;
  background: var(--rainbow);
  filter: blur(70px);
  opacity: 0.25;
  z-index: -1;
}

.stage-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.stage-logo {
  position: absolute;
  inset: 20%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.86);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

.stage-logo img { width: 95%; height: 95%; object-fit: contain; }
.stage-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.16); }
.ring-one { inset: 10%; animation: orbit-spin 24s linear infinite; }
.ring-two { inset: 4%; border-style: dashed; opacity: 0.55; animation: orbit-spin 34s linear infinite reverse; }

.orbit-label {
  position: absolute;
  z-index: 2;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.82);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.label-dream { top: 12%; left: 9%; color: #ff8aa6; }
.label-create { top: 13%; right: 8%; color: #ffe175; }
.label-grow { right: 8%; bottom: 13%; color: #7ddcff; }
.label-together { bottom: 11%; left: 7%; color: #b69bff; }

@keyframes orbit-spin { to { transform: rotate(360deg); } }

.statement-band {
  padding-block: clamp(86px, 11vw, 160px);
  background: var(--paper);
  color: var(--ink);
}

.statement-layout { display: grid; grid-template-columns: 0.34fr 1.66fr; gap: 40px; align-items: start; }
.statement-layout .section-number { color: #6e6b65; }
.statement-layout h2 { max-width: 1060px; }
.statement-layout h2 span { color: #89857d; }
.statement-layout > div > p { max-width: 780px; margin: 30px 0; color: #4b4945; font-size: clamp(1.05rem, 1.5vw, 1.25rem); }

.journey-section,
.support-preview,
.values-strip,
.story-section,
.philanthropy-story,
.values-page,
.support-directory,
.family-directory { padding-block: clamp(92px, 11vw, 160px); }

.section-intro { max-width: 960px; }
.section-intro h2 { margin-top: 20px; }
.section-intro > p:last-child { max-width: 720px; margin: 26px 0 0; color: var(--muted); font-size: 1.08rem; }
.split-intro { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr); gap: 60px; max-width: none; align-items: end; }
.split-intro > p:last-child { margin: 0; }

.journey-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 60px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.journey-track li {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  min-height: 250px;
  padding: 34px clamp(22px, 3vw, 40px) 30px 0;
  border-right: 1px solid var(--line);
}

.journey-track li:last-child { border-right: 0; padding-left: clamp(22px, 3vw, 40px); }
.journey-track li:nth-child(2) { padding-left: clamp(22px, 3vw, 40px); }
.journey-track li::before { content: ""; position: absolute; top: -4px; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 8px rgba(255, 79, 120, 0.12); }
.journey-track li:nth-child(2)::before { left: clamp(22px, 3vw, 40px); background: var(--yellow); box-shadow: 0 0 0 8px rgba(255, 210, 63, 0.12); }
.journey-track li:nth-child(3)::before { left: clamp(22px, 3vw, 40px); background: var(--blue); box-shadow: 0 0 0 8px rgba(73, 201, 255, 0.12); }
.journey-index { color: #707078; font-size: 0.72rem; font-weight: 800; }
.journey-track strong { font: 800 clamp(2rem, 3vw, 3.2rem)/1 Syne, Manrope, sans-serif; }
.journey-track p { max-width: 260px; margin: 20px 0 0; color: var(--muted); }

.support-preview { padding-top: 20px; }
.support-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 58px; }
.support-card {
  --accent: var(--pink);
  position: relative;
  min-height: 380px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
}
.support-card::after { content: ""; position: absolute; right: -36px; bottom: -48px; width: 160px; height: 160px; border-radius: 50%; background: var(--accent); filter: blur(55px); opacity: 0.2; }
.card-mark { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid color-mix(in srgb, var(--accent) 55%, transparent); border-radius: 50%; color: var(--accent); font: 800 1.15rem Syne, Manrope, sans-serif; }
.support-card .card-kicker { margin-top: 72px; color: var(--accent); }
.support-card h3 { margin-top: 14px; }
.support-card > p:last-child { margin: 19px 0 0; color: var(--muted); }
.accent-pink { --accent: var(--pink); }
.accent-yellow { --accent: var(--yellow); }
.accent-blue { --accent: var(--blue); }
.accent-violet { --accent: var(--violet); }
.accent-green { --accent: var(--green); }
.accent-orange { --accent: var(--orange); }
.accent-cyan { --accent: var(--cyan); }
.accent-magenta { --accent: var(--magenta); }
.section-action { display: flex; justify-content: flex-end; margin-top: 32px; }

.family-preview {
  padding-block: clamp(92px, 11vw, 160px);
  background: var(--paper);
  color: var(--ink);
}
.family-preview .section-number,
.family-preview .split-intro > p { color: #6e6b65; }
.family-list { margin-top: 58px; border-top: 1px solid var(--dark-line); }
.family-list a { display: grid; grid-template-columns: 70px 1fr 1fr auto; align-items: center; gap: 20px; min-height: 112px; border-bottom: 1px solid var(--dark-line); transition: padding 0.24s ease, background 0.24s ease; }
.family-list a:hover { padding-inline: 18px; background: rgba(7, 7, 7, 0.045); }
.family-count { color: #7f7b73; font-size: 0.72rem; font-weight: 800; }
.family-list strong { font: 800 clamp(1.6rem, 3vw, 3rem)/1 Syne, Manrope, sans-serif; letter-spacing: -0.045em; }
.family-list a > span:nth-child(3) { color: #5d5a54; }
.family-list i { font-style: normal; font-size: 1.6rem; }

.values-strip { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(50px, 9vw, 130px); align-items: center; }
.values-heading h2 { margin-top: 20px; }
.values-heading > p:last-child { margin-top: 24px; color: var(--muted); }
.values-cloud { display: flex; flex-wrap: wrap; gap: 12px; align-content: center; }
.values-cloud span { padding: 14px 18px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, 0.04); font-weight: 700; }
.values-cloud span:nth-child(1) { color: #ff96ae; }
.values-cloud span:nth-child(2) { color: #ffe27b; }
.values-cloud span:nth-child(3) { color: #8eea91; }
.values-cloud span:nth-child(4) { color: #83dcff; }
.values-cloud span:nth-child(5) { color: #bba7ff; }

.closing-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(80px, 10vw, 140px);
  padding: clamp(36px, 6vw, 80px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 90% 10%, rgba(73, 201, 255, 0.16), transparent 32%), radial-gradient(circle at 5% 100%, rgba(255, 79, 120, 0.14), transparent 38%), var(--ink-soft);
}
.closing-cta > div { max-width: 920px; }
.closing-cta h2 { margin-top: 20px; }
.closing-cta > div > p:last-child:not(.eyebrow) { max-width: 650px; margin: 22px 0 0; color: var(--muted); }
.closing-cta .button { flex: 0 0 auto; }

.site-footer { border-top: 1px solid var(--line); background: #050505; color: #b4b3b9; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.7fr 0.9fr; gap: 60px; padding-block: 70px; }
.footer-brand a { display: block; width: 116px; }
.footer-brand img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.footer-brand p { margin: 14px 0 0; }
.footer-links, .footer-contact { display: grid; align-content: start; justify-items: start; gap: 10px; }
.footer-label { margin-bottom: 10px; color: #737279; }
.footer-links a, .footer-contact a { color: var(--white); font-weight: 700; }
.footer-links a:hover, .footer-contact a:hover { text-decoration: underline; text-decoration-color: var(--blue); text-underline-offset: 5px; }
.footer-contact p:last-child { max-width: 300px; margin: 6px 0 0; }
.footer-legal { display: flex; justify-content: space-between; gap: 24px; padding-block: 22px 30px; border-top: 1px solid rgba(255, 255, 255, 0.08); font-size: 0.78rem; }
.footer-legal p { margin: 0; }

/* Inner page foundations */
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(46px, 8vw, 120px);
  align-items: end;
  min-height: 690px;
  padding-block: clamp(80px, 11vw, 150px) clamp(90px, 10vw, 140px);
}
.page-hero-copy h1 { max-width: 1050px; margin-top: 22px; }
.page-hero-copy > p:last-child { max-width: 760px; margin: 30px 0 0; color: #bbb9c1; font-size: clamp(1.04rem, 1.5vw, 1.3rem); }
.page-hero-note { padding: 28px 0 8px 28px; border-left: 1px solid var(--line); }
.page-hero-note p { margin: 12px 0 0; color: #dbd9df; font: 700 clamp(1.25rem, 2vw, 1.75rem)/1.45 Syne, Manrope, sans-serif; }

.story-section { display: grid; grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr); gap: clamp(50px, 9vw, 130px); border-top: 1px solid var(--line); }
.story-sticky { align-self: start; position: sticky; top: 120px; }
.story-sticky h2 { margin-top: 20px; }
.story-content { max-width: 830px; }
.story-content p { margin: 0 0 28px; color: #bdbbc2; font-size: 1.08rem; }
.story-content .story-lead { color: var(--white); font-size: clamp(1.35rem, 2.2vw, 2rem); line-height: 1.5; }
.story-content blockquote { margin: 58px 0 0; padding: 32px 0 32px 32px; border-left: 5px solid transparent; border-image: var(--rainbow) 1; color: var(--white); font: 700 clamp(1.6rem, 3vw, 2.8rem)/1.25 Syne, Manrope, sans-serif; }

.success-section, .process-section { padding-block: clamp(92px, 11vw, 160px); background: var(--paper); color: var(--ink); }
.success-section .section-number, .process-section .section-number { color: #716d66; }
.success-layout { display: grid; gap: 60px; }
.success-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--dark-line); }
.success-grid article { min-height: 280px; padding: 30px 34px 30px 0; border-right: 1px solid var(--dark-line); }
.success-grid article:nth-child(2), .success-grid article:nth-child(3) { padding-left: 34px; }
.success-grid article:last-child { border-right: 0; }
.success-grid span { color: #77736c; font-size: 0.72rem; font-weight: 800; }
.success-grid h3 { margin-top: 54px; }
.success-grid p { color: #5c5953; }

.values-page .section-intro { max-width: 1000px; }
.value-rows { margin-top: 58px; border-top: 1px solid var(--line); }
.value-rows article { display: grid; grid-template-columns: 70px minmax(260px, 0.7fr) minmax(0, 1fr); gap: 28px; align-items: center; min-height: 122px; border-bottom: 1px solid var(--line); }
.value-icon { color: #77767d; font-size: 0.72rem; font-weight: 800; }
.value-rows p { max-width: 660px; color: var(--muted); }

.future-section { position: relative; min-height: 580px; margin-bottom: clamp(90px, 11vw, 160px); padding: clamp(42px, 7vw, 90px); overflow: hidden; border-radius: var(--radius-lg); background: var(--rainbow); color: var(--ink); }
.future-copy { position: relative; z-index: 2; max-width: 820px; }
.future-copy .section-number { color: rgba(7, 7, 7, 0.58); }
.future-copy h2 { margin-top: 20px; }
.future-copy p { max-width: 700px; margin: 26px 0 34px; font-weight: 600; }
.future-words { position: absolute; right: -2%; bottom: -5%; display: grid; justify-items: end; color: rgba(7, 7, 7, 0.12); font: 800 clamp(5rem, 13vw, 13rem)/0.72 Syne, Manrope, sans-serif; letter-spacing: -0.08em; }

/* Support page */
.support-directory { border-top: 1px solid var(--line); }
.directory-intro { display: grid; grid-template-columns: 0.35fr 1fr 0.65fr; gap: 44px; align-items: start; }
.directory-intro h2 { font-size: clamp(2.4rem, 4vw, 4.5rem); }
.directory-intro > p:last-child { margin: 0; color: var(--muted); }
.directory-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 70px; }
.directory-card { --accent: var(--pink); position: relative; min-height: 360px; padding: clamp(26px, 4vw, 48px); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(155deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)); }
.directory-card::after { content: ""; position: absolute; right: -70px; bottom: -90px; width: 250px; height: 250px; border-radius: 50%; background: var(--accent); filter: blur(85px); opacity: 0.15; }
.directory-top { display: flex; justify-content: space-between; color: #77767d; font-size: 0.74rem; font-weight: 800; }
.directory-top i { color: var(--accent); font-style: normal; }
.directory-card h3 { margin-top: 74px; font-size: clamp(1.8rem, 3vw, 3.1rem); }
.directory-card p { max-width: 590px; margin: 22px 0; color: var(--muted); }
.directory-tag { position: absolute; right: 30px; bottom: 26px; padding: 6px 10px; border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent); border-radius: 999px; color: var(--accent); font-size: 0.67rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }

.process-layout { display: grid; grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr); gap: clamp(60px, 10vw, 150px); }
.process-heading h2 { margin-top: 20px; }
.process-heading > p:last-child { color: #5d5a54; }
.process-list { margin: 0; padding: 0; border-top: 1px solid var(--dark-line); list-style: none; }
.process-list li { display: grid; grid-template-columns: 60px 1fr; gap: 22px; min-height: 170px; padding: 30px 0; border-bottom: 1px solid var(--dark-line); }
.process-list li > span { color: #77736c; font-size: 0.72rem; font-weight: 800; }
.process-list h3 { font-size: clamp(1.5rem, 2.4vw, 2.45rem); }
.process-list p { color: #5c5953; }

.fit-section, .family-principle, .family-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr); gap: clamp(50px, 10vw, 150px); align-items: end; padding-block: clamp(92px, 11vw, 150px); }
.fit-section h2, .family-principle h2, .family-intro h2 { margin-top: 20px; }
.fit-section > p, .family-principle > p, .family-intro > div > p { margin: 0; color: var(--muted); font-size: 1.08rem; }

/* Family page */
.family-hero { align-items: center; }
.family-map { position: relative; width: min(100%, 500px); aspect-ratio: 1; justify-self: end; border: 1px solid var(--line); border-radius: 50%; background: radial-gradient(circle, rgba(255, 255, 255, 0.065), transparent 58%); }
.family-map::before, .family-map::after { content: ""; position: absolute; inset: 18%; border: 1px solid var(--line); border-radius: 50%; }
.family-map::after { inset: 36%; background: var(--rainbow); opacity: 0.18; filter: blur(26px); }
.map-parent { position: absolute; inset: 37%; z-index: 2; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--ink); text-align: center; font: 800 clamp(0.75rem, 1.4vw, 1.05rem)/1.15 Syne, Manrope, sans-serif; letter-spacing: 0.06em; }
.map-node { position: absolute; z-index: 3; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--ink-soft); font-size: 0.7rem; font-weight: 800; }
.node-one { top: 8%; left: 40%; color: #ff94ad; }
.node-two { top: 33%; right: 1%; color: #ffe27b; }
.node-three { right: 17%; bottom: 7%; color: #83dcff; }
.node-four { bottom: 7%; left: 18%; color: #bba7ff; }
.node-five { top: 33%; left: 1%; color: #ff87dc; }

.family-intro { border-top: 1px solid var(--line); }
.family-feature { --feature: var(--pink); position: relative; display: grid; grid-template-columns: 80px minmax(240px, 0.65fr) minmax(0, 1fr); gap: 30px; min-height: 490px; padding: clamp(34px, 5vw, 70px); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(150deg, color-mix(in srgb, var(--feature) 13%, transparent), rgba(255, 255, 255, 0.02)); }
.family-feature + .family-feature { margin-top: 22px; }
.feature-redacted { --feature: var(--pink); }
.feature-academy { --feature: var(--yellow); }
.feature-inprint { --feature: var(--blue); }
.feature-house { --feature: var(--violet); }
.feature-philanthropy { --feature: var(--magenta); }
.feature-number { color: color-mix(in srgb, var(--feature) 80%, white); font-size: 0.75rem; font-weight: 800; }
.feature-title { position: relative; z-index: 2; }
.feature-title .card-kicker { color: var(--feature); }
.feature-title h2 { margin-top: 15px; font-size: clamp(2.8rem, 5vw, 5.5rem); overflow-wrap: anywhere; }
.feature-copy { position: relative; z-index: 2; align-self: center; max-width: 660px; }
.feature-copy p { color: #c0bec5; }
.feature-copy .text-link { margin-top: 18px; }
.feature-word { position: absolute; right: -1%; bottom: -8%; color: color-mix(in srgb, var(--feature) 11%, transparent); font: 800 clamp(5rem, 14vw, 14rem)/1 Syne, Manrope, sans-serif; letter-spacing: -0.08em; white-space: nowrap; }

.family-principle { margin-bottom: clamp(90px, 11vw, 150px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Elixir Philanthropy page */
.philanthropy-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  min-height: calc(100svh - 83px);
  padding-block: clamp(64px, 8vw, 116px);
}
.philanthropy-hero::before {
  content: "";
  position: absolute;
  top: 6%;
  left: -16%;
  width: min(560px, 46vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 66, 194, 0.18), transparent 68%);
  filter: blur(24px);
  pointer-events: none;
}
.philanthropy-hero-copy { position: relative; z-index: 2; min-width: 0; }
.philanthropy-hero-copy h1 { max-width: 900px; margin-top: 22px; }
.philanthropy-hero-copy > p:not(.eyebrow) { max-width: 720px; margin: 30px 0 0; color: #bbb9c1; font-size: clamp(1.04rem, 1.5vw, 1.3rem); line-height: 1.75; }
.philanthropy-hero-copy .button { margin-top: 38px; }
.philanthropy-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 620px);
  aspect-ratio: 1;
  justify-self: end;
  isolation: isolate;
}
.philanthropy-mark::before,
.philanthropy-mark::after {
  content: "";
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  pointer-events: none;
}
.philanthropy-mark::before { inset: 3%; }
.philanthropy-mark::after { inset: 13%; border-style: dashed; opacity: 0.62; }
.philanthropy-mark picture { position: relative; z-index: 2; width: 100%; }
.philanthropy-mark img { width: 100%; filter: drop-shadow(0 24px 46px rgba(0, 0, 0, 0.48)); }
.philanthropy-glow {
  position: absolute;
  inset: 17%;
  z-index: -1;
  border-radius: 50%;
  background: conic-gradient(from 25deg, var(--pink), var(--yellow), var(--green), var(--blue), var(--violet), var(--magenta), var(--pink));
  filter: blur(72px);
  opacity: 0.34;
}
.philanthropy-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(50px, 9vw, 130px);
  border-top: 1px solid var(--line);
}
.charities-section {
  padding-block: clamp(92px, 11vw, 160px);
  background: var(--paper);
  color: var(--ink);
}
.charities-section .section-number,
.charities-section .split-intro > p { color: #6e6b65; }
.charity-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 62px; }
.charity-card {
  --accent: var(--pink);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 440px;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
}
.charity-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(88px);
  opacity: 0.14;
  pointer-events: none;
}
.charity-top { display: flex; justify-content: space-between; gap: 18px; color: #77736c; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.charity-top span:last-child { color: color-mix(in srgb, var(--accent) 76%, #292725); text-align: right; }
.charity-card h3 { max-width: 660px; margin-top: 68px; font-size: clamp(2rem, 3.5vw, 3.4rem); overflow-wrap: normal; word-break: normal; }
.charity-card > p { max-width: 610px; margin: 24px 0 30px; color: #55524d; font-size: 1.02rem; }
.charity-contacts { position: relative; z-index: 2; display: grid; justify-items: start; gap: 10px; margin-top: auto; }
.charity-contacts a { max-width: 100%; color: #4e4b47; font-size: 0.88rem; font-weight: 700; overflow-wrap: anywhere; }
.charity-contacts a:hover { text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 4px; }
.charity-contacts a:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  margin-bottom: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
}
.charity-note { max-width: 800px; margin: 34px 0 0; color: #65615b; font-size: 0.86rem; }
.philanthropy-invite {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(44px, 9vw, 130px);
  align-items: end;
  margin-block: clamp(90px, 11vw, 150px);
  padding-block: clamp(44px, 7vw, 84px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.philanthropy-invite h2 { max-width: 760px; margin-top: 20px; }
.philanthropy-invite > div:last-child > p { max-width: 610px; margin: 0 0 30px; color: var(--muted); font-size: 1.08rem; }

/* Contact page */
.contact-hero { display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr); gap: clamp(48px, 8vw, 120px); align-items: start; padding-block: clamp(80px, 10vw, 140px); }
.contact-intro { position: sticky; top: 120px; padding-top: 20px; }
.contact-intro h1 { margin-top: 22px; font-size: clamp(3.4rem, 6vw, 6.5rem); }
.contact-details { margin-top: 52px; padding-top: 26px; border-top: 1px solid var(--line); }
.contact-details a { display: inline-block; margin-top: 12px; color: var(--white); font-size: clamp(1.05rem, 1.8vw, 1.35rem); font-weight: 800; overflow-wrap: anywhere; }
.contact-checks { display: grid; gap: 8px; margin: 36px 0 0; padding: 0; color: var(--muted); list-style: none; font-size: 0.88rem; }
.contact-checks li::before { content: "✓"; display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: 9px; border-radius: 50%; background: rgba(120, 223, 122, 0.14); color: var(--green); font-size: 0.7rem; }

.form-panel { padding: clamp(28px, 5vw, 58px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)); box-shadow: var(--shadow); }
.form-heading span { color: var(--blue); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.form-heading h2 { margin-top: 12px; font-size: clamp(2.1rem, 4vw, 3.7rem); }
.contact-form { display: grid; gap: 18px; margin-top: 38px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.contact-form label { display: grid; gap: 8px; min-width: 0; color: #d8d6dd; font-size: 0.78rem; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-width: 0; padding: 15px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm); outline: none; background: rgba(0, 0, 0, 0.32); color: var(--white); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(73, 201, 255, 0.1); }
.contact-form textarea { resize: vertical; }
.contact-form textarea::placeholder { color: #74737a; }
.contact-form .button { justify-self: start; margin-top: 4px; }
.spam-trap { position: absolute !important; top: auto !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }
.form-status { margin: 0; padding: 13px 15px; border: 1px solid transparent; border-radius: 12px; font-weight: 700; }
.form-status[hidden] { display: none; }
.form-status.success { border-color: rgba(120, 223, 122, 0.34); background: rgba(120, 223, 122, 0.1); color: #aaf4ac; }
.form-status.error { border-color: rgba(255, 79, 120, 0.36); background: rgba(255, 79, 120, 0.1); color: #ffadc0; }
.contact-form.was-validated :invalid { border-color: var(--pink); }
.contact-form button[disabled] { cursor: wait; opacity: 0.62; }
.contact-next { display: grid; grid-template-columns: 0.5fr 1fr 1fr; gap: 42px; margin-bottom: clamp(90px, 11vw, 150px); padding-block: 42px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-next div { display: grid; gap: 10px; }
.contact-next strong { font: 800 1.18rem Syne, Manrope, sans-serif; }
.contact-next span { color: var(--muted); }

/* Error and form response pages */
.error-page, .response-page { min-height: 100svh; display: grid; grid-template-rows: 1fr auto; padding: clamp(20px, 5vw, 48px); }
.error-main, .response-main { display: grid; place-items: center; }
.error-card, .response-card { width: min(760px, 100%); padding: clamp(34px, 7vw, 74px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: radial-gradient(circle at 90% 0%, rgba(73, 201, 255, 0.15), transparent 38%), radial-gradient(circle at 0% 100%, rgba(255, 79, 120, 0.13), transparent 42%), var(--ink-soft); box-shadow: var(--shadow); text-align: center; }
.error-logo, .response-logo { display: block; width: 120px; margin: 0 auto 26px; }
.error-code { display: block; margin-bottom: 10px; background: var(--rainbow); color: transparent; font: 800 clamp(4rem, 13vw, 8rem)/1 Syne, Manrope, sans-serif; letter-spacing: -0.06em; -webkit-background-clip: text; background-clip: text; }
.error-card h1, .response-card h1 { font-size: clamp(2rem, 5vw, 4rem); }
.response-card .eyebrow { justify-content: center; }
.error-card p, .response-card p { max-width: 560px; margin: 22px auto; color: var(--muted); }
.error-card p a, .response-card p a { color: var(--white); font-weight: 800; text-decoration: underline; text-decoration-color: var(--blue); text-underline-offset: 4px; }
.error-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.error-footer, .response-footer { padding: 24px 10px 0; color: var(--muted); font-size: 0.78rem; text-align: center; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .hero { grid-template-columns: minmax(0, 1fr); min-height: auto; }
  .hero-stage { justify-self: center; width: min(100%, 580px); margin-top: 20px; }
  .support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support-card { min-height: 330px; }
  .contact-hero { grid-template-columns: minmax(0, 1fr); }
  .contact-intro { position: static; }
  .contact-intro h1 { max-width: 950px; }
}

@media (max-width: 1100px) {
  .menu-toggle { display: inline-flex; }
  .site-nav { display: none; position: fixed; top: 77px; right: 14px; left: 14px; max-height: calc(100svh - 92px); overflow-y: auto; flex-direction: column; align-items: stretch; gap: 5px; padding: 16px; border: 1px solid var(--line); border-radius: 22px; background: #111113; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { min-height: 48px; padding: 12px 14px; border-radius: 12px; }
  .site-nav a:not(.nav-cta)::after { display: none; }
  .site-nav a:not(.nav-cta):hover, .site-nav a:not(.nav-cta):focus-visible, .site-nav a[aria-current="page"]:not(.nav-cta) { background: rgba(255, 255, 255, 0.06); }
  .nav-cta { margin-top: 4px; text-align: center; }
  .statement-layout, .story-section, .philanthropy-story, .process-layout { grid-template-columns: minmax(0, 1fr); }
  .statement-layout { gap: 24px; }
  .story-sticky { position: static; }
  .split-intro, .values-strip, .fit-section, .family-principle, .family-intro { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .split-intro > p:last-child { max-width: 720px; }
  .page-hero { grid-template-columns: minmax(0, 1fr); min-height: auto; }
  .page-hero-note { max-width: 660px; }
  .family-map { justify-self: center; }
  .philanthropy-hero { grid-template-columns: minmax(0, 1fr); min-height: auto; }
  .philanthropy-mark { justify-self: center; }
  .family-feature { grid-template-columns: 60px minmax(0, 1fr); }
  .feature-copy { grid-column: 2; }
  .directory-intro { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .directory-intro > p:last-child { max-width: 720px; }
  .footer-grid { grid-template-columns: 1fr 0.6fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .charity-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 84px; }
  .shell { width: min(100% - 32px, 1360px); }
  .site-header { padding: 10px 16px; }
  .brand img { width: 52px; height: 52px; }
  .brand-copy small { display: none; }
  h1 { font-size: clamp(3rem, 15vw, 5rem); }
  h2 { font-size: clamp(2.2rem, 11vw, 3.6rem); }
  .hero { padding-block: 56px 90px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-stage { border-radius: 28px; }
  .orbit-label { padding: 7px 10px; font-size: 0.62rem; }
  .journey-track { grid-template-columns: minmax(0, 1fr); border-top: 0; }
  .journey-track li, .journey-track li:nth-child(2), .journey-track li:last-child { min-height: 0; padding: 30px 0; border-top: 1px solid var(--line); border-right: 0; }
  .journey-track li::before, .journey-track li:nth-child(2)::before, .journey-track li:nth-child(3)::before { top: -4px; left: 0; }
  .support-grid, .directory-grid, .success-grid { grid-template-columns: minmax(0, 1fr); }
  .charity-grid { grid-template-columns: minmax(0, 1fr); }
  .support-card { min-height: 300px; }
  .success-grid { border-top: 0; }
  .success-grid article, .success-grid article:nth-child(2), .success-grid article:nth-child(3) { min-height: 0; padding: 30px 0; border-top: 1px solid var(--dark-line); border-right: 0; }
  .success-grid h3 { margin-top: 30px; }
  .family-list a { grid-template-columns: 44px 1fr auto; min-height: 100px; gap: 12px; }
  .family-list a > span:nth-child(3) { grid-column: 2; margin-top: -18px; font-size: 0.82rem; }
  .family-list i { grid-row: 1 / span 2; grid-column: 3; }
  .family-list strong { font-size: clamp(1.35rem, 7vw, 2rem); }
  .closing-cta { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .footer-legal { flex-direction: column; }
  .value-rows article { grid-template-columns: 42px minmax(0, 1fr); gap: 14px; padding: 24px 0; }
  .value-rows p { grid-column: 2; margin: -4px 0 0; }
  .future-section { min-height: 620px; }
  .future-words { bottom: 2%; }
  .family-feature { grid-template-columns: minmax(0, 1fr); min-height: 560px; padding: 30px; }
  .feature-number, .feature-title, .feature-copy { grid-column: 1; }
  .feature-copy { align-self: start; }
  .family-map { width: min(100%, 430px); }
  .contact-hero { padding-block: 64px 100px; }
  .form-row { grid-template-columns: minmax(0, 1fr); }
  .contact-next { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .philanthropy-invite { grid-template-columns: minmax(0, 1fr); align-items: start; }
}

@media (max-width: 480px) {
  .brand-copy strong { font-size: 0.75rem; }
  .menu-label { display: none; }
  .menu-toggle { padding-inline: 12px; }
  .hero-principles { display: grid; }
  .hero-stage { width: 100%; }
  .stage-logo { inset: 22%; }
  .statement-band, .journey-section, .support-preview, .family-preview, .values-strip, .story-section, .philanthropy-story, .values-page, .support-directory, .success-section, .process-section, .charities-section { padding-block: 76px; }
  .page-hero { padding-block: 70px 90px; }
  .page-hero-note { padding-left: 20px; }
  .support-card, .directory-card { padding: 24px; border-radius: 20px; }
  .directory-card { min-height: 330px; }
  .directory-tag { right: 22px; bottom: 22px; }
  .closing-cta, .future-section, .form-panel, .family-feature { border-radius: 24px; }
  .closing-cta { padding: 28px; }
  .button { width: 100%; }
  .text-link { width: auto; }
  .section-action .button { width: 100%; }
  .family-map { font-size: 0.65rem; }
  .map-node { padding: 6px 9px; font-size: 0.57rem; }
  .form-panel { padding: 24px; }
  .contact-form .button { justify-self: stretch; }
  .philanthropy-hero { padding-block: 56px 80px; }
  .philanthropy-mark::before { inset: 5%; }
  .philanthropy-mark::after { inset: 15%; }
  .charity-card { min-height: 410px; padding: 26px; border-radius: 20px; }
  .charity-card h3 { margin-top: 54px; font-size: clamp(1.85rem, 10vw, 3rem); }
  .charity-card h3.charity-name-wide { font-size: clamp(1.25rem, 7.4vw, 2.4rem); white-space: nowrap; }
  .philanthropy-invite { margin-block: 76px; }
  .error-page, .response-page { padding: 16px; }
  .error-card, .response-card { padding: 32px 20px; border-radius: 24px; }
  .error-actions { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
