@font-face {
  font-family: DynaPuff;
  src: url("assets/dynapuff.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("assets/dm-sans.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --cream: #f6f2e9;
  --ink: #222722;
  --blue: #0c4bab;
  --red: #c33e2a;
  --yellow: #f9c344;
  --sky: #bbd6e9;
  --line: #d9d5ca;
  --muted: #626258;
  --display: DynaPuff, "Arial Rounded MT Bold", Arial, sans-serif;
  --sans: "DM Sans", Arial, sans-serif;
  --gutter: clamp(24px, 4.8vw, 80px);
  --page-width: 1440px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
body.entry-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
  color: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 6px;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 600;
}
h1,
h2 {
  font-family: var(--display);
  letter-spacing: -0.045em;
  line-height: 1.14;
  overflow-wrap: anywhere;
}
em {
  font-style: normal;
  font-weight: inherit;
  color: var(--red);
}
::selection {
  background: var(--yellow);
  color: var(--ink);
}
.page-width {
  max-width: var(--page-width);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin-left: auto;
  margin-right: auto;
}
.wordmark {
  display: block;
  line-height: 0;
}
.wordmark img {
  height: auto;
  object-fit: contain;
}
.announcement {
  padding: 10px var(--gutter);
  background: var(--blue);
  color: var(--cream);
  font-size: 0.8125rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.announcement > a {
  display: flex;
  align-items: center;
  gap: 18px;
}
.announcement > a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.announcement > a span {
  font-size: 1.2rem;
}
.header {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.header-logo {
  width: 166px;
  flex-shrink: 0;
}
.navigation {
  display: flex;
  align-items: center;
  gap: 35px;
  font-size: 0.9375rem;
}
.navigation > a:not(.nav-cta) {
  position: relative;
  padding: 14px 0;
}
.navigation > a:not(.nav-cta):after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.navigation > a:hover:after {
  transform: scaleX(1);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 30px;
  border: 1px solid var(--blue);
  color: var(--blue);
  border-radius: 99px;
  padding: 14px 21px;
  transition:
    background 0.2s,
    color 0.2s;
}
.nav-cta:hover {
  background: var(--blue);
  color: var(--cream);
}
.nav-cta span {
  font-size: 1.4rem;
  line-height: 1;
}
.menu-toggle {
  display: none;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 16px;
  z-index: 20;
  padding: 12px;
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  line-height: 1.7;
  font-weight: 600;
}
.hero {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 5%;
  padding-top: 36px;
  padding-bottom: 58px;
  align-items: center;
}
.hero-copy {
  min-width: 0;
  padding-bottom: 25px;
}
.hero .eyebrow {
  color: var(--blue);
}
.hero h1 {
  font-size: clamp(3.25rem, 5.8vw, 5.25rem);
  color: var(--blue);
  margin-top: 24px;
  margin-bottom: 28px;
  line-height: 1.15;
}
.hero-description {
  font-size: 1.0625rem;
  line-height: 1.75;
  max-width: 420px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  border-radius: 99px;
  padding: 17px 25px;
  font-size: 0.9375rem;
  min-height: 56px;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-3px);
}
.button span {
  font-size: 1.5rem;
  line-height: 1;
}
.button-blue {
  background: var(--blue);
  color: var(--cream);
  margin-top: 29px;
}
.button-blue:hover {
  background: #073b88;
}
.hero-footnote {
  font-size: 0.8125rem;
  line-height: 1.65;
  margin-top: 20px;
  color: var(--muted);
}
.hero-visual {
  position: relative;
  min-width: 0;
}
.hero-image-wrap {
  aspect-ratio: 4/5;
  height: auto;
  overflow: hidden;
  border-radius: 140px 140px 8px 8px;
  background: var(--blue);
}
.hero-image {
  object-position: center;
  transition: transform 1s;
}
.hero-image-wrap:hover img {
  transform: scale(1.035);
}
/* Keep the type and circle proportional, with a short two-line label. */
.giving-stamp {
  position: absolute;
  left: -45px;
  bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 8.25em;
  height: 8.25em;
  padding: 1em;
  gap: 0.35em;
  font-size: 1rem;
  text-align: center;
  background: var(--yellow);
  color: var(--ink);
  border: 3px solid var(--cream);
  border-radius: 50%;
  transform: rotate(-12deg);
  transition: transform 0.25s;
  box-shadow: 0 4px 0 #22272210;
}
.giving-stamp:hover {
  transform: rotate(0) scale(1.03);
}
.giving-stamp strong {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  flex-shrink: 0;
  gap: 0.035em;
  font-family: var(--display);
  font-size: 2.45em;
  line-height: 1.05;
  letter-spacing: -0.045em;
}
.giving-stamp .stamp-percent {
  font-size: 0.62em;
  letter-spacing: 0;
}
.giving-stamp .stamp-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  font-size: 0.6875em;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.045em;
}
.giving-stamp .stamp-label > span {
  display: block;
  white-space: nowrap;
}
@media (max-width: 1000px) {
  .giving-stamp {
    font-size: 0.9375rem;
    left: -23px;
    bottom: 65px;
  }
}
@media (max-width: 800px) {
  .giving-stamp {
    left: -3px;
    bottom: 78px;
  }
}
@media (max-width: 480px) {
  .giving-stamp {
    left: 0;
    bottom: 70px;
  }
}

.hero-visual figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
  padding-top: 14px;
}
.hero-visual figcaption > span:last-child {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.values-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
  background: var(--yellow);
  padding: 23px var(--gutter);
  font-family: var(--display);
  font-size: 1.7rem;
  letter-spacing: -0.035em;
  line-height: 1.5;
}
.strip-star {
  font-family: var(--sans);
  font-size: 1.9rem;
  color: var(--red);
}
.story {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 12%;
  align-items: center;
  padding-top: 108px;
  padding-bottom: 114px;
}
.story-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.story-mark img {
  width: min(100%, 310px);
  height: auto;
  object-fit: contain;
  transform: rotate(-6deg);
}
.story-mark > span {
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  color: var(--blue);
}
.story-copy h2 {
  font-size: clamp(2.8rem, 4.4vw, 4rem);
  color: var(--blue);
  margin-top: 24px;
  margin-bottom: 27px;
}
.story-copy > p:not(.eyebrow) {
  font-size: 1.0625rem;
  line-height: 1.8;
  max-width: 475px;
  margin-top: 18px;
}
.story-copy .story-signoff {
  color: var(--blue);
  font-weight: 600;
}
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid currentColor;
  padding: 9px 0;
  margin-top: 18px;
  font-size: 0.9375rem;
  line-height: 1.6;
  min-height: 44px;
}
.inline-link span {
  font-size: 1.35rem;
  transition: transform 0.2s;
}
.inline-link:hover span {
  transform: translate(2px, -2px);
}
.first-look {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  align-items: center;
  padding-top: 108px;
  padding-bottom: 110px;
}
.first-look-copy h2 {
  font-size: clamp(2.5rem, 3.8vw, 3.5rem);
  color: var(--blue);
  margin-top: 25px;
  margin-bottom: 27px;
}
.first-look-copy > p:not(.eyebrow):not(.concept-note) {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 420px;
  margin-top: 17px;
}
.first-look-copy .inline-link {
  color: var(--blue);
  margin-top: 23px;
}
.concept-note {
  font-size: 0.75rem;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 27px;
}
.closing {
  background: var(--red);
  color: var(--cream);
  padding: 76px 0 84px;
  text-align: center;
}
.closing h2 {
  font-size: clamp(3rem, 5.8vw, 5.25rem);
  margin-top: 24px;
  margin-bottom: 30px;
}
.closing h2 em {
  color: var(--yellow);
}
.button-cream {
  background: var(--cream);
  color: var(--blue);
}
.footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 38px;
  padding-top: 46px;
  padding-bottom: 25px;
}
.footer-logo {
  width: 220px;
  max-width: 100%;
}
.footer > p {
  font-size: 0.9375rem;
  line-height: 1.8;
}
.back-top {
  display: flex;
  align-items: center;
  gap: 23px;
  font-size: 0.875rem;
  min-height: 44px;
}
.back-top:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.back-top span {
  font-size: 1.5rem;
}
.footer-bottom {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
}
.footer-bottom > span:first-child {
  letter-spacing: 0.06em;
}
.entrance:not([open]) {
  display: none;
}
.entrance {
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  height: 100dvh;
  margin: 0;
  padding: 0;
  border: 0;
  background: var(--cream);
  color: var(--ink);
  overflow: hidden;
  transition: background 0.65s ease;
}
.entrance::backdrop {
  background: transparent;
}
.entrance:before {
  content: "";
  position: absolute;
  width: 66vw;
  height: 66vw;
  max-width: 850px;
  max-height: 850px;
  border: 1px solid #d9d5ca70;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 90px 40px #d8caa920;
  pointer-events: none;
}
.entrance-top,
.entrance-bottom {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 0.75rem;
  line-height: 1.65;
}
.entrance-top {
  top: 34px;
  letter-spacing: 0.09em;
  color: var(--blue);
}
.entrance-bottom {
  bottom: 27px;
  color: var(--muted);
}
.entrance-center {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
}
.enter-button {
  background: none;
  border: 0;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 100%;
}
.entrance-wordmark {
  width: min(64vw, 730px);
  animation: float 5s ease-in-out infinite;
  transition: scale 0.35s;
}
.enter-button:hover .entrance-wordmark {
  scale: 1.035;
}
.enter-label {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.875rem;
  color: var(--blue);
  letter-spacing: 0.015em;
}
.enter-label > span {
  font-size: 1.5rem;
  transition: transform 0.3s;
}
.enter-button:hover .enter-label > span {
  transform: translate(3px, -3px);
}
.entrance-welcome {
  margin-top: 13px;
  font-size: 0.875rem;
  color: var(--muted);
  text-align: center;
}
.enter-button:focus-visible {
  outline: none;
}
.enter-button:focus-visible .enter-label {
  outline: 2px solid var(--blue);
  outline-offset: 8px;
  border-radius: 2px;
}
.entry-open .site {
  opacity: 0;
}
.site {
  transition: opacity 0.6s ease;
}
.entry-open.entering .site {
  opacity: 1;
}
.entrance.exiting {
  background: transparent;
}
.entrance.exiting:before,
.entrance.exiting .entrance-top,
.entrance.exiting .entrance-bottom,
.entrance.exiting .enter-label,
.entrance.exiting .entrance-welcome {
  opacity: 0;
  transition: opacity 0.2s;
}
.flying-logo {
  position: fixed;
  margin: 0;
  pointer-events: none;
  transform-origin: top left;
  z-index: 5;
}
.logo-arriving {
  visibility: hidden;
}
.reveal.will-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.will-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-13px);
  }
}
@media (min-width: 1441px) {
  .hero-image-wrap {
    height: auto;
  }
  .hero {
    padding-top: 45px;
    padding-bottom: 67px;
  }
}
@media (max-width: 1000px) {
  .announcement {
    font-size: 0.75rem;
  }
  .announcement > span {
    display: none;
  }
  .announcement > a {
    margin: auto;
    text-align: center;
  }
  .navigation {
    gap: 22px;
  }
  .hero {
    gap: 4%;
  }
  .hero h1 {
    font-size: clamp(2.75rem, 5.6vw, 4rem);
  }
  .hero-image-wrap {
    height: auto;
    border-radius: 110px 110px 6px 6px;
  }
  .hero-visual figcaption {
    flex-direction: column;
    gap: 3px;
  }
  .values-strip {
    gap: 25px;
    font-size: 1.4rem;
  }
  .story {
    gap: 8%;
  }
  .first-look {
    gap: 7%;
  }
  .footer {
    grid-template-columns: 1fr auto;
  }
  .footer > p {
    grid-column: 1;
    grid-row: 2;
  }
  .back-top {
    grid-column: 2;
    grid-row: 1;
  }
  .footer-bottom {
    grid-row: 3;
  }
}
@media (max-width: 800px) {
  :root {
    --gutter: 24px;
  }
  html {
    scroll-padding-top: 20px;
  }
  .announcement {
    padding: 9px 20px;
    font-size: 0.75rem;
  }
  .announcement > a {
    gap: 10px;
    max-width: 370px;
    line-height: 1.5;
  }
  .announcement > a span {
    flex-shrink: 0;
  }
  .header {
    min-height: 92px;
    flex-wrap: wrap;
    gap: 0;
    position: relative;
  }
  .header-logo {
    width: 134px;
  }
  .navigation {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 22px;
    font-size: 0.875rem;
  }
  .nav-cta {
    gap: 12px;
    padding: 12px 14px;
  }
  .js .menu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 99px;
    background: transparent;
    padding: 12px 17px;
    font-size: 0.875rem;
    min-height: 46px;
    color: var(--blue);
  }
  .menu-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 15px;
  }
  .menu-icon i {
    height: 1px;
    width: 15px;
    background: currentColor;
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] .menu-icon i:first-child {
    transform: translateY(3px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] .menu-icon i:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }
  .js .navigation {
    display: none;
  }
  .js .navigation.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: 8px;
    gap: 0;
  }
  .js .navigation a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
  }
  .js .navigation .nav-cta {
    border: 0;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 22px;
    padding-bottom: 30px;
    gap: 35px;
  }
  .hero-copy {
    padding-bottom: 0;
  }
  .hero .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.065em;
  }
  .hero h1 {
    font-size: clamp(2.6rem, 9.7vw, 4.2rem);
    margin-top: 21px;
    margin-bottom: 23px;
    line-height: 1.16;
  }
  .hero-description {
    font-size: 1rem;
    max-width: 420px;
  }
  .desktop-break {
    display: none;
  }
  .button {
    padding: 16px 23px;
    gap: 27px;
  }
  .button-blue {
    margin-top: 24px;
  }
  .hero-footnote {
    margin-top: 15px;
    font-size: 0.75rem;
  }
  .hero-visual {
    padding-left: 12px;
    max-width: 560px;
    width: 100%;
    justify-self: center;
  }
  .hero-image-wrap {
    height: auto;
    border-radius: 110px 110px 6px 6px;
  }
  .hero-visual figcaption {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.75rem;
  }
  .hero-visual figcaption > span:last-child {
    font-size: 0.75rem;
  }
  .values-strip {
    justify-content: center;
    text-align: center;
    gap: 8px 20px;
    flex-wrap: wrap;
    padding: 21px 24px;
    font-size: 1.1875rem;
  }
  .values-strip .strip-star {
    font-size: 1.4rem;
  }
  .values-strip .strip-star:nth-of-type(4) {
    display: none;
  }
  .values-strip > span:last-child {
    flex-basis: 100%;
  }
  .story {
    grid-template-columns: 1fr;
    gap: 39px;
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .story-mark {
    gap: 20px;
  }
  .story-mark img {
    width: 190px;
  }
  .story-mark > span {
    font-size: 0.75rem;
  }
  .story-copy h2 {
    font-size: clamp(2.6rem, 9vw, 3.6rem);
    margin-top: 20px;
    margin-bottom: 23px;
  }
  .story-copy > p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 16px;
  }
  .inline-link {
    font-size: 0.875rem;
    gap: 13px;
  }
  .first-look {
    grid-template-columns: 1fr;
    gap: 37px;
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .first-look-copy h2 {
    font-size: clamp(2.3rem, 8vw, 3.3rem);
    margin-top: 20px;
    margin-bottom: 23px;
  }
  .first-look-copy > p:not(.eyebrow):not(.concept-note) {
    font-size: 1rem;
  }
  .closing {
    padding: 56px 0 61px;
  }
  .closing h2 {
    font-size: clamp(2.6rem, 9.3vw, 4rem);
    margin-top: 23px;
    margin-bottom: 26px;
  }
  .closing .eyebrow {
    font-size: 0.75rem;
  }
  .footer {
    padding-top: 34px;
    gap: 19px;
  }
  .footer-logo {
    width: 168px;
  }
  .footer > p {
    font-size: 0.875rem;
  }
  .back-top {
    gap: 16px;
    font-size: 0.8125rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 9px;
    font-size: 0.75rem;
    margin-top: 7px;
  }
  .entrance-top {
    top: 26px;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
  }
  .entrance-top > span:last-child {
    display: none;
  }
  .entrance-bottom {
    bottom: 24px;
    font-size: 0.75rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .entrance:before {
    width: 112vw;
    height: 112vw;
  }
  .entrance-center {
    padding: 18px;
  }
  .enter-button {
    padding: 12px;
    gap: 28px;
  }
  .entrance-wordmark {
    width: min(78vw, 480px);
  }
  .entrance-welcome {
    font-size: 0.8125rem;
    margin-top: 14px;
  }
}
@media (max-width: 370px) {
  .hero h1 {
    font-size: 2.35rem;
  }
  .header-logo {
    width: 118px;
  }
  .hero-image-wrap {
    height: auto;
  }
  .values-strip {
    font-size: 1.0625rem;
    gap: 16px;
  }
  .footer-logo {
    width: 140px;
  }
  .back-top {
    gap: 10px;
  }
  .hero-visual figcaption {
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .reveal.will-reveal {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-contrast: more) {
  :root {
    --muted: var(--ink);
    --line: #797a70;
  }
  .giving .partner-note {
    border-color: var(--cream);
  }
}
.hero-copy,
.story-copy,
.giving-heading > *,
.giving-grid > *,
.first-look-copy {
  min-width: 0;
}
@media (max-width: 800px) {
  .navigation {
    flex-wrap: wrap;
  }
}

/* A live typographic wordmark keeps the logo crisp at every screen size. */
.wordmark {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 2.8rem;
  letter-spacing: -0.085em;
  line-height: 1.3;
  white-space: nowrap;
  width: max-content;
  max-width: 100%;
  padding-right: 0.085em;
}
.logo-letter {
  display: inline-block;
  color: var(--blue);
  transform: rotate(-5deg);
}
.logo-letter:nth-child(2) {
  color: #cc432d;
  transform: rotate(4deg) translateY(-0.015em);
}
.logo-letter:nth-child(3) {
  color: #e3a523;
  transform: rotate(-3deg) translateY(-0.035em);
}
.logo-letter:nth-child(4) {
  color: #8cb9d9;
  transform: rotate(4deg);
}
.logo-letter:nth-child(5) {
  transform: rotate(-4deg) translateY(-0.01em);
}
.entrance-wordmark {
  font-size: clamp(4rem, 16vw, 12.5rem);
  width: max-content;
}
.footer-logo {
  font-size: 3.6rem;
  width: max-content;
}

@media (max-width: 800px) {
  .header-logo {
    font-size: 2.25rem;
    width: max-content;
  }
  .entrance-wordmark {
    font-size: clamp(3.5rem, 17vw, 7.5rem);
  }
  .footer-logo {
    font-size: 2.7rem;
    width: max-content;
  }
}
@media (max-width: 370px) {
  .header-logo {
    font-size: 2rem;
  }
  .footer-logo {
    font-size: 2.4rem;
  }
  .entrance-wordmark {
    font-size: 17vw;
  }
}
.product-origin {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 25px;
  max-width: 440px;
}
.product-origin summary {
  padding: 17px 0;
  min-height: 48px;
  cursor: pointer;
  color: var(--blue);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.product-origin summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}
.product-origin p {
  font-size: 0.875rem;
  line-height: 1.8;
  padding: 0 0 20px;
  color: var(--muted);
}
.tee-preview {
  min-width: 0;
}
.tee-preview-frame {
  aspect-ratio: 1122/1402;
  overflow: hidden;
  border-radius: 12px;
  background: var(--blue);
}
.tee-preview-frame img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.tee-preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-top: 19px;
}
.tee-preview-footer > span {
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 220px;
}
.tee-view-controls:not([hidden]) {
  display: flex;
  gap: 5px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 99px;
  flex-shrink: 0;
}
.tee-view-controls button {
  border: 0;
  min-height: 44px;
  min-width: 61px;
  border-radius: 99px;
  background: transparent;
  color: var(--blue);
  font-size: 0.8125rem;
  padding: 10px 15px;
  transition:
    background 0.2s,
    color 0.2s;
}
.tee-view-controls button[aria-pressed="true"] {
  background: var(--blue);
  color: var(--cream);
}
.tee-view-controls button:hover:not([aria-pressed="true"]) {
  background: #e1e7e9;
}
.tee-concept-caption {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 12px;
}
@media (max-width: 480px) {
  .tee-preview-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Shared spacing makes the commitment and contribution example feel connected. */
.giving {
  --giving-gap: clamp(36px, 6vw, 84px);
  background: var(--blue);
  color: var(--cream);
  padding-block: clamp(64px, 7vw, 104px) 48px;
}
.giving-heading,
.giving-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  column-gap: var(--giving-gap);
}
.giving-heading {
  row-gap: 24px;
  align-items: end;
}
.giving-heading .eyebrow {
  grid-column: 1 / -1;
  color: #d5e8f3;
}
.giving-heading h2 {
  font-size: clamp(2.6rem, 4.6vw, 4.2rem);
  line-height: 1.17;
}
.giving-heading h2 em {
  color: var(--yellow);
}
.giving-heading > p:last-child {
  max-width: 370px;
  font-size: 1rem;
  line-height: 1.8;
  color: #e6eef3;
  padding-bottom: 5px;
}
.giving-grid {
  margin-top: clamp(40px, 5vw, 68px);
  align-items: stretch;
}
.promise {
  padding-block: 28px 12px;
  border-top: 1px solid #7398c8;
}
.promise .promise-label {
  margin: 0 0 24px;
  font-size: 0.75rem;
  line-height: 1.6;
  letter-spacing: 0.09em;
  color: #d5e8f3;
}
.big-percent {
  display: inline-flex;
  align-items: baseline;
  gap: 0.055em;
  font-family: var(--display);
  font-size: clamp(7rem, 11.5vw, 10.5rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--yellow);
  white-space: nowrap;
}
.percent-number {
  letter-spacing: -0.045em;
}
.percent-sign {
  font-size: 0.53em;
  letter-spacing: 0;
}
.promise h3 {
  margin-top: 22px;
  font-family: var(--sans);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.025em;
}
.promise h3 span {
  font-weight: 400;
}
.promise > p:not(.promise-label) {
  max-width: 390px;
  margin-top: 22px;
  font-size: 1rem;
  line-height: 1.8;
  color: #e6eef3;
}
.promise .inline-link {
  margin-top: 23px;
  padding-bottom: 8px;
}
.promise .inline-link:hover span {
  transform: translateY(3px);
}
.impact-card {
  min-width: 0;
  padding: clamp(28px, 3.3vw, 44px);
  border-radius: 24px;
  background: var(--cream);
  color: var(--ink);
}
.impact-card .eyebrow {
  color: var(--blue);
  font-size: 0.6875rem;
  letter-spacing: 0.07em;
}
.impact-card h3 {
  margin-top: 20px;
  margin-bottom: 32px;
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  line-height: 1.23;
  letter-spacing: -0.045em;
}
.range-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.range-label output {
  flex-shrink: 0;
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
input[type="range"] {
  --range-progress: 44.444%;
  display: block;
  appearance: none;
  width: 100%;
  height: 44px;
  margin: 10px 0 0;
  background: transparent;
  cursor: pointer;
  accent-color: var(--blue);
}
input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 99px;
  background: linear-gradient(
    to right,
    var(--blue) var(--range-progress),
    var(--line) var(--range-progress)
  );
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 26px;
  height: 26px;
  margin-top: -10px;
  border: 4px solid var(--cream);
  outline: 2px solid var(--blue);
  border-radius: 50%;
  background: var(--blue);
}
input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 99px;
  background: var(--line);
}
input[type="range"]::-moz-range-progress {
  height: 6px;
  border-radius: 99px;
  background: var(--blue);
}
input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 4px solid var(--cream);
  outline: 2px solid var(--blue);
  border-radius: 50%;
  background: var(--blue);
}
.range-ends {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.75rem;
}
.impact-result {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 28px;
  padding-block: 25px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.impact-result > output {
  flex-shrink: 0;
  min-width: 2.4ch;
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(2.8rem, 4vw, 3.7rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.impact-result > span {
  min-width: 0;
  font-size: 0.875rem;
  line-height: 1.7;
}
.impact-result strong {
  font-weight: 600;
}
.impact-explanation {
  margin-top: 18px;
  max-width: 330px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.75;
}
.partner-note {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) minmax(0, 2fr) auto;
  gap: 28px;
  align-items: start;
  margin-top: 56px;
  padding-top: 30px;
  border-top: 1px solid #7398c8;
  scroll-margin-top: 32px;
}
.partner-label {
  max-width: 165px;
  color: #d5e8f3;
  font-size: 0.6875rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
.partner-note h3 {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 600;
}
.partner-note p {
  max-width: 530px;
  margin-top: 10px;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #e6eef3;
}
.status-label {
  width: max-content;
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid #8aaad0;
  border-radius: 99px;
  font-size: 0.625rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.button > span,
.inline-link > span {
  flex-shrink: 0;
}
.tee-preview-footer {
  flex-wrap: wrap;
}
.tee-preview-footer > span {
  flex: 1 1 145px;
}
.tee-preview-frame {
  border-radius: 20px;
}
.entrance-top {
  top: max(26px, env(safe-area-inset-top));
}
.entrance-bottom {
  bottom: max(24px, env(safe-area-inset-bottom));
}
[hidden] {
  display: none !important;
}

@media (max-width: 1000px) {
  .partner-note {
    grid-template-columns: minmax(120px, 1fr) minmax(0, 2.2fr);
    gap: 18px 28px;
  }
  .partner-note > div {
    grid-column: 2;
    grid-row: 1 / 3;
  }
  .status-label {
    grid-column: 1;
    grid-row: 2;
  }
}
@media (max-width: 900px) {
  .giving-heading {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 22px;
  }
  .giving-heading > p:last-child {
    max-width: 500px;
    padding: 0;
  }
  .giving-grid {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 36px;
  }
  .promise {
    padding-block: 28px 0;
  }
  .promise > p:not(.promise-label) {
    max-width: 520px;
  }
  .impact-card {
    width: 100%;
    max-width: 580px;
  }
  .big-percent {
    font-size: clamp(7rem, 17vw, 9.5rem);
  }
  .impact-card h3 {
    font-size: 2.25rem;
  }
}
@media (max-width: 800px) {
  .giving {
    padding-block: 64px 40px;
  }
  .giving-heading h2 {
    font-size: clamp(2.25rem, 8.5vw, 3.7rem);
  }
  .giving-heading > p:last-child {
    font-size: 0.9375rem;
  }
  .giving-grid {
    margin-top: 36px;
  }
  .promise .promise-label {
    margin-bottom: 18px;
  }
  .promise h3 {
    margin-top: 20px;
    font-size: 1.375rem;
  }
  .promise > p:not(.promise-label) {
    font-size: 0.9375rem;
    margin-top: 18px;
  }
  .promise .inline-link {
    margin-top: 18px;
  }
  .impact-card {
    padding: 28px;
    border-radius: 20px;
  }
  .impact-card h3 {
    font-size: 2rem;
    margin-block: 18px 28px;
  }
  .partner-note {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    margin-top: 36px;
    padding-top: 26px;
  }
  .partner-note > div {
    grid-column: 1;
    grid-row: auto;
  }
  .partner-label {
    max-width: none;
  }
  .status-label {
    grid-column: 1;
    grid-row: auto;
  }
}
@media (max-width: 480px) {
  :root {
    --gutter: clamp(20px, 5.5vw, 26px);
  }
  .hero-image-wrap {
    border-radius: 88px 88px 12px 12px;
  }
  .hero-visual figcaption {
    flex-direction: column;
    gap: 5px;
  }
  .big-percent {
    font-size: clamp(6rem, 26vw, 7.5rem);
  }
  .tee-preview-footer > span {
    flex: none;
  }
  .tee-preview-footer {
    gap: 12px;
  }
  .tee-view-controls:not([hidden]) {
    width: 100%;
  }
  .tee-view-controls button {
    flex: 1;
    min-height: 48px;
  }
}
@media (max-width: 380px) {
  .impact-card {
    padding: 25px 22px;
  }
  .impact-card h3 {
    font-size: 1.8rem;
  }
  .impact-result {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .range-label {
    font-size: 0.8125rem;
  }
  .footer {
    gap: 16px 10px;
  }
}
@media (max-height: 480px) and (orientation: landscape) {
  .entrance-wordmark {
    font-size: min(13vw, 24vh);
  }
  .enter-button {
    gap: 10px;
    padding: 8px;
  }
  .entrance-welcome,
  .entrance-bottom {
    display: none;
  }
}
