:root {
  --ink: #302a28;
  --ink-deep: #25211f;
  --chocolate: #453b39;
  --bronze: #a77c56;
  --bronze-bright: #c49a72;
  --bronze-text: #78543a;
  --bronze-light-text: #d7b18d;
  --stone: #d9cbc0;
  --paper: #f3ece3;
  --paper-deep: #e7ddd1;
  --white: #fffaf4;
  --line-dark: rgba(48, 42, 40, 0.19);
  --line-light: rgba(255, 250, 244, 0.18);
  --shell: min(1280px, calc(100vw - 64px));
  --header-h: 88px;
  --display: "Sora", "Avenir Next", sans-serif;
  --body: "DM Sans", "Avenir Next", sans-serif;
  --sans: var(--body);
  --motion-duration-fast: 200ms;
  --motion-duration-standard: 420ms;
  --motion-duration-editorial: 760ms;
  --motion-ease-primary: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-ease-state: cubic-bezier(0.65, 0, 0.35, 1);
  --motion-ease-exit: cubic-bezier(0.4, 0, 1, 1);
  --motion-ease-text: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-ease-linear: linear;
  --motion-stagger-small: 60ms;
  --motion-stagger-large: 100ms;
  --ease: var(--motion-ease-primary);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: multiply;
}

body.dialog-open,
body.nav-open {
  overflow: hidden;
}

body.nav-open .site-header.is-scrolled {
  backdrop-filter: none;
}

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

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

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

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

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 1.02;
}

h3 {
  line-height: 1.12;
}

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

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

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

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

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

.section {
  position: relative;
  padding-block: clamp(5.5rem, 9vw, 9.5rem);
}

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

.section--dark {
  background: var(--chocolate);
  color: var(--white);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.35rem;
  color: var(--bronze-text);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: var(--bronze-light-text);
}

.eyebrow--light span {
  width: 3px;
  height: 3px;
  background: currentColor;
  border-radius: 50%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-brief-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  color: rgba(255, 250, 244, 0.58);
  font-size: 0.69rem;
  letter-spacing: 0.035em;
}

.hero-brief-note::before {
  width: 22px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--bronze-bright);
  content: "";
}

.hero-brief-note span {
  color: rgba(255, 250, 244, 0.82);
  white-space: nowrap;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 260ms var(--ease), background-color 260ms var(--ease), border-color 260ms var(--ease), color 260ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(1px) scale(0.985);
}

.button--gold {
  background: var(--bronze-bright);
  border-color: var(--bronze-bright);
  color: var(--ink-deep);
}

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

.button--line {
  background: transparent;
  border-color: rgba(255, 250, 244, 0.56);
  color: var(--white);
}

.button--line:hover {
  border-color: var(--white);
  background: rgba(255, 250, 244, 0.08);
}

.button--ink {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.button--ink:hover {
  background: var(--bronze);
  border-color: var(--bronze);
  color: var(--ink-deep);
}

.text-link,
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 220ms var(--ease), gap 220ms var(--ease);
}

.text-link:hover,
.text-button:hover {
  gap: 16px;
  color: var(--bronze);
}

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

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: var(--header-h);
  color: var(--white);
  transition:
    background-color var(--motion-duration-standard) var(--motion-ease-state),
    border-color var(--motion-duration-standard) var(--motion-ease-state),
    height var(--motion-duration-standard) var(--motion-ease-state);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--bronze-bright);
  content: "";
  transform: scaleX(var(--page-progress, 0));
  transform-origin: left center;
  transition: transform 80ms linear;
}

.site-header.is-scrolled {
  height: 76px;
  border-bottom: 1px solid rgba(255, 250, 244, 0.09);
  background: rgba(42, 36, 34, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1440px, calc(100vw - 48px));
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  margin-inline: auto;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
}

.site-header .brand-lockup {
  position: relative;
  z-index: 2;
}

.brand-mark {
  width: 45px;
  height: 38px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--bronze-bright);
  stroke-width: 5.4;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.site-header .brand-mark path {
  stroke-dasharray: 330;
  stroke-dashoffset: 330;
  animation: mark-draw 1.45s 220ms var(--ease) forwards;
}

@keyframes mark-draw {
  to { stroke-dashoffset: 0; }
}

.brand-type {
  display: grid;
  gap: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.brand-type strong {
  font-family: var(--display);
  font-size: 0.98rem;
  letter-spacing: 0.18em;
}

.brand-type span {
  color: var(--stone);
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.34em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
  color: rgba(255, 250, 244, 0.76);
  font-family: var(--display);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 220ms var(--ease);
}

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

.site-nav a:hover,
.site-nav a[aria-current="true"] {
  color: var(--white);
}

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

[data-brief-origin],
[data-brief-nav] {
  position: relative;
}

[data-brief-origin] > [data-enquiry-label],
[data-brief-nav] > [data-enquiry-label] {
  position: relative;
  z-index: 1;
}

.brief-handoff-marker {
  position: absolute;
  z-index: 0;
  right: 4px;
  bottom: 3px;
  left: 4px;
  height: 1px;
  display: block;
  background: rgba(37, 33, 31, 0.42);
  pointer-events: none;
  transform-origin: center;
  will-change: transform, opacity;
}

[data-brief-nav] > .brief-handoff-marker {
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--bronze-bright);
}

.site-header[data-brief-state="nav"] [data-brief-nav] {
  color: var(--bronze-bright);
}

.header-call {
  justify-self: end;
  display: grid;
  gap: 1px;
  padding-left: 22px;
  border-left: 1px solid var(--line-light);
  text-align: right;
}

.header-call span {
  color: var(--bronze-bright);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-call strong {
  font-family: var(--display);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

.nav-toggle {
  display: none;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 72px) 0 132px;
  background: var(--ink-deep);
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  overflow: hidden;
  transform: scale(1.018);
  animation: hero-camera 16s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-media img {
  object-fit: cover;
  object-position: center center;
  transform: scale(1.045) translate3d(var(--hero-x, 0px), calc(var(--hero-y, 0px) + var(--hero-scroll, 0px)), 0);
  transition: transform 160ms linear;
  will-change: transform;
}

@keyframes hero-camera {
  from { transform: scale(1.018) translate3d(0, 0, 0); }
  to { transform: scale(1.045) translate3d(-0.55%, -0.35%, 0); }
}

.hero-wash {
  background:
    linear-gradient(90deg, rgba(37, 33, 31, 0.97) 0%, rgba(37, 33, 31, 0.9) 32%, rgba(37, 33, 31, 0.46) 53%, rgba(37, 33, 31, 0.08) 76%),
    linear-gradient(0deg, rgba(37, 33, 31, 0.58) 0%, transparent 42%),
    linear-gradient(180deg, rgba(37, 33, 31, 0.48) 0%, transparent 34%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
}

.hero-copy {
  grid-column: 1 / span 7;
  max-width: 760px;
  animation: hero-copy-in 1.05s 120ms var(--ease) both;
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translate3d(0, 24px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 2rem;
  font-size: clamp(3.7rem, 7.3vw, 7.65rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.hero h1 em {
  color: var(--bronze-bright);
  font-style: normal;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 2rem;
  color: rgba(255, 250, 244, 0.78);
  font-size: clamp(1.02rem, 1.55vw, 1.25rem);
  line-height: 1.65;
}

.hero-caption {
  grid-column: 10 / -1;
  align-self: end;
  justify-self: end;
  max-width: 220px;
  margin: 0 0 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 250, 244, 0.34);
  color: rgba(255, 250, 244, 0.68);
  font-size: 0.69rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-caption span {
  display: block;
  margin-bottom: 4px;
  color: var(--bronze-bright);
  font-weight: 700;
}

.hero-rail {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  border-top: 1px solid var(--line-light);
  background: rgba(37, 33, 31, 0.42);
  backdrop-filter: blur(10px);
}

.hero-rail__inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.hero-rail p {
  margin: 0;
  padding: 8px 28px;
  border-left: 1px solid var(--line-light);
  color: rgba(255, 250, 244, 0.78);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-rail p:last-child {
  border-right: 1px solid var(--line-light);
}

.hero-rail p span {
  margin-right: 13px;
  color: var(--bronze-bright);
}

.blueprint {
  pointer-events: none;
}

/* Standard */

.standard {
  border-bottom: 1px solid var(--line-dark);
}

.standard-grid {
  display: grid;
  grid-template-columns: 1fr 4.5fr 3.5fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.section-index {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  color: var(--bronze);
  font-family: var(--display);
}

.section-index span {
  font-size: 0.7rem;
  font-weight: 700;
}

.section-index i {
  height: 1px;
  background: currentColor;
}

.section-index small {
  grid-column: 1 / -1;
  writing-mode: vertical-rl;
  margin-top: 14px;
  color: var(--ink);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.standard-copy h2 {
  font-size: clamp(2.8rem, 5.5vw, 6.2rem);
}

.standard-body {
  padding-top: 52px;
}

.standard-body > p:first-child {
  margin-bottom: 2.4rem;
  color: rgba(48, 42, 40, 0.74);
  font-size: 1.08rem;
  line-height: 1.85;
}

.pull-line {
  margin: 0;
  padding: 20px 0 0 24px;
  border-top: 1px solid var(--line-dark);
  border-left: 3px solid var(--bronze);
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

/* Scroll-led project journey */

.build-journey {
  --journey-progress: 0;
  --journey-draw: 0;
  position: relative;
  height: 430svh;
  min-height: 2600px;
  background: var(--ink-deep);
  color: var(--white);
}

.journey-anchor {
  position: absolute;
  top: calc(var(--header-h) + 20px);
  width: 1px;
  height: 1px;
  pointer-events: none;
}

@media (max-width: 780px) {
  .journey-anchor {
    top: 88px;
  }

  html:not(.nav-enhanced) .journey-anchor {
    top: 104px;
  }
}

.journey-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 650px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 18%, rgba(196, 154, 114, 0.1), transparent 29%),
    var(--ink-deep);
}

.journey-sticky::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 250, 244, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 244, 0.12) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, transparent 0, #000 36%, #000 100%);
}

.journey-progress {
  position: absolute;
  top: var(--header-h);
  right: 0;
  left: 0;
  z-index: 4;
  height: 1px;
  background: rgba(255, 250, 244, 0.13);
}

.journey-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--bronze-bright);
  transform: scaleX(var(--journey-progress));
  transform-origin: left center;
}

.journey-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.5fr);
  gap: clamp(36px, 5vw, 86px);
  height: 100%;
  padding-top: calc(var(--header-h) + clamp(32px, 6vh, 68px));
  padding-bottom: clamp(34px, 6vh, 70px);
}

.journey-copy {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
}

.journey-copy > h2 {
  max-width: 8.5ch;
  margin-bottom: 16px;
  font-size: clamp(2.65rem, 4.6vw, 5.45rem);
}

.journey-context {
  max-width: 36ch;
  margin: 0 0 clamp(22px, 4vh, 40px);
  color: rgba(255, 250, 244, 0.5);
  font-size: 0.76rem;
  line-height: 1.65;
}

.journey-steps {
  position: relative;
  height: 180px;
  flex-shrink: 0;
  margin-top: auto;
}

.journey-step {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 24px, 0);
  transition: opacity 360ms ease, transform 650ms var(--ease);
}

.journey-step.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.journey-step small {
  margin-bottom: 12px;
  color: var(--bronze-bright);
  font-family: var(--display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.journey-step h3 {
  max-width: 15ch;
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 600;
}

.journey-step p {
  max-width: 39ch;
  margin: 0;
  color: rgba(255, 250, 244, 0.66);
  font-size: 0.93rem;
  line-height: 1.7;
}

.journey-step .text-button {
  margin-top: 22px;
}

.text-button--light {
  color: var(--white);
}

.journey-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 22px;
}

.journey-gallery-trigger {
  margin-top: 18px;
  color: var(--white);
}

.journey-gallery-trigger:focus-visible {
  color: var(--bronze-bright);
  outline-color: var(--white);
  outline-offset: 6px;
}

.journey-index span {
  position: relative;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 250, 244, 0.18);
  color: rgba(255, 250, 244, 0.34);
  font-family: var(--display);
  font-size: 0.59rem;
  font-weight: 700;
  transition: border-color 260ms ease, color 260ms ease;
}

.journey-index__marker {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  display: block;
  height: 2px;
  background: var(--bronze-bright);
  box-shadow: 0 0 18px rgba(196, 154, 114, 0.42);
}

.build-journey[data-journey-stage="0"] .journey-index span:nth-child(1),
.build-journey[data-journey-stage="1"] .journey-index span:nth-child(2),
.build-journey[data-journey-stage="2"] .journey-index span:nth-child(3),
.build-journey[data-journey-stage="3"] .journey-index span:nth-child(4) {
  border-color: var(--bronze-bright);
  color: var(--white);
}

.journey-visual {
  position: relative;
  min-width: 0;
  min-height: 0;
  width: 100%;
  aspect-ratio: 3 / 2;
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 244, 0.2);
  background: #171412;
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.34);
}

.journey-visual::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border: 12px solid rgba(37, 33, 31, 0.18);
  content: "";
}

.journey-layer {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  transform: scale(1.035);
  transition: transform 1.1s var(--ease);
  will-change: opacity, transform;
}

.journey-layer:first-child,
.journey-layer.is-active {
  transform: scale(1);
}

.journey-layer:first-child {
  opacity: 1;
}

.journey-layer > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.journey-layer--existing > img {
  object-position: 50% 43%;
  filter: saturate(0.72) contrast(0.94) brightness(0.86);
}

.journey-layer--drawing-surface {
  background: #f5f2eb;
}

.journey-layer--study-surface {
  background: #e7ded1;
}

.journey-layer--existing::after,
.journey-layer--finished::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(115deg, rgba(37, 33, 31, 0.22), transparent 52%, rgba(37, 33, 31, 0.08));
}

.gsap-ready .site-header .brand-mark path,
.gsap-ready .hero-copy,
.gsap-ready .hero-media {
  animation: none;
}

.gsap-ready .build-journey {
  height: auto;
  min-height: 0;
}

.gsap-ready .journey-sticky {
  position: relative;
  top: auto;
}

.gsap-ready .journey-layer {
  transition: none;
  will-change: auto;
}

.gsap-ready .journey-step {
  transition: none;
}

/* Journey modes are selected by motion.js through gsap.matchMedia(). */

.gsap-ready .build-journey[data-journey-mode="native"] {
  height: 360svh;
  min-height: 0;
}

.gsap-ready .build-journey[data-journey-mode="native"] .journey-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 0;
  overflow: hidden;
}

.gsap-ready .build-journey[data-journey-mode="native"] .journey-layout {
  height: 100%;
}

.gsap-ready .build-journey[data-journey-mode="compact"],
.gsap-ready .build-journey[data-journey-mode="reduced"] {
  height: auto;
  min-height: 0;
}

.gsap-ready .build-journey[data-journey-mode="compact"] .journey-sticky,
.gsap-ready .build-journey[data-journey-mode="reduced"] .journey-sticky {
  position: relative;
  top: auto;
  height: auto;
  min-height: 0;
  overflow: visible;
}

.gsap-ready .build-journey[data-journey-mode="compact"] .journey-layout,
.gsap-ready .build-journey[data-journey-mode="reduced"] .journey-layout {
  height: auto;
  min-height: 0;
  align-items: start;
  padding-top: calc(var(--header-h) + 34px);
  padding-bottom: 48px;
}

.gsap-ready .build-journey[data-journey-mode="compact"] .journey-copy,
.gsap-ready .build-journey[data-journey-mode="reduced"] .journey-copy {
  min-height: 0;
}

.gsap-ready .build-journey[data-journey-mode="compact"] .journey-copy > h2,
.gsap-ready .build-journey[data-journey-mode="reduced"] .journey-copy > h2 {
  max-width: 11ch;
  margin-bottom: 10px;
  font-size: clamp(2.15rem, 4.2vw, 4.35rem);
}

.gsap-ready .build-journey[data-journey-mode="compact"] .journey-context,
.gsap-ready .build-journey[data-journey-mode="reduced"] .journey-context {
  margin-bottom: 18px;
}

.gsap-ready .build-journey[data-journey-mode="compact"] .journey-steps,
.gsap-ready .build-journey[data-journey-mode="reduced"] .journey-steps {
  position: static;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin-top: 0;
}

.gsap-ready .build-journey[data-journey-mode="compact"] .journey-step,
.gsap-ready .build-journey[data-journey-mode="compact"] .journey-step.is-active,
.gsap-ready .build-journey[data-journey-mode="reduced"] .journey-step,
.gsap-ready .build-journey[data-journey-mode="reduced"] .journey-step.is-active {
  position: relative;
  inset: auto;
  min-width: 0;
  display: block;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 250, 244, 0.18);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.gsap-ready .build-journey[data-journey-mode="compact"] .journey-step small,
.gsap-ready .build-journey[data-journey-mode="reduced"] .journey-step small {
  margin-bottom: 6px;
  font-size: 0.56rem;
}

.gsap-ready .build-journey[data-journey-mode="compact"] .journey-step h3,
.gsap-ready .build-journey[data-journey-mode="reduced"] .journey-step h3 {
  margin-bottom: 5px;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.gsap-ready .build-journey[data-journey-mode="compact"] .journey-step p,
.gsap-ready .build-journey[data-journey-mode="reduced"] .journey-step p {
  font-size: 0.76rem;
  line-height: 1.45;
}

.gsap-ready .build-journey[data-journey-mode="compact"] .journey-step .text-button,
.gsap-ready .build-journey[data-journey-mode="reduced"] .journey-step .text-button {
  margin-top: 10px;
}

.gsap-ready .build-journey[data-journey-mode="compact"] .journey-index,
.gsap-ready .build-journey[data-journey-mode="reduced"] .journey-index {
  display: none;
}

.gsap-ready .build-journey[data-journey-mode="compact"] .journey-visual,
.gsap-ready .build-journey[data-journey-mode="reduced"] .journey-visual {
  width: 100%;
  height: clamp(260px, 42vw, 520px);
  min-height: 0;
  align-self: start;
}

/* Keep every animated stage inside its own reserved zone on short desktop
   viewports. The active article is absolute, so its parent must never flex
   down beneath the article's content height. */

@media (min-width: 781px) and (max-height: 760px) {
  .gsap-ready .build-journey:is([data-journey-mode="pinned"], [data-journey-mode="native"]) .journey-layout {
    padding-top: calc(var(--header-h) + clamp(18px, 3vh, 24px));
    padding-bottom: 24px;
  }

  .gsap-ready .build-journey:is([data-journey-mode="pinned"], [data-journey-mode="native"]) .journey-copy > h2 {
    max-width: 100%;
    margin-bottom: 10px;
    font-size: clamp(2.65rem, min(4vw, 7vh), 3.15rem);
  }

  .gsap-ready .build-journey:is([data-journey-mode="pinned"], [data-journey-mode="native"]) .journey-context {
    margin-bottom: 10px;
    font-size: 0.72rem;
    line-height: 1.5;
  }

  .gsap-ready .build-journey:is([data-journey-mode="pinned"], [data-journey-mode="native"]) .journey-steps {
    height: 136px;
  }

  .gsap-ready .build-journey:is([data-journey-mode="pinned"], [data-journey-mode="native"]) .journey-step small {
    margin-bottom: 6px;
    font-size: 0.56rem;
  }

  .gsap-ready .build-journey:is([data-journey-mode="pinned"], [data-journey-mode="native"]) .journey-step h3 {
    margin-bottom: 6px;
    font-size: 1.25rem;
  }

  .gsap-ready .build-journey:is([data-journey-mode="pinned"], [data-journey-mode="native"]) .journey-step p {
    font-size: 0.78rem;
    line-height: 1.48;
  }

  .gsap-ready .build-journey:is([data-journey-mode="pinned"], [data-journey-mode="native"]) .journey-index {
    margin-top: 8px;
  }

  .gsap-ready .build-journey:is([data-journey-mode="pinned"], [data-journey-mode="native"]) .journey-gallery-trigger {
    margin-top: 10px;
  }
}

.journey-layer--finished > img {
  object-position: center;
}

.journey-proof-reference {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 100%;
  aspect-ratio: 3 / 2;
  margin: 0;
  isolation: isolate;
  opacity: 0;
  visibility: hidden;
  clip-path: inset(0 100% 0 0);
  pointer-events: none;
  transform-origin: 50% 50%;
}

.journey-proof-reference__paper {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(68, 59, 54, 0.24);
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 13, 12, 0.24);
  isolation: isolate;
}

.journey-proof-reference__cad,
.journey-proof-reference__wash,
.journey-proof-reference__plot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
}

.journey-proof-reference__cad {
  z-index: 0;
}

.journey-proof-reference__wash {
  z-index: 1;
  opacity: 0;
  filter: saturate(0.68);
  mix-blend-mode: color;
}

.journey-proof-reference__plot {
  z-index: 2;
  overflow: visible;
  fill: none;
  stroke: rgba(136, 94, 65, 0.9);
  stroke-width: 1.25;
  stroke-linecap: square;
  stroke-linejoin: miter;
  opacity: 0;
  pointer-events: none;
}

.journey-proof-reference__plot path {
  vector-effect: non-scaling-stroke;
}

.journey-proof-reference__label {
  position: absolute;
  z-index: 3;
  bottom: 4.5%;
  left: 4.5%;
  display: grid;
  gap: 3px;
  max-width: 230px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 250, 244, 0.34);
  background: rgba(37, 33, 31, 0.9);
  color: var(--white);
  box-shadow: 0 14px 36px rgba(15, 13, 12, 0.22);
  opacity: 0;
  transform-origin: left bottom;
}

.journey-proof-reference__label small {
  color: var(--bronze-bright);
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.journey-proof-reference__label strong {
  max-width: 22ch;
  font-size: 0.72rem;
  line-height: 1.3;
}

.journey-layer--finished > img {
  object-position: 53% center;
}

.journey-visual-label {
  position: absolute;
  right: 26px;
  bottom: 24px;
  z-index: 5;
  width: min(310px, calc(100% - 52px));
  min-height: 37px;
  padding: 10px 13px;
  border-left: 2px solid var(--bronze-bright);
  background: rgba(37, 33, 31, 0.76);
  backdrop-filter: blur(10px);
}

.journey-visual-label span {
  display: none;
  color: var(--white);
  font-family: var(--display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.build-journey[data-journey-stage="0"] [data-journey-label="0"],
.build-journey[data-journey-stage="1"] [data-journey-label="1"],
.build-journey[data-journey-stage="2"] [data-journey-label="2"],
.build-journey[data-journey-stage="3"] [data-journey-label="3"] {
  display: block;
}

.build-journey[data-journey-stage="1"] .journey-visual-label {
  display: none;
}

.journey-corner {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--display);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.journey-corner i {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--bronze-bright);
}

.build-journey[data-journey-stage="1"] .journey-corner,
.build-journey[data-journey-stage="2"] .journey-corner {
  opacity: 0;
}

/* Work */

.work {
  overflow: hidden;
}

.section-heading {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: clamp(40px, 8vw, 130px);
}

.section-heading--split > p {
  max-width: 54ch;
  margin-bottom: 6px;
  color: rgba(255, 250, 244, 0.66);
}

.section-heading--ink > p {
  color: rgba(48, 42, 40, 0.7);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.work-disclosure {
  max-width: 72ch;
  margin: 22px 0 0 auto;
  color: rgba(255, 250, 244, 0.72);
  font-size: 0.72rem;
  line-height: 1.6;
  text-align: right;
}

.project-archive-control {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.project-archive-control[hidden] {
  display: none;
}

.project-archive-toggle {
  color: var(--white);
}

.project-archive-toggle:focus-visible {
  color: var(--bronze-bright);
  outline-color: var(--white);
  outline-offset: 6px;
}

.project-card {
  position: relative;
  min-height: clamp(360px, 40vw, 560px);
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 1px;
  background: var(--ink-deep);
  text-align: left;
  cursor: pointer;
  isolation: isolate;
}

.project-card--seven {
  grid-column: span 7;
}

.project-card--five {
  grid-column: span 5;
}

.project-card--four {
  grid-column: span 4;
}

.project-card--eight {
  grid-column: span 8;
}

.project-card img,
.project-card__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.project-card img {
  object-fit: cover;
  transition: transform 850ms var(--ease), filter 500ms var(--ease);
}

.project-card--garden-landscaping img {
  object-position: 50% 30%;
}

.project-card__veil {
  z-index: 1;
  background: linear-gradient(180deg, transparent 36%, rgba(37, 33, 31, 0.88) 100%);
  transition: background-color 300ms var(--ease);
}

.project-card__meta {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 8px 22px;
  padding: clamp(22px, 3vw, 38px);
}

.project-card__meta small,
.project-card__meta i {
  font-size: 0.63rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card__meta small {
  grid-column: 1 / -1;
  color: var(--bronze-bright);
}

.project-card__meta strong {
  max-width: 17ch;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.7vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.project-card__meta i {
  color: rgba(255, 250, 244, 0.68);
}

.project-card:hover img {
  transform: scale(1.035);
  filter: saturate(0.9) contrast(1.04);
}

.project-card:hover .project-card__veil {
  background-color: rgba(167, 124, 86, 0.08);
}

.project-card:active {
  transform: scale(0.993);
}

/* Services */

.services-grid {
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: clamp(50px, 9vw, 150px);
  align-items: start;
}

.services-intro {
  position: sticky;
  top: 120px;
}

.services-intro h2 {
  margin-bottom: 1.8rem;
  font-size: clamp(2.5rem, 4.4vw, 4.9rem);
}

.services-intro > p:not(.eyebrow) {
  max-width: 49ch;
  margin-bottom: 2rem;
  color: rgba(48, 42, 40, 0.7);
}

.services-detail-link {
  display: inline-block;
}

.services-detail-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 18px;
}

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

.service-item {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 34px 28px 38px 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--ink);
  transition: background-color 260ms var(--ease);
}

.gsap-ready .service-item {
  border-bottom-color: transparent;
}

.gsap-ready .service-item::before {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--line-dark);
  content: "";
  transform: scaleX(var(--service-divider-scale, 1));
  transform-origin: left center;
}

.service-item::after {
  position: absolute;
  top: 50%;
  right: 3px;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--bronze);
  border-right: 1px solid var(--bronze);
  content: "";
  opacity: 0.38;
  transform: translate(-6px, -50%) rotate(45deg);
  transition: opacity 260ms var(--ease), transform 260ms var(--ease);
}

.service-item:hover,
.service-item:focus-visible,
.service-item.is-active {
  background: linear-gradient(90deg, rgba(167, 124, 86, 0.055), transparent 72%);
}

.service-item:hover::after,
.service-item:focus-visible::after,
.service-item.is-active::after {
  opacity: 1;
  transform: translate(0, -50%) rotate(45deg);
}

.service-item__index {
  position: relative;
  padding-top: 7px;
  color: var(--bronze-text);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
}

.service-item__index b {
  font: inherit;
}

.service-marker {
  position: absolute;
  top: 31px;
  left: 0;
  width: 36px;
  height: 1px;
  background: var(--bronze);
  pointer-events: none;
}

.service-marker::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 1px;
  height: 11px;
  background: inherit;
  content: "";
}

.service-list h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  font-weight: 600;
  transition: color 260ms var(--ease), transform 360ms var(--ease);
}

.service-item.is-active h3 {
  color: var(--bronze);
  transform: translateX(6px);
}

.service-list p {
  max-width: 58ch;
  margin: 0;
  color: rgba(48, 42, 40, 0.68);
}

/* Project drawings and design previews */

.design-studio {
  overflow: hidden;
  border-bottom: 1px solid var(--line-light);
  background: var(--chocolate);
}

.design-studio__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
}

.design-studio__copy h2 {
  margin-bottom: 1.7rem;
  font-size: clamp(2.6rem, 4.8vw, 5.4rem);
}

.design-studio__copy > p:not(.eyebrow):not(.design-note) {
  color: rgba(255, 250, 244, 0.72);
  font-size: 1.02rem;
}

.design-deliverables {
  margin: 2.1rem 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.design-deliverables li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 250, 244, 0.82);
  font-size: 0.83rem;
}

.design-deliverables span {
  color: var(--bronze-light-text);
  font-family: var(--display);
  font-size: 0.64rem;
  font-weight: 700;
}

.design-note {
  margin-bottom: 2rem;
  color: rgba(255, 250, 244, 0.66);
  font-size: 0.72rem;
  line-height: 1.65;
}

.design-visual {
  position: relative;
  margin: 30px 0 58px;
}

.design-visual picture {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink-deep);
}

.design-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.03);
}

.design-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(37, 33, 31, 0.44), transparent 48%);
}

.design-visual__grid {
  position: absolute;
  inset: 6%;
  z-index: 1;
  border: 1px solid rgba(255, 250, 244, 0.26);
  pointer-events: none;
}

.design-visual__grid::before,
.design-visual__grid::after,
.design-visual__grid i,
.design-visual__grid b {
  position: absolute;
  content: "";
  background: rgba(255, 250, 244, 0.24);
}

.design-visual__grid::before {
  top: 50%;
  right: -3%;
  left: -3%;
  height: 1px;
}

.design-visual__grid::after {
  top: -5%;
  bottom: -5%;
  left: 58%;
  width: 1px;
}

.design-visual__grid i {
  top: 0;
  bottom: 0;
  left: 20%;
  width: 1px;
}

.design-visual__grid b {
  top: 18%;
  right: 0;
  left: 0;
  height: 1px;
}

.design-visual__grid span {
  position: absolute;
  top: 3%;
  left: 61%;
  color: rgba(255, 250, 244, 0.62);
  font-family: var(--display);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.design-visual__label {
  position: absolute;
  right: 22px;
  bottom: 18px;
  z-index: 2;
  max-width: 210px;
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 250, 244, 0.58);
  color: rgba(255, 250, 244, 0.72);
  font-size: 0.61rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-transform: uppercase;
}

.design-visual__label span {
  display: block;
  color: var(--bronze-bright);
  font-weight: 700;
}

.design-sheet {
  position: absolute;
  bottom: -58px;
  left: -54px;
  z-index: 3;
  width: 290px;
  padding: 22px 24px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 25px 60px rgba(18, 15, 14, 0.28);
}

.design-sheet strong {
  display: block;
  margin-bottom: 13px;
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.design-sheet p {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 8px;
  margin: 0;
  padding: 7px 0;
  border-top: 1px solid var(--line-dark);
  font-size: 0.72rem;
}

.design-sheet p span {
  color: var(--bronze);
  font-family: var(--display);
  font-size: 0.6rem;
  font-weight: 700;
}

/* About */

.about {
  overflow: hidden;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
}

.about-images {
  position: relative;
  min-height: 650px;
  padding: 0 80px 100px 0;
}

.about-image {
  margin: 0;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image__crop {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-image--main {
  width: 88%;
  height: 570px;
}

.about-image--small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 43%;
  height: 300px;
  border: 10px solid var(--ink-deep);
}

.about-image figcaption {
  margin-top: 10px;
  color: rgba(255, 250, 244, 0.56);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-image--small figcaption {
  margin-top: 7px;
}

.about-copy h2 {
  margin-bottom: 1.8rem;
  font-size: clamp(2.5rem, 4.5vw, 5rem);
}

.about-copy > p:not(.eyebrow) {
  color: rgba(255, 250, 244, 0.7);
}

.about-principles {
  margin: 2.2rem 0;
  border-top: 1px solid var(--line-light);
}

.about-principles p {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 250, 244, 0.72);
  font-size: 0.86rem;
}

.about-principles span {
  color: var(--bronze-bright);
  font-family: var(--display);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blueprint--about {
  position: absolute;
  right: -8vw;
  bottom: -18vw;
  width: 52vw;
  height: 52vw;
  border: 1px solid rgba(255, 250, 244, 0.08);
  border-radius: 50%;
}

.blueprint--about::before,
.blueprint--about::after {
  position: absolute;
  content: "";
  background: rgba(255, 250, 244, 0.07);
}

.blueprint--about::before {
  top: 50%;
  left: -10%;
  width: 120%;
  height: 1px;
}

.blueprint--about::after {
  top: -10%;
  left: 50%;
  width: 1px;
  height: 120%;
}

.blueprint--about span {
  position: absolute;
  top: 48%;
  left: 50%;
  color: rgba(255, 250, 244, 0.36);
  font-family: var(--display);
  font-size: 10vw;
  font-weight: 700;
  transform: translate(-50%, -50%);
}

/* Process */

.process > .shell {
  position: relative;
}

.process-line {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.process-motion-line {
  position: absolute;
  z-index: 0;
  display: block;
  overflow: visible;
  pointer-events: none;
}

.process-motion-line__path {
  fill: none;
  stroke: var(--bronze);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
}

.process-line li {
  min-height: 290px;
  padding: 30px clamp(20px, 3vw, 42px) 10px 0;
  border-right: 1px solid var(--line-dark);
}

.process-line li:not(:first-child) {
  padding-left: clamp(20px, 3vw, 42px);
}

.process-line li:last-child {
  padding-right: 0;
  border-right: 0;
}

.process-line li > span {
  position: relative;
  z-index: 2;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 70px;
  border: 1px solid var(--bronze);
  background: var(--paper);
  border-radius: 50%;
  color: var(--bronze-text);
  font-family: var(--display);
  font-size: 0.63rem;
  font-weight: 700;
}

.process-line h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 600;
}

.process-line p {
  margin: 0;
  color: rgba(48, 42, 40, 0.68);
  font-size: 0.9rem;
}

/* Coverage */

.coverage {
  overflow: hidden;
  padding: 26px 0;
  border-block: 1px solid rgba(255, 250, 244, 0.11);
  background: var(--bronze);
  color: #201c1a;
}

.coverage-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 64px);
  white-space: nowrap;
  font-family: var(--display);
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coverage-track i {
  width: 5px;
  height: 5px;
  background: #201c1a;
  transform: rotate(45deg);
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(60px, 9vw, 140px);
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 1.7rem;
  font-size: clamp(2.8rem, 5vw, 5.7rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 52ch;
  color: rgba(255, 250, 244, 0.68);
}

.contact-details {
  margin-top: 3rem;
  border-top: 1px solid var(--line-light);
}

.contact-details a,
.contact-details > p {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-light);
}

.contact-details a:hover strong {
  color: var(--bronze-bright);
}

.contact-details span {
  color: var(--bronze-light-text);
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 220ms var(--ease);
}

.form-panel {
  padding: clamp(28px, 4.3vw, 58px);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(18, 15, 14, 0.28);
}

.form-panel__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 2rem;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-dark);
}

.form-panel__head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.form-panel__head p {
  margin: 3px 0 0;
  color: rgba(48, 42, 40, 0.7);
  font-size: 0.75rem;
}

.form-panel__head small {
  max-width: 22ch;
  color: rgba(48, 42, 40, 0.7);
  font-size: 0.75rem;
  text-align: right;
}

.form-reference {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  margin: 0 0 24px;
  padding: 14px 0;
  border-block: 1px solid var(--bronze);
  overflow: hidden;
}

.form-reference[hidden] {
  display: none;
}

.form-reference p {
  display: grid;
  gap: 2px;
  margin: 0;
}

.form-reference span {
  color: var(--bronze);
  font-family: var(--display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-reference strong {
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 600;
}

.form-reference button {
  padding: 6px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-family: var(--display);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

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

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

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

.field > span,
.field > label {
  font-family: var(--display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(48, 42, 40, 0.42);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.field input,
.field select {
  min-height: 48px;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
  padding: 13px 0;
  line-height: 1.55;
}

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

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #9c3f35;
  background: rgba(156, 63, 53, 0.035);
}

.field-helper,
.field-error {
  font-size: 0.75rem;
  line-height: 1.4;
}

.field-helper {
  color: rgba(48, 42, 40, 0.7);
}

.brief-cues {
  display: grid;
  gap: 9px;
  padding: 11px 0 2px;
  overflow: hidden;
  border-top: 1px solid rgba(167, 124, 86, 0.38);
}

.brief-cues > span {
  color: var(--bronze-text);
  font-family: var(--display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brief-cues ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brief-cues li {
  position: relative;
  padding-left: 12px;
  color: rgba(48, 42, 40, 0.82);
  font-size: 0.72rem;
  line-height: 1.45;
}

.brief-cues li::before {
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--bronze);
  content: "";
  transform: rotate(45deg);
}

.brief-cues small {
  color: rgba(48, 42, 40, 0.7);
  font-size: 0.68rem;
}

.brief-cues.is-project-specific > span {
  color: rgba(48, 42, 40, 0.82);
  font-family: var(--body);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.field-error {
  min-height: 1em;
  color: #8d342c;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
}

.form-actions p {
  max-width: 35ch;
  margin: 0;
  color: rgba(48, 42, 40, 0.7);
  font-size: 0.75rem;
}

.form-actions p a {
  border-bottom: 1px solid currentColor;
}

.form-status {
  min-height: 1.5em;
  margin: 18px 0 0;
  font-size: 0.78rem;
  font-weight: 600;
}

.form-status.is-success {
  color: #355f43;
}

.form-status.is-error {
  color: #8d342c;
}

[data-submit-button]:disabled {
  cursor: wait;
  opacity: 0.64;
}

.button[aria-busy="true"] {
  pointer-events: none;
  opacity: 0.72;
}

/* Footer */

.site-footer {
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255, 250, 244, 0.08);
  background: var(--ink-deep);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr 1fr;
  gap: 34px;
  align-items: start;
}

.brand-lockup--footer {
  align-self: start;
}

.footer-line {
  max-width: 46ch;
  margin: 0;
  color: rgba(255, 250, 244, 0.58);
}

.footer-links {
  display: grid;
  justify-items: end;
  gap: 7px;
  font-size: 0.75rem;
}

.footer-links button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.footer-links button:hover,
.footer-links button:focus-visible {
  color: var(--bronze-bright);
  border-bottom-color: currentColor;
}

.footer-links a:hover {
  color: var(--bronze-bright);
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 250, 244, 0.66);
  font-size: 0.64rem;
}

.footer-meta p {
  margin: 0;
}

.legal-disclosure {
  display: inline-block;
  max-width: 78ch;
  margin-top: 10px;
  color: rgba(255, 250, 244, 0.72);
  font-size: 0.68rem;
  line-height: 1.55;
}

/* First-party consent controls. Hidden remains a hard no-display state. */

[data-consent-banner][hidden],
[data-consent-preferences][hidden] {
  display: none !important;
}

.consent-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(1040px, calc(100vw - 40px));
  margin-inline: auto;
  padding: 22px 24px;
  border: 1px solid rgba(255, 250, 244, 0.22);
  background: var(--ink-deep);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(18, 15, 14, 0.42);
}

.consent-banner strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 1rem;
}

.consent-banner p {
  max-width: 66ch;
  margin: 0;
  color: rgba(255, 250, 244, 0.78);
  font-size: 0.8rem;
  line-height: 1.5;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.consent-actions .button {
  min-height: 44px;
  padding-inline: 18px;
}

.consent-actions .button--line {
  background: var(--ink-deep);
  color: var(--white);
}

.consent-actions .text-button {
  color: var(--white);
}

.consent-preferences {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 20px;
  overflow-y: auto;
  background: rgba(18, 15, 14, 0.78);
  backdrop-filter: blur(8px);
}

.consent-preferences__panel {
  width: min(680px, 100%);
  padding: clamp(26px, 5vw, 52px);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 32px 90px rgba(18, 15, 14, 0.48);
}

.consent-preferences__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 20px;
}

.consent-preferences__head h2 {
  max-width: 10ch;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.consent-preferences .dialog-close {
  position: static;
  flex: 0 0 auto;
  color: var(--ink);
}

.consent-preferences__panel > p {
  color: rgba(48, 42, 40, 0.76);
}

.consent-choice {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
  cursor: pointer;
}

.consent-choice span {
  display: grid;
  gap: 4px;
}

.consent-choice strong {
  font-family: var(--display);
}

.consent-choice small {
  max-width: 58ch;
  color: rgba(48, 42, 40, 0.72);
  line-height: 1.45;
}

.consent-choice input {
  width: 24px;
  height: 24px;
  accent-color: var(--ink);
}

.consent-preferences__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}

.consent-status {
  min-height: 1.4em;
  margin: 16px 0 0;
  font-weight: 600;
}

.consent-links {
  display: flex;
  gap: 18px;
  margin: 12px 0 0;
  font-size: 0.76rem;
}

.consent-links a {
  border-bottom: 1px solid currentColor;
}

@media (max-width: 780px) {
  .consent-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    grid-template-columns: 1fr;
    width: calc(100vw - 20px);
    gap: 18px;
    padding: 20px;
  }

  .consent-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
  }

  .consent-actions .text-button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .consent-preferences {
    align-items: end;
    padding: 10px;
  }

  .consent-preferences__panel {
    max-height: calc(100dvh - 20px);
    overflow-y: auto;
  }

  .consent-preferences__head {
    gap: 16px;
  }

  .consent-preferences__actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

.mobile-actions {
  display: none;
}

.enquiry-route-proxy {
  position: fixed;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid var(--bronze-bright);
  border-radius: 2px;
  overflow: hidden;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  transform-origin: left center;
  will-change: transform, opacity, clip-path;
  box-shadow: 0 18px 52px rgba(20, 17, 16, 0.24);
}

/* Project dialog */

.project-dialog {
  width: min(1440px, calc(100vw - 36px));
  max-width: none;
  height: min(860px, calc(100dvh - 36px));
  max-height: none;
  padding: 0;
  border: 0;
  border-radius: 2px;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 38px 100px rgba(20, 17, 16, 0.4);
}

.project-dialog::backdrop {
  background: rgba(24, 20, 19, 0.88);
  backdrop-filter: blur(8px);
}

.project-dialog.is-shared-transition,
.project-dialog.is-shared-transition .dialog-media,
.project-dialog.is-shared-transition .dialog-shared-stage {
  overflow: visible;
}

.project-dialog.is-returning {
  background: transparent;
  box-shadow: none;
}

.project-dialog.is-returning .dialog-media {
  background: transparent;
}

.project-dialog.is-returning .dialog-close,
.project-dialog.is-returning .dialog-nav {
  opacity: 0;
  pointer-events: none;
}

.dialog-layout {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
}

.dialog-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #3b3432;
}

.dialog-shared-stage {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

.dialog-shared-proxy {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.dialog-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(110deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0) 70%);
  transform: translateX(-100%);
}

.dialog-media.is-loading::after {
  opacity: 1;
  animation: loading-sheen 1.1s ease-in-out infinite;
}

@keyframes loading-sheen {
  to { transform: translateX(100%); }
}

.dialog-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dialog-copy {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 76px 36px 36px;
  border-left: 1px solid var(--line-dark);
  scrollbar-width: thin;
}

.dialog-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.dialog-copy > .eyebrow {
  max-width: 190px;
}

.dialog-copy > p:not(.eyebrow):not(.dialog-caption) {
  color: rgba(48, 42, 40, 0.68);
}

.dialog-scope {
  flex-shrink: 0;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  overflow: hidden;
}

.dialog-scope[hidden] {
  display: none;
}

.dialog-scope > span {
  color: var(--bronze);
  font-family: var(--display);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.dialog-scope ul {
  display: grid;
  gap: 6px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.dialog-scope li {
  position: relative;
  padding-left: 15px;
  color: rgba(48, 42, 40, 0.72);
  font-size: 0.75rem;
  line-height: 1.45;
}

.dialog-scope li::before {
  position: absolute;
  top: 0.67em;
  left: 0;
  width: 7px;
  height: 1px;
  background: var(--bronze);
  content: "";
}

.dialog-enquiry {
  display: grid;
  flex-shrink: 0;
  gap: 8px;
  margin-top: clamp(24px, 5vh, 52px);
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  overflow: hidden;
}

.dialog-scope + .dialog-enquiry {
  margin-top: 24px;
}

.dialog-enquiry p {
  margin: 0;
  color: var(--bronze);
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.dialog-enquiry > strong {
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
}

.dialog-case-link {
  width: fit-content;
  margin: 2px 0 6px;
  color: var(--ink);
  font-size: 0.67rem;
}

.dialog-case-link[hidden] {
  display: none;
}

.dialog-enquiry .button {
  width: 100%;
  margin-top: 4px;
}

.dialog-enquiry small {
  color: rgba(48, 42, 40, 0.68);
  font-size: 0.72rem;
  line-height: 1.5;
}

.dialog-counter {
  flex-shrink: 0;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  color: var(--bronze);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
}

.dialog-caption {
  flex-shrink: 0;
  min-height: 2.8em;
  margin: 10px 0 0;
  color: rgba(48, 42, 40, 0.62);
  font-size: 0.76rem;
}

.dialog-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-family: var(--display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.dialog-close span {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 0.7;
}

.dialog-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 244, 0.5);
  border-radius: 50%;
  background: rgba(37, 33, 31, 0.62);
  color: var(--white);
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(7px);
  transition: background-color 180ms ease, transform 180ms ease;
}

.dialog-nav:hover {
  background: var(--bronze);
  transform: translateY(-50%) scale(1.04);
}

.dialog-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.dialog-nav--prev {
  left: 24px;
}

.dialog-nav--next {
  right: 24px;
}

.dialog-error {
  position: absolute;
  inset: 50% auto auto 50%;
  margin: 0;
  color: var(--white);
  transform: translate(-50%, -50%);
}

@media (min-width: 781px) and (max-height: 760px) {
  .dialog-copy {
    padding: 58px 28px 22px;
  }

  .dialog-copy h2 {
    margin-bottom: 12px;
    font-size: clamp(1.9rem, 2.8vw, 2.55rem);
  }

  .dialog-copy > p:not(.eyebrow):not(.dialog-caption) {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .dialog-scope {
    margin-top: 14px;
    padding-top: 12px;
  }

  .dialog-scope ul {
    gap: 3px;
    margin-top: 7px;
  }

  .dialog-scope li {
    font-size: 0.7rem;
  }

  .dialog-scope + .dialog-enquiry {
    margin-top: 14px;
  }

  .dialog-enquiry {
    gap: 5px;
    padding-top: 12px;
  }

  .dialog-enquiry small {
    display: none;
  }

  .dialog-enquiry .button {
    min-height: 46px;
  }

  .dialog-counter {
    margin-top: 18px;
    padding-top: 12px;
  }

  .dialog-caption {
    margin-top: 6px;
  }
}

/* Privacy page */

.legal-hero {
  padding: calc(var(--header-h) + 110px) 0 90px;
  background: var(--ink-deep);
  color: var(--white);
}

.legal-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.98;
}

.legal-content {
  padding: 90px 0 120px;
}

.legal-copy {
  max-width: 760px;
  margin-left: min(16vw, 220px);
}

.legal-copy h2 {
  margin: 2.6rem 0 1rem;
  font-size: 1.7rem;
}

.legal-copy p,
.legal-copy li {
  color: rgba(48, 42, 40, 0.74);
}

/* Responsive */

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 48px, 1100px);
  }

  .header-inner {
    width: calc(100vw - 32px);
    grid-template-columns: 1fr auto 1fr;
    gap: 18px;
  }

  .site-nav {
    display: flex;
    gap: 18px;
  }

  .site-nav a {
    font-size: 0.62rem;
  }

  .header-call {
    grid-column: auto;
    grid-row: auto;
    padding-left: 14px;
  }

  .hero-copy {
    grid-column: 1 / span 8;
  }

  .hero-caption {
    grid-column: 10 / -1;
  }

  .standard-grid {
    grid-template-columns: 70px 1fr 1fr;
  }

  .services-grid,
  .design-studio__grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .journey-layout {
    grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
    gap: 32px;
  }

  .journey-copy > h2 {
    font-size: clamp(2.7rem, 5vw, 4.3rem);
  }

  .design-studio__copy {
    max-width: 760px;
  }

  .design-visual {
    width: calc(100% - 44px);
    margin-left: 44px;
  }

  .services-intro {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 50px;
    align-items: end;
  }

  .services-intro .eyebrow,
  .services-intro h2 {
    grid-column: 1;
  }

  .services-intro > p:not(.eyebrow),
  .services-intro .button {
    grid-column: 2;
  }

  .services-intro > p:not(.eyebrow) {
    grid-row: 1 / span 2;
    padding-top: 38px;
  }

  .services-intro .button {
    justify-self: start;
  }

  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 54px;
  }

  .about-images {
    min-height: 560px;
    padding-right: 40px;
  }

  .about-image--main {
    height: 490px;
  }

  .about-image--small {
    width: 48%;
    height: 240px;
  }

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

  .process-line li:nth-child(2) {
    border-right: 0;
  }

  .process-line li:nth-child(n+3) {
    border-top: 1px solid var(--line-dark);
  }

  .contact-grid {
    gap: 50px;
  }

  .contact-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 50px;
  }

  .contact-copy .eyebrow,
  .contact-copy h2 {
    grid-column: 1;
  }

  .contact-copy > p:not(.eyebrow),
  .contact-details {
    grid-column: 2;
  }

  .contact-copy > p:not(.eyebrow) {
    grid-row: 1 / span 2;
    padding-top: 38px;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: calc(100% - 32px);
    --header-h: 72px;
  }

  html {
    scroll-padding-top: 88px;
  }

  body {
    padding-bottom: 56px;
  }

  .section {
    padding-block: 76px;
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.8rem);
  }

  .site-header,
  .site-header.is-scrolled {
    height: var(--header-h);
  }

  .header-inner {
    width: calc(100vw - 24px);
    grid-template-columns: 1fr auto;
  }

  .brand-mark {
    width: 38px;
    height: 32px;
  }

  .brand-type strong {
    font-size: 0.83rem;
  }

  .brand-type span {
    font-size: 0.48rem;
  }

  .header-call {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 7px;
    padding: 0;
    border: 1px solid rgba(255, 250, 244, 0.28);
    background: rgba(37, 33, 31, 0.25);
    color: var(--white);
  }

  .nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: transform var(--motion-duration-fast) var(--motion-ease-state);
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
    padding: 88px 28px 70px;
    background: rgba(37, 33, 31, 0.985);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity var(--motion-duration-standard) var(--motion-ease-primary),
      visibility var(--motion-duration-standard) var(--motion-ease-primary),
      transform var(--motion-duration-standard) var(--motion-ease-primary);
  }

  .gsap-ready .nav-toggle span:not(.sr-only),
  .gsap-ready .site-nav {
    transition: none;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
    padding: 10px 0;
    font-size: clamp(1.8rem, 9vw, 3.2rem);
    letter-spacing: -0.035em;
    text-transform: none;
  }

  .site-nav a::after {
    right: auto;
    width: 80px;
  }

  /* The compact overlay is opt-in. Until its controller is ready, mobile keeps
     a small native navigation row so a script failure never traps the page. */

  html:not(.nav-enhanced) {
    scroll-padding-top: 104px;
  }

  html:not(.nav-enhanced) body {
    padding-bottom: 0;
  }

  html:not(.nav-enhanced) .site-header,
  html:not(.nav-enhanced) .site-header.is-scrolled {
    height: auto;
    min-height: var(--header-h);
    border-bottom: 1px solid rgba(255, 250, 244, 0.12);
    background: rgba(37, 33, 31, 0.98);
  }

  html:not(.nav-enhanced) .header-inner {
    height: auto;
    min-height: var(--header-h);
    grid-template-columns: 1fr;
    gap: 5px;
    padding-block: 10px;
  }

  html:not(.nav-enhanced) .nav-toggle,
  html:not(.nav-enhanced) .mobile-actions {
    display: none;
  }

  html:not(.nav-enhanced) .site-nav {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0 16px;
    padding: 0;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  html:not(.nav-enhanced) .site-nav a {
    width: auto;
    padding: 5px 0;
    color: rgba(255, 250, 244, 0.82);
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    align-items: flex-end;
    padding: calc(var(--header-h) + 52px) 0 188px;
  }

  .hero-media img {
    object-position: 80% center;
  }

  .hero-wash {
    background:
      linear-gradient(180deg, rgba(37, 33, 31, 0.45) 0%, rgba(37, 33, 31, 0.15) 25%, rgba(37, 33, 31, 0.84) 68%, rgba(37, 33, 31, 0.98) 100%),
      linear-gradient(90deg, rgba(37, 33, 31, 0.58) 0%, transparent 100%);
  }

  .hero-copy {
    grid-column: 1 / -1;
  }

  .hero h1 {
    margin-bottom: 1.35rem;
    font-size: clamp(3rem, 12.5vw, 4.6rem);
  }

  .hero-lede {
    font-size: 0.98rem;
    line-height: 1.55;
  }

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

  .button {
    min-height: 50px;
    padding-inline: 14px;
    font-size: 0.65rem;
  }

  .hero-caption {
    display: none;
  }

  .hero-rail__inner {
    min-height: 116px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 5px;
    padding-block: 14px;
  }

  .hero-rail p,
  .hero-rail p:last-child {
    padding: 1px 0;
    border: 0;
    font-size: 0.59rem;
  }

  .standard-grid,
  .services-intro,
  .about-grid,
  .contact-copy,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-index {
    display: none;
  }

  .standard-copy,
  .standard-body,
  .services-intro .eyebrow,
  .services-intro h2,
  .services-intro > p:not(.eyebrow),
  .services-intro .button,
  .contact-copy .eyebrow,
  .contact-copy h2,
  .contact-copy > p:not(.eyebrow),
  .contact-details {
    grid-column: 1;
    grid-row: auto;
  }

  .standard-body,
  .services-intro > p:not(.eyebrow),
  .contact-copy > p:not(.eyebrow) {
    padding-top: 0;
  }

  .standard-body {
    padding-top: 12px;
  }

  .build-journey {
    height: 410svh;
    min-height: 2300px;
  }

  .journey-sticky {
    min-height: 590px;
  }

  .journey-sticky::before {
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, transparent 0, #000 32%, #000 100%);
  }

  .journey-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 18px;
    padding-top: calc(var(--header-h) + 24px);
    padding-bottom: 62px;
  }

  .journey-copy > .eyebrow {
    margin-bottom: 8px;
  }

  .journey-copy > h2 {
    max-width: 12ch;
    margin-bottom: 8px;
    font-size: clamp(2.05rem, 9.5vw, 3rem);
  }

  .journey-context {
    max-width: 52ch;
    margin-bottom: 10px;
    font-size: 0.64rem;
    line-height: 1.45;
  }

  .journey-steps {
    height: 136px;
  }

  .journey-step small {
    margin-bottom: 5px;
    font-size: 0.56rem;
  }

  .journey-step h3 {
    max-width: 23ch;
    margin-bottom: 5px;
    font-size: 1.25rem;
  }

  .journey-step p {
    max-width: 49ch;
    font-size: 0.78rem;
    line-height: 1.48;
  }

  .journey-step .text-button {
    margin-top: 9px;
    padding-bottom: 4px;
    font-size: 0.62rem;
  }

  .journey-index {
    gap: 5px;
    margin-top: 8px;
  }

  .journey-index span {
    padding-top: 5px;
    font-size: 0.52rem;
  }

  .journey-visual {
    min-height: 0;
  }

  .journey-visual::after {
    border-width: 6px;
  }

  .journey-visual-label {
    right: 14px;
    bottom: 13px;
    width: min(310px, calc(100% - 28px));
    padding: 8px 10px;
  }

  .journey-visual-label span {
    font-size: 0.51rem;
  }

  .journey-proof-reference__label {
    bottom: 8px;
    left: 8px;
    width: 112px;
    max-width: none;
    padding: 6px 7px;
  }

  .journey-proof-reference__label small {
    font-size: 0.46rem;
  }

  .journey-proof-reference__label strong {
    font-size: 0.58rem;
    line-height: 1.2;
  }

  .journey-corner {
    display: none;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .work-disclosure {
    margin-top: 16px;
    font-size: 0.68rem;
    text-align: left;
  }

  .project-archive-control {
    justify-content: flex-start;
    margin-top: 22px;
  }

  .project-card--seven,
  .project-card--five,
  .project-card--four,
  .project-card--eight {
    grid-column: 1;
  }

  .project-card {
    min-height: 410px;
  }

  .project-card__meta {
    padding: 24px;
  }

  .project-card__meta i {
    display: none;
  }

  .services-grid {
    gap: 56px;
  }

  .design-studio__grid {
    gap: 48px;
  }

  .design-visual {
    width: 100%;
    margin: 0;
  }

  .design-visual picture {
    aspect-ratio: 4 / 3.35;
  }

  .design-sheet {
    position: relative;
    bottom: auto;
    left: auto;
    width: calc(100% - 24px);
    margin: -24px 12px 0;
  }

  .design-visual__label {
    bottom: 38px;
    left: 20px;
    right: auto;
  }

  .service-item {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 25px 24px 28px 0;
  }

  .service-marker {
    top: 27px;
    width: 24px;
  }

  .about-grid {
    gap: 42px;
  }

  .about-images {
    min-height: 430px;
    padding: 0 20px 62px 0;
  }

  .about-image--main {
    width: 92%;
    height: 390px;
  }

  .about-image--small {
    width: 48%;
    height: 190px;
    border-width: 7px;
  }

  .about-image figcaption {
    display: none;
  }

  .about-copy h2 {
    font-size: clamp(2.35rem, 12vw, 3.8rem);
  }

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

  .process-line li,
  .process-line li:not(:first-child) {
    min-height: 0;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding: 24px 0;
    border-right: 0;
    border-top: 1px solid var(--line-dark);
  }

  .process-line li:first-child {
    border-top: 0;
  }

  .process-line li > span {
    margin: 0;
  }

  .coverage {
    overflow: hidden;
  }

  .coverage-track {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px 18px;
    padding-inline: 16px;
    white-space: normal;
  }

  .contact-grid {
    gap: 46px;
  }

  .contact-details a,
  .contact-details > p {
    grid-template-columns: 82px 1fr;
  }

  .contact-details strong {
    overflow-wrap: anywhere;
  }

  .form-panel {
    width: calc(100% + 32px);
    margin-left: -16px;
    padding: 30px 20px;
  }

  .form-panel__head {
    display: grid;
    gap: 4px;
  }

  .form-panel__head small {
    max-width: none;
    text-align: left;
  }

  .form-reference {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .form-reference button {
    width: fit-content;
  }

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

  .field--wide {
    grid-column: 1;
  }

  .brief-cues ul {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .footer-grid {
    gap: 26px;
  }

  .footer-links {
    justify-items: start;
    grid-template-columns: repeat(2, auto);
    justify-content: start;
    gap: 7px 24px;
  }

  .footer-meta {
    display: grid;
    gap: 8px;
    margin-top: 12px;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 25;
    min-height: calc(60px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid rgba(255, 250, 244, 0.14);
    background: var(--ink-deep);
    font-family: var(--display);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 360ms var(--ease);
    box-shadow: 0 -16px 42px rgba(20, 17, 16, 0.2);
  }

  .mobile-actions.is-hidden,
  body.nav-open .mobile-actions,
  body.dialog-open .mobile-actions {
    transform: translateY(100%);
  }

  .mobile-actions a {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
  }

  .mobile-actions__call {
    border-right: 1px solid rgba(255, 250, 244, 0.14);
    color: rgba(255, 250, 244, 0.88);
  }

  .mobile-actions__brief {
    background: var(--bronze-bright);
    color: var(--ink-deep);
  }

  .project-dialog {
    width: 100vw;
    height: 100dvh;
    border-radius: 0;
  }

  .dialog-layout {
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .dialog-media {
    height: min(75vw, 330px);
    flex: 0 0 auto;
    margin-top: 64px;
  }

  .dialog-copy {
    min-height: 0;
    max-height: none;
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 24px 20px 18px;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .dialog-copy .eyebrow {
    display: none;
  }

  .dialog-copy > p:not(.eyebrow):not(.dialog-caption) {
    display: block;
    margin-bottom: 18px;
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .dialog-copy h2 {
    margin-bottom: 10px;
    font-size: 1.7rem;
  }

  .dialog-enquiry {
    margin-top: 18px;
    padding-top: 16px;
  }

  .dialog-scope {
    margin-top: 18px;
    padding-top: 14px;
  }

  .dialog-scope + .dialog-enquiry {
    margin-top: 18px;
  }

  .dialog-counter {
    margin-top: auto;
    padding-top: 10px;
  }

  .dialog-close {
    top: 14px;
    right: 14px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 250, 244, 0.45);
    background: rgba(37, 33, 31, 0.72);
    color: var(--white);
    backdrop-filter: blur(7px);
  }

  .dialog-nav {
    width: 44px;
    height: 44px;
  }

  .dialog-nav--prev {
    left: 12px;
  }

  .dialog-nav--next {
    right: 12px;
  }

  .legal-copy {
    margin-left: 0;
  }
}

@media (max-width: 780px) {
  .gsap-ready .build-journey[data-journey-mode="native"] {
    height: 380svh;
  }

  .gsap-ready .build-journey[data-journey-mode="native"] .journey-sticky {
    height: 100svh;
    min-height: 0;
  }

  .gsap-ready .build-journey[data-journey-mode="compact"] .journey-layout,
  .gsap-ready .build-journey[data-journey-mode="reduced"] .journey-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
    padding-top: calc(var(--header-h) + 24px);
    padding-bottom: 34px;
  }

  .gsap-ready .build-journey[data-journey-mode="compact"] .journey-steps,
  .gsap-ready .build-journey[data-journey-mode="reduced"] .journey-steps {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .gsap-ready .build-journey[data-journey-mode="compact"] .journey-copy > h2,
  .gsap-ready .build-journey[data-journey-mode="reduced"] .journey-copy > h2 {
    font-size: clamp(2rem, 9vw, 2.85rem);
  }

  .gsap-ready .build-journey[data-journey-mode="compact"] .journey-visual,
  .gsap-ready .build-journey[data-journey-mode="reduced"] .journey-visual {
    height: min(68vw, 320px);
  }
}

@media (max-width: 1120px) and (orientation: portrait) {
  .hero-media img {
    object-position: right center;
    transform: scale(1.015) translate3d(var(--hero-x, 0px), calc(var(--hero-y, 0px) + var(--hero-scroll, 0px)), 0);
  }
}

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

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

  .hero-media,
  .hero-copy,
  .site-header .brand-mark path {
    opacity: 1;
    transform: none;
    stroke-dashoffset: 0;
  }

  .build-journey {
    height: auto;
    min-height: 0;
  }

  .journey-sticky {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .journey-layout {
    min-height: 0;
  }

  .journey-steps {
    display: grid;
    height: auto;
    gap: 18px;
  }

  .journey-step,
  .journey-step.is-active {
    position: relative;
    opacity: 1;
    transform: none;
  }

  .journey-layer--finished {
    opacity: 1 !important;
  }

  .journey-visual {
    height: clamp(280px, 52vw, 620px);
    min-height: 0;
  }

}

/* Static construction story when scripting is unavailable. */

html:not(.js) .build-journey {
  height: auto;
  min-height: 0;
}

html:not(.js) .journey-sticky {
  position: relative;
  top: auto;
  height: auto;
  min-height: 0;
  overflow: visible;
}

html:not(.js) .journey-progress,
html:not(.js) .journey-index,
html:not(.js) .journey-copy > .eyebrow {
  display: none;
}

html:not(.js) .journey-layout {
  height: auto;
  min-height: 0;
  align-items: start;
  padding-top: calc(var(--header-h) + 44px);
  padding-bottom: 72px;
}

html:not(.js) .journey-copy {
  min-height: 0;
}

html:not(.js) .journey-steps {
  position: static;
  height: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 14px 18px;
  margin-top: 26px;
}

html:not(.js) .journey-step,
html:not(.js) .journey-step.is-active {
  position: relative;
  inset: auto;
  display: block;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 250, 244, 0.18);
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

html:not(.js) .journey-visual {
  height: clamp(300px, 52vw, 620px);
  min-height: 0;
}

html:not(.js) .journey-layer {
  display: none;
  opacity: 0;
  transform: none;
  will-change: auto;
}

html:not(.js) .journey-layer--finished {
  display: block;
  opacity: 1;
}

html:not(.js) .build-journey[data-journey-stage] [data-journey-label] {
  display: none;
}

html:not(.js) .build-journey[data-journey-stage] [data-journey-label="3"] {
  display: block;
}
