:root {
  --canvas: #f6f7fb;
  --paper: #fcfcfe;
  --white: #ffffff;
  --navy: #10243e;
  --ink-soft: #3e4e63;
  --coral: #f0647a;
  --rose: #c84e67;
  --rose-text: #8c354d;
  --periwinkle: #6674f6;
  --sky: #bfc6ff;
  --line: #d8dfe9;
  --blue-wash: #edf5f8;
  --focus: #6674f6;
  --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --content: min(1280px, calc(100vw - 64px));
  --header-height: 92px;
  --space-section: clamp(88px, 11vw, 168px);
  --shadow-focus: 0 0 0 3px var(--paper), 0 0 0 6px var(--focus);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 0;
  box-shadow: var(--shadow-focus);
}

section[tabindex="-1"]:focus {
  outline: 0;
}

section[tabindex="-1"]:focus-visible {
  box-shadow: inset 0 0 0 3px var(--focus);
}

::selection {
  background: var(--sky);
  color: var(--navy);
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--white);
  color: var(--navy);
  transform: translateY(-160%);
}

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

.site-header {
  position: relative;
  z-index: 50;
  height: var(--header-height);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.site-header::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--coral) 0 64%, var(--periwinkle) 64% 100%);
  content: "";
}

.site-header-inner {
  width: var(--content);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-logo {
  display: block;
  width: 150px;
  height: 62px;
  overflow: hidden;
  text-decoration: none;
}

.site-logo img {
  width: 150px;
  height: 76px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  transform: translateY(-7px);
}

.site-navigation-list {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-navigation-list a {
  position: relative;
  display: inline-block;
  padding: 10px 0;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.045em;
  text-decoration: none;
}

.site-navigation-list a:not(.navigation-enquiry)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-navigation-list a:hover::after,
.site-navigation-list a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-navigation-list .navigation-enquiry {
  padding: 11px 17px;
  background: var(--navy);
  color: var(--white);
}

.site-navigation-list .navigation-enquiry:hover {
  background: var(--coral);
  color: var(--navy);
}

.navigation-toggle {
  display: none;
  align-items: center;
  gap: 11px;
  padding: 10px 0;
  border: 0;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navigation-toggle i,
.navigation-toggle i::before {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--navy);
  content: "";
  transition: transform 180ms ease;
}

.navigation-toggle i::before {
  transform: translateY(7px);
}

.navigation-toggle[aria-expanded="true"] i {
  transform: translateY(3px) rotate(45deg);
}

.navigation-toggle[aria-expanded="true"] i::before {
  transform: rotate(-90deg);
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--rose-text);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.83rem;
  font-weight: 720;
  letter-spacing: 0.035em;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-coral {
  background: var(--coral);
  color: var(--navy);
}

.button-coral:hover {
  background: var(--white);
}

.button-dark {
  background: var(--navy);
  color: var(--white);
}

.button-dark:hover {
  background: var(--coral);
  color: var(--navy);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-decoration: none;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

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

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.85fr);
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero::after {
  position: absolute;
  right: calc(31.5% - 1px);
  bottom: 0;
  width: 1px;
  height: 22%;
  background: rgb(255 255 255 / 0.3);
  content: "";
}

.hero-copy {
  align-self: center;
  width: min(820px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(78px, 9vw, 140px) 0 78px;
}

.hero-copy .eyebrow {
  color: var(--sky);
}

.hero h1 {
  max-width: 840px;
  margin-bottom: 40px;
  font-size: clamp(4.1rem, 8.7vw, 9rem);
  font-weight: 620;
  letter-spacing: -0.072em;
  line-height: 0.87;
}

.hero-intro {
  max-width: 660px;
  margin-bottom: 42px;
  color: rgb(255 255 255 / 0.82);
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-brand {
  position: relative;
  display: flex;
  min-height: 560px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--white);
  color: var(--navy);
}

.hero-brand > img {
  width: min(74%, 410px);
  height: auto;
  mix-blend-mode: multiply;
}

.brand-note {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-note span {
  width: 9px;
  height: 9px;
  background: var(--coral);
}

.hero-footnote {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.45fr);
  align-items: end;
  padding: 22px 32px;
  border-top: 1px solid rgb(255 255 255 / 0.24);
}

.hero-footnote > span {
  align-self: end;
  color: var(--sky);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.hero-footnote p {
  margin-bottom: 0;
  font-size: 0.72rem;
  font-weight: 620;
  letter-spacing: 0.09em;
  line-height: 1.75;
  text-transform: uppercase;
}

.work-section,
.approach-section {
  padding: var(--space-section) max(32px, calc((100vw - 1280px) / 2));
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(420px, 1fr) minmax(260px, 0.62fr);
  gap: 48px;
  align-items: start;
  margin-bottom: clamp(68px, 8vw, 116px);
}

.section-intro .eyebrow {
  padding-top: 13px;
}

.section-intro h2,
.services-heading h2,
.about-copy h2,
.contact-heading h2,
.archive-hero h1,
.project-hero h1,
.not-found-page h1 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5.4vw, 5.7rem);
  font-weight: 610;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-intro > p:last-child {
  padding-top: 12px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.project-list {
  border-top: 1px solid var(--navy);
}

.project-entry {
  --project-accent: var(--coral);
  display: grid;
  grid-template-columns: minmax(360px, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(36px, 7vw, 100px);
  padding: clamp(42px, 6vw, 88px) 0;
  border-bottom: 1px solid var(--line);
}

.project-entry:nth-child(even) .project-image {
  order: 2;
}

.project-entry:nth-child(even) .project-copy {
  order: 1;
}

.project-accent-coral { --project-accent: var(--coral); }
.project-accent-periwinkle { --project-accent: var(--periwinkle); }
.project-accent-sky { --project-accent: var(--sky); }
.project-accent-navy { --project-accent: var(--navy); }

.project-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--project-accent);
}

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

.project-image-placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 420px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--white);
}

.project-image-placeholder img {
  width: 38%;
  mix-blend-mode: multiply;
}

.project-copy {
  align-self: center;
}

.project-number {
  margin-bottom: 32px;
  color: var(--rose-text);
  font-size: 0.7rem;
  font-weight: 740;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-copy h3,
.archive-project h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  font-weight: 610;
  letter-spacing: -0.05em;
  line-height: 1;
}

.project-copy h3 a,
.archive-project h2 a {
  text-decoration: none;
}

.project-scope {
  margin-bottom: 24px;
  color: var(--rose-text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-copy > p:not(.project-number):not(.project-scope) {
  max-width: 500px;
  margin-bottom: 28px;
  color: var(--ink-soft);
}

.work-empty {
  display: grid;
  grid-template-columns: minmax(220px, 0.46fr) minmax(320px, 0.8fr) minmax(240px, 0.55fr);
  gap: 48px;
  align-items: start;
  padding: 50px 0;
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
}

.work-empty h3 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.work-empty > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.work-empty .text-link {
  grid-column: 3;
}

.services-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(60px, 10vw, 150px);
  padding: var(--space-section) max(32px, calc((100vw - 1280px) / 2));
  background: var(--navy);
  color: var(--white);
}

.services-heading {
  position: sticky;
  top: 32px;
  align-self: start;
}

.service-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgb(255 255 255 / 0.28);
  list-style: none;
  counter-reset: none;
}

.service-list li {
  display: grid;
  grid-template-columns: 48px minmax(190px, 0.8fr) minmax(230px, 1fr);
  gap: 24px;
  padding: 30px 0 34px;
  border-bottom: 1px solid rgb(255 255 255 / 0.28);
}

.service-list span {
  padding-top: 5px;
  color: var(--sky);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-list h3 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 580;
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.service-list p {
  margin-bottom: 0;
  color: rgb(255 255 255 / 0.72);
  font-size: 0.93rem;
}

.section-intro-narrow {
  grid-template-columns: minmax(200px, 0.45fr) minmax(520px, 1.2fr);
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
}

.process-rail > div {
  min-height: 300px;
  padding: 28px 28px 34px;
  border-right: 1px solid var(--line);
}

.process-rail > div:last-child {
  border-right: 0;
}

.process-rail span {
  display: block;
  margin-bottom: 84px;
  color: var(--rose-text);
  font-size: 0.7rem;
  font-weight: 720;
  letter-spacing: 0.12em;
}

.process-rail h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  font-weight: 620;
  letter-spacing: -0.025em;
}

.process-rail p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(460px, 1.14fr);
  min-height: 720px;
  background: var(--white);
}

.about-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: var(--sky);
}

.about-mark img {
  width: min(54%, 360px);
  mix-blend-mode: multiply;
}

.about-copy {
  align-self: center;
  max-width: 720px;
  padding: clamp(72px, 9vw, 140px);
}

.about-copy h2 {
  margin-bottom: 42px;
}

.about-copy p:not(.eyebrow) {
  color: var(--ink-soft);
}

.about-copy .about-lede {
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.45;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(500px, 1.1fr);
  background: var(--navy);
  color: var(--white);
}

.contact-heading,
.contact-form-wrap {
  padding: var(--space-section) clamp(32px, 7vw, 110px);
}

.contact-heading {
  border-right: 1px solid rgb(255 255 255 / 0.24);
}

.contact-heading h2 {
  margin-bottom: 40px;
}

.contact-heading > p:not(.eyebrow) {
  color: rgb(255 255 255 / 0.7);
}

.contact-heading > a {
  color: var(--sky);
  font-weight: 650;
}

.contact-brief {
  align-self: center;
}

.contact-brief ol {
  margin: 0 0 38px;
  padding: 0;
  border-top: 1px solid rgb(255 255 255 / 0.3);
  list-style: none;
}

.contact-brief li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.3);
}

.contact-brief li span {
  padding-top: 2px;
  color: var(--sky);
  font-size: 0.68rem;
  font-weight: 720;
  letter-spacing: 0.12em;
}

.contact-brief li p {
  margin: 0;
}

.contact-brief .button {
  width: max-content;
}

.form-privacy {
  margin: 16px 0 0;
  color: rgb(255 255 255 / 0.58);
  font-size: 0.76rem;
}

.site-footer {
  padding: 72px max(32px, calc((100vw - 1280px) / 2)) 30px;
  background: var(--paper);
}

.site-footer-main {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 42px;
  align-items: end;
  padding-bottom: 58px;
}

.footer-mark {
  display: block;
  width: 96px;
  height: 90px;
  overflow: hidden;
}

.footer-mark img {
  width: 82px;
  mix-blend-mode: multiply;
  transform: translateY(-12px);
}

.site-footer-main p {
  max-width: 520px;
  margin-bottom: 0;
  font-size: clamp(1.4rem, 2.7vw, 2.8rem);
  font-weight: 590;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.site-footer-main > a:last-child {
  font-size: 0.9rem;
  font-weight: 670;
}

.site-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.site-footer-legal p {
  margin: 0;
}

.site-footer-legal p:first-child {
  margin-right: auto;
}

.project-page {
  --project-accent: var(--coral);
}

.project-hero,
.archive-hero {
  padding: clamp(80px, 10vw, 160px) max(32px, calc((100vw - 1280px) / 2));
}

.project-back {
  display: inline-block;
  margin-bottom: 80px;
  font-size: 0.8rem;
  font-weight: 700;
}

.project-hero-grid {
  display: grid;
  grid-template-columns: minmax(460px, 1.25fr) minmax(300px, 0.55fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: end;
}

.project-hero h1 {
  max-width: 900px;
}

.project-deck {
  max-width: 740px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
}

.project-facts {
  padding-top: 28px;
  border-top: 1px solid var(--navy);
}

.project-facts > div {
  margin-bottom: 34px;
}

.project-facts span {
  display: block;
  margin-bottom: 8px;
  color: var(--rose-text);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-facts p {
  margin: 0;
  color: var(--ink-soft);
}

.project-featured-image {
  margin: 0;
  padding: 0 max(32px, calc((100vw - 1440px) / 2));
}

.project-featured-image img {
  width: 100%;
  max-height: 860px;
  object-fit: cover;
}

.project-content {
  width: min(760px, calc(100vw - 64px));
  margin: 0 auto;
  padding: var(--space-section) 0;
  color: var(--ink-soft);
}

.project-content h2 {
  margin: 2.7em 0 0.7em;
  color: var(--navy);
  font-size: clamp(2rem, 3.7vw, 3.7rem);
  font-weight: 610;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.project-content h2:first-child {
  margin-top: 0;
}

.project-content p,
.project-content li {
  font-size: 1.05rem;
}

.project-content figure {
  margin: 54px min(-18vw, -150px);
}

.project-next {
  padding: var(--space-section) max(32px, calc((100vw - 1280px) / 2));
  background: var(--sky);
}

.project-next h2 {
  margin-bottom: 38px;
  font-size: clamp(2.8rem, 5.5vw, 6rem);
  font-weight: 610;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.archive-hero {
  display: grid;
  grid-template-columns: minmax(200px, 0.4fr) minmax(480px, 1fr) minmax(260px, 0.52fr);
  gap: 48px;
  align-items: end;
  background: var(--navy);
  color: var(--white);
}

.archive-hero .eyebrow {
  color: var(--sky);
}

.archive-hero > p:last-child {
  color: rgb(255 255 255 / 0.7);
}

.archive-projects {
  padding: var(--space-section) max(32px, calc((100vw - 1280px) / 2));
}

.archive-project {
  --project-accent: var(--coral);
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(320px, 0.7fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}

.archive-project-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--project-accent);
}

.archive-project-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navigation.pagination {
  margin-top: 70px;
}

.nav-links {
  display: flex;
  gap: 12px;
}

.page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.standard-page {
  min-height: 70vh;
  padding: var(--space-section) max(32px, calc((100vw - 960px) / 2));
}

.standard-entry > header {
  margin-bottom: 70px;
}

.standard-entry h1 {
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 610;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.standard-content {
  max-width: 760px;
  color: var(--ink-soft);
}

.not-found-page {
  min-height: 72vh;
  padding: clamp(100px, 14vw, 200px) max(32px, calc((100vw - 1280px) / 2));
}

.not-found-page h1 {
  max-width: 900px;
  margin-bottom: 30px;
}

.not-found-page > p:not(.eyebrow) {
  margin-bottom: 36px;
  color: var(--ink-soft);
}

@media (max-width: 1080px) {
  :root {
    --content: calc(100vw - 48px);
  }

  .hero {
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  }

  .hero h1 {
    font-size: clamp(4.4rem, 9vw, 7rem);
  }

  .section-intro {
    grid-template-columns: 0.42fr 1fr;
  }

  .section-intro > p:last-child {
    grid-column: 2;
  }

  .services-section {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 68px;
  }

  .service-list li {
    grid-template-columns: 42px 1fr;
  }

  .service-list p {
    grid-column: 2;
  }

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

  .process-rail > div:nth-child(2) {
    border-right: 0;
  }

  .process-rail > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .contact-section {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .archive-hero {
    grid-template-columns: 0.34fr 1fr;
  }

  .archive-hero > p:last-child {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 78px;
    --content: calc(100vw - 40px);
  }

  .site-logo {
    width: 130px;
    height: 58px;
  }

  .site-logo img {
    width: 130px;
    height: 67px;
    transform: translateY(-5px);
  }

  .site-header {
    height: auto;
  }

  .site-header-inner {
    min-height: var(--header-height);
    height: auto;
    flex-wrap: wrap;
  }

  .navigation-toggle {
    display: none;
  }

  .site-navigation {
    width: 100vw;
    flex: 0 0 100vw;
    margin-left: calc((100% - 100vw) / 2);
    background: var(--navy);
    color: var(--white);
  }

  .has-js .navigation-toggle {
    display: flex;
  }

  .has-js .site-navigation {
    display: none;
  }

  .has-js .navigation-open .site-navigation {
    display: block;
  }

  .site-navigation-list {
    width: calc(100vw - 40px);
    margin: 0 auto;
    display: block;
    padding: 40px 0;
  }

  .site-navigation-list li {
    border-bottom: 1px solid rgb(255 255 255 / 0.25);
  }

  .site-navigation-list a,
  .site-navigation-list .navigation-enquiry {
    display: block;
    padding: 22px 0;
    background: transparent;
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 580;
    letter-spacing: -0.02em;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .hero-copy {
    width: calc(100vw - 56px);
    padding: 90px 0 80px;
  }

  .hero-brand {
    min-height: 480px;
  }

  .hero-footnote {
    grid-template-columns: 1fr 1fr;
  }

  .hero::after {
    display: none;
  }

  .section-intro,
  .section-intro-narrow {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-intro > p:last-child,
  .archive-hero > p:last-child {
    grid-column: auto;
  }

  .project-entry,
  .archive-project {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .project-entry:nth-child(even) .project-image,
  .project-entry:nth-child(even) .project-copy {
    order: initial;
  }

  .work-empty {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .work-empty .text-link {
    grid-column: auto;
    width: max-content;
  }

  .services-section,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .services-heading {
    position: static;
  }

  .about-mark {
    min-height: 480px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-heading {
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 0.24);
  }

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

  .site-footer-main > a:last-child {
    grid-column: 2;
  }

  .project-hero-grid,
  .archive-hero {
    grid-template-columns: 1fr;
  }

  .project-content figure {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (max-width: 620px) {
  :root {
    --content: calc(100vw - 32px);
    --space-section: 80px;
  }

  body {
    font-size: 16px;
  }

  .hero-copy {
    width: calc(100vw - 40px);
    padding: 72px 0 64px;
  }

  .hero h1 {
    margin-bottom: 30px;
    font-size: clamp(3.45rem, 17vw, 5rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-brand {
    min-height: 390px;
  }

  .hero-brand > img {
    width: min(68%, 280px);
  }

  .hero-footnote {
    grid-template-columns: 44px 1fr;
    padding: 18px 20px;
  }

  .work-section,
  .approach-section,
  .services-section,
  .archive-projects,
  .project-next {
    padding-right: 20px;
    padding-left: 20px;
  }

  .section-intro h2,
  .services-heading h2,
  .about-copy h2,
  .contact-heading h2,
  .archive-hero h1,
  .project-hero h1,
  .not-found-page h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .project-entry {
    padding: 36px 0 54px;
  }

  .project-image-placeholder {
    min-height: 300px;
  }

  .services-section {
    gap: 50px;
  }

  .service-list li {
    grid-template-columns: 36px 1fr;
    gap: 14px;
  }

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

  .process-rail > div,
  .process-rail > div:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-rail > div:last-child {
    border-bottom: 0;
  }

  .process-rail span {
    margin-bottom: 46px;
  }

  .about-mark {
    min-height: 370px;
  }

  .about-copy,
  .contact-heading,
  .contact-form-wrap {
    padding: 76px 20px;
  }

  .site-footer {
    padding: 60px 20px 26px;
  }

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

  .site-footer-main > a:last-child {
    grid-column: auto;
  }

  .site-footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer-legal p:first-child {
    margin-right: 0;
  }

  .project-hero,
  .archive-hero,
  .not-found-page {
    padding-right: 20px;
    padding-left: 20px;
  }

  .project-back {
    margin-bottom: 58px;
  }

  .project-content {
    width: calc(100vw - 40px);
  }

}

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

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