:root {
  --bg: #11100e;
  --bg-deep: #090908;
  --surface: #1b1916;
  --surface-2: #242018;
  --paper: #d9d0bf;
  --paper-soft: #cfc5b4;
  --ink: #efe8dc;
  --ink-muted: #bdb09e;
  --ink-faint: #867b6c;
  --line: rgba(239, 232, 220, 0.12);
  --line-strong: rgba(239, 232, 220, 0.2);
  --gold: #c7a968;
  --copper: #9b6753;
  --sage: #6f8170;
  --blue: #556777;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  --radius: 6px;
  --content: min(1160px, calc(100vw - 48px));
  --content-narrow: min(780px, calc(100vw - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    radial-gradient(circle at 20% 8%, rgba(155, 103, 83, 0.22), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(85, 103, 119, 0.2), transparent 24%),
    linear-gradient(180deg, #171512 0%, var(--bg) 42%, var(--bg-deep) 100%);
  background-size: 36px 36px, 36px 36px, auto, auto, auto;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.skip-link {
  position: absolute;
  inset: 8px auto auto 8px;
  z-index: 100;
  padding: 8px 16px;
  background: var(--gold);
  color: #15120d;
  font-size: 0.9rem;
  transform: translateY(-120%);
  transition: transform 160ms ease;
}
.skip-link:focus {
  transform: translateY(0);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 48%, transparent 49%),
    linear-gradient(35deg, transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 51%);
  background-size: 180px 180px, 230px 230px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

::selection {
  background: rgba(199, 169, 104, 0.28);
  color: #fff7e8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(14, 13, 11, 0.78);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  width: var(--content);
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.brand__mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.76rem;
  background: rgba(255, 255, 255, 0.03);
}

.brand__name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.site-nav a {
  position: relative;
  transition: color 180ms ease;
}

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(3px) rotate(38deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-3px) rotate(-38deg);
}

.hero-section {
  width: var(--content);
  min-height: 0;
  margin: 0 auto;
  padding: 32px 0 54px;
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
  align-items: end;
  gap: clamp(32px, 7vw, 92px);
}

.hero-section__media {
  min-height: 460px;
}

.hero-section__content {
  padding: 18px 0 10px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h2,
h3 {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 14ch;
  margin-bottom: 20px;
  color: #fff5e6;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
}

h2 {
  color: #f6edde;
  font-size: clamp(1.35rem, 2.25vw, 2.1rem);
  line-height: 1.16;
}

h3 {
  color: #f4ebdf;
  font-size: clamp(1rem, 1.2vw, 1.22rem);
  line-height: 1.26;
}

.hero-section__lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--ink-muted);
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
}

.hero-section__actions,
.feature-links,
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 10px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.9rem;
  line-height: 1.2;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(199, 169, 104, 0.72);
  color: #fff2d8;
}

.button--primary {
  border-color: rgba(199, 169, 104, 0.75);
  color: #15120d;
  background: var(--gold);
}

.button--primary:hover,
.button--primary:focus-visible {
  color: #15120d;
  background: #d6ba7c;
}

.button--secondary {
  color: var(--paper);
}

.button--compact {
  min-height: 40px;
  padding-inline: 15px;
}

.button--light {
  border-color: rgba(17, 16, 14, 0.24);
  color: #15120d;
  background: rgba(17, 16, 14, 0.08);
}

.button--light:hover,
.button--light:focus-visible {
  border-color: rgba(17, 16, 14, 0.54);
  color: #15120d;
  background: rgba(17, 16, 14, 0.12);
}

.section {
  padding: clamp(76px, 12vw, 150px) 0;
}

.section__inner {
  width: var(--content);
  margin: 0 auto;
}

.section--paper {
  color: #1b1711;
  background:
    linear-gradient(90deg, rgba(72, 55, 36, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(72, 55, 36, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
}

.section--paper .eyebrow {
  color: #745332;
}

.section--paper h2,
.section--paper h3 {
  color: #17130e;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading--split {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.statement-grid,
.philosophy-layout,
.collaboration-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 7vw, 86px);
}

.statement-grid > *,
.philosophy-layout > *,
.collaboration-panel > *,
.feature-section > *,
.project-card > * {
  min-width: 0;
}

.statement-copy {
  max-width: 700px;
  color: var(--ink-muted);
  font-size: 1.08rem;
}

.statement-copy p:last-child,
.feature-section__content p:last-of-type,
.collaboration-copy p:last-of-type {
  margin-bottom: 0;
}

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

.project-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(28, 24, 18, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 40px rgba(53, 42, 27, 0.1);
  overflow: hidden;
}

.project-card__media {
  min-height: 235px;
  border: 0;
  border-radius: 0;
}

.project-card__body {
  padding: 24px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.project-card__kicker {
  margin-bottom: 10px;
  color: #745332;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-card p {
  color: #4d4438;
}

.project-card .link-row {
  margin-top: auto;
  padding-top: 18px;
}

.link-row a,
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-bottom: 1px solid currentColor;
  color: #6d4e2f;
  font-size: 0.94rem;
  transition: color 180ms ease;
}

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

.link-row a:hover,
.link-row a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--copper);
}

.principles {
  display: grid;
  gap: 18px;
}

.principle {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 22px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

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

.principle span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.principle h3 {
  margin-bottom: 8px;
}

.principle p {
  grid-column: 2;
  color: var(--ink-muted);
}

.feature-section {
  width: var(--content);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 130px) 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.feature-section--reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
}

.feature-section--reverse .feature-section__visual {
  order: 2;
}

.feature-section--reverse .feature-section__content {
  order: 1;
}

.feature-section__visual {
  width: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 1.13 / 1;
}

.feature-section__content {
  max-width: 650px;
}

.feature-section__content p {
  color: var(--ink-muted);
  font-size: 1.08rem;
}

.feature-links {
  margin-top: 28px;
}

.essay-list {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(28, 24, 18, 0.2);
  background: rgba(28, 24, 18, 0.18);
}

.essay-item {
  display: grid;
  grid-template-columns: 130px minmax(0, 0.95fr) minmax(240px, 1.05fr);
  gap: 24px;
  align-items: start;
  padding: 26px;
  background: rgba(217, 208, 191, 0.92);
}

.essay-item p {
  margin: 0;
  color: #745332;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.essay-item h3 {
  margin: 0;
  font-size: 1.35rem;
}

.essay-item h3 a {
  transition: color 180ms ease;
}

.essay-item h3 a:hover,
.essay-item h3 a:focus-visible {
  color: #745332;
}

.essay-item span {
  color: #4d4438;
}

.collaboration-panel {
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.collaboration-copy {
  color: var(--ink-muted);
  font-size: 1.04rem;
}

.collaboration-copy .button {
  margin-top: 28px;
}

.final-cta {
  padding: clamp(82px, 12vw, 150px) 0;
  color: #15120d;
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 16, 14, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #d8c7a7 0%, #c5b38f 52%, #b7a987 100%);
  background-size: 34px 34px, 34px 34px, auto;
}

.final-cta__inner {
  width: var(--content-narrow);
  margin: 0 auto;
  text-align: center;
}

.final-cta .eyebrow {
  color: #6d4e2f;
}

.final-cta h2 {
  color: #16120d;
  margin-bottom: 28px;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  background: #0b0a09;
}

.site-footer__inner {
  width: var(--content);
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.site-footer__brand {
  margin-bottom: 4px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.site-footer__note {
  margin: 0;
  color: var(--ink-faint);
  font-size: 0.92rem;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.92rem;
}

.site-footer__nav a {
  color: var(--ink-muted);
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: var(--gold);
}

.portrait-frame {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  background: #15120f;
  box-shadow: var(--shadow);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(9, 9, 8, 0) 58%, rgba(9, 9, 8, 0.34) 100%),
    linear-gradient(90deg, rgba(9, 9, 8, 0.18), transparent 24%, transparent 76%, rgba(9, 9, 8, 0.24));
}

.portrait-frame picture,
.visual-placeholder picture {
  display: block;
  width: 100%;
  height: 100%;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 42%;
}

.visual-placeholder {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, rgba(17, 16, 14, 0.04), rgba(17, 16, 14, 0.38)),
    var(--surface);
  box-shadow: var(--shadow);
}

.visual-placeholder::before,
.visual-placeholder::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.visual-placeholder::before {
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.visual-placeholder::after {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.04) 0%, rgba(8, 7, 6, 0.12) 55%, rgba(8, 7, 6, 0.42) 100%),
    linear-gradient(90deg, rgba(8, 7, 6, 0.22), transparent 28%, transparent 72%, rgba(8, 7, 6, 0.22));
}

.visual-placeholder img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.visual-placeholder span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  color: rgba(255, 245, 230, 0.75);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.14rem;
}

.visual-placeholder--atelier img {
  object-position: 54% 50%;
}

.visual-placeholder--books img {
  object-position: 58% 50%;
}

.visual-placeholder--detail img {
  object-position: 50% 56%;
}

.visual-placeholder--amp img {
  object-position: 50% 50%;
}

.visual-placeholder--stage img {
  object-position: 50% 50%;
}

.visual-placeholder--portrait {
  background:
    radial-gradient(ellipse at 50% 27%, rgba(239, 232, 220, 0.32), transparent 13%),
    radial-gradient(ellipse at 50% 58%, rgba(239, 232, 220, 0.18), transparent 31%),
    linear-gradient(120deg, rgba(85, 103, 119, 0.22), transparent 34%),
    linear-gradient(180deg, #282219 0%, #171410 100%);
}

.visual-placeholder--atelier {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.05) 12%, transparent 12% 18%, rgba(255,255,255,0.04) 18% 20%, transparent 20%),
    linear-gradient(155deg, rgba(199, 169, 104, 0.23), transparent 42%),
    #2a2319;
}

.visual-placeholder--books {
  background:
    repeating-linear-gradient(90deg, rgba(239,232,220,0.12) 0 10px, rgba(85,103,119,0.18) 10px 22px, rgba(155,103,83,0.16) 22px 34px),
    linear-gradient(180deg, #282018, #151310);
}

.visual-placeholder--detail {
  background:
    radial-gradient(circle at 32% 46%, rgba(199, 169, 104, 0.26), transparent 17%),
    radial-gradient(circle at 66% 38%, rgba(111, 129, 112, 0.2), transparent 19%),
    linear-gradient(135deg, #241d18, #11100e);
}

.visual-placeholder--amp {
  background:
    radial-gradient(circle at 28% 32%, rgba(223, 184, 91, 0.5), transparent 7%),
    radial-gradient(circle at 58% 40%, rgba(223, 184, 91, 0.36), transparent 8%),
    linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 64px),
    linear-gradient(180deg, #30261d, #14120f);
}

.visual-placeholder--stage {
  background:
    linear-gradient(180deg, transparent 0 42%, rgba(199, 169, 104, 0.1) 42% 43%, transparent 43%),
    radial-gradient(ellipse at 50% 100%, rgba(85, 103, 119, 0.4), transparent 42%),
    linear-gradient(180deg, #171819, #0f0e0d);
}

.route-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.route-main {
  flex: 1;
}

.route-hero {
  width: var(--content);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 88px) 0;
}

.route-hero__content {
  max-width: 820px;
}

.route-hero h1 {
  max-width: 18ch;
  margin-bottom: 20px;
  font-size: clamp(1.9rem, 4.5vw, 3.7rem);
}

.route-hero p {
  color: var(--ink-muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.route-panel {
  width: var(--content);
  margin: 0 auto clamp(72px, 10vw, 120px);
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.route-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.route-panel a {
  color: var(--gold);
  border-bottom: 1px solid currentColor;
}

.projects-page {
  background:
    radial-gradient(circle at 18% 4%, rgba(124, 84, 45, 0.09), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(58, 72, 84, 0.08), transparent 24%),
    linear-gradient(180deg, #11100e 0%, #0a0908 100%);
}

.projects-main {
  overflow-x: hidden;
}

.projects-showcase {
  width: min(1760px, calc(100vw - 28px));
  margin: 0 auto;
  padding: clamp(26px, 2.2vw, 38px) 0 clamp(70px, 7vw, 112px);
  display: flex;
  flex-direction: column;
}

.projects-showcase__grid {
  order: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.35vw, 24px);
}

.project-direction {
  min-width: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(11, 10, 8, 0.72);
}

.project-direction__visual {
  position: relative;
  display: block;
  aspect-ratio: 1.06 / 1;
  overflow: hidden;
  background: #090908;
}

.project-direction__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 68%, rgba(8, 7, 6, 0.16));
}

.project-direction__visual picture,
.project-direction__visual img {
  width: 100%;
  height: 100%;
}

.project-direction__visual img {
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
  transition: transform 520ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 320ms ease;
}

.project-direction--domisoul .project-direction__visual img {
  object-position: 50% 50%;
}

.project-direction--still-stage .project-direction__visual img {
  object-position: 56% 50%;
}

.project-direction--proof .project-direction__visual img {
  object-position: 50% 50%;
}

.project-direction__body {
  min-height: 176px;
  padding: clamp(18px, 1.35vw, 22px) clamp(16px, 1.5vw, 26px) 18px;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  border-inline: 1px solid rgba(239, 232, 220, 0.08);
  text-align: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    rgba(14, 13, 11, 0.76);
  background-size: 34px 34px, auto;
  transition: background-color 240ms ease, border-color 240ms ease;
}

.project-direction__title {
  margin: 0 0 12px;
  color: #e9dfd1;
  font-family: "Bodoni 72", "Bodoni MT", Didot, "Times New Roman", serif;
  font-size: clamp(2.35rem, 3.45vw, 4.05rem);
  line-height: 0.96;
  overflow-wrap: normal;
  white-space: nowrap;
}

.project-direction__title a {
  display: inline-block;
  transition: color 220ms ease, transform 220ms ease;
}

.project-direction__label {
  margin: 0;
  color: #d6a145;
  font-size: clamp(0.76rem, 0.95vw, 1rem);
  line-height: 1.3;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-direction__hint {
  max-width: 60ch;
  margin: 8px auto 0;
  color: var(--ink-muted);
  font-size: 0.78rem;
  line-height: 1.42;
}

.project-direction__status {
  margin-top: 6px;
  padding-top: 0;
  font-size: 0.7rem;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-direction__status a {
  color: var(--gold);
}

.project-direction__status {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 10px;
  color: var(--ink-faint);
}

.project-direction__status span:first-child::after {
  content: "·";
  margin-left: 10px;
}

.project-direction__visual:focus-visible,
.project-direction__title a:focus-visible,
.project-direction__status a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.projects-axis {
  position: relative;
  order: 2;
  height: 34px;
  margin: -17px 14px 0;
  display: grid;
  place-items: center;
}

.projects-axis::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, #b98838, #d5a44b 50%, #b98838);
}

.projects-axis__cap {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 7px;
  height: 7px;
  background: #c9963e;
  transform: translateY(-50%) rotate(45deg);
}

.projects-axis__cap--start {
  left: 0;
}

.projects-axis__cap--end {
  right: 0;
}

.projects-axis__mark {
  position: relative;
  z-index: 2;
  padding: 0 14px 2px 10px;
  color: #d4a24b;
  background: #0c0b09;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 1.65rem;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.16em;
  transform: rotate(-7deg);
}

.projects-showcase__title {
  order: 3;
  max-width: none;
  margin: 13px auto 0;
  color: #e8ded0;
  font-family: "Bodoni 72", "Bodoni MT", Didot, "Times New Roman", serif;
  font-size: clamp(2.1rem, 3.2vw, 3.55rem);
  line-height: 1;
  letter-spacing: 0.015em;
  text-align: center;
  text-transform: uppercase;
}

@media (hover: hover) {
  .project-direction:hover .project-direction__visual img {
    filter: saturate(1) contrast(1.05);
    transform: scale(1.025);
  }

  .project-direction:hover .project-direction__body {
    border-color: rgba(199, 169, 104, 0.2);
    background-color: rgba(20, 18, 14, 0.88);
  }

  .project-direction__title a:hover,
  .project-direction__title a:focus-visible {
    color: #fff4df;
    transform: translateY(-1px);
  }
}

@media (max-width: 1024px) {
  :root {
    --content: min(100vw - 32px, 1160px);
    --content-narrow: min(100vw - 32px, 780px);
  }

  body {
    font-size: 17px;
    line-height: 1.64;
  }

  .site-header__inner {
    min-height: 66px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 24px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(14, 13, 11, 0.96);
  }

  .site-nav.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 22px;
    font-size: 1rem;
  }

  .hero-section,
  .statement-grid,
  .philosophy-layout,
  .feature-section,
  .feature-section--reverse,
  .collaboration-panel {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
    padding-top: 26px;
  }

  .hero-section__media,
  .feature-section__visual {
    min-height: 0;
  }

  .portrait-frame {
    aspect-ratio: 1 / 1;
  }

  .portrait-frame img {
    object-position: 50% 28%;
  }

  .hero-section__content {
    padding-top: 0;
  }

  .hero-section__lead,
  .statement-copy,
  .section-copy,
  .route-hero p {
    font-size: 1.08rem;
  }

  .button {
    min-height: 46px;
    align-items: center;
  }

  .feature-section--reverse .feature-section__visual,
  .feature-section--reverse .feature-section__content {
    order: initial;
  }

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

  .project-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  }

  .project-card__media {
    min-height: 100%;
  }

  .essay-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .projects-showcase {
    width: 100%;
    padding: 24px 0 76px;
  }

  .projects-showcase__grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: clamp(340px, 46vw, 470px);
    gap: 14px;
    padding: 0 16px 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 16px;
    scroll-snap-type: inline mandatory;
    scrollbar-color: rgba(199, 169, 104, 0.58) rgba(239, 232, 220, 0.08);
    scrollbar-width: thin;
  }

  .projects-showcase__grid::-webkit-scrollbar {
    height: 6px;
  }

  .projects-showcase__grid::-webkit-scrollbar-track {
    background: rgba(239, 232, 220, 0.08);
  }

  .projects-showcase__grid::-webkit-scrollbar-thumb {
    background: rgba(199, 169, 104, 0.58);
  }

  .project-direction {
    scroll-snap-align: start;
  }

  .project-direction__body {
    min-height: 184px;
  }

  .projects-axis {
    margin-inline: 16px;
  }

  .projects-showcase__title {
    width: calc(100% - 32px);
  }
}

@media (min-width: 681px) and (max-width: 980px) {
  .site-header__inner {
    min-height: 88px;
  }

  .brand__mark {
    width: 56px;
    height: 56px;
  }

  .nav-toggle {
    width: 58px;
    height: 58px;
  }

  .nav-toggle span {
    width: 28px;
    margin: 8px auto;
  }

  .site-nav {
    top: 88px;
  }

  .site-nav.is-open {
    gap: 18px 28px;
  }

  .button {
    min-height: 70px;
  }
}

@media (max-width: 680px) {
  body {
    line-height: 1.62;
  }

  .brand__name {
    font-size: 1rem;
  }

  .site-nav.is-open {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-bottom: 40px;
    padding-top: 24px;
  }

  .hero-section__media,
  .feature-section__visual {
    min-height: 0;
  }

  .portrait-frame {
    aspect-ratio: 1 / 1;
  }

  .portrait-frame img {
    object-position: 50% 28%;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  h2 {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  .section {
    padding: 68px 0;
  }

  .section-heading--split,
  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-card {
    display: flex;
  }

  .project-card__media {
    min-height: 220px;
  }

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

  .principle p {
    grid-column: auto;
  }

  .route-panel__grid {
    grid-template-columns: 1fr;
  }

  .projects-showcase {
    padding-top: 18px;
    padding-bottom: 64px;
  }

  .projects-showcase__grid {
    grid-auto-columns: min(84vw, 390px);
    gap: 12px;
    padding-bottom: 16px;
    scrollbar-width: none;
  }

  .projects-showcase__grid::-webkit-scrollbar {
    display: none;
  }

  .project-direction__visual {
    aspect-ratio: 1 / 1;
  }

  .project-direction__body {
    min-height: 190px;
    padding: 20px 18px 21px;
  }

  .project-direction__title {
    font-size: clamp(2.15rem, 10vw, 3.15rem);
  }

  .project-direction__label {
    font-size: 0.72rem;
  }

  .projects-axis {
    margin-inline: 18px;
  }

  .projects-showcase__title {
    width: calc(100% - 36px);
    margin-top: 10px;
    font-size: clamp(1.75rem, 8vw, 2.55rem);
    line-height: 1.04;
  }

  .project-direction__status span:first-child::after {
    content: "";
    margin-left: 0;
  }
}

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

  .project-direction__visual img,
  .project-direction__body,
  .project-direction__title a {
    transition: none;
  }
}
