:root {
  --cream: #f4f0e9;
  --paper: #faf8f4;
  --parchment: #e8e0d5;
  --charcoal: #242522;
  --ink: #2c2d2a;
  --ash: #66675f;
  --stone: #8d887e;
  --line: #cec5b9;
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.62;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  margin-bottom: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(3.7rem, 7vw, 7.5rem); line-height: .88; }
h2 { font-size: clamp(3.2rem, 5.4vw, 5.9rem); line-height: .95; }
h3 { font-size: clamp(1.65rem, 2.2vw, 2.25rem); line-height: 1.1; }
em { font-weight: 300; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.section-shell { width: min(100% - 9vw, 1360px); margin-inline: auto; }
.section { padding-block: clamp(80px, 8vw, 132px); }
.eyebrow {
  margin-bottom: 25px;
  color: var(--stone);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .18em;
  line-height: 1.35;
  text-transform: uppercase;
}
.eyebrow.light { color: rgba(255,255,255,.78); }
.section-heading { margin-bottom: clamp(52px, 6.4vw, 84px); }
.split-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.1fr .72fr;
  gap: 8vw;
}
.section-lead {
  max-width: 640px;
  margin: 0 0 6px;
  color: var(--ash);
  font-size: clamp(1.08rem, 1.45vw, 1.3rem);
  line-height: 1.6;
}
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--charcoal);
  background: transparent;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease;
}
.button:hover { background: var(--charcoal); color: var(--cream); }
.button-light { border-color: rgba(255,255,255,.72); color: white; }
.button-light:hover { background: white; color: var(--charcoal); }
.line-link {
  width: fit-content;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: .73rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.line-link.light { color: white; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: 104px;
  align-items: center;
  padding-inline: 4.5vw;
  color: white;
  grid-template-columns: 1fr auto 1fr;
}
.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
}
.brand-wordmark {
  display: inline-block;
  background: transparent;
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .8;
}
.brand-name { font-size: .8rem; font-weight: 500; letter-spacing: .3em; }
.main-nav { display: flex; align-items: center; gap: 33px; }
.main-nav a {
  position: relative;
  padding: 7px 0;
  font-size: 1.26rem;
  font-weight: 400;
  letter-spacing: .035em;
}
.main-nav a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width .25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.language-switch {
  display: flex;
  justify-self: end;
  gap: 12px;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
}
.language-switch button,
.language-switch a {
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255,255,255,.6);
  cursor: pointer;
}
.language-switch [aria-current="page"] { color: inherit; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  margin: 18px;
  overflow: hidden;
  color: white;
}
.hero > img { position: absolute; inset: 0; object-position: center 54%; }
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18,20,17,.61), rgba(18,20,17,.08) 68%),
    linear-gradient(0deg, rgba(18,20,17,.33), transparent 45%);
}
.hero-copy {
  position: absolute;
  z-index: 2;
  bottom: clamp(80px, 10vh, 120px);
  left: max(30px, 5.5vw);
  max-width: 1120px;
}
.hero h1 em { color: #e8dfd1; }
.hero-intro {
  max-width: 590px;
  margin: 32px 0 35px;
  color: rgba(255,255,255,.88);
  font-size: clamp(1.08rem, 1.45vw, 1.3rem);
  line-height: 1.6;
}
.hero-actions { display: flex; align-items: center; gap: 34px; }

.benefit-grid {
  display: grid;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}
.benefit-grid article {
  min-height: 340px;
  padding: 30px 3.2vw 38px 0;
  border-bottom: 1px solid var(--line);
}
.benefit-grid article:not(:nth-child(3n + 1)) {
  padding-left: 3.2vw;
  border-left: 1px solid var(--line);
}
.benefit-grid article > span, .timeline > li > span, .deliverables-grid article > span {
  color: var(--stone);
  font-size: .7rem;
  letter-spacing: .14em;
}
.benefit-grid h3 { margin: 52px 0 17px; }
.benefit-grid p { max-width: 380px; margin: 0; color: var(--ash); font-size: .96rem; }

.portfolio-section { background: var(--paper); }
.catalogue-heading { margin-bottom: clamp(44px, 5.6vw, 72px); }
.project-catalogue { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.project-card { display: block; min-width: 0; }
.project-card-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d9d1c5;
}
.project-card-media > img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 1.35s ease, transform 6s ease;
}
.project-card-media > img.is-visible { opacity: 1; transform: scale(1.045); }
.project-card-caption {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  padding-top: 17px;
}
.project-card-caption > span:first-child { display: flex; flex-direction: column; gap: 4px; }
.project-card-caption strong {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.1;
}
.project-card-caption small {
  color: var(--stone);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.project-arrow { font-size: 1.35rem; transition: transform .25s ease; }
.project-card-active:hover .project-arrow { transform: translate(3px, -3px); }
.slide-markers {
  position: absolute;
  z-index: 3;
  right: 17px;
  bottom: 17px;
  display: flex;
  gap: 6px;
}
.slide-markers i {
  display: block;
  width: 21px;
  height: 1px;
  background: rgba(255,255,255,.45);
  transition: background .4s;
}
.slide-markers i.is-active { background: white; }

.process-section { background: var(--parchment); }
.timeline {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid #bdb3a6;
  grid-template-columns: repeat(6, 1fr);
  list-style: none;
}
.timeline li { min-width: 0; padding: 25px 20px 12px 0; }
.timeline li + li { padding-left: 20px; border-left: 1px solid #bdb3a6; }
.timeline h3 { min-height: 92px; margin: 45px 0 17px; font-size: clamp(1.45rem, 1.8vw, 1.85rem); }
.timeline p { margin: 0; color: var(--ash); font-size: .9rem; line-height: 1.57; }

.deliverables-section { background: var(--charcoal); color: #f3efe7; }
.deliverables-heading .section-lead { color: #c8c8bf; }
.deliverables-grid {
  display: grid;
  border-top: 1px solid rgba(255,255,255,.18);
  grid-template-columns: repeat(2, 1fr);
}
.deliverables-grid article {
  min-height: 300px;
  padding: 30px 5vw 38px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.deliverables-grid article:nth-child(even) {
  padding-left: 5vw;
  border-left: 1px solid rgba(255,255,255,.18);
}
.deliverables-grid h3 { margin: 42px 0 16px; color: #f4f0e8; }
.deliverables-grid p { max-width: 520px; margin: 0; color: #c2c2ba; font-size: .95rem; }

.studio {
  display: grid;
  min-height: 760px;
  background: var(--paper);
  grid-template-columns: 1fr 1fr;
}
.studio-image { min-height: 680px; overflow: hidden; }
.studio-image img { object-position: center 35%; }
.studio-copy { align-self: center; padding: clamp(56px, 6.4vw, 104px); }
.studio-copy h2 { margin-bottom: 28px; }
.studio-bio { max-width: 590px; margin-bottom: 34px; }
.studio-bio p { margin: 0; color: var(--ash); font-size: 1rem; line-height: 1.68; }
.studio-bio p + p { margin-top: 15px; }

.opinions-section { padding-block: clamp(64px, 6.4vw, 96px); }
.opinions-inner {
  display: grid;
  grid-template-columns: minmax(190px, .58fr) minmax(0, 1.42fr);
  gap: clamp(44px, 8vw, 130px);
  align-items: start;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}
.opinions-inner .eyebrow, .opinions-inner h2, .opinions-inner p { margin: 0; }
.opinion-heading h2 { margin-top: 16px; }
.opinion-card {
  margin: 0;
  padding-left: clamp(28px, 4vw, 64px);
  border-left: 1px solid var(--line);
}
.opinion-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--stone);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.opinion-stars {
  color: #81715c;
  font-size: .85rem;
  letter-spacing: .18em;
  white-space: nowrap;
}
.opinion-card blockquote {
  max-width: 900px;
  margin: 28px 0 34px;
  color: var(--charcoal);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.25vw, 2.35rem);
  font-weight: 400;
  line-height: 1.22;
}
.opinion-card figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--charcoal);
}
.opinion-card figcaption > span:last-child {
  display: grid;
  gap: 4px;
}
.opinion-card figcaption strong {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.opinion-card figcaption small {
  color: var(--stone);
  font-size: .72rem;
}
.opinion-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--stone);
  font-family: var(--display);
  font-size: 1.05rem;
}

.faq-section { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 9vw; }
.faq-heading { align-self: start; }
.faq-scroll-note { max-width: 280px; margin-top: 32px; color: var(--stone); font-size: .8rem; }
.faq-scroll {
  position: relative;
  height: 650px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scrollbar-color: var(--stone) transparent;
  scrollbar-width: thin;
}
.faq-scroll:focus-visible { outline: 1px solid var(--stone); outline-offset: 5px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 0; }
.faq-list summary {
  display: grid;
  min-height: 68px;
  align-items: center;
  gap: 16px;
  padding: 14px 8px 14px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.55vw, 1.45rem);
  line-height: 1.23;
  grid-template-columns: 28px 1fr 18px;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span {
  color: var(--stone);
  font-family: var(--sans);
  font-size: .63rem;
  letter-spacing: .08em;
}
.faq-list summary i {
  color: var(--stone);
  font-family: var(--sans);
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  transition: transform .2s ease;
}
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details p {
  max-width: 690px;
  padding: 0 42px 24px 44px;
  margin: 0;
  color: var(--ash);
  font-size: .88rem;
  line-height: 1.58;
}

.contact-section { background: var(--cream); }
.contact-layout { display: grid; grid-template-columns: .82fr 1fr; gap: 10vw; }
.contact-intro { max-width: 590px; margin: 35px 0 25px; color: var(--ash); font-size: 1.05rem; }
.contact-email { display: inline-block; padding-bottom: 4px; border-bottom: 1px solid currentColor; }
.contact-form { display: flex; flex-direction: column; gap: 25px; }
#client-request-form { scroll-margin-top: 32px; }
.contact-form label {
  color: var(--stone);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  margin-top: 8px;
  padding: 11px 0 13px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: normal;
  text-transform: none;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-bottom-color: var(--charcoal); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.contact-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .73rem;
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
}
.consent input { width: 16px; margin: 3px 0 0; }
.contact-form .button { align-self: flex-start; }
.honeypot { position: absolute !important; left: -10000px !important; }
.form-status { margin: 0; color: #58664e; font-size: .86rem; line-height: 1.55; }
.form-status.is-error { color: #8d3b2f; }
.form-status a { text-decoration: underline; }
.contact-form .button:disabled { opacity: .55; cursor: wait; }

.footer { padding: 68px 4.5vw 34px; background: var(--charcoal); color: #efebe4; }
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 62px;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.footer-top nav { display: flex; gap: 34px; }
.footer-top nav a {
  position: relative;
  padding-bottom: 5px;
  font-size: .78rem;
  letter-spacing: .08em;
}
.footer-top nav a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width .25s;
}
.footer-top nav a:hover::after, .footer-top nav a.active::after { width: 100%; }
.footer-bottom {
  display: grid;
  padding-top: 28px;
  color: #bdbdb5;
  font-size: .68rem;
  letter-spacing: .06em;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
}
.footer-bottom p { margin: 0; }
.footer-bottom > div { display: flex; gap: 24px; text-transform: uppercase; }
.footer-bottom > p:last-child { text-align: right; }

.privacy-page { min-height: 100vh; background: var(--paper); }
.privacy-page .site-header { position: relative; color: var(--charcoal); }
.privacy-main { padding: clamp(70px, 9vw, 140px) 0 clamp(100px, 12vw, 180px); }
.privacy-layout { max-width: 980px; }
.privacy-layout > h1 {
  max-width: 850px;
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(3.8rem, 9vw, 8rem);
  font-weight: 300;
  line-height: .9;
}
.privacy-updated { margin: 0 0 80px; color: var(--stone); font-size: .78rem; }
.privacy-layout section { max-width: 760px; padding: 34px 0; border-top: 1px solid var(--line); }
.privacy-layout section h2 { margin: 0 0 16px; font-size: clamp(1.65rem, 3vw, 2.4rem); }
.privacy-layout section p { margin: 0; color: var(--ash); line-height: 1.75; }
.privacy-layout > .line-link { display: inline-block; margin-top: 44px; }

/* Project detail */
.project-page { background: var(--paper); }
.project-page .site-header {
  position: relative;
  color: var(--ink);
}
.project-page .language-switch button { color: var(--stone); }
.project-page .language-switch a { color: var(--stone); }
.project-page-main { padding-bottom: 18px; }
.project-detail-heading {
  display: grid;
  align-items: end;
  padding-block: clamp(56px, 6.4vw, 96px);
  grid-template-columns: 1fr auto;
  gap: 40px;
}
.project-detail-heading h1 { font-size: clamp(5rem, 12vw, 12rem); }
.project-detail-heading p { margin-bottom: 18px; color: var(--stone); font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; }
.project-hero { height: min(78vh, 850px); margin: 0 18px; overflow: hidden; }
.project-hero-portrait img { object-position: center 53%; }
.project-story { padding-block: clamp(68px, 7.2vw, 108px); border-bottom: 1px solid var(--line); }
.project-story-layout {
  display: grid;
  align-items: start;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(50px, 9vw, 150px);
}
.project-story-copy { max-width: 650px; padding-top: 7px; }
.project-story-copy p { margin: 0; color: var(--ash); font-size: clamp(1rem, 1.25vw, 1.16rem); line-height: 1.72; }
.project-story-copy p + p { margin-top: 24px; }
.project-group { padding-block: clamp(68px, 7.2vw, 108px); }
.project-group-head {
  display: grid;
  align-items: end;
  margin-bottom: 38px;
  grid-template-columns: 1fr auto;
  gap: 40px;
}
.project-group-head p { max-width: 360px; margin: 0; color: var(--ash); }
.project-photo-grid {
  display: grid;
  padding-inline: 18px;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.project-photo-grid--two,
.project-photo-grid--three,
.project-photo-grid--four,
.project-photo-grid--five { grid-template-columns: repeat(6, 1fr); }
.project-photo-grid--two > figure { grid-column: span 3; }
.project-photo-grid--three > figure { grid-column: span 2; }
.project-photo-grid--four > figure { grid-column: span 3; }
.project-photo-grid--five > figure:nth-child(-n + 3) { grid-column: span 2; }
.project-photo-grid--five > figure:nth-child(n + 4) { grid-column: span 3; }
.project-photo-grid figure { width: 100%; aspect-ratio: 4 / 3; margin: 0; overflow: hidden; }
.project-photo-grid figure img { transition: transform .6s ease; }
.project-photo-grid figure:hover img { transform: scale(1.02); }
.project-image-trigger {
  position: relative;
  border: 0;
  outline: 0;
  cursor: zoom-in;
}
.project-image-trigger::after {
  position: absolute;
  z-index: 2;
  inset: 9px;
  border: 1px solid rgba(255,255,255,0);
  content: "";
  pointer-events: none;
  transition: border-color .25s ease, background .25s ease;
}
.project-image-trigger:hover::after,
.project-image-trigger:focus-visible::after {
  border-color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.035);
}
.project-image-trigger:focus-visible { outline: 1px solid var(--stone); outline-offset: 3px; }
.image-lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  padding: 0;
  border: 0;
  margin: 0;
  overflow: auto;
  background: #171815;
  color: white;
}
.image-lightbox::backdrop { background: rgba(12,13,11,.94); }
.lightbox-stage {
  display: flex;
  min-width: 100%;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  padding: 74px 5vw 72px;
}
.lightbox-stage.is-actual {
  width: max-content;
  min-width: 100%;
  height: max-content;
  min-height: 100%;
  align-items: flex-start;
  justify-content: flex-start;
}
.lightbox-image {
  width: auto;
  max-width: 90vw;
  height: auto;
  max-height: calc(100dvh - 150px);
  object-fit: contain;
}
.lightbox-image.is-actual { width: auto; max-width: none; height: auto; max-height: none; }
.lightbox-close,
.lightbox-zoom,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  z-index: 4;
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(23,24,21,.78);
  color: white;
  cursor: pointer;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.lightbox-prev,
.lightbox-next {
  top: 50%;
  width: 50px;
  height: 64px;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0;
  transform: translateY(-50%);
}
.lightbox-prev { left: 22px; }
.lightbox-next { right: 22px; }
.lightbox-close { right: 22px; width: 42px; height: 42px; font-size: 1.25rem; line-height: 1; }
.lightbox-close,
.lightbox-zoom { top: 22px; }
.lightbox-zoom { right: 76px; height: 42px; padding-inline: 15px; }
.lightbox-counter {
  position: fixed;
  z-index: 3;
  top: 30px;
  left: 28px;
  color: rgba(255,255,255,.72);
  font-size: .7rem;
  letter-spacing: .12em;
}
.lightbox-caption {
  position: fixed;
  z-index: 3;
  right: 5vw;
  bottom: 21px;
  left: 5vw;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: .7rem;
  letter-spacing: .08em;
  text-align: center;
}
body.lightbox-open { overflow: hidden; }
.project-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .main-nav { gap: 20px; }
  .timeline {
    overflow-x: auto;
    grid-template-columns: repeat(6, minmax(225px, 1fr));
    scrollbar-width: thin;
  }
  .timeline li { padding-bottom: 30px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid article:not(:nth-child(3n + 1)) { padding-left: 0; border-left: 0; }
  .benefit-grid article:nth-child(even) { padding-left: 4vw; border-left: 1px solid var(--line); }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section-shell { width: min(100% - 40px, 1360px); }
  .section { padding-block: 74px; }
  .eyebrow { margin-bottom: 19px; font-size: .75rem; }
  h1 { font-size: clamp(3.1rem, 14vw, 4.6rem); }
  h2 { font-size: clamp(2.85rem, 12.5vw, 4.25rem); }
  .split-heading, .contact-layout, .faq-layout, .project-detail-heading, .project-story-layout {
    grid-template-columns: 1fr;
  }
  .split-heading, .contact-layout, .faq-layout { gap: 42px; }
  .section-heading { margin-bottom: 44px; }

  .site-header {
    height: 82px;
    padding-inline: 20px;
    grid-template-columns: 1fr auto auto;
    gap: 16px;
  }
  .brand-wordmark { font-size: 2.55rem; }
  .brand-name { display: none; }
  .language-switch { position: relative; z-index: 23; }
  .menu-toggle {
    position: relative;
    z-index: 23;
    display: flex;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: none;
    order: 3;
  }
  .menu-toggle > span:not(.sr-only) { display: block; width: 26px; height: 1px; background: currentColor; transition: transform .25s; }
  .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    z-index: 22;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 24vw 10vw;
    background: var(--cream);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s, visibility 0s linear .25s;
  }
  .main-nav.open { visibility: visible; opacity: 1; pointer-events: auto; transition-delay: 0s; }
  .main-nav a { font-family: var(--display); font-size: 2.35rem; letter-spacing: -.02em; }
  .site-header.menu-open { color: var(--ink); }

  .hero { min-height: 760px; margin: 10px; }
  .hero > img { object-position: 58% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(18,20,17,.68), rgba(18,20,17,.1) 76%); }
  .hero-copy { right: 20px; bottom: 56px; left: 20px; }
  .hero-intro { max-width: 420px; margin: 25px 0 29px; font-size: 1.04rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }

  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-grid article, .benefit-grid article:nth-child(even) {
    min-height: 0;
    padding: 27px 0 32px;
    border-left: 0;
  }
  .benefit-grid h3 { margin: 28px 0 12px; }

  .project-catalogue {
    overflow-x: auto;
    margin-right: -20px;
    padding-right: 20px;
    grid-template-columns: repeat(2, 82vw);
    gap: 12px;
    scroll-snap-type: x mandatory;
  }
  .project-card { scroll-snap-align: start; }
  .project-card-caption strong { font-size: 1.6rem; }

  .timeline {
    margin-right: -20px;
    grid-template-columns: repeat(6, 76vw);
    scroll-snap-type: x mandatory;
  }
  .timeline li { scroll-snap-align: start; }
  .timeline h3 { min-height: auto; margin-top: 38px; }

  .deliverables-grid { grid-template-columns: 1fr; }
  .deliverables-grid article, .deliverables-grid article:nth-child(even) {
    min-height: 0;
    padding: 28px 0 34px;
    border-left: 0;
  }
  .deliverables-grid h3 { margin-top: 29px; }

  .studio { min-height: auto; grid-template-columns: 1fr; }
  .studio-image { min-height: 120vw; }
  .studio-copy { padding: 66px 20px; }

  .opinions-inner { grid-template-columns: 1fr; gap: 32px; }
  .opinion-card { padding: 28px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .opinion-card blockquote { margin: 24px 0 28px; font-size: clamp(1.45rem, 7vw, 1.9rem); }
  .opinion-meta { justify-content: space-between; gap: 14px; }
  .faq-scroll { height: 520px; }
  .faq-scroll-note { margin-top: 24px; }
  .faq-list summary { min-height: 64px; font-size: 1.12rem; grid-template-columns: 25px 1fr 16px; }
  .faq-list details p { padding: 0 25px 22px 41px; font-size: .84rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-layout { gap: 65px; }

  .footer { padding: 52px 20px 30px; }
  .footer-top { align-items: flex-start; flex-direction: column; gap: 42px; padding-bottom: 42px; }
  .footer-top nav { flex-wrap: wrap; gap: 17px 24px; }
  .footer-bottom { grid-template-columns: 1fr; gap: 17px; }
  .footer-bottom > p:last-child { text-align: left; }
  .privacy-main { padding-top: 56px; }
  .privacy-updated { margin-bottom: 55px; }

  .project-page .site-header { color: var(--ink); }
  .project-detail-heading { padding-block: 50px; gap: 18px; }
  .project-detail-heading h1 { font-size: clamp(4.5rem, 20vw, 7rem); }
  .project-detail-heading p { margin: 0; }
  .project-hero { height: 70svh; margin: 0 10px; }
  .project-hero-portrait img { object-position: center; }
  .project-story { padding-block: 66px; }
  .project-story-layout { gap: 28px; }
  .project-group { padding-block: 66px; }
  .project-group-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 28px; }
  .project-photo-grid { padding-inline: 10px; grid-template-columns: 1fr; gap: 10px; }
  .project-photo-grid--two > figure,
  .project-photo-grid--three > figure,
  .project-photo-grid--four > figure,
  .project-photo-grid--five > figure { grid-column: auto; }
  .project-photo-grid figure { aspect-ratio: 4 / 3; }
  .lightbox-stage { padding: 64px 10px 62px; }
  .lightbox-image { max-width: calc(100vw - 20px); max-height: calc(100dvh - 126px); }
  .lightbox-close { top: 12px; right: 12px; }
  .lightbox-zoom { top: 12px; right: 64px; }
  .lightbox-counter { top: 24px; left: 16px; }
  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 62px;
    width: 48px;
    height: 48px;
    transform: none;
  }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-caption { right: 16px; bottom: 14px; left: 16px; }
}

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