:root {
  --ink: #20221d;
  --forest: #1b392b;
  --deep-forest: #0f2017;
  --moss: #607765;
  --sage: #9caf9a;
  --fern: #3f644d;
  --sage-pale: #dce6d7;
  --sage-wash: #e8eee3;
  --mint: #f0f4eb;
  --milk: #f3f0e8;
  --paper: #ebe7dc;
  --chalk: #fbfaf5;
  --stone: #c9c3b5;
  --line: rgba(32, 34, 29, 0.16);
  --light-line: rgba(251, 250, 245, 0.22);
  --display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --page: min(1280px, calc(100vw - 80px));
  --reading: 690px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--milk);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

::selection {
  background: #cdd5c7;
  color: var(--deep-forest);
}

a {
  color: inherit;
}

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

p,
h1,
h2,
h3,
dl,
dd {
  margin: 0;
}

.section {
  width: var(--page);
  margin-inline: auto;
  padding-block: clamp(110px, 13vw, 190px);
}

.eyebrow {
  margin-bottom: 26px;
  color: var(--fern);
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 650;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(251, 250, 245, 0.74);
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.98;
}

main {
  position: relative;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 26px 0;
  color: var(--chalk);
  transition:
    padding 420ms ease,
    background 420ms ease,
    box-shadow 420ms ease,
    color 320ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  padding: 15px 0;
  background: rgba(232, 238, 227, 0.92);
  box-shadow: 0 8px 32px rgba(15, 32, 23, 0.09);
  color: var(--forest);
  backdrop-filter: blur(18px);
}

.site-header-inner {
  display: grid;
  width: var(--page);
  margin-inline: auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

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

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 320ms ease;
}

.site-header.is-scrolled .brand img,
.site-header.menu-open .brand img {
  filter: none;
}

.brand span {
  display: grid;
  gap: 1px;
  line-height: 1.2;
}

.brand strong {
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand small {
  font-size: 9px;
  letter-spacing: 0.2em;
  opacity: 0.72;
  text-transform: uppercase;
}

.menu-button {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 1.5px;
  background: var(--chalk);
  transform-origin: center;
  transition:
    width 480ms cubic-bezier(0.76, 0, 0.24, 1),
    transform 480ms cubic-bezier(0.76, 0, 0.24, 1),
    opacity 300ms ease,
    background 320ms ease;
}

.menu-button span:nth-child(1) {
  width: 30px;
}

.menu-button span:nth-child(2) {
  width: 18px;
}

.menu-button span:nth-child(3) {
  width: 25px;
}

.site-header.is-scrolled .menu-button span,
.site-header.menu-open .menu-button span {
  background: var(--forest);
}

.menu-button.is-open span:nth-child(1) {
  width: 25px;
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-button.is-open span:nth-child(3) {
  width: 25px;
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

.language-menu {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 3px;
}

.language-menu button {
  min-width: 32px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 6px 7px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    border-color 260ms ease,
    background 260ms ease,
    opacity 260ms ease;
}

.language-menu button:not([aria-pressed="true"]) {
  opacity: 0.58;
}

.language-menu button[aria-pressed="true"] {
  border-color: currentColor;
  background: rgba(251, 250, 245, 0.1);
}

.site-header.is-scrolled .language-menu button[aria-pressed="true"],
.site-header.menu-open .language-menu button[aria-pressed="true"] {
  background: rgba(48, 83, 61, 0.07);
}

.language-menu button:hover,
.language-menu button:focus-visible {
  opacity: 1;
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  align-items: center;
  overflow-y: auto;
  padding: 118px 0 66px;
  background:
    radial-gradient(circle at 12% 10%, rgba(156, 175, 154, 0.14), transparent 32rem),
    radial-gradient(circle at 88% 78%, rgba(96, 119, 101, 0.14), transparent 34rem),
    linear-gradient(135deg, #14291d, #1b392b 52%, #102118);
  color: var(--chalk);
  pointer-events: none;
  transform: translateY(-100%);
  visibility: hidden;
  transition:
    transform 820ms cubic-bezier(0.76, 0, 0.24, 1),
    visibility 0s linear 820ms;
}

.site-menu::before {
  position: absolute;
  right: -3vw;
  bottom: 5vh;
  color: rgba(251, 250, 245, 0.035);
  content: "WILD SOULS";
  font-family: var(--sans);
  font-size: clamp(68px, 13vw, 180px);
  font-weight: 750;
  letter-spacing: 0.02em;
  line-height: 0.8;
  pointer-events: none;
}

.site-menu.is-open {
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition:
    transform 820ms cubic-bezier(0.76, 0, 0.24, 1),
    visibility 0s;
}

.site-menu-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: var(--page);
  margin-inline: auto;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(70px, 10vw, 150px);
}

.site-menu-links {
  display: grid;
}

.site-menu-links a {
  display: grid;
  width: fit-content;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: baseline;
  gap: 14px;
  padding: 5px 0;
  color: var(--chalk);
  opacity: 0;
  text-decoration: none;
  transform: translateY(24px);
  transition:
    opacity 520ms ease,
    transform 520ms ease,
    color 260ms ease;
}

.site-menu-links a > span {
  color: var(--sage);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.14em;
}

.site-menu-links strong {
  font-family: var(--display);
  font-size: clamp(30px, 4.6vw, 58px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.site-menu-links a:hover,
.site-menu-links a:focus-visible {
  color: var(--sage);
}

.site-menu.is-open .site-menu-links a {
  opacity: 1;
  transform: translateY(0);
}

.site-menu.is-open .site-menu-links a:nth-child(1) { transition-delay: 80ms; }
.site-menu.is-open .site-menu-links a:nth-child(2) { transition-delay: 130ms; }
.site-menu.is-open .site-menu-links a:nth-child(3) { transition-delay: 180ms; }
.site-menu.is-open .site-menu-links a:nth-child(4) { transition-delay: 230ms; }
.site-menu.is-open .site-menu-links a:nth-child(5) { transition-delay: 280ms; }
.site-menu.is-open .site-menu-links a:nth-child(6) { transition-delay: 330ms; }
.site-menu.is-open .site-menu-links a:nth-child(7) { transition-delay: 380ms; }

.site-menu-side {
  max-width: 390px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 580ms ease 300ms, transform 580ms ease 300ms;
}

.site-menu.is-open .site-menu-side {
  opacity: 1;
  transform: translateY(0);
}

.site-menu-side > p:not(.eyebrow) {
  color: rgba(251, 250, 245, 0.68);
  font-size: 15px;
  line-height: 1.75;
}

.wild-hearts-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  border-top: 1px solid rgba(251, 250, 245, 0.2);
  padding-top: 22px;
  color: var(--chalk);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.wild-hearts-link span {
  transition: transform 300ms ease;
}

.wild-hearts-link:hover span,
.wild-hearts-link:focus-visible span {
  transform: translate(3px, -3px);
}

body.menu-open {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--deep-forest);
  color: var(--chalk);
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 22, 15, 0.84) 0%, rgba(8, 22, 15, 0.54) 44%, rgba(8, 22, 15, 0.12) 76%),
    linear-gradient(180deg, rgba(8, 18, 12, 0.46) 0%, transparent 36%, rgba(8, 18, 12, 0.58) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: var(--page);
  margin-inline: auto;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  padding: clamp(150px, 17vh, 220px) 0 150px;
}

.hero-copy h1 {
  max-width: 800px;
  font-size: clamp(66px, 8.5vw, 126px);
  line-height: 0.88;
  text-wrap: balance;
}

.hero-copy .eyebrow {
  font-size: clamp(13px, 1vw, 15px);
}

.hero-intro {
  max-width: 615px;
  margin-top: 40px;
  color: rgba(251, 250, 245, 0.84);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
}

.hero-foot {
  position: absolute;
  right: 0;
  bottom: 34px;
  left: 0;
  z-index: 3;
  display: flex;
  width: var(--page);
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(251, 250, 245, 0.28);
  color: rgba(251, 250, 245, 0.72);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-foot a {
  text-decoration: none;
}

.hero-foot-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero-video-toggle {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(251, 250, 245, 0.42);
  border-radius: 50%;
  background: rgba(8, 18, 12, 0.18);
  color: var(--chalk);
  cursor: pointer;
  place-items: center;
  transition: background 300ms ease, border-color 300ms ease;
}

.hero-video-toggle:hover,
.hero-video-toggle:focus-visible {
  border-color: rgba(251, 250, 245, 0.82);
  background: rgba(8, 18, 12, 0.42);
}

.hero-video-toggle > span {
  position: relative;
  width: 9px;
  height: 10px;
}

.hero-video-toggle:not(.is-paused) > span::before,
.hero-video-toggle:not(.is-paused) > span::after {
  position: absolute;
  top: 0;
  width: 2px;
  height: 10px;
  background: currentColor;
  content: "";
}

.hero-video-toggle:not(.is-paused) > span::before {
  left: 1px;
}

.hero-video-toggle:not(.is-paused) > span::after {
  right: 1px;
}

.hero-video-toggle.is-paused > span {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}

.hero-foot a span {
  display: inline-block;
  margin-left: 12px;
}

.soul-thread {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
  display: block;
  width: 100%;
  pointer-events: none;
}

.section-index {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--moss);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-index span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.recognition {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 6vw;
  background: var(--sage-wash);
  box-shadow: 0 0 0 100vmax var(--sage-wash);
  clip-path: inset(0 -100vmax);
}

.recognition-copy {
  max-width: 970px;
}

.recognition h2 {
  max-width: 920px;
  color: var(--forest);
}

.reading-copy {
  display: grid;
  max-width: var(--reading);
  gap: 24px;
  margin: 60px 0 0 auto;
  color: rgba(32, 34, 29, 0.76);
  font-size: 18px;
}

.breathing-space {
  display: flex;
  min-height: 92svh;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 120px 40px;
  background: var(--mint);
  text-align: center;
}

.breathing-space > p {
  margin-bottom: 38px;
  color: var(--fern);
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.breathing-space h2 {
  max-width: 1000px;
  font-size: clamp(52px, 7.2vw, 108px);
}

.breathing-space h2 span {
  display: block;
  color: var(--fern);
  font-style: italic;
}

.approach {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  align-items: start;
  gap: clamp(70px, 10vw, 150px);
}

.image-frame {
  position: relative;
}

.image-shell {
  overflow: hidden;
  background: var(--paper);
}

.image-shell img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.03);
  transform: scale(1.045);
  transition:
    transform 1.55s cubic-bezier(0.2, 0.68, 0.25, 1),
    filter 1.2s ease;
}

.image-shell:hover img {
  filter: saturate(0.96) contrast(1.02);
  transform: scale(1);
}

.approach-image {
  position: sticky;
  top: clamp(50px, 9vh, 100px);
  align-self: start;
  margin-top: 40px;
}

.approach-image .image-shell {
  border-radius: 72px 18px 68px 24px / 54px 22px 76px 28px;
}

.approach-image img {
  aspect-ratio: 4 / 5;
}

.approach-image span {
  display: block;
  margin-top: 18px;
  color: var(--moss);
  font-family: var(--display);
  font-size: 19px;
  font-style: italic;
}

.approach-copy {
  max-width: 620px;
}

.approach-copy h2 {
  margin-bottom: 44px;
  color: var(--forest);
}

.approach-copy > p:not(.eyebrow) {
  margin-top: 22px;
  color: rgba(32, 34, 29, 0.76);
  font-size: 17px;
}

.approach-copy .lead {
  color: var(--ink) !important;
  font-family: var(--display);
  font-size: clamp(25px, 2.6vw, 36px) !important;
  line-height: 1.35;
}

.quiet-note {
  margin-top: 42px !important;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--forest) !important;
  font-size: 13px !important;
  letter-spacing: 0.08em;
}

.quiet-cta-button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 13px;
  border: 0;
  border-bottom: 1px solid rgba(27, 57, 43, 0.48);
  padding: 10px 1px;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 680;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition:
    border-color 280ms ease,
    color 280ms ease,
    gap 280ms ease;
}

.quiet-cta-button:hover,
.quiet-cta-button:focus-visible {
  gap: 18px;
  border-color: var(--forest);
  color: var(--fern);
}

.quiet-text-button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  border: 0;
  padding: 8px 0;
  background: transparent;
  color: var(--fern);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.05em;
  text-align: left;
  transition: color 280ms ease, gap 280ms ease;
}

.quiet-text-button:hover,
.quiet-text-button:focus-visible {
  gap: 18px;
  color: var(--forest);
}

.approach-copy .quiet-cta-button {
  margin-top: 26px;
}

.weekend {
  padding-top: 80px;
  background: var(--sage-pale);
  box-shadow: 0 0 0 100vmax var(--sage-pale);
  clip-path: inset(0 -100vmax);
}

.weekend-heading {
  display: grid;
  grid-template-columns: 180px minmax(0, 850px);
  gap: 6vw;
  margin-bottom: 100px;
}

.weekend-heading h2 {
  color: var(--forest);
}

.weekend-heading > div:last-child > p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 36px;
  color: rgba(32, 34, 29, 0.68);
  font-size: 17px;
}

.weekend-heading .quiet-text-button {
  margin-top: 22px;
}

.return-trace {
  position: relative;
  display: grid;
  width: calc(100% - 180px - 6vw);
  grid-template-columns: repeat(4, 1fr);
  margin: -30px 0 80px auto;
  border-top: 1px solid rgba(27, 57, 43, 0.24);
}

.return-trace span {
  position: relative;
  display: grid;
  gap: 3px;
  padding-top: 18px;
  color: var(--forest);
  font-family: var(--display);
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.1;
}

.return-trace span::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border: 2px solid var(--sage-pale);
  border-radius: 50%;
  background: var(--fern);
  box-shadow: 0 0 0 1px var(--fern);
  content: "";
}

.return-trace b {
  color: var(--moss);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.16em;
}

.return-trace i {
  font-style: normal;
}

.rhythm-list {
  width: calc(100% - 180px - 6vw);
  margin-left: auto;
  border-top: 1px solid var(--line);
}

.rhythm-list article {
  display: grid;
  grid-template-columns: 72px 220px minmax(0, 1fr);
  gap: 34px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.rhythm-list article > span {
  padding-top: 7px;
  color: var(--moss);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.rhythm-list h3 {
  color: var(--forest);
  font-size: 42px;
  line-height: 1.05;
}

.rhythm-list p {
  max-width: 630px;
  color: rgba(32, 34, 29, 0.7);
  font-size: 17px;
}

.rhythm-detail {
  max-width: 680px;
}

.rhythm-list .rhythm-practical {
  margin-top: 18px;
  color: var(--fern);
  font-size: 10px;
  font-weight: 680;
  letter-spacing: 0.12em;
  line-height: 1.55;
  text-transform: uppercase;
}

.inside-weekend {
  padding-top: 70px;
}

.inside-heading {
  max-width: 940px;
  margin: 0 auto clamp(80px, 10vw, 140px);
  text-align: center;
}

.inside-heading h2 {
  color: var(--forest);
}

.inside-heading > p:last-child {
  max-width: 650px;
  margin: 40px auto 0;
  color: rgba(32, 34, 29, 0.68);
  font-size: 17px;
}

.practice-collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 82px;
  gap: 22px;
  min-height: 1040px;
}

.practice-figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--deep-forest);
  box-shadow: 0 28px 80px rgba(24, 29, 24, 0.13);
  color: var(--chalk);
  transition:
    border-radius 800ms cubic-bezier(0.2, 0.68, 0.25, 1),
    transform 650ms cubic-bezier(0.2, 0.68, 0.25, 1),
    box-shadow 650ms ease;
}

.practice-figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 20, 15, 0.02) 35%,
    rgba(13, 20, 15, 0.76) 100%
  );
  content: "";
  transition: opacity 700ms ease;
}

.practice-figure img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
  transform: scale(1.04);
  transition:
    transform 1.6s cubic-bezier(0.2, 0.68, 0.25, 1),
    filter 1.2s ease;
}

.practice-figure figcaption {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  z-index: 2;
  color: rgba(251, 250, 245, 0.84);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.practice-figure figcaption span {
  display: block;
  margin-bottom: 4px;
  color: var(--chalk);
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.practice-figure figcaption i {
  font-style: normal;
}

.practice-figure:hover {
  box-shadow: 0 36px 96px rgba(24, 29, 24, 0.18);
  transform: translateY(-5px);
}

.practice-figure:hover img {
  filter: saturate(0.94) contrast(1.02);
  transform: scale(1);
}

.practice-circle {
  grid-column: 1 / 7;
  grid-row: 1 / 5;
  border-radius: 78px 20px 72px 26px / 56px 24px 84px 30px;
}

.practice-circle:hover {
  border-radius: 52px 26px 56px 30px;
}

.practice-somatic {
  grid-column: 7 / 13;
  grid-row: 1 / 4;
  margin-top: 56px;
  border-radius: 26px 72px 24px 64px / 28px 52px 26px 76px;
}

.practice-somatic img {
  object-position: center 56%;
}

.practice-somatic:hover {
  border-radius: 34px;
}

.practice-core {
  z-index: 4;
  grid-column: 5 / 9;
  grid-row: 4 / 7;
  align-self: center;
  padding: clamp(38px, 4vw, 58px);
  border: 1px solid rgba(32, 34, 29, 0.1);
  border-radius: 52px 16px 50px 20px;
  background: rgba(243, 240, 232, 0.96);
  box-shadow: 0 32px 90px rgba(24, 29, 24, 0.15);
  backdrop-filter: blur(18px);
}

.practice-core .eyebrow {
  margin-bottom: 24px;
}

.practice-core h3 {
  color: var(--forest);
  font-family: var(--display);
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.practice-core > p:not(.eyebrow) {
  margin-top: 26px;
  color: rgba(32, 34, 29, 0.66);
  font-size: 14px;
}

.practice-core .quiet-text-button {
  margin-top: 22px;
}

.practice-nature {
  grid-column: 1 / 5;
  grid-row: 5 / 9;
  border-radius: 68px 18px 64px 22px / 42px 24px 74px 28px;
}

.practice-nature img {
  object-position: center;
}

.practice-meal {
  grid-column: 9 / 13;
  grid-row: 4 / 8;
  margin-top: 20px;
  border-radius: 22px 70px 26px 62px / 24px 54px 30px 76px;
}

.practice-meal:hover {
  border-radius: 38px 22px 42px 24px;
}

.practice-teaching {
  grid-column: 4 / 9;
  grid-row: 8 / 12;
  margin-top: 0;
  border-radius: 72px 20px 64px 26px / 48px 26px 80px 30px;
}

.practice-teaching img {
  object-position: center 48%;
}

.practice-teaching:hover {
  border-radius: 32px;
}

.practice-silence {
  grid-column: 9 / 13;
  grid-row: 8 / 12;
  margin-top: 26px;
  border-radius: 20px 68px 24px 58px / 24px 46px 28px 72px;
}

.practice-silence img {
  object-position: center;
}

.nature {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
  min-height: 100svh;
  background: var(--deep-forest);
  color: var(--chalk);
}

.nature-image {
  min-height: 100svh;
  overflow: hidden;
}

.nature-image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  transform: scale(1.035);
  transition:
    transform 1.8s cubic-bezier(0.2, 0.68, 0.25, 1),
    opacity 1.2s ease;
}

.nature-image:hover img {
  opacity: 0.94;
  transform: scale(1);
}

.nature-copy {
  align-self: center;
  max-width: 780px;
  padding: clamp(80px, 7vw, 112px);
}

.nature-copy h2 {
  max-width: 720px;
  margin-bottom: 44px;
  font-size: clamp(52px, 5.4vw, 82px);
  text-wrap: balance;
}

.nature-copy > p:not(.eyebrow) {
  color: rgba(251, 250, 245, 0.7);
  font-size: 17px;
}

.nature-lines {
  display: grid;
  margin-block: 50px;
  border-top: 1px solid var(--light-line);
}

.nature-lines span {
  padding: 13px 0;
  border-bottom: 1px solid var(--light-line);
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 30px);
}

.place {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.72fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.place-visual {
  margin: 0;
}

.place-visual .image-shell {
  aspect-ratio: 4 / 5;
  border-radius: 86px 20px 78px 28px / 58px 26px 92px 34px;
  box-shadow: 0 30px 90px rgba(24, 29, 24, 0.14);
  transform: rotate(-0.45deg);
}

.place-visual img {
  filter: saturate(0.7) contrast(1.05) brightness(0.92);
  object-position: center 48%;
}

.place-visual:hover img {
  filter: saturate(0.86) contrast(1.03) brightness(0.95);
}

.place-visual figcaption {
  margin-top: 18px;
  color: var(--moss);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.place-visual figcaption a {
  text-underline-offset: 3px;
}

.place-copy h2 {
  max-width: 680px;
  color: var(--forest);
}

.place-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 28px;
  color: rgba(32, 34, 29, 0.7);
  font-size: 17px;
}

.facilitator-heading {
  max-width: 1000px;
  margin-bottom: 90px;
}

.facilitator-heading h2 {
  color: var(--forest);
}

.facilitator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(390px, 0.72fr);
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.facilitator-portraits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(16px, 2.4vw, 30px);
}

.facilitator-portrait {
  margin: 0;
}

.facilitator-portrait:first-child {
  margin-top: 72px;
}

.facilitator-portrait .image-shell,
.portrait-placeholder {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.facilitator-portrait:first-child .portrait-placeholder {
  border-radius: 64px 18px 58px 24px / 48px 22px 72px 28px;
}

.facilitator-portrait:last-child .image-shell {
  border-radius: 20px 66px 24px 58px / 24px 48px 28px 74px;
}

.facilitator-portrait img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.portrait-placeholder {
  display: grid;
  place-items: center;
  border: 1px solid rgba(27, 57, 43, 0.16);
  background:
    radial-gradient(circle at 35% 32%, rgba(255, 255, 255, 0.66), transparent 34%),
    linear-gradient(145deg, var(--sage-wash), var(--sage-pale));
  color: var(--fern);
}

.portrait-placeholder span {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 30px);
  font-style: italic;
}

.facilitator-portrait figcaption {
  display: grid;
  gap: 4px;
  margin-top: 20px;
  color: var(--moss);
  font-size: 11px;
  line-height: 1.45;
}

.facilitator-portrait figcaption strong {
  color: var(--forest);
  font-family: var(--display);
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 400;
  line-height: 1.15;
}

.facilitator-copy > p {
  margin-bottom: 22px;
  color: rgba(32, 34, 29, 0.74);
  font-size: 17px;
}

.guest-note {
  display: grid;
  grid-template-columns: 220px minmax(0, 730px);
  gap: 50px;
  margin: 110px 0 0 auto;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.guest-copy {
  display: grid;
  gap: 20px;
}

.guest-copy p {
  color: rgba(32, 34, 29, 0.67);
}

.recognise-yourself {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(360px, 0.7fr);
  gap: clamp(80px, 12vw, 180px);
  border-top: 1px solid var(--line);
}

.for-you h2 {
  max-width: 800px;
  color: var(--forest);
}

.recognition-lines {
  display: grid;
  margin-top: 70px;
  border-top: 1px solid var(--line);
}

.recognition-lines p {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
}

.not-for-you {
  align-self: end;
  padding: 46px 0 0 46px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.not-for-you h3 {
  margin-bottom: 28px;
  color: var(--forest);
  font-size: 37px;
}

.not-for-you > p:not(.eyebrow) {
  margin-top: 18px;
  color: rgba(32, 34, 29, 0.68);
  font-size: 15px;
}

.afterward {
  position: relative;
  min-height: 105svh;
  overflow: hidden;
  background: var(--deep-forest);
  color: var(--chalk);
}

.afterward > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.afterward::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 15, 11, 0.92), rgba(10, 15, 11, 0.38));
  content: "";
}

.afterward-copy {
  position: relative;
  z-index: 2;
  width: var(--page);
  margin-inline: auto;
  padding: clamp(120px, 15vw, 220px) 0;
}

.afterward-copy h2 {
  max-width: 900px;
}

.afterward-copy > p:not(.eyebrow) {
  margin-top: 38px;
  color: rgba(251, 250, 245, 0.74);
  font-size: 20px;
}

.afterward-lines {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 20px;
  margin-top: 80px;
  color: rgba(251, 250, 245, 0.88);
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 42px);
  font-style: italic;
  line-height: 1.2;
}

.afterward-lines span {
  width: max-content;
  max-width: calc(100% - var(--curve-x, 0%));
  align-self: flex-start;
  margin-left: var(--curve-x, 0%);
}

.afterward-lines span:nth-child(1) {
  --curve-x: 0%;
}

.afterward-lines span:nth-child(2) {
  --curve-x: 10%;
}

.afterward-lines span:nth-child(3) {
  --curve-x: 26%;
}

.afterward-lines span:nth-child(4) {
  --curve-x: 38%;
}

.afterward-lines span:nth-child(5) {
  --curve-x: 18%;
}

.practical {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(560px, 1.1fr);
  gap: clamp(70px, 12vw, 170px);
}

.practical-heading h2 {
  color: var(--forest);
}

.practical-heading > p:last-child {
  max-width: 480px;
  margin-top: 32px;
  color: var(--moss);
  font-size: 14px;
}

.details {
  border-top: 1px solid var(--line);
}

.details div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 28px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.details dt {
  color: var(--moss);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.details dd {
  color: var(--forest);
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.35;
}

.practical-details-column {
  min-width: 0;
}

.practical-details-button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  padding: 19px 24px;
  background: var(--forest);
  color: var(--chalk);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 680;
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
  transition: background 320ms ease, color 320ms ease, padding 320ms ease;
}

.practical-details-button:hover,
.practical-details-button:focus-visible {
  padding-right: 19px;
  background: transparent;
  color: var(--forest);
}

.practical-invitation {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 8px;
}

.practical-invitation p {
  max-width: 430px;
  color: var(--moss);
  font-size: 13px;
  line-height: 1.65;
}

.welcome {
  display: grid;
  min-height: 95svh;
  place-items: center;
  padding: 120px 40px;
  background: var(--chalk);
}

.welcome-inner {
  display: flex;
  max-width: 980px;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.welcome-inner h2 {
  color: var(--forest);
  font-size: clamp(56px, 7vw, 104px);
}

.welcome-inner > p:not(.eyebrow) {
  max-width: 630px;
  margin-top: 38px;
  color: rgba(32, 34, 29, 0.68);
  font-size: 18px;
}

.primary-invitation {
  margin-top: 52px;
  border: 0;
  border-bottom: 1px solid var(--forest);
  padding: 11px 2px;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}

.welcome-inner > span {
  margin-top: 16px;
  color: var(--moss);
  font-size: 11px;
}

.info-dialog {
  width: min(980px, calc(100vw - 40px));
  max-width: none;
  max-height: calc(100svh - 40px);
  margin: auto;
  overflow: auto;
  border: 0;
  border-radius: 54px 16px 50px 20px;
  padding: 0;
  background: var(--milk);
  box-shadow: 0 40px 120px rgba(8, 22, 14, 0.34);
  color: var(--ink);
}

.info-dialog[open] {
  animation: dialog-enter 380ms cubic-bezier(0.2, 0.68, 0.25, 1);
}

.info-dialog::backdrop {
  background: rgba(9, 25, 16, 0.72);
  backdrop-filter: blur(8px);
}

.info-panel {
  position: relative;
  padding: clamp(54px, 7vw, 88px);
}

.info-heading {
  max-width: 760px;
  padding-right: 80px;
}

.info-heading h2 {
  color: var(--forest);
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.98;
}

.info-heading > p:last-child {
  max-width: 650px;
  margin-top: 26px;
  color: rgba(32, 34, 29, 0.68);
  font-size: 16px;
}

.experience-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 54px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.experience-notes article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 8px 18px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.experience-notes article > span {
  grid-row: 1 / 3;
  color: var(--moss);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.experience-notes h3 {
  color: var(--forest);
  font-size: clamp(25px, 2.5vw, 34px);
  line-height: 1.05;
}

.experience-notes p {
  color: rgba(32, 34, 29, 0.64);
  font-size: 13px;
}

.info-note {
  max-width: 650px;
  margin-top: 34px;
  color: var(--moss);
  font-size: 13px;
  line-height: 1.7;
}

.dialog-details {
  margin-top: 54px;
}

.dialog-details div {
  grid-template-columns: 175px minmax(0, 1fr);
}

.practical-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 46px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.practical-notes article > p:last-child {
  margin-top: 13px;
  color: rgba(32, 34, 29, 0.66);
  font-size: 14px;
}

.info-application-button {
  margin-top: 42px;
}

.application-dialog {
  width: min(820px, calc(100vw - 40px));
  max-width: none;
  max-height: calc(100svh - 40px);
  margin: auto;
  overflow: auto;
  border: 0;
  border-radius: 54px 16px 50px 20px;
  padding: 0;
  background: var(--milk);
  box-shadow: 0 40px 120px rgba(8, 22, 14, 0.34);
  color: var(--ink);
}

.application-dialog[open] {
  animation: dialog-enter 380ms cubic-bezier(0.2, 0.68, 0.25, 1);
}

.application-dialog::backdrop {
  background: rgba(9, 25, 16, 0.72);
  backdrop-filter: blur(8px);
}

body:has(.application-dialog[open]),
body:has(.info-dialog[open]) {
  overflow: hidden;
}

.application-panel {
  position: relative;
  padding: clamp(48px, 6vw, 76px);
}

.dialog-close {
  position: absolute;
  top: 30px;
  right: 34px;
  border: 0;
  border-bottom: 1px solid var(--forest);
  padding: 7px 0;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.application-heading {
  max-width: 740px;
  padding-right: 80px;
}

.application-heading h2 {
  color: var(--forest);
  font-size: clamp(46px, 5.5vw, 68px);
  line-height: 0.98;
}

.application-heading > p:last-child {
  max-width: 600px;
  margin-top: 28px;
  color: rgba(32, 34, 29, 0.68);
  font-size: 16px;
}

.application-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 50px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.application-form > label {
  display: grid;
  gap: 10px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 620;
  letter-spacing: 0.08em;
}

.application-form input,
.application-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(27, 57, 43, 0.3);
  border-radius: 0;
  padding: 10px 0 12px;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  letter-spacing: 0;
  resize: vertical;
  transition: border-color 260ms ease;
}

.application-form input:focus,
.application-form textarea:focus {
  border-color: var(--forest);
}

.application-form textarea {
  min-height: 110px;
  line-height: 1.55;
}

.form-wide {
  grid-column: 1 / -1;
}

.form-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.application-form .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(32, 34, 29, 0.68);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
}

.application-form .form-consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--forest);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 10px;
}

.form-actions button {
  border: 1px solid var(--forest);
  border-radius: 999px;
  padding: 15px 24px;
  background: var(--forest);
  color: var(--chalk);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 320ms ease, color 320ms ease;
}

.form-actions button:hover,
.form-actions button:focus-visible {
  background: transparent;
  color: var(--forest);
}

.form-actions > span {
  color: var(--moss);
  font-size: 11px;
}

.site-footer {
  padding: clamp(82px, 10vw, 138px) 0 42px;
  background:
    radial-gradient(circle at 8% 0%, rgba(120, 153, 126, 0.1), transparent 34rem),
    #0d1711;
  color: rgba(242, 243, 234, 0.62);
}

.site-footer-inner,
.footer-bottom {
  width: var(--page);
  margin-inline: auto;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.72fr) minmax(220px, 0.62fr);
  align-items: start;
  gap: clamp(55px, 8vw, 130px);
}

.footer-identity {
  max-width: 680px;
}

.footer-mark {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-bottom: 48px;
}

.footer-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.86;
}

.footer-kicker,
.footer-column h3 {
  margin-bottom: 22px;
  color: rgba(222, 233, 213, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-identity h2 {
  max-width: 650px;
  color: var(--chalk);
  font-size: clamp(42px, 5.2vw, 74px);
  line-height: 0.98;
}

.footer-identity > p:last-child {
  max-width: 420px;
  margin-top: 32px;
  font-size: 13px;
  line-height: 1.7;
}

.footer-ecosystem-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: rgba(242, 243, 234, 0.76);
  font-size: 12px;
  text-decoration: none;
  transition: color 280ms ease, transform 280ms ease;
}

.footer-ecosystem-link:hover,
.footer-ecosystem-link:focus-visible {
  color: var(--sage-pale);
  transform: translateX(4px);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
  padding-top: 110px;
}

.footer-column h3 {
  margin-bottom: 10px;
  color: var(--chalk);
}

.footer-column a,
.footer-column p {
  color: rgba(242, 243, 234, 0.6);
  font-size: 12px;
  line-height: 1.65;
}

.footer-column a {
  width: fit-content;
  text-decoration: none;
  transition:
    color 280ms ease,
    transform 280ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--sage-pale);
  transform: translateX(4px);
}

.footer-ethics {
  margin-top: 110px;
  padding: 32px 30px 36px;
  border: 1px solid rgba(242, 243, 234, 0.13);
  border-radius: 34px 12px 38px 16px / 26px 14px 44px 18px;
  background: rgba(242, 243, 234, 0.045);
}

.footer-conversation {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 14px;
  margin: 10px 0 4px;
  border: 1px solid rgba(222, 233, 213, 0.42);
  border-radius: 999px;
  padding: 12px 17px;
  background: rgba(222, 233, 213, 0.08);
  color: var(--chalk);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: background 280ms ease, color 280ms ease, gap 280ms ease;
}

.footer-conversation:hover,
.footer-conversation:focus-visible {
  gap: 19px;
  background: var(--sage-pale);
  color: var(--deep-forest);
}

.footer-mail {
  margin-top: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(242, 243, 234, 0.28);
  color: var(--chalk) !important;
}

.footer-address {
  display: grid;
  gap: 2px;
  margin-top: 18px;
  color: rgba(242, 243, 234, 0.38) !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: clamp(70px, 9vw, 120px);
  padding-top: 28px;
  border-top: 1px solid rgba(242, 243, 234, 0.12);
  color: rgba(242, 243, 234, 0.34);
  font-size: 10px;
  letter-spacing: 0.04em;
}

@keyframes natural-drift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.018);
  }
}

@keyframes dialog-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  :root {
    --page: min(100% - 48px, 1280px);
  }

  .site-menu {
    align-items: start;
    padding-top: 112px;
  }

  .site-menu-inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 52px;
  }

  .site-menu-side {
    max-width: 620px;
    padding-top: 32px;
    border-top: 1px solid rgba(251, 250, 245, 0.18);
  }

  .recognition,
  .weekend-heading {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 35px;
  }

  .approach {
    grid-template-columns: 0.85fr 1fr;
    gap: 60px;
  }

  .rhythm-list {
    width: calc(100% - 155px);
  }

  .return-trace {
    width: calc(100% - 155px);
  }

  .rhythm-list article {
    grid-template-columns: 48px 160px minmax(0, 1fr);
    gap: 22px;
  }

  .practice-collage {
    grid-auto-rows: 90px;
    min-height: 800px;
  }

  .practice-core {
    grid-column: 4 / 10;
  }

  .nature {
    grid-template-columns: 0.78fr 1fr;
  }

  .nature-copy {
    padding: 70px 55px;
  }

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

  .place-visual {
    max-width: 820px;
  }

  .place-copy {
    max-width: 720px;
    margin-left: auto;
  }

  .facilitator-layout {
    grid-template-columns: 1fr;
  }

  .facilitator-portraits {
    max-width: 820px;
  }

  .recognise-yourself {
    grid-template-columns: 1fr;
  }

  .not-for-you {
    max-width: 620px;
    margin-left: auto;
  }

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

  .practical-invitation {
    grid-column: 1;
    max-width: 720px;
    margin-left: auto;
  }

  .practical-details-column {
    width: min(100%, 720px);
    margin-left: auto;
  }

  .site-footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-identity {
    grid-column: 1 / -1;
  }

  .footer-column {
    padding-top: 10px;
  }

  .footer-ethics {
    margin-top: 0;
    padding: 32px 30px 36px;
  }
}

@media (max-width: 680px) {
  :root {
    --page: calc(100% - 36px);
  }

  body {
    font-size: 15px;
  }

  .section {
    padding-block: 96px;
  }

  .site-header {
    padding: 18px 0;
  }

  .site-header.is-scrolled,
  .site-header.menu-open {
    padding: 11px 0;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .brand strong {
    font-size: 10px;
  }

  .brand small {
    font-size: 8px;
  }

  .language-menu {
    gap: 1px;
  }

  .language-menu button {
    min-width: 27px;
    padding: 5px 4px;
    font-size: 8px;
    letter-spacing: 0.04em;
  }

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

  .site-menu {
    padding: 96px 0 38px;
  }

  .site-menu-inner {
    gap: 38px;
  }

  .site-menu-links a {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 9px;
    padding: 4px 0;
  }

  .site-menu-links strong {
    font-size: clamp(28px, 8.8vw, 40px);
  }

  .site-menu-side {
    padding-top: 24px;
  }

  .site-menu-side > p:not(.eyebrow) {
    font-size: 14px;
  }

  .wild-hearts-link {
    margin-top: 24px;
    padding-top: 18px;
    font-size: 9px;
  }

  .soul-thread {
    opacity: 0.7;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-video {
    object-position: 55% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 15, 11, 0.82), rgba(10, 15, 11, 0.24)),
      linear-gradient(180deg, rgba(10, 15, 11, 0.38), transparent 28%, rgba(10, 15, 11, 0.72));
  }

  .hero-copy {
    justify-content: flex-end;
    padding: 160px 0 170px;
  }

  .hero-copy h1 {
    max-width: 520px;
    font-size: clamp(56px, 17vw, 82px);
    line-height: 0.92;
  }

  .hero-intro {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-foot {
    bottom: 24px;
    align-items: flex-start;
    gap: 20px;
    line-height: 1.5;
  }

  .hero-foot p {
    max-width: 190px;
  }

  .hero-foot-actions {
    gap: 10px;
  }

  .recognition,
  .weekend-heading {
    grid-template-columns: 1fr;
  }

  .section-index {
    margin-bottom: 24px;
  }

  h2 {
    font-size: clamp(44px, 14vw, 65px);
  }

  .reading-copy {
    margin-top: 42px;
    font-size: 16px;
  }

  .breathing-space {
    min-height: 84svh;
    padding-inline: 20px;
  }

  .breathing-space h2 {
    font-size: clamp(45px, 14vw, 66px);
  }

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

  .approach-image {
    position: relative;
    top: auto;
    margin-top: 0;
  }

  .approach-image img {
    aspect-ratio: 4 / 4.6;
  }

  .approach-copy {
    padding-top: 10px;
  }

  .weekend {
    padding-top: 70px;
  }

  .weekend-heading {
    margin-bottom: 54px;
  }

  .return-trace {
    width: 100%;
    margin: 0 0 58px;
  }

  .return-trace span {
    font-size: 17px;
  }

  .rhythm-list {
    width: 100%;
  }

  .rhythm-list article {
    grid-template-columns: 42px 1fr;
    gap: 12px 18px;
    padding: 34px 0;
  }

  .rhythm-list h3 {
    font-size: 36px;
  }

  .rhythm-detail {
    grid-column: 2;
  }

  .rhythm-list p {
    font-size: 15px;
  }

  .rhythm-list .rhythm-practical {
    font-size: 9px;
  }

  .inside-weekend {
    padding-top: 48px;
  }

  .inside-heading {
    margin-bottom: 66px;
    text-align: left;
  }

  .inside-heading > p:last-child {
    margin-left: 0;
  }

  .practice-collage {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 18px;
  }

  .practice-figure,
  .practice-core {
    width: 100%;
    margin: 0;
  }

  .practice-figure {
    min-height: 360px;
    transform: none;
  }

  .practice-circle {
    order: 1;
    min-height: 480px;
    border-radius: 48px 14px 44px 18px / 34px 18px 56px 22px;
  }

  .practice-somatic {
    order: 2;
    border-radius: 18px 46px 16px 42px / 20px 34px 18px 52px;
  }

  .practice-core {
    order: 4;
    border-radius: 36px 12px 34px 16px;
    padding: 36px 24px;
    box-shadow: 0 20px 56px rgba(24, 29, 24, 0.11);
  }

  .practice-nature {
    order: 3;
    min-height: 430px;
    border-radius: 42px 14px 40px 18px / 28px 18px 48px 22px;
  }

  .practice-meal {
    order: 5;
    border-radius: 42px 14px 40px 18px / 28px 18px 48px 22px;
  }

  .practice-teaching {
    order: 6;
    min-height: 430px;
    border-radius: 18px 48px 20px 44px / 20px 36px 22px 54px;
  }

  .practice-silence {
    order: 7;
    min-height: 410px;
    border-radius: 44px 16px 40px 20px / 30px 18px 50px 24px;
  }

  .practice-figure:hover {
    transform: none;
  }

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

  .nature-image {
    min-height: 68svh;
  }

  .nature-image img {
    object-position: center 12%;
  }

  .nature-copy {
    padding: 88px 18px;
  }

  .nature-lines span {
    font-size: 23px;
  }

  .place-visual .image-shell {
    border-radius: 46px 14px 44px 18px / 34px 18px 56px 22px;
    transform: none;
  }

  .place-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .facilitator-heading {
    margin-bottom: 52px;
  }

  .facilitator-portraits {
    gap: 12px;
  }

  .facilitator-portrait:first-child {
    margin-top: 38px;
  }

  .facilitator-portrait figcaption {
    font-size: 9px;
  }

  .facilitator-portrait figcaption strong {
    font-size: 17px;
  }

  .guest-note {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 80px;
  }

  .not-for-you {
    padding: 35px 0 0;
    border-left: 0;
  }

  .afterward-copy {
    padding-block: 110px;
  }

  .afterward-lines {
    margin-top: 60px;
    font-size: 28px;
  }

  .afterward-lines span:nth-child(1) { --curve-x: 0%; }
  .afterward-lines span:nth-child(2) { --curve-x: 5%; }
  .afterward-lines span:nth-child(3) { --curve-x: 11%; }
  .afterward-lines span:nth-child(4) { --curve-x: 16%; }
  .afterward-lines span:nth-child(5) { --curve-x: 7%; }

  .practical-details-button {
    border-radius: 30px;
    padding: 17px 19px;
  }

  .details div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .details dd {
    font-size: 20px;
  }

  .practical-invitation {
    align-items: flex-start;
    flex-direction: column;
    margin-left: 0;
    padding-top: 20px;
  }

  .welcome {
    min-height: 90svh;
    padding-inline: 20px;
  }

  .welcome-inner h2 {
    font-size: clamp(48px, 15vw, 70px);
  }

  .application-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100svh - 20px);
    border-radius: 30px 10px 28px 12px;
  }

  .info-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100svh - 20px);
    border-radius: 30px 10px 28px 12px;
  }

  .application-panel {
    padding: 76px 24px 42px;
  }

  .info-panel {
    padding: 76px 24px 42px;
  }

  .dialog-close {
    top: 22px;
    right: 24px;
  }

  .application-heading {
    padding-right: 0;
  }

  .info-heading {
    padding-right: 0;
  }

  .application-heading h2 {
    font-size: clamp(45px, 13vw, 62px);
  }

  .info-heading h2 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .experience-notes,
  .practical-notes {
    grid-template-columns: 1fr;
  }

  .experience-notes article {
    padding: 24px 18px;
  }

  .dialog-details div {
    grid-template-columns: 1fr;
  }

  .application-form {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 48px;
    padding-top: 34px;
  }

  .form-wide {
    grid-column: auto;
  }

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

  .site-footer {
    padding-top: 76px;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 54px;
  }

  .footer-identity {
    grid-column: auto;
  }

  .footer-mark {
    width: 50px;
    height: 50px;
    margin-bottom: 38px;
  }

  .footer-identity h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .footer-column,
  .footer-ethics {
    padding: 0;
  }

  .footer-ethics {
    padding: 28px 24px 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 70px;
  }
}

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

  .image-shell img,
  .practice-figure,
  .practice-figure img,
  .nature-image img,
  .application-dialog[open],
  .info-dialog[open] {
    animation: none;
    transition: none;
  }
}
