:root {
  --ink: #080a0d;
  --ink-soft: #11151a;
  --paper: #f4f0e8;
  --paper-dim: #c9c4bb;
  --gold: #d4ad5d;
  --gold-dark: #9f7b38;
  --teal: #26c7bd;
  --pink: #ef3e91;
  --line: rgba(244, 240, 232, 0.2);
  --display: "EB Garamond", "Iowan Old Style", "Baskerville", Georgia, serif;
  --sans: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --page: min(1180px, calc(100vw - 48px));
  --section: clamp(76px, 10vw, 144px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 90% 12%, rgba(212, 173, 93, 0.08), transparent 28rem),
    var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button,
.button {
  cursor: pointer;
}

::selection {
  color: var(--ink);
  background: var(--gold);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 10, 13, 0.9);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--paper);
  text-decoration: none;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(212, 173, 93, 0.2));
}

.brand-name {
  display: grid;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.15;
  text-transform: uppercase;
}

.brand-name span:last-child {
  margin-top: 4px;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  position: relative;
  color: var(--paper-dim);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--paper);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--paper);
  background: transparent;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span {
  margin: 5px 0;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid var(--gold);
  color: var(--ink);
  background: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--paper);
  background: transparent;
  transform: translateY(-2px);
}

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

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--ink);
  background: var(--gold);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.display {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.9rem, 8.7vw, 8.6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.display em {
  color: var(--gold);
  font-weight: 400;
}

.section-title {
  max-width: 900px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5.4vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.section-title em {
  color: var(--gold);
  font-weight: inherit;
}

.lede {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--paper-dim);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero {
  min-height: calc(100svh - 82px);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  min-height: calc(100svh - 82px);
  grid-template-columns: 1.03fr 0.97fr;
}

.hero-copy {
  display: flex;
  align-items: center;
  padding: clamp(78px, 8vw, 118px) clamp(30px, 6vw, 84px) clamp(78px, 8vw, 118px) max(24px, calc((100vw - 1180px) / 2));
}

.hero-copy-inner {
  width: 100%;
  min-width: 0;
  max-width: 740px;
}

.hero-kicker {
  max-width: 640px;
  margin: 32px 0 0;
  color: var(--paper-dim);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.hero-person {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--paper-dim);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-person strong {
  color: var(--paper);
}

.hero-image {
  position: relative;
  min-height: 700px;
  overflow: hidden;
}

.hero-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 10, 13, 0.34), transparent 28%), linear-gradient(0deg, rgba(8, 10, 13, 0.32), transparent 38%);
  content: "";
  pointer-events: none;
}

.hero-image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-caption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 24px;
  margin: 0;
  color: rgba(244, 240, 232, 0.74);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section {
  padding-block: var(--section);
}

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

.section-paper {
  color: var(--ink);
  background: var(--paper);
}

.section-paper .eyebrow {
  color: var(--gold-dark);
}

.section-paper .lede,
.section-paper .muted {
  color: #55514b;
}

.section-head {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(36px, 7vw, 104px);
  align-items: start;
}

.section-index {
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(5rem, 11vw, 10rem);
  line-height: 0.7;
}

.practice-grid,
.capability-grid,
.work-grid,
.engagement-grid,
.metric-grid {
  display: grid;
  gap: 1px;
  margin-top: 64px;
  background: var(--line);
}

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

.practice,
.capability,
.engagement {
  position: relative;
  padding: clamp(28px, 4vw, 50px);
  background: var(--ink);
}

.practice:nth-child(2) {
  box-shadow: inset 0 3px 0 var(--teal);
}

.practice:nth-child(3) {
  box-shadow: inset 0 3px 0 var(--pink);
}

.practice-number,
.card-label {
  margin: 0 0 42px;
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.practice h3,
.capability h3,
.engagement h3,
.work-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.practice p,
.capability p,
.engagement p {
  margin: 22px 0 0;
  color: var(--paper-dim);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.inline-link::after {
  content: "↗";
  transition: transform 180ms ease;
}

.inline-link:hover::after,
.inline-link:focus-visible::after {
  transform: translate(3px, -3px);
}

.work-grid {
  grid-template-columns: repeat(12, 1fr);
}

.work-card {
  display: block;
  position: relative;
  width: 100%;
  min-height: 540px;
  overflow: hidden;
  background: var(--ink-soft);
  color: var(--paper);
}

.work-card.span-7 {
  grid-column: span 7;
}

.work-card.span-5 {
  grid-column: span 5;
}

.work-card.span-12 {
  grid-column: span 12;
  min-height: 460px;
}

.work-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.work-card:hover img {
  transform: scale(1.03);
}

.work-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 4vw, 48px);
  background: linear-gradient(0deg, rgba(8, 10, 13, 0.94), rgba(8, 10, 13, 0.02) 72%);
}

.work-overlay .card-label {
  margin-bottom: 15px;
}

.work-overlay p {
  max-width: 520px;
  margin: 14px 0 0;
  color: var(--paper-dim);
}

.quest-card {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: stretch;
  border-top: 3px solid var(--pink);
  background:
    radial-gradient(circle at 10% 10%, rgba(239, 62, 145, 0.22), transparent 25rem),
    radial-gradient(circle at 82% 25%, rgba(38, 199, 189, 0.18), transparent 26rem),
    var(--ink-soft);
}

.quest-mark {
  display: grid;
  min-height: 460px;
  place-items: center;
  padding: 42px;
  border-right: 1px solid var(--line);
  color: var(--paper);
  text-align: center;
}

.quest-mark span {
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 8rem);
  letter-spacing: -0.07em;
  line-height: 0.75;
}

.quest-mark small {
  display: block;
  margin-top: 24px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.5;
  text-transform: uppercase;
}

.quest-photo {
  position: relative;
  min-height: 460px;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.quest-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
}

.quest-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 10, 13, 0.72), transparent 48%);
  content: "";
  pointer-events: none;
}

.quest-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 20px;
  left: 24px;
  color: var(--paper);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.quest-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 80px);
}

.quest-copy h3 {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  color: var(--paper);
}

.quest-copy p {
  max-width: 650px;
  color: var(--paper-dim);
}

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

.metric {
  min-height: 210px;
  padding: 36px;
  color: var(--ink);
  background: var(--paper);
}

.metric strong {
  display: block;
  color: var(--gold-dark);
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.metric span {
  display: block;
  margin-top: 20px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 54px;
}

.logo-cloud span {
  padding: 13px 16px;
  border: 1px solid var(--line);
  color: var(--paper-dim);
  font-family: var(--display);
  font-size: 1.15rem;
}

.section-paper .logo-cloud span {
  border-color: rgba(8, 10, 13, 0.18);
  color: #373430;
}

.founder-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(44px, 8vw, 116px);
  align-items: center;
}

.founder-image {
  position: relative;
}

.founder-image::before {
  position: absolute;
  z-index: -1;
  inset: -18px 18px 18px -18px;
  border: 1px solid var(--gold);
  content: "";
}

.founder-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.founder-copy blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.3rem, 4.5vw, 4.8rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.founder-copy cite {
  display: block;
  margin-top: 30px;
  color: var(--gold);
  font-size: 0.69rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.page-hero {
  padding: clamp(110px, 14vw, 190px) 0 clamp(78px, 10vw, 130px);
  border-bottom: 1px solid var(--line);
}

.page-hero .display {
  max-width: 1080px;
}

.page-intro {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 60px;
  margin-top: 54px;
}

.page-intro .lede {
  margin: 0;
}

.page-intro aside {
  padding-left: 30px;
  border-left: 1px solid var(--gold);
  color: var(--paper-dim);
}

.body-copy p {
  margin: 0 0 24px;
  color: var(--paper-dim);
  font-size: 1.06rem;
}

.body-copy p:first-child {
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 1.35;
}

.rule-list {
  display: grid;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.rule-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.rule-list span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.3rem;
}

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

.capability {
  min-height: 340px;
}

.capability ul,
.case-detail ul {
  margin: 26px 0 0;
  padding: 0;
  color: var(--paper-dim);
  list-style: none;
}

.capability li,
.case-detail li {
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.capability-accent-teal {
  box-shadow: inset 0 3px 0 var(--teal);
}

.capability-accent-pink {
  box-shadow: inset 0 3px 0 var(--pink);
}

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

.engagement {
  min-height: 270px;
}

.case-study {
  padding: var(--section) 0;
  border-top: 1px solid var(--line);
}

.case-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: clamp(40px, 7vw, 104px);
  align-items: start;
}

.case-sticky {
  position: sticky;
  top: 120px;
}

.case-sticky h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.case-sticky .card-label {
  margin-bottom: 20px;
}

.case-detail h3 {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.case-detail p {
  margin: 0 0 34px;
  color: var(--paper-dim);
  font-size: 1.04rem;
}

.case-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 48px;
}

.case-gallery img {
  height: 420px;
  object-fit: cover;
}

.case-gallery img:first-child:last-child,
.case-gallery img:nth-child(3) {
  grid-column: 1 / -1;
}

.case-gallery img:nth-child(3) {
  height: 360px;
}

.case-feature {
  margin: 48px 0;
}

.case-feature img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
}

.case-feature figcaption {
  margin-top: 12px;
  color: var(--paper-dim);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

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

.source-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  background: var(--line);
}

.source-links a {
  padding: 22px;
  color: var(--paper);
  background: var(--ink-soft);
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.15;
  transition: color 180ms ease, background 180ms ease;
}

.source-links a:hover,
.source-links a:focus-visible {
  color: var(--ink);
  background: var(--gold);
}

.source-links span {
  display: block;
  margin-top: 8px;
  color: var(--paper-dim);
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.source-links a:hover span,
.source-links a:focus-visible span {
  color: var(--ink);
}

.case-highlight {
  margin-top: 44px;
  padding: 30px;
  border-left: 3px solid var(--gold);
  background: var(--ink-soft);
}

.case-highlight strong {
  display: block;
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4.3rem);
  font-weight: 400;
  line-height: 1;
}

.case-highlight span {
  display: block;
  margin-top: 12px;
  color: var(--paper-dim);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-quest {
  position: relative;
  overflow: hidden;
}

.case-quest::before,
.case-quest::after {
  position: absolute;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  content: "";
  filter: blur(110px);
  opacity: 0.12;
  pointer-events: none;
}

.case-quest::before {
  top: -10vw;
  left: -10vw;
  background: var(--pink);
}

.case-quest::after {
  right: -12vw;
  bottom: -14vw;
  background: var(--teal);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 64px;
  background: var(--line);
}

.media-card {
  min-height: 360px;
  padding: clamp(32px, 5vw, 62px);
  background: var(--ink);
  color: var(--paper);
}

.media-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.media-card p {
  color: var(--paper-dim);
}

.contact-grid {
  align-items: start;
}

.contact-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

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

.field {
  display: grid;
  gap: 9px;
}

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

.field label {
  color: var(--paper-dim);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 14px 0;
  color: var(--paper);
  outline: none;
  background: transparent;
}

.field select {
  color-scheme: dark;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #76736f;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  grid-column: 1 / -1;
  padding: 14px 16px;
  border: 1px solid #b65a5a;
  color: #ffd3d3;
  background: rgba(182, 90, 90, 0.12);
}

.form-status.is-visible {
  display: block;
}

.contact-meta {
  display: grid;
  gap: 18px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.contact-meta a {
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.4rem;
}

.thank-you {
  display: grid;
  min-height: calc(100svh - 82px);
  place-items: center;
  text-align: center;
}

.thank-you-inner {
  max-width: 800px;
  padding-block: 100px;
}

.footer {
  padding: 70px 0 34px;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 48px;
}

.footer h2 {
  max-width: 800px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 6vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links a {
  color: var(--paper-dim);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #888681;
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

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

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

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

@media (max-width: 980px) {
  :root {
    --page: min(100% - 36px, 760px);
  }

  .site-header {
    background: var(--ink);
    backdrop-filter: none;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    top: 82px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    display: none;
    height: calc(100svh - 82px);
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    overflow-y: auto;
    padding: 46px 24px;
    background: var(--ink);
    border-top: 1px solid var(--line);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    font-family: var(--display);
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .nav-links .button {
    margin-top: 22px;
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .hero-grid,
  .section-head,
  .founder-grid,
  .split-grid,
  .contact-grid,
  .page-intro,
  .case-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 650px;
    padding-inline: max(18px, calc((100vw - 760px) / 2));
  }

  .hero-image {
    min-height: 76svh;
  }

  .section-index {
    display: none;
  }

  .practice-grid,
  .capability-grid,
  .engagement-grid,
  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-card.span-7,
  .work-card.span-5 {
    grid-column: span 6;
  }

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

  .quest-mark {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quest-photo {
    min-height: 390px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .case-sticky {
    position: static;
  }

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

@media (max-width: 680px) {
  :root {
    --page: calc(100% - 30px);
  }

  .brand-name span:last-child {
    display: none;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .hero-copy {
    min-height: 620px;
    padding: 74px 15px;
  }

  .hero-image {
    min-height: 620px;
  }

  .display {
    font-size: clamp(3.3rem, 18vw, 5.3rem);
  }

  .hero .display {
    font-size: clamp(3rem, 13vw, 4rem);
  }

  .practice-grid,
  .capability-grid,
  .engagement-grid,
  .metric-grid,
  .media-grid,
  .form {
    grid-template-columns: 1fr;
  }

  .work-grid {
    display: block;
    background: transparent;
  }

  .work-card {
    min-height: 470px;
    margin-top: 1px;
  }

  .work-overlay {
    background: linear-gradient(
      0deg,
      rgba(8, 10, 13, 0.97) 0%,
      rgba(8, 10, 13, 0.78) 46%,
      rgba(8, 10, 13, 0.28) 100%
    );
  }

  .work-card.span-12 {
    min-height: auto;
  }

  .quest-card {
    display: block;
  }

  .quest-mark {
    min-height: 270px;
  }

  .quest-photo {
    min-height: 320px;
  }

  .source-links,
  .quest-metrics {
    grid-template-columns: 1fr;
  }

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

  .case-gallery img,
  .case-gallery img:nth-child(3) {
    grid-column: auto;
    height: 360px;
  }

  .field-full {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
