:root {
  --rd-paper: #f3efe6;
  --rd-paper-light: #fbfaf6;
  --rd-stone: #ded8cd;
  --rd-ink: #222a25;
  --rd-ink-soft: #626c64;
  --rd-field: #35493e;
  --rd-field-deep: #17251e;
  --rd-moss: #788477;
  --rd-ochre: #a36f4d;
  --rd-clay: #8c5f49;
  --rd-line: rgba(34, 42, 37, 0.18);
  --rd-line-light: rgba(251, 250, 246, 0.2);
  --rd-white: #fffef9;
  --rd-serif: "Source Serif 4", Georgia, serif;
  --rd-sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --rd-shell: min(1320px, calc(100vw - 96px));
  --rd-reading: 760px;
  --rd-header: 84px;
  --rd-section: clamp(112px, 12vw, 188px);
  --rd-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--rd-header) + 28px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--rd-paper);
  color: var(--rd-ink);
  font-family: var(--rd-sans);
  font-size: 16.5px;
  font-weight: 400;
  letter-spacing: -0.006em;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

body.rd-nav-open {
  overflow: hidden;
}

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

figure,
blockquote,
dl,
dd {
  margin: 0;
}

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

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid #c48359;
  outline-offset: 4px;
}

::selection {
  background: #c9d0c3;
  color: var(--rd-ink);
}

.rd-skip {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 15px;
  color: #111;
  background: #fff;
  text-decoration: none;
  transform: translateY(-160%);
}

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

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

.rd-reading {
  width: min(var(--rd-reading), calc(100vw - 40px));
  margin-inline: auto;
}

.rd-section {
  position: relative;
  padding: var(--rd-section) 0;
}

.rd-label {
  margin: 0 0 22px;
  color: currentColor;
  font-family: var(--rd-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.rd-label::before {
  display: inline-block;
  width: 34px;
  height: 1px;
  margin: 0 14px 3px 0;
  background: currentColor;
  content: "";
  opacity: 0.55;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--rd-serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
}

h2 {
  max-width: 1050px;
  font-size: clamp(47px, 6.5vw, 92px);
}

h3 {
  font-size: clamp(27px, 3vw, 43px);
  line-height: 1.05;
}

.rd-lead,
.rd-hero-lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--rd-ink-soft);
  font-size: clamp(18px, 1.6vw, 23px);
  font-weight: 300;
  line-height: 1.58;
  letter-spacing: -0.018em;
}

.rd-prose {
  max-width: 720px;
  color: var(--rd-ink-soft);
}

.rd-prose p {
  margin: 0 0 1.55em;
}

.rd-prose p:last-child {
  margin-bottom: 0;
}

.rd-prose--large {
  color: var(--rd-ink);
  font-family: var(--rd-serif);
  font-size: clamp(23px, 2.2vw, 32px);
  font-weight: 300;
  line-height: 1.48;
  letter-spacing: -0.023em;
}

.rd-chapter-head {
  max-width: 1120px;
  margin-bottom: clamp(72px, 8vw, 120px);
}

.rd-chapter-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(190px, 0.35fr) minmax(0, 1fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: start;
}

.rd-chapter-head--split > .rd-label {
  margin-top: 12px;
}

.rd-actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rd-button {
  position: relative;
  min-height: 52px;
  padding: 13px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rd-ink);
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 0 15px 0 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: color 240ms ease, background 240ms ease, border-color 240ms ease, transform 240ms var(--rd-ease);
}

.rd-button::after {
  width: 18px;
  height: 1px;
  margin-left: 13px;
  background: currentColor;
  content: "";
  transition: width 240ms var(--rd-ease);
}

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

.rd-button:hover::after {
  width: 26px;
}

.rd-button--dark {
  color: var(--rd-paper-light);
  background: var(--rd-field-deep);
  border-color: var(--rd-field-deep);
}

.rd-button--light {
  color: var(--rd-field-deep);
  background: var(--rd-paper-light);
  border-color: var(--rd-paper-light);
}

.rd-button--line {
  color: inherit;
}

/* District header and menu */

.rd-header {
  position: fixed;
  z-index: 130;
  inset: 0 0 auto;
  height: var(--rd-header);
  color: var(--rd-ink);
  background: color-mix(in srgb, var(--rd-paper) 84%, transparent);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: background 300ms ease, border-color 300ms ease;
}

.rd-header.is-scrolled,
.rd-header.is-menu-open {
  background: color-mix(in srgb, var(--rd-paper-light) 96%, transparent);
  border-color: var(--rd-line);
}

.rd-header__inner {
  width: var(--rd-shell);
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.rd-brand img {
  width: 38px;
  height: 43px;
  flex: 0 0 auto;
  object-fit: contain;
}

.rd-brand > span {
  display: grid;
  gap: 4px;
  line-height: 1.08;
}

.rd-brand strong {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.012em;
}

.rd-brand small {
  color: var(--rd-ink-soft);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.rd-header__links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.rd-header__links > a {
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}

.rd-header__links > a::after {
  display: block;
  width: 0;
  height: 1px;
  margin-top: 3px;
  background: currentColor;
  content: "";
  transition: width 220ms ease;
}

.rd-header__links > a:hover::after,
.rd-header__links > a:focus-visible::after {
  width: 100%;
}

.rd-menu-button {
  width: 46px;
  height: 46px;
  padding: 0;
  display: grid;
  place-content: center;
  gap: 6px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
}

.rd-menu-button span {
  width: 18px;
  height: 1px;
  display: block;
  background: currentColor;
  transition: opacity 220ms ease, transform 220ms ease;
}

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

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

.rd-menu {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--rd-ink);
  background:
    radial-gradient(circle at 86% 14%, rgba(120, 132, 119, 0.16), transparent 28%),
    var(--rd-paper-light);
  visibility: hidden;
  opacity: 0;
  transition: opacity 320ms ease, visibility 320ms ease;
}

.rd-menu.is-open {
  visibility: visible;
  opacity: 1;
}

.rd-menu__inner {
  width: min(1080px, calc(100vw - 64px));
  padding-top: var(--rd-header);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: end;
}

.rd-menu__primary,
.rd-menu__secondary {
  display: grid;
}

.rd-menu__primary a,
.rd-menu__secondary a {
  text-decoration: none;
  border-bottom: 1px solid var(--rd-line);
}

.rd-menu__primary a {
  padding: 12px 0;
  font-family: var(--rd-serif);
  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.rd-menu__secondary a {
  padding: 13px 0;
  color: var(--rd-ink-soft);
  font-size: 13px;
}

.rd-menu a:hover,
.rd-menu a:focus-visible {
  color: var(--rd-ochre);
}

/* Ruben homepage hero */

.rd-profile-hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--rd-header);
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(470px, 0.97fr);
  background:
    radial-gradient(circle at 4% 88%, rgba(163, 111, 77, 0.08), transparent 30%),
    var(--rd-paper);
}

.rd-profile-hero__copy {
  padding: clamp(90px, 11vh, 132px) clamp(48px, 6.8vw, 112px) clamp(72px, 10vh, 120px) max(48px, calc((100vw - 1320px) / 2));
  align-self: center;
}

.rd-profile-hero h1 {
  max-width: 760px;
  font-size: clamp(64px, 7.4vw, 118px);
  font-weight: 300;
  line-height: 0.91;
  overflow-wrap: break-word;
}

.rd-profile-hero__portrait {
  position: relative;
  min-height: calc(100svh - var(--rd-header));
  overflow: hidden;
  background: var(--rd-stone);
}

.rd-profile-hero__portrait::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 64%, rgba(15, 25, 19, 0.54));
  content: "";
  pointer-events: none;
}

.rd-profile-hero__portrait img {
  width: 100%;
  height: 100%;
  min-height: calc(100svh - var(--rd-header));
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(0.82) contrast(0.97);
}

.rd-profile-hero__portrait figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(25px, 4vw, 54px);
  left: clamp(24px, 4vw, 58px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rd-profile-hero__aside {
  position: absolute;
  bottom: 34px;
  left: 26px;
  margin: 0;
  color: var(--rd-ink-soft);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left bottom;
}

/* Human story and road */

.rd-orientation {
  background:
    linear-gradient(90deg, transparent 0 49.94%, rgba(34, 42, 37, 0.04) 50%, transparent 50.06%),
    var(--rd-paper-light);
}

.rd-human-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(420px, 1.26fr);
  gap: clamp(64px, 10vw, 150px);
  align-items: center;
}

.rd-human-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 0 44px 0 0;
  background: var(--rd-stone);
}

.rd-human-portrait::before {
  position: absolute;
  z-index: 2;
  inset: 22px auto auto 22px;
  width: 52px;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
  content: "";
}

.rd-human-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  filter: saturate(0.82) contrast(0.96);
}

.rd-landscape-note {
  position: relative;
  margin-top: clamp(90px, 12vw, 170px);
  aspect-ratio: 16 / 7.6;
  overflow: hidden;
  background: var(--rd-field);
}

.rd-landscape-note img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(0.82) contrast(0.95);
}

.rd-landscape-note figcaption,
.rd-road-image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 11px 17px;
  color: var(--rd-paper-light);
  background: var(--rd-field-deep);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rd-road {
  background: var(--rd-paper);
}

.rd-road-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
  gap: clamp(70px, 11vw, 160px);
  align-items: start;
}

.rd-road-grid .rd-prose {
  padding-top: 30px;
  font-size: clamp(18px, 1.65vw, 22px);
}

.rd-road-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 42px 0 0 0;
  background: var(--rd-stone);
}

.rd-road-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.72) contrast(0.98);
}

/* Cinematic pause and qualities */

.rd-field-pause {
  position: relative;
  min-height: clamp(560px, 70vw, 900px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--rd-white);
  background: var(--rd-field-deep);
}

.rd-field-pause > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(0.9);
  transform: scale(1.015);
}

.rd-field-pause::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 24, 18, 0.24), rgba(13, 24, 18, 0.56)),
    rgba(20, 35, 27, 0.18);
  content: "";
}

.rd-field-pause blockquote {
  position: relative;
  z-index: 1;
  width: min(1060px, calc(100vw - 48px));
  font-family: var(--rd-serif);
  font-size: clamp(45px, 7vw, 100px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-align: center;
  text-wrap: balance;
}

.rd-qualities {
  background: var(--rd-paper-light);
}

.rd-qualities-grid {
  display: grid;
  grid-template-columns: minmax(350px, 0.9fr) minmax(450px, 1.1fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}

.rd-qualities-intro {
  position: sticky;
  top: calc(var(--rd-header) + 30px);
}

.rd-qualities-intro h2 {
  font-size: clamp(50px, 6vw, 82px);
}

.rd-qualities-intro figure {
  margin-top: 62px;
}

.rd-qualities-intro figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.72) contrast(0.96);
}

.rd-qualities-intro figcaption {
  max-width: 540px;
  margin-top: 15px;
  color: var(--rd-ink-soft);
  font-size: 11px;
  line-height: 1.6;
}

.rd-ledger {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rd-line);
}

.rd-ledger li {
  padding: 34px 0 38px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 23px;
  border-bottom: 1px solid var(--rd-line);
}

.rd-ledger > li > span {
  padding-top: 6px;
  color: var(--rd-ochre);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.rd-ledger h3 {
  font-family: var(--rd-sans);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.rd-ledger p {
  max-width: 560px;
  margin: 11px 0 0;
  color: var(--rd-ink-soft);
  font-size: 15px;
}

/* Approach and foundations */

.rd-approach {
  color: var(--rd-paper-light);
  background:
    radial-gradient(circle at 86% 10%, rgba(120, 132, 119, 0.15), transparent 30%),
    var(--rd-field-deep);
}

.rd-approach .rd-lead {
  color: rgba(251, 250, 246, 0.68);
}

.rd-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--rd-line-light);
}

.rd-methods article {
  min-height: 270px;
  padding: clamp(34px, 4vw, 56px) clamp(24px, 4vw, 58px) clamp(34px, 4vw, 56px) 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-content: start;
  gap: 0 18px;
  border-bottom: 1px solid var(--rd-line-light);
}

.rd-methods article:nth-child(even) {
  padding-left: clamp(24px, 4vw, 58px);
  border-left: 1px solid var(--rd-line-light);
}

.rd-methods span {
  padding-top: 8px;
  color: #ba8b6d;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.rd-methods h3 {
  font-size: clamp(35px, 4vw, 56px);
  font-weight: 300;
}

.rd-methods p {
  grid-column: 2;
  max-width: 520px;
  margin: 23px 0 0;
  color: rgba(251, 250, 246, 0.68);
  font-size: 15px;
}

.rd-foundations {
  background: var(--rd-paper);
}

.rd-credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(42px, 8vw, 120px);
  border-top: 1px solid var(--rd-line);
}

.rd-foundations-image {
  position: relative;
  margin-bottom: clamp(54px, 7vw, 92px);
  aspect-ratio: 16 / 6;
  overflow: hidden;
  background: var(--rd-stone);
}

.rd-foundations-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 31%;
  filter: saturate(0.62) contrast(0.96);
}

.rd-foundations-image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 11px 17px;
  color: var(--rd-paper-light);
  background: var(--rd-field-deep);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.rd-credentials > div {
  padding: 28px 0 32px;
  border-bottom: 1px solid var(--rd-line);
}

.rd-credentials dt {
  font-size: 14px;
  font-weight: 600;
}

.rd-credentials dd {
  margin-top: 9px;
  color: var(--rd-ink-soft);
  font-size: 14px;
}

/* Work index */

.rd-ways {
  background: var(--rd-paper-light);
}

.rd-private-bridge {
  padding: clamp(32px, 4.5vw, 58px);
  display: grid;
  grid-template-columns: minmax(160px, 0.32fr) minmax(300px, 0.68fr) auto;
  gap: 32px;
  align-items: center;
  color: var(--rd-paper-light);
  background: var(--rd-field);
  text-decoration: none;
  border-radius: 0 44px 0 0;
  transition: background 260ms ease, transform 260ms var(--rd-ease);
}

.rd-private-bridge:hover {
  background: var(--rd-field-deep);
  transform: translateY(-3px);
}

.rd-private-bridge .rd-label {
  margin: 0;
}

.rd-private-bridge strong {
  font-family: var(--rd-serif);
  font-size: clamp(38px, 4.7vw, 66px);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1;
}

.rd-private-bridge strong em {
  display: block;
  margin-top: 8px;
  font-family: var(--rd-sans);
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.rd-private-bridge > span:last-child {
  max-width: 220px;
  font-size: 11px;
  line-height: 1.6;
  text-align: right;
}

.rd-private-bridge i {
  display: block;
  margin-top: 9px;
  font-size: 18px;
  font-style: normal;
}

.rd-work-index {
  margin-top: clamp(44px, 7vw, 88px);
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(500px, 1.28fr);
  gap: clamp(45px, 8vw, 110px);
  align-items: start;
}

.rd-work-index__feature {
  position: sticky;
  top: calc(var(--rd-header) + 30px);
  min-height: 520px;
  padding: clamp(32px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--rd-paper-light);
  background:
    linear-gradient(180deg, rgba(23, 37, 30, 0.02), rgba(23, 37, 30, 0.94)),
    url("/ruben/assets/ruben-facilitating.jpg") center / cover no-repeat;
  border-radius: 40px 0 0 0;
  text-decoration: none;
}

.rd-work-index__feature .rd-label {
  margin-bottom: auto;
}

.rd-work-index__feature h3 {
  font-size: clamp(48px, 5.8vw, 80px);
  font-weight: 300;
}

.rd-work-index__feature p:not(.rd-label) {
  max-width: 450px;
  margin: 20px 0 0;
  color: rgba(251, 250, 246, 0.75);
}

.rd-work-index__feature > span {
  margin-top: 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rd-work-index__list {
  border-top: 1px solid var(--rd-line);
}

.rd-work-index__list > a {
  position: relative;
  padding: 30px 54px 34px 0;
  display: grid;
  grid-template-columns: minmax(190px, 0.48fr) minmax(250px, 0.52fr);
  gap: 8px 34px;
  text-decoration: none;
  border-bottom: 1px solid var(--rd-line);
  transition: padding 220ms var(--rd-ease), color 220ms ease;
}

.rd-work-index__list > a::after {
  position: absolute;
  top: 50%;
  right: 8px;
  font-size: 18px;
  content: "→";
  transform: translateY(-50%);
}

.rd-work-index__list > a:hover {
  padding-left: 12px;
  color: var(--rd-clay);
}

.rd-work-index__list .rd-label {
  grid-column: 1 / -1;
  margin: 0 0 6px;
}

.rd-work-index__list h3 {
  font-family: var(--rd-sans);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.rd-work-index__list p {
  margin: 0;
  color: var(--rd-ink-soft);
  font-size: 14px;
}

.rd-ethics {
  background:
    radial-gradient(circle at 14% 18%, rgba(120, 132, 119, 0.12), transparent 30%),
    var(--rd-paper);
}

.rd-ethics .rd-reading {
  text-align: center;
}

.rd-ethics .rd-label::before {
  display: none;
}

.rd-ethics .rd-lead {
  margin-inline: auto;
}

.rd-ethics .rd-actions {
  justify-content: center;
}

/* Contact form */

.rd-contact,
.rd-private-contact {
  color: var(--rd-paper-light);
  background: var(--rd-field-deep);
}

.rd-contact__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(480px, 1.28fr);
  gap: clamp(70px, 11vw, 155px);
  align-items: start;
}

.rd-contact__copy {
  position: sticky;
  top: calc(var(--rd-header) + 30px);
}

.rd-contact__copy h2 {
  font-size: clamp(48px, 5.7vw, 78px);
}

.rd-contact__copy > p:not(.rd-label) {
  max-width: 520px;
  color: rgba(251, 250, 246, 0.7);
}

.rd-contact__copy a {
  color: var(--rd-paper-light);
}

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

.rd-field {
  display: grid;
  gap: 7px;
}

.rd-field--full {
  grid-column: 1 / -1;
}

.rd-field label {
  font-size: 12px;
  font-weight: 500;
}

.rd-field input,
.rd-field select,
.rd-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 0;
  color: var(--rd-paper-light);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rd-line-light);
  border-radius: 0;
  outline: 0;
}

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

.rd-field select option {
  color: var(--rd-ink);
}

.rd-field input:focus,
.rd-field select:focus,
.rd-field textarea:focus {
  border-color: #d4ad92;
  box-shadow: 0 1px 0 #d4ad92;
}

.rd-field input::placeholder,
.rd-field textarea::placeholder {
  color: rgba(251, 250, 246, 0.42);
}

.rd-field-error {
  min-height: 17px;
  color: #e7bda7;
  font-size: 11px;
}

.rd-form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(251, 250, 246, 0.56);
  font-size: 11px;
}

.rd-honeypot {
  position: absolute;
  left: -10000px;
}

.rd-contact .form-confirmation {
  max-width: none;
  margin: 0;
  font-family: var(--rd-sans);
  background: var(--rd-paper);
}

.rd-contact .form-confirmation__title {
  font-family: var(--rd-serif);
  font-weight: 400;
}

/* Private Work */

.rd-private-hero {
  min-height: 100svh;
  padding-top: var(--rd-header);
  display: grid;
  grid-template-columns: minmax(460px, 0.92fr) minmax(0, 1.08fr);
  background: var(--rd-paper);
}

.rd-private-hero__image {
  position: relative;
  min-height: calc(100svh - var(--rd-header));
  overflow: hidden;
  background: var(--rd-field);
}

.rd-private-hero__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(15, 28, 20, 0.48));
  content: "";
}

.rd-private-hero__image img {
  width: 100%;
  height: 100%;
  min-height: calc(100svh - var(--rd-header));
  object-fit: cover;
  object-position: 36% center;
  filter: saturate(0.72) contrast(0.95);
}

.rd-private-hero__image figcaption {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 28px;
  left: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.rd-private-hero__copy {
  padding: clamp(88px, 11vh, 132px) max(48px, calc((100vw - 1320px) / 2)) clamp(70px, 9vh, 110px) clamp(58px, 7.6vw, 118px);
  align-self: center;
}

.rd-private-hero h1 {
  max-width: 780px;
  font-size: clamp(62px, 7vw, 108px);
  font-weight: 300;
  line-height: 0.93;
}

.rd-private-intro {
  background: var(--rd-paper-light);
}

.rd-private-intro__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(450px, 1.18fr);
  gap: clamp(70px, 11vw, 160px);
  align-items: start;
}

.rd-private-intro h2 {
  font-size: clamp(52px, 6.4vw, 88px);
}

.rd-pathways {
  background: var(--rd-paper);
}

.rd-pathways__head {
  padding: var(--rd-section) 0 clamp(88px, 10vw, 150px);
}

.rd-pathways__head .rd-lead {
  max-width: 670px;
}

.rd-pathway-chapter {
  min-height: min(880px, 94svh);
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(430px, 0.94fr);
  background: var(--rd-paper-light);
  border-top: 1px solid var(--rd-line);
}

.rd-pathway-chapter--reverse {
  grid-template-columns: minmax(430px, 0.94fr) minmax(0, 1.06fr);
}

.rd-pathway-chapter--reverse figure {
  order: 2;
}

.rd-pathway-chapter figure {
  position: relative;
  min-height: min(880px, 94svh);
  overflow: hidden;
  background: var(--rd-stone);
}

.rd-pathway-chapter figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(15, 25, 19, 0.4));
  content: "";
}

.rd-pathway-chapter figure img {
  width: 100%;
  height: 100%;
  min-height: min(880px, 94svh);
  object-fit: cover;
  filter: saturate(0.74) contrast(0.96);
  transition: transform 1.2s var(--rd-ease);
}

.rd-pathway-chapter:hover figure img {
  transform: scale(1.025);
}

.rd-pathway-chapter figure > span {
  position: absolute;
  z-index: 1;
  right: clamp(24px, 4vw, 56px);
  bottom: clamp(20px, 4vw, 48px);
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--rd-serif);
  font-size: clamp(54px, 8vw, 112px);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1;
}

.rd-pathway-chapter--somatic figure img {
  object-position: center 44%;
}

.rd-pathway-chapter--path figure img {
  object-position: 50% center;
}

.rd-pathway-chapter--intimacy figure img {
  object-position: center;
}

.rd-pathway-chapter__copy {
  padding: clamp(70px, 9vw, 140px);
  align-self: center;
}

.rd-pathway-chapter__copy h3 {
  font-size: clamp(58px, 7.2vw, 108px);
  font-weight: 300;
  line-height: 0.92;
}

.rd-pathway-chapter__copy > p:not(.rd-label) {
  max-width: 600px;
  margin: 30px 0 0;
  color: var(--rd-ink-soft);
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.62;
}

.rd-pathway-link {
  margin-top: 46px;
  padding-bottom: 7px;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 220ms ease, padding 220ms var(--rd-ease);
}

.rd-pathway-link:hover {
  padding-right: 10px;
  color: var(--rd-clay);
}

.rd-pathway-chapter--somatic .rd-pathway-chapter__copy {
  background: #f1f2eb;
}

.rd-pathway-chapter--path .rd-pathway-chapter__copy {
  background: #eee8dc;
}

.rd-pathway-chapter--intimacy .rd-pathway-chapter__copy {
  background: #f2e9e2;
}

.rd-private-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(48px, 9vw, 140px);
  align-items: end;
}

.rd-private-contact h2 {
  max-width: 920px;
}

.rd-private-contact p:not(.rd-label) {
  max-width: 700px;
  color: rgba(251, 250, 246, 0.7);
}

.rd-private-contact .rd-button {
  min-width: 190px;
}

/* District footer */

.rd-footer {
  padding: 76px 0 28px;
  color: var(--rd-paper-light);
  background: #0f1d17;
  border-top: 1px solid var(--rd-line-light);
}

.rd-footer .rd-brand small {
  color: rgba(251, 250, 246, 0.54);
}

.rd-footer__grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, minmax(150px, 0.65fr));
  gap: clamp(30px, 5vw, 72px);
}

.rd-footer__brand p {
  max-width: 340px;
  margin: 20px 0 0;
  color: rgba(251, 250, 246, 0.6);
  font-size: 13px;
}

.rd-footer__column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.rd-footer__column h2 {
  margin-bottom: 8px;
  font-family: var(--rd-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.rd-footer__column a {
  color: rgba(251, 250, 246, 0.68);
  font-size: 12px;
  text-decoration: none;
}

.rd-footer__column a:hover,
.rd-footer__column a:focus-visible {
  color: #d4ad92;
}

.rd-ecosystem-map {
  margin-top: 58px;
  border-top: 1px solid var(--rd-line-light);
  border-bottom: 1px solid var(--rd-line-light);
}

.rd-ecosystem-map summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(251, 250, 246, 0.64);
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  list-style: none;
  text-transform: uppercase;
}

.rd-ecosystem-map summary::-webkit-details-marker {
  display: none;
}

.rd-ecosystem-map summary::after {
  color: var(--rd-paper-light);
  font-size: 18px;
  content: "+";
}

.rd-ecosystem-map[open] summary::after {
  content: "−";
}

.rd-ecosystem-map nav {
  padding: 12px 0 36px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 32px;
}

.rd-ecosystem-map nav > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.rd-ecosystem-map strong {
  margin-bottom: 4px;
  color: rgba(251, 250, 246, 0.45);
  font-size: 10px;
  font-weight: 600;
}

.rd-ecosystem-map a {
  color: rgba(251, 250, 246, 0.78);
  font-size: 11px;
  text-decoration: none;
}

.rd-ecosystem-map a:hover,
.rd-ecosystem-map a:focus-visible {
  color: #d4ad92;
}

.rd-footer__base {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(251, 250, 246, 0.42);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Motion is opt-in so content remains available without JavaScript. */

.rd-motion [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 780ms var(--rd-ease), transform 780ms var(--rd-ease);
}

.rd-motion [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  :root {
    --rd-shell: min(100% - 56px, 960px);
  }

  .rd-profile-hero,
  .rd-private-hero {
    grid-template-columns: minmax(0, 1fr) minmax(410px, 0.9fr);
  }

  .rd-profile-hero__copy,
  .rd-private-hero__copy {
    padding-right: 50px;
    padding-left: 40px;
  }

  .rd-profile-hero__aside {
    display: none;
  }

  .rd-human-grid,
  .rd-road-grid,
  .rd-qualities-grid,
  .rd-contact__grid,
  .rd-private-intro__grid {
    gap: 62px;
  }

  .rd-work-index {
    grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
    gap: 52px;
  }

  .rd-private-bridge {
    grid-template-columns: 1fr 1.6fr;
  }

  .rd-private-bridge > span:last-child {
    grid-column: 2;
    text-align: left;
  }

  .rd-pathway-chapter,
  .rd-pathway-chapter--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.85fr);
  }

  .rd-pathway-chapter--reverse {
    grid-template-columns: minmax(390px, 0.85fr) minmax(0, 1fr);
  }

  .rd-pathway-chapter__copy {
    padding: 70px 55px;
  }

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

  .rd-footer__grid > :last-child {
    grid-column: 2;
  }

  .rd-ecosystem-map nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --rd-shell: min(100% - 36px, 720px);
    --rd-header: 74px;
    --rd-section: 96px;
  }

  body {
    font-size: 16px;
  }

  .rd-header__links > a {
    display: none;
  }

  .rd-brand strong {
    font-size: 14px;
  }

  .rd-brand small {
    max-width: 260px;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    line-height: 1.3;
  }

  .rd-menu__inner {
    width: calc(100vw - 40px);
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
  }

  .rd-menu__primary a {
    padding: 8px 0;
    font-size: clamp(29px, 8.6vw, 44px);
  }

  .rd-menu__secondary .rd-label {
    margin-bottom: 8px;
  }

  .rd-menu__secondary a {
    padding: 9px 0;
  }

  .rd-chapter-head--split {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .rd-chapter-head--split > .rd-label {
    margin-top: 0;
  }

  .rd-profile-hero,
  .rd-private-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .rd-profile-hero__portrait,
  .rd-private-hero__image {
    grid-row: 1;
    min-height: 0;
    height: min(45svh, 420px);
  }

  .rd-profile-hero__portrait img,
  .rd-private-hero__image img {
    min-height: 0;
    height: 100%;
  }

  .rd-profile-hero__portrait img {
    object-position: center 42%;
  }

  .rd-profile-hero__portrait figcaption span:last-child {
    display: none;
  }

  .rd-profile-hero__copy,
  .rd-private-hero__copy {
    padding: 64px 18px 80px;
  }

  .rd-profile-hero h1,
  .rd-private-hero h1 {
    font-size: clamp(54px, 15vw, 82px);
    line-height: 0.92;
  }

  .rd-profile-hero .rd-actions,
  .rd-private-hero .rd-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .rd-profile-hero .rd-button,
  .rd-private-hero .rd-button {
    width: 100%;
  }

  .rd-human-grid,
  .rd-road-grid,
  .rd-qualities-grid,
  .rd-contact__grid,
  .rd-private-intro__grid {
    grid-template-columns: 1fr;
  }

  .rd-human-portrait {
    width: min(86%, 500px);
  }

  .rd-landscape-note {
    aspect-ratio: 4 / 3;
  }

  .rd-foundations-image {
    aspect-ratio: 4 / 3;
  }

  .rd-road-image {
    width: min(82%, 480px);
    margin-left: auto;
  }

  .rd-qualities-intro,
  .rd-contact__copy,
  .rd-work-index__feature {
    position: static;
  }

  .rd-methods {
    grid-template-columns: 1fr;
  }

  .rd-methods article,
  .rd-methods article:nth-child(even) {
    min-height: 0;
    padding: 36px 0 42px;
    border-left: 0;
  }

  .rd-credentials {
    grid-template-columns: 1fr;
  }

  .rd-private-bridge {
    padding: 34px 28px;
    grid-template-columns: 1fr;
    gap: 20px;
    border-radius: 0 30px 0 0;
  }

  .rd-private-bridge > span:last-child {
    grid-column: auto;
    text-align: left;
  }

  .rd-work-index {
    grid-template-columns: 1fr;
  }

  .rd-work-index__feature {
    min-height: 480px;
  }

  .rd-work-index__list > a {
    grid-template-columns: 1fr;
  }

  .rd-field-pause {
    min-height: 620px;
  }

  .rd-field-pause blockquote {
    width: calc(100vw - 38px);
  }

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

  .rd-field--full,
  .rd-form-note {
    grid-column: auto;
  }

  .rd-pathways__head {
    padding-right: 18px;
    padding-left: 18px;
  }

  .rd-pathway-chapter,
  .rd-pathway-chapter--reverse {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .rd-pathway-chapter--reverse figure {
    order: initial;
  }

  .rd-pathway-chapter figure,
  .rd-pathway-chapter figure img {
    min-height: 0;
    height: min(68svh, 650px);
  }

  .rd-pathway-chapter__copy {
    padding: 78px 18px 88px;
  }

  .rd-pathway-chapter__copy h3 {
    font-size: clamp(58px, 18vw, 88px);
  }

  .rd-private-contact__grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .rd-private-contact .rd-button {
    width: 100%;
  }

  .rd-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .rd-footer__grid > :last-child {
    grid-column: auto;
  }

  .rd-ecosystem-map nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .rd-brand img {
    width: 32px;
    height: 38px;
  }

  .rd-brand small {
    max-width: min(214px, calc(100vw - 132px));
    font-size: 8px;
  }

  .rd-menu-button {
    width: 42px;
    height: 42px;
  }

  h2 {
    font-size: clamp(43px, 14vw, 64px);
  }

  .rd-prose--large {
    font-size: 23px;
  }

  .rd-profile-hero__portrait,
  .rd-private-hero__image {
    height: 39svh;
  }

  .rd-profile-hero__copy,
  .rd-private-hero__copy {
    padding-top: 52px;
  }

  .rd-profile-hero h1,
  .rd-private-hero h1 {
    font-size: clamp(49px, 14.5vw, 66px);
  }

  .rd-profile-hero__portrait figcaption,
  .rd-private-hero__image figcaption {
    right: 18px;
    bottom: 16px;
    left: 18px;
  }

  .rd-human-portrait,
  .rd-road-image {
    width: 100%;
  }

  .rd-field-pause {
    min-height: 540px;
  }

  .rd-field-pause blockquote {
    font-size: clamp(41px, 12.5vw, 56px);
  }

  .rd-work-index__feature {
    min-height: 430px;
    padding: 28px;
  }

  .rd-footer__grid,
  .rd-ecosystem-map nav {
    grid-template-columns: 1fr;
  }

  .rd-footer__column,
  .rd-footer__grid > :last-child {
    grid-column: auto;
  }
}

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

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

  .rd-motion [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
