:root {
  --pine: #17251c;
  --forest: #36523c;
  --sage: #8a9a7b;
  --moss: #bbc2a9;
  --clay: #99462f;
  --stone: #d7d2c6;
  --paper: #f4f1e8;
  --cream: #ebe7da;
  --charcoal: #282923;
  --line: rgba(23, 37, 28, 0.22);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  --shell: min(1240px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--charcoal);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--pine);
  transform: translateY(-160%);
}

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

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

.concept-bar {
  color: var(--paper);
  background: var(--pine);
  border-bottom: 1px solid rgba(244, 241, 232, 0.22);
}

.concept-bar p {
  display: flex;
  justify-content: space-between;
  width: var(--shell);
  margin: 0 auto;
  padding: 7px 0;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.concept-bar span {
  color: var(--moss);
}

.contact-rail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 42px;
  padding-inline: max(24px, calc((100% - 1240px) / 2));
  color: var(--paper);
  background: var(--forest);
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-rail p {
  margin: 0;
}

.contact-rail a {
  font-weight: 700;
  text-underline-offset: 4px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  width: var(--shell);
  min-height: 126px;
  margin-inline: auto;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1;
}

.wordmark span:first-child {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.025em;
}

.wordmark span:last-child {
  margin-top: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 40px);
}

.primary-nav a {
  position: relative;
  padding-block: 12px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  padding: 11px 17px !important;
  color: var(--paper);
  background: var(--pine);
  border: 1px solid var(--pine);
  transition: color 180ms ease, background 180ms ease;
}

.nav-contact:hover,
.nav-contact.active {
  color: var(--pine);
  background: transparent;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
  min-height: 720px;
  padding-block: clamp(70px, 10vw, 130px);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--forest);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
}

h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(3.3rem, 7vw, 7rem);
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 660px;
  margin: 36px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.8vw, 1.42rem);
  line-height: 1.55;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 30px;
  align-items: center;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border 180ms ease;
}

.button-dark {
  color: var(--paper);
  background: var(--pine);
  border-color: var(--pine);
}

.button-dark:hover {
  color: var(--pine);
  background: transparent;
}

.button-outline {
  color: var(--pine);
  background: transparent;
  border-color: var(--pine);
}

.button-outline:hover {
  color: var(--paper);
  background: var(--pine);
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding-block: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.hero-figure {
  margin: 0;
}

.figure-frame {
  position: relative;
  padding: 14px;
  background: var(--stone);
  border: 1px solid var(--line);
}

.figure-frame::before,
.figure-frame::after {
  position: absolute;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-color: var(--paper);
  border-style: solid;
  content: "";
}

.figure-frame::before {
  top: 28px;
  left: 28px;
  border-width: 1px 0 0 1px;
}

.figure-frame::after {
  right: 28px;
  bottom: 28px;
  border-width: 0 1px 1px 0;
}

.figure-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.figure-index {
  position: absolute;
  right: -22px;
  bottom: 60px;
  padding: 8px 10px;
  color: var(--paper);
  background: var(--clay);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.hero-figure figcaption,
.profile-art figcaption {
  margin-top: 12px;
  color: rgba(40, 41, 35, 0.72);
  font-family: var(--serif);
  font-size: 0.8rem;
  font-style: italic;
}

.fact-band {
  color: var(--paper);
  background: var(--pine);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.fact-grid p {
  min-height: 130px;
  margin: 0;
  padding: 31px clamp(18px, 3vw, 42px);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.35;
  border-left: 1px solid rgba(244, 241, 232, 0.22);
}

.fact-grid p:last-child {
  border-right: 1px solid rgba(244, 241, 232, 0.22);
}

.fact-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--sage);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-pad {
  padding-block: clamp(90px, 11vw, 150px);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: clamp(40px, 9vw, 140px);
  align-items: end;
}

.section-heading h2,
.founder-copy h2,
.contact-callout h2,
.approach-copy h2,
.reading-card h2,
.profile-copy h2,
.contact-choice h2,
.form-heading h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5rem);
  letter-spacing: -0.045em;
}

.split-heading > p {
  max-width: 510px;
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 1.14rem;
}

.service-ledger {
  margin-top: 80px;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 70px minmax(230px, 0.8fr) minmax(280px, 1.2fr);
  gap: 36px;
  align-items: baseline;
  padding-block: 30px;
  border-bottom: 1px solid var(--line);
}

.service-number,
.catalog-number {
  color: var(--clay);
  font-family: var(--serif);
  font-size: 0.88rem;
}

.service-row h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.service-row p {
  max-width: 540px;
  margin: 0;
}

.ledger-link {
  display: inline-flex;
  justify-content: space-between;
  gap: 70px;
  margin-top: 34px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.approach-panel {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--forest);
}

.approach-panel::after {
  position: absolute;
  top: -20%;
  right: -8%;
  width: 42vw;
  aspect-ratio: 1;
  border: 1px solid rgba(244, 241, 232, 0.15);
  border-radius: 50%;
  content: "";
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
  min-height: 720px;
  padding-block: 80px;
}

.approach-art {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(244, 241, 232, 0.25);
}

.approach-art img {
  width: 100%;
}

.approach-copy {
  position: relative;
  z-index: 1;
  max-width: 690px;
}

.eyebrow-light {
  color: var(--moss);
}

.approach-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 32px 0;
  font-family: var(--serif);
  font-size: 1.18rem;
}

.text-link-light {
  color: var(--paper);
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(60px, 10vw, 150px);
}

.founder-note {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 470px;
  padding-right: 40px;
  border-right: 1px solid var(--line);
}

.vertical-label {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.year-mark {
  display: flex;
  width: 190px;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--forest);
  border-radius: 50%;
}

.year-mark span {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.year-mark strong {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
}

.founder-copy {
  max-width: 730px;
}

.founder-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 32px 0 40px;
  font-family: var(--serif);
  font-size: 1.18rem;
}

.reading-section {
  padding-bottom: clamp(80px, 10vw, 140px);
}

.reading-card {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(230px, 0.7fr) 150px;
  gap: 50px;
  align-items: center;
  padding: clamp(36px, 6vw, 76px);
  background: var(--cream);
  border: 1px solid var(--line);
}

.reading-card h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.reading-card p {
  margin: 0;
}

.round-link {
  display: inline-flex;
  width: 136px;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--pine);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.round-link:hover {
  color: var(--paper);
  background: var(--pine);
}

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

.contact-callout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(50px, 10vw, 140px);
  align-items: start;
}

.contact-callout-grid > div > p {
  max-width: 520px;
  margin: 4px 0 0;
  font-family: var(--serif);
  font-size: 1.14rem;
}

.site-footer {
  padding-block: 72px 34px;
  color: var(--paper);
  background: var(--pine);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.8fr 1fr;
  gap: 50px;
  align-items: start;
}

.site-footer p {
  margin: 0;
  color: var(--moss);
  font-size: 0.78rem;
}

.footer-name {
  margin-bottom: 12px !important;
  color: var(--paper) !important;
  font-family: var(--serif);
  font-size: 1.25rem !important;
  line-height: 1.2;
}

.footer-contact,
.footer-address {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.84rem;
}

.site-footer a {
  text-underline-offset: 4px;
}

.footer-concept {
  padding-left: 24px;
  border-left: 1px solid rgba(244, 241, 232, 0.25);
}

.footer-concept strong {
  color: var(--paper);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: end;
  padding-block: clamp(90px, 12vw, 165px);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3.4rem, 7vw, 7.5rem);
}

.page-hero-aside {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.page-hero-aside p {
  margin: 32px 0;
  font-family: var(--serif);
  font-size: 1.12rem;
}

.page-index {
  color: var(--clay);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.catalog-item {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 180px;
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  min-height: 230px;
  border-bottom: 1px solid var(--line);
}

.catalog-item h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: -0.035em;
}

.catalog-item p {
  max-width: 570px;
  margin: 0;
}

.catalog-symbol {
  position: relative;
  width: 148px;
  aspect-ratio: 1;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.catalog-symbol span {
  position: absolute;
  display: block;
  border: 1px solid var(--forest);
}

.symbol-plan span:nth-child(1) { inset: 24px; border-radius: 50%; }
.symbol-plan span:nth-child(2) { top: 12px; bottom: 12px; left: 50%; }
.symbol-plan span:nth-child(3) { right: 12px; left: 12px; top: 50%; }
.symbol-urban span:nth-child(1) { width: 28px; height: 76px; bottom: 32px; left: 28px; }
.symbol-urban span:nth-child(2) { width: 28px; height: 96px; bottom: 32px; left: 59px; }
.symbol-urban span:nth-child(3) { width: 28px; height: 56px; bottom: 32px; left: 90px; }
.symbol-room span:nth-child(1) { inset: 28px; }
.symbol-room span:nth-child(2) { width: 54px; height: 54px; top: 47px; left: 47px; border-radius: 50%; background: var(--moss); }
.symbol-room span:nth-child(3) { top: 28px; bottom: 28px; left: 74px; border-color: var(--paper); }
.symbol-garden span { width: 50px; height: 72px; border-radius: 50%; transform: rotate(35deg); }
.symbol-garden span:nth-child(1) { top: 22px; left: 32px; background: rgba(138, 154, 123, 0.3); }
.symbol-garden span:nth-child(2) { top: 48px; left: 60px; transform: rotate(-35deg); }
.symbol-garden span:nth-child(3) { top: 32px; right: 20px; transform: rotate(55deg); background: rgba(179, 95, 65, 0.15); }
.symbol-scale span { left: 22px; height: 1px; border-top: 1px solid var(--forest); border-right: 0; border-bottom: 0; border-left: 0; }
.symbol-scale span:nth-child(1) { top: 44px; width: 100px; }
.symbol-scale span:nth-child(2) { top: 73px; width: 76px; }
.symbol-scale span:nth-child(3) { top: 101px; width: 48px; }

.compact-panel {
  margin-top: clamp(90px, 11vw, 150px);
}

.compact-panel .approach-grid {
  min-height: 600px;
}

.about-hero h1 {
  max-width: 880px;
}

.profile-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(60px, 10vw, 150px);
  padding-bottom: clamp(90px, 12vw, 160px);
}

.profile-art figure {
  margin: 0;
  padding: 14px;
  background: var(--stone);
  border: 1px solid var(--line);
}

.profile-art img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.profile-copy {
  padding-top: 50px;
}

.profile-copy > p:not(.eyebrow) {
  max-width: 690px;
  font-family: var(--serif);
  font-size: 1.16rem;
}

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

.profile-facts p {
  margin: 0;
  font-family: var(--serif);
}

.profile-facts p:last-child {
  grid-column: 1 / -1;
}

.profile-facts span {
  display: block;
  margin-bottom: 8px;
  color: var(--forest);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-grid article {
  min-height: 330px;
  padding: 35px;
  border-left: 1px solid var(--line);
}

.principle-grid article:last-child {
  border-right: 1px solid var(--line);
}

.principle-grid span {
  color: var(--clay);
  font-family: var(--serif);
}

.principle-grid h3 {
  margin: 70px 0 20px;
  font-size: 2rem;
}

.principle-grid p {
  margin: 0;
}

.contact-hero {
  padding-bottom: 100px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(60px, 10vw, 150px);
  padding-block: clamp(60px, 9vw, 120px);
  border-top: 1px solid var(--line);
}

.contact-entry {
  padding-block: 26px;
  border-bottom: 1px solid var(--line);
}

.contact-entry span,
.contact-choice-link span {
  display: block;
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-entry a {
  font-family: var(--serif);
  font-size: 1.08rem;
  text-underline-offset: 4px;
}

.contact-entry small {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.preview-form-wrap {
  padding: clamp(30px, 5vw, 64px);
  background: var(--cream);
  border: 1px solid var(--line);
}

.form-heading h2 {
  font-size: clamp(2.6rem, 4.5vw, 4.3rem);
}

.form-heading > p:last-child {
  max-width: 660px;
  margin: 28px 0 0;
}

.preview-form {
  margin-top: 50px;
}

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

.field-group {
  margin-bottom: 30px;
}

.field-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field-group input,
.field-group textarea {
  width: 100%;
  padding: 12px 0;
  color: var(--charcoal);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--pine);
  border-radius: 0;
}

.field-group textarea {
  resize: vertical;
}

.field-group input:focus,
.field-group textarea:focus {
  outline: 0;
  border-bottom-width: 3px;
}

.field-group textarea::placeholder {
  color: rgba(40, 41, 35, 0.62);
}

.form-response {
  margin: 24px 0 0;
  padding: 18px;
  color: var(--paper);
  background: var(--forest);
}

.contact-choice {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) repeat(2, minmax(220px, 0.7fr));
  gap: 40px;
  align-items: end;
  padding-block: clamp(80px, 10vw, 140px);
  border-top: 1px solid var(--line);
}

.contact-choice h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.contact-choice-link {
  position: relative;
  padding: 24px 45px 24px 0;
  border-bottom: 1px solid var(--pine);
  font-family: var(--serif);
  font-size: 1.02rem;
  text-decoration: none;
}

.contact-choice-link b {
  position: absolute;
  right: 0;
  bottom: 23px;
  font-family: var(--sans);
  font-weight: 400;
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 36px, 700px);
  }

  .site-header {
    min-height: 116px;
    align-items: flex-start;
    padding-block: 25px;
  }

  .primary-nav {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 3px 14px;
  }

  .primary-nav a {
    padding: 7px 9px;
  }

  .nav-contact {
    padding: 7px 9px !important;
  }

  .hero,
  .page-hero,
  .profile-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 60px;
    padding-block: 80px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-figure {
    width: min(72%, 490px);
    margin-left: auto;
  }

  .split-heading,
  .approach-grid,
  .founder-section,
  .contact-callout-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .approach-grid {
    gap: 60px;
  }

  .approach-art {
    width: min(65%, 420px);
  }

  .founder-note {
    min-height: auto;
    padding: 0 0 50px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .vertical-label {
    writing-mode: initial;
    transform: none;
  }

  .reading-card {
    grid-template-columns: 1fr 0.8fr;
  }

  .round-link {
    grid-column: 1 / -1;
  }

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

  .page-hero-aside {
    max-width: 600px;
  }

  .profile-art {
    width: min(65%, 440px);
  }

  .catalog-item {
    grid-template-columns: 50px minmax(0, 1fr) 120px;
  }

  .catalog-symbol {
    width: 110px;
    transform: scale(0.74);
    transform-origin: right center;
  }

  .contact-choice {
    grid-template-columns: 1fr 1fr;
  }

  .contact-choice > div {
    grid-column: 1 / -1;
  }
}

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

  body {
    font-size: 15px;
  }

  .concept-bar p {
    gap: 12px;
    font-size: 0.58rem;
  }

  .contact-rail {
    min-height: auto;
    align-items: flex-start;
    padding: 10px 14px;
    font-size: 0.58rem;
  }

  .contact-rail p {
    max-width: 48%;
  }

  .site-header {
    display: block;
    min-height: 0;
  }

  .wordmark {
    margin-bottom: 20px;
  }

  .wordmark span:first-child {
    font-size: 1.65rem;
  }

  .primary-nav {
    display: flex;
    justify-content: space-between;
    gap: 4px;
    overflow: visible;
  }

  .primary-nav a {
    padding: 6px 5px;
    font-size: 0.62rem;
  }

  .nav-contact {
    padding: 6px 7px !important;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero {
    min-height: 0;
    padding-block: 64px 80px;
  }

  .hero-lead {
    margin-top: 26px;
  }

  .hero-figure,
  .profile-art,
  .approach-art {
    width: calc(100% - 28px);
    margin-left: 0;
  }

  .figure-index {
    right: -14px;
  }

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

  .fact-grid p {
    min-height: 0;
    border-right: 1px solid rgba(244, 241, 232, 0.22);
    border-bottom: 1px solid rgba(244, 241, 232, 0.22);
  }

  .section-heading h2,
  .founder-copy h2,
  .contact-callout h2,
  .approach-copy h2,
  .profile-copy h2,
  .form-heading h2 {
    font-size: 2.65rem;
  }

  .service-ledger {
    margin-top: 50px;
  }

  .service-row {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .service-row p {
    grid-column: 2;
  }

  .ledger-link {
    width: 100%;
    gap: 20px;
  }

  .approach-grid {
    min-height: 0;
    padding-block: 70px;
  }

  .year-mark {
    width: 145px;
  }

  .reading-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .round-link {
    grid-column: auto;
    width: 120px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-concept {
    padding: 22px 0 0;
    border-top: 1px solid rgba(244, 241, 232, 0.25);
    border-left: 0;
  }

  .page-hero {
    padding-block: 70px 90px;
  }

  .page-hero-aside {
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .catalog-item {
    grid-template-columns: 32px 1fr;
    min-height: 0;
    padding-block: 40px;
  }

  .catalog-symbol {
    display: none;
  }

  .catalog-item h2 {
    font-size: 2.2rem;
  }

  .profile-copy {
    padding-top: 0;
  }

  .profile-facts,
  .principle-grid,
  .field-row,
  .contact-choice {
    grid-template-columns: 1fr;
  }

  .principle-grid article {
    min-height: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .principle-grid article:last-child {
    border-bottom: 0;
  }

  .principle-grid h3 {
    margin-top: 45px;
  }

  .preview-form-wrap {
    padding: 28px 20px;
  }

  .contact-choice > div {
    grid-column: auto;
  }

  .contact-choice-link {
    overflow-wrap: anywhere;
  }
}

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

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

@media print {
  .concept-bar,
  .contact-rail,
  .primary-nav {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }
}
