:root {
  --forest: #132019;
  --forest-soft: #1c2d22;
  --forest-deep: #0c1510;
  --paper: #f2eee5;
  --paper-warm: #e8dfd1;
  --clay: #b76d4d;
  --moss: #8e9e83;
  --ink: #18231c;
  --muted: #667068;
  --line-dark: rgba(24, 35, 28, .18);
  --line-light: rgba(242, 238, 229, .2);
  --page: clamp(22px, 5.2vw, 84px);
  --shell: 1440px;
  --ease: cubic-bezier(.2, .72, .16, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.entry-locked { overflow: hidden; }

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

a { color: inherit; }

button,
input,
select,
textarea { font: inherit; }

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

::selection { background: var(--clay); color: #fff; }

.section-shell {
  width: min(calc(100% - (var(--page) * 2)), var(--shell));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1200;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 11px 16px;
  background: var(--paper);
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease;
}

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

:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 5px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--moss);
  font-size: clamp(11px, .82vw, 13px);
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { text-wrap: pretty; }

h1,
h2,
h3 { margin-top: 0; }

h2 {
  margin-bottom: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(48px, 6.4vw, 100px);
  font-weight: 300;
  letter-spacing: -.045em;
  line-height: .98;
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid currentColor;
  padding: 12px 0 10px;
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .24s ease, gap .24s ease;
}

.text-link:hover,
.text-link:focus-visible { gap: 36px; color: var(--clay); }

.text-link--strong { font-weight: 800; }

.button-solid {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 22px;
  background: var(--forest);
  color: var(--paper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .24s ease, color .24s ease, transform .24s ease;
}

.button-solid:hover,
.button-solid:focus-visible { background: var(--clay); color: #fff; transform: translateY(-2px); }

/* Threshold */
.brotherhood-entry {
  position: fixed;
  z-index: 1100;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--forest-deep);
  color: #fff;
  opacity: 1;
  visibility: visible;
  transition: opacity 1.05s var(--ease), visibility 1.05s var(--ease);
}

html:not(.js) .brotherhood-entry { display: none; }
html:not(.js) body { overflow: auto; }

.brotherhood-entry.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.entry-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transform: scale(1.025);
  animation: threshold-breathe 18s ease-in-out infinite alternate;
}

.entry-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 7, .24), rgba(5, 10, 7, .08) 44%, rgba(5, 10, 7, .55)),
    radial-gradient(circle at 50% 46%, transparent 0 26%, rgba(4, 8, 5, .2) 72%, rgba(4, 8, 5, .52));
}

.entry-content {
  position: relative;
  width: min(100% - 40px, 1180px);
  display: grid;
  place-items: center;
  gap: clamp(54px, 9vh, 92px);
  text-align: center;
}

.entry-title {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 9.4vw, 148px);
  font-weight: 800;
  letter-spacing: .055em;
  line-height: .86;
  text-transform: uppercase;
  text-shadow: 0 16px 50px rgba(0, 0, 0, .28);
}

.entry-button {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .78);
  padding: 12px 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: gap .24s ease, color .24s ease;
}

.entry-button:hover,
.entry-button:focus-visible { gap: 34px; color: #e8b091; }

@keyframes threshold-breathe {
  from { transform: scale(1.025); }
  to { transform: scale(1.075); }
}

/* Header and navigation */
.site-header {
  position: fixed;
  z-index: 800;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--forest);
  transition: background .35s ease, color .35s ease, transform .35s ease;
}

body.entry-locked .site-header,
body.entry-locked .wh-lang-toggle { visibility: hidden; }

.site-header.is-scrolled,
body.nav-open .site-header {
  background: rgba(242, 238, 229, .94);
  box-shadow: 0 1px 0 rgba(24, 35, 28, .1);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(calc(100% - 48px), 1560px);
  min-height: 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  margin-inline: auto;
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

body[data-brotherhood-page="home"] .brand-mark {
  border-color: rgba(24, 35, 28, .27);
  background: rgba(24, 35, 28, .05);
}

body[data-brotherhood-page="home"] .brand-mark img { filter: none !important; }

.brand-copy strong { color: currentColor; }
.brand-copy small { color: rgba(24, 35, 28, .62); }

.menu-button {
  grid-column: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(24, 35, 28, .22);
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background .24s ease, color .24s ease, border-color .24s ease;
}

.menu-button:hover,
.menu-button:focus-visible,
body.nav-open .menu-button { border-color: var(--forest); background: var(--forest); color: var(--paper); }

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 20px;
  height: 1px;
  display: block;
  background: currentColor;
  content: "";
  transition: transform .28s ease, opacity .28s ease;
}

.menu-icon { position: relative; }
.menu-icon::before { position: absolute; top: -6px; }
.menu-icon::after { position: absolute; top: 6px; }
body.nav-open .menu-icon { background: transparent; }
body.nav-open .menu-icon::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .menu-icon::after { transform: translateY(-6px) rotate(-45deg); }

body[data-brotherhood-page="home"] .wh-lang-toggle {
  z-index: 850;
  top: 30px;
  right: max(24px, calc((100vw - 1560px) / 2 + 24px));
}

.site-navigation {
  position: fixed;
  z-index: 700;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 120px var(--page) 48px;
  overflow-y: auto;
  background: var(--forest);
  color: var(--paper);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity .4s ease, visibility .4s ease, transform .4s var(--ease);
}

body.nav-open { overflow: hidden; }
body.nav-open .site-navigation { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }

.navigation-inner {
  width: min(100%, 1240px);
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(60px, 10vw, 150px);
}

.navigation-label {
  margin: 0 0 28px;
  color: var(--moss);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.navigation-primary,
.navigation-ways { display: grid; align-content: start; }

.navigation-primary > a {
  border-top: 1px solid var(--line-light);
  padding: 14px 0;
  color: rgba(242, 238, 229, .76);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.05;
  text-decoration: none;
  transition: color .2s ease, padding-left .2s ease;
}

.navigation-primary > a:last-child { border-bottom: 1px solid var(--line-light); }
.navigation-primary > a:hover,
.navigation-primary > a:focus-visible { padding-left: 10px; color: #fff; }

.navigation-ways > a:not(.navigation-wild-hearts) {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: baseline;
  gap: 20px;
  border-top: 1px solid var(--line-light);
  padding: 14px 0;
  color: var(--paper);
  text-decoration: none;
  transition: color .2s ease, padding-left .2s ease;
}

.navigation-ways > a:nth-last-child(2) { border-bottom: 1px solid var(--line-light); }
.navigation-ways small { color: var(--moss); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.navigation-ways strong { font-size: clamp(18px, 1.8vw, 28px); font-weight: 500; }
.navigation-ways > a:hover,
.navigation-ways > a:focus-visible { padding-left: 10px; color: #fff; }

.navigation-wild-hearts {
  width: fit-content;
  margin-top: 30px;
  color: rgba(242, 238, 229, .66);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}

/* Orientation */
.home-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0 var(--page);
  background: var(--forest-deep);
  color: #fff;
}

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

.home-hero-video { object-fit: cover; object-position: center 48%; }

.home-hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 10, 7, .77) 0%, rgba(5, 10, 7, .45) 48%, rgba(5, 10, 7, .08) 78%),
    linear-gradient(180deg, rgba(5, 10, 7, .2), transparent 34%, rgba(5, 10, 7, .66));
}

.home-hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 1390px);
  padding: 150px 0 clamp(82px, 9vh, 112px);
}

.home-hero h1 {
  max-width: 100%;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(68px, 8.25vw, 132px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: .84;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-hero .eyebrow { color: rgba(255, 255, 255, .68); }

.home-hero-statement {
  max-width: 15ch;
  margin: 0 0 26px;
  color: var(--paper);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(36px, 3.6vw, 58px);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: 1.02;
}

.home-hero-intro {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(14px, 1.12vw, 18px);
  line-height: 1.72;
}

.action-row { display: flex; flex-wrap: wrap; gap: 22px 40px; margin-top: 42px; }

.home-hero .text-link { color: #fff; }

.hero-button {
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  padding: 15px 21px;
  background: var(--paper);
  color: var(--forest);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .15em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .24s ease, color .24s ease, transform .24s ease;
}

.hero-button:hover,
.hero-button:focus-visible { background: #e4aa8a; color: var(--forest-deep); transform: translateY(-2px); }

body[data-brotherhood-page="home"] .site-header:not(.is-scrolled) { color: #fff; }
body[data-brotherhood-page="home"] .site-header:not(.is-scrolled) .brand-mark { border-color: rgba(255, 255, 255, .38); background: rgba(255, 255, 255, .1); }
body[data-brotherhood-page="home"] .site-header:not(.is-scrolled) .brand-mark img { filter: brightness(0) invert(1) !important; }
body[data-brotherhood-page="home"] .site-header:not(.is-scrolled) .brand-copy small { color: rgba(255, 255, 255, .62); }
body[data-brotherhood-page="home"] .site-header:not(.is-scrolled) .menu-button { border-color: rgba(255, 255, 255, .38); }

/* Recognition */
.section-light { background: var(--paper-warm); }

.old-code { padding: clamp(130px, 13vw, 210px) 0; }

.old-code-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .6fr);
  align-items: end;
  gap: clamp(44px, 8vw, 130px);
  margin-bottom: clamp(80px, 9vw, 140px);
}

.old-code-intro h2 { max-width: 10ch; }
.old-code-intro > p { max-width: 450px; margin: 0 0 8px; color: #5b635c; font-size: clamp(15px, 1.25vw, 19px); }

.old-code-lines { border-top: 1px solid var(--line-dark); }

.old-code-lines article {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) 1fr;
  align-items: baseline;
  gap: 40px;
  border-bottom: 1px solid var(--line-dark);
  padding: clamp(26px, 3vw, 42px) 0;
}

.old-code-lines h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(38px, 4.8vw, 70px);
  font-weight: 300;
  letter-spacing: -.04em;
  line-height: 1;
}

.old-code-lines p { display: flex; align-items: baseline; gap: clamp(12px, 1.6vw, 24px); margin: 0; color: #687068; font-size: clamp(14px, 1.3vw, 19px); }
.old-code-cue { flex: 0 0 auto; color: var(--clay); font-size: 9px; font-weight: 750; letter-spacing: .18em; text-transform: uppercase; }

.old-code-close {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(320px, 1.28fr);
  align-items: end;
  gap: clamp(42px, 8vw, 130px);
  margin-top: clamp(58px, 6vw, 90px);
  margin-bottom: 0;
}

.old-code-close p {
  max-width: 600px;
  margin: 0;
  color: #70776f;
  font-family: "Poppins", sans-serif;
  font-size: clamp(10px, .85vw, 13px);
  font-weight: 700;
  letter-spacing: .17em;
  line-height: 1.7;
  text-transform: uppercase;
}

.old-code-close strong {
  max-width: 12ch;
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(42px, 5.6vw, 82px);
  font-weight: 300;
  letter-spacing: -.045em;
  line-height: 1;
}

.contextual-invitation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  margin-top: clamp(45px, 5vw, 72px);
  padding-top: 28px;
  padding-bottom: 28px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.contextual-invitation p { max-width: 620px; margin: 0; color: #5c665e; font-size: 14px; }
.contextual-invitation a {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 8px;
  color: var(--forest);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .15em;
  text-decoration: none;
  text-transform: uppercase;
}

/* The heart */
.brotherhood-heart {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(380px, .84fr) minmax(0, 1.16fr);
  background: #3b241c;
  color: var(--paper);
}

.brotherhood-heart-media { position: sticky; top: 0; height: 100svh; overflow: hidden; }
.brotherhood-heart-media::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(25, 11, 7, .08), rgba(25, 11, 7, .35)); content: ""; }
.brotherhood-heart-media img { width: 100%; height: 100%; object-fit: cover; object-position: 48% center; filter: saturate(.72) contrast(1.03); }

.brotherhood-heart-copy { padding: clamp(110px, 10vw, 160px) var(--page); }
.brotherhood-heart-copy .eyebrow { color: #d5a68e; }
.brotherhood-heart-copy h2 { max-width: 12ch; }

.brotherhood-heart-story {
  max-width: 760px;
  display: grid;
  gap: 24px;
  margin-top: clamp(48px, 6vw, 84px);
  color: rgba(242, 238, 229, .72);
}

.brotherhood-heart-story p,
.brotherhood-heart-principles p,
.brotherhood-heart-practice p,
.heart-spine-conclusion p { margin: 0; font-size: 14px; line-height: 1.85; }

.brotherhood-heart-principles {
  max-width: 760px;
  display: grid;
  gap: 20px;
  margin-top: clamp(52px, 5.5vw, 82px);
  border-left: 1px solid #d5a68e;
  padding-left: clamp(24px, 3vw, 42px);
}

.brotherhood-heart-principles p {
  color: rgba(242, 238, 229, .86);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(25px, 2.5vw, 38px);
  font-weight: 300;
  letter-spacing: -.025em;
  line-height: 1.18;
}

.brotherhood-heart-practice { max-width: 760px; margin-top: clamp(76px, 8vw, 116px); }
.brotherhood-heart-practice h3 {
  max-width: 13ch;
  margin: 0 0 clamp(34px, 4vw, 56px);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  letter-spacing: -.04em;
  line-height: 1.02;
}
.brotherhood-heart-practice p { max-width: 680px; color: rgba(242, 238, 229, .72); }

.practice-statement {
  max-width: 14ch;
  margin: clamp(76px, 8vw, 116px) 0 clamp(40px, 5vw, 68px);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  letter-spacing: -.04em;
  line-height: 1.02;
}

.practice-lines { border-top: 1px solid var(--line-light); }

.practice-lines article {
  display: grid;
  grid-template-columns: minmax(130px, .42fr) 1fr;
  gap: 30px;
  border-bottom: 1px solid var(--line-light);
  padding: 24px 0;
}

.practice-lines h3 { margin: 0; color: #e3b399; font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.practice-lines p { max-width: 620px; margin: 0; color: rgba(242, 238, 229, .74); font-size: 14px; }

.heart-spine-movement {
  max-width: 820px;
  margin-top: clamp(84px, 9vw, 136px);
  border-top: 1px solid var(--line-light);
  padding-top: clamp(48px, 6vw, 82px);
}

.heart-spine-movement blockquote { margin: clamp(42px, 5vw, 68px) 0; }
.heart-spine-movement blockquote p {
  max-width: 15ch;
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  letter-spacing: -.04em;
  line-height: 1.03;
}
.heart-spine-movement blockquote p + p { margin-top: .55em; color: #e3b399; }
.heart-spine-conclusion { max-width: 680px; display: grid; gap: 18px; color: rgba(242, 238, 229, .72); }

/* Final remembering */
.wildness-break {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest-deep);
  color: #fff;
}

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

.wildness-break-video {
  object-fit: cover;
  object-position: center 56%;
  filter: saturate(.78) contrast(1.04);
}

.wildness-break-shade {
  background:
    linear-gradient(90deg, rgba(7, 13, 9, .72), rgba(7, 13, 9, .22) 64%, rgba(7, 13, 9, .08)),
    linear-gradient(180deg, rgba(7, 13, 9, .08) 32%, rgba(7, 13, 9, .76));
}

.wildness-break-copy {
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-bottom: clamp(68px, 8vw, 110px);
}

.wildness-break-copy .eyebrow { color: rgba(255, 255, 255, .66); }
.wildness-break-copy h2 { max-width: 12ch; }
.wildness-break-line {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(14px, 1.25vw, 18px);
}

.wildness-break-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px 42px;
  margin-top: clamp(38px, 5vw, 62px);
}

.wildness-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 16px 22px;
  background: var(--paper);
  color: var(--forest);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .24s ease, color .24s ease, transform .24s ease;
}

.wildness-button:hover,
.wildness-button:focus-visible { background: var(--clay); color: #fff; transform: translateY(-2px); }

/* Events */
.events { padding: clamp(130px, 13vw, 200px) 0; background: var(--paper); }

.events-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr);
  align-items: end;
  gap: clamp(40px, 8vw, 130px);
  margin-bottom: clamp(60px, 7vw, 100px);
}

.events-heading h2 { max-width: 9ch; }
.events-heading > p { max-width: 450px; margin: 0 0 9px; color: var(--muted); }

.events-editorial {
  display: block;
}

.event-stage { position: relative; min-height: clamp(520px, 64svh, 700px); background: var(--forest); overflow: hidden; }

.event-feature { position: absolute; inset: 0; opacity: 0; transform: scale(1.015); transition: opacity .7s ease, transform 1.15s var(--ease); }
.event-feature.is-active { opacity: 1; z-index: 1; }
.event-feature.is-active { transform: scale(1); }
.event-feature[hidden] { display: block; visibility: hidden; }
.event-feature.is-active[hidden] { visibility: visible; }
.event-feature > img { width: 100%; height: 100%; object-fit: cover; }
.event-feature-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8, 14, 10, .08) 24%, rgba(8, 14, 10, .84) 90%); }

.event-feature-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(28px, 5vw, 64px);
  color: #fff;
}

.event-kicker { margin: 0 0 18px; color: #d5b099; font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.event-feature h3 { max-width: 12ch; margin: 0; font-family: "Fraunces", Georgia, serif; font-size: clamp(44px, 6vw, 82px); font-weight: 300; letter-spacing: -.045em; line-height: .92; }
.event-date { margin: 12px 0 20px; font-size: clamp(15px, 1.4vw, 20px); font-weight: 600; }
.event-feature-copy > p:not(.event-kicker, .event-date) { max-width: 620px; margin: 0 0 28px; color: rgba(255, 255, 255, .78); font-size: 14px; }
.event-feature-copy > a { display: inline-flex; gap: 26px; border-bottom: 1px solid rgba(255, 255, 255, .72); padding-bottom: 9px; color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-decoration: none; text-transform: uppercase; }

.event-arrows {
  position: absolute;
  z-index: 4;
  top: 26px;
  right: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.event-arrows button {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 50%;
  background: rgba(9, 15, 11, .26);
  color: #fff;
  cursor: pointer;
  font-size: 17px;
  backdrop-filter: blur(8px);
  transition: background .22s ease, color .22s ease;
}

.event-arrows button:hover,
.event-arrows button:focus-visible { background: var(--paper); color: var(--forest); }

.event-arrows p { display: flex; align-items: center; gap: 8px; margin: 0 6px; color: #fff; font-size: 9px; font-weight: 700; letter-spacing: .14em; }
.event-arrows i { width: 38px; height: 1px; display: block; background: rgba(255, 255, 255, .5); }

.event-index {
  display: grid;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: minmax(170px, 1fr);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  border-top: 0;
  border-bottom: 1px solid var(--line-dark);
}

.event-index::-webkit-scrollbar { display: none; }

.event-index button {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 8px;
  border: 0;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 20px 18px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  text-align: left;
  transition: background .2s ease, color .2s ease;
}

.event-index button:last-child { border-right: 0; }
.event-index button:hover,
.event-index button:focus-visible,
.event-index button.is-active { background: var(--paper-warm); color: var(--clay); }
.event-index time { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.event-index button > span { display: grid; gap: 3px; }
.event-index strong { font-size: 13px; font-weight: 600; }
.event-index small { color: var(--muted); font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.event-index i { display: none; }

/* Five doorways */
.pathways {
  min-height: 780px;
  height: 100svh;
  display: flex;
  flex-direction: column;
  padding: clamp(62px, 5.5vw, 88px) 0 0;
  background: var(--forest);
  color: var(--paper);
}

.pathways-heading {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .5fr);
  align-items: end;
  gap: clamp(40px, 7vw, 110px);
  padding-bottom: clamp(30px, 3vw, 44px);
}
.pathways-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -10px; }
.pathways-heading h2 { max-width: 13ch; font-size: clamp(48px, 5.5vw, 82px); }
.pathways-heading > p:last-child { max-width: 560px; margin: 0 0 7px; color: rgba(242, 238, 229, .64); font-size: 13px; }

.pathway-list {
  width: 100%;
  min-height: 0;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.pathway-row {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  overflow: hidden;
  padding: clamp(24px, 2.3vw, 36px);
  border-right: 1px solid var(--line-light);
  color: var(--paper);
  text-decoration: none;
  isolation: isolate;
}

.pathway-row:last-child { border-right: 0; }
.pathway-row::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 13, 9, .12), rgba(7, 13, 9, .4) 42%, rgba(7, 13, 9, .94));
  content: "";
  transition: background .4s ease;
}

.pathway-row:hover::before,
.pathway-row:focus-visible::before { background: linear-gradient(180deg, rgba(7, 13, 9, .03), rgba(7, 13, 9, .28) 40%, rgba(7, 13, 9, .9)); }

.pathway-number {
  position: absolute;
  z-index: 1;
  top: 24px;
  left: clamp(24px, 2.3vw, 36px);
  color: rgba(255, 255, 255, .62);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .17em;
}

.pathway-role { display: grid; gap: 10px; }
.pathway-role small { color: #dfaa8c; font-size: clamp(11px, .9vw, 14px); font-weight: 750; letter-spacing: .2em; text-transform: uppercase; }
.pathway-role strong { color: currentColor; font-size: 9px; font-weight: 600; letter-spacing: .1em; opacity: .68; text-transform: uppercase; }
.pathway-name { font-family: "Fraunces", Georgia, serif; font-size: clamp(28px, 2.55vw, 42px); font-weight: 300; letter-spacing: -.035em; line-height: .98; }
.pathway-description { max-width: 28ch; color: currentColor; font-size: clamp(11px, .82vw, 13px); line-height: 1.65; opacity: .74; }
.pathway-image { position: absolute; z-index: -2; inset: 0; height: auto; overflow: hidden; }
.pathway-image img,
.pathway-image video { width: 100%; height: 100%; display: block; object-fit: cover; filter: saturate(.68); transition: transform .8s var(--ease), filter .4s ease; }
.pathway-row:hover .pathway-image img,
.pathway-row:hover .pathway-image video,
.pathway-row:focus-visible .pathway-image img,
.pathway-row:focus-visible .pathway-image video { transform: scale(1.065); filter: saturate(.98); }
.pathway-arrow { position: absolute; z-index: 1; top: 20px; right: 20px; font-size: 20px; transition: transform .25s ease; }
.pathway-row:hover .pathway-arrow,
.pathway-row:focus-visible .pathway-arrow { transform: translate(5px, -5px); }

/* Living world */
.living-world {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest-deep);
  color: #fff;
}

.living-world-image,
.living-world-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.living-world-image { object-fit: cover; object-position: center; }
.living-world-shade { background: linear-gradient(180deg, rgba(7, 13, 9, .1), rgba(7, 13, 9, .28) 46%, rgba(7, 13, 9, .86)); }

.living-world-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .55fr);
  align-items: end;
  gap: clamp(48px, 10vw, 160px);
  padding-top: 180px;
  padding-bottom: clamp(70px, 8vw, 120px);
}

.living-world-copy .eyebrow { grid-column: 1 / -1; margin-bottom: -20px; color: #c8d1c2; }
.living-world-copy h2 { max-width: 11ch; }
.living-world-copy > div p { margin: 0 0 22px; color: rgba(255, 255, 255, .76); font-size: 14px; }
.living-world-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-top: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .7);
  padding-bottom: 9px;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}

.return-to-life { padding: clamp(120px, 12vw, 190px) 0; background: var(--paper-warm); }
.return-to-life-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .55fr); align-items: end; gap: clamp(50px, 10vw, 170px); }
.return-to-life-grid p:first-child { max-width: 15ch; margin: 0; font-family: "Fraunces", Georgia, serif; font-size: clamp(44px, 6vw, 86px); font-weight: 300; letter-spacing: -.045em; line-height: 1.03; }
.return-to-life-grid p:last-child { max-width: 560px; margin: 0 0 8px; color: var(--muted); line-height: 1.85; }
.return-to-life-grid p:last-child strong { color: var(--ink); font-weight: 650; }

/* Stewardship and safety */
.stewardship { padding: clamp(130px, 13vw, 210px) 0; background: var(--paper); }

.stewardship-grid { display: grid; grid-template-columns: minmax(300px, .68fr) minmax(0, 1.32fr); gap: clamp(55px, 10vw, 170px); align-items: center; }
.stewardship-photo { height: min(78svh, 780px); margin: 0; overflow: hidden; }
.stewardship-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.stewardship-copy { max-width: 720px; }
.stewardship-copy h2 { max-width: 11ch; }
.stewardship-copy > p:not(.eyebrow, .stewardship-facts) { max-width: 650px; margin: 38px 0 0; color: var(--muted); }
.stewardship-copy > p + p:not(.eyebrow) { margin-top: 20px; }
.stewardship-facts { margin: 34px 0 28px; color: var(--clay); font-size: 9px; font-weight: 700; letter-spacing: .12em; line-height: 1.8; text-transform: uppercase; }

.safety {
  display: grid;
  grid-template-columns: minmax(280px, .62fr) minmax(0, 1.38fr);
  gap: clamp(55px, 10vw, 170px);
  margin-top: clamp(150px, 16vw, 240px);
  padding-top: clamp(65px, 7vw, 100px);
  border-top: 1px solid var(--line-dark);
}

.safety-heading h2 { max-width: 7ch; }
.safety-heading > p:last-child { max-width: 440px; margin: 34px 0 0; color: var(--muted); }
.safety-principles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line-dark); }
.safety-principles article { min-height: 126px; padding: 22px 24px 22px 0; border-bottom: 1px solid var(--line-dark); }
.safety-principles article:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--line-dark); }
.safety-principles h3 { margin: 0 0 8px; color: var(--clay); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.safety-principles p { margin: 0; color: var(--muted); font-size: 13px; }
.safety > .text-link { grid-column: 2; margin-top: -20px; }

/* Entry and contact */
.begin { padding: clamp(130px, 13vw, 205px) 0; background: var(--paper-warm); }
.begin-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr); gap: clamp(60px, 10vw, 160px); align-items: start; }
.begin-copy { position: sticky; top: 130px; }
.begin-copy h2 { max-width: 8ch; }
.begin-copy > p:not(.eyebrow) { max-width: 520px; margin: 34px 0 0; color: var(--muted); }
.begin-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px 38px; margin-top: 42px; }

.contact-disclosure { border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.contact-disclosure summary { min-height: 108px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 24px 0; cursor: pointer; list-style: none; }
.contact-disclosure summary::-webkit-details-marker { display: none; }
.contact-disclosure summary > span:first-child { display: grid; gap: 4px; font-family: "Fraunces", Georgia, serif; font-size: clamp(26px, 3vw, 42px); font-weight: 300; letter-spacing: -.025em; line-height: 1.1; }
.contact-disclosure summary small { color: var(--muted); font-family: "Poppins", sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.contact-disclosure summary > span:last-child { font-size: 28px; font-weight: 300; transition: transform .25s ease; }
.contact-disclosure[open] summary > span:last-child { transform: rotate(45deg); }

.contact-body { padding: 10px 0 48px; }
.contact-body > p:first-child { margin: 0 0 40px; }
.contact-body > p:first-child a { color: var(--clay); font-size: 14px; font-weight: 600; text-decoration: none; }
.contact-body form { display: grid; gap: 24px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.contact-body label { display: grid; gap: 8px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contact-body input,
.contact-body select,
.contact-body textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(24, 35, 28, .35);
  border-radius: 0;
  outline: 0;
  padding: 10px 0 13px;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.contact-body textarea { min-height: 110px; resize: vertical; }
.contact-body input:focus,
.contact-body select:focus,
.contact-body textarea:focus { border-color: var(--clay); }
.contact-body button { width: fit-content; display: inline-flex; align-items: center; gap: 34px; border: 0; border-bottom: 1px solid var(--ink); padding: 12px 0; background: transparent; color: var(--ink); cursor: pointer; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contact-call { margin: 36px 0 0; color: var(--muted); font-size: 12px; }
.contact-call a { color: var(--ink); font-weight: 600; }

/* Footer */
.site-footer { padding: 72px 0 28px; background: var(--forest-deep); color: var(--paper); }
.footer-grid { display: grid; grid-template-columns: minmax(260px, .7fr) 1.3fr; gap: 70px; }
.footer-identity { display: flex; align-items: center; gap: 16px; align-self: start; }
.site-footer .brand-mark { border-color: rgba(242, 238, 229, .35) !important; background: rgba(242, 238, 229, .08) !important; }
.site-footer .brand-mark img { filter: brightness(0) invert(1) !important; }
.footer-identity strong { display: block; font-size: 14px; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }
.footer-identity p { margin: 3px 0 0; color: rgba(242, 238, 229, .55); font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 50px; }
.footer-links > div { display: grid; align-content: start; }
.footer-links h2 { margin: 0 0 16px; color: var(--moss); font-family: "Poppins", sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.footer-links a { width: fit-content; padding: 5px 0; color: rgba(242, 238, 229, .68); font-size: 11px; text-decoration: none; }
.footer-links a:hover,
.footer-links a:focus-visible { color: #fff; }
.footer-bottom { grid-column: 1 / -1; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 30px; margin-top: 22px; padding-top: 24px; border-top: 1px solid var(--line-light); color: rgba(242, 238, 229, .42); font-size: 8px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.footer-bottom a { text-decoration: none; }

/* Responsive */
@media (max-width: 1180px) {
  .home-hero h1 { font-size: clamp(64px, 8vw, 102px); }
  .pathways { height: auto; min-height: 100svh; }
  .pathway-list {
    display: flex;
    min-height: 570px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }
  .pathway-row { flex: 0 0 min(38vw, 420px); scroll-snap-align: start; }
}

@media (max-width: 960px) {
  .home-hero {
    min-height: 100svh;
  }
  .home-hero-copy { max-width: none; padding: 150px 0 100px; }
  .home-hero h1 { max-width: 9ch; white-space: normal; }
  .old-code-intro,
  .old-code-close,
  .events-heading,
  .living-world-copy,
  .return-to-life-grid,
  .stewardship-grid,
  .safety,
  .begin-grid { grid-template-columns: 1fr; }
  .old-code-intro > p,
  .events-heading > p { margin: 0; }
  .brotherhood-heart { grid-template-columns: .72fr 1.28fr; }
  .event-stage { min-height: 68svh; }
  .event-index { grid-template-columns: none; grid-auto-columns: minmax(160px, 1fr); scroll-snap-type: x mandatory; }
  .event-index button { min-width: 160px; align-content: center; padding: 18px 16px; scroll-snap-align: start; }
  .pathways-heading { grid-template-columns: 1fr; }
  .pathways-heading .eyebrow { grid-column: 1; margin-bottom: 0; }
  .pathway-row { flex-basis: min(66vw, 390px); }
  .living-world-copy .eyebrow { margin-bottom: 0; }
  .return-to-life-grid p:last-child { margin-left: auto; }
  .stewardship-photo { width: min(65%, 520px); height: 65svh; }
  .safety > .text-link { grid-column: 1; margin-top: 0; }
  .begin-copy { position: static; }
}

@media (max-width: 760px) {
  :root { --page: 22px; }
  .header-inner { width: calc(100% - 32px); min-height: 72px; }
  body[data-brotherhood-page="home"] .wh-lang-toggle { top: 23px; right: 16px; }
  .menu-button { width: 44px; height: 44px; }
  .navigation-inner { grid-template-columns: 1fr; gap: 46px; }
  .site-navigation { display: block; padding: 104px 22px 36px; }
  .navigation-primary > a { font-size: clamp(25px, 7.5vw, 36px); }
  .navigation-ways > a:not(.navigation-wild-hearts) { grid-template-columns: 110px 1fr; padding: 12px 0; }
  .entry-title { max-width: 100%; font-size: clamp(34px, 9.8vw, 44px); line-height: .9; }
  .home-hero-copy { padding: 126px 0 104px; }
  .home-hero h1 { max-width: 9ch; font-size: clamp(43px, 12.8vw, 66px); line-height: .88; }
  .home-hero-statement { max-width: 10ch; font-size: clamp(33px, 9vw, 48px); }
  .home-hero-intro { max-width: 40ch; }
  .home-hero-shade { background: linear-gradient(180deg, rgba(5, 10, 7, .45), rgba(5, 10, 7, .36) 32%, rgba(5, 10, 7, .85)); }
  .old-code,
  .events,
  .stewardship,
  .begin { padding: 110px 0; }
  .old-code-intro { gap: 30px; margin-bottom: 64px; }
  .old-code-lines article { grid-template-columns: 1fr; gap: 8px; padding: 28px 0; }
  .old-code-lines h3 { font-size: clamp(38px, 12vw, 58px); }
  .old-code-close { margin-top: 54px; }
  .old-code-close { gap: 32px; }
  .wildness-break { min-height: 100svh; }
  .wildness-break-copy { padding-top: 120px; padding-bottom: 72px; }
  .contextual-invitation { grid-template-columns: 1fr; gap: 22px; }
  .brotherhood-heart { grid-template-columns: 1fr; }
  .brotherhood-heart-media { position: relative; height: 62svh; }
  .brotherhood-heart-copy { padding: 100px 22px 110px; }
  .practice-statement { margin-top: 90px; }
  .practice-lines article { grid-template-columns: 110px 1fr; }
  .events-heading { gap: 28px; margin-bottom: 55px; }
  .event-stage { min-height: max(540px, 68svh); touch-action: pan-y; }
  .event-feature-copy { padding: 28px 22px; }
  .event-arrows { top: 18px; right: 18px; }
  .event-arrows button { width: 44px; height: 44px; }
  .event-arrows p { display: none; }
  .event-index { width: calc(100vw - 22px); scroll-padding-inline: 16px; }
  .pathways { min-height: 100svh; padding-top: 96px; }
  .pathways-heading { padding-bottom: 48px; }
  .pathways-heading > p:last-child { margin-left: 0; }
  .pathway-list { min-height: 540px; }
  .pathway-row { flex-basis: min(82vw, 340px); gap: 16px; padding: 26px 22px; }
  .pathway-role { gap: 6px; }
  .pathway-name { font-size: clamp(34px, 10vw, 48px); }
  .pathway-description { font-size: 12px; }
  .pathway-number { left: 22px; }
  .wildness-break-actions { align-items: flex-start; flex-direction: column; }
  .living-world-copy { padding-top: 140px; }
  .return-to-life { padding: 110px 0; }
  .return-to-life-grid { gap: 50px; }
  .stewardship-photo { width: 80%; height: 62svh; }
  .safety { margin-top: 130px; }
  .safety-principles { grid-template-columns: 1fr; }
  .safety-principles article,
  .safety-principles article:nth-child(even) { min-height: 0; padding: 22px 0; border-left: 0; }
  .begin-grid { gap: 80px; }
  .begin-actions { align-items: flex-start; flex-direction: column; }
  .contact-disclosure summary > span:first-child { font-size: 27px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { grid-column: 1; flex-direction: column; }
}

@media (max-width: 430px) {
  .site-header .brand-copy strong { max-width: 105px; font-size: 10px !important; letter-spacing: 1.05px !important; }
  .site-header .brand-copy small { display: none !important; }
  body[data-brotherhood-page="home"] .brand-mark { width: 38px !important; height: 38px !important; flex-basis: 38px; }
  body[data-brotherhood-page="home"] .brand-mark img { width: 24px !important; height: 24px !important; }
  .home-hero-intro { font-size: 14px; }
  .action-row { flex-direction: column; align-items: flex-start; }
  h2 { font-size: clamp(43px, 14vw, 62px); }
  .practice-lines article { grid-template-columns: 1fr; gap: 8px; }
  .event-stage { min-height: 540px; }
  .event-feature-copy > p:not(.event-kicker, .event-date) { font-size: 12px; }
  .living-world { min-height: 840px; }
  .stewardship-photo { width: 100%; height: 64svh; }
  .footer-links { grid-template-columns: 1fr; }
}

@media (max-width: 390px) {
  body[data-brotherhood-page="home"] .site-header .brand-copy { display: none !important; }
}

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

@media (prefers-contrast: more) {
  .old-code-intro > p,
  .events-heading > p,
  .stewardship-copy > p:not(.eyebrow, .stewardship-facts),
  .begin-copy > p:not(.eyebrow) { color: #3b453e; }
  .home-hero-intro { color: #fff; }
}
