:root {
  --ink: #171615;
  --ink-soft: #252321;
  --paper: #f1eee9;
  --paper-warm: #e9e3dc;
  --white: #fffefd;
  --muted: #6d6863;
  --line: #d5cfc8;
  --line-dark: #3d3936;
  --rose: #c47a74;
  --rose-dark: #985954;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", sans-serif;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
  --page-width: 1500px;
  --radius: 24px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

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

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(23, 22, 21, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 22, 21, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

.ui-arrow {
  display: inline-grid;
  width: 1em;
  place-items: center;
  margin-left: 8px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  vertical-align: middle;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.eyebrow,
.panel-label,
.case-code,
.comparison-label,
.decision-index,
.work-capability,
.evidence-label {
  margin: 0;
  color: var(--rose-dark);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-placeholder {
  position: relative;
  overflow: hidden;
  background-color: #f5f3ef;
  background-image:
    linear-gradient(45deg, rgba(23, 22, 21, 0.035) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(23, 22, 21, 0.035) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(23, 22, 21, 0.035) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(23, 22, 21, 0.035) 75%);
  background-position: 0 0, 0 18px, 18px -18px, -18px 0;
  background-repeat: repeat;
  background-size: 36px 36px;
}

.button,
.text-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--ink);
}

.button-primary:hover {
  background: var(--rose-dark);
}

.button-quiet {
  border-color: var(--line);
  background: transparent;
}

.button-quiet:hover {
  border-color: var(--ink);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-light:hover {
  background: var(--rose);
}

.button-outline-light {
  border-color: #5e5955;
  color: var(--white);
  background: transparent;
}

.button-outline-light:hover {
  border-color: var(--white);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

.text-link span {
  color: var(--rose-dark);
  font-size: 1.1rem;
}

/* Landing */

.landing-document {
  scroll-snap-type: none;
}

.landing-page {
  font-size: 17px;
}

.site-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 1000;
  display: flex;
  width: min(calc(100% - 40px), 620px);
  justify-content: space-between;
  border: 1px solid rgba(113, 107, 102, 0.32);
  border-radius: 4px;
  padding: 4px 8px;
  background: rgba(255, 254, 253, 0.94);
  box-shadow: 0 4px 14px rgba(23, 22, 21, 0.035);
  backdrop-filter: blur(14px);
  pointer-events: auto;
  transform: translateX(-50%);
}

.site-nav a {
  display: flex;
  min-height: 36px;
  align-items: center;
  gap: 7px;
  border-radius: 2px;
  padding: 0 12px;
  color: var(--muted);
  font-size: 0.75rem;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease;
}

.site-nav a span {
  font-family: var(--mono);
  font-size: 0.65rem;
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(189, 113, 107, 0.1);
  box-shadow: inset 0 -2px var(--rose);
}

.landing-stack {
  width: min(calc(100% - 32px), 1400px);
  margin: 0 auto;
  padding: 0;
}

.landing-section {
  position: sticky;
  top: 0;
  min-height: 100svh;
  padding: 12px 0;
  isolation: isolate;
}

.landing-section:nth-child(1) {
  z-index: 1;
}

.landing-section:nth-child(2) {
  z-index: 2;
}

.landing-section:nth-child(3) {
  z-index: 3;
}

.landing-section:nth-child(4) {
  z-index: 4;
}

@media (min-width: 901px) {
  .landing-stack {
    display: flex;
    flex-direction: column;
    row-gap: 8svh;
  }

}

.landing-panel {
  position: relative;
  top: auto;
  display: grid;
  width: 100%;
  min-height: calc(100svh - 24px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 0;
  padding: clamp(70px, 7vh, 86px) clamp(30px, 3.5vw, 58px) clamp(28px, 4vh, 48px);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(23, 22, 21, 0.12);
  transform-origin: center top;
  transition: transform 460ms cubic-bezier(0.22, 1, 0.36, 1), filter 460ms ease;
  isolation: isolate;
}

.landing-section.is-past .landing-panel {
  filter: brightness(0.96);
  transform: scale(0.98);
}

/* Echo is the dark layer beneath Work. Shrink it farther once it is past so
   its shadow cannot show through the Work → Contact scale reveal. */
@media (min-width: 901px) {
  .section-echo.is-past:has(~ .section-contact.is-current) .landing-panel {
    transform: scale(0.9);
  }
}

.landing-panel::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, transparent 70%, rgba(23, 22, 21, 0.03));
  content: "";
  pointer-events: none;
}

.panel-number {
  position: absolute;
  top: 76px;
  left: clamp(28px, 4vw, 72px);
  color: var(--rose);
  font-family: var(--serif);
  font-size: clamp(3.4rem, 5vw, 5.6rem);
  font-weight: 600;
  line-height: 0.8;
}

.panel-label {
  position: absolute;
  top: 82px;
  left: clamp(122px, 12vw, 190px);
}

.about-panel {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.7fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(22px, 3vw, 44px);
  align-content: stretch;
}

.about-identity {
  align-self: center;
  max-width: 760px;
  padding-top: clamp(32px, 4vh, 52px);
}

.about-identity > .eyebrow,
.echo-heading > .eyebrow,
.work-heading > .eyebrow,
.contact-intro > .eyebrow {
  margin-left: 118px;
}

.about-identity h1 {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: clamp(3.9rem, 8vw, 8.4rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.82;
}

.role-line {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.display-statement {
  max-width: 680px;
  margin: clamp(22px, 3vh, 34px) 0 0;
  font-family: var(--sans);
  font-size: clamp(1.55rem, 2.3vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.supporting-copy {
  max-width: 630px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.button-row .about-contact-link {
  margin-left: 8px;
}

.about-portrait {
  align-self: stretch;
  margin: 0;
  padding-top: clamp(22px, 3vh, 38px);
}

.portrait-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(300px, 43vh, 470px);
  max-height: 500px;
  border-radius: 2px;
  object-fit: cover;
  object-position: center 42%;
}

.product-placeholder::after,
.work-placeholder::after {
  position: absolute;
  right: 12px;
  bottom: 12px;
  border: 1px solid rgba(113, 107, 102, 0.24);
  padding: 5px 8px;
  color: #736d68;
  background: rgba(255, 254, 253, 0.84);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-placeholder::after {
  content: "Product visual pending";
}

.work-placeholder::after {
  content: "Project visual pending";
}

.media-caption {
  display: flex;
  justify-content: space-between;
  margin: 8px 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.media-caption span {
  color: var(--rose-dark);
}

.about-evidence {
  align-self: end;
  border-top: 1px solid var(--ink);
  padding-top: 14px;
}

.about-evidence p:last-child {
  max-width: 620px;
  margin: 8px 0 0;
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.35;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-self: end;
  border-top: 1px solid var(--ink);
}

.capability-grid article {
  min-width: 0;
  padding: 14px 14px 0;
  border-left: 1px solid var(--line);
}

.capability-grid article:first-child {
  border-left: 0;
  padding-left: 0;
}

.capability-grid h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 700;
}

.capability-grid p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.echo-panel {
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  grid-template-rows: minmax(0, 1fr) auto auto;
  gap: clamp(18px, 2.4vw, 34px);
  border-color: #34302e;
  color: var(--white);
  background: var(--ink);
}

.echo-panel::before {
  position: absolute;
  top: 0;
  right: 19%;
  width: 1px;
  height: 100%;
  background: #2c2927;
  content: "";
}

.echo-panel .panel-number {
  color: var(--rose);
}

.echo-panel .panel-label {
  color: #c9c3bd;
}

.echo-heading {
  grid-row: 1;
  align-self: center;
  max-width: 650px;
  padding-top: clamp(26px, 4vh, 48px);
}

.echo-heading h2 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: clamp(6rem, 12vw, 12rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.75;
  view-transition-name: echo-project-title;
}

.echo-statement {
  max-width: 620px;
  margin: clamp(24px, 3.5vh, 38px) 0 0;
  font-family: var(--sans);
  font-size: clamp(1.3rem, 1.8vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.role-note {
  max-width: 600px;
  margin: 20px 0 0;
  color: #bbb4ae;
  font-size: clamp(0.92rem, 1vw, 1rem);
  line-height: 1.55;
}

.echo-visual {
  align-self: center;
  padding-top: clamp(24px, 4vh, 46px);
}

.product-placeholder {
  min-height: clamp(210px, 29vh, 330px);
  border: 6px solid #2f2b29;
}

.visual-index {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  color: #aaa29c;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.visual-index span {
  color: var(--rose);
}

.visual-index i {
  flex: 1;
  height: 1px;
  background: var(--line-dark);
}

.metric-row {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
}

.metric {
  min-height: 132px;
  padding: 18px 18px 12px;
  border-left: 1px solid var(--line-dark);
}

.metric:first-child {
  border-left: 0;
  padding-left: 0;
}

.metric strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.2vw, 3.6rem);
  font-weight: 600;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: #c5bdb7;
  font-size: 0.82rem;
  line-height: 1.45;
}

.metric small {
  display: block;
  max-width: 220px;
  margin-top: 5px;
  color: #b3aaa4;
  font-size: 0.7rem;
  line-height: 1.45;
}

.metric-accent strong {
  color: var(--rose);
}

.comparison {
  display: grid;
  grid-column: 1 / 2;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-self: start;
}

.comparison article {
  border-top: 1px solid var(--line-dark);
  padding-top: 10px;
}

.comparison p:last-child {
  margin: 8px 0 0;
  color: #bbb4ae;
  font-size: 0.84rem;
  line-height: 1.5;
}

.echo-actions {
  display: flex;
  justify-content: flex-end;
  align-self: start;
  gap: 10px;
}

.work-panel {
  grid-template-columns: minmax(0, 30%) minmax(0, 1fr);
  column-gap: clamp(36px, 3.5vw, 56px);
  background: var(--paper-warm);
}

.work-heading {
  min-width: 0;
  align-self: center;
  padding-top: 42px;
}

.work-heading h2 {
  max-width: 100%;
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.35vw, 5.25rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.96;
  overflow-wrap: anywhere;
}

.work-heading > p:last-child {
  max-width: 460px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.selected-work-grid {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  align-self: center;
  padding-top: 30px;
}

.work-card {
  display: grid;
  grid-template-columns: minmax(120px, 0.65fr) minmax(0, 1fr);
  min-height: 274px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 254, 253, 0.75);
}

.work-card:first-child {
  grid-row: 1 / 3;
  grid-template-columns: 1fr;
}

.work-placeholder {
  min-height: 100%;
}

.work-card:first-child .work-placeholder {
  min-height: 260px;
}

.work-card-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 24px;
}

.work-card h3 {
  margin: 7px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2.25rem);
  line-height: 1;
}

.work-card-copy > p:not(.work-capability) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.compact-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  margin-top: 17px;
  color: #716b66;
  font-family: var(--mono);
  font-size: 0.7rem;
  line-height: 1.5;
}

.compact-stack span:not(:last-child)::after {
  margin-left: 10px;
  color: var(--rose);
  content: "·";
}

.text-button {
  min-height: auto;
  justify-content: flex-start;
  align-self: flex-start;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  margin-top: auto;
  padding: 16px 0 4px;
  color: var(--ink);
  background: transparent;
  font-size: 0.84rem;
}

.text-button span {
  margin-left: 8px;
  color: var(--rose-dark);
}

.contact-panel {
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  grid-template-rows: 1fr auto;
  gap: 40px 7vw;
  margin-bottom: 0;
  color: var(--white);
  background: var(--ink-soft);
}

.section-contact .landing-panel {
  position: relative;
  top: auto;
}

.contact-intro {
  align-self: center;
  max-width: 900px;
  padding-top: 42px;
}

.contact-intro h2 {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.9rem, 5.25vw, 6.2rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.contact-intro > p:last-child {
  max-width: 680px;
  margin: 28px 0 0;
  color: #bbb4ae;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.6;
}

.contact-directory {
  align-self: center;
  border-top: 1px solid var(--line-dark);
  padding-top: 18px;
}

.contact-entry {
  border-bottom: 1px solid var(--line-dark);
  padding: 18px 0;
}

.contact-entry > span {
  display: block;
  color: #aaa39e;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-entry a,
.contact-entry strong {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.7rem);
  font-weight: 600;
  text-decoration: none;
}

.contact-entry a:hover {
  color: var(--rose);
}

.contact-entry a:focus-visible {
  color: var(--white);
  outline-color: var(--rose);
}

.contact-entry .ui-arrow {
  color: var(--rose);
}

.contact-footer {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  border-top: 1px solid var(--line-dark);
  padding-top: 14px;
  color: #aaa39e;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
}

@media (min-width: 901px) and (max-height: 900px) {
  .about-panel {
    row-gap: 24px;
    padding-top: 62px;
    padding-bottom: 24px;
  }

  .about-identity {
    padding-top: 26px;
  }

  .about-portrait {
    align-self: start;
    padding-top: 18px;
  }

  .about-portrait .portrait-photo {
    height: min(48vh, 380px);
    min-height: 0;
    max-height: none;
  }

  .echo-panel {
    gap: 16px 28px;
    padding-top: 54px;
    padding-bottom: 16px;
  }

  .echo-heading,
  .echo-visual {
    padding-top: 24px;
  }

  .product-placeholder {
    min-height: 190px;
  }

  .metric {
    min-height: 118px;
    padding-top: 14px;
  }

  .work-panel {
    padding-top: 54px;
    padding-bottom: 16px;
  }

  .work-heading {
    padding-top: 28px;
  }

  .selected-work-grid {
    height: min(680px, calc(100svh - 118px));
    padding-top: 0;
  }

  .work-card {
    min-height: 0;
  }

  .work-card:first-child .work-placeholder {
    min-height: 210px;
  }

  .work-card:not(:first-child) .work-placeholder {
    display: none;
  }

  .work-card:not(:first-child) {
    grid-template-columns: 1fr;
  }

  .work-card-copy {
    padding: 12px 16px;
  }

  .work-card:not(:first-child) .work-card-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    column-gap: 12px;
  }

  .work-card:not(:first-child) .work-capability,
  .work-card:not(:first-child) h3,
  .work-card:not(:first-child) .work-card-copy > p:not(.work-capability) {
    grid-column: 1;
  }

  .work-card:not(:first-child) .compact-stack {
    display: block;
    grid-column: 2;
    grid-row: 1 / 4;
    margin-top: 0;
  }

  .work-card:not(:first-child) .compact-stack span {
    display: block;
    margin-bottom: 5px;
  }

  .work-card:not(:first-child) .compact-stack span::after {
    content: none;
  }

  .work-card:not(:first-child) .text-button {
    grid-column: 2;
    grid-row: 4;
    align-self: end;
    margin-top: 0;
  }

  .work-card h3 {
    font-size: clamp(1.35rem, 1.7vw, 1.9rem);
  }

  .work-card-copy > p:not(.work-capability) {
    margin-top: 8px;
    font-size: 0.78rem;
    line-height: 1.38;
  }

  .work-capability {
    font-size: 0.65rem;
    line-height: 1.4;
  }

  .compact-stack {
    gap: 3px 8px;
    margin-top: 8px;
    font-size: 0.62rem;
    line-height: 1.35;
  }

  .compact-stack span:not(:last-child)::after {
    margin-left: 8px;
  }

  .text-button {
    padding-top: 6px;
    font-size: 0.78rem;
  }
}

/* Echo case study */

.case-page {
  background: var(--white);
}

.case-page::before {
  z-index: 0;
}

.case-topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 62px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 0 max(24px, calc((100vw - var(--page-width)) / 2));
  background: rgba(255, 254, 253, 0.92);
  backdrop-filter: blur(14px);
}

.case-back {
  justify-self: start;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
}

.case-back span {
  margin-right: 9px;
  color: var(--rose-dark);
}

.case-topbar nav {
  display: flex;
  gap: 24px;
}

.case-topbar nav a {
  color: var(--muted);
  font-size: 0.7rem;
  text-decoration: none;
}

.case-topbar nav a:hover {
  color: var(--rose-dark);
}

.case-system-button {
  justify-self: end;
  min-height: 36px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.7rem;
  cursor: pointer;
}

.case-cover {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.7fr);
  grid-template-rows: 1fr auto;
  min-height: calc(100svh - 62px);
  gap: 4vw 6vw;
  padding: clamp(50px, 8vh, 100px) max(28px, calc((100vw - var(--page-width)) / 2));
  color: var(--white);
  background: var(--ink);
}

.case-cover-copy {
  align-self: center;
}

.case-code {
  color: var(--rose);
}

.case-cover h1 {
  max-width: 940px;
  margin: 22px 0 0;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 5.4vw, 6.8rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.94;
  view-transition-name: echo-project-title;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 44px;
  margin-top: clamp(36px, 6vh, 70px);
}

.case-meta p {
  margin: 0;
  color: #c0b9b3;
  font-size: 0.75rem;
}

.case-meta span {
  display: block;
  margin-bottom: 5px;
  color: #77716c;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-cover-media {
  align-self: center;
}

.case-cover-placeholder {
  min-height: clamp(320px, 48vh, 540px);
  border: 8px solid #302c2a;
}

.case-cover-media p {
  margin: 8px 0 0;
  color: #77716c;
  font-family: var(--mono);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.cover-metrics {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line-dark);
}

.cover-metrics > div {
  padding: 16px 18px 0;
  border-left: 1px solid var(--line-dark);
}

.cover-metrics > div:first-child {
  border-left: 0;
  padding-left: 0;
}

.cover-metrics strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 3.3rem);
  line-height: 1;
}

.cover-metrics span,
.cover-metrics small {
  display: block;
  margin-top: 7px;
  color: #a8a19c;
  font-size: 0.67rem;
}

.cover-metrics small {
  max-width: 220px;
  margin-top: 3px;
  color: #77716c;
  font-size: 0.54rem;
}

.cover-cost strong {
  color: var(--rose);
}

.case-chapter {
  position: relative;
  z-index: 1;
  padding: clamp(90px, 13vw, 190px) max(28px, calc((100vw - var(--page-width)) / 2));
  background: var(--white);
}

.case-chapter:nth-of-type(odd) {
  background: #f7f4f0;
}

.chapter-header {
  display: grid;
  grid-template-columns: clamp(72px, 9vw, 150px) minmax(0, 1fr);
  max-width: 1250px;
  margin-bottom: clamp(60px, 8vw, 110px);
}

.chapter-header > span {
  color: var(--rose);
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 8.8rem);
  line-height: 0.8;
}

.chapter-header p {
  margin: 4px 0 14px;
  color: var(--rose-dark);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.chapter-header h2 {
  max-width: 1080px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5.8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
  gap: 7vw;
  align-items: center;
}

.reading-copy {
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
}

.reading-copy p {
  margin: 0 0 24px;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(9, auto);
  align-items: center;
  padding: 48px 30px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.process-strip span {
  padding: 20px 12px;
  font-family: var(--serif);
  font-size: clamp(0.9rem, 1.4vw, 1.3rem);
  text-align: center;
}

.process-strip i {
  color: var(--rose-dark);
  font-style: normal;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin-left: auto;
}

.before-after article {
  min-height: 430px;
  padding: clamp(30px, 4vw, 64px);
  border: 1px solid var(--line);
}

.before-column {
  color: #aaa39e;
  background: var(--paper);
}

.after-column {
  color: var(--white);
  background: var(--ink);
}

.before-after h3 {
  margin: 12px 0 36px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.before-after ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.before-after li {
  border-top: 1px solid currentColor;
  padding: 9px 0;
  font-size: 0.86rem;
}

.shift-chapter blockquote {
  max-width: 980px;
  margin: clamp(70px, 9vw, 130px) 0 0;
  color: var(--rose-dark);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.3vw, 3.5rem);
  line-height: 1.15;
}

.use-cases {
  max-width: 760px;
  margin: 44px 0 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.result-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(350px, 0.8fr);
  gap: 4vw;
}

.result-placeholder {
  min-height: 690px;
  border: 12px solid var(--paper);
}

.transformation {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.payload {
  border-top: 1px solid var(--ink);
  padding-top: 14px;
}

.payload > p {
  margin: 0 0 20px;
  color: var(--rose-dark);
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payload pre {
  overflow-x: auto;
  margin: 0;
  white-space: pre-wrap;
}

.payload code {
  font-family: var(--mono);
  font-size: clamp(0.68rem, 1vw, 0.82rem);
  line-height: 1.8;
}

.payload-output {
  border: 0;
  padding: 24px;
  color: var(--white);
  background: var(--ink);
}

.payload-output > p {
  color: var(--rose);
}

.transform-arrow {
  margin: 34px 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 2rem);
}

.transform-arrow span {
  color: var(--rose-dark);
}

.project-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-timeline li {
  position: relative;
  min-height: 310px;
  border-top: 1px solid var(--ink);
  padding: 44px 22px 0 0;
}

.project-timeline li::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rose);
  content: "";
}

.project-timeline time {
  color: var(--rose-dark);
  font-family: var(--mono);
  font-size: 0.67rem;
}

.project-timeline h3 {
  margin: 30px 0 10px;
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.1;
}

.project-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.ownership-chapter,
.impact-chapter {
  color: var(--white);
  background: var(--ink) !important;
}

.chapter-header-inverse h2 {
  color: var(--white);
}

.ownership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.ownership-grid article {
  min-height: 270px;
  padding: 30px;
  border-left: 1px solid var(--line-dark);
}

.ownership-grid article:first-child {
  border-left: 0;
}

.ownership-grid h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.7rem;
}

.ownership-grid p {
  margin: 70px 0 0;
  color: #aaa49f;
  font-size: 0.79rem;
}

.contribution-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  margin-top: 64px;
}

.contribution-notes p {
  margin: 0;
  color: #aaa49f;
  font-size: 0.82rem;
}

.contribution-notes span {
  display: block;
  margin-bottom: 12px;
  color: var(--rose);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.decisions-chapter {
  padding-bottom: 80px;
}

.decision {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: 7vw;
  align-items: center;
  min-height: 560px;
  border-top: 1px solid var(--line);
}

.decision-reverse .decision-copy {
  grid-column: 2;
}

.decision-reverse > :last-child {
  grid-column: 1;
  grid-row: 1;
}

.decision-copy h3 {
  margin: 10px 0 24px;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  line-height: 1;
}

.decision-copy > p:not(.decision-index) {
  color: var(--muted);
  font-size: 0.94rem;
}

.decision-copy dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px 20px;
  border-top: 1px solid var(--line);
  margin: 28px 0 0;
  padding-top: 18px;
  font-size: 0.75rem;
}

.decision-copy dt {
  color: var(--rose-dark);
  font-family: var(--mono);
  text-transform: uppercase;
}

.decision-copy dd {
  margin: 0;
  color: var(--muted);
}

.mini-diagram,
.evaluation-board {
  display: flex;
  min-height: 300px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 50px 30px;
  background: var(--paper);
}

.mini-diagram > span,
.mini-diagram b,
.evaluation-board > span,
.evaluation-board > strong {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: 14px;
  background: var(--white);
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

.mini-diagram i {
  min-width: 28px;
  color: var(--rose-dark);
  font-style: normal;
  text-align: center;
}

.mini-diagram .dashed {
  letter-spacing: 0.25em;
}

.branching {
  flex-wrap: wrap;
}

.branching div {
  display: flex;
  flex-basis: 100%;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.branching b {
  min-height: 50px;
  border-color: var(--rose);
}

.evaluation-board {
  flex-direction: column;
  gap: 22px;
}

.evaluation-board div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  gap: 8px;
}

.evaluation-board b {
  border-top: 1px solid var(--rose);
  padding: 10px;
  font-family: var(--mono);
  font-size: 0.65rem;
  text-align: center;
}

.evaluation-board > strong {
  border-color: var(--rose);
}

.walkthrough-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 50px;
  padding: clamp(30px, 4vw, 60px);
  color: var(--white);
  background: var(--ink);
}

.walkthrough-cta h3 {
  max-width: 760px;
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1.08;
}

.walkthrough-cta .button-primary {
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--white);
}

.production-story {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
}

.production-story article {
  min-height: 330px;
  padding: 24px;
  border-left: 1px solid var(--line);
}

.production-story article:first-child {
  border-left: 0;
  padding-left: 0;
}

.production-story span {
  color: var(--rose-dark);
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.production-story h3 {
  margin: 48px 0 16px;
  font-family: var(--serif);
  font-size: 1.8rem;
}

.production-story p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.audio-comparison {
  margin-top: 70px;
}

.audio-comparison > div {
  display: grid;
  grid-template-columns: 90px 0.55fr 1fr 1.4fr;
  align-items: stretch;
  border-top: 1px solid var(--line);
}

.audio-comparison span,
.audio-comparison i {
  padding: 18px;
  font-size: 0.72rem;
  font-style: normal;
}

.audio-comparison span {
  color: var(--rose-dark);
  font-family: var(--mono);
  padding-left: 0;
  text-transform: uppercase;
}

.audio-comparison i {
  border-left: 1px solid var(--line);
}

.audio-comparison .recorded {
  color: #77716c;
  background: var(--paper);
}

.audio-comparison .missing {
  color: #9c9691;
  background: repeating-linear-gradient(135deg, #f1eee9, #f1eee9 8px, #e5dfd8 8px, #e5dfd8 16px);
  text-decoration: line-through;
}

.audio-comparison .preserved {
  border-color: var(--rose);
  color: var(--rose-dark);
}

.causality-note {
  max-width: 780px;
  margin: 26px 0 0 auto;
  color: var(--muted);
  font-size: 0.78rem;
}

.impact-composition {
  display: grid;
  grid-template-columns: 1.25fr repeat(2, 0.75fr);
  border-top: 1px solid var(--line-dark);
}

.impact-composition > div {
  min-height: 210px;
  padding: 24px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.impact-composition strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 5vw, 6rem);
  font-weight: 600;
  line-height: 1;
}

.impact-composition span {
  display: block;
  max-width: 260px;
  margin-top: 18px;
  color: #b5aea9;
  font-size: 0.8rem;
}

.impact-composition small {
  display: block;
  max-width: 300px;
  margin-top: 7px;
  color: #77716c;
  font-size: 0.6rem;
}

.impact-composition .impact-primary {
  grid-row: span 2;
  min-height: 420px;
}

.impact-primary strong {
  color: var(--rose);
  font-size: clamp(4rem, 9vw, 10rem);
}

.impact-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  margin-top: 70px;
}

.impact-summary p {
  margin: 0;
  color: #aaa49f;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  line-height: 1.25;
}

.case-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--rose);
}

.case-footer a {
  display: flex;
  min-height: 180px;
  align-items: center;
  justify-content: space-between;
  border-right: 1px solid rgba(23, 22, 21, 0.25);
  padding: 30px max(28px, calc((100vw - var(--page-width)) / 2));
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 600;
  text-decoration: none;
}

.case-footer a:hover {
  color: var(--white);
  background: var(--rose-dark);
}

@media (max-width: 1180px) {
  .landing-panel {
    padding-right: 34px;
    padding-left: 34px;
  }

  .panel-number {
    left: 34px;
  }

  .panel-label {
    left: 125px;
  }

  .about-panel {
    grid-template-columns: 1.25fr 0.75fr;
  }

  .about-evidence {
    display: none;
  }

  .capability-grid {
    grid-column: 1 / -1;
  }

  .work-panel {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .work-heading {
    align-self: start;
  }

  .work-heading h2,
  .work-heading > p:last-child {
    max-width: 780px;
  }

  .selected-work-grid {
    width: 100%;
    align-self: start;
    padding-top: 0;
  }

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

  .project-timeline li {
    min-height: 250px;
  }

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

  .cover-metrics > div:nth-child(4) {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 900px) {
  .landing-document {
    scroll-snap-type: none;
  }

  .landing-stack {
    width: min(calc(100% - 20px), var(--page-width));
  }

  .landing-section {
    position: relative;
    top: auto;
    min-height: auto;
    padding: 0 0 12px;
    scroll-snap-align: none;
  }

  .landing-section:last-child {
    padding-bottom: 0;
  }

  .landing-panel {
    position: relative;
    top: auto;
    display: block;
    min-height: auto;
    margin: 0;
    padding: 124px 28px 46px;
    transform: none;
  }

  .panel-number {
    top: 72px;
    left: 28px;
    font-size: 3.5rem;
  }

  .panel-label {
    top: 80px;
    left: 108px;
  }

  .about-identity,
  .echo-heading,
  .work-heading,
  .contact-intro {
    padding-top: 24px;
  }

  .about-identity > .eyebrow,
  .echo-heading > .eyebrow,
  .work-heading > .eyebrow,
  .contact-intro > .eyebrow {
    margin-left: 0;
  }

  .about-portrait {
    margin-top: 40px;
    padding: 0;
  }

  .portrait-photo {
    height: 65vw;
    max-height: 620px;
  }

  .capability-grid,
  .metric-row,
  .comparison,
  .selected-work-grid,
  .contact-directory {
    margin-top: 42px;
  }

  .echo-visual {
    padding-top: 40px;
  }

  .echo-panel::before {
    display: none;
  }

  .echo-actions {
    justify-content: flex-start;
    margin-top: 34px;
  }

  .work-heading h2 {
    max-width: 780px;
  }

  .selected-work-grid {
    padding-top: 0;
  }

  .contact-directory {
    padding-top: 0;
  }

  .contact-footer {
    margin-top: 64px;
  }

  .case-topbar {
    grid-template-columns: 1fr auto;
    padding: 0 18px;
  }

  .case-topbar nav {
    display: none;
  }

  .case-cover {
    grid-template-columns: 1fr;
    padding-right: 28px;
    padding-left: 28px;
  }

  .case-cover-media {
    display: none;
  }

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

  .cover-metrics > div:nth-child(3),
  .cover-metrics > div:nth-child(5) {
    border-left: 0;
    padding-left: 0;
  }

  .cover-metrics > div:nth-child(4) {
    border-left: 1px solid var(--line-dark);
    padding-left: 18px;
  }

  .problem-layout,
  .result-layout,
  .decision {
    grid-template-columns: 1fr;
  }

  .process-strip {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .process-strip i {
    transform: rotate(90deg);
  }

  .result-placeholder {
    min-height: 60vw;
  }

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

  .ownership-grid article:nth-child(3),
  .production-story article:nth-child(3) {
    border-left: 0;
  }

  .decision {
    gap: 40px;
    padding: 70px 0;
  }

  .decision-reverse .decision-copy,
  .decision-reverse > :last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .decision-reverse .decision-copy {
    order: 1;
  }

  .walkthrough-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .impact-composition {
    grid-template-columns: 1fr 1fr;
  }

  .impact-composition .impact-primary {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-nav {
    top: 8px;
    width: calc(100% - 16px);
    overflow-x: auto;
    justify-content: space-between;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    padding: 0 11px;
  }

  .landing-stack {
    width: 100%;
    padding: 0;
  }

  .landing-panel {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    padding: 124px 20px 42px;
    box-shadow: none;
  }

  .panel-number {
    top: 74px;
    left: 20px;
  }

  .panel-label {
    top: 82px;
    left: 94px;
  }

  .about-identity h1 {
    font-size: 3.8rem;
  }

  .display-statement {
    font-size: 1.8rem;
  }

  .button-row,
  .echo-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .text-link {
    justify-content: center;
  }

  .button-row .about-contact-link {
    margin-left: 0;
  }

  .portrait-photo {
    height: 100vw;
    max-height: none;
  }

  .capability-grid,
  .metric-row,
  .comparison,
  .selected-work-grid {
    grid-template-columns: 1fr;
  }

  .capability-grid article,
  .capability-grid article:first-child {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 14px 0;
  }

  .echo-heading h2 {
    font-size: 6rem;
  }

  .metric,
  .metric:first-child {
    min-height: auto;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
    padding: 18px 0;
  }

  .metric strong {
    font-size: 2.5rem;
  }

  .work-heading h2,
  .contact-intro h2 {
    font-size: 2.9rem;
  }

  .work-card:first-child {
    grid-row: auto;
  }

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

  .work-card:not(:first-child) .work-placeholder {
    display: block;
    min-height: 180px;
  }

  .contact-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .case-topbar {
    min-height: 56px;
  }

  .case-system-button {
    padding: 0 12px;
  }

  .case-cover {
    min-height: auto;
    padding: 70px 20px;
  }

  .case-cover h1 {
    font-size: 3.35rem;
  }

  .case-meta {
    display: grid;
    gap: 14px;
  }

  .cover-metrics,
  .before-after,
  .ownership-grid,
  .contribution-notes,
  .production-story,
  .impact-composition,
  .impact-summary {
    grid-template-columns: 1fr;
  }

  .cover-metrics > div,
  .cover-metrics > div:nth-child(3),
  .cover-metrics > div:nth-child(4),
  .cover-metrics > div:nth-child(5) {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
    padding: 18px 0;
  }

  .case-chapter {
    padding: 90px 20px;
  }

  .chapter-header {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .chapter-header h2 {
    font-size: 2.6rem;
  }

  .before-after article {
    min-height: auto;
  }

  .result-placeholder {
    min-height: 95vw;
  }

  .project-timeline {
    grid-template-columns: 1fr;
  }

  .project-timeline li {
    min-height: auto;
    padding: 30px 0 40px 24px;
    border-top: 0;
    border-left: 1px solid var(--ink);
  }

  .project-timeline li::before {
    top: 34px;
    left: -5px;
  }

  .project-timeline h3 {
    margin-top: 16px;
  }

  .ownership-grid article,
  .ownership-grid article:nth-child(3),
  .production-story article,
  .production-story article:first-child,
  .production-story article:nth-child(3) {
    min-height: auto;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
    padding: 28px 0;
  }

  .ownership-grid p,
  .production-story h3 {
    margin-top: 24px;
  }

  .mini-diagram {
    min-height: 260px;
    align-items: stretch;
    flex-direction: column;
  }

  .mini-diagram i {
    transform: rotate(90deg);
  }

  .branching div,
  .evaluation-board div {
    grid-template-columns: 1fr 1fr;
    flex-wrap: wrap;
  }

  .walkthrough-cta .button {
    width: 100%;
    min-height: 58px;
    white-space: normal;
    text-align: center;
  }

  .audio-comparison > div {
    grid-template-columns: 1fr;
  }

  .audio-comparison i {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .impact-composition .impact-primary {
    grid-column: auto;
    min-height: 330px;
  }

  .impact-primary strong {
    font-size: 4rem;
  }

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

  .case-footer a {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 22, 21, 0.25);
    padding: 22px;
  }
}

/* Responsive homepage modes: wide ≥1800, standard 1450–1799,
   compact 1101–1449, and flowing tablet/mobile ≤1100. */
.landing-page {
  --landing-gutter: clamp(16px, 2.5vw, 48px);
  --landing-panel-pad-x: clamp(22px, 4.4vw, 70px);
  --landing-panel-pad-y: clamp(28px, 8vh, 108px);
  --landing-column-gap: clamp(24px, 4.8vw, 76px);
  --landing-row-gap: clamp(16px, 3vh, 30px);
}

.landing-stack { width: min(calc(100% - (var(--landing-gutter) * 2)), 1440px); }
.landing-panel { min-height: calc(100svh - 24px); padding: var(--landing-panel-pad-y) var(--landing-panel-pad-x) clamp(26px, 4vh, 52px); }

@media (max-width: 1100px) {
  .landing-document { scroll-snap-type: none; }
  .landing-stack { display: block; width: min(calc(100% - (var(--landing-gutter) * 2)), 920px); }
  .landing-section { position: relative; min-height: auto; padding: 0 0 14px; }
  .landing-panel { display: block; min-height: auto; padding: 122px clamp(24px, 5vw, 48px) clamp(42px, 7vw, 64px); transform: none; }
  .landing-section.is-past .landing-panel { filter: none; transform: none; }
  .panel-number { top: 70px; left: clamp(24px, 5vw, 48px); }
  .panel-label { top: 80px; left: clamp(106px, 15vw, 138px); }
  .about-identity, .echo-heading, .work-heading, .contact-intro, .echo-visual { padding-top: 20px; }
  .about-portrait { margin-top: 34px; padding-top: 0; }
  .portrait-photo { height: min(72vw, 560px); min-height: 0; }
  .about-evidence, .capability-grid, .metric-row, .comparison, .selected-work-grid, .contact-directory { margin-top: 34px; }
  .echo-visual { max-width: 760px; }
  .metric-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .metric:nth-child(odd) { border-left: 0; padding-left: 0; }
  .metric:nth-child(n + 3) { border-top: 1px solid var(--line-dark); }
  .comparison { grid-template-columns: 1fr 1fr; }
  .work-heading { max-width: 720px; }
  .selected-work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: auto auto; min-height: 0; }
  .work-card:first-child { grid-column: 1 / -1; grid-row: auto; grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr); }
  .work-card:first-child .work-visual { min-height: 260px; }
  .contact-panel { min-height: calc(100svh - 14px); }
  .contact-intro { max-width: 760px; }
  .contact-directory { max-width: 620px; padding-top: 0; }
}

@media (max-width: 640px) {
  .landing-page { --landing-gutter: 0px; }
  .landing-stack { width: 100%; }
  .landing-section { padding-bottom: 0; }
  .landing-panel { border-right: 0; border-left: 0; border-radius: 0; padding: 118px 20px 42px; }
  .site-nav { width: calc(100% - 16px); min-height: 44px; }
  .site-nav a { min-height: 38px; padding: 0 12px; }
  .about-identity h1 { font-size: clamp(3.5rem, 18vw, 4.6rem); }
  .role-line, .supporting-copy, .work-heading > p:last-child, .work-card-copy > p:not(.work-capability), .contact-intro > p:last-child { font-size: 1rem; }
  .display-statement { font-size: clamp(1.52rem, 7.4vw, 1.9rem); }
  .about-portrait { padding-top: 40px; }
  .portrait-photo { height: min(112vw, 520px); }
  .echo-heading h2 { font-size: clamp(5.2rem, 27vw, 7.2rem); }
  .echo-statement { font-size: 1.22rem; }
  .role-note { font-size: .95rem; }
  .echo-review-visual { min-height: 0; }
  .metric { min-height: 132px; padding: 16px 12px 14px; }
  .metric strong { font-size: clamp(1.8rem, 9.5vw, 2.4rem); }
  .metric span { font-size: .82rem; }
  .metric small { font-size: .71rem; }
  .comparison { grid-template-columns: 1fr; gap: 18px; }
  .selected-work-grid { grid-template-columns: 1fr; }
  .work-card:first-child { grid-column: auto; grid-template-columns: 1fr; }
  .work-card:first-child .work-visual, .work-visual { min-height: 180px; }
  .work-card-copy { padding: 20px; }
  .text-button { min-height: 44px; padding-top: 14px; }
  .contact-panel { min-height: auto; }
  .contact-intro h2 { font-size: clamp(2.75rem, 12.5vw, 3.55rem); line-height: .96; }
  .contact-entry { padding: 16px 0; }
  .contact-entry a, .contact-entry strong { min-height: 44px; align-items: center; font-size: clamp(1.25rem, 6vw, 1.55rem); }
  .contact-directory .contact-entry:last-child { border-bottom: 0; }
  .contact-footer { margin-top: 35px; }
}

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

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

  .landing-panel {
    transform: none !important;
  }

}

/* Homepage editorial refinement */
body::before {
  background-image:
    linear-gradient(rgba(23, 22, 21, 0.011) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 22, 21, 0.011) 1px, transparent 1px);
  background-size: 64px 64px;
}

.landing-stack {
  width: min(calc(100% - 64px), 1400px);
}

.site-nav {
  width: min(calc(100% - 48px), 700px);
  min-height: 48px;
  padding: 5px 10px;
  box-shadow: 0 3px 12px rgba(23, 22, 21, 0.025);
}

.site-nav a {
  min-height: 38px;
  gap: 9px;
  padding: 0 16px;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

.site-nav a span {
  color: var(--rose-dark);
  font-size: 0.69rem;
}

.site-nav a[aria-current="page"] {
  background: rgba(189, 113, 107, 0.13);
  box-shadow: inset 0 -2px var(--rose-dark);
}

.landing-panel {
  padding: clamp(86px, 9vh, 108px) clamp(38px, 4.4vw, 70px) clamp(32px, 4.5vh, 52px);
}

.panel-number { top: clamp(74px, 8vh, 92px); left: clamp(36px, 4.8vw, 78px); }
.panel-label { top: clamp(80px, 8.5vh, 98px); left: clamp(130px, 12.5vw, 202px); }

.about-panel {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  grid-template-rows: minmax(0, 1fr) auto;
  column-gap: clamp(42px, 5vw, 82px);
  row-gap: 26px;
}

.about-identity { align-self: start; padding-top: clamp(68px, 11vh, 126px); }
.about-identity h1 { font-size: clamp(4.3rem, 7.5vw, 8.25rem); }
.role-line { font-size: clamp(1.05rem, 1.3vw, 1.2rem); }
.display-statement { max-width: 710px; font-size: clamp(1.52rem, 2.05vw, 2.16rem); }
.supporting-copy { color: #5e5954; font-size: clamp(1rem, 1.14vw, 1.1rem); line-height: 1.62; }
.about-portrait { align-self: start; padding-top: clamp(62px, 9vh, 100px); }
.portrait-photo { min-height: clamp(360px, 49vh, 530px); max-height: 560px; }
.media-caption { font-size: 0.7rem; }

.about-evidence,
.capability-grid { align-self: start; }
.about-evidence { padding-top: 17px; }
.about-evidence p:last-child { font-size: clamp(1.12rem, 1.35vw, 1.28rem); line-height: 1.42; }
.capability-grid { padding-top: 1px; }
.capability-grid article { padding: 16px 16px 0; }
.capability-grid h2 { font-size: 0.96rem; }
.capability-grid p { color: #615c57; font-size: 0.9rem; line-height: 1.58; }

.echo-panel {
  grid-template-columns: minmax(0, 0.84fr) minmax(480px, 1.16fr);
  grid-template-rows: minmax(0, 1fr) auto auto;
  column-gap: clamp(36px, 5vw, 76px);
  row-gap: 20px;
}

.echo-heading { align-self: start; padding-top: clamp(70px, 10vh, 112px); }
.echo-heading h2 { font-size: clamp(6.3rem, 10.5vw, 11.2rem); }
.echo-statement { font-size: clamp(1.3rem, 1.65vw, 1.65rem); line-height: 1.28; }
.role-note { color: #cec7c1; font-size: 0.98rem; line-height: 1.62; }
.echo-visual { align-self: start; padding-top: clamp(68px, 9vh, 102px); }

.echo-review-visual {
  display: grid;
  min-height: clamp(270px, 35vh, 382px);
  grid-template-columns: minmax(0, 0.9fr) 74px minmax(0, 1.1fr);
  border: 1px solid #4a4541;
  background: #201e1c;
}

.echo-transcript,
.echo-structured-review { padding: 20px; }
.echo-transcript { border-right: 1px solid #403b37; }
.echo-visual-kicker { display: flex; justify-content: space-between; color: #b7afa9; font: 0.67rem var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.echo-visual-kicker b { color: var(--rose); font-weight: 500; }
.echo-transcript p { margin: 20px 0 0; color: #ddd6d0; font-size: .9rem; line-height: 1.55; }
.echo-transcript p + p { margin-top: 15px; color: #bbb3ad; }
.echo-transcript b { display: block; margin-bottom: 5px; color: var(--rose); font: 0.68rem var(--mono); letter-spacing: .07em; text-transform: uppercase; }
.echo-transform-arrow { display: grid; place-content: center; gap: 10px; border-right: 1px solid #403b37; color: var(--rose); text-align: center; }
.echo-transform-arrow span { font: .68rem var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.echo-transform-arrow i { font-size: 1.6rem; font-style: normal; }
.echo-structured-review dl { margin: 20px 0 0; }
.echo-structured-review dl > div { padding: 9px 0; border-top: 1px solid #403b37; }
.echo-structured-review dt { color: #b7afa9; font: .65rem var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.echo-structured-review dd { margin: 4px 0 0; color: #f3eee9; font-size: .88rem; line-height: 1.3; }
.echo-structured-review .is-missing dd { color: #e0a19c; }

.metric-row { align-items: stretch; }
.metric { display: flex; min-height: 144px; flex-direction: column; padding: 20px 20px 16px; }
.metric strong { font-size: clamp(2rem, 3.05vw, 3.35rem); }
.metric span { color: #d9d1cb; font-size: .9rem; line-height: 1.48; }
.metric small { margin-top: auto; color: #c7beb8; font-size: .76rem; line-height: 1.45; }
.comparison p:last-child { color: #d0c9c3; font-size: .92rem; line-height: 1.58; }

.work-panel { grid-template-columns: minmax(0, 29%) minmax(0, 71%); column-gap: clamp(38px, 4.8vw, 74px); }
.work-heading { align-self: start; padding-top: clamp(88px, 12vh, 138px); }
.work-heading h2 { font-size: clamp(2.55rem, 3.65vw, 4.55rem); }
.work-heading > p:last-child { color: #5e5954; font-size: 1rem; line-height: 1.62; }
.selected-work-grid { align-self: start; min-height: clamp(580px, 72vh, 760px); padding-top: clamp(80px, 10vh, 120px); gap: 18px; }
.work-card { min-height: 0; background: rgba(255, 254, 253, 0.84); }
.work-card-copy { padding: 22px; }
.work-card h3 { font-size: clamp(1.6rem, 1.85vw, 2.05rem); }
.work-card-copy > p:not(.work-capability) { color: #5c5752; font-size: .94rem; line-height: 1.57; }
.work-capability { font-size: .72rem; }
.compact-stack { color: #68615b; font-size: .74rem; }
.text-button { font-size: .9rem; }

.work-visual {
  position: relative;
  display: grid;
  min-height: 100%;
  place-items: center;
  overflow: hidden;
  padding: 18px;
  background:
    linear-gradient(90deg, transparent 0 49.8%, rgba(23, 22, 21, .055) 49.8% 50.2%, transparent 50.2%),
    linear-gradient(#e2dcd6, #d8d0c8);
}

.work-visual::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(78, 70, 64, .14);
  content: "";
}

.project-flow {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 560px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.flow-step {
  min-width: 0;
  border: 1px solid #c4bab1;
  padding: 13px 14px;
  background: rgba(255, 254, 253, .94);
  box-shadow: 0 8px 18px rgba(23, 22, 21, .06);
}

.flow-step span {
  display: block;
  color: var(--rose-dark);
  font: .62rem/1.3 var(--mono);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.flow-step b {
  display: block;
  margin-top: 8px;
  color: #302c29;
  font-size: .78rem;
  line-height: 1.3;
}

.flow-step small {
  display: block;
  margin-top: 5px;
  color: #69615b;
  font-size: .68rem;
  line-height: 1.38;
}

.flow-step--success {
  border-color: rgba(77, 118, 92, .42);
}

.flow-step--success b {
  color: #4d765c;
}

.flow-step--result {
  border-color: rgba(142, 80, 75, .42);
}

.flow-step--result b {
  color: #8e504b;
}

.contact-intro { padding-top: clamp(130px, 20vh, 220px); }
.contact-intro > p:last-child { color: #cec7c1; font-size: clamp(1.03rem, 1.18vw, 1.12rem); }
.contact-directory { padding-top: clamp(72px, 12vh, 136px); }
.contact-entry > span { color: #c4bdb7; font-size: .76rem; }
.contact-footer { color: #d0c7c1; font-size: .74rem; }

@media (max-width: 1180px) {
  .landing-stack { width: min(calc(100% - 44px), 1400px); }
  .about-panel { grid-template-columns: 1.12fr .88fr; }
  .work-panel { grid-template-columns: 1fr; }
  .work-heading { padding-top: 42px; }
  .selected-work-grid { min-height: 0; padding-top: 16px; }
}

@media (max-width: 900px) {
  .landing-stack { width: min(calc(100% - 20px), 1400px); }
  .site-nav { min-height: 44px; }
  .landing-panel { padding-top: 124px; }
  .about-identity, .echo-heading, .work-heading, .contact-intro, .echo-visual { padding-top: 24px; }
  .echo-review-visual { min-height: 300px; }
  .selected-work-grid { min-height: 0; }
  .contact-directory { padding-top: 0; }
}

@media (max-width: 640px) {
  .site-nav { width: calc(100% - 16px); }
  .site-nav a { min-height: 36px; padding: 0 13px; font-size: .78rem; }
  .echo-review-visual { grid-template-columns: 1fr; }
  .echo-transcript, .echo-transform-arrow { border-right: 0; border-bottom: 1px solid #403b37; }
  .echo-transform-arrow { grid-template-columns: auto auto; padding: 12px; }
  .echo-transform-arrow i { transform: rotate(90deg); }
  .work-visual { min-height: 180px; }
}

/*
 * Final homepage layout architecture.
 * Desktop panels share one viewport shell; only their internal grids differ.
 */
@media (min-width: 1101px) {
  .landing-page {
    --home-gutter: clamp(18px, 2.5vw, 48px);
    --home-panel-x: clamp(34px, 4vw, 68px);
    --home-panel-top: clamp(76px, 8vh, 92px);
    --home-panel-bottom: clamp(22px, 3vh, 42px);
    --home-content-gap: clamp(18px, 2.5vw, 40px);
  }

  .landing-stack {
    width: min(
      calc(100% - (var(--home-gutter) * 2)),
      clamp(1400px, 72vw, 2400px)
    );
  }

  .landing-section {
    height: 100svh;
    min-height: 100svh;
    padding: 12px 0;
  }

  .landing-panel {
    width: 100%;
    height: calc(100svh - 24px);
    min-height: 0;
    overflow: hidden;
    padding: var(--home-panel-top) var(--home-panel-x) var(--home-panel-bottom);
    border-radius: 24px;
    background-clip: padding-box;
    isolation: isolate;
  }

  .landing-panel::after {
    border-radius: inherit;
  }

  .panel-number {
    top: var(--home-panel-top);
    left: var(--home-panel-x);
  }

  .panel-label {
    top: calc(var(--home-panel-top) + 8px);
    left: calc(var(--home-panel-x) + 128px);
  }

  .echo-panel::before {
    display: none;
  }

  .about-panel {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    grid-template-rows: minmax(0, 1fr) auto;
    gap: var(--home-content-gap);
  }

  .about-identity,
  .about-portrait {
    align-self: center;
    padding-top: 54px;
  }

  .about-evidence,
  .capability-grid {
    align-self: end;
  }

  .echo-panel {
    grid-template-columns: minmax(0, .84fr) minmax(500px, 1.16fr);
    grid-template-rows: minmax(0, 1fr) auto auto;
    gap: 18px var(--home-content-gap);
  }

  .echo-heading,
  .echo-visual {
    min-height: 0;
    align-self: center;
    padding-top: 46px;
  }

  .metric-row {
    min-height: 0;
  }

  .comparison,
  .echo-actions {
    align-self: end;
  }

  .work-panel {
    grid-template-columns: minmax(240px, 29%) minmax(0, 71%);
    gap: var(--home-content-gap);
  }

  .work-heading {
    align-self: center;
    padding-top: 44px;
  }

  .selected-work-grid {
    height: 100%;
    min-height: 0;
    align-self: stretch;
    align-content: center;
    padding-top: 54px;
  }

  .work-card {
    min-width: 0;
    min-height: 0;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .work-card {
    grid-template-rows: minmax(150px, 1fr) auto;
  }

  .work-card:first-child {
    grid-template-rows: minmax(280px, 1fr) auto;
  }

  .work-card:first-child .project-flow {
    width: min(100%, 380px);
    grid-template-columns: 1fr;
  }

  .work-card-copy {
    padding: 16px 18px 14px;
  }

  .work-card-copy > p:not(.work-capability) {
    margin-top: 9px;
    font-size: .9rem;
    line-height: 1.48;
  }

  .work-capability {
    font-size: .68rem;
  }

  .compact-stack {
    margin-top: 10px;
    font-size: .7rem;
  }

  .work-card .text-button {
    margin-top: 14px;
    padding-top: 6px;
  }

  .contact-intro,
  .contact-directory {
    align-self: center;
    padding-top: 0;
  }
}

/* Wide composition: same shell, wider bounded canvas and denser internal rhythm. */
@media (min-width: 2200px) {
  .landing-page {
    --home-gutter: clamp(48px, 6vw, 160px);
    --home-panel-x: clamp(72px, 5vw, 96px);
    --home-panel-top: clamp(96px, 6vh, 124px);
    --home-panel-bottom: clamp(48px, 4vh, 72px);
    --home-content-gap: clamp(54px, 4vw, 82px);
  }

  .site-nav {
    top: 24px;
    width: min(calc(100% - 64px), 820px);
    min-height: 54px;
    padding: 6px 12px;
  }

  .site-nav a {
    min-height: 42px;
    padding: 0 22px;
    font-size: clamp(.86rem, .42vw, .96rem);
  }

  .site-nav a span {
    font-size: clamp(.7rem, .34vw, .78rem);
  }

  .panel-number {
    font-size: clamp(5rem, 3.2vw, 6.3rem);
  }

  .panel-label {
    left: calc(var(--home-panel-x) + 154px);
    font-size: .8rem;
  }

  .about-panel {
    grid-template-columns: minmax(0, 1fr) minmax(620px, .96fr);
    grid-template-rows: minmax(900px, 60vh) auto;
    align-content: start;
    row-gap: 38px;
  }

  .about-identity,
  .about-portrait {
    align-self: start;
    padding-top: clamp(92px, 7vh, 142px);
  }

  .about-identity {
    max-width: 760px;
  }

  .about-identity h1 {
    font-size: clamp(7.5rem, 5.4vw, 9.4rem);
  }

  .display-statement {
    max-width: 690px;
    font-size: clamp(1.8rem, 1.18vw, 2.15rem);
  }

  .supporting-copy {
    max-width: 700px;
    font-size: clamp(1.05rem, .7vw, 1.2rem);
  }

  .portrait-photo {
    height: clamp(620px, 55vh, 1120px);
    min-height: 0;
    max-height: none;
  }

  .about-evidence p:last-child {
    font-size: clamp(1.16rem, .78vw, 1.32rem);
  }

  .capability-grid h2 {
    font-size: 1rem;
  }

  .capability-grid p {
    font-size: 1.08rem;
  }

  .echo-panel {
    grid-template-columns: minmax(0, .78fr) minmax(760px, 1.22fr);
    grid-template-rows: clamp(720px, 60vh, 1280px) 190px 150px;
    align-content: start;
    row-gap: 24px;
  }

  .echo-heading,
  .echo-visual {
    align-self: center;
    padding-top: 38px;
  }

  .echo-heading h2 {
    font-size: clamp(9rem, 6.6vw, 11.5rem);
  }

  .echo-statement {
    max-width: 580px;
    font-size: clamp(1.5rem, .96vw, 1.72rem);
  }

  .role-note {
    max-width: 590px;
    font-size: 1rem;
  }

  .echo-review-visual {
    height: clamp(420px, 36vh, 760px);
    min-height: 0;
    grid-template-columns: minmax(0, .92fr) 78px minmax(0, 1.08fr);
  }

  .echo-transcript p,
  .echo-structured-review dd {
    font-size: .96rem;
  }

  .metric {
    min-height: 0;
    padding: 18px 20px 14px;
  }

  .metric strong {
    font-size: clamp(2.7rem, 1.75vw, 3.35rem);
  }

  .metric span {
    font-size: .94rem;
  }

  .metric small {
    font-size: .8rem;
  }

  .comparison p:last-child {
    font-size: .94rem;
  }

  .work-panel {
    grid-template-columns: minmax(300px, 24%) minmax(0, 76%);
  }

  .work-heading {
    align-self: start;
    padding-top: clamp(130px, 12vh, 220px);
  }

  .work-heading h2 {
    max-width: 390px;
    font-size: clamp(3.5rem, 2.5vw, 4.5rem);
  }

  .work-heading > p:last-child {
    max-width: 390px;
    font-size: 1rem;
  }

  .selected-work-grid {
    height: min(100%, 1700px);
    padding-top: 70px;
    gap: 20px;
  }

  .work-card-copy {
    padding: 22px 24px 20px;
  }

  .work-card-copy > p:not(.work-capability) {
    max-width: 600px;
    font-size: 1.05rem;
  }

  .work-card:first-child {
    grid-template-rows: minmax(420px, 1fr) auto;
  }

  .work-card:first-child .project-flow {
    width: min(100%, 520px);
  }

  .work-card:first-child .flow-step {
    min-height: 112px;
  }

  .work-card:not(:first-child) {
    grid-template-rows: minmax(210px, 1fr) auto;
  }

  .flow-step {
    padding: 16px 17px;
  }

  .flow-step span {
    font-size: .74rem;
  }

  .flow-step b {
    font-size: .95rem;
  }

  .flow-step small {
    font-size: .82rem;
  }

  .contact-panel {
    grid-template-columns: minmax(0, 1.18fr) minmax(440px, .82fr);
    column-gap: 110px;
  }

  .contact-intro {
    max-width: 980px;
  }

  .contact-intro h2 {
    font-size: clamp(5.3rem, 3.9vw, 7.5rem);
  }

  .contact-intro > p:last-child {
    font-size: 1.15rem;
  }

  .contact-entry a,
  .contact-entry strong {
    font-size: 1.55rem;
  }
}

@media (min-width: 1101px) and (max-width: 1449px), (min-width: 1101px) and (max-height: 900px) {
  .landing-page {
    --home-gutter: clamp(12px, 2.2vw, 30px);
    --home-panel-x: clamp(28px, 3.2vw, 44px);
    --home-panel-top: 64px;
    --home-panel-bottom: 16px;
    --home-content-gap: clamp(14px, 1.8vw, 24px);
  }

  .site-nav {
    top: 12px;
    min-height: 42px;
    width: min(calc(100% - 36px), 700px);
  }

  .site-nav a {
    min-height: 32px;
    padding: 0 12px;
    font-size: .76rem;
  }

  .panel-number {
    font-size: clamp(2.9rem, 4vw, 4rem);
  }

  .panel-label {
    left: calc(var(--home-panel-x) + 106px);
  }

  .about-panel {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, .82fr);
    grid-template-rows: min(450px, 56vh) 112px;
    row-gap: 14px;
    align-content: start;
  }

  .about-identity,
  .about-portrait {
    align-self: start;
    padding-top: 34px;
  }

  .about-identity > .eyebrow {
    margin-left: 118px;
  }

  .about-identity h1 {
    font-size: clamp(3.7rem, 6.2vw, 5.7rem);
  }

  .display-statement {
    margin-top: 14px;
    font-size: clamp(1.32rem, 1.75vw, 1.7rem);
  }

  .supporting-copy {
    margin-top: 10px;
    font-size: .94rem;
  }

  .button-row {
    margin-top: 14px;
  }

  .portrait-photo {
    height: min(41vh, 330px);
    min-height: 0;
    max-height: none;
  }

  .about-evidence {
    padding-top: 10px;
  }

  .about-evidence,
  .capability-grid {
    align-self: start;
  }

  .about-evidence p:last-child {
    font-size: .96rem;
  }

  .capability-grid article {
    padding: 10px 10px 0;
  }

  .capability-grid p {
    margin-top: 4px;
    font-size: .875rem;
    line-height: 1.42;
  }

  .echo-panel {
    grid-template-columns: minmax(0, .86fr) minmax(440px, 1.14fr);
    grid-template-rows: minmax(0, 1fr) 102px 82px;
    gap: 10px 20px;
  }

  .echo-heading,
  .echo-visual {
    align-self: center;
    padding-top: 0;
  }

  .echo-heading > .eyebrow {
    margin-left: 118px;
  }

  .echo-heading h2 {
    margin-top: 2px;
    font-size: clamp(4.7rem, 7.4vw, 6.6rem);
    line-height: .74;
  }

  .echo-statement {
    max-width: 430px;
    margin-top: 11px;
    font-size: 1.12rem;
    line-height: 1.23;
  }

  .role-note {
    max-width: 450px;
    margin-top: 9px;
    font-size: .875rem;
    line-height: 1.35;
  }

  .echo-review-visual {
    height: 210px;
    min-height: 0;
    grid-template-columns: minmax(0, .92fr) 44px minmax(0, 1.08fr);
  }

  .echo-transcript,
  .echo-structured-review {
    padding: 12px;
  }

  .echo-transcript p {
    margin-top: 9px;
    font-size: .8rem;
    line-height: 1.36;
  }

  .echo-structured-review dl {
    margin-top: 8px;
  }

  .echo-structured-review dl > div {
    padding: 5px 0;
  }

  .echo-structured-review dd {
    font-size: .8rem;
  }

  .visual-index {
    margin-top: 6px;
    font-size: .68rem;
  }

  .metric-row {
    grid-row: 2;
  }

  .metric {
    min-height: 0;
    padding: 9px 12px 6px;
  }

  .metric strong {
    font-size: clamp(1.68rem, 2.45vw, 2.3rem);
  }

  .metric span {
    margin-top: 3px;
    font-size: .78rem;
    line-height: 1.22;
  }

  .metric small {
    margin-top: 2px;
    font-size: .72rem;
    line-height: 1.18;
  }

  .comparison {
    grid-row: 3;
    gap: 12px;
  }

  .comparison article {
    padding-top: 6px;
  }

  .comparison-label {
    font-size: .7rem;
  }

  .comparison p:last-child {
    margin-top: 4px;
    font-size: .8rem;
    line-height: 1.28;
  }

  .echo-actions {
    grid-column: 2;
    grid-row: 3;
    justify-content: flex-end;
  }

  .echo-actions .button {
    min-height: 36px;
    padding: 0 14px;
    font-size: .8rem;
    white-space: nowrap;
  }

  .work-panel {
    grid-template-columns: minmax(210px, 27%) minmax(0, 73%);
    gap: 18px 28px;
  }

  .work-heading,
  .selected-work-grid {
    padding-top: 28px;
  }

  .work-heading {
    align-self: start;
  }

  .work-heading > .eyebrow {
    margin-left: 118px;
  }

  .work-heading h2 {
    max-width: 310px;
    font-size: clamp(2rem, 2.75vw, 2.7rem);
    line-height: .94;
  }

  .work-heading > p:last-child {
    max-width: 300px;
    margin-top: 12px;
    font-size: .875rem;
    line-height: 1.38;
  }

  .selected-work-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .work-card,
  .work-card:first-child {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(120px, 1fr) auto;
    grid-row: auto;
  }

  .work-card:first-child {
    grid-row: 1 / 3;
    grid-template-rows: minmax(230px, 1fr) auto;
  }

  .work-card:first-child .project-flow {
    width: min(100%, 560px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-card:first-child .work-visual,
  .work-visual {
    min-height: 0;
    padding: 10px;
  }

  .work-card-copy {
    display: flex;
    flex-direction: column;
    padding: 10px 12px 9px;
  }

  .work-card:not(:first-child) .work-card-copy {
    display: flex;
    grid-template-columns: none;
    grid-template-rows: none;
  }

  .work-card:not(:first-child) .work-capability,
  .work-card:not(:first-child) h3,
  .work-card:not(:first-child) .work-card-copy > p:not(.work-capability),
  .work-card:not(:first-child) .compact-stack,
  .work-card:not(:first-child) .text-button {
    grid-column: auto;
    grid-row: auto;
  }

  .work-capability {
    font-size: .7rem;
    line-height: 1.25;
  }

  .work-card h3 {
    margin-top: 3px;
    font-size: clamp(1.18rem, 1.4vw, 1.42rem);
    line-height: .96;
  }

  .work-card-copy > p:not(.work-capability) {
    margin-top: 6px;
    font-size: .875rem;
    line-height: 1.31;
  }

  .compact-stack {
    display: flex;
    gap: 2px 6px;
    margin-top: 7px;
    font-size: .72rem;
    line-height: 1.2;
  }

  .compact-stack span {
    display: inline;
    margin: 0;
  }

  .work-card:not(:first-child) .compact-stack {
    display: flex;
    margin-top: 7px;
  }

  .work-card:not(:first-child) .compact-stack span {
    display: inline;
    margin: 0;
  }

  .compact-stack span:not(:last-child)::after,
  .work-card:not(:first-child) .compact-stack span:not(:last-child)::after {
    content: "·";
    margin-left: 6px;
  }

  .text-button {
    min-height: 26px;
    margin-top: 12px;
    padding: 6px 0 0;
    font-size: .8rem;
    white-space: nowrap;
  }

  .work-card:not(:first-child) .text-button {
    align-self: flex-start;
    margin-top: 12px;
  }

  .project-flow {
    gap: 6px;
  }

  .flow-step {
    padding: 8px 9px;
  }

  .flow-step span {
    font-size: .58rem;
  }

  .flow-step b {
    margin-top: 4px;
    font-size: .72rem;
  }

  .flow-step small {
    margin-top: 3px;
    font-size: .65rem;
  }

  .contact-panel {
    grid-template-columns: minmax(0, 1.25fr) minmax(285px, .75fr);
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .contact-intro,
  .contact-directory {
    align-self: center;
    padding-top: 0;
  }

  .contact-intro h2 {
    font-size: clamp(2.45rem, 4vw, 3.9rem);
    line-height: .9;
  }

  .contact-intro > p:last-child {
    margin-top: 14px;
    font-size: .92rem;
  }

  .contact-entry {
    padding: 10px 0;
  }

  .contact-entry a,
  .contact-entry strong {
    font-size: clamp(1.1rem, 1.45vw, 1.35rem);
  }

  .contact-footer {
    padding-top: 10px;
    font-size: .62rem;
  }
}

/* Compact desktop Echo visual: keep the final review row clear of its frame. */
@media (min-width: 1101px) and (max-width: 1449px) and (max-height: 900px) {
  .echo-review-visual {
    height: 218px;
  }

  .echo-structured-review {
    padding-bottom: 14px;
  }

  .echo-structured-review dl {
    margin-top: 6px;
  }

  .echo-structured-review dl > div {
    padding: 3px 0;
  }

  .echo-structured-review dd {
    line-height: 1.2;
  }

  .visual-index {
    margin-top: 10px;
  }
}

/* Low-height desktop: retain one complete chapter per viewport. */
@media (min-width: 1101px) and (max-width: 1366px) and (max-height: 760px) {
  .landing-section {
    height: 100svh;
    min-height: 100svh;
    padding: 12px 0;
  }

  .landing-panel {
    height: calc(100svh - 24px);
    min-height: 0;
    padding-top: 58px;
    padding-bottom: 14px;
  }

  .about-panel {
    grid-template-rows: minmax(0, 1fr) 130px;
    row-gap: 10px;
  }

  .echo-panel {
    grid-template-rows: minmax(0, 1fr) 92px 74px;
    gap: 8px 18px;
  }

  .selected-work-grid {
    min-height: 0;
    padding-top: 18px;
  }

  .work-heading {
    padding-top: 60px;
  }

  .echo-review-visual {
    height: 212px;
  }

  .echo-heading h2 {
    font-size: clamp(4.3rem, 7vw, 5.8rem);
  }

  .echo-statement {
    margin-top: 7px;
    font-size: 1.02rem;
  }

  .role-note {
    margin-top: 6px;
    font-size: .8rem;
  }

  .metric {
    padding: 7px 10px 5px;
  }

  .metric span,
  .metric small,
  .comparison p:last-child {
    font-size: .72rem;
  }

  .capability-grid article {
    padding: 7px 8px 0;
  }

  .capability-grid p {
    font-size: .78rem;
    line-height: 1.3;
  }

  .comparison {
    gap: 10px;
  }

  .echo-actions .button {
    min-height: 34px;
  }

  .work-card:first-child {
    grid-template-rows: minmax(180px, 1fr) auto;
  }

  .work-card,
  .work-card:first-child {
    grid-template-rows: minmax(96px, 1fr) auto;
  }

  .work-card-copy {
    padding: 8px 10px 8px;
  }

  .work-card-copy > p:not(.work-capability) {
    font-size: .8rem;
    line-height: 1.24;
  }

  .work-card .text-button {
    min-height: 22px;
    margin-top: 8px;
    padding-top: 4px;
  }
}

/* Mobile About: keep the CTA visually connected to the portrait. */
@media (max-width: 640px) {
  .about-portrait {
    padding-top: 40px;
  }

  .capability-grid article,
  .capability-grid article:first-child {
    padding: 14px 0;
  }
}
