:root {
  --background: 42 33% 96%;
  --foreground: 155 26% 12%;
  --card: 40 30% 98%;
  --card-foreground: 155 26% 12%;
  --primary: 36 74% 48%;
  --primary-foreground: 42 40% 97%;
  --primary-light: 38 82% 62%;
  --secondary: 158 30% 16%;
  --secondary-foreground: 42 33% 96%;
  --secondary-light: 158 22% 28%;
  --accent: 14 52% 45%;
  --accent-foreground: 42 33% 96%;
  --muted: 40 22% 91%;
  --muted-foreground: 155 8% 36%;
  --border: 40 18% 85%;
  --ring: 36 74% 48%;
  --radius: 0.25rem;
  --paper-gradient: linear-gradient(180deg, hsl(42 33% 96%) 0%, hsl(40 26% 93%) 100%);
  --ink-gradient: linear-gradient(160deg, hsl(158 32% 13%) 0%, hsl(158 26% 19%) 100%);
  --image-scrim: linear-gradient(
    180deg,
    hsl(158 30% 10% / 0.15) 0%,
    hsl(158 30% 8% / 0.55) 55%,
    hsl(158 30% 7% / 0.88) 100%
  );
  --duotone: linear-gradient(180deg, hsl(36 74% 48% / 0.12), hsl(158 30% 12% / 0.28));
  --shadow-paper: 0 1px 2px hsl(155 26% 12% / 0.04), 0 8px 24px -12px hsl(155 26% 12% / 0.12);
  --shadow-lift: 0 2px 4px hsl(155 26% 12% / 0.05), 0 24px 48px -20px hsl(155 26% 12% / 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shell-max: 1400px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border: 0 solid hsl(var(--border));
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: "Work Sans", system-ui, sans-serif;
  font-weight: 350;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "kern" 1, "liga" 1;
}

body.is-locked {
  overflow: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
}

button {
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
blockquote {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-feature-settings: "kern" 1, "liga" 1, "dlig" 1;
}

::selection {
  background: hsl(var(--primary) / 0.28);
}

:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.skip-link:focus {
  top: 1rem;
}

.eyebrow {
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: hsl(var(--muted-foreground));
}
.eyebrow--primary {
  color: hsl(var(--primary));
}
.eyebrow--light {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: hsl(var(--primary-light));
}

.chapter-number {
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.875rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.2em;
  color: hsl(var(--primary));
}

.display {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.display--xl {
  font-size: clamp(3rem, 8vw, 5.5rem);
}
.display--lg {
  font-size: clamp(2rem, 5vw, 3.25rem);
}
.display--md {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
}

.prose {
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.85;
  color: hsl(var(--muted-foreground));
  text-wrap: pretty;
}
@media (min-width: 768px) {
  .prose {
    font-size: 1.0625rem;
  }
}
.prose p + p {
  margin-top: 1.5rem;
}
.prose strong {
  color: hsl(var(--foreground));
  font-weight: 500;
}
.prose__lead {
  color: hsl(var(--foreground) / 0.9);
}

.lede {
  max-width: 34rem;
  line-height: 1.7;
  color: hsl(var(--muted-foreground));
  text-wrap: pretty;
}

.rule {
  height: 1px;
  width: 100%;
  background: hsl(var(--border));
}

.link-underline {
  position: relative;
  display: inline-block;
}
.link-underline::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.link-underline:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.link-quiet {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: hsl(var(--foreground));
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

.shell {
  width: 100%;
  margin-inline: auto;
  max-width: var(--shell-max);
  padding-inline: 1.5rem;
}
@media (min-width: 1024px) {
  .shell {
    padding-inline: 2.5rem;
  }
}

.section {
  padding-block: 6rem;
}
@media (min-width: 1024px) {
  .section {
    padding-block: 8rem;
  }
}
.section--tight {
  padding-block: 3.5rem;
}
.section--paper {
  background-image: var(--paper-gradient);
}
.section--ink {
  background-image: var(--ink-gradient);
  color: hsl(var(--secondary-foreground));
}
.section--bordered {
  border-top: 1px solid hsl(var(--border));
}
.section__head {
  max-width: 48rem;
}

.stack > * + * {
  margin-top: 1.5rem;
}

.editorial {
  display: grid;
  gap: 3.5rem;
}
@media (min-width: 1024px) {
  .editorial {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 6rem;
  }
}
@media (min-width: 1024px) {
  .editorial__rail {
    position: sticky;
    top: 8rem;
    align-self: start;
  }
}

.photo {
  position: relative;
  overflow: hidden;
  background: hsl(var(--muted));
}
.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: var(--duotone);
  mix-blend-mode: multiply;
  opacity: 0.5;
}
.photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.photo:hover img, .group:hover .photo img {
  transform: scale(1.04);
}
.photo--4x5 {
  aspect-ratio: 4/5;
}
.photo--5x4 {
  aspect-ratio: 5/4;
}
.photo--1x1 {
  aspect-ratio: 1/1;
}
.photo--3x2 {
  aspect-ratio: 3/2;
}

.facts {
  border-bottom: 1px solid hsl(var(--border));
}
.facts__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 2.5rem;
  padding-block: 3.5rem;
}
@media (min-width: 1024px) {
  .facts__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.facts__value {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.25rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
@media (min-width: 1024px) {
  .facts__value {
    font-size: 3rem;
  }
}
.facts__label {
  margin-top: 0.75rem;
  max-width: 14rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}

.panel-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--border));
}
@media (min-width: 768px) {
  .panel-grid {
    grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
  }
}
.panel-grid--2 {
  --cols: 2;
}

.panel {
  background: hsl(var(--card));
  padding: 2rem;
  transition: background-color 0.5s var(--ease);
}
@media (min-width: 1024px) {
  .panel {
    padding: 2.5rem;
  }
}
.panel:hover {
  background: hsl(var(--muted));
}
.panel__title {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.panel__body {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: hsl(var(--muted-foreground));
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  min-height: 100svh;
}
.hero--short {
  min-height: 70svh;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  animation: slow-zoom 12s var(--ease) forwards;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--image-scrim);
}
.hero__body {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 9rem;
  padding-bottom: 4rem;
  color: hsl(var(--secondary-foreground));
}
@media (min-width: 1024px) {
  .hero__body {
    padding-bottom: 6rem;
  }
}
.hero__title {
  margin-top: 2rem;
  max-width: 56rem;
}
.hero__footer {
  margin-top: 2.5rem;
  display: grid;
  gap: 2.5rem;
  border-top: 1px solid hsl(var(--secondary-foreground) / 0.2);
  padding-top: 2rem;
}
@media (min-width: 1024px) {
  .hero__footer {
    grid-template-columns: 1.1fr auto;
    align-items: end;
  }
}
.hero__lede {
  max-width: 36rem;
  line-height: 1.75;
  color: hsl(var(--secondary-foreground) / 0.8);
}
@media (min-width: 768px) {
  .hero__lede {
    font-size: 1.125rem;
  }
}

.pullquote {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: hsl(var(--secondary-foreground));
}
.pullquote__media {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.pullquote__scrim {
  position: absolute;
  inset: 0;
  background: hsl(var(--secondary) / 0.8);
}
.pullquote__body {
  position: relative;
  padding-block: 7rem;
}
@media (min-width: 1024px) {
  .pullquote__body {
    padding-block: 10rem;
  }
}
.pullquote blockquote {
  margin-top: 2.5rem;
  font-weight: 300;
  font-size: clamp(1.5rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.pillar {
  display: grid;
  gap: 2.5rem;
  border-top: 1px solid hsl(var(--border));
  padding-top: 3rem;
}
@media (min-width: 1024px) {
  .pillar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5rem;
  }
}
@media (min-width: 1024px) {
  .pillar--flip .photo {
    order: 2;
  }
}
.pillar__meta {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
}
.pillar__title {
  margin-top: 1.5rem;
}
.pillar__body {
  margin-top: 1.5rem;
  max-width: 34rem;
  line-height: 1.85;
  color: hsl(var(--muted-foreground));
  text-wrap: pretty;
}
.pillar__list {
  margin-top: 2rem;
}
.pillar__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid hsl(var(--border));
  padding-bottom: 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--foreground) / 0.85);
}
.pillar__list li + li {
  margin-top: 0.75rem;
}
.pillar__list span {
  height: 0.375rem;
  width: 0.375rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: hsl(var(--primary));
}

.pillars {
  margin-top: 5rem;
}
.pillars > * + * {
  margin-top: 6rem;
}
@media (min-width: 1024px) {
  .pillars > * + * {
    margin-top: 8rem;
  }
}

.cta-split {
  display: grid;
  gap: 1px;
  background: hsl(var(--border));
  border-top: 1px solid hsl(var(--border));
}
@media (min-width: 768px) {
  .cta-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.cta-split__pane {
  background: hsl(var(--background));
  padding: 5rem 1.5rem;
}
@media (min-width: 1024px) {
  .cta-split__pane {
    padding: 7rem 4rem;
  }
}

@keyframes slow-zoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  height: 3.5rem;
  padding-inline: 2rem;
  border: 1px solid transparent;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: background-color 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease);
}
.btn svg {
  height: 1rem;
  width: 1rem;
  flex-shrink: 0;
}
.btn--sm {
  height: 2.75rem;
  padding-inline: 1.25rem;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  gap: 0.5rem;
}
.btn--block {
  width: 100%;
}
.btn--primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.btn--primary:hover {
  background: hsl(var(--primary-light));
}
.btn--ink {
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}
.btn--ink:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.btn--outline {
  border-color: hsl(var(--foreground));
  color: hsl(var(--foreground));
}
.btn--outline:hover {
  background: hsl(var(--foreground));
  color: hsl(var(--background));
}
.btn--outline-light {
  border-color: hsl(var(--secondary-foreground) / 0.4);
  color: hsl(var(--secondary-foreground));
}
.btn--outline-light:hover {
  background: hsl(var(--secondary-foreground));
  color: hsl(var(--secondary));
}
.btn--ghost {
  padding-inline: 0.5rem;
  color: hsl(var(--muted-foreground));
}
.btn--ghost:hover {
  color: hsl(var(--foreground));
}
.btn[disabled] {
  opacity: 0.45;
  pointer-events: none;
}

.icon-btn {
  display: inline-flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid hsl(var(--secondary-foreground) / 0.25);
  color: inherit;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
}
.icon-btn svg {
  height: 1rem;
  width: 1rem;
}
.icon-btn:hover {
  background: hsl(var(--secondary-foreground));
  color: hsl(var(--secondary));
}
.icon-btn--plain {
  border-color: transparent;
}
.icon-btn--plain:hover {
  background: hsl(var(--secondary-foreground) / 0.12);
  color: inherit;
}

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background-image: linear-gradient(to bottom, hsl(var(--secondary) / 0.6), transparent);
  transition: background-color 0.5s var(--ease), border-color 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.25rem;
  transition: padding 0.5s var(--ease);
}
.site-header__brand {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  color: hsl(var(--foreground));
}
.site-header__wordmark {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: -0.01em;
}
.site-header__sub {
  display: none;
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: hsl(var(--muted-foreground));
}
@media (min-width: 640px) {
  .site-header__sub {
    display: inline;
  }
}
.site-header__progress {
  height: 1px;
  background: hsl(var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.site-header--solid {
  border-bottom-color: hsl(var(--border));
  background-color: hsl(var(--background) / 0.92);
  background-image: none;
  backdrop-filter: blur(12px);
}
.site-header--condensed .site-header__bar {
  padding-block: 0.875rem;
}
.site-header--condensed .site-header__progress {
  opacity: 1;
}
.site-header--on-dark .site-header__brand,
.site-header--on-dark .site-header__wordmark {
  color: hsl(var(--secondary-foreground));
}
.site-header--on-dark .site-header__sub {
  color: hsl(var(--secondary-foreground) / 0.7);
}
.site-header--on-dark .site-nav__link {
  color: hsl(var(--secondary-foreground) / 0.7);
}
.site-header--on-dark .site-nav__link:hover, .site-header--on-dark .site-nav__link[aria-current=page] {
  color: hsl(var(--secondary-foreground));
}
.site-header--on-dark .site-nav__cta {
  border-color: hsl(var(--secondary-foreground) / 0.6);
  background: transparent;
  color: hsl(var(--secondary-foreground));
}
.site-header--on-dark .site-nav__cta:hover {
  background: hsl(var(--secondary-foreground));
  color: hsl(var(--secondary));
}
.site-header--on-dark .site-header__burger {
  color: hsl(var(--secondary-foreground));
}
.site-header--on-dark .site-header__mobile-cta {
  border: 1px solid hsl(var(--secondary-foreground) / 0.6);
  background: transparent;
  color: hsl(var(--secondary-foreground));
}

.site-nav {
  display: none;
  align-items: center;
  gap: 2.25rem;
}
@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }
}
.site-nav__link {
  position: relative;
  display: inline-block;
  padding-block: 0.25rem;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--muted-foreground));
  transition: color 0.4s var(--ease);
}
.site-nav__link::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.site-nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.site-nav__link:hover, .site-nav__link[aria-current=page] {
  color: hsl(var(--foreground));
}
.site-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid hsl(var(--foreground));
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  padding: 0.75rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: background-color 0.5s var(--ease), border-color 0.5s var(--ease), color 0.5s var(--ease);
}
.site-nav__cta svg {
  height: 0.875rem;
  width: 0.875rem;
  transition: transform 0.5s var(--ease);
}
.site-nav__cta:hover {
  background: hsl(var(--primary));
  border-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.site-nav__cta:hover svg {
  transform: translate(2px, -2px);
}

.site-header__mobile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .site-header__mobile {
    display: none;
  }
}

.site-header__mobile-cta {
  display: inline-flex;
  height: 2.5rem;
  align-items: center;
  padding-inline: 1rem;
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  font-size: 0.66rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.site-header--menu-open .site-header__mobile-cta {
  display: none;
}

.site-header__burger {
  display: inline-flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  color: hsl(var(--foreground));
}
.site-header__burger svg {
  height: 1.25rem;
  width: 1.25rem;
}
.site-header__burger .icon-close {
  display: none;
}

.site-header--menu-open .site-header__burger .icon-menu {
  display: none;
}
.site-header--menu-open .site-header__burger .icon-close {
  display: block;
}

.mobile-menu {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  transition: max-height 0.5s var(--ease), opacity 0.5s var(--ease);
}
@media (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu__inner {
  padding-bottom: 2.5rem;
  padding-top: 0.5rem;
}
.mobile-menu__link {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  border-bottom: 1px solid hsl(var(--border));
  padding-block: 1rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  color: hsl(var(--foreground) / 0.7);
}
.mobile-menu__link[aria-current=page] {
  color: hsl(var(--foreground));
}
.mobile-menu__note {
  margin-top: 2rem;
  font-size: 0.75rem;
  line-height: 1.7;
  color: hsl(var(--muted-foreground));
}
.mobile-menu .btn {
  margin-top: 2rem;
}

.site-header--menu-open .mobile-menu {
  max-height: 80vh;
  opacity: 1;
}

.site-footer {
  background-image: var(--ink-gradient);
  color: hsl(var(--secondary-foreground));
}
.site-footer__inner {
  padding-block: 5rem;
}
@media (min-width: 1024px) {
  .site-footer__inner {
    padding-block: 7rem;
  }
}
.site-footer__grid {
  display: grid;
  gap: 3.5rem;
}
@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}
.site-footer__wordmark {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.875rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .site-footer__wordmark {
    font-size: 2.25rem;
  }
}
.site-footer__about {
  max-width: 28rem;
}
.site-footer__blurb {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: hsl(var(--secondary-foreground) / 0.7);
}
.site-footer__meta {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: hsl(var(--secondary-foreground) / 0.6);
}
.site-footer__meta div + div {
  margin-top: 0.25rem;
}
.site-footer__meta dt {
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.site-footer__meta dd {
  font-variant-numeric: tabular-nums;
  color: hsl(var(--secondary-foreground) / 0.85);
}
.site-footer__meta .row {
  display: flex;
  gap: 0.5rem;
}
.site-footer__title {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: hsl(var(--primary));
}
.site-footer__links {
  margin-top: 1.5rem;
  font-size: 0.875rem;
}
.site-footer__links li + li {
  margin-top: 0.75rem;
}
.site-footer__links a {
  color: hsl(var(--secondary-foreground) / 0.75);
  transition: color 0.4s var(--ease);
}
.site-footer__links a:hover {
  color: hsl(var(--secondary-foreground));
}
.site-footer__address {
  margin-top: 1.5rem;
  font-style: normal;
  font-size: 0.875rem;
  color: hsl(var(--secondary-foreground) / 0.75);
}
.site-footer__address p + p {
  margin-top: 1rem;
}
.site-footer__address a:hover {
  color: hsl(var(--secondary-foreground));
}
.site-footer__address svg {
  height: 0.875rem;
  width: 0.875rem;
}
.site-footer__social {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.site-footer__bottom {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid hsl(var(--secondary-foreground) / 0.15);
  padding-top: 2rem;
  font-size: 0.75rem;
  color: hsl(var(--secondary-foreground) / 0.5);
}
@media (min-width: 768px) {
  .site-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.site-footer__bottom span:last-child {
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.rise {
  animation: rise 1s var(--ease) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.voices__head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .voices__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.voices__title {
  margin-top: 1.25rem;
  max-width: 34rem;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.voices__controls {
  display: flex;
  gap: 0.5rem;
}
.voices__viewport {
  margin-top: 4rem;
  overflow: hidden;
}
.voices__track {
  display: flex;
  transition: transform 0.7s var(--ease);
}
.voices__slide {
  flex: 0 0 100%;
  min-width: 0;
  padding-right: 2.5rem;
}
@media (min-width: 768px) {
  .voices__slide {
    flex-basis: 50%;
  }
}
@media (min-width: 1024px) {
  .voices__slide {
    flex-basis: 42%;
  }
}
.voices__slide blockquote {
  margin-top: 1.5rem;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .voices__slide blockquote {
    font-size: 1.75rem;
  }
}
.voices__slide figcaption {
  margin-top: 2rem;
  border-top: 1px solid hsl(var(--secondary-foreground) / 0.15);
  padding-top: 1.25rem;
  font-size: 0.875rem;
}
.voices__slide .name {
  display: block;
}
.voices__slide .role {
  display: block;
  margin-top: 0.25rem;
  color: hsl(var(--secondary-foreground) / 0.6);
}
.voices__dots {
  margin-top: 3rem;
  display: flex;
  gap: 0.5rem;
}
.voices__dots span {
  height: 1px;
  width: 2.5rem;
  background: hsl(var(--secondary-foreground) / 0.25);
  transition: background-color 0.5s var(--ease);
}
.voices__dots span.is-active {
  background: hsl(var(--primary));
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.filters__btn {
  border: 1px solid hsl(var(--border));
  padding: 0.7rem 1.25rem;
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--muted-foreground));
  transition: all 0.4s var(--ease);
}
.filters__btn:hover {
  color: hsl(var(--foreground));
  border-color: hsl(var(--foreground));
}
.filters__btn.is-active {
  background: hsl(var(--foreground));
  border-color: hsl(var(--foreground));
  color: hsl(var(--background));
}

.gallery-grid {
  display: grid;
  gap: 1px;
  background: hsl(var(--border));
  border: 1px solid hsl(var(--border));
}
@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.gallery-grid__item {
  position: relative;
  display: block;
  width: 100%;
  background: hsl(var(--muted));
  aspect-ratio: 4/3;
  overflow: hidden;
}
.gallery-grid__item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.gallery-grid__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: hsl(var(--secondary) / 0.35);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.gallery-grid__item:hover img {
  transform: scale(1.05);
}
.gallery-grid__item:hover::after {
  opacity: 1;
}
.gallery-grid__item.is-hidden {
  display: none;
}
.gallery-grid__item .caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  padding: 1rem 1.25rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--secondary-foreground));
  background: linear-gradient(to top, hsl(var(--secondary) / 0.85), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.5s var(--ease);
}
.gallery-grid__item:hover .caption {
  opacity: 1;
  transform: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: hsl(var(--foreground) / 0.95);
  color: hsl(var(--background));
}
.lightbox.is-open {
  display: flex;
}
.lightbox__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 95vw;
}
.lightbox img {
  max-height: 80vh;
  max-width: 100%;
  object-fit: contain;
  box-shadow: var(--shadow-lift);
  animation: scale-in 0.4s var(--ease);
}
.lightbox__count {
  font-size: 0.875rem;
  color: hsl(var(--background) / 0.8);
  font-variant-numeric: tabular-nums;
}
.lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}
.lightbox__prev, .lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 3rem;
  width: 3rem;
}
.lightbox__prev {
  left: 1rem;
}
.lightbox__next {
  right: 1rem;
}
.lightbox .icon-btn {
  border-color: hsl(var(--background) / 0.25);
  color: hsl(var(--background));
}
.lightbox .icon-btn:hover {
  background: hsl(var(--background) / 0.15);
  color: hsl(var(--background));
}
.lightbox svg {
  height: 1.5rem;
  width: 1.5rem;
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.field {
  display: block;
}
.field + .field {
  margin-top: 1.25rem;
}
.field__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--muted-foreground));
}
.field__hint {
  margin-top: 0.4rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}
.field__error {
  margin-top: 0.4rem;
  font-size: 0.75rem;
  color: hsl(var(--destructive));
  color: hsl(0, 64%, 44%);
}
.field input,
.field textarea,
.field select {
  margin-top: 0.6rem;
  width: 100%;
  border-bottom: 1px solid hsl(var(--border));
  background: transparent;
  padding: 0.65rem 0;
  font-size: 1rem;
  color: hsl(var(--foreground));
  transition: border-color 0.4s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder,
.field select::placeholder {
  color: hsl(var(--muted-foreground) / 0.7);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: hsl(var(--primary));
}
.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.form-grid .field + .field {
  margin-top: 0;
}
@media (min-width: 768px) {
  .form-grid__full {
    grid-column: 1/-1;
  }
}

.notice {
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  padding: 1.25rem 1.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: hsl(var(--muted-foreground));
}

.give {
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
}
.give__steps {
  display: grid;
  gap: 1px;
  background: hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
}
@media (min-width: 640px) {
  .give__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.give__step {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  background: hsl(var(--card));
  padding: 1rem 1.5rem;
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--muted-foreground));
}
.give__step.is-active {
  background: hsl(var(--muted));
  color: hsl(var(--foreground));
}
.give__step.is-done {
  color: hsl(var(--primary));
}
.give__panel {
  display: none;
  padding: 2rem 1.5rem;
}
@media (min-width: 1024px) {
  .give__panel {
    padding: 3rem;
  }
}
.give__panel.is-active {
  display: block;
  animation: rise 0.6s var(--ease) both;
}
.give__legend {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: hsl(var(--muted-foreground));
}
.give__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.give__toggle {
  margin-top: 1rem;
  display: inline-flex;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
}
.give__toggle button {
  padding: 0.85rem 1.75rem;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--muted-foreground));
  transition: all 0.4s var(--ease);
}
.give__toggle button.is-active {
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}
.give__amounts {
  margin-top: 2rem;
  display: grid;
  gap: 1px;
  background: hsl(var(--border));
  border: 1px solid hsl(var(--border));
}
@media (min-width: 640px) {
  .give__amounts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .give__amounts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.give__amount {
  background: hsl(var(--card));
  padding: 1.5rem 1.25rem;
  text-align: left;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
}
.give__amount .value {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  color: hsl(var(--foreground));
}
.give__amount .note {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: hsl(var(--muted-foreground));
}
.give__amount:hover {
  background: hsl(var(--muted));
}
.give__amount.is-active {
  background: hsl(var(--secondary));
}
.give__amount.is-active .value {
  color: hsl(var(--secondary-foreground));
}
.give__amount.is-active .note {
  color: hsl(var(--secondary-foreground) / 0.7);
}
.give__custom {
  margin-top: 2rem;
  max-width: 22rem;
}
.give__impact {
  margin-top: 2rem;
  border-top: 1px solid hsl(var(--border));
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem 1.5rem;
}
.give__impact .figure {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.give__impact .text {
  max-width: 30rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: hsl(var(--muted-foreground));
  text-wrap: pretty;
}
.give__review {
  margin-top: 1.5rem;
  border-top: 1px solid hsl(var(--border));
}
.give__review div {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid hsl(var(--border));
  padding-block: 0.9rem;
  font-size: 0.875rem;
}
.give__review dt {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  color: hsl(var(--muted-foreground));
}
.give__review dd {
  color: hsl(var(--foreground));
  text-align: right;
}
.give__done {
  text-align: left;
}
.give__done .mark {
  display: inline-flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: hsl(var(--primary) / 0.15);
  color: hsl(var(--primary));
}
.give__done .mark svg {
  height: 1.25rem;
  width: 1.25rem;
}

.bank {
  display: grid;
  gap: 1px;
  background: hsl(var(--border));
  border: 1px solid hsl(var(--border));
}
@media (min-width: 768px) {
  .bank {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.bank__card {
  background: hsl(var(--card));
  padding: 2rem;
}
@media (min-width: 1024px) {
  .bank__card {
    padding: 2.5rem;
  }
}
.bank__rows {
  margin-top: 1.5rem;
}
.bank__rows div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid hsl(var(--border));
  padding-block: 0.75rem;
  font-size: 0.875rem;
}
.bank__rows dt {
  color: hsl(var(--muted-foreground));
}
.bank__rows dd {
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 85svh;
  display: flex;
  align-items: flex-end;
  color: hsl(var(--secondary-foreground));
}
.page-hero__media {
  position: absolute;
  inset: 0;
}
.page-hero__media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  animation: slow-zoom 12s var(--ease) forwards;
}
.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--image-scrim);
}
.page-hero__body {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 9rem;
  padding-bottom: 4rem;
}
@media (min-width: 1024px) {
  .page-hero__body {
    padding-bottom: 5.5rem;
  }
}
.page-hero__title {
  margin-top: 1.75rem;
  max-width: 48rem;
}
.page-hero__lede {
  margin-top: 1.75rem;
  max-width: 36rem;
  line-height: 1.75;
  color: hsl(var(--secondary-foreground) / 0.8);
}

.timeline {
  margin-top: 4rem;
  border-top: 1px solid hsl(var(--border));
}
.timeline__row {
  display: grid;
  gap: 1rem;
  border-bottom: 1px solid hsl(var(--border));
  padding-block: 2rem;
}
@media (min-width: 768px) {
  .timeline__row {
    grid-template-columns: 10rem 1fr;
    gap: 3rem;
  }
}
.timeline__year {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  font-variant-numeric: tabular-nums;
  color: hsl(var(--primary));
}
.timeline__body {
  max-width: 42rem;
  line-height: 1.8;
  color: hsl(var(--muted-foreground));
  text-wrap: pretty;
}
.timeline__title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.375rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.value-card__icon {
  display: inline-flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--primary));
}
.value-card__icon svg {
  height: 1.125rem;
  width: 1.125rem;
}

.roles {
  margin-top: 4rem;
  border-top: 1px solid hsl(var(--border));
}
.roles__row {
  display: grid;
  gap: 1rem;
  border-bottom: 1px solid hsl(var(--border));
  padding-block: 2rem;
  transition: background-color 0.5s var(--ease);
}
@media (min-width: 768px) {
  .roles__row {
    grid-template-columns: 4rem 1fr 1.2fr;
    gap: 2.5rem;
    align-items: start;
  }
}
.roles__row:hover {
  background: hsl(var(--muted) / 0.5);
}
.roles__title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}
.roles__body {
  line-height: 1.8;
  color: hsl(var(--muted-foreground));
  text-wrap: pretty;
}

.notfound {
  display: flex;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem;
}

.events {
  display: grid;
  gap: 6rem;
}
@media (min-width: 1024px) {
  .events {
    gap: 8rem;
  }
}

.event {
  display: grid;
  gap: 1.5rem;
  border-top: 1px solid hsl(var(--border));
  padding-top: 2rem;
}
@media (min-width: 1024px) {
  .event {
    grid-template-columns: 10rem 1fr;
    gap: 4rem;
  }
}
.event__date {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  font-variant-numeric: tabular-nums;
  color: hsl(var(--primary));
  margin-top: 0.75rem;
}
.event__place {
  margin-top: 0.75rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--muted-foreground));
}
.event__summary {
  margin-top: 1.5rem;
  max-width: 42rem;
  line-height: 1.85;
  color: hsl(var(--muted-foreground));
  text-wrap: pretty;
}
.event__photos {
  margin-top: 2.5rem;
  display: grid;
  gap: 1px;
  background: hsl(var(--border));
}
@media (min-width: 640px) {
  .event__photos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.event__video {
  margin-top: 2.5rem;
  max-width: 48rem;
}
.event__video figcaption {
  margin-top: 0.75rem;
}

.embed {
  position: relative;
  aspect-ratio: 16/9;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--secondary));
}
.embed iframe {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  border: 0;
}
