@font-face {
  font-family: DM Sans;
  src: url("/assets/dm-sans-latin.woff2") format("woff2");
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}
:root {
  --ink: #102c3a;
  --cream: #f5f1e8;
  --blue: #dce8eb;
  --muted: #4c6370;
  --line: rgba(16, 44, 58, 0.2);
  --accent: #5d8090;
  --art-navy: #182c3c;
  --art-gold: #b18231;
  --max: 1320px;
  --gutter: clamp(24px, 4.8vw, 80px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.search-open {
  overflow: hidden;
}
::selection {
  background: var(--ink);
  color: var(--cream);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
summary {
  font: inherit;
}
button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
  cursor: pointer;
}
button,
fieldset {
  border: 0;
}
button {
  background: none;
}
button:disabled {
  cursor: default;
}
a,
button,
input,
textarea,
summary {
  outline-offset: 6px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid currentColor;
}
img,
video {
  max-width: 100%;
  display: block;
}
img {
  height: auto;
}
svg {
  display: block;
}
svg:not(.illustration) {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
p,
h1,
h2,
h3,
blockquote,
figure {
  margin: 0;
}
p + p {
  margin-top: 1.2em;
}
h1,
h2,
h3 {
  font-weight: 450;
  line-height: 1.1;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(64px, 7.2vw, 104px);
}
h2 {
  font-size: clamp(40px, 4vw, 58px);
}
h3 {
  font-size: 30px;
  letter-spacing: -0.035em;
}
p {
  max-width: 65ch;
}
ul {
  padding-left: 1.2em;
}
li + li {
  margin-top: 0.65em;
}
[hidden] {
  display: none !important;
}
.container {
  width: calc(100% - var(--gutter) * 2);
  max-width: var(--max);
  margin-inline: auto;
}
.section {
  padding-block: 112px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 550;
  line-height: 1.5;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.muted,
.source-note {
  color: var(--muted);
}
.source-note {
  font-size: 14px;
  line-height: 1.7;
}
.large-copy {
  font-size: 23px;
  line-height: 1.55;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  min-height: 44px;
  font-size: 15px;
  line-height: 1.5;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}
.text-link svg {
  flex-shrink: 0;
  transition: transform 0.2s;
}
.text-link:hover svg {
  transform: translateX(4px);
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 38px;
  min-height: 56px;
  padding: 15px 22px;
  background: var(--ink);
  color: var(--cream);
  font-size: 15px;
  line-height: 1.5;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #264a5b;
}
.button:active {
  transform: translateY(1px);
}
.button svg {
  flex-shrink: 0;
}
.quiet-link {
  display: table;
  margin-top: 20px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.back-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 48px;
}
.title-dot {
  color: var(--accent);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 60;
  top: 8px;
  left: 12px;
  transform: translateY(-150%);
  background: var(--cream);
  color: var(--ink);
  padding: 12px;
}
.skip-link:focus {
  transform: translateY(0);
}
/* One navigation, including a contact route at every width. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 96px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: calc(100% - var(--gutter) * 2);
  max-width: var(--max);
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-mark {
  width: 43px;
  height: 43px;
  object-fit: contain;
}
.brand > span {
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.14em;
}
.brand small {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  margin-top: 12px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  font-size: 14px;
  line-height: 1.4;
}
.main-nav > a,
.nav-dropdown > summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.main-nav a:hover {
  color: var(--accent);
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown summary {
  gap: 9px;
  cursor: pointer;
  list-style: none;
}
.nav-dropdown summary::-webkit-details-marker {
  display: none;
}
.nav-dropdown summary svg {
  width: 12px;
  height: 12px;
}
.nav-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: -24px;
  background: var(--cream);
  color: var(--ink);
  border: 1px solid var(--line);
  width: 244px;
  padding: 14px 22px;
}
.nav-submenu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.icon-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  padding: 0;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  font-size: 14px;
  border-left: 1px solid var(--line);
  padding-left: 20px;
  white-space: nowrap;
}
.contact-short {
  display: none;
}
.menu-toggle,
.main-nav > .mobile-contact {
  display: none;
}
body[data-page="home"] .site-header {
  position: absolute;
  width: 100%;
  color: var(--cream);
  background: transparent;
  border-color: rgba(245, 241, 232, 0.22);
}
body[data-page="home"] .site-header .brand-mark,
.brand-light .brand-mark {
  filter: brightness(0) invert(94%) sepia(10%) saturate(281%);
}
body[data-page="home"] .header-contact {
  border-color: rgba(245, 241, 232, 0.25);
}
body[data-page="home"] .site-header.is-scrolled {
  position: fixed;
  background: var(--ink);
}
body[data-page="home"] .main-nav > a:hover {
  color: white;
}
/* The opening is a single ocean scene, with an identical static composition. */
.hero {
  position: relative;
  min-height: 90svh;
  background: var(--ink);
  color: var(--cream);
  isolation: isolate;
  overflow: hidden;
}
.ocean-poster,
.ocean-canvas,
.ocean-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.ocean-poster {
  z-index: -3;
  background: url("/assets/ocean-poster.webp") center/cover no-repeat;
}
.ocean-canvas {
  z-index: -2;
  opacity: 0;
  transition: opacity 1.2s;
}
.hero[data-ready="true"] .ocean-canvas {
  opacity: 1;
}
.ocean-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 25, 35, 0.6), rgba(5, 25, 35, 0.18) 72%),
    linear-gradient(
      0deg,
      rgba(5, 25, 35, 0.4),
      transparent 42%,
      rgba(5, 25, 35, 0.18)
    );
}
.hero-content {
  padding-top: 168px;
  padding-bottom: 114px;
}
.hero .eyebrow {
  font-size: 12px;
  letter-spacing: 0.09em;
  color: #e0e7e9;
  margin-bottom: 34px;
}
.hero h1 {
  max-width: 13.8ch;
  font-weight: 420;
  font-size: clamp(68px, 7.15vw, 104px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 42px;
  gap: 32px;
}
.hero-bottom > div {
  max-width: 590px;
}
.hero-bottom p {
  font-size: 17px;
  line-height: 1.6;
  color: #f0ede7;
}
.hero .button {
  margin-top: 26px;
  background: var(--cream);
  color: var(--ink);
}
.hero .button:hover {
  background: white;
}
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  white-space: nowrap;
  min-height: 54px;
}
.hero-scroll svg {
  transform: rotate(90deg);
  width: 32px;
  height: 32px;
}
.ocean-bottom {
  position: absolute;
  bottom: 25px;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.03em;
}
.ocean-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: var(--cream);
  font-size: 12px;
  border: 1px solid rgba(245, 241, 232, 0.35);
  padding: 6px 12px;
}
.ocean-toggle svg {
  width: 18px;
  height: 18px;
}
.ocean-toggle:disabled {
  visibility: hidden;
}
.ocean-toggle .play-icon,
.ocean-toggle[aria-pressed="true"] .pause-icon {
  display: none;
}
.ocean-toggle[aria-pressed="true"] .play-icon {
  display: block;
}
/* The story alternates distinct compositions, not repeated panels. */
.tension-section {
  background: var(--blue);
  padding-top: 96px;
}
.tension-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 12%;
}
.tension-grid h2 {
  font-size: clamp(40px, 4.4vw, 64px);
  max-width: 13ch;
}
.tension-grid .statement {
  font-weight: 550;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 24px;
}
.perspective-section {
  padding-bottom: 80px;
}
.perspective-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 10%;
}
.perspective-grid h2 {
  margin-bottom: 30px;
}
.perspective-grid .text-link {
  margin-top: 22px;
}
.perspective-visual {
  padding: 10px 12px;
}
.art-caption {
  display: block;
  font-size: 12px;
  text-align: center;
  color: var(--muted);
  letter-spacing: 0.02em;
}
/* Illustration 05: organic navy strokes, golden connections, clear silhouettes. */
.illustration {
  --illustration-stroke: 2.65px;
  width: 100%;
  height: auto;
  color: var(--art-navy);
  stroke: currentColor;
  stroke-width: var(--illustration-stroke);
  stroke-linecap: round;
  stroke-linejoin: round;
}
.illustration :is(path, circle, rect, ellipse) {
  vector-effect: non-scaling-stroke;
}
.illustration .art-gold {
  stroke: var(--art-gold);
}
.illustration .art-person {
  stroke-width: calc(var(--illustration-stroke) * 1.17);
}
.illustration .art-compact {
  display: none;
}
.illustration--symbol {
  --illustration-stroke: 1.8px;
}
.case-art {
  container-type: inline-size;
}
@container (max-width: 220px) {
  .illustration .art-scene {
    display: none;
  }
  .illustration .art-compact {
    display: inline;
  }
  .illustration {
    --illustration-stroke: 1.7px;
  }
}
.work-section {
  padding-top: 64px;
}
.work-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 14%;
  align-items: center;
}
.work-copy h2 {
  margin-bottom: 30px;
}
.work-copy .text-link {
  margin-top: 22px;
}
.team-duo {
  margin: 0;
}
.team-duo img {
  width: 100%;
  aspect-ratio: 4/4.7;
  object-fit: cover;
  object-position: 50% 45%;
}
.team-duo figcaption {
  font-size: 14px;
  margin-top: 12px;
}
.work-insights {
  border-top: 1px solid var(--line);
  margin-top: 56px;
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}
.work-insights p {
  font-size: 15px;
  margin: 0;
}
.work-insights p:not(:last-child):after {
  content: " /";
  color: var(--accent);
  margin-left: 22px;
}
.offer-section {
  background: var(--blue);
}
.section-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12%;
  align-items: end;
  margin-bottom: 60px;
}
.section-top h2 {
  max-width: 18ch;
}
.section-top > div > .text-link {
  margin-top: 18px;
}
.section-top > .text-link {
  justify-self: end;
}
.module-list {
  border-top: 1px solid var(--line);
}
.module-row {
  display: grid;
  grid-template-columns: 96px 1fr 1.15fr;
  gap: 36px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}
.module-symbol {
  width: 96px;
}
.module-symbol .illustration {
  width: 100%;
  max-width: 100%;
  margin: 0;
}
.module-row h3 {
  font-size: 30px;
  letter-spacing: -0.035em;
}
.module-row p {
  font-size: 16px;
}
.module-link {
  margin-top: 8px;
  font-size: 14px;
  gap: 16px;
  border: 0;
}
.module-link svg {
  width: 20px;
  height: 20px;
}
.practice-section .section-top {
  margin-bottom: 48px;
}
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 36px;
}
.case-card {
  min-width: 0;
}
.case-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.case-art {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  aspect-ratio: 1.7;
  display: grid;
  place-items: center;
}
.case-art .illustration {
  width: 80%;
  max-height: 100%;
  transition: transform 0.35s;
}
.round-arrow {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform 0.2s;
}
.case-card-link:hover .round-arrow {
  transform: rotate(-35deg);
}
.case-card-link:hover .illustration {
  transform: scale(1.025);
}
.case-card-copy {
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.case-meta {
  font-size: 12px;
  font-weight: 550;
  color: var(--muted);
  margin-bottom: 12px;
}
.case-card h3 {
  font-size: 29px;
  line-height: 1.2;
  max-width: 28ch;
}
.case-excerpt {
  font-size: 16px;
  line-height: 1.6;
  margin: 18px 0 20px;
}
.case-card .text-link {
  margin-top: auto;
}
.featured-cases > .case-card:first-child {
  grid-column: 1/-1;
  border-bottom: 1px solid var(--line);
  padding-bottom: 40px;
}
.featured-cases > .case-card:first-child .case-card-link {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 8%;
  align-items: center;
}
.featured-cases > .case-card:first-child .case-card-copy {
  padding: 0;
}
.featured-cases > .case-card:first-child h3 {
  font-size: 38px;
}
.featured-cases > .case-card:first-child .text-link {
  margin-top: 10px;
}
.featured-cases .case-card:not(:first-child) .case-card-link {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: start;
}
.featured-cases .case-card:not(:first-child) .case-art {
  aspect-ratio: 1;
}
.featured-cases .case-card:not(:first-child) .case-art .illustration {
  width: 100%;
  max-height: none;
}
.featured-cases .case-card:not(:first-child) .case-card-copy {
  padding: 0;
}
.featured-cases .case-card:not(:first-child) h3 {
  font-size: 25px;
}
.featured-cases .case-card:not(:first-child) .round-arrow {
  display: none;
}
.featured-cases .case-card:not(:first-child) .case-excerpt {
  font-size: 15px;
}
.experience-section {
  background: var(--ink);
  color: var(--cream);
}
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
}
.experience-grid h2 {
  font-size: 44px;
  line-height: 1.12;
  margin-bottom: 30px;
}
.experience-grid .text-link {
  border-color: rgba(245, 241, 232, 0.35);
}
.feedback-panel {
  border-left: 1px solid rgba(245, 241, 232, 0.25);
  padding-left: 42px;
}
.feedback-panel .eyebrow {
  color: #cadde3;
}
.feedback-panel blockquote {
  font-size: 18px;
  line-height: 1.85;
}
.feedback-panel .source-note {
  color: #c7d5db;
  font-size: 12px;
  margin-top: 24px;
}
.team-section .section-top {
  align-items: start;
}
.team-section .section-top p:not(.eyebrow) {
  font-size: 17px;
}
.people {
  display: grid;
  grid-template-columns: 1fr 1fr 0.85fr;
  gap: 32px;
  align-items: start;
}
.portrait {
  overflow: hidden;
}
.portrait img {
  aspect-ratio: 4/4.5;
  object-fit: cover;
  object-position: 50% 25%;
  width: 100%;
}
.person-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  gap: 12px;
}
.person-label h3 {
  font-size: 25px;
}
.person-label a {
  font-size: 14px;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.team-statement {
  align-self: center;
  padding-left: 20px;
}
.team-statement blockquote {
  font-size: 31px;
  letter-spacing: -0.03em;
  line-height: 1.3;
}
.team-statement .text-link {
  margin-top: 28px;
}
.contact-section {
  background: var(--blue);
  padding: 88px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
  align-items: start;
}
.contact-grid h2 {
  max-width: 16ch;
}
.contact-grid .button {
  margin-top: 28px;
}
.interest-section {
  padding-block: 28px 64px;
}
.interest-details {
  max-width: 840px;
  margin: auto;
}
.interest-details > summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  list-style: none;
  font-size: 16px;
  cursor: pointer;
}
.interest-details > summary::-webkit-details-marker {
  display: none;
}
.interest-details > summary svg {
  transform: rotate(90deg);
}
.interest-details[open] > summary svg {
  transform: rotate(-90deg);
}
#interest-form {
  padding-top: 28px;
  font-size: 16px;
}
fieldset {
  padding: 24px 0;
  margin: 0;
}
legend {
  padding: 0;
}
.interest-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.interest-options label {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  border: 1px solid var(--line);
  padding: 8px 12px;
  font-size: 14px;
}
.interest-options input {
  width: 18px;
  height: 18px;
  accent-color: var(--ink);
}
.form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-fields label:last-child {
  grid-column: 1/-1;
}
input:not([type="checkbox"]),
textarea {
  border: 1px solid var(--line);
  padding: 12px;
  background: transparent;
  color: var(--ink);
  width: 100%;
  border-radius: 0;
  font-size: 16px;
}
.form-fields input,
textarea {
  margin-top: 8px;
}
.form-action {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}
.form-action p {
  font-size: 14px;
  max-width: 36ch;
}
.form-status {
  font-size: 14px;
  margin-top: 16px;
}
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 0 24px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding-bottom: 44px;
}
.footer-contact > a {
  font-size: 28px;
  display: flex;
  gap: 24px;
  align-items: center;
  letter-spacing: -0.025em;
}
.footer-contact > span {
  display: block;
  font-size: 14px;
  color: #c7d5db;
  margin-top: 8px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(245, 241, 232, 0.25);
  padding-top: 26px;
  font-size: 14px;
}
.document-links,
.social-links {
  display: flex;
  gap: 12px 22px;
  flex-wrap: wrap;
}
.footer-bottom a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.social-links > span {
  align-self: center;
  color: #c7d5db;
}
.footer-small {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 24px;
  font-size: 12px;
  color: #c7d5db;
}
.footer-small a {
  display: inline-block;
  min-height: 32px;
}
/* Pages for uninterrupted reading. */
.page-hero,
.article-hero {
  padding-block: 52px 76px;
}
.page-hero h1 {
  max-width: 17ch;
}
.page-intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  margin-top: 38px;
}
.page-intro > p {
  max-width: 65ch;
  font-size: 20px;
}
.page-intro > span {
  font-size: 14px;
  white-space: nowrap;
}
.practice-list {
  padding-bottom: 110px;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-bottom: 44px;
}
.filter-bar button {
  font-size: 14px;
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  transition: background 0.2s;
}
.filter-bar button span {
  margin-left: 16px;
}
.filter-bar button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--cream);
}
.filter-bar button:hover:not([aria-pressed="true"]) {
  background: var(--blue);
}
.article-hero h1 {
  max-width: 21ch;
  font-size: clamp(50px, 5.1vw, 74px);
}
.article-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12%;
  align-items: center;
  margin-top: 44px;
}
.article-intro-grid .illustration {
  max-width: 380px;
  justify-self: end;
}
.article-hero > .source-note {
  margin-top: 20px;
}
.reading-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 760px);
  gap: 10%;
  padding-bottom: 100px;
}
.reading-nav {
  position: sticky;
  top: 140px;
  align-self: start;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.reading-nav .eyebrow {
  margin-bottom: 16px;
}
.reading-nav > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  padding: 10px 0;
}
.reading-nav svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.reading-body {
  min-width: 0;
}
.reading-body > section {
  padding-top: 34px;
  padding-bottom: 42px;
  border-top: 1px solid var(--line);
}
.reading-body h2 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 30px;
}
.reading-body h3 {
  font-size: 25px;
  margin-bottom: 18px;
}
.reading-body p {
  font-size: 18px;
  line-height: 1.85;
}
.reading-body .source-note {
  font-size: 14px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.reading-art {
  background: var(--blue);
  margin: 10px 0 44px;
}
.reading-art .illustration {
  max-height: 340px;
}
.plain-list {
  padding: 0;
  list-style: none;
}
.plain-list li {
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  margin: 0;
}
.pullquote {
  font-size: 30px;
  line-height: 1.4;
  letter-spacing: -0.03em;
  margin-top: 40px;
}
.phase {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  margin: 32px 0;
}
.phase-step {
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 8px;
}
.phase .phase-lead {
  font-weight: 550;
}
.when-group {
  margin-top: 34px;
}
.video-feature {
  margin-top: 44px;
}
.video-feature video {
  width: 100%;
  max-height: 70vh;
  background: var(--ink);
}
.video-transcript summary {
  padding: 16px 0;
  cursor: pointer;
}
.video-transcript p {
  font-size: 16px;
}
.notes-page,
.not-found {
  padding-block: 70px 110px;
  max-width: 900px;
}
.notes-page h1,
.not-found h1 {
  font-size: 64px;
  margin-bottom: 40px;
}
.notes-page h2 {
  font-size: 30px;
  margin: 40px 0 20px;
}
.notes-page p {
  font-size: 17px;
}
.change-register details {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.change-register summary {
  cursor: pointer;
  font-size: 15px;
}
.change-register p {
  font-size: 15px;
  margin-top: 16px;
}
.not-found .button {
  margin: 24px 30px 0 0;
}
.search-dialog {
  border: 0;
  background: var(--cream);
  color: var(--ink);
  width: min(760px, calc(100% - 32px));
  max-height: 85svh;
  margin: 8svh auto auto;
  padding: 32px;
  box-shadow: 0 18px 70px #102c3a33;
}
.search-dialog::backdrop {
  background: #071e2bd9;
}
.search-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.search-top .eyebrow {
  margin: 0;
}
.close-search {
  font-size: 30px;
}
.search-form {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  border-bottom: 1px solid var(--ink);
}
.search-form > svg {
  flex-shrink: 0;
}
.search-form input[type="search"] {
  border: 0;
  font-size: 25px;
  padding: 12px 0;
  min-width: 0;
}
.search-submit {
  font-size: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 44px;
}
.search-submit svg {
  width: 20px;
  height: 20px;
}
.search-status {
  font-size: 14px;
  margin: 22px 0;
}
.search-result {
  display: block;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.search-result > span {
  font-size: 12px;
  color: var(--muted);
}
.search-result h2 {
  font-size: 26px;
  margin-top: 8px;
}
.search-result p {
  font-size: 15px;
  margin-top: 12px;
}
.search-result:hover h2 {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.search-suggestions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.search-suggestions > span {
  font-size: 14px;
  width: 100%;
}
.search-suggestions button {
  display: flex;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  padding: 10px 15px;
  font-size: 14px;
  min-height: 44px;
}
.search-suggestions svg {
  width: 18px;
  height: 18px;
}
@media (min-width: 1800px) {
  .hero-content {
    padding-top: 190px;
  }
  .ocean-bottom {
    max-width: var(--max);
    margin: auto;
  }
}
@media (max-width: 1200px) {
  .header-inner {
    gap: 22px;
  }
  .main-nav {
    gap: 20px;
    font-size: 14px;
  }
  .header-actions {
    gap: 10px;
  }
  .contact-long {
    display: none;
  }
  .contact-short {
    display: inline;
  }
  .header-contact {
    font-size: 14px;
    padding-left: 16px;
  }
  .brand > span {
    font-size: 25px;
  }
  .section {
    padding-block: 88px;
  }
  .section-top {
    gap: 8%;
  }
  .tension-grid,
  .experience-grid,
  .contact-grid {
    gap: 8%;
  }
  .module-row {
    grid-template-columns: 78px 1fr 1.2fr;
    gap: 24px;
  }
  .module-symbol {
    width: 78px;
  }
  .module-symbol .illustration {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .module-row h3 {
    font-size: 27px;
  }
  .featured-cases .case-card:not(:first-child) .case-card-link {
    grid-template-columns: 110px 1fr;
    gap: 20px;
  }
  .people {
    gap: 24px;
  }
  .team-statement blockquote {
    font-size: 27px;
  }
  .reading-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 7%;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
}
@media (max-width: 950px) {
  .header-inner {
    gap: 16px;
  }
  .brand > span {
    font-size: 23px;
  }
  .brand-mark {
    width: 35px;
    height: 35px;
  }
  .main-nav {
    gap: 15px;
    font-size: 14px;
  }
  .header-contact {
    padding-left: 10px;
    gap: 8px;
  }
  .header-contact svg {
    display: none;
  }
  .header-actions {
    gap: 2px;
  }
  .hero h1 {
    font-size: 76px;
  }
  .hero-content {
    padding-top: 156px;
  }
  .hero .eyebrow {
    max-width: 45ch;
  }
  .hero-bottom {
    gap: 30px;
  }
  .hero-bottom > div {
    max-width: 470px;
  }
  .hero-scroll span {
    display: none;
  }
  .tension-grid {
    gap: 7%;
  }
  .tension-grid h2 {
    font-size: 42px;
  }
  .perspective-grid {
    gap: 6%;
  }
  .perspective-grid h2,
  .work-copy h2 {
    font-size: 38px;
  }
  .work-grid {
    gap: 8%;
  }
  .work-copy p {
    font-size: 16px;
  }
  .module-row {
    grid-template-columns: 68px 1fr 1.2fr;
    gap: 18px;
  }
  .module-row h3 {
    font-size: 24px;
  }
  .module-row p {
    font-size: 16px;
  }
  .module-link {
    font-size: 14px;
  }
  .module-symbol .illustration {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .featured-cases .case-card:not(:first-child) .case-card-link {
    grid-template-columns: 1fr;
  }
  .featured-cases .case-card:not(:first-child) .case-art {
    aspect-ratio: 1.8;
  }
  .featured-cases .case-card:not(:first-child) .case-art .illustration {
    width: 80%;
    max-height: 100%;
  }
  .featured-cases > .case-card:first-child h3 {
    font-size: 30px;
  }
  .experience-grid h2 {
    font-size: 38px;
  }
  .feedback-panel {
    padding-left: 28px;
  }
  .feedback-panel blockquote {
    font-size: 16px;
  }
  .people {
    grid-template-columns: 1fr 1fr;
  }
  .team-statement {
    grid-column: 1/-1;
    padding-left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
  }
  .team-statement blockquote {
    max-width: 25ch;
    font-size: 30px;
  }
  .team-statement .text-link {
    margin: 0;
    white-space: nowrap;
  }
  .section-top {
    gap: 7%;
  }
  .section-top h2 {
    font-size: 40px;
  }
  .section-top p {
    font-size: 16px;
  }
  .footer-top .brand small {
    max-width: 26ch;
  }
  .footer-contact > a {
    font-size: 23px;
  }
}
@media (max-width: 760px) {
  :root {
    --gutter: 24px;
  }
  html {
    scroll-padding-top: 90px;
  }
  body {
    font-size: 16px;
  }
  .section {
    padding-block: 68px;
  }
  h1 {
    font-size: 48px;
  }
  h2 {
    font-size: 34px;
    letter-spacing: -0.04em;
  }
  h3 {
    font-size: 25px;
  }
  .eyebrow {
    font-size: 12px;
    margin-bottom: 22px;
  }
  .large-copy {
    font-size: 20px;
  }
  .site-header {
    height: 78px;
  }
  .header-inner {
    gap: 16px;
  }
  .brand-mark {
    width: 36px;
    height: 36px;
  }
  .brand > span {
    font-size: 25px;
  }
  .brand {
    gap: 10px;
  }
  .header-actions {
    margin-left: auto;
    gap: 8px;
  }
  .header-contact {
    display: none;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }
  .menu-toggle span {
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--cream);
    color: var(--ink);
    padding: 14px var(--gutter) 28px;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
  }
  .main-nav.is-open {
    display: block;
  }
  .main-nav > a,
  .nav-dropdown > summary {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    min-height: 55px;
  }
  .main-nav > .mobile-contact {
    display: flex;
  }
  .nav-dropdown summary {
    justify-content: space-between;
  }
  .nav-submenu {
    position: static;
    border: 0;
    width: auto;
    padding: 8px 0 8px 16px;
  }
  .nav-submenu a {
    font-size: 15px;
    min-height: 48px;
  }
  .main-nav > a:hover,
  body[data-page="home"] .main-nav > a:hover {
    color: var(--muted);
  }
  .hero {
    min-height: 90svh;
  }
  .hero-content {
    padding-top: 138px;
    padding-bottom: 110px;
  }
  .hero .eyebrow {
    font-size: 12px;
    line-height: 1.65;
    max-width: 34ch;
    margin-bottom: 32px;
  }
  .hero h1 {
    font-size: clamp(41px, 12vw, 60px);
    max-width: 13ch;
    line-height: 1.04;
  }
  .hero-bottom {
    margin-top: 32px;
    display: block;
  }
  .hero-bottom p {
    font-size: 16px;
    line-height: 1.65;
    max-width: 40ch;
  }
  .hero .button {
    font-size: 14px;
    gap: 20px;
    padding: 15px 18px;
    margin-top: 26px;
    min-height: 54px;
  }
  .hero-scroll {
    display: none;
  }
  .ocean-shade {
    background:
      linear-gradient(90deg, rgba(5, 25, 35, 0.65), rgba(5, 25, 35, 0.2)),
      linear-gradient(0deg, rgba(5, 25, 35, 0.4), transparent 50%);
  }
  .ocean-bottom {
    bottom: 20px;
    font-size: 12px;
  }
  .ocean-toggle {
    font-size: 12px;
    padding: 6px 9px;
    gap: 7px;
  }
  .tension-grid,
  .perspective-grid,
  .work-grid,
  .section-top,
  .experience-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .tension-grid h2 {
    font-size: 36px;
    max-width: 19ch;
  }
  .tension-grid p {
    font-size: 16px;
  }
  .perspective-grid {
    gap: 28px;
  }
  .perspective-grid > div:last-child {
    grid-row: 1;
  }
  .perspective-grid h2,
  .work-copy h2 {
    font-size: 34px;
    margin-bottom: 24px;
  }
  .perspective-visual {
    max-width: 390px;
    margin: auto;
    width: 100%;
    padding: 0;
  }
  .perspective-section {
    padding-bottom: 38px;
  }
  .work-section {
    padding-top: 28px;
  }
  .work-grid {
    gap: 32px;
  }
  .team-duo img {
    aspect-ratio: 4/3.9;
    object-position: 50% 48%;
  }
  .work-insights {
    margin-top: 32px;
    padding-top: 22px;
    display: block;
  }
  .work-insights p {
    font-size: 14px;
    line-height: 1.5;
    padding: 8px 0;
  }
  .work-insights p:not(:last-child):after {
    display: none;
  }
  .work-insights p:before {
    content: "—";
    color: var(--accent);
    margin-right: 10px;
  }
  .section-top {
    margin-bottom: 34px;
    gap: 22px;
  }
  .section-top h2 {
    font-size: 34px;
    max-width: 20ch;
  }
  .section-top > .text-link {
    justify-self: start;
  }
  .module-row {
    grid-template-columns: 64px 1fr;
    gap: 6px 14px;
    padding: 24px 0;
  }
  .module-row h3 {
    font-size: 25px;
  }
  .module-symbol {
    width: 64px;
  }
  .module-symbol .illustration {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .module-row > div:last-child {
    grid-column: 2;
  }
  .module-row p {
    font-size: 16px;
    line-height: 1.6;
  }
  .module-link {
    font-size: 14px;
    margin-top: 6px;
    padding: 8px 0;
    gap: 14px;
    display: flex;
    align-items: flex-start;
  }
  .module-link svg {
    flex-shrink: 0;
    margin-top: 1px;
  }
  .case-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .case-card h3 {
    font-size: 27px;
  }
  .case-excerpt {
    font-size: 16px;
  }
  .featured-cases {
    gap: 26px;
  }
  .featured-cases > .case-card:first-child {
    grid-column: auto;
    padding-bottom: 26px;
  }
  .featured-cases > .case-card:first-child .case-card-link,
  .featured-cases .case-card:not(:first-child) .case-card-link {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
  }
  .featured-cases > .case-card .case-art,
  .featured-cases > .case-card:not(:first-child) .case-art {
    aspect-ratio: 1;
  }
  .featured-cases > .case-card .case-art .illustration,
  .featured-cases > .case-card:not(:first-child) .case-art .illustration {
    width: 100%;
    max-height: 100%;
  }
  .featured-cases .round-arrow {
    display: none;
  }
  .featured-cases > .case-card:first-child h3,
  .featured-cases .case-card:not(:first-child) h3 {
    font-size: 24px;
    line-height: 1.2;
  }
  .featured-cases .case-meta {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .featured-cases .case-card-copy {
    padding: 0;
  }
  .featured-cases .case-excerpt,
  .featured-cases .case-card:not(:first-child) .case-excerpt {
    font-size: 15px;
    margin: 14px 0;
  }
  .featured-cases .text-link {
    font-size: 14px;
    gap: 16px;
  }
  .featured-cases > .case-card:first-child .text-link {
    margin: 0;
  }
  .experience-grid h2 {
    font-size: 34px;
    margin-bottom: 22px;
  }
  .feedback-panel {
    border-left: 0;
    border-top: 1px solid rgba(245, 241, 232, 0.25);
    padding: 28px 0 0;
  }
  .feedback-panel blockquote {
    font-size: 16px;
    line-height: 1.8;
  }
  .people {
    gap: 28px 20px;
  }
  .portrait img {
    aspect-ratio: 3/4;
    object-position: 50% 25%;
  }
  .person-label {
    display: block;
    margin-top: 14px;
  }
  .person-label h3 {
    font-size: 23px;
  }
  .person-label a {
    font-size: 14px;
  }
  .team-statement {
    display: block;
    margin-top: 0;
  }
  .team-statement blockquote {
    font-size: 30px;
    max-width: 26ch;
  }
  .team-statement .text-link {
    margin-top: 20px;
  }
  .team-section .section-top p:not(.eyebrow) {
    font-size: 16px;
  }
  .contact-section {
    padding-block: 64px;
  }
  .contact-grid h2 {
    max-width: 18ch;
  }
  .contact-grid .button {
    font-size: 14px;
    gap: 24px;
  }
  .interest-section {
    padding-bottom: 40px;
  }
  .interest-details > summary {
    font-size: 15px;
  }
  .form-fields {
    grid-template-columns: 1fr;
  }
  .form-action {
    display: block;
  }
  .form-action p {
    margin-top: 16px;
  }
  .footer-top {
    display: block;
    padding-bottom: 34px;
  }
  .footer-contact {
    margin-top: 34px;
  }
  .footer-contact > a {
    font-size: 25px;
  }
  .footer-bottom,
  .footer-small {
    display: block;
  }
  .document-links {
    gap: 4px 20px;
  }
  .social-links {
    margin-top: 24px;
  }
  .footer-small {
    margin-top: 24px;
  }
  .footer-small > a {
    margin-top: 14px;
  }
  .site-footer {
    padding-top: 48px;
  }
  .page-hero,
  .article-hero {
    padding-block: 28px 48px;
  }
  .back-link {
    margin-bottom: 30px;
    font-size: 14px;
  }
  .page-hero h1 {
    font-size: 46px;
    max-width: 16ch;
    line-height: 1.07;
  }
  .page-intro {
    margin-top: 26px;
    display: block;
  }
  .page-intro > p {
    font-size: 18px;
  }
  .page-intro > span {
    display: block;
    margin-top: 22px;
  }
  .practice-list {
    padding-bottom: 64px;
  }
  .filter-bar {
    gap: 8px;
    margin-bottom: 32px;
  }
  .filter-bar button {
    font-size: 14px;
    padding: 9px 12px;
  }
  .article-hero h1 {
    font-size: 38px;
    line-height: 1.12;
    max-width: 20ch;
  }
  .article-intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 26px;
  }
  .article-intro-grid .large-copy {
    font-size: 18px;
  }
  .article-intro-grid .illustration {
    width: 240px;
    justify-self: center;
  }
  .article-hero > .source-note {
    margin-top: 14px;
  }
  .reading-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 64px;
  }
  .reading-nav {
    position: static;
    padding-top: 18px;
  }
  .reading-nav .eyebrow {
    margin-bottom: 10px;
  }
  .reading-nav > a {
    min-height: 44px;
    font-size: 14px;
  }
  .reading-body h2 {
    font-size: 28px;
    margin-bottom: 24px;
  }
  .reading-body h3 {
    font-size: 23px;
  }
  .reading-body p {
    font-size: 16px;
    line-height: 1.8;
  }
  .reading-body > section {
    padding-top: 28px;
    padding-bottom: 32px;
  }
  .phase {
    grid-template-columns: 28px 1fr;
    gap: 14px;
  }
  .phase-step {
    font-size: 12px;
  }
  .pullquote {
    font-size: 26px;
  }
  .reading-art {
    margin: 0 0 32px;
  }
  .notes-page,
  .not-found {
    padding-block: 40px 70px;
  }
  .notes-page h1,
  .not-found h1 {
    font-size: 44px;
  }
  .notes-page p {
    font-size: 16px;
  }
  .search-dialog {
    padding: 22px;
    max-height: 90svh;
    margin-top: 4svh;
  }
  .search-form {
    gap: 10px;
  }
  .search-form input[type="search"] {
    font-size: 19px;
  }
  .search-form > svg {
    width: 20px;
    height: 20px;
  }
  .search-submit {
    font-size: 14px;
  }
  .search-submit svg {
    display: none;
  }
  .search-result h2 {
    font-size: 23px;
  }
  .search-result p {
    font-size: 15px;
  }
}
@media (max-width: 360px) {
  :root {
    --gutter: 20px;
  }
  .brand > span {
    font-size: 23px;
  }
  .brand-mark {
    width: 32px;
    height: 32px;
  }
  .header-actions {
    gap: 0;
  }
  .hero h1 {
    font-size: 41px;
  }
  .hero .eyebrow {
    font-size: 12px;
    max-width: 31ch;
  }
  .hero .button {
    padding: 14px;
    font-size: 14px;
  }
  .module-row {
    grid-template-columns: 44px 1fr;
    gap: 5px 12px;
  }
  .module-symbol .illustration {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .module-row h3 {
    font-size: 23px;
  }
  .featured-cases > .case-card:first-child .case-card-link,
  .featured-cases .case-card:not(:first-child) .case-card-link {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
  }
  .featured-cases > .case-card:first-child h3,
  .featured-cases .case-card:not(:first-child) h3 {
    font-size: 22px;
  }
  .page-hero h1 {
    font-size: 40px;
  }
  .article-hero h1 {
    font-size: 34px;
  }
  .person-label h3 {
    font-size: 21px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
.module-row .module-lead {
  font-weight: 550;
}
.module-row .module-lead + p {
  margin-top: 5px;
}
.reading-body .work-insights {
  margin: 0 0 30px;
  padding: 0;
  border: 0;
  display: block;
}
.reading-body .work-insights p {
  font-size: 16px;
  margin: 0;
  padding: 6px 0;
}
.reading-body .work-insights p:after {
  display: none;
}
@media (max-width: 760px) {
  .ocean-poster {
    background-image: url("/assets/ocean-poster-mobile.webp");
  }
  .ocean-shade {
    background:
      linear-gradient(90deg, rgba(5, 25, 35, 0.68), rgba(5, 25, 35, 0.48)),
      linear-gradient(0deg, rgba(5, 25, 35, 0.3), transparent 50%);
  }
  .perspective-visual {
    max-width: 390px;
  }
  .tension-section {
    padding-bottom: 58px;
  }
  .reading-body .work-insights p {
    font-size: 16px;
  }
  .featured-cases .case-excerpt {
    max-width: 65ch;
  }
}

.nav-submenu a[aria-current="page"] {
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 5px;
}

@media (max-width: 760px) {
  .featured-cases .illustration .art-scene {
    display: none;
  }
  .featured-cases .illustration .art-compact {
    display: inline;
  }
  .featured-cases .illustration {
    --illustration-stroke: 1.7px;
  }
}

@media (max-width: 360px) {
  .module-row {
    grid-template-columns: 52px 1fr;
  }
  .module-symbol {
    width: 52px;
  }
}

@media (max-width: 760px) {
  .illustration--organic {
    --illustration-stroke: 1.9px;
  }
  .illustration--symbol {
    --illustration-stroke: 1.55px;
  }
  .module-symbol .art-detail {
    display: none;
  }
}
@media (max-width: 360px) {
  .illustration--symbol {
    --illustration-stroke: 1.35px;
  }
}
