@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
}

:root {
  --font-sans: "Manrope";
  --font-serif: "Cormorant Garamond";
  color-scheme: dark;
  --ink: #000000;
  --paper: #f6f1ea;
  --muted: #9c9690;
  --muted-strong: #c3bbb3;
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --accent: #ff4d2e;
  --accent-light: #ff7652;
  --accent-readable: #ff8064;
  --accent-rgb: 255, 77, 46;
  --on-accent: #1d0904;
  --glass-border: rgba(255, 255, 255, .08);
  --glass-bg: rgba(0, 0, 0, .72);
  --glass-highlight: rgba(255, 255, 255, .04);
  --nav-text: rgba(255, 255, 255, .7);
  --nav-hover: rgba(255, 255, 255, .065);
  --surface: rgba(10, 10, 10, .94);
  --surface-strong: #0a0a0a;
  --surface-highlight: rgba(255, 255, 255, .07);
  --field-bg: rgba(8, 8, 8, .9);
  --shadow: rgba(0, 0, 0, .34);
  --hero-overlay: linear-gradient(90deg, rgba(0, 0, 0, .78), transparent 45%, rgba(0, 0, 0, .3));
  --hero-overlay-strong: linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .22) 66%, transparent);
  --hero-overlay-soft: linear-gradient(90deg, rgba(0, 0, 0, .86), transparent 72%);
  --stage-background: #000000;
  --footer-callout-background: #000000;
  --mobile-nav-background: #000000;
  --mobile-stage-overlay: linear-gradient(180deg, rgba(0, 0, 0, .04), #000000 52%);
  --credit: rgba(255, 255, 255, .3);
  --success: #ffd7cd;
  --error: #ffd7d7;
  --pad: clamp(22px, 5vw, 76px);
}

:root[data-theme="light"] {
  color-scheme: light;
  --ink: #f7f2eb;
  --paper: #1d1713;
  --muted: #746c65;
  --muted-strong: #4f4842;
  --line: rgba(41, 28, 20, .17);
  --line-soft: rgba(41, 28, 20, .1);
  --accent: #ed4528;
  --accent-light: #d63a20;
  --accent-readable: #bd2d15;
  --accent-rgb: 237, 69, 40;
  --on-accent: #fffaf6;
  --glass-border: rgba(54, 34, 22, .12);
  --glass-bg: rgba(255, 251, 246, .78);
  --glass-highlight: rgba(255, 255, 255, .7);
  --nav-text: rgba(29, 23, 19, .7);
  --nav-hover: rgba(237, 69, 40, .09);
  --surface: rgba(255, 251, 246, .94);
  --surface-strong: #fffaf5;
  --surface-highlight: rgba(255, 255, 255, .78);
  --field-bg: rgba(255, 252, 248, .88);
  --footer-bg: #efe6dc;
  --shadow: rgba(73, 43, 27, .16);
  --hero-overlay: linear-gradient(90deg, rgba(247, 242, 235, .9), transparent 48%, rgba(247, 242, 235, .35));
  --hero-overlay-strong: linear-gradient(90deg, rgba(247, 242, 235, .96), rgba(247, 242, 235, .3) 68%, transparent);
  --hero-overlay-soft: linear-gradient(90deg, rgba(247, 242, 235, .94), transparent 74%);
  --mobile-overlay: rgba(247, 242, 235, .985);
  --stage-background: radial-gradient(circle at 52% 45%, rgba(var(--accent-rgb), .12), transparent 34%), var(--ink);
  --footer-callout-background: radial-gradient(circle at 80% 30%, rgba(var(--accent-rgb), .22), transparent 32%), var(--footer-bg);
  --mobile-nav-background: radial-gradient(circle at 18% 12%, rgba(var(--accent-rgb), .17), transparent 28%), var(--mobile-overlay);
  --mobile-stage-overlay: linear-gradient(180deg, rgba(var(--accent-rgb), .035), var(--ink) 52%);
  --credit: rgba(29, 23, 19, .42);
  --success: #7a2313;
  --error: #9d2424;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--font-sans), sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  transition: color 220ms ease, background-color 220ms ease;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

::selection {
  color: var(--on-accent);
  background: var(--accent);
}

:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 14px;
  right: var(--pad);
  left: var(--pad);
  display: flex;
  height: 60px;
  align-items: center;
  justify-content: flex-end;
  padding: 0 10px;
  pointer-events: none;
}

.site-header > * {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo {
  display: flex;
  width: 92px;
  height: 46px;
  align-items: center;
}

.footer-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 16px rgba(var(--accent-rgb), .34));
}

.desktop-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: var(--glass-bg);
  box-shadow: 0 14px 38px var(--shadow), inset 0 1px 0 var(--glass-highlight);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  transform: translate(-50%, -50%);
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  height: 34px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--nav-text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .005em;
  transition: color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.desktop-nav a:hover {
  color: var(--paper);
  background: var(--nav-hover);
}

.desktop-nav a[aria-current="page"] {
  color: var(--paper);
  background: rgba(var(--accent-rgb), .16);
  box-shadow: inset 0 0 0 1px rgba(var(--accent-rgb), .22);
}

.theme-toggle {
  display: inline-flex;
  height: 38px;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  color: var(--nav-text);
  background: var(--glass-bg);
  box-shadow: 0 10px 28px var(--shadow), inset 0 1px 0 var(--glass-highlight);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.theme-toggle:hover {
  color: var(--paper);
  border-color: rgba(var(--accent-rgb), .38);
}

.theme-toggle svg {
  width: 15px;
  height: 15px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.theme-toggle .theme-sun,
:root[data-theme="light"] .theme-toggle .theme-moon {
  display: none;
}

:root[data-theme="light"] .theme-toggle .theme-sun {
  display: block;
}

.theme-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.menu-button {
  position: relative;
  display: none;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--glass-bg);
}

.menu-button span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 1px;
  background: var(--paper);
  transform: translate(-50%, -50%);
  transition: opacity 160ms ease, transform 220ms ease;
}

.menu-button span:first-child {
  transform: translate(-50%, calc(-50% - 4px));
}

.menu-button span:last-child {
  transform: translate(-50%, calc(-50% + 4px));
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.kicker,
.section-label {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-pad {
  padding-inline: var(--pad);
}

.home-stage {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--stage-background);
}

.home-stage::after,
.contact-page::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: var(--hero-overlay);
}

.hero-sculpture {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: min(72vw, 1040px);
  aspect-ratio: 1362 / 360;
  transform: translate(-50%, -50%);
  pointer-events: none;
  contain: layout style;
}

.sculpture-frame {
  position: relative;
  width: 100%;
  height: 100%;
  transform: scale(.98);
  animation: sculpture-breathe 7s ease-in-out infinite;
}

.sculpture-canvas,
.sculpture-fallback {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.sculpture-canvas {
  opacity: 0;
  filter: saturate(1.06) contrast(1.04) drop-shadow(0 24px 40px rgba(var(--accent-rgb), .24));
  transition: opacity 420ms ease;
}

.sculpture-fallback {
  object-fit: contain;
  filter: saturate(1.05) contrast(1.03) drop-shadow(0 24px 40px rgba(var(--accent-rgb), .2));
  transition: opacity 360ms ease;
}

.hero-sculpture.is-model-ready .sculpture-frame {
  transform: none;
  animation: none;
}

.hero-sculpture.is-model-ready .sculpture-canvas {
  opacity: 1;
  transition-duration: 120ms;
  transition-timing-function: linear;
}

.hero-sculpture.model-failed .sculpture-canvas {
  display: none;
}

.page-sculpture {
  width: min(76vw, 1080px);
  opacity: .56;
}

@keyframes sculpture-breathe {
  0%,
  100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

.home-message {
  position: absolute;
  z-index: 3;
  top: 34%;
  left: var(--pad);
  width: min(455px, 36vw);
}

.home-message h1,
.editorial-hero h1,
.contact-message h1,
.footer-callout h2 {
  margin: 14px 0 0;
  font-size: clamp(48px, 5.6vw, 82px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.home-message h1 {
  margin-top: 16px;
  font-size: clamp(38px, 4.05vw, 58px);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 1.01;
}

.home-intro {
  width: min(335px, 100%);
  margin: 24px 0 0;
  color: var(--muted-strong);
  font-size: 12.5px;
  font-weight: 520;
  line-height: 1.65;
}

.project-rail {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: clamp(18px, 2.8vw, 44px);
  display: grid;
  width: min(350px, 28vw);
  gap: 10px;
  grid-auto-rows: 122px;
  transform: translateY(-50%);
}

.project-card {
  display: block;
  min-width: 0;
}

.project-card.is-compact {
  position: relative;
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(118px, 42%) minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  overflow: hidden;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(115deg, var(--surface-highlight), transparent 52%),
    var(--surface);
  box-shadow: 0 18px 44px var(--shadow);
  backdrop-filter: blur(20px);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), border-color 220ms ease, background 220ms ease;
}

.project-card.is-compact:hover {
  transform: translateX(-6px);
  border-color: rgba(var(--accent-rgb), .56);
  background:
    linear-gradient(115deg, rgba(var(--accent-rgb), .13), transparent 54%),
    var(--surface-strong);
}

.project-mockup {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-strong);
  box-shadow: 0 30px 70px var(--shadow);
}

.project-card.is-compact .project-mockup {
  position: relative;
  width: 100%;
  height: 86px;
  border-radius: 10px;
  box-shadow: 0 12px 24px var(--shadow);
}

.project-card.is-compact .project-mockup::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  content: "";
  background:
    radial-gradient(circle at 8px 4px, #ff6f61 0 1.5px, transparent 1.7px),
    radial-gradient(circle at 14px 4px, #ffc857 0 1.5px, transparent 1.7px),
    radial-gradient(circle at 20px 4px, #61d180 0 1.5px, transparent 1.7px),
    var(--surface-strong);
}

.project-shot {
  position: relative;
  aspect-ratio: 1.55;
  overflow: hidden;
}

.project-card.is-compact .project-shot {
  height: 100%;
  aspect-ratio: auto;
}

.project-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 700ms cubic-bezier(.22, 1, .36, 1), filter 300ms ease;
}

.project-card:hover .project-shot img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.03);
}

.project-meta {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  align-items: start;
  gap: 14px;
  padding: 20px 2px 44px;
}

.project-meta > span {
  padding-top: 4px;
  color: var(--accent-readable);
  font-size: 9px;
}

.project-meta h2 {
  margin: 0;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.04em;
}

.project-meta p {
  max-width: 420px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.project-meta strong {
  padding-top: 5px;
  color: var(--muted-strong);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.project-card.is-compact .project-meta {
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 0 5px 0 0;
}

.project-card.is-compact .project-meta h2 {
  margin-bottom: 6px;
  font-size: 12.5px;
  font-weight: 720;
  letter-spacing: -.025em;
  line-height: 1.18;
}

.project-card.is-compact .project-meta p {
  margin: 0;
  overflow: hidden;
  font-size: 8px;
  letter-spacing: .015em;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-card.is-compact .project-meta strong {
  display: none;
}

.inner-page {
  overflow-x: clip;
  background: var(--ink);
}

.editorial-hero {
  position: relative;
  display: flex;
  min-height: min(880px, 100svh);
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 150px var(--pad) 90px;
}

.editorial-hero h1 {
  position: relative;
  z-index: 2;
  width: min(1160px, 100%);
  max-width: 100%;
  font-size: clamp(54px, 7.2vw, 102px);
}

.editorial-hero > p:last-child {
  position: relative;
  z-index: 2;
  width: min(420px, 100%);
  margin: 34px 5vw 0 auto;
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.75;
}

.not-found-page {
  min-height: 100svh;
}

.not-found-page::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: var(--hero-overlay-soft);
}

.not-found-page > p,
.not-found-page > h1 {
  position: relative;
  z-index: 2;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 140px;
}

.project-grid > .reveal:last-child {
  grid-column: 1 / -1;
}

.project-grid > .reveal:last-child .project-shot {
  aspect-ratio: 2.15;
}

.project-grid > .reveal:last-child .project-shot img {
  object-position: center 62%;
}

.outcomes-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  padding-block: 120px 160px;
  border-top: 1px solid var(--line);
}

.outcomes-title h2,
.pillars-intro h2,
.services-sticky h2 {
  max-width: 520px;
  margin: 16px 0 0;
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

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

.outcome-row {
  display: grid;
  grid-template-columns: 34px minmax(180px, .7fr) 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.outcome-row span {
  color: var(--accent-readable);
  font-size: 9px;
}

.outcome-row h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}

.outcome-row p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.work-hero,
.about-hero,
.services-hero {
  min-height: 100svh;
}

.work-hero {
  isolation: isolate;
}

.work-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: var(--hero-overlay-strong);
}

.about-hero::after,
.services-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: var(--hero-overlay-soft);
}

.mission-section {
  display: grid;
  grid-template-columns: .45fr 1.55fr;
  gap: 70px;
  padding-block: 150px;
  border-top: 1px solid var(--line);
}

.mission-copy h2 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(34px, 5vw, 70px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1.08;
}

.mission-copy p {
  max-width: 520px;
  margin: 36px 0 0 auto;
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.75;
}

.pillars-section {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 90px;
  padding-block: 150px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.pillar-card {
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pillar-card > span {
  display: block;
  margin-bottom: 64px;
  color: var(--accent-readable);
  font-size: 9px;
}

.pillar-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif), serif;
  font-size: 30px;
  font-weight: 400;
  font-style: italic;
}

.pillar-card p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.services-list {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 90px;
  padding-block: 150px;
  border-top: 1px solid var(--line);
}

.services-sticky {
  position: sticky;
  top: 130px;
  height: fit-content;
}

.service-detail {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px 22px;
  padding: 36px 0 42px;
  border-top: 1px solid var(--line);
}

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

.service-detail > span {
  color: var(--accent-readable);
  font-size: 9px;
}

.service-detail h2 {
  margin: 0;
  font-family: var(--font-serif), serif;
  font-size: clamp(34px, 4.4vw, 62px);
  font-weight: 400;
  font-style: italic;
  line-height: .95;
}

.service-detail > p {
  grid-column: 2;
  max-width: 520px;
  margin: 10px 0 0;
  color: var(--muted-strong);
  font-size: 12px;
  line-height: 1.7;
}

.service-detail ul {
  display: flex;
  grid-column: 2;
  flex-wrap: wrap;
  gap: 6px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.service-detail li {
  padding: 6px 9px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--muted);
  font-size: 8px;
  text-transform: uppercase;
}

.support-section {
  padding-block: 120px 150px;
  border-top: 1px solid var(--line);
}

.support-section h2 {
  width: min(970px, 100%);
  margin: 16px 0 80px;
  font-size: clamp(34px, 5vw, 70px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1.08;
}

.support-marquee {
  overflow: hidden;
  margin-inline: calc(var(--pad) * -1);
  border-block: 1px solid var(--line);
}

.support-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.support-group {
  display: flex;
  align-items: center;
  gap: 38px;
  padding: 19px;
  font-family: var(--font-serif), serif;
  font-size: 25px;
  font-style: italic;
}

.support-marquee i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.contact-page {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: 1fr auto;
  align-items: end;
  padding: 130px var(--pad) 32px;
}

.contact-message,
.contact-details,
.contact-form,
.contact-credit {
  position: relative;
  z-index: 3;
}

.contact-message {
  align-self: center;
  width: min(690px, 100%);
}

.contact-message h1 {
  font-size: clamp(48px, 6vw, 86px);
}

.contact-message > p:last-child {
  width: min(420px, 100%);
  margin: 30px 0 0 auto;
  color: var(--muted-strong);
  font-size: 12px;
  line-height: 1.7;
}

.contact-details {
  display: grid;
  align-self: center;
  gap: 22px;
  width: min(340px, 100%);
  margin-left: auto;
}

.contact-details > div {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.contact-details a {
  font-family: var(--font-serif), serif;
  font-size: 25px;
  font-style: italic;
}

.contact-details p:not(.section-label) {
  margin: 7px 0 0;
  color: var(--muted-strong);
  font-size: 10px;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1fr 1fr 1.7fr auto;
  align-items: end;
  gap: 10px;
  margin-top: 45px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-form label {
  display: grid;
  gap: 6px;
}

.contact-form label > span {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  height: 42px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 2px solid transparent;
  outline-offset: 2px;
  background: var(--field-bg);
  font-size: 10px;
}

.contact-form textarea {
  height: auto;
  min-height: 88px;
  padding-block: 11px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent-light);
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline-color: var(--accent-light);
}

.contact-form button {
  height: 42px;
  padding: 0 15px;
  border: 0;
  border-radius: 8px;
  color: var(--on-accent);
  background: var(--accent);
  font-size: 9px;
  white-space: nowrap;
}

.contact-credit {
  position: absolute;
  right: var(--pad);
  bottom: 10px;
  margin: 0;
  color: var(--credit);
  font-size: 7px;
  text-transform: uppercase;
}

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

.footer-callout {
  display: flex;
  min-height: 570px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 100px var(--pad);
  background: var(--footer-callout-background);
}

.footer-callout > p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.footer-callout h2 {
  max-width: 920px;
}

.footer-callout > a {
  display: inline-flex;
  margin-top: 34px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: .5fr 1fr 1fr 1fr;
  align-items: end;
  gap: 30px;
  padding: 36px var(--pad) 26px;
}

.footer-bottom > a:not(.footer-logo) {
  font-family: var(--font-serif), serif;
  font-size: 18px;
  font-style: italic;
}

.footer-bottom nav {
  display: flex;
  gap: 17px;
  font-size: 9px;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 8px;
  text-align: right;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(.22,1,.36,1), transform 700ms cubic-bezier(.22,1,.36,1);
}

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

.form-status {
  display: none;
  grid-column: 1 / -1;
  margin: 4px 0 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--field-bg);
  font-size: 10px;
}

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

.form-status.is-success {
  border-color: rgba(var(--accent-rgb), .55);
  color: var(--success);
}

.form-status.is-error {
  border-color: rgba(255, 111, 111, .5);
  color: var(--error);
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: .62;
}

@media (max-width: 1100px) {
  .project-rail {
    width: 300px;
  }

  .home-message {
    width: min(410px, calc(100vw - 340px));
  }

  .hero-sculpture {
    width: min(68vw, 900px);
  }

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

  .contact-form button {
    grid-column: 2;
  }
}

@media (max-width: 800px) {
  :root {
    --pad: 18px;
  }

  .site-header {
    top: 10px;
    right: 12px;
    left: 12px;
    height: 56px;
    padding: 0 6px 0 4px;
  }

  .theme-toggle {
    width: 42px;
    justify-content: center;
    padding: 0;
  }

  .theme-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .js .menu-button {
    display: grid;
  }

  .js .desktop-nav {
    position: fixed;
    z-index: 0;
    inset: 0;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 96px 28px 48px;
    border: 0;
    border-radius: 0;
    transform: none;
    opacity: 0;
    background: var(--mobile-nav-background);
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  .js .desktop-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .js .desktop-nav a {
    width: 100%;
    height: 64px;
    padding: 0;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
    font-size: 40px;
    font-weight: 760;
    letter-spacing: -.05em;
    line-height: 54px;
  }

  .js .desktop-nav a:hover,
  .js .desktop-nav a[aria-current="page"] {
    color: var(--accent-readable);
    background: transparent;
    box-shadow: none;
  }

  .home-stage {
    min-height: auto;
    padding: 112px var(--pad) 24px;
  }

  .home-stage::after {
    background: var(--mobile-stage-overlay);
  }

  .hero-sculpture {
    top: 118px;
    width: min(108vw, 540px);
    transform: translateX(-50%);
    opacity: .86;
  }

  .editorial-hero .page-sculpture {
    top: 43%;
    width: min(112vw, 680px);
    transform: translate(-50%, -50%);
    opacity: .5;
  }

  .home-message {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-height: 560px;
    padding-top: 280px;
  }

  .home-message h1 {
    font-size: clamp(36px, 10.8vw, 48px);
  }

  .contact-message h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .project-rail {
    position: relative;
    z-index: 3;
    top: auto;
    right: auto;
    width: 100%;
    grid-auto-rows: 112px;
    transform: none;
  }

  .editorial-hero {
    min-height: 680px;
    justify-content: flex-end;
    padding-block: 120px 70px;
  }

  .editorial-hero h1 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .editorial-hero > p:last-child {
    margin: 26px 0 0;
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-bottom: 90px;
  }

  .project-grid > .reveal:last-child {
    grid-column: auto;
  }

  .project-grid > .reveal:last-child .project-shot {
    aspect-ratio: 1.55;
  }

  .outcomes-section,
  .mission-section,
  .pillars-section,
  .services-list {
    grid-template-columns: 1fr;
    gap: 54px;
    padding-block: 90px;
  }

  .outcome-row {
    grid-template-columns: 28px 1fr;
  }

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

  .mission-copy p {
    margin-left: 0;
  }

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

  .services-sticky {
    position: static;
  }

  .support-section h2 {
    margin-bottom: 55px;
  }

  .contact-page {
    display: block;
    min-height: auto;
    padding: 115px var(--pad) 30px;
  }

  .contact-page .hero-sculpture {
    top: 160px;
    width: min(112vw, 680px);
    opacity: .52;
  }

  .contact-message {
    min-height: 570px;
    padding-top: 250px;
  }

  .contact-message > p:last-child {
    margin-left: 0;
  }

  .contact-details {
    width: 100%;
    margin: 0 0 64px;
  }

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

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }

  .contact-form button {
    grid-column: 1;
  }

  .contact-credit {
    position: static;
    margin-top: 36px;
  }

  .footer-callout {
    min-height: 500px;
    padding-block: 80px;
  }

  .footer-callout h2 {
    font-size: 46px;
  }

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

  .footer-bottom nav,
  .footer-bottom p {
    grid-column: 1 / -1;
  }

  .footer-bottom p {
    text-align: left;
  }
}

@media (max-width: 460px) {
  .project-meta {
    grid-template-columns: 26px 1fr auto;
  }

  .project-meta strong {
    display: none;
  }

  .pillar-grid {
    border-left: 0;
  }

  .pillar-card {
    padding-inline: 0;
    border-right: 0;
  }

  .service-detail {
    grid-template-columns: 28px 1fr;
  }

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

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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