:root {
  --ink: #111111;
  --ink-2: #171717;
  --paper: #ffffff;
  --text: #111111;
  --muted: #666666;
  --muted-dark: #b9b9b9;
  --gold: #b8994e;
  --gold-light: #c9bc88;
  --gold-dark: #856c34;
  --line: #d8d8d8;
  --line-dark: rgba(201, 188, 136, 0.35);
  --display: Georgia, "Times New Roman", serif;
  --ui: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --gutter: clamp(24px, 5vw, 84px);
  --section: clamp(88px, 10vw, 160px);
  --max: 1500px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
}

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

.container {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding-block: var(--section);
  overflow: hidden;
}

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

.section-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 82px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.section-title .gold {
  color: var(--gold);
}

.lead {
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
}

.section--dark .lead {
  color: var(--muted-dark);
}

.eyeline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid var(--gold);
  padding: 14px 28px;
  background: var(--gold);
  color: var(--paper);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.button:hover {
  border-color: var(--gold-light);
  background: var(--gold-light);
  color: var(--ink);
}

.button--outline {
  background: transparent;
  color: inherit;
}

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

.arrow {
  width: 20px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.5;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--paper);
  transition: background 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(17, 17, 17, 0.96);
  box-shadow: 0 1px 0 var(--line-dark);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  min-height: 112px;
  align-items: center;
  grid-template-columns: 145px 1fr auto;
  gap: clamp(24px, 4vw, 68px);
  transition: min-height 240ms ease;
}

.is-scrolled .header-inner {
  min-height: 82px;
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  width: 118px;
  height: 88px;
  align-items: center;
  justify-content: center;
  transition: height 240ms ease, width 240ms ease;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.is-scrolled .brand {
  width: 92px;
  height: 66px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 50px);
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  color: #e7e7e7;
  font-size: 15px;
}

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

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

.header-cta {
  min-height: 48px;
  padding: 12px 22px;
  white-space: nowrap;
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--paper);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 220ms ease, top 220ms ease, opacity 220ms ease;
}

.menu-toggle::before { top: 16px; }
.menu-toggle span { top: 23px; }
.menu-toggle::after { top: 30px; }

.menu-open .menu-toggle::before {
  top: 23px;
  transform: rotate(45deg);
}

.menu-open .menu-toggle span { opacity: 0; }
.menu-open .menu-toggle::after {
  top: 23px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(960px, 100svh);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  min-height: min(960px, 100svh);
  grid-template-columns: 1fr 1fr;
}

.hero-copy {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 180px var(--gutter) 90px;
}

.hero-copy::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: var(--gold);
  content: "";
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 4.3vw, 74px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 span {
  display: block;
  overflow: hidden;
}

.hero h1 .gold {
  color: var(--gold);
}

.hero h1 i {
  display: block;
  font-style: normal;
  transform: translateY(110%);
  animation: line-in 900ms var(--ease) forwards;
}

.hero h1 span:nth-child(2) i {
  animation-delay: 120ms;
}

.hero-description {
  max-width: 530px;
  margin: 34px 0 0;
  color: var(--muted-dark);
  font-size: clamp(17px, 1.35vw, 21px);
  opacity: 0;
  transform: translateY(24px);
  animation: fade-up 700ms var(--ease) 430ms forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
  opacity: 0;
  transform: translateY(24px);
  animation: fade-up 700ms var(--ease) 560ms forwards;
}

.hero-media {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  will-change: transform;
}

.hero-panel {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: 52%;
  background: var(--ink);
  animation-duration: 1.15s;
  animation-fill-mode: forwards;
  animation-timing-function: var(--ease);
}

.hero-panel--left {
  left: 0;
  border-right: 1px solid var(--gold);
  animation-name: open-left;
}

.hero-panel--right {
  right: 0;
  animation-name: open-right;
}

.hero-scroll {
  position: absolute;
  z-index: 5;
  bottom: 34px;
  left: var(--gutter);
  display: grid;
  width: 28px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 16px;
}

.hero-scroll::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes open-left { to { transform: translateX(-102%); } }
@keyframes open-right { to { transform: translateX(102%); } }
@keyframes line-in { to { transform: translateY(0); } }
@keyframes fade-up { to { opacity: 1; transform: translateY(0); } }
@keyframes scroll-dot {
  0%, 100% { transform: translateY(-11px); opacity: .35; }
  50% { transform: translateY(11px); opacity: 1; }
}

.project-intro {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.project-intro .lead {
  max-width: 530px;
  margin: 0 0 4px auto;
}

.project-editorial {
  display: grid;
  margin-top: 72px;
  grid-template-columns: 1.25fr .78fr;
  gap: clamp(22px, 3vw, 50px);
}

.project-stack {
  display: grid;
  align-content: start;
  gap: clamp(22px, 3vw, 50px);
}

.project-pair {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(16px, 2vw, 30px);
}

.project-link {
  display: block;
}

.media-frame {
  position: relative;
  overflow: hidden;
  background: #ededed;
}

.media-frame::after {
  position: absolute;
  inset: 0;
  background: var(--paper);
  content: "";
  transform: translateY(0);
  transition: transform 900ms var(--ease);
}

.section--dark .media-frame::after {
  background: var(--ink);
}

.is-visible .media-frame::after,
.media-frame.is-visible::after {
  transform: translateY(-102%);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.project-link:hover img {
  transform: scale(1.025);
}

.media-frame--primary { aspect-ratio: 1.1 / 1; }
.media-frame--wide { aspect-ratio: 1.45 / 1; }
.media-frame--portrait { aspect-ratio: .76 / 1; }

.project-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 15px;
  font-family: var(--display);
  font-size: 18px;
}

.project-caption::after {
  width: 38px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.section-action {
  margin-top: 52px;
}

.story {
  min-height: 760px;
}

.story-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(50px, 7vw, 120px);
}

.story-media {
  aspect-ratio: 1.25 / 1;
}

.story-year {
  position: absolute;
  z-index: 0;
  top: 40px;
  right: -10px;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(190px, 24vw, 390px);
  line-height: .74;
  -webkit-text-stroke: 1px rgba(184, 153, 78, .38);
  writing-mode: vertical-rl;
}

.story-copy {
  position: relative;
  z-index: 2;
  padding-right: clamp(0px, 6vw, 100px);
}

.value-list {
  margin: 38px 0;
}

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

.value-item h3 {
  margin: 0 0 6px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 23px;
  font-weight: 400;
}

.value-item p {
  margin: 0;
  color: var(--muted-dark);
}

.services-grid {
  display: grid;
  margin-top: 64px;
  grid-template-columns: .8fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
}

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

.service-row {
  display: grid;
  width: 100%;
  min-height: 75px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  grid-template-columns: 48px 1fr 26px;
  text-align: left;
  transition: color 200ms ease, padding 200ms ease;
}

.service-row:hover,
.service-row.is-active {
  padding-left: 8px;
  color: var(--gold-dark);
}

.service-row .num {
  color: var(--gold-dark);
  font-family: var(--display);
}

.service-row .label {
  font-family: var(--display);
  font-size: clamp(18px, 1.4vw, 23px);
}

.service-row .arrow {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.service-row:hover .arrow,
.service-row.is-active .arrow {
  opacity: 1;
  transform: translateX(0);
}

.service-display {
  position: relative;
  min-height: 620px;
  padding-right: clamp(0px, 4vw, 58px);
}

.service-display .media-frame {
  width: 100%;
  height: 100%;
}

.service-display img {
  min-height: 620px;
}

.service-note {
  position: absolute;
  right: 0;
  bottom: 10%;
  width: min(330px, 42%);
  padding: clamp(25px, 3vw, 50px);
  background: var(--ink);
  color: var(--paper);
}

.service-note h3 {
  margin: 0 0 24px;
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 47px);
  font-weight: 400;
  line-height: 1.05;
}

.service-note p {
  margin: 0;
  color: var(--muted-dark);
}

.process {
  padding-bottom: 0;
}

.process .section-title {
  text-align: center;
}

.process-rail {
  position: relative;
  display: grid;
  margin-top: 70px;
  grid-template-columns: repeat(6, 1fr);
}

.process-rail::before {
  position: absolute;
  top: 12px;
  right: 4%;
  left: 4%;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s var(--ease);
}

.is-visible .process-rail::before {
  transform: scaleX(1);
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 42px 10px 0;
  text-align: center;
}

.process-step::before {
  position: absolute;
  top: 1px;
  left: 50%;
  width: 22px;
  height: 22px;
  border: 1px solid var(--gold);
  background: var(--ink);
  box-shadow: inset 0 0 0 6px var(--ink), inset 0 0 0 8px var(--gold);
  content: "";
  transform: translateX(-50%);
}

.process-step .num {
  display: block;
  color: var(--gold);
  font-family: var(--display);
  font-size: 20px;
}

.process-step strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
}

.process-media {
  position: relative;
  z-index: 2;
  height: clamp(310px, 36vw, 560px);
  margin-top: 64px;
  transform: translateY(24%);
}

.process-media img {
  object-position: center 62%;
}

.process-bottom {
  margin-top: -40px;
  padding: clamp(180px, 18vw, 280px) 0 90px;
  background: var(--paper);
  color: var(--ink);
}

.process-bottom-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.2fr .8fr auto;
  gap: 48px;
}

.process-bottom h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 66px);
  font-weight: 400;
  line-height: 1.04;
}

.process-bottom h3 span { color: var(--gold); }
.process-bottom p { margin: 0; color: var(--muted); }

.quotes-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr .85fr;
  gap: clamp(48px, 7vw, 120px);
}

.quote-mark {
  color: transparent;
  font-family: var(--display);
  font-size: 150px;
  line-height: .5;
  -webkit-text-stroke: 1px var(--gold);
}

.quote-heading {
  margin: 20px 0 34px;
  font-family: var(--display);
  font-size: clamp(42px, 4.7vw, 76px);
  font-weight: 400;
  line-height: 1.06;
}

.quote-heading span { color: var(--gold); }

.quote-text {
  max-width: 710px;
  min-height: 190px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(21px, 2vw, 31px);
  line-height: 1.5;
}

.quote-author {
  display: inline-block;
  margin-top: 34px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--gold);
  font-family: var(--display);
  font-size: 22px;
}

.quote-photo {
  aspect-ratio: .95 / 1;
}

.quote-tabs {
  display: flex;
  margin-top: 58px;
  border-bottom: 1px solid var(--line);
  gap: 36px;
}

.quote-tab {
  position: relative;
  min-height: 54px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-family: var(--display);
  font-size: 17px;
}

.quote-tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 200ms ease;
}

.quote-tab.is-active::after {
  transform: scaleX(1);
}

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

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

.contact-info,
.contact-form-wrap {
  position: relative;
  padding: var(--section) var(--gutter);
}

.contact-info {
  overflow: hidden;
  border-right: 1px solid var(--gold);
}

.contact-info::before {
  position: absolute;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(184, 153, 78, .1);
  border-radius: 50%;
  content: "";
  inset: 8% auto auto -22%;
}

.contact-info > * {
  position: relative;
  z-index: 1;
}

.contact-info .section-title {
  max-width: 650px;
}

.contact-intro {
  max-width: 540px;
  margin: 30px 0 46px;
  color: var(--muted-dark);
  font-size: 19px;
}

.contact-links {
  display: grid;
  gap: 22px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(17px, 1.5vw, 22px);
}

.contact-link svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
}

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

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

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

.field label {
  color: #dedede;
  font-size: 14px;
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #707070;
  border-radius: 0;
  padding: 10px 0 13px;
  background: transparent;
  color: var(--paper);
  font-size: 17px;
  outline: 0;
  transition: border-color 200ms ease;
}

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

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

.field--hidden {
  position: absolute;
  left: -9999px;
}

.consent {
  display: grid;
  align-items: start;
  color: var(--muted-dark);
  font-size: 13px;
  grid-template-columns: 20px 1fr;
  gap: 11px;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--gold-light);
  font-size: 14px;
}

.site-footer {
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
  color: var(--paper);
}

.footer-main {
  display: grid;
  align-items: center;
  padding-block: 42px;
  grid-template-columns: 180px 1fr auto;
  gap: 40px;
}

.footer-logo {
  width: 112px;
  height: 100px;
  object-fit: contain;
}

.footer-nav,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-nav a,
.footer-social a,
.footer-social span {
  color: #d0d0d0;
  font-size: 14px;
}

.footer-nav a:hover,
.footer-social a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-dark);
  color: #989898;
  font-size: 13px;
  gap: 30px;
}

.page-hero {
  position: relative;
  min-height: 620px;
  padding: 210px 0 100px;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.page-hero::after {
  position: absolute;
  top: 0;
  right: 16%;
  bottom: 0;
  width: 1px;
  background: var(--line-dark);
  content: "";
}

.page-hero h1 {
  max-width: 1040px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 7vw, 112px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}

.page-hero h1 span { color: var(--gold); }

.page-hero p {
  max-width: 650px;
  margin: 34px 0 0;
  color: var(--muted-dark);
  font-size: clamp(18px, 1.6vw, 23px);
}

.content-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(48px, 8vw, 140px);
}

.content-grid h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 4vw, 68px);
  font-weight: 400;
  line-height: 1.06;
}

.rich-text {
  color: #424242;
  font-size: 18px;
}

.rich-text h2,
.rich-text h3 {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 400;
}

.rich-text h2 { margin: 0 0 26px; font-size: 44px; }
.rich-text h3 { margin: 42px 0 16px; font-size: 28px; }
.rich-text p { margin: 0 0 22px; }
.rich-text ul,
.rich-text ol { padding-left: 22px; }
.rich-text li { margin-bottom: 10px; }

.service-index {
  display: grid;
  border-top: 1px solid var(--line);
}

.service-index a {
  display: grid;
  min-height: 115px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 70px 1fr 34px;
  gap: 20px;
  transition: color 200ms ease, padding 200ms ease;
}

.service-index a:hover {
  padding-left: 14px;
  color: var(--gold-dark);
}

.service-index .num {
  color: var(--gold-dark);
  font-family: var(--display);
  font-size: 19px;
}

.service-index strong {
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 43px);
  font-weight: 400;
}

.portfolio-toolbar {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
  gap: 30px;
}

.filter-button {
  position: relative;
  min-height: 50px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.filter-button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
}

.filter-button.is-active {
  color: var(--ink);
}

.filter-button.is-active::after {
  transform: scaleX(1);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(36px, 5vw, 80px) clamp(22px, 3vw, 46px);
}

.portfolio-card[hidden] { display: none; }

.portfolio-card:nth-child(3n + 1) {
  margin-top: 80px;
}

.portfolio-card .media-frame {
  aspect-ratio: 1.25 / 1;
}

.portfolio-card h2 {
  margin: 18px 0 7px;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
}

.portfolio-card p {
  margin: 0;
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 2vw, 28px);
}

.gallery figure {
  margin: 0;
  grid-column: span 6;
}

.gallery figure:nth-child(3n + 1) {
  grid-column: span 7;
}

.gallery figure:nth-child(3n + 2) {
  grid-column: span 5;
}

.gallery .media-frame {
  aspect-ratio: 1.25 / 1;
}

.gallery figure:nth-child(even) .media-frame {
  aspect-ratio: .95 / 1;
}

.privacy-content {
  max-width: 900px;
  margin-inline: auto;
}

.not-found {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 80px 24px;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}

.not-found strong {
  display: block;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(140px, 25vw, 330px);
  line-height: .8;
  -webkit-text-stroke: 1px var(--gold);
}

.not-found h1 {
  margin: 20px 0;
  font-family: var(--display);
  font-size: 46px;
  font-weight: 400;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 780ms var(--ease), transform 780ms var(--ease);
}

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

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: 110px 1fr auto;
  }

  .main-nav { gap: 18px; }
  .header-cta { display: none; }
  .hero h1 { font-size: clamp(52px, 6vw, 76px); }

  .services-grid,
  .story-grid,
  .quotes-grid {
    grid-template-columns: 1fr 1fr;
    gap: 46px;
  }

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

  .process-bottom-grid .button {
    grid-column: 2;
  }

  .footer-main {
    grid-template-columns: 140px 1fr;
  }

  .footer-social {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 82px;
    grid-template-columns: 100px 1fr 48px;
  }

  .brand {
    width: 90px;
    height: 64px;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
  }

  .main-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 110px var(--gutter) 60px;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 250ms ease, transform 250ms var(--ease);
  }

  .main-nav a {
    font-family: var(--display);
    font-size: 38px;
  }

  .menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero,
  .hero-grid {
    min-height: 920px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1.05fr .95fr;
  }

  .hero-copy {
    padding: 135px var(--gutter) 64px;
  }

  .hero-copy::after {
    top: auto;
    right: var(--gutter);
    bottom: 0;
    left: var(--gutter);
    width: auto;
    height: 1px;
  }

  .hero-media {
    min-height: 400px;
  }

  .hero-scroll { display: none; }

  .project-intro,
  .project-editorial,
  .story-grid,
  .services-grid,
  .quotes-grid,
  .contact-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .project-intro .lead {
    margin: 0;
  }

  .project-editorial {
    margin-top: 48px;
  }

  .story-year {
    top: auto;
    right: -20px;
    bottom: 0;
    font-size: 210px;
    writing-mode: initial;
  }

  .service-display {
    min-height: 520px;
  }

  .service-display img {
    min-height: 520px;
  }

  .process-rail {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-rail::before {
    top: 0;
    bottom: 0;
    left: 11px;
    width: 1px;
    height: auto;
    transform: scaleY(0);
    transform-origin: top;
  }

  .is-visible .process-rail::before {
    transform: scaleY(1);
  }

  .process-step {
    min-height: 76px;
    padding: 0 0 0 52px;
    text-align: left;
  }

  .process-step::before {
    top: 0;
    left: 0;
    transform: none;
  }

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

  .process-bottom-grid .button {
    grid-column: auto;
    justify-self: start;
  }

  .contact-info {
    border-right: 0;
    border-bottom: 1px solid var(--gold);
  }

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

  .footer-social {
    grid-column: auto;
  }

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

  .portfolio-card:nth-child(3n + 1) {
    margin-top: 0;
  }

  .gallery figure,
  .gallery figure:nth-child(3n + 1),
  .gallery figure:nth-child(3n + 2) {
    grid-column: span 12;
  }
}

@media (max-width: 560px) {
  .section-title {
    font-size: 43px;
  }

  .hero,
  .hero-grid {
    min-height: 850px;
  }

  .hero h1 {
    font-size: 51px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .service-display {
    min-height: auto;
    padding: 0;
  }

  .service-display img {
    min-height: 430px;
  }

  .service-note {
    position: relative;
    bottom: auto;
    width: 100%;
  }

  .quote-tabs {
    overflow-x: auto;
    gap: 26px;
  }

  .quote-tab {
    flex: 0 0 auto;
  }

  .contact-info,
  .contact-form-wrap {
    padding-inline: var(--gutter);
  }

  .footer-nav,
  .footer-social {
    flex-direction: column;
    gap: 16px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 22px;
  }

  .page-hero {
    min-height: 540px;
    padding-top: 175px;
  }

  .page-hero h1 {
    font-size: 58px;
  }

  .service-index a {
    grid-template-columns: 42px 1fr 24px;
  }
}

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

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

  .media-frame::after,
  .hero-panel {
    display: none;
  }
}
