:root {
  --milk: #f6f1e9;
  --paper: #fbf8f2;
  --stone: #dfd6c8;
  --clay: #9b6b4d;
  --umber: #4f382b;
  --graphite: #252321;
  --muted: #756f67;
  --line: rgba(37, 35, 33, 0.16);
  --white: #fffdf8;
  --radius: 14px;
  --max: 1200px;
  --page-gutter: 48px;
  --page-gutter-total: 96px;
  --section-title-size: clamp(38px, 5vw, 58px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--graphite);
  background:
    linear-gradient(90deg, rgba(37, 35, 33, 0.035) 1px, transparent 1px) 50% 0 / min(8.333vw, 100px) 100%,
    var(--milk);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--paper);
  background: var(--umber);
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--graphite);
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px max(var(--page-gutter), calc((100vw - var(--max)) / 2));
  background: rgba(246, 241, 233, 0.82);
  border-bottom: 1px solid rgba(37, 35, 33, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: block;
  width: 64px;
  height: auto;
  line-height: 0;
}

.brand img {
  width: 64px;
  height: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav a,
.header-action {
  text-decoration: none;
}

.nav a {
  color: rgba(37, 35, 33, 0.72);
  transition: color 180ms ease;
}

.nav a:hover {
  color: var(--graphite);
}

.header-action {
  padding: 10px 18px;
  color: var(--paper);
  background: var(--graphite);
  border-radius: 8px;
  font-size: 13px;
}

.section {
  width: min(var(--max), calc(100% - var(--page-gutter-total)));
  margin: 0 auto;
  padding: clamp(92px, 11vw, 168px) 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.8vw, 68px);
  font-weight: 400;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6.4vw, 92px);
  font-weight: 400;
}

h3 {
  font-size: clamp(30px, 4.2vw, 58px);
}

h4 {
  margin-bottom: 12px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 20px;
  color: var(--paper);
  background: var(--graphite);
  border: 1px solid var(--graphite);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.button:hover {
  color: var(--graphite);
  background: transparent;
  transform: translateY(-2px);
}

.button__icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: currentColor;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(300px, 0.35fr);
  align-items: stretch;
  min-height: auto;
  column-gap: clamp(42px, 7vw, 96px);
  row-gap: clamp(8px, 1.5vw, 18px);
  padding-top: 112px;
  padding-bottom: clamp(12px, 2vw, 22px);
}

.hero__text {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.hero__roles {
  margin-bottom: 14px;
  font-size: clamp(16px, 1.8vw, 24px);
  line-height: 1.14;
}

.hero__intro {
  max-width: 500px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 15px;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 760px;
  margin-top: clamp(28px, 3.6vw, 48px);
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.hero__proof article {
  display: grid;
  align-content: start;
  justify-items: start;
  min-width: 0;
  text-align: left;
}

.hero__proof h2 {
  margin-bottom: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero__proof p,
.hero__proof ul {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.42;
}

.hero__proof ul {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__proof li {
  max-width: 230px;
}

.hero__media {
  display: grid;
  align-content: start;
  justify-self: end;
  width: min(35vw, 440px);
}

.hero__image {
  position: relative;
  width: 100%;
  margin: 0;
  padding: clamp(14px, 1.6vw, 20px);
  background: rgba(255, 253, 248, 0.64);
  border: 1px solid rgba(255, 253, 248, 0.66);
  border-radius: calc(var(--radius) + 10px);
  box-shadow:
    0 22px 70px rgba(49, 43, 36, 0.12),
    0 0 42px rgba(255, 253, 248, 0.45) inset;
  backdrop-filter: blur(8px);
}

.hero__image::after {
  content: none;
}

.hero__portrait {
  width: 100%;
  aspect-ratio: 3 / 3.08;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero__photo-quote {
  position: relative;
  width: 100%;
  margin: clamp(4px, 0.8vw, 10px) 0 0;
  padding: clamp(22px, 1.9vw, 28px) 0 clamp(30px, 2.4vw, 38px);
  color: var(--graphite);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 1.15vw, 18px);
  font-style: italic;
  line-height: 1.28;
  text-shadow: none;
}

.hero__photo-quote p {
  width: 100%;
  margin: 0;
}

.hero__photo-quote img {
  position: absolute;
  right: clamp(-6px, -0.4vw, -2px);
  bottom: clamp(-16px, -1vw, -10px);
  width: clamp(54px, 5.2vw, 72px);
  opacity: 0.88;
  pointer-events: none;
}

.hero__photo-quote::after {
  content: "";
  position: absolute;
  left: clamp(44px, 4vw, 58px);
  top: clamp(16px, 1.5vw, 22px);
  width: clamp(58px, 5vw, 78px);
  height: 1px;
  background: rgba(37, 35, 33, 0.28);
}

.hero__photo-quote::before {
  content: "“";
  position: absolute;
  left: clamp(-10px, -0.7vw, -4px);
  top: clamp(-34px, -2.4vw, -24px);
  color: rgba(37, 35, 33, 0.35);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(72px, 7vw, 94px);
  line-height: 1;
}

.dossier {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
}

.dossier article,
.process__grid article {
  min-width: 0;
  min-height: 360px;
  padding: clamp(28px, 4vw, 46px);
  background: rgba(255, 253, 248, 0.58);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.dossier span,
.process__grid span {
  display: block;
  margin-bottom: 76px;
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.dossier h2,
.process__grid h3 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 400;
  overflow-wrap: anywhere;
}

.dossier p,
.process__grid p,
.formats p,
.education-list,
.faq p,
.contacts dd {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-heading p {
  max-width: 620px;
  color: var(--muted);
}

.process {
  width: min(var(--max), calc(100% - var(--page-gutter-total)));
  padding: clamp(24px, 3vw, 40px) 0 clamp(18px, 2.2vw, 30px);
}

.process .section-heading {
  max-width: none;
  margin-bottom: clamp(16px, 2vw, 28px);
}

.process .section-heading h2 {
  margin-bottom: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: var(--section-title-size);
}

.process__lead {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.42;
}

.process__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(260px, 0.38fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: stretch;
}

.process__content {
  display: grid;
  gap: clamp(18px, 2.2vw, 30px);
}

.process__side {
  display: grid;
  justify-self: end;
  width: min(100%, 560px);
}

.process__action {
  display: grid;
  gap: clamp(14px, 1.7vw, 22px);
  align-content: start;
  justify-self: end;
  width: min(100%, 420px);
  padding: clamp(12px, 1.3vw, 16px) 0;
  border-top: 1px solid rgba(45, 41, 37, 0.28);
  border-bottom: 1px solid rgba(45, 41, 37, 0.28);
}

.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(10px, 1.4vw, 18px);
  align-items: center;
  width: 100%;
}

.process__grid article {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  height: 100%;
  min-height: 122px;
  padding: clamp(12px, 1.3vw, 16px) 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(45, 41, 37, 0.28);
  border-bottom: 1px solid rgba(45, 41, 37, 0.28);
  border-radius: 0;
}

.process__grid span {
  position: static;
  justify-self: end;
  margin: 0;
  color: rgba(137, 94, 70, 0.68);
  font-size: clamp(20px, 2.4vw, 32px);
  font-style: italic;
  line-height: 0.8;
}

.process__grid h3 {
  max-width: none;
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(24px, 1.9vw, 29px);
  font-weight: 400;
  line-height: 1.08;
  white-space: nowrap;
}

.process__grid p {
  max-width: 680px;
  margin-top: 0;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.42;
}

.process__arrow {
  position: relative;
  display: grid;
  width: clamp(30px, 3vw, 40px);
  height: 16px;
  place-items: center;
  color: var(--clay);
  border: 0;
}

.process__arrow::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(137, 94, 70, 0.44);
}

.process__arrow::before {
  content: "→";
  position: relative;
  z-index: 1;
  padding: 0 8px;
  background: var(--milk);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1;
}

.meta,
.price {
  color: var(--umber);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 700;
}

.process__button {
  width: 100%;
  margin-top: 0;
}

.formats {
  width: 100%;
  max-width: none;
  padding: clamp(28px, 3.4vw, 46px) 0 clamp(18px, 2.2vw, 30px);
  padding-right: max(var(--page-gutter), calc((100vw - var(--max)) / 2));
  padding-left: max(var(--page-gutter), calc((100vw - var(--max)) / 2));
  color: var(--paper);
  background: linear-gradient(135deg, #252321 0%, #302821 100%);
}

.formats__intro {
  width: 100%;
  margin: 0 auto 12px;
}

.formats__intro h2 {
  max-width: 680px;
  margin-bottom: 6px;
  color: var(--paper);
  font-size: var(--section-title-size);
}

.formats__intro p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.formats__layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.34fr) minmax(0, 1fr);
  gap: clamp(28px, 4.4vw, 62px);
  align-items: start;
}

.formats__layout > * {
  min-width: 0;
}

.format-tabs {
  position: sticky;
  top: 110px;
  align-self: start;
  display: grid;
  gap: 0;
  padding-top: 4px;
  border-top: 1px solid rgba(251, 248, 242, 0.24);
}

.tab {
  position: relative;
  width: 100%;
  min-height: 0;
  padding: 15px 0;
  color: rgba(251, 248, 242, 0.48);
  font-size: clamp(24px, 1.9vw, 29px);
  font-weight: 400;
  line-height: 1.08;
  text-align: left;
  white-space: nowrap;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(251, 248, 242, 0.16);
  border-radius: 0;
  cursor: pointer;
  transition: color 180ms ease;
}

.tab:hover,
.tab.is-active {
  color: var(--paper);
  background: transparent;
}

.tab:focus-visible,
.format-card summary:focus-visible {
  outline: 0;
}

.tab:focus-visible {
  color: var(--paper);
}

.format-panels {
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.panel {
  animation: panelIn 380ms var(--ease);
}

.panel__index {
  display: none;
  margin-bottom: 0;
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.formats h4,
.formats h5 {
  color: rgba(251, 248, 242, 0.84);
}

.panel h3 {
  max-width: 700px;
  margin-bottom: clamp(10px, 1.6vw, 20px);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1.02;
  color: var(--paper);
}

.lede {
  display: inline;
  padding: 0.3em 0.84em 0.36em;
  color: #252321;
  background: linear-gradient(transparent 18%, rgba(251, 248, 242, 0.3) 18%, rgba(251, 248, 242, 0.3) 86%, transparent 86%);
  font-size: clamp(17px, 1.65vw, 22px);
  font-weight: 700;
  line-height: 1.32;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.panel > p:not(.panel__index) {
  max-width: 660px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(251, 248, 242, 0.68);
}

.panel > .lede {
  display: inline-block;
  margin-bottom: 14px;
  padding: 0;
  color: rgba(251, 248, 242, 0.46);
  background: transparent;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(9px, 0.78vw, 11px);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.format-subsections {
  display: grid;
  gap: 0;
}

.format-card {
  position: relative;
  display: block;
  padding: 0;
  border-top: 1px solid rgba(251, 248, 242, 0.24);
}

.format-card:first-child {
  border-top: 1px solid rgba(251, 248, 242, 0.24);
}

.format-card summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(124px, auto);
  column-gap: clamp(18px, 3vw, 48px);
  row-gap: 0;
  align-items: start;
  padding: clamp(12px, 1.5vw, 18px) 34px clamp(12px, 1.5vw, 18px) 0;
  cursor: pointer;
  list-style: none;
  transition: color 180ms ease, background 180ms ease;
}

.format-card summary::-webkit-details-marker {
  display: none;
}

.format-card summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  color: rgba(251, 248, 242, 0.54);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 180ms ease, color 180ms ease;
}

.format-card[open] summary::after {
  content: "−";
  color: var(--paper);
}

.format-card summary:hover::after,
.format-card summary:focus-visible::after {
  color: var(--paper);
}

.format-card summary:focus-visible {
  box-shadow: inset 0 -1px 0 rgba(251, 248, 242, 0.62);
}

.format-card h4 {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: none;
  overflow-wrap: normal;
}

.format-card h5 {
  margin: 12px 0 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.format-card .lede {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 12px;
  padding: 0.34em 0.72em 0.38em;
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.22;
}

.format-card summary .lede,
.format-card summary .price {
  margin: 0;
}

.format-card summary .lede {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
  margin-top: 3px;
  padding: 0;
  color: rgba(251, 248, 242, 0.46);
  background: transparent;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(9px, 0.78vw, 11px);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.formats .panel > .lede,
.format-card summary .lede {
  font-size: clamp(9px, 0.78vw, 11px);
  font-weight: 600;
  line-height: 1.2;
}

.format-card summary .price {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: end;
  color: rgba(208, 164, 135, 0.88);
  font-size: clamp(11px, 0.92vw, 13px);
  white-space: nowrap;
}

.format-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  column-gap: 0;
  padding: 0 34px clamp(16px, 2vw, 24px) 0;
  animation: panelIn 260ms var(--ease);
}

.format-card__body > * {
  grid-column: 1;
}

.format-card__body p {
  max-width: none;
  margin: 0 0 10px;
  color: rgba(251, 248, 242, 0.68);
  font-size: 13.5px;
  line-height: 1.46;
}

.format-card__body .format-card__hint {
  max-width: none;
  margin: 2px 0 8px;
  color: rgba(251, 248, 242, 0.54);
  font-size: 11.5px;
  font-style: italic;
  line-height: 1.35;
}

.business-site-note a {
  color: rgba(251, 248, 242, 0.9);
  text-decoration: underline;
  text-decoration-color: rgba(208, 164, 135, 0.78);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.panel > .lede + p {
  margin-top: 10px;
}

.format-card > .lede + p {
  margin-top: 12px;
}

.split-list,
.request-grid,
.compact-grid {
  display: block;
  max-width: none;
  padding-left: 1.1em;
  margin: 10px 0 14px;
  color: rgba(251, 248, 242, 0.7);
  list-style: disc;
}

.split-list li,
.request-grid li,
.compact-grid li {
  padding: 0;
  margin: 4px 0;
  font-size: 14px;
  line-height: 1.46;
  border: 0;
}

.split-list li strong {
  display: block;
  margin-bottom: 2px;
  color: rgba(251, 248, 242, 0.9);
  font-weight: 700;
}

.request-grid strong {
  color: rgba(251, 248, 242, 0.9);
  font-weight: 600;
}

.formats .button {
  color: var(--graphite);
  background: var(--paper);
  border-color: var(--paper);
  border-radius: 8px;
}

.formats .button:hover {
  background: #ffffff;
}

.formats .price {
  color: #d0a487;
}

.approach {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-top: clamp(34px, 4.2vw, 60px);
  padding-right: max(var(--page-gutter), calc((100vw - var(--max)) / 2));
  padding-bottom: clamp(34px, 4.2vw, 60px);
  padding-left: max(var(--page-gutter), calc((100vw - var(--max)) / 2));
  color: var(--paper);
  background: linear-gradient(135deg, #252321 0%, #312820 100%);
  display: grid;
  align-content: center;
  justify-items: center;
}

.approach__spread {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 108px);
  align-items: start;
  width: min(var(--max), 100%);
}

.principles-spread {
  width: 100%;
  padding: clamp(20px, 3.2vw, 38px) 0;
  border-top: 1px solid rgba(251, 248, 242, 0.34);
  border-bottom: 1px solid rgba(251, 248, 242, 0.34);
}

.principles-spread__heading {
  display: block;
  padding-bottom: clamp(14px, 2vw, 22px);
  border-bottom: 1px solid rgba(251, 248, 242, 0.22);
}

.principles-spread h2 {
  position: relative;
  max-width: 13ch;
  margin: 0;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5.4vw, 68px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
}

.principles-spread h2::before {
  content: "“";
  position: absolute;
  left: -0.58em;
  top: -0.2em;
  color: rgba(251, 248, 242, 0.42);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25em;
  line-height: 1;
}

.principles-line {
  max-width: 100%;
  margin: clamp(14px, 2vw, 22px) 0 0;
  color: rgba(251, 248, 242, 0.78);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(10px, 1.1vw, 13px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.belief {
  padding: clamp(20px, 3.2vw, 38px) 0;
  border-top: 1px solid rgba(251, 248, 242, 0.34);
  border-bottom: 1px solid rgba(251, 248, 242, 0.34);
}

.belief h2 {
  max-width: 100%;
  margin: 0;
  padding-bottom: clamp(14px, 2vw, 22px);
  color: var(--paper);
  font-size: clamp(34px, 5.4vw, 68px);
  line-height: 0.92;
  border-bottom: 1px solid rgba(251, 248, 242, 0.22);
}

.belief__text {
  display: grid;
  gap: clamp(9px, 1.2vw, 13px);
  max-width: 760px;
  margin-top: clamp(14px, 2vw, 22px);
}

.belief__text p {
  margin: 0;
  color: rgba(251, 248, 242, 0.76);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.18;
}

.method {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(20px, 2.8vw, 38px) max(var(--page-gutter), calc((100vw - var(--max)) / 2));
  color: var(--graphite);
  background: var(--milk);
}

.method__content {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: clamp(14px, 1.9vw, 24px) 0;
  border-top: 1px solid rgba(37, 35, 33, 0.22);
  border-bottom: 1px solid rgba(37, 35, 33, 0.18);
}

.method h2 {
  max-width: 980px;
  margin: 0 0 clamp(8px, 1.2vw, 14px);
  color: var(--graphite);
  font-size: var(--section-title-size);
  line-height: 0.96;
}

.method__details {
  display: block;
}

.method__details summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(10px, 1.5vw, 18px);
  align-items: center;
  width: 100%;
  padding: clamp(8px, 1vw, 12px) 0;
  color: rgba(37, 35, 33, 0.72);
  font-size: clamp(11px, 0.82vw, 13px);
  font-weight: 600;
  letter-spacing: 0.12em;
  list-style: none;
  text-transform: uppercase;
  cursor: pointer;
}

.method__details summary::-webkit-details-marker {
  display: none;
}

.method__details summary::after {
  content: "+";
  color: var(--graphite);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 400;
  line-height: 1;
}

.method__details summary::before {
  content: "";
  height: 1px;
  background: rgba(37, 35, 33, 0.22);
}

.method__details[open] summary::after {
  content: "−";
}

.method__body {
  padding-top: clamp(10px, 1.4vw, 16px);
}

.method__text {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 42px);
  max-width: 1120px;
}

.method__text p,
.method__closing {
  margin: 0;
  color: rgba(37, 35, 33, 0.68);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.42;
}

.method__text strong {
  color: var(--graphite);
  font-weight: 600;
}

.method__text p:last-child {
  grid-column: 1 / -1;
  max-width: 940px;
}

.method__triad {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.8vw, 38px);
  margin: clamp(18px, 2.6vw, 30px) 0;
}

.method__triad article {
  padding-top: clamp(10px, 1.1vw, 14px);
  border-top: 1px solid rgba(37, 35, 33, 0.2);
}

.method__triad h3 {
  margin: 0 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.8vw, 26px);
  font-weight: 400;
  line-height: 1;
}

.method__triad p {
  margin: 0;
  color: rgba(37, 35, 33, 0.58);
  font-size: clamp(13px, 0.9vw, 15px);
  line-height: 1.32;
}

.method__closing {
  max-width: 900px;
  color: rgba(37, 35, 33, 0.76);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.22;
}

.experience {
  position: relative;
  display: block;
  padding-top: clamp(20px, 2.8vw, 36px);
  padding-bottom: clamp(18px, 2.4vw, 32px);
  border-top: 1px solid rgba(37, 35, 33, 0.22);
  border-bottom: 0;
}

.experience__image {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  margin: 0;
  padding: clamp(20px, 2.4vw, 30px) clamp(8px, 1vw, 12px) clamp(8px, 1vw, 12px);
  overflow: hidden;
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid rgba(37, 35, 33, 0.14);
  border-radius: calc(var(--radius) + 6px);
  box-shadow:
    14px 14px 0 rgba(223, 214, 200, 0.7),
    0 22px 60px rgba(49, 43, 36, 0.12);
}

.experience__image img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4.05;
  object-fit: cover;
  object-position: center 18%;
  border-radius: var(--radius);
  transform: scale(1.22);
  transform-origin: center 18%;
}

.experience__title {
  max-width: 860px;
  margin: 0 0 clamp(14px, 1.9vw, 24px);
  font-size: var(--section-title-size);
}

.experience__intro {
  max-width: 1180px;
  margin: 0 0 clamp(22px, 3vw, 38px);
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.32vw, 20px);
  line-height: 1.24;
}

.experience__content {
  width: 100%;
}

.experience__tracks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
  margin-top: 0;
  align-items: start;
}

.experience-track {
  position: relative;
  min-width: 0;
  padding: clamp(10px, 1.2vw, 16px) 0 0;
  border-top: 1px solid rgba(37, 35, 33, 0.32);
}

.experience-track::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 46px;
  height: 2px;
  background: var(--graphite);
}

.experience-track h3 {
  margin-bottom: clamp(7px, 1vw, 11px);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2vw, 27px);
  font-weight: 700;
  line-height: 0.94;
}

.experience-track__heading {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: clamp(7px, 1vw, 11px);
}

.experience-track__heading h3 {
  margin-bottom: 0;
}

.documents-link {
  padding: 0 0 3px;
  color: rgba(45, 41, 37, 0.58);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(45, 41, 37, 0.3);
  border-radius: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease;
}

.experience-track ol + .documents-link {
  margin-top: 12px;
}

.documents-link:hover,
.documents-link:focus-visible {
  color: var(--graphite);
  border-color: var(--graphite);
}

.experience-track__label {
  margin: -8px 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.experience-track ol {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.experience-track li {
  position: relative;
  display: block;
  padding: 6px 0 8px;
  border-top: 1px solid rgba(37, 35, 33, 0.1);
}

.experience-track li::before {
  content: none;
}

.experience-track time {
  display: block;
  margin-bottom: 2px;
  color: var(--umber);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.18;
  white-space: nowrap;
}

.experience-track p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.28;
}

.education-list {
  display: grid;
  gap: 0;
  max-width: none;
  padding: 0;
  margin: 0;
  list-style: none;
}

.education {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.88fr);
  gap: clamp(38px, 7vw, 100px);
  align-items: start;
  padding-top: clamp(40px, 5.4vw, 76px);
  padding-bottom: clamp(40px, 5.4vw, 76px);
  border-top: 1px solid rgba(37, 35, 33, 0.16);
}

.education .section-heading {
  position: sticky;
  top: 116px;
  margin-bottom: 0;
}

.education .section-heading h2 {
  max-width: 680px;
  margin-bottom: 14px;
  font-size: var(--section-title-size);
}

.education .section-heading p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.24;
}

.education-list li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(92px, 0.18fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(14px, 2vw, 20px) 0;
  border-top: 1px solid rgba(37, 35, 33, 0.14);
}

.education-list li::before {
  content: none;
}

.education-list time {
  color: var(--clay);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  white-space: nowrap;
}

.education-list span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.42;
}

.education-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.interlude {
  width: 100%;
  max-width: none;
  display: grid;
  justify-items: center;
  gap: clamp(10px, 1.6vw, 22px);
  padding-top: clamp(28px, 3.7vw, 49px);
  padding-right: max(var(--page-gutter), calc((100vw - var(--max)) / 2));
  padding-bottom: clamp(28px, 3.7vw, 49px);
  padding-left: max(var(--page-gutter), calc((100vw - var(--max)) / 2));
  color: var(--paper);
  background: linear-gradient(135deg, #252321 0%, #302821 100%);
}

.interlude figure {
  margin: 0;
}

.interlude__photo-composition {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(306px, 374px) minmax(0, 280px);
  gap: clamp(14px, 2.5vw, 36px);
  align-items: center;
  justify-content: center;
  width: min(986px, 100%);
}

.interlude__main-image {
  width: 100%;
  padding: clamp(15px, 1.7vw, 22px) clamp(7px, 0.85vw, 10px) clamp(7px, 0.85vw, 10px);
  overflow: hidden;
  background: rgba(251, 248, 242, 0.08);
  border: 1px solid rgba(251, 248, 242, 0.2);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 12px 12px 0 rgba(251, 248, 242, 0.08);
}

.interlude__main-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 52% 42%;
  border-radius: var(--radius);
}

.interlude__side-image {
  justify-self: center;
  width: min(280px, 100%);
  padding: clamp(10px, 1.2vw, 14px) 6px 6px;
  overflow: hidden;
  background: rgba(251, 248, 242, 0.08);
  border: 1px solid rgba(251, 248, 242, 0.2);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 12px 12px 0 rgba(251, 248, 242, 0.08);
}

.interlude__side-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
}

.interlude__side-image:first-child img {
  object-position: 33% 48%;
}

.interlude__side-image:last-child img {
  object-position: 46% 45%;
}

.interlude__strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(7px, 0.85vw, 12px);
  width: min(952px, 100%);
  margin-top: clamp(0px, 0.5vw, 8px);
  padding-top: clamp(10px, 1.5vw, 17px);
  border-top: 1px solid rgba(251, 248, 242, 0.2);
}

.interlude__strip figure {
  position: relative;
  overflow: hidden;
  background: rgba(251, 248, 242, 0.06);
  border: 1px solid rgba(251, 248, 242, 0.14);
  border-radius: var(--radius);
}

.interlude__strip img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transition: filter 220ms ease, transform 220ms ease;
}

.interlude__strip figure:hover img {
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.025);
}

.interlude__text {
  position: relative;
  width: min(850px, 100%);
  padding: clamp(15px, 2.4vw, 29px) 0;
  border-top: 1px solid rgba(251, 248, 242, 0.34);
  border-bottom: 1px solid rgba(251, 248, 242, 0.34);
  color: rgba(251, 248, 242, 0.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(13px, 1.63vw, 20px);
  line-height: 1.14;
  text-align: center;
}

.interlude__text::before {
  content: "“";
  position: absolute;
  left: -0.34em;
  top: 0.08em;
  color: rgba(251, 248, 242, 0.42);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.25vw, 60px);
  line-height: 1;
}

.interlude__text p {
  margin-bottom: clamp(8px, 1.2vw, 15px);
}

.interlude__text p:last-child {
  max-width: none;
  margin-bottom: 0;
  color: inherit;
}

.confidentiality {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(260px, 0.42fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
  padding-top: clamp(24px, 3vw, 42px);
  padding-right: max(var(--page-gutter), calc((100vw - var(--max)) / 2));
  padding-bottom: clamp(24px, 3vw, 42px);
  padding-left: max(var(--page-gutter), calc((100vw - var(--max)) / 2));
  color: var(--graphite);
  background: transparent;
  border-top: 0;
  border-bottom: 1px solid rgba(37, 35, 33, 0.12);
}

.confidentiality__text {
  padding: clamp(14px, 2vw, 24px) 0 0;
  border-top: 1px solid rgba(37, 35, 33, 0.24);
  border-bottom: 0;
}

.confidentiality__text h2 {
  max-width: 680px;
  margin: 0;
  padding-bottom: clamp(8px, 1.2vw, 12px);
  color: var(--graphite);
  font-size: clamp(34px, 5.4vw, 68px);
  line-height: 0.92;
  border-bottom: 0;
}

.confidentiality__text p:not(.eyebrow) {
  max-width: 620px;
  margin: clamp(10px, 1.3vw, 14px) 0 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.18;
}

.gratitude-link {
  margin-top: clamp(14px, 1.8vw, 20px);
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(72px, 1fr));
  gap: clamp(16px, 2vw, 26px) clamp(18px, 2.6vw, 34px);
  align-items: center;
  justify-items: center;
  align-self: center;
  max-width: min(100%, 520px);
  padding: clamp(8px, 1.2vw, 14px) 0 0;
}

.client-logos img {
  display: block;
  width: 100%;
  max-width: clamp(109px, 10.1vw, 175px);
  height: clamp(35px, 3.8vw, 56px);
  padding: 0;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  filter: grayscale(1) contrast(1.08) opacity(0.9);
}

.client-logos img:nth-child(7) {
  grid-column: 2;
  justify-self: center;
  width: 100%;
}

.letters {
  display: grid;
  align-content: start;
  padding: clamp(14px, 2vw, 24px) 0 0;
  border-top: 0;
  border-bottom: 0;
}

.letters--archive {
  display: none;
}

.letters__viewport {
  display: grid;
  grid-template-columns: repeat(4, minmax(70px, 96px));
  gap: clamp(12px, 1.5vw, 18px) clamp(12px, 1.6vw, 18px);
  align-items: start;
  justify-content: start;
}

.letters__slide {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.letters__slide:nth-child(n + 5) {
  transform: translateX(calc(50% + clamp(6px, 0.8vw, 9px)));
}

.letters__document {
  display: grid;
  aspect-ratio: 3 / 4.1;
  min-height: auto;
  padding: 4px;
  place-items: center;
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid rgba(37, 35, 33, 0.12);
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(49, 43, 36, 0.1);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.letters__document:hover {
  border-color: rgba(37, 35, 33, 0.32);
  box-shadow: 0 16px 34px rgba(49, 43, 36, 0.16);
  transform: translateY(-2px);
}

.letters__document img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
}

.letters__slide p {
  margin: 0;
  color: rgba(45, 41, 37, 0.56);
  font-size: 8.5px;
  letter-spacing: 0.08em;
  line-height: 1.18;
  text-align: center;
  text-transform: uppercase;
}

.letter-modal {
  width: min(92vw, 980px);
  max-height: 92vh;
  padding: 0;
  overflow: visible;
  color: var(--paper);
  background: transparent;
  border: 0;
}

.letter-modal::backdrop {
  background: rgba(22, 20, 18, 0.82);
  backdrop-filter: blur(6px);
}

.letter-modal__figure {
  display: grid;
  gap: 12px;
  place-items: center;
  margin: 0 auto;
}

.letter-modal__figure img {
  display: block;
  width: auto;
  max-width: min(82vw, 760px);
  max-height: 82vh;
  object-fit: contain;
  background: var(--paper);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.letter-modal__figure figcaption {
  color: rgba(251, 248, 242, 0.82);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.letter-modal__close,
.letter-modal__nav {
  position: absolute;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--paper);
  background: rgba(251, 248, 242, 0.08);
  border: 1px solid rgba(251, 248, 242, 0.28);
  border-radius: 4px;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.letter-modal__close:hover,
.letter-modal__nav:hover {
  background: rgba(251, 248, 242, 0.16);
  border-color: rgba(251, 248, 242, 0.54);
}

.letter-modal__close {
  top: -42px;
  right: 0;
  width: 36px;
  height: 36px;
  font-size: 24px;
  line-height: 1;
}

.letter-modal__nav {
  top: 50%;
  width: 42px;
  height: 52px;
  font-size: 22px;
  transform: translateY(-50%);
}

.letter-modal__nav--prev {
  left: -58px;
}

.letter-modal__nav--next {
  right: -58px;
}

.documents-modal {
  width: min(92vw, 1080px);
  max-height: 92vh;
  padding: 0;
  overflow: visible;
  color: var(--paper);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.documents-modal::backdrop {
  background: rgba(22, 20, 18, 0.82);
  backdrop-filter: blur(6px);
}

.documents-modal__close {
  position: absolute;
  top: -42px;
  right: 0;
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  color: var(--paper);
  background: rgba(251, 248, 242, 0.08);
  border: 1px solid rgba(251, 248, 242, 0.28);
  border-radius: 4px;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.documents-modal__close:hover,
.documents-modal__close:focus-visible {
  background: rgba(251, 248, 242, 0.16);
  border-color: rgba(251, 248, 242, 0.54);
}

.documents-modal__content {
  padding: 0;
}

.documents-modal__eyebrow {
  margin: 0 0 12px;
  color: var(--umber);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.documents-modal h2 {
  margin: 0 0 clamp(16px, 2vw, 22px);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 0.94;
}

.documents-modal p:not(.documents-modal__eyebrow) {
  max-width: 520px;
  margin: 0 0 12px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.24;
}

.documents-modal__figure {
  margin: 0;
}

.documents-modal__viewer {
  position: relative;
  display: block;
}

.documents-modal__gallery {
  min-width: 0;
}

.documents-modal__figure {
  display: none;
}

.documents-modal__figure.is-active {
  display: block;
}

.documents-modal__figure img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 82vh;
  margin: 0 auto;
  object-fit: contain;
  background: var(--paper);
  border: 0;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.documents-modal__nav {
  position: absolute;
  top: 50%;
  display: grid;
  width: 42px;
  height: 52px;
  padding: 0;
  place-items: center;
  color: var(--paper);
  background: rgba(251, 248, 242, 0.08);
  border: 1px solid rgba(251, 248, 242, 0.28);
  border-radius: 4px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease;
}

.documents-modal__nav--prev {
  left: -58px;
}

.documents-modal__nav--next {
  right: -58px;
}

.documents-modal__nav:hover,
.documents-modal__nav:focus-visible {
  background: rgba(251, 248, 242, 0.16);
  border-color: rgba(251, 248, 242, 0.54);
}

.documents-modal__figure figcaption {
  margin-top: 12px;
  color: rgba(251, 248, 242, 0.82);
  font-size: 11px;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.documents-modal__counter {
  margin: 14px 0 0;
  color: rgba(251, 248, 242, 0.7);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

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

.faq {
  padding-top: clamp(12px, 1.5vw, 20px);
  padding-bottom: clamp(6px, 0.8vw, 12px);
}

.faq .section-heading {
  margin-bottom: clamp(10px, 1.4vw, 18px);
}

.faq .section-heading h2 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: var(--section-title-size);
}

.faq .eyebrow {
  margin-bottom: 10px;
}

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

summary {
  position: relative;
  padding: 9px 36px 9px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.65vw, 20px);
  line-height: 1.16;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  color: var(--clay);
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 760px;
  padding-bottom: 10px;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.36;
}

.contacts {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
  padding-top: clamp(22px, 2.8vw, 36px);
  padding-right: max(var(--page-gutter), calc((100vw - var(--max)) / 2));
  padding-bottom: clamp(26px, 3.4vw, 44px);
  padding-left: max(var(--page-gutter), calc((100vw - var(--max)) / 2));
  color: var(--paper);
  background: linear-gradient(135deg, #252321 0%, #302821 100%);
}

.contacts__content {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(240px, 0.34fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  width: min(var(--max), 100%);
}

.contacts__brand {
  display: grid;
  grid-template-columns: clamp(58px, 6.6vw, 92px) minmax(0, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
  align-items: center;
}

.contacts__brand img {
  display: block;
  width: 100%;
  height: auto;
  filter: invert(1) brightness(1.14);
}

.contacts__brand p {
  margin: 0;
  color: rgba(251, 248, 242, 0.78);
  font-size: clamp(13px, 1.15vw, 16px);
  line-height: 1.38;
}

.contacts__brand p + p {
  margin-top: clamp(8px, 1vw, 12px);
}

.contacts__name {
  color: var(--paper) !important;
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 34px) !important;
  line-height: 1.05 !important;
}

.contacts__links {
  display: grid;
  gap: clamp(12px, 1.4vw, 18px);
  justify-items: start;
}

.contacts__links p {
  margin: 0;
  color: rgba(251, 248, 242, 0.78);
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.4;
}

.contacts__links a {
  color: var(--paper);
  text-decoration: none;
}

.contacts__links a:hover {
  color: #d0a487;
}

.contacts__messengers {
  display: flex;
  gap: 10px;
  align-items: center;
}

.contacts__icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--graphite) !important;
  background: var(--paper);
  border: 1px solid rgba(251, 248, 242, 0.64);
  border-radius: 8px;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.contacts__icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.contacts__icon--max {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.contacts__icon:hover {
  transform: translateY(-2px);
  color: var(--paper);
  background: transparent;
}

.contacts__image {
  margin: 0;
}

.contacts__image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 22px max(var(--page-gutter), calc((100vw - var(--max)) / 2)) 28px;
  color: rgba(251, 248, 242, 0.58);
  background: #252321;
  border-top: 1px solid rgba(251, 248, 242, 0.12);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: rgba(251, 248, 242, 0.58);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--paper);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}

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

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@media (max-width: 980px) {
  body {
    background: var(--milk);
  }

  .site-header {
    grid-template-columns: auto 1fr;
  }

  .nav {
    display: none;
  }

  .header-action {
    justify-self: end;
  }

  .hero,
  .dossier,
  .process__grid,
  .formats__layout,
  .approach,
  .approach__spread,
  .method__text,
  .method__triad,
  .experience,
  .education,
  .interlude,
  .confidentiality,
  .contacts {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
  }

  .experience__image {
    grid-column: auto;
    grid-row: auto;
    order: 2;
    justify-self: center;
    width: min(260px, 72vw);
    margin-top: 10px;
    margin-bottom: 0;
  }

  .experience__content {
    grid-column: auto;
    grid-row: auto;
    order: 1;
    width: 100%;
  }

  .experience__tracks {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 0;
  }

  .education .section-heading {
    position: static;
  }

  .education .section-heading p,
  .confidentiality__text p:not(.eyebrow) {
    max-width: 640px;
  }

  .belief h2 {
    max-width: 100%;
  }

  .method h2 {
    max-width: 760px;
  }

  .method__closing {
    max-width: 760px;
  }

  .hero__media {
    order: -1;
  }

  .hero__proof {
    grid-template-columns: 1fr;
    max-width: 620px;
    gap: 16px;
  }

  .hero__portrait {
    max-height: 72svh;
    object-position: center 22%;
  }

  .format-tabs {
    position: relative;
    top: auto;
    display: flex;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    padding-top: 0;
    padding-bottom: 8px;
    border-top: 0;
    scroll-snap-type: x mandatory;
  }

  .tab {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .format-panels {
    min-height: auto;
    padding: 0;
  }

  .format-card summary,
  .format-card__body {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .format-card summary {
    padding-right: 34px;
  }

  .format-card summary .price {
    grid-column: 1;
    grid-row: 3;
    align-self: start;
    justify-self: start;
  }

  .format-card__body {
    padding-right: 34px;
  }

  .format-card__body > * {
    grid-column: 1;
  }

  .contacts__image {
    order: -1;
  }

  .interlude__photo-composition {
    grid-template-columns: minmax(0, 230px) minmax(230px, 306px) minmax(0, 230px);
    width: 100%;
  }

  .interlude__strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
  }
}

@media (max-width: 680px) {
  :root {
    --page-gutter: 32px;
    --page-gutter-total: 64px;
  }

  body {
    font-size: 16px;
  }

  .site-header {
    padding: 14px var(--page-gutter);
  }

  .brand {
    width: 56px;
  }

  .brand img {
    width: 56px;
    height: auto;
  }

  .section,
  .formats,
  .site-footer {
    width: min(100% - var(--page-gutter-total), var(--max));
  }

  .section {
    padding: 78px 0;
  }

  .approach.section {
    width: 100%;
    padding: 34px var(--page-gutter);
  }

  h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  h2 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .principles-spread {
    width: 100%;
    padding: 22px 0;
  }

  .principles-spread__heading {
    padding-bottom: 16px;
  }

  .principles-spread h2 {
    max-width: 10ch;
    font-size: clamp(34px, 10vw, 46px);
  }

  .principles-line {
    font-size: 10px;
    letter-spacing: 0.05em;
  }

  .approach__spread {
    gap: 22px;
  }

  .belief__text p {
    font-size: clamp(16px, 4.6vw, 20px);
  }

  .method {
    padding: 34px var(--page-gutter);
  }

  .method__content {
    padding: 24px 0;
  }

  .method h2 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .method__triad {
    gap: 18px;
  }

  .hero {
    padding-top: 92px;
    padding-bottom: 20px;
  }

  .hero__media {
    width: min(360px, 82vw);
    justify-self: center;
  }

  .hero__roles {
    font-size: clamp(15px, 5vw, 20px);
  }

  .hero__proof {
    margin-top: 24px;
  }

  .hero__photo-quote {
    width: 100%;
    margin-top: 8px;
    padding: 22px 0 28px;
    font-size: 15px;
  }

  .hero__photo-quote::after {
    left: 42px;
    width: 64px;
  }

  .hero__photo-quote::before {
    top: -28px;
    font-size: 62px;
  }

  .hero__photo-quote img {
    width: 54px;
    right: -4px;
    bottom: -14px;
  }

  .dossier article,
  .process__grid article {
    padding: 26px;
  }

  .formats {
    width: 100%;
    padding: 30px 0 22px;
    padding-right: var(--page-gutter);
    padding-left: var(--page-gutter);
  }

  .formats__intro {
    margin-bottom: 12px;
  }

  .formats__intro h2 {
    font-size: var(--section-title-size);
  }

  .format-panels {
    padding: 0;
  }

  .tab {
    min-height: 34px;
    padding: 9px 0;
    font-size: clamp(22px, 6vw, 25px);
  }

  .panel__index {
    margin-bottom: 18px;
    font-size: 24px;
  }

  .panel h3 {
    font-size: clamp(25px, 7.2vw, 32px);
  }

  .format-card summary {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .format-card h4 {
    font-size: clamp(19px, 5.8vw, 23px);
  }

  .letters__viewport {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .letters__slide:nth-child(n + 5) {
    transform: none;
  }

  .letters__slide p {
    font-size: 8px;
  }

  .panel > p:not(.panel__index),
  .format-card p,
  .format-card__body p,
  .split-list li,
  .request-grid li,
  .compact-grid li {
    font-size: 13px;
  }

  .process {
    width: min(100% - 32px, var(--max));
    padding: 30px 0 22px;
  }

  .process__layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process__side {
    justify-self: stretch;
    width: 100%;
  }

  .process__action {
    justify-self: stretch;
    width: 100%;
  }

  .process__lead {
    white-space: normal;
  }

  .process__grid article {
    min-height: 124px;
    padding: 14px 0;
    grid-template-rows: auto auto 1fr;
  }

  .process__arrow {
    justify-self: center;
    width: 28px;
    height: 42px;
  }

  .process__arrow::after {
    left: 50%;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
  }

  .process__arrow::before {
    content: "↓";
    padding: 5px 0;
    font-size: 20px;
  }

  .dossier span {
    margin-bottom: 38px;
  }

  .process__grid span {
    font-size: 26px;
  }

  .process__grid h3 {
    max-width: 12ch;
    font-size: clamp(22px, 6vw, 27px);
  }

  .process__grid p {
    font-size: 11.5px;
    line-height: 1.38;
  }

  .split-list,
  .request-grid,
  .compact-grid,
  .numbers {
    grid-template-columns: 1fr;
  }

  .interlude__text {
    font-size: clamp(14px, 3.7vw, 17px);
  }

  .interlude__photo-composition {
    grid-template-columns: repeat(2, minmax(0, 204px));
    justify-content: center;
    gap: 14px;
    align-items: center;
  }

  .interlude__main-image {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(306px, 100%);
  }

  .interlude__side-image {
    width: min(204px, 100%);
  }

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

  .education-list li {
    grid-template-columns: minmax(88px, auto) 1fr;
    gap: 16px;
  }

  .experience,
  .education,
  .confidentiality {
    padding-top: 28px;
    padding-bottom: 30px;
  }

  .experience__intro,
  .education .section-heading p,
  .confidentiality__text p:not(.eyebrow) {
    font-size: 18px;
  }

  .client-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 360px;
  }

  .client-logos img {
    height: 39px;
    max-width: 121px;
  }

  .experience-track {
    padding-top: 18px;
  }

  .experience-track li,
  .education-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .letters__viewport {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .letters__slide:nth-child(n + 5) {
    transform: none;
  }

  .letter-modal__figure img {
    max-width: 84vw;
    max-height: 78vh;
  }

  .letter-modal__nav {
    top: auto;
    bottom: -58px;
    transform: none;
  }

  .documents-modal__figure img {
    max-width: 84vw;
    max-height: 78vh;
  }

  .documents-modal__nav {
    top: auto;
    bottom: -58px;
    transform: none;
  }

  .letter-modal__nav--prev {
    left: calc(50% - 54px);
  }

  .letter-modal__nav--next {
    right: calc(50% - 54px);
  }

  .documents-modal__nav--prev {
    left: calc(50% - 54px);
  }

  .documents-modal__nav--next {
    right: calc(50% - 54px);
  }

  .site-footer {
    display: grid;
  }
}
