:root {
  --ink: #17201b;
  --ink-soft: #4e5b53;
  --paper: #f3f1e9;
  --paper-deep: #e8e8dc;
  --moss: #263c2f;
  --moss-dark: #101a15;
  --lichen: #aeb99e;
  --weather: #9ca49f;
  --line: rgba(23, 32, 27, 0.2);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --display: "Poppins", Arial, sans-serif;
  --page-pad: clamp(22px, 5vw, 78px);
  --reading: 720px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--moss-dark);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

body.threshold-entry-locked {
  height: 100svh;
  overflow: hidden;
}

body.threshold-entry-locked .threshold-entry {
  position: relative;
  z-index: 200;
}

body.dialog-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

img,
video {
  display: block;
  width: 100%;
}

button {
  border: 0;
}

.cursor-dot,
.cursor-ring {
  display: none;
}

@media (pointer: fine) {
  body,
  a,
  button,
  summary,
  input,
  textarea,
  select {
    cursor: none;
  }

  .cursor-dot,
  .cursor-ring {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    display: block;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: width 250ms var(--ease), height 250ms var(--ease), opacity 220ms ease, border-color 250ms ease;
  }

  .cursor-dot {
    width: 8px;
    height: 8px;
    background: #71865f;
  }

  .cursor-ring {
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(126, 151, 105, 0.72);
    transition: left 90ms linear, top 90ms linear, width 250ms var(--ease), height 250ms var(--ease), opacity 220ms ease, border-color 250ms ease;
  }

  .cursor-dot.is-visible,
  .cursor-ring.is-visible {
    opacity: 1;
  }

  .cursor-dot.is-hovering {
    width: 16px;
    height: 16px;
    opacity: 0.72;
  }

  .cursor-ring.is-hovering {
    width: 56px;
    height: 56px;
    border-color: rgba(126, 151, 105, 0.38);
  }
}

.lang-fr,
.lang-nl {
  display: none !important;
}

html[lang|="fr"] .lang-en,
html[lang|="nl"] .lang-en {
  display: none !important;
}

html[lang|="fr"] .lang-fr,
html[lang|="nl"] .lang-nl {
  display: inline !important;
}

html[lang|="fr"],
html[lang|="nl"] {
  hyphens: auto;
}

.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;
}

h1,
h2,
.movement-lead,
.doors-explainer,
.doorway-intro {
  text-wrap: balance;
  overflow-wrap: break-word;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 90;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 16px var(--page-pad);
  color: #fff;
  transition: color 500ms ease, background 500ms ease, border-color 500ms ease;
}

.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: rgba(16, 26, 21, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  backdrop-filter: blur(14px);
  transition: opacity 500ms ease;
}

.site-header.is-scrolled::before,
.menu-open .site-header::before {
  opacity: 1;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.site-brand img {
  width: 39px;
  height: 39px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.site-brand span {
  display: grid;
  line-height: 1.15;
}

.site-brand strong {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.site-brand small {
  margin-top: 5px;
  font-family: var(--display);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  gap: 13px;
  align-items: center;
}

.language-switch.wh-lang-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0;
  color: rgba(251, 248, 241, 0.92);
  background: rgba(251, 248, 241, 0.08);
  border: 1px solid rgba(251, 248, 241, 0.16);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.language-switch.wh-lang-toggle .language-current {
  display: inline-flex;
  min-width: 62px;
  min-height: 38px;
  padding: 0 8px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.language-chevron {
  font-size: 0.9rem;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 180ms ease;
}

.language-switch.wh-lang-toggle.is-open .language-chevron {
  transform: rotate(180deg) translateY(1px);
}

.language-switch.wh-lang-toggle .language-current:hover,
.language-switch.wh-lang-toggle .language-current:focus-visible,
.language-switch.wh-lang-toggle.is-open .language-current {
  color: #fff;
  background: rgba(73, 96, 63, 0.78);
  border-radius: 999px;
  opacity: 1;
}

.language-switch.wh-lang-toggle .language-current:hover,
.language-switch.wh-lang-toggle .language-current:focus-visible {
  transform: translateY(-1px);
}

.language-options {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  min-width: 100%;
  padding: 5px;
  gap: 3px;
  background: rgba(16, 26, 21, 0.94);
  border: 1px solid rgba(251, 248, 241, 0.18);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.language-switch.wh-lang-toggle.is-open .language-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-options button {
  min-width: 52px;
  min-height: 30px;
  padding: 0 10px;
  color: rgba(251, 248, 241, 0.74);
  background: transparent;
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.language-options button:hover,
.language-options button:focus-visible,
.language-options button.is-active,
.language-options button.active {
  color: #fff;
  background: #49603f;
}

.language-options button:hover,
.language-options button:focus-visible {
  transform: translateY(-1px);
}

.menu-button,
.menu-close {
  display: inline-grid;
  width: 48px;
  height: 48px;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  place-items: center;
}

.menu-button-lines,
.menu-button-lines::before,
.menu-button-lines::after {
  display: block;
  width: 25px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 350ms var(--ease);
}

.menu-button-lines::before {
  transform: translateY(-7px);
}

.menu-button-lines::after {
  transform: translateY(6px);
}

.menu-button:hover .menu-button-lines::before {
  transform: translate(-4px, -7px);
}

.menu-button:hover .menu-button-lines::after {
  transform: translate(4px, 6px);
}

.site-menu {
  position: fixed;
  z-index: 100;
  inset: 0;
  color: #f2f0e8;
  background: var(--moss-dark);
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  transition: opacity 550ms var(--ease), visibility 550ms;
}

.site-menu[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.site-menu::before {
  position: absolute;
  inset: 0 0 0 72%;
  content: "";
  background:
    linear-gradient(90deg, var(--moss-dark), rgba(16, 26, 21, 0.12)),
    url("threshold-hero-forest.jpg") 50% 52% / cover;
  opacity: 0.5;
}

.menu-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  padding: 17px var(--page-pad);
}

.menu-close {
  position: relative;
}

.menu-close::before,
.menu-close::after {
  position: absolute;
  width: 27px;
  height: 1px;
  background: currentColor;
  content: "";
}

.menu-close::before {
  transform: rotate(45deg);
}

.menu-close::after {
  transform: rotate(-45deg);
}

.menu-close:hover {
  transform: rotate(90deg);
  transition: transform 450ms var(--ease);
}

.menu-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.24fr);
  gap: clamp(42px, 6vw, 95px);
  align-items: start;
  width: min(1380px, calc(100% - 2 * var(--page-pad)));
  min-height: calc(100svh - 112px);
  margin: 0 auto;
  padding: 2vh 0 7vh;
}

.menu-kicker,
.eyebrow {
  margin: 0 0 22px;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-main {
  min-width: 0;
}

.menu-voice {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: end;
  width: 100%;
  margin: clamp(34px, 5vh, 58px) 0 0;
  padding: 20px 0 0;
  color: #f2f0e8;
  border-top: 1px solid rgba(242, 240, 232, 0.28);
  text-decoration: none;
}

.menu-voice > span:first-child {
  display: grid;
}

.menu-voice strong {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-weight: 350;
  line-height: 1;
}

.menu-voice small {
  margin-top: 5px;
  color: rgba(242, 240, 232, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.menu-voice > span:last-child {
  font-size: 1.2rem;
  transition: transform 300ms var(--ease);
}

.menu-voice:hover > span:last-child,
.menu-voice:focus-visible > span:last-child {
  transform: translate(5px, -5px);
}

.menu-worlds {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 46px);
}

.menu-world {
  padding-top: 18px;
  border-top: 1px solid rgba(242, 240, 232, 0.25);
}

.menu-door-heading {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  color: #f2f0e8;
  text-decoration: none;
}

.menu-door-heading > span:first-child {
  display: grid;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  font-weight: 360;
  line-height: 1.06;
}

.menu-door-heading small {
  margin-bottom: 8px;
  color: var(--lichen);
  font-family: var(--sans);
  font-size: 0.59rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-door-arrow {
  color: rgba(242, 240, 232, 0.58);
  font-size: 1rem;
  flex: 0 0 auto;
  transition: color 250ms ease, transform 250ms var(--ease);
}

.menu-door-heading:hover .menu-door-arrow,
.menu-door-heading:focus-visible .menu-door-arrow {
  color: var(--lichen);
  transform: translateY(4px);
}

.menu-world > p {
  min-height: 42px;
  margin: 12px 0 20px;
  color: rgba(242, 240, 232, 0.53);
  font-size: 0.72rem;
  line-height: 1.45;
}

.menu-world-link {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(90px, 1fr);
  gap: 10px;
  align-items: baseline;
  width: 100%;
  margin: 7px 0;
  padding: 4px 0;
  color: rgba(242, 240, 232, 0.92);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}

.menu-world-link small {
  color: rgba(242, 240, 232, 0.56);
  font-size: 0.62rem;
  font-weight: 450;
  line-height: 1.45;
}

.menu-world-link,
.menu-secondary a {
  transition: color 250ms ease, transform 250ms var(--ease);
}

.menu-world-link:hover,
.menu-world-link:focus-visible,
.menu-secondary a:hover,
.menu-secondary a:focus-visible {
  color: var(--lichen);
  transform: translateX(4px);
}

.menu-secondary {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px 0 4px clamp(22px, 3vw, 46px);
  border-left: 1px solid rgba(242, 240, 232, 0.18);
}

.menu-secondary a {
  width: fit-content;
  color: rgba(242, 240, 232, 0.78);
  font-size: 0.76rem;
  line-height: 1.4;
  text-underline-offset: 5px;
}

.menu-secondary .menu-kicker {
  margin-bottom: 8px;
}

.menu-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(242, 240, 232, 0.18);
}

.threshold-main {
  position: relative;
}

.opening-forest {
  position: relative;
  color: #fff;
  background: #0b110e;
  overflow: clip;
}

.opening-forest-media {
  position: sticky;
  z-index: 0;
  top: 0;
  height: 100svh;
  margin-bottom: -100svh;
  overflow: hidden;
}

.opening-forest-media video,
.opening-forest-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.opening-forest-media video {
  object-fit: cover;
  filter: saturate(0.78) contrast(1.03);
}

.opening-forest-shade {
  background:
    radial-gradient(circle at 50% 46%, rgba(10, 15, 12, 0.04), rgba(6, 10, 8, 0.48) 92%),
    linear-gradient(180deg, rgba(6, 10, 8, 0.25), rgba(6, 10, 8, 0.12) 45%, rgba(6, 10, 8, 0.55));
}

.threshold-entry {
  position: relative;
  z-index: 1;
  display: grid;
  height: 100svh;
  min-height: 620px;
  color: #fff;
  background: transparent;
  overflow: hidden;
  place-items: center;
}

.threshold-entry-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(1100px, calc(100% - 2 * var(--page-pad)));
  opacity: 0;
  text-align: center;
}

.threshold-entry-actions {
  display: grid;
  gap: 18px;
  width: min(360px, 100%);
  margin-top: clamp(38px, 6vh, 62px);
  opacity: 0;
}

.threshold-entry-action {
  display: grid;
  justify-items: center;
}

.threshold-entry h1 {
  margin: 0;
  opacity: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 7.4vw, 8.2rem);
  font-weight: 800;
  line-height: 0.95;
  text-shadow: 0 1.5rem 4.5rem rgba(0, 0, 0, 0.64);
}

.threshold-entry-button {
  display: inline-grid;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  color: rgba(251, 248, 241, 0.88);
  background: transparent;
  border: 1px solid rgba(251, 248, 241, 0.3);
  border-radius: 999px;
  font-family: var(--display);
  font-size: clamp(0.76rem, 1vw, 0.94rem);
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.15;
  text-transform: uppercase;
  cursor: pointer;
  place-items: center;
  transition: transform 450ms var(--ease), border-color 350ms ease, background 350ms ease, box-shadow 350ms ease;
}

.threshold-entry-button-primary {
  background: rgba(251, 248, 241, 0.025);
  border-color: rgba(251, 248, 241, 0.12);
  box-shadow: none;
}

.threshold-entry-button-secondary {
  background: rgba(251, 248, 241, 0.025);
  border-color: rgba(251, 248, 241, 0.1);
}

.threshold-entry-button:hover,
.threshold-entry-button:focus-visible {
  border-color: rgba(251, 248, 241, 0.34);
  background: rgba(251, 248, 241, 0.12);
  outline: none;
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(4, 9, 6, 0.24);
}

.threshold-entry-line {
  width: 78px;
  height: 1px;
  margin-top: 34px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.72);
}

.threshold-entry.is-ready .threshold-entry-copy {
  opacity: 1;
}

.threshold-entry.is-ready h1 {
  animation: threshold-entry-reveal 1400ms var(--ease) forwards;
}

.threshold-entry.is-ready .threshold-entry-actions {
  animation: threshold-entry-reveal 1400ms 420ms var(--ease) forwards;
}

.threshold-entry.is-ready .threshold-entry-line {
  animation: threshold-entry-reveal 1400ms 840ms var(--ease) forwards;
}

.threshold-entry:not(.is-ready) .threshold-entry-button {
  pointer-events: none;
}

@keyframes threshold-entry-reveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.threshold-entry.is-leaving .threshold-entry-copy {
  opacity: 0;
  transform: translateY(-18vh);
  transition: opacity 850ms ease, transform 1.15s var(--ease);
}

.threshold-entry-locked .site-header {
  opacity: 0;
  pointer-events: none;
}

.legacy-anchor {
  position: absolute;
  width: 1px;
  height: 1px;
  margin-top: -90px;
  overflow: hidden;
  pointer-events: none;
}

.arrival {
  position: relative;
  z-index: 1;
  height: 310svh;
  color: #fff;
  background: transparent;
}

.arrival-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.arrival-brand {
  position: absolute;
  top: 18vh;
  left: 50%;
  margin: 0;
  font-size: 0.69rem;
  font-weight: 650;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  transform: translateX(-50%);
  opacity: 0.8;
}

.noise-field {
  position: absolute;
  inset: 0;
  opacity: var(--noise-opacity, 1);
  transition: opacity 80ms linear;
}

.noise-word {
  position: absolute;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.67rem, 1.1vw, 0.88rem);
  font-weight: 560;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(var(--noise-shift, 0));
}

.noise-word:nth-child(1) { top: 30%; left: 8%; }
.noise-word:nth-child(2) { top: 20%; left: 22%; }
.noise-word:nth-child(3) { top: 24%; right: 12%; }
.noise-word:nth-child(4) { top: 60%; right: 8%; }
.noise-word:nth-child(5) { bottom: 18%; left: 13%; }
.noise-word:nth-child(6) { bottom: 26%; right: 31%; }

.arrival-question,
.arrival-answer {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  padding: var(--page-pad);
  text-align: center;
  place-items: center;
}

.arrival-question {
  opacity: var(--question-opacity, 1);
}

.arrival-answer {
  opacity: var(--answer-opacity, 0);
}

.arrival-question p,
.arrival-answer h1 {
  width: min(980px, 92vw);
  margin: 0;
  font-family: var(--serif);
  font-weight: 360;
  line-height: 1.04;
}

.arrival-question p {
  font-size: clamp(2.3rem, 6.3vw, 6.6rem);
}

.arrival-answer h1 {
  font-size: clamp(2.25rem, 6vw, 6rem);
}

.arrival-answer .arrival-cue {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--sans);
  font-size: clamp(0.82rem, 1.2vw, 1.04rem);
  font-weight: 450;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.scroll-mark {
  position: absolute;
  z-index: 2;
  bottom: 34px;
  left: 50%;
  width: 1px;
  height: 54px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
  transform: translateX(-50%);
}

.scroll-mark::after {
  position: absolute;
  inset: 0;
  content: "";
  background: #fff;
  transform: translateY(-100%);
  animation: scroll-line 2.6s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateY(-100%); }
  45%, 55% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

.recognition {
  min-height: 150svh;
  padding: 30vh var(--page-pad);
  background: var(--paper);
}

.recognition-inner {
  width: min(1050px, 100%);
  margin: 0 auto;
}

.recognition h2 {
  max-width: 920px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 7.4vw, 7.6rem);
  font-weight: 350;
  line-height: 0.98;
}

.recognition h2 span {
  color: #798078;
}

.recognition h2 > .lang-en,
.recognition h2 > .lang-fr,
.recognition h2 > .lang-nl {
  color: var(--ink);
}

.recognition h2 > span > span {
  display: block;
  width: min(760px, 82%);
  margin-top: 0.13em;
  margin-left: auto;
  color: #798078;
  text-align: right;
}

.recognition p {
  max-width: 580px;
  margin: clamp(55px, 9vw, 130px) 0 0 auto;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.8;
}

.recognition .recognition-quote {
  display: flex;
  gap: 10px;
  align-items: baseline;
  max-width: 540px;
  margin: clamp(120px, 18vw, 240px) 0 0;
  color: rgba(78, 91, 83, 0.68);
  font-family: var(--serif);
  font-size: clamp(0.8rem, 1.15vw, 0.98rem);
  font-style: italic;
  line-height: 1.55;
}

.recognition-quote cite {
  flex: 0 0 auto;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.remembering {
  display: grid;
  min-height: 100svh;
  padding: 18vh var(--page-pad);
  color: #f4f2e9;
  background: var(--moss-dark);
  place-items: center;
}

.remembering blockquote {
  width: min(1060px, 100%);
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 7vw, 7rem);
  font-weight: 350;
  line-height: 1.04;
  text-align: center;
  opacity: var(--sentence-progress, 0);
  transform: translateY(var(--sentence-shift, 72px));
  transition: opacity 80ms linear, transform 80ms linear;
}

.remembering .remembering-second {
  display: block;
  margin-top: 0.16em;
  color: var(--lichen);
  opacity: var(--sentence-secondary, 0);
  transform: translateY(var(--sentence-secondary-shift, 34px));
  transition: opacity 80ms linear, transform 80ms linear;
}

.nature-story {
  position: relative;
  height: 320svh;
  color: #fff;
  background: #0b110e;
}

.nature-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.nature-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

.nature-layer img,
.nature-layer video {
  height: 100%;
  object-fit: cover;
}

.nature-layer::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(5, 9, 7, 0.36), rgba(5, 9, 7, 0.68));
}

.nature-stage[data-scene="0"] .nature-layer:nth-child(1),
.nature-stage[data-scene="1"] .nature-layer:nth-child(2),
.nature-stage[data-scene="2"] .nature-layer:nth-child(3) {
  opacity: 1;
}

.nature-copy {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  padding: var(--page-pad);
  place-items: center;
}

.nature-line {
  position: absolute;
  width: min(930px, calc(100% - 2 * var(--page-pad)));
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 6.5vw, 6.6rem);
  font-weight: 350;
  line-height: 1.04;
  text-align: center;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 900ms var(--ease);
}

.nature-stage[data-scene="0"] .nature-line:nth-child(1),
.nature-stage[data-scene="1"] .nature-line:nth-child(2),
.nature-stage[data-scene="2"] .nature-line:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
}

.darkness {
  display: grid;
  min-height: 115svh;
  padding: 20vh var(--page-pad);
  color: #f2f0e8;
  background: #080c0a;
  place-items: center;
}

.darkness p {
  width: min(930px, 100%);
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 7.2vw, 7.2rem);
  font-weight: 350;
  line-height: 1.03;
  text-align: center;
  opacity: var(--sentence-progress, 0);
  transform: translateY(var(--sentence-shift, 72px));
  transition: opacity 80ms linear, transform 80ms linear;
}

.darkness .darkness-soft {
  color: #a5ada7;
}

.returning {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1.15fr);
  gap: clamp(55px, 9vw, 150px);
  align-items: start;
  min-height: 180svh;
  padding: 28vh var(--page-pad);
  background: var(--paper);
}

.returning-copy {
  position: sticky;
  top: 24vh;
  padding-bottom: 20vh;
}

.returning h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6.8vw, 7rem);
  font-weight: 350;
  line-height: 0.98;
}

.returning p {
  max-width: 520px;
  margin: 38px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.returning-image {
  min-height: 120svh;
  overflow: hidden;
  border-radius: 7.2rem 1.7rem 6.5rem 2.2rem;
  clip-path: inset(0 round 7.2rem 1.7rem 6.5rem 2.2rem);
}

.returning-image img,
.returning-image video {
  height: 100%;
  min-height: 120svh;
  object-fit: cover;
}

.wild-bridge {
  min-height: 92svh;
  padding: clamp(18vh, 25vw, 30vh) var(--page-pad);
  color: #f3f1e9;
  background: #111a14;
}

.wild-bridge-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.8fr);
  gap: clamp(60px, 12vw, 190px);
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.wild-bridge .eyebrow {
  margin-bottom: 30px;
}

.wild-bridge h2,
.wild-bridge h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 350;
  line-height: 1.02;
}

.wild-bridge h2 {
  max-width: 900px;
  font-size: clamp(2.8rem, 5.5vw, 5.8rem);
}

.wild-bridge p {
  max-width: 540px;
  margin: 30px 0 0;
  color: rgba(243, 241, 233, 0.7);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.75;
}

.wild-bridge-fragments {
  font-family: var(--display);
  font-size: clamp(0.82rem, 1.1vw, 0.98rem) !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.6 !important;
  text-transform: uppercase;
}

.wild-bridge-response {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 1fr);
  gap: clamp(42px, 8vw, 130px);
  min-height: 112svh;
  padding: 20vh var(--page-pad);
  color: var(--ink);
  background: var(--paper-deep);
  overflow: hidden;
  place-items: center;
}

.wild-bridge-response video,
.wild-bridge-response-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.wild-bridge-response video {
  object-fit: cover;
  opacity: 0.16;
  filter: saturate(0.55) contrast(0.9);
}

.wild-bridge-response-shade {
  background: rgba(244, 241, 231, 0.82);
}

.wild-bridge-response-image {
  position: relative;
  z-index: 1;
  width: min(470px, 100%);
  aspect-ratio: 0.82;
  margin: 0;
  padding: 10px;
  background: rgba(255, 253, 247, 0.72);
  border: 1px solid rgba(35, 50, 39, 0.18);
  border-radius: 5.8rem 1.5rem 4.8rem 2.1rem;
  box-shadow: 0 22px 60px rgba(38, 51, 42, 0.12);
  overflow: hidden;
}

.wild-bridge-response-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4.9rem 1rem 4rem 1.5rem;
}

.wild-bridge-response-copy {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  text-align: left;
}

.wild-bridge-response-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6.8vw, 7rem);
  font-weight: 350;
  line-height: 1;
}

.wild-bridge-response-copy p:last-child {
  max-width: 620px;
  margin: 38px auto 0;
  margin-left: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.8;
}

.wild-threshold {
  position: relative;
  display: grid;
  min-height: 112svh;
  padding: 20vh var(--page-pad);
  color: #f3f1e9;
  background: var(--moss-dark);
  overflow: hidden;
  place-items: center;
}

.wild-threshold video,
.wild-threshold-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.wild-threshold video {
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06);
}

.wild-threshold-shade {
  background: linear-gradient(180deg, rgba(7, 11, 9, 0.4), rgba(7, 11, 9, 0.62));
}

.wild-threshold-copy {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  text-align: center;
}

.wild-threshold h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 800;
  line-height: 0.98;
}

.wild-threshold p {
  margin: 24px 0 0;
  font-size: clamp(0.9rem, 1.65vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wild-threshold-line {
  display: block;
  width: 88px;
  height: 1px;
  margin: 36px auto 0;
  background: rgba(255, 255, 255, 0.78);
}

.wild-threshold-arrow {
  display: block;
  padding: 10px 14px;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 999px;
  margin-top: 16px;
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  animation: threshold-arrow 2.4s ease-in-out infinite;
}

.wild-threshold-arrow:hover,
.wild-threshold-arrow:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  outline: 1px solid rgba(255, 255, 255, 0.35);
}

@keyframes threshold-arrow {
  0%, 100% { opacity: 0.45; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(7px); }
}

.doors-intro {
  display: grid;
  min-height: 72svh;
  padding: 20vh var(--page-pad) 13vh;
  scroll-margin-top: 20px;
  color: var(--ink);
  background: var(--paper);
  text-align: center;
  place-content: center;
}

.doors-intro h2 {
  max-width: 920px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(3rem, 6.8vw, 7rem);
  font-weight: 350;
  line-height: 1;
}

.doors-explainer {
  max-width: 760px;
  margin: 44px auto 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.8;
}

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

.movement {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: start;
  min-height: 170svh;
  padding: 24vh var(--page-pad);
}

.movement:nth-child(even) {
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  background: var(--paper-deep);
}

.movement:nth-child(even) .movement-media {
  order: 2;
}

.movement:nth-child(even) .movement-copy {
  order: 1;
}

.movement-media {
  position: sticky;
  top: 13vh;
  height: 74svh;
  overflow: hidden;
}

.movement-media {
  border-radius: 7.2rem 1.7rem 6.5rem 2.2rem;
  clip-path: inset(0 round 7.2rem 1.7rem 6.5rem 2.2rem);
}

.movement-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease), filter 1.4s ease;
}

.movement-connection .movement-media img {
  object-position: 50% 70%;
}

.movement:hover .movement-media img {
  transform: scale(1.025);
  filter: saturate(1.06);
}

.movement-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 80svh;
  padding: 9vh 0 18vh;
}

.movement-number {
  margin: 0 0 28px;
  color: #768077;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.movement h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 7.4vw, 8rem);
  font-weight: 360;
  line-height: 0.92;
}

.movement-lead {
  max-width: 580px;
  margin: 45px 0 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.7vw, 2.55rem);
  font-weight: 360;
  line-height: 1.25;
}

.movement-note {
  max-width: 520px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.movement-worlds {
  display: grid;
  gap: 0;
  margin-top: 58px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.movement-worlds button {
  position: relative;
  display: grid;
  grid-template-columns: minmax(155px, max-content) minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  color: var(--ink);
  background: transparent;
  font-size: clamp(0.9rem, 1.15vw, 1.05rem);
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 1px solid var(--line);
}

.movement-worlds button small {
  color: var(--ink-soft);
  font-size: clamp(0.78rem, 1vw, 0.93rem);
  font-weight: 450;
  letter-spacing: 0.015em;
  line-height: 1.45;
  text-transform: none;
}

.movement-worlds button::after,
.horizon-link::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 450ms var(--ease);
}

.movement-worlds button:hover::after,
.movement-worlds button:focus-visible::after,
.horizon-link:hover::after,
.horizon-link:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.movement-worlds button > span[aria-hidden="true"] {
  font-size: 1rem;
  font-weight: 400;
  transition: transform 350ms var(--ease);
}

.movement-worlds button:hover > span[aria-hidden="true"],
.movement-worlds button:focus-visible > span[aria-hidden="true"] {
  transform: translate(3px, -3px);
}

.events-hub {
  padding: clamp(5.5rem, 9vw, 9rem) var(--page-pad) clamp(5.5rem, 9vw, 9rem);
  color: var(--ink);
  background: #edf1e8;
  border-top: 1px solid rgba(29, 40, 31, 0.12);
}

.events-hub-inner {
  width: min(1380px, 100%);
  margin: 0 auto;
}

.events-hub-header {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
}

.events-hub-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.4vw, 4.8rem);
  font-weight: 350;
  line-height: 0.98;
}

.events-hub-intro {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.events-hub-calendar-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-height: 48px;
  padding: 0 0 10px;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: gap 300ms var(--ease), color 300ms ease;
}

.events-hub-calendar-link:hover,
.events-hub-calendar-link:focus-visible {
  gap: 22px;
  color: var(--moss-dark);
}

.events-hub-groups {
  overflow: hidden;
}

.homepage-event-carousel {
  position: relative;
}

.homepage-event-viewport {
  overflow: hidden;
  border: 1px solid rgba(29, 40, 31, 0.14);
  border-radius: 1.8rem 0.55rem 1.55rem 0.7rem;
  background: rgba(251, 248, 241, 0.62);
}

.homepage-event-track {
  display: flex;
  width: 100%;
  transform: translateX(0);
  will-change: transform;
}

.homepage-event-slide {
  display: grid;
  grid-template-columns: minmax(230px, 40%) minmax(0, 1fr);
  flex: 0 0 100%;
  min-height: 310px;
}

.homepage-event-slide-image {
  display: block;
  min-height: 310px;
  overflow: hidden;
  background: var(--paper-deep);
}

.homepage-event-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 1.2s ease;
}

.homepage-event-slide-image:hover img,
.homepage-event-slide-image:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.05);
}

.homepage-event-slide-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 38px clamp(25px, 5vw, 72px);
}

.homepage-event-slide-door,
.homepage-event-slide-date,
.homepage-event-slide-type {
  margin: 0;
  color: var(--moss-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
}

.homepage-event-slide-date {
  margin-top: 8px;
  color: var(--ink-soft);
  font-weight: 650;
}

.homepage-event-slide-title {
  max-width: 700px;
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.9rem);
  font-weight: 350;
  line-height: 0.98;
}

.homepage-event-slide-type {
  margin-top: 17px;
  color: var(--ink-soft);
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: none;
}

.homepage-event-slide-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 28px;
  padding-bottom: 6px;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: gap 250ms var(--ease), color 250ms ease;
}

.homepage-event-slide-link::after {
  content: "↗";
}

.homepage-event-slide-link:hover,
.homepage-event-slide-link:focus-visible {
  gap: 16px;
  color: var(--moss-dark);
}

.homepage-event-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-height: 54px;
}

.homepage-event-control,
.homepage-event-dot {
  appearance: none;
  cursor: pointer;
  border: 0;
  background: transparent;
}

.homepage-event-control {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  border: 1px solid rgba(29, 40, 31, 0.2);
  border-radius: 50%;
  font-size: 1rem;
  transition: color 250ms ease, background 250ms ease;
}

.homepage-event-control:hover,
.homepage-event-control:focus-visible {
  color: var(--paper);
  background: var(--moss-dark);
}

.homepage-event-dots {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 5px;
}

.homepage-event-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  background: rgba(29, 40, 31, 0.24);
  border-radius: 50%;
  transition: width 250ms ease, background 250ms ease;
}

.homepage-event-dot.is-active,
.homepage-event-dot:hover,
.homepage-event-dot:focus-visible {
  width: 20px;
  background: var(--moss-dark);
}

.homepage-event-empty {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.horizon {
  padding: 28vh var(--page-pad) 30vh;
  color: #f2f0e8;
  background: var(--moss-dark);
}

.horizon-header {
  width: min(920px, 100%);
  margin: 0 auto clamp(100px, 16vw, 210px);
  text-align: center;
}

.horizon-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-weight: 350;
  line-height: 1;
}

.horizon-header p {
  max-width: 590px;
  margin: 40px auto 0;
  color: rgba(242, 240, 232, 0.64);
}

.worlds-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1240px, 100%);
  margin: 0 auto;
  border-top: 1px solid rgba(242, 240, 232, 0.18);
}

.world-group {
  padding: 42px clamp(20px, 3vw, 44px) 0;
  border-right: 1px solid rgba(242, 240, 232, 0.18);
}

.world-group:first-child {
  padding-left: 0;
}

.world-group:last-child {
  padding-right: 0;
  border-right: 0;
}

.world-group > span {
  color: var(--lichen);
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.world-group nav {
  display: grid;
  margin-top: 25px;
}

.horizon-link {
  position: relative;
  width: fit-content;
  margin: 6px 0;
  color: #f2f0e8;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 2.1rem);
  font-weight: 360;
  text-decoration: none;
}

.closing {
  position: relative;
  display: grid;
  min-height: 115svh;
  padding: 20vh var(--page-pad);
  color: #fff;
  background: #101a15;
  place-items: center;
  overflow: hidden;
}

.closing-image {
  position: absolute;
  inset: 0;
  background: url("threshold-return-river.jpg") center / cover;
}

.closing-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.closing-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(8, 13, 10, 0.35), rgba(8, 13, 10, 0.72));
}

.closing-copy {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  text-align: center;
}

.closing h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7.8vw, 8rem);
  font-weight: 350;
  line-height: 0.98;
}

.closing .closing-second {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.closing p {
  margin: 50px 0 0;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.founder-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.8vw, 7.2rem);
  font-weight: 350;
  line-height: 0.98;
}

.founder-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}

.founder-section {
  position: relative;
  min-height: 135svh;
  padding: 24vh var(--page-pad);
  color: #f1efe7;
  background: #17231c;
  overflow: hidden;
}

.founder-section::before {
  position: absolute;
  top: 13%;
  right: -8vw;
  width: min(44vw, 650px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(174, 185, 158, 0.12);
  border-radius: 47% 53% 45% 55%;
  transform: rotate(-13deg);
}

.founder-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(65px, 11vw, 170px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.founder-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 0.84;
  border-radius: 6rem 1.2rem 5rem 2rem;
  clip-path: inset(0 round 6rem 1.2rem 5rem 2rem);
}

.founder-media img {
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(0.74) contrast(1.04);
}

.founder-copy h2 {
  color: #f1efe7;
}

.founder-copy > p:not(.eyebrow) {
  color: rgba(241, 239, 231, 0.68);
}

.founder-copy .founder-credentials {
  padding-top: 24px;
  color: var(--lichen);
  border-top: 1px solid rgba(241, 239, 231, 0.16);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.65;
  text-transform: uppercase;
}

.founder-link {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  margin-top: 48px;
  padding-bottom: 7px;
  color: #f1efe7;
  border-bottom: 1px solid currentColor;
  font-size: 0.73rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.founder-link span:last-child {
  transition: transform 300ms var(--ease);
}

.founder-link:hover span:last-child,
.founder-link:focus-visible span:last-child {
  transform: translate(5px, -5px);
}

.wild-voice-section {
  padding: 24vh var(--page-pad) 20vh;
  color: var(--ink);
  background: #e7ebdf;
}

.wild-voice-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: center;
  width: min(1320px, 100%);
  margin: 0 auto;
}

.wild-voice-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 7.2vw, 7.8rem);
  font-weight: 350;
  line-height: 0.92;
}

.wild-voice-copy h2 small {
  display: block;
  max-width: 520px;
  margin-top: 28px;
  color: #566057;
  font-family: var(--sans);
  font-size: clamp(0.92rem, 1.35vw, 1.12rem);
  font-weight: 560;
  line-height: 1.45;
}

.wild-voice-intro {
  max-width: 600px;
  margin: 42px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.85;
}

.wild-voice-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  margin-top: 48px;
  padding-bottom: 8px;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.wild-voice-link span:last-child {
  transition: transform 300ms var(--ease);
}

.wild-voice-link:hover span:last-child,
.wild-voice-link:focus-visible span:last-child {
  transform: translate(5px, -5px);
}

.wild-voice-media {
  position: relative;
  height: min(78svh, 820px);
  margin: 0;
  overflow: hidden;
  border-radius: 1.8rem 8rem 2.4rem 6rem;
  clip-path: inset(0 round 1.8rem 8rem 2.4rem 6rem);
}

.wild-voice-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(8, 13, 10, 0.58));
}

.wild-voice-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease), filter 1.4s ease;
}

.wild-voice-media:hover img {
  transform: scale(1.025);
  filter: saturate(1.05);
}

.wild-voice-media figcaption {
  position: absolute;
  z-index: 1;
  right: clamp(25px, 4vw, 58px);
  bottom: clamp(25px, 4vw, 52px);
  left: clamp(25px, 4vw, 58px);
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 2.1rem);
  font-weight: 350;
}

.wild-voice-offerings {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1320px, 100%);
  margin: clamp(90px, 12vh, 145px) auto 0;
  border-top: 1px solid rgba(29, 40, 31, 0.24);
}

.wild-voice-offerings a {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 190px;
  padding: 28px 38px 22px 0;
  color: var(--ink);
  border-right: 1px solid rgba(29, 40, 31, 0.16);
  text-decoration: none;
}

.wild-voice-offerings a:not(:first-child) {
  padding-left: 28px;
}

.wild-voice-offerings a:last-child {
  border-right: 0;
}

.wild-voice-offerings strong {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.08;
}

.wild-voice-offerings a > span:not(.lang-fr):not(.lang-en),
.wild-voice-offerings .lang-en,
.wild-voice-offerings .lang-fr {
  margin-top: 18px;
  color: #687269;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.wild-voice-offerings i {
  position: absolute;
  right: 18px;
  bottom: 24px;
  font-style: normal;
  transition: transform 300ms var(--ease);
}

.wild-voice-offerings a:hover i,
.wild-voice-offerings a:focus-visible i {
  transform: translate(5px, -5px);
}

.contact {
  padding: 22vh var(--page-pad) 12vh;
  color: var(--ink);
  background: var(--paper);
}

.doorway-dialog {
  width: min(1020px, calc(100% - 34px));
  max-height: min(88svh, 850px);
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(4, 8, 6, 0.34);
  overflow: visible;
}

.doorway-dialog::backdrop {
  background: rgba(7, 12, 9, 0.78);
  backdrop-filter: blur(10px);
}

.doorway-dialog[open] {
  animation: doorway-fade-in 420ms var(--ease) both;
}

.doorway-dialog[open] .doorway-dialog-shell {
  animation: doorway-shell-in 500ms var(--ease) both;
}

@media (pointer: fine) {
  body.dialog-open > .cursor-dot,
  body.dialog-open > .cursor-ring,
  body:not(.dialog-open) .doorway-dialog .cursor-dot,
  body:not(.dialog-open) .doorway-dialog .cursor-ring {
    opacity: 0 !important;
  }
}

@keyframes doorway-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes doorway-shell-in {
  from { transform: translateY(22px) scale(0.985); }
  to { transform: translateY(0) scale(1); }
}

.doorway-dialog-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.58fr);
  min-height: 660px;
  max-height: min(88svh, 850px);
  overflow: auto;
  background: var(--paper);
  border-radius: inherit;
}

.doorway-close {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.doorway-close::before,
.doorway-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 350ms var(--ease);
}

.doorway-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.doorway-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.doorway-close:hover::before {
  transform: translate(-50%, -50%) rotate(135deg);
}

.doorway-close:hover::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.doorway-visual {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--moss-dark);
}

.doorway-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(8, 13, 10, 0.08), rgba(8, 13, 10, 0.48));
}

.doorway-visual img,
.doorway-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.doorway-dialog[data-doorway="brotherhood"] .doorway-visual img {
  object-position: 62% 70%;
}

.doorway-dialog:hover .doorway-visual img,
.doorway-dialog:hover .doorway-visual video {
  transform: scale(1.025);
}

.doorway-dialog-content {
  padding: clamp(56px, 6vw, 82px) clamp(32px, 5vw, 68px) clamp(42px, 5vw, 64px);
}

.doorway-dialog-copy {
  max-width: 720px;
}

.doorway-kicker {
  margin: 0 0 18px;
  color: #6f7b70;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.doorway-dialog h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.3rem);
  font-weight: 350;
  line-height: 0.98;
}

.doorway-intro {
  max-width: 660px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.doorway-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  margin-top: clamp(40px, 5vw, 62px);
  border-top: 1px solid var(--line);
}

.doorway-option {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 235px;
  padding: 30px clamp(18px, 2.5vw, 30px) 24px;
  color: inherit;
  text-decoration: none;
  border-right: 1px solid var(--line);
  transition: background 350ms ease;
}

.doorway-options[data-count="4"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.doorway-options[data-count="4"] .doorway-option-primary {
  grid-column: 1 / -1;
  grid-template-columns: minmax(190px, 0.72fr) minmax(0, 1.28fr) auto;
  grid-template-rows: auto;
  gap: 28px;
  align-items: center;
  min-height: 0;
  padding: 25px 0;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.doorway-options[data-count="4"] .doorway-option-primary p {
  margin: 0;
}

.doorway-options[data-count="4"] .doorway-option-primary span {
  white-space: nowrap;
}

.doorway-dialog[data-doorway="brotherhood"] .doorway-dialog-content {
  padding-top: 42px;
  padding-bottom: 34px;
}

.doorway-dialog[data-doorway="brotherhood"] h2 {
  font-size: clamp(2.9rem, 5.2vw, 4.9rem);
}

.doorway-dialog[data-doorway="brotherhood"] .doorway-intro {
  margin-top: 18px;
}

.doorway-dialog[data-doorway="brotherhood"] .doorway-options {
  margin-top: 28px;
}

.doorway-dialog[data-doorway="brotherhood"] .doorway-option {
  min-height: 170px;
  padding-top: 23px;
  padding-bottom: 20px;
}

.doorway-dialog[data-doorway="brotherhood"] .doorway-option-primary {
  min-height: 0;
  padding-top: 18px;
  padding-bottom: 18px;
}

.doorway-dialog[data-doorway="brotherhood"] .doorway-option p {
  margin-top: 12px;
  margin-bottom: 18px;
  font-size: 0.82rem;
}

.doorway-option:first-child {
  padding-left: 0;
}

.doorway-option:last-child {
  padding-right: 0;
  border-right: 0;
}

.doorway-option:hover,
.doorway-option:focus-visible {
  background: rgba(174, 185, 158, 0.14);
}

.doorway-option strong {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  font-weight: 400;
  line-height: 1.08;
}

.doorway-option p {
  margin: 18px 0 28px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.6;
}

.doorway-option span {
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.doorway-option span::after {
  margin-left: 8px;
  content: "↗";
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(70px, 12vw, 180px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.contact h2 {
  max-width: 500px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6.3rem);
  font-weight: 350;
  line-height: 1;
}

.contact-intro p {
  max-width: 470px;
  margin: 34px 0;
  color: var(--ink-soft);
}

.text-link {
  position: relative;
  display: inline-block;
  color: var(--ink);
  font-size: 0.77rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 28px;
  align-content: start;
}

.contact-form p[hidden] {
  display: none;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.field {
  display: grid;
  gap: 9px;
}

.field label {
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  transition: border-color 250ms ease;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--ink);
}

.submit-button {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  justify-self: start;
  padding: 13px 0 9px;
  color: var(--ink);
  background: transparent;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
}

.submit-button span:last-child {
  font-size: 1.15rem;
  transition: transform 300ms var(--ease);
}

.submit-button:hover span:last-child {
  transform: translateX(6px);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  padding: 50px var(--page-pad);
  color: rgba(242, 240, 232, 0.68);
  background: var(--moss-dark);
  border-top: 1px solid rgba(242, 240, 232, 0.1);
}

.site-footer strong {
  display: block;
  color: #f2f0e8;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 450;
}

.site-footer p {
  margin: 4px 0 0;
  font-size: 0.74rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
  justify-content: flex-end;
}

.site-footer a {
  font-size: 0.72rem;
  text-underline-offset: 4px;
}

.ambient-toggle {
  position: fixed;
  z-index: 70;
  bottom: 24px;
  left: 24px;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 9px 12px;
  color: #fff;
  background: rgba(12, 19, 15, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 350ms ease, transform 350ms var(--ease), background 250ms ease;
}

.ambient-toggle.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ambient-toggle:hover {
  background: rgba(12, 19, 15, 0.82);
}

.sound-bars {
  display: flex;
  gap: 2px;
  align-items: center;
  height: 13px;
}

.sound-bars i {
  display: block;
  width: 1px;
  height: 5px;
  background: currentColor;
}

.ambient-toggle[aria-pressed="true"] .sound-bars i:nth-child(1) { animation: sound 1.1s ease-in-out infinite; }
.ambient-toggle[aria-pressed="true"] .sound-bars i:nth-child(2) { animation: sound 1.1s 0.2s ease-in-out infinite; }
.ambient-toggle[aria-pressed="true"] .sound-bars i:nth-child(3) { animation: sound 1.1s 0.4s ease-in-out infinite; }

@keyframes sound {
  50% { height: 13px; }
}

.sound-label {
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 900ms ease, transform 1.1s var(--ease);
}

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

@media (max-width: 900px) {
  .site-menu::before {
    inset: 0;
    opacity: 0.2;
  }

  .menu-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
    overflow-y: auto;
    padding: 0 0 60px;
  }

  .menu-worlds {
    gap: 24px;
  }

  .menu-secondary {
    padding: 30px 0 0;
    border-top: 1px solid rgba(242, 240, 232, 0.18);
    border-left: 0;
  }

  .returning,
  .movement,
  .movement:nth-child(even),
  .founder-inner,
  .wild-voice-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .events-hub-header {
    align-items: start;
    gap: 24px;
  }

  .events-hub-calendar-link {
    width: fit-content;
  }

  .homepage-event-slide {
    grid-template-columns: minmax(190px, 38%) minmax(0, 1fr);
  }

  .wild-bridge-inner {
    grid-template-columns: 1fr;
    gap: 12vh;
  }

  .wild-bridge-response {
    grid-template-columns: 1fr;
    min-height: 100svh;
    padding: 14vh var(--page-pad);
  }

  .wild-bridge-response-image {
    width: min(390px, 78vw);
  }

  .wild-bridge-response-copy {
    text-align: center;
  }

  .wild-bridge-response-copy p:last-child {
    margin-right: auto;
  }

  .wild-voice-media {
    height: min(76svh, 720px);
  }

  .wild-voice-offerings {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wild-voice-offerings a:nth-child(2) {
    border-right: 0;
  }

  .wild-voice-offerings a:nth-child(n + 3) {
    border-top: 1px solid rgba(29, 40, 31, 0.16);
  }

  .founder-section {
    min-height: auto;
    padding-block: 20vh;
  }

  .founder-inner {
    width: min(680px, 100%);
  }

  .founder-media {
    width: min(500px, 100%);
  }

  .returning {
    min-height: auto;
    padding-block: 22vh;
  }

  .returning-copy {
    position: relative;
    top: auto;
    padding: 0;
  }

  .returning-image {
    min-height: 78svh;
  }

  .returning-image img,
  .returning-image video {
    min-height: 78svh;
  }

  .movement,
  .movement:nth-child(even) {
    min-height: auto;
    padding-block: 18vh;
  }

  .movement:nth-child(even) .movement-media,
  .movement:nth-child(even) .movement-copy {
    order: initial;
  }

  .movement-media {
    position: relative;
    top: auto;
    height: min(72svh, 760px);
  }

  .movement-copy {
    min-height: auto;
    padding: 8vh 0 0;
  }

  .worlds-map {
    grid-template-columns: 1fr;
  }

  .doorway-options {
    grid-template-columns: 1fr;
  }

  .doorway-options[data-count="4"] {
    grid-template-columns: 1fr;
  }

  .doorway-options[data-count="4"] .doorway-option-primary {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
    padding: 28px 0;
  }

  .doorway-options[data-count="4"] .doorway-option-primary p {
    margin: 18px 0 28px;
  }

  .doorway-dialog-shell {
    grid-template-columns: minmax(170px, 0.55fr) minmax(0, 1.45fr);
  }

  .doorway-option,
  .doorway-option:first-child,
  .doorway-option:last-child {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .doorway-option:last-child {
    border-bottom: 0;
  }

  .world-group,
  .world-group:first-child,
  .world-group:last-child {
    padding: 38px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(242, 240, 232, 0.18);
  }

  .world-group:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 8px;
    min-height: 70px;
    padding-block: 11px;
  }

  .site-brand {
    min-width: 0;
    gap: 9px;
  }

  .site-brand span {
    display: grid;
    min-width: 0;
    max-width: 130px;
  }

  .site-brand img {
    width: 36px;
    height: 36px;
  }

  .site-brand strong {
    font-size: 0.7rem;
  }

  .site-brand small {
    max-width: 130px;
    font-size: 0.43rem;
    letter-spacing: 0.08em;
    line-height: 1.25;
    white-space: normal;
  }

  .header-actions {
    gap: 5px;
    flex: 0 0 auto;
  }

  .language-switch.wh-lang-toggle {
    min-width: 0;
  }

  .language-switch.wh-lang-toggle .language-current {
    min-width: 54px;
    min-height: 40px;
    padding-inline: 7px;
    font-size: 0.58rem;
  }

  .language-options {
    top: calc(100% + 6px);
  }

  .language-options button { min-height: 40px; }

  .menu-button { width: 44px; height: 44px; }

  .events-hub {
    padding-block: 5.5rem;
  }

  .events-hub-header {
    display: block;
    margin-bottom: 26px;
  }

  .events-hub-calendar-link {
    margin-top: 18px;
  }

  .homepage-event-slide {
    display: block;
    min-height: 0;
  }

  .homepage-event-slide-image {
    min-height: 190px;
    height: 190px;
  }

  .homepage-event-slide-copy {
    min-height: 245px;
    padding: 25px 22px 28px;
  }

  .homepage-event-slide-title {
    font-size: clamp(2rem, 10vw, 3.4rem);
  }

  .ambient-toggle {
    right: 14px;
    bottom: 14px;
    left: auto;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
  }

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

  .menu-inner {
    width: calc(100% - 44px);
    gap: 34px;
  }

  .menu-voice {
    margin: 30px 0 0;
  }

  .menu-voice strong {
    font-size: 2rem;
  }

  .menu-worlds {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .menu-world > p {
    min-height: 0;
  }

  .arrival {
    height: 270svh;
  }

  .threshold-entry {
    min-height: 560px;
  }

  .threshold-entry h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .threshold-entry-actions {
    grid-template-columns: 1fr;
    width: min(360px, 100%);
    gap: 9px;
  }

  .threshold-entry-button {
    min-height: 46px;
    padding: 0.7rem 1.1rem;
  }

  .arrival-brand {
    top: 16vh;
    width: 100%;
    text-align: center;
  }

  .recognition {
    min-height: 130svh;
    padding-block: 24vh;
  }

  .recognition h2,
  .returning h2,
  .movement h2,
  .closing h2,
  .founder-copy h2,
  .wild-voice-copy h2,
  .contact h2 {
    overflow-wrap: anywhere;
  }

  html[lang|="fr"] .wild-threshold h2,
  html[lang|="nl"] .wild-threshold h2 {
    font-size: clamp(2.55rem, 13vw, 4.4rem);
  }

  html[lang|="nl"] .doors-intro h2,
  html[lang|="nl"] .returning h2 {
    font-size: clamp(2.65rem, 13vw, 4.8rem);
  }

  .recognition p {
    margin-top: 70px;
  }

  .recognition h2 > span > span {
    width: 88%;
  }

  .recognition .recognition-quote {
    display: block;
  }

  .recognition-quote cite {
    display: block;
    margin-top: 8px;
  }

  .nature-story {
    height: 285svh;
  }

  .nature-line {
    width: calc(100% - 44px);
  }

  .darkness {
    min-height: 100svh;
  }

  .movement-media {
    height: 66svh;
  }

  .movement-worlds {
    margin-top: 45px;
  }

  .wild-threshold {
    min-height: 100svh;
  }

  .doors-intro {
    min-height: 62svh;
    padding-block: 15vh 10vh;
  }

  .doorway-dialog {
    width: calc(100% - 18px);
    max-height: calc(100svh - 18px);
  }

  .doorway-dialog-shell {
    display: block;
    min-height: 0;
    max-height: calc(100svh - 18px);
  }

  .doorway-visual {
    height: 28svh;
    min-height: 210px;
  }

  .doorway-dialog-content {
    padding: 42px 25px 30px;
  }

  .doorway-dialog h2 {
    overflow-wrap: anywhere;
  }

  .doorway-close {
    color: #fff;
    filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.6));
  }

  .horizon {
    padding-block: 22vh;
  }

  .contact {
    padding-block: 18vh 10vh;
  }

  .founder-section {
    padding-block: 16vh;
  }

  .founder-media {
    border-radius: 4.6rem 1rem 4rem 1.5rem;
    clip-path: inset(0 round 4.6rem 1rem 4rem 1.5rem);
  }

  .wild-voice-section {
    padding-block: 17vh 14vh;
  }

  .wild-voice-media {
    height: 62svh;
    min-height: 430px;
    margin-top: 74px;
    border-radius: 1.2rem 4.8rem 1.6rem 3.8rem;
    clip-path: inset(0 round 1.2rem 4.8rem 1.6rem 3.8rem);
  }

  .wild-voice-offerings {
    grid-template-columns: 1fr;
    margin-top: 75px;
  }

  .wild-voice-offerings a,
  .wild-voice-offerings a:not(:first-child) {
    min-height: 145px;
    padding: 26px 42px 22px 0;
    border-top: 1px solid rgba(29, 40, 31, 0.16);
    border-right: 0;
  }

  .wild-voice-offerings a:first-child {
    border-top: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
    align-items: start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .ambient-toggle {
    right: 14px;
    bottom: 14px;
    left: auto;
  }
}

@media (max-height: 500px) and (min-width: 621px) {
  .threshold-entry-copy {
    transform: translateY(-12px);
  }

  .threshold-entry-button {
    min-height: 44px;
    padding: 0.65rem 1rem;
  }

  .threshold-entry-line {
    margin-top: 12px;
  }
}

@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;
  }

  .arrival-image,
  .movement-media img {
    transform: none !important;
  }

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

  [data-scroll-sentence],
  .remembering .remembering-second {
    opacity: 1;
    transform: none;
  }

  .threshold-entry-copy,
  .threshold-entry h1,
  .threshold-entry-actions,
  .threshold-entry-line {
    opacity: 1;
    transform: none;
  }
}
