:root {
  --ink: #17211e;
  --ink-soft: #4f5d58;
  --forest: #173b32;
  --forest-dark: #0d2923;
  --forest-light: #275448;
  --cream: #f6f0e6;
  --paper: #fbfaf6;
  --white: #ffffff;
  --coral: #ff7657;
  --coral-dark: #e95d3f;
  --sage: #c7d2c5;
  --line: rgba(23, 33, 30, 0.15);
  --shadow: 0 24px 80px rgba(15, 44, 36, 0.14);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1240px, calc(100% - 48px));
}

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

html {
  overflow-x: clip;
  background: var(--forest-dark);
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  scrollbar-color: var(--forest-light) var(--forest-dark);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-track {
  background: var(--forest-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--forest-light);
  border: 2px solid var(--forest-dark);
  border-radius: 999px;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

::selection {
  color: var(--white);
  background: var(--forest-light);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 16px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest);
  border-radius: 8px;
  transform: translateY(-200%);
  transition: transform 180ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--forest-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: #dfe9e5;
}

.announcement {
  position: relative;
  z-index: 21;
  color: #dbe6e2;
  background: var(--forest-dark);
  font-size: 0.75rem;
}

.announcement__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
}

.announcement a {
  color: var(--white);
}

.announcement a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  color: var(--white);
  background: var(--forest);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: box-shadow 250ms ease, background 250ms ease;
}

.site-header.is-scrolled {
  background: rgba(23, 59, 50, 0.92);
  box-shadow: 0 14px 45px rgba(2, 19, 15, 0.2);
  backdrop-filter: blur(18px);
}

.header__inner {
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  align-items: center;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  width: 216px;
}

.brand img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 38px;
  font-size: 0.88rem;
  font-weight: 500;
}

.desktop-nav a,
.header__donate {
  position: relative;
}

.desktop-nav a::after,
.header__donate::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.header__donate:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  font-size: 0.88rem;
  font-weight: 600;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.menu-button span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  --hero-edge-offset: calc((100vw - min(1240px, calc(100vw - 48px))) / -2);
  position: relative;
  min-height: calc(100svh - 120px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 83% 16%, rgba(255, 118, 87, 0.2), transparent 24%),
    radial-gradient(circle at 54% 84%, rgba(131, 173, 159, 0.14), transparent 32%),
    var(--forest);
}

.hero__glow {
  position: absolute;
  top: -260px;
  right: -210px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.018), 0 0 0 160px rgba(255, 255, 255, 0.012);
  animation: hero-glow 9s ease-in-out infinite alternate;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 32px;
  min-height: calc(100svh - 190px);
  padding-top: 50px;
  padding-bottom: 36px;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 30px 0 0;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 5.8vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.82;
}

.hero h1 em,
.intro h2 em,
.editorial h2 em,
.closing h2 em {
  color: var(--coral);
  font-weight: 400;
}

.hero__lede {
  max-width: 610px;
  margin: 28px 0 0;
  color: #cfdbd7;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.72;
}

.hero__actions,
.closing__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 24px;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--coral {
  color: var(--forest-dark);
  background: var(--coral);
}

.button--coral:hover {
  background: #ff8c72;
}

.button--outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button--outline:hover {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.button--cream {
  color: var(--forest-dark);
  background: var(--cream);
}

.button--ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
}

.button--ghost:hover {
  color: var(--forest);
  background: var(--white);
}

.button--dark {
  color: var(--white);
  background: var(--forest);
}

.text-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  cursor: pointer;
  text-align: left;
  background: transparent;
  border: 0;
}

.text-play__icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  padding-left: 3px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.text-play:hover .text-play__icon {
  color: var(--forest);
  background: var(--white);
  transform: scale(1.06);
}

.text-play span:last-child {
  display: grid;
  gap: 2px;
}

.text-play strong {
  font-size: 0.86rem;
}

.text-play small {
  color: #a9bcb5;
  font-size: 0.72rem;
}

.hero__facts {
  display: flex;
  gap: 46px;
  margin: 30px 0 0;
}

.hero__facts div {
  padding-left: 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.hero__facts dt {
  margin-bottom: 3px;
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1;
}

.hero__facts dd {
  margin: 0;
  color: #9fb4ad;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__slides {
  position: relative;
  min-height: calc(100svh - 120px);
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  margin: 0;
  padding-bottom: 92px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 800ms ease, visibility 0s linear 800ms;
}

.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 800ms ease;
}

.hero__slide > .shell {
  position: relative;
  z-index: 2;
}

.hero__slide--welcome .hero__content {
  max-width: 660px;
}

.hero__slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 7s ease-out;
}

.hero__slide--brochure.is-active .hero__slide-bg {
  transform: scale(1);
}

.hero__slide-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(9, 32, 26, 0.94) 0%, rgba(9, 32, 26, 0.76) 34%, rgba(9, 32, 26, 0.4) 64%, rgba(9, 32, 26, 0.16) 100%),
    linear-gradient(0deg, rgba(9, 32, 26, 0.55), transparent 46%);
}

.hero__slide-caption {
  max-width: 640px;
  padding: 58px 0;
}

.hero__slide-caption h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.hero__slide-lede {
  max-width: 500px;
  margin: 24px 0 0;
  color: #d8e2de;
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.66;
}

.hero__slide-controls {
  position: absolute;
  z-index: 6;
  bottom: 86px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 9px;
  width: var(--shell);
  transform: translateX(-50%);
}

.hero__slide-controls button {
  width: 9px;
  height: 9px;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.42);
  border: 0;
  border-radius: 999px;
  transition: width 240ms ease, background 240ms ease;
}

.hero__slide-controls button.is-active {
  width: 30px;
  background: var(--coral);
}

.hero__slide-controls button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.hero__collage {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: min(72%, 470px);
  max-height: 760px;
  object-fit: contain;
  transform: translateY(-50%);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.28));
}

.hero__collage--left {
  right: auto;
  left: calc(-50vw - 48px);
}

.hero__collage--right {
  right: calc(var(--hero-edge-offset) - 8px);
  left: auto;
}

.hero__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hero__orbit--one {
  width: 530px;
  height: 530px;
  animation: orbit-breathe 10s ease-in-out infinite;
}

.hero__orbit--two {
  width: 670px;
  height: 670px;
  animation: orbit-breathe 13s ease-in-out -4s infinite reverse;
}

.wave-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.wave-large i {
  width: 2px;
  height: 12px;
  background: currentColor;
  border-radius: 2px;
}

.hero__footer {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 24px;
  width: var(--shell);
  padding-bottom: 28px;
  color: #9eb1aa;
  font-size: 0.65rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero__line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.intro {
  padding: 72px 0;
  background: var(--cream);
}

.intro__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.intro h2,
.section-heading h2,
.editorial h2,
.closing h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.4vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.intro h2 {
  max-width: 850px;
}

.intro__copy > p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.collection {
  background: var(--paper);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 38px;
}

.section-heading h2 {
  max-width: 780px;
  font-size: clamp(3rem, 4.8vw, 5rem);
}

.section-heading > p {
  max-width: 380px;
  margin: 0 0 8px;
  color: var(--ink-soft);
}

.section-heading--center {
  justify-content: center;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.filter {
  padding: 10px 16px;
  cursor: pointer;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.filter:hover,
.filter.is-active {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.brochure-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 24px;
}

.brochure-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 1 / 0.756;
  overflow: hidden;
  background: var(--forest);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(22, 38, 33, 0.13);
  transition: opacity 220ms ease, transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.brochure-card::after {
  position: absolute;
  z-index: 1;
  inset: 24% 0 0;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(8, 29, 23, 0) 0%,
    rgba(8, 29, 23, 0.18) 22%,
    rgba(8, 29, 23, 0.78) 58%,
    rgba(8, 29, 23, 0.98) 100%
  );
  pointer-events: none;
}

.brochure-card:hover {
  transform: translateY(-7px);
}

.brochure-card.is-filtered-out,
.brochure-card.is-optional:not(.is-visible) {
  display: none;
}

.card__image-button {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  background: #e8e7df;
  border: 0;
  border-radius: inherit;
  box-shadow: none;
}

.card__image-button::after {
  display: none;
}

.card__image-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.brochure-card:hover .card__image-button img {
  transform: scale(1.04);
}

.brochure-card:hover .card__image-button::after,
.card__image-button:focus-visible::after {
  opacity: 1;
}

.card__preview-label {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  color: var(--white);
  background: rgba(8, 29, 23, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.brochure-card:hover .card__preview-label,
.card__image-button:focus-visible .card__preview-label {
  opacity: 1;
  transform: translateY(0);
}

.card__body {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 0 16px;
  padding: 88px 22px 20px;
  color: var(--white);
  pointer-events: none;
}

.card__meta {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.card__body h3 {
  grid-column: 1 / -1;
  display: -webkit-box;
  min-height: 0;
  margin: 11px 0 9px;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2vw, 2.15rem);
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1.11;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card__body p {
  display: -webkit-box;
  min-height: calc(1.45em * 3);
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.collection__more {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.editorial {
  position: relative;
  isolation: isolate;
  min-height: 680px;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.editorial__grid {
  position: relative;
  z-index: 2;
  display: block;
  min-height: 680px;
}

.editorial__content {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 650px;
  min-height: 680px;
  flex-direction: column;
  justify-content: center;
  padding: 84px 0;
}

.editorial h2 {
  max-width: 610px;
  font-size: clamp(3.7rem, 5.4vw, 6rem);
}

.editorial__content > p:not(.eyebrow) {
  max-width: 540px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.editorial blockquote {
  max-width: 520px;
  margin: 28px 0 24px;
  padding: 22px 0 22px 26px;
  color: var(--ink);
  border-left: 2px solid var(--coral);
  font-family: var(--serif);
  font-size: 1.65rem;
  font-style: italic;
  line-height: 1.25;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
  font-weight: 700;
}

.inline-link:hover {
  border-color: var(--coral);
}

.editorial .inline-link {
  color: var(--coral-dark);
  border-bottom-color: rgba(23, 33, 30, 0.25);
}

.steps {
  background: var(--cream);
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 42px 0 0;
  padding: 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 26px;
  list-style: none;
}

.step {
  position: relative;
  min-height: 280px;
  padding: 28px;
  background: var(--paper);
}

.step__number {
  color: #83908c;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.step__icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 30px 0 22px;
  place-items: center;
  color: var(--forest);
  background: #e4ece6;
  border-radius: 50%;
  font-size: 1.2rem;
}

.step:nth-child(2) .step__icon {
  color: #5b2b20;
  background: #ffded5;
}

.step:nth-child(3) .step__icon {
  color: #5a4c2e;
  background: #ede1c2;
}

.step h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.step p {
  max-width: 270px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.closing {
  position: relative;
  padding: 104px 0;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  background: var(--forest);
}

.closing__content {
  position: relative;
  z-index: 2;
}

.closing .eyebrow {
  justify-content: center;
}

.closing h2 {
  max-width: 970px;
  margin-inline: auto;
  font-size: clamp(4rem, 7vw, 7.6rem);
}

.closing__content > p:not(.eyebrow) {
  max-width: 620px;
  margin: 34px auto 0;
  color: #c8d7d2;
  font-size: 1.08rem;
}

.closing__actions {
  justify-content: center;
}

.closing__ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.closing__ring--one {
  top: -280px;
  left: -180px;
  width: 680px;
  height: 680px;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.014), 0 0 0 160px rgba(255, 255, 255, 0.01);
}

.closing__ring--two {
  right: -130px;
  bottom: -340px;
  width: 760px;
  height: 760px;
  box-shadow: 0 0 0 80px rgba(255, 118, 87, 0.03);
}

.site-footer {
  padding: 82px 0 30px;
  background: var(--paper);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.8fr);
  gap: 60px;
  padding-bottom: 70px;
}

.footer__brand img {
  width: 230px;
}

.footer__brand p {
  max-width: 300px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.footer__column h2 {
  margin: 0 0 13px;
  color: var(--ink);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer__column p,
.footer__column address {
  margin: 0;
  font-style: normal;
}

.footer__column a:hover {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  color: #78847f;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
}

.brochure-dialog {
  width: min(1120px, calc(100% - 32px));
  max-height: calc(100svh - 40px);
  padding: 0;
  overflow: hidden auto;
  background: var(--paper);
  border: 0;
  border-radius: 28px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.4);
}

.brochure-dialog::backdrop {
  background: rgba(7, 25, 20, 0.78);
  backdrop-filter: blur(8px);
}

.dialog__close {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  cursor: pointer;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  border-radius: 50%;
  font-size: 1.5rem;
}

.dialog__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 610px;
}

.dialog__image-wrap {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #e7e6de;
}

.dialog__image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.dialog__image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(8, 23, 19, 0) 36%, rgba(8, 23, 19, 0.18) 52%, rgba(8, 23, 19, 0.8) 100%);
  pointer-events: none;
}

.dialog__cover-copy {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 48px;
  color: var(--white);
}

.dialog__cover-copy .eyebrow {
  margin-bottom: 14px;
  color: var(--white);
}

.dialog__cover-copy h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 3.5vw, 3.65rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.97;
}

.dialog__cover-copy > p:not(.eyebrow) {
  max-width: 30rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.dialog__content {
  align-self: center;
  padding: 58px 54px;
}

.dialog__pdf {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin-bottom: 18px;
  padding: 10px 14px;
  color: var(--forest);
  border: 1px solid rgba(23, 59, 50, 0.28);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.dialog__pdf:hover,
.dialog__pdf:focus-visible {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.dialog__chapter-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 26px;
}

.dialog__chapter-toolbar > span:first-child {
  display: grid;
  gap: 2px;
}

.dialog__chapter-toolbar strong {
  font-size: 0.82rem;
}

.dialog__chapter-toolbar small {
  color: var(--ink-soft);
  font-size: 0.64rem;
}

.autoplay-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 700;
  white-space: nowrap;
}

.autoplay-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.autoplay-toggle__track {
  position: relative;
  width: 36px;
  height: 21px;
  background: #c9cec9;
  border-radius: 999px;
  transition: background 180ms ease;
}

.autoplay-toggle__track i {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 15px;
  height: 15px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease;
}

.autoplay-toggle input:checked + .autoplay-toggle__track {
  background: var(--forest);
}

.autoplay-toggle input:checked + .autoplay-toggle__track i {
  transform: translateX(15px);
}

.autoplay-toggle input:focus-visible + .autoplay-toggle__track {
  outline: 3px solid rgba(255, 107, 78, 0.35);
  outline-offset: 2px;
}

.dialog__chapters {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.chapter-row,
.dialog__full-play {
  --audio-fill: 0%;
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  text-align: left;
}

.dialog__full-play {
  cursor: pointer;
}

.chapter-row::before,
.dialog__full-play::before {
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 0;
  width: var(--audio-fill);
  content: "";
  background: rgba(255, 107, 78, 0.2);
}

.chapter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 38px;
  align-items: center;
  column-gap: 14px;
  min-height: 58px;
  padding: 8px 9px 8px 17px;
  cursor: ew-resize;
  color: var(--ink);
  background: #f4f2eb;
  border: 1px solid rgba(23, 59, 50, 0.12);
  border-radius: 14px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.chapter-row:hover,
.chapter-row:focus-within,
.chapter-row.is-active {
  border-color: rgba(23, 59, 50, 0.45);
}

.chapter-row:hover {
  transform: translateY(-1px);
}

.chapter-row__heading {
  grid-column: 1;
  grid-row: 1;
  overflow: hidden;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chapter-row__time {
  grid-column: 2;
  grid-row: 1;
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.chapter-row__icon,
.dialog__full-play-icon {
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.chapter-row__icon::before,
.dialog__full-play-icon::before,
.audio-player__play::before {
  width: 0;
  height: 0;
  content: "";
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
  transform: translateX(1px);
}

.chapter-row__icon.is-paused::before,
.dialog__full-play-icon.is-paused::before,
.audio-player__play.is-paused::before {
  width: 3px;
  height: 11px;
  background: currentColor;
  border: 0;
  box-shadow: 6px 0 0 currentColor;
  transform: translateX(-3px);
}

.chapter-row__play {
  position: relative;
  z-index: 3;
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 50%;
}

.chapter-row__icon {
  width: 38px;
  height: 38px;
  padding-left: 2px;
  color: var(--white);
  background: var(--forest);
  font-size: 0.72rem;
}

.chapter-row__scrubber {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  appearance: none;
  background: transparent;
  opacity: 0;
}

.dialog__full-play {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  align-items: center;
  gap: 16px;
  min-height: 66px;
  margin-top: 12px;
  padding: 10px 12px 10px 19px;
  color: var(--white);
  background: var(--forest);
  border: 0;
  border-radius: 15px;
}

.dialog__full-play::before {
  background: rgba(255, 107, 78, 0.55);
}

.dialog__full-play > span:first-child {
  position: relative;
  display: grid;
  gap: 3px;
}

.dialog__full-play strong {
  font-size: 0.9rem;
}

.dialog__full-play small {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.65rem;
  font-variant-numeric: tabular-nums;
}

.dialog__full-play-icon {
  position: relative;
  width: 42px;
  height: 42px;
  padding-left: 2px;
  color: var(--forest);
  background: var(--coral);
  font-size: 0.76rem;
}

.dialog__content .button {
  margin-top: 22px;
}

.dialog__note {
  margin-top: 20px;
  font-size: 0.72rem;
}

.audio-player {
  position: fixed;
  z-index: 50;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: auto minmax(180px, 0.75fr) auto minmax(280px, 1.8fr) auto auto;
  align-items: center;
  gap: 18px;
  min-height: 86px;
  padding: 12px 18px 12px 12px;
  color: var(--white);
  background: rgba(11, 39, 32, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(calc(100% + 34px));
  transition: opacity 260ms ease, transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  backdrop-filter: blur(20px);
}

.audio-player.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.audio-player__art {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--coral);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 13px;
}

.wave-large {
  gap: 3px;
}

.wave-large i:nth-child(2),
.wave-large i:nth-child(6) {
  height: 21px;
}

.wave-large i:nth-child(3),
.wave-large i:nth-child(5) {
  height: 29px;
}

.wave-large i:nth-child(4) {
  height: 38px;
}

.audio-player.is-playing .wave-large i {
  animation: pulse-wave 800ms ease-in-out infinite alternate;
}

.audio-player.is-playing .wave-large i:nth-child(2n) {
  animation-delay: -400ms;
}

.audio-player__info {
  display: grid;
  min-width: 0;
}

.audio-player__info small {
  color: #9cb1aa;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.audio-player__info strong {
  overflow: hidden;
  font-family: var(--serif);
  font-size: 1.14rem;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.audio-player__play,
.audio-player__close {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
}

.audio-player__play {
  padding-left: 2px;
  color: var(--forest-dark);
  background: var(--coral);
  border: 0;
}

.audio-player__close {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 1.25rem;
}

.audio-player__timeline {
  min-width: 0;
}

.audio-player__timeline input {
  width: 100%;
  height: 4px;
  cursor: pointer;
  accent-color: var(--coral);
}

.audio-player__time {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  color: #9cb1aa;
  font-size: 0.62rem;
}

.speed-control select {
  padding: 8px 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.speed-control option {
  color: var(--ink);
  background: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse-wave {
  from { transform: scaleY(0.55); }
  to { transform: scaleY(1); }
}

@keyframes orbit-breathe {
  0%, 100% { opacity: 0.65; transform: translate(-50%, -50%) scale(0.985); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.025); }
}

@keyframes hero-glow {
  from { opacity: 0.58; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1.025); }
}

@media (max-width: 1080px) {
  .header__inner {
    grid-template-columns: 220px 1fr auto;
  }

  .desktop-nav {
    gap: 24px;
  }

  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .hero__visual {
    min-height: 590px;
  }

  .hero__facts {
    gap: 28px;
  }

  .brochure-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 52px 24px;
  }

  .footer__grid {
    grid-template-columns: 1.2fr 0.8fr 0.9fr;
  }

  .footer__column:last-child {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 680px);
  }

  .section {
    padding: 80px 0;
  }

  .announcement__inner span:first-child {
    display: none;
  }

  .announcement__inner {
    justify-content: center;
  }

  .header__inner {
    grid-template-columns: 1fr auto;
    min-height: 74px;
  }

  .brand {
    width: 190px;
  }

  .desktop-nav,
  .header__donate {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    z-index: 19;
    inset: 110px 0 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 28px 24px 70px;
    overflow-y: auto;
    color: var(--white);
    background: var(--forest-dark);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
    visibility: hidden;
  }

  .mobile-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .mobile-nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--serif);
    font-size: 2rem;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 70px;
  }

  .hero__content {
    padding: 20px 0 10px;
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(3.4rem, 12vw, 5.2rem);
  }

  .hero__visual {
    min-height: 620px;
  }

  .hero__collage {
    width: min(70%, 430px);
    transform: translateY(-50%);
  }

  .hero__collage--left {
    right: auto;
    left: 0;
  }

  .hero__collage--right {
    right: -8%;
    left: auto;
  }

  .intro__grid,
  .editorial__grid {
    grid-template-columns: 1fr;
  }

  .intro__grid {
    gap: 16px;
  }

  .intro__copy > p {
    margin-left: 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .editorial__visual {
    min-height: 0;
  }

  .editorial__content {
    min-height: 560px;
    padding: 72px 0;
  }

  .steps__grid {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: 250px;
  }

  .step__icon {
    margin: 26px 0 18px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__column:last-child {
    grid-column: auto;
  }

  .dialog__grid {
    grid-template-columns: 1fr;
  }

  .dialog__image-wrap {
    height: 420px;
    min-height: 0;
  }

  .dialog__cover-copy {
    padding: 32px;
  }

  .dialog__content {
    padding: 48px 34px;
  }

  .audio-player {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
  }

  .audio-player__timeline {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .speed-control {
    display: none;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .dialog__image-wrap {
    height: 340px;
  }

  .section {
    padding: 72px 0;
  }

  .hero__grid {
    padding-top: 52px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .hero__lede {
    margin-top: 28px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero__facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .hero__facts div {
    padding-left: 9px;
  }

  .hero__facts dt {
    font-size: 1.15rem;
  }

  .hero__facts dd {
    font-size: 0.57rem;
    line-height: 1.3;
  }

  .hero__visual {
    min-height: 540px;
  }

  .hero__orbit--one {
    width: 380px;
    height: 380px;
  }

  .hero__orbit--two {
    width: 500px;
    height: 500px;
  }

  .hero__footer p:first-child {
    display: none;
  }

  .intro h2,
  .section-heading h2,
  .editorial h2,
  .closing h2 {
    font-size: clamp(3.2rem, 15vw, 4.4rem);
  }

  .brochure-grid {
    grid-template-columns: 1fr;
  }

  .card__body p {
    min-height: calc(1.45em * 3);
  }

  .card__body h3 {
    min-height: 0;
  }

  .editorial__visual {
    min-height: 0;
  }

  .editorial__visual img {
    left: 0;
    width: 100%;
  }

  .step {
    padding: 28px;
  }

  .closing {
    padding: 110px 0;
  }

  .closing__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer__brand,
  .footer__column:last-child {
    grid-column: auto;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .audio-player {
    right: 10px;
    bottom: 10px;
    left: 10px;
    grid-template-columns: 48px minmax(0, 1fr) 42px 36px;
    gap: 10px;
    padding: 10px;
    border-radius: 16px;
  }

  .audio-player__art {
    width: 48px;
    height: 48px;
  }

  .audio-player__play {
    width: 42px;
    height: 42px;
  }

  .audio-player__close {
    width: 36px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
