@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 75% 125%;
  font-display: swap;
  src: url("../assets/fonts/archivo-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 75% 125%;
  font-display: swap;
  src: url("../assets/fonts/archivo-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light dark;
  --page: #f2f2ed;
  --surface: #e8e9e3;
  --surface-strong: #dcddd6;
  --text: #171917;
  --muted: #5e625c;
  --border: #c8cbc3;
  --accent: #f0c400;
  --accent-hover: #dcb400;
  --accent-ink: #171917;
  --header-bg: rgb(242 242 237 / 94%);
  --image-shade: rgb(15 17 15 / 15%);
  --focus: #826c00;
  --max-width: 1400px;
  --gutter: clamp(1rem, 3vw, 3.25rem);
  --section-space: clamp(5rem, 9vw, 9rem);
  --header-height: 72px;
  --shadow: 0 20px 60px rgb(36 38 34 / 12%);
}

@media (prefers-color-scheme: dark) {
  :root {
    --page: #111310;
    --surface: #1a1d18;
    --surface-strong: #242820;
    --text: #f0f1eb;
    --muted: #afb4aa;
    --border: #343930;
    --accent: #f0c400;
    --accent-hover: #ffda2c;
    --accent-ink: #171917;
    --header-bg: rgb(17 19 16 / 94%);
    --image-shade: rgb(10 11 9 / 24%);
    --focus: #ffe160;
    --shadow: 0 24px 70px rgb(0 0 0 / 28%);
  }
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--page);
  color: var(--text);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .mobile-action-bar {
  display: none;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

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

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

h1,
h2,
h3 {
  font-family: "Archivo", Arial, sans-serif;
  font-stretch: 92%;
  font-weight: 780;
  letter-spacing: -0.035em;
  line-height: 1.02;
  overflow-wrap: break-word;
}

h2 {
  max-width: 14ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.25rem, 5vw, 5rem);
}

h3 {
  font-size: clamp(1.6rem, 2.3vw, 2.5rem);
}

p {
  color: var(--muted);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  background: var(--text);
  color: var(--page);
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-height);
  border-bottom: 1px solid var(--border);
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(224px, 0.8fr) auto minmax(260px, 1fr);
  align-items: center;
  width: min(100%, var(--max-width));
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
  column-gap: clamp(1rem, 2vw, 2rem);
}

.brand {
  display: flex;
  width: 224px;
  height: 58px;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 0.35rem 0.65rem;
  overflow: hidden;
  background: #151716;
}

.brand img {
  display: none;
}

.brand::before {
  width: 84px;
  height: 48px;
  flex: 0 0 84px;
  background: url("../assets/images/logo-transparent.png") -36px 0 / 155px 74px no-repeat;
  content: "";
}

.brand::after {
  min-width: 0;
  color: #fff;
  content: attr(data-brand-name);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  height: 100%;
  gap: clamp(0.8rem, 1.5vw, 1.5rem);
  white-space: nowrap;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  transition: color 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="page"] {
  color: var(--text);
}

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

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.submenu-toggle {
  display: grid;
  width: 24px;
  height: 32px;
  margin-left: 0.15rem;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.submenu-toggle span,
.mobile-nav-heading button span {
  display: block;
  width: 7px;
  height: 7px;
  transform: translateY(-2px) rotate(45deg);
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transition: transform 180ms ease;
}

.submenu-toggle[aria-expanded="true"] span,
.mobile-nav-heading button[aria-expanded="true"] span {
  transform: translateY(2px) rotate(225deg);
}

.submenu {
  position: absolute;
  top: calc(100% - 1px);
  left: -1rem;
  display: grid;
  width: 320px;
  padding: 0.7rem;
  transform: translateY(-8px);
  visibility: hidden;
  border: 1px solid var(--border);
  background: var(--page);
  box-shadow: var(--shadow);
  opacity: 0;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
}

.submenu a {
  padding: 0.75rem 0.8rem;
  font-size: 0.92rem;
  font-weight: 620;
}

.submenu a:hover,
.submenu a:focus-visible {
  background: var(--surface);
}

.nav-dropdown:hover .submenu,
.nav-dropdown:focus-within .submenu,
.nav-dropdown.is-open .submenu {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  white-space: nowrap;
}

.header-phone {
  font-size: 0.9rem;
  font-weight: 720;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.35rem;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

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

.button-primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.button-primary:hover {
  background: var(--accent-hover);
}

.button-secondary {
  border-color: var(--text);
  background: transparent;
  color: var(--text);
}

.button-secondary:hover {
  background: var(--text);
  color: var(--page);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px 9px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.mobile-menu {
  position: absolute;
  top: 100%;
  right: 0;
  bottom: auto;
  left: 0;
  z-index: 19;
  display: none;
  height: calc(100dvh - var(--header-height));
  overflow-y: auto;
  padding: 1rem var(--gutter) 7rem;
  border-top: 1px solid var(--border);
  background: var(--page);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu nav > a,
.mobile-nav-heading {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  font-size: 1.15rem;
  font-weight: 700;
}

.mobile-nav-heading > a {
  display: flex;
  flex: 1;
  align-items: center;
  align-self: stretch;
}

.mobile-menu nav > a[aria-current="page"],
.mobile-nav-heading > a[aria-current="page"],
.mobile-submenu a[aria-current="page"] {
  color: var(--accent);
}

.mobile-nav-heading button {
  display: grid;
  width: 52px;
  height: 52px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
}

.mobile-submenu {
  padding: 0.4rem 0 0.8rem 1rem;
  border-bottom: 1px solid var(--border);
}

.mobile-submenu[hidden] {
  display: none;
}

.mobile-submenu a {
  display: block;
  padding: 0.65rem 0;
  color: var(--muted);
}

.mobile-menu-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  min-height: calc(100dvh - var(--header-height));
  background: var(--page);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(3.25rem, 6vw, 6rem) clamp(2rem, 3vw, 3rem) clamp(3rem, 5vw, 5rem) max(var(--gutter), calc((100vw - var(--max-width)) / 2 + var(--gutter)));
}

.eyebrow,
.section-kicker {
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero h1 {
  max-width: none;
  margin-bottom: 1.75rem;
  font-size: clamp(3.2rem, 4.1vw, 5.4rem);
}

.hero h1 span {
  display: block;
  color: var(--muted);
}

.hero-lead {
  max-width: 36rem;
  margin-bottom: 2rem;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions,
.quote-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid currentColor;
  font-weight: 720;
  transition: border-color 180ms ease, color 180ms ease;
}

.text-link:hover {
  border-color: var(--accent);
  color: var(--muted);
}

.hero-media {
  position: relative;
  min-height: calc(100dvh - var(--header-height));
  overflow: hidden;
  background: var(--surface-strong);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--image-shade), transparent 28%);
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  animation: hero-image-in 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-copy > * {
  animation: hero-copy-in 680ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-copy > :nth-child(2) {
  animation-delay: 70ms;
}

.hero-copy > :nth-child(3) {
  animation-delay: 130ms;
}

.hero-copy > :nth-child(4) {
  animation-delay: 190ms;
}

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

@keyframes hero-image-in {
  from {
    transform: scale(1.035);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.section {
  padding: var(--section-space) 0;
}

.section-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.transformation {
  padding-top: clamp(4rem, 7vw, 7rem);
  padding-bottom: 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.transformation-heading {
  max-width: 900px;
  margin-bottom: clamp(2.5rem, 4.5vw, 4.5rem);
}

.transformation-heading h2 {
  max-width: 13ch;
}

.transformation-heading > p:last-child {
  max-width: 64ch;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.transformation-sequence {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
  background: var(--border);
}

.transformation-sequence figure {
  min-width: 0;
  margin: 0;
  background: var(--page);
}

.transformation-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-strong);
}

.transformation-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1), filter 300ms ease;
}

.transformation-sequence figure:first-child img {
  object-position: center;
}

.transformation-sequence figure:nth-child(2) img {
  object-position: 58% center;
}

.transformation-sequence figure:nth-child(3) img {
  object-position: 49% 25%;
}

.transformation-sequence figure:last-child img {
  object-position: center 58%;
}

.transformation-sequence figure:hover img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.04);
}

.transformation-sequence figcaption {
  min-height: 112px;
  padding: 1.25rem 1.2rem 1.35rem;
  border-top: 4px solid var(--accent);
}

.transformation-sequence figcaption strong,
.transformation-sequence figcaption span {
  display: block;
}

.transformation-sequence figcaption strong {
  margin-bottom: 0.45rem;
  font-size: 1.03rem;
  line-height: 1.25;
}

.transformation-sequence figcaption span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.transformation-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 1.75rem clamp(1.2rem, 2.4vw, 2.25rem);
  gap: 2rem;
  background: var(--accent);
  color: var(--accent-ink);
}

.transformation-summary p {
  max-width: 78ch;
  margin: 0;
  color: var(--accent-ink);
}

.transformation-summary .text-link {
  white-space: nowrap;
}

.services-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(3rem, 7vw, 8rem);
}

.services-intro {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.services-intro > p:not(.section-kicker) {
  max-width: 52ch;
  margin-bottom: 2.2rem;
  font-size: 1.08rem;
}

.services-photo {
  position: relative;
  height: 250px;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
}

.services-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: var(--accent);
  content: "";
}

.services-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 30%;
  filter: saturate(0.84) contrast(1.03);
}

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

.service-index > a {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr) 2.5rem;
  align-items: start;
  min-height: 126px;
  padding: 1.6rem 1rem 1.6rem 0;
  border-bottom: 1px solid var(--border);
  transition: background-color 180ms ease, padding 180ms ease;
}

.service-index > a:hover,
.service-index > a:focus-visible {
  padding-left: 1rem;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}

.service-number {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.08em;
}

.service-copy {
  display: grid;
  gap: 0.7rem;
}

.service-copy strong {
  font-family: "Archivo", Arial, sans-serif;
  font-stretch: 90%;
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  font-weight: 730;
  letter-spacing: -0.035em;
  line-height: 1;
}

.service-copy small {
  max-width: 48ch;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.link-mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid var(--border);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.service-index > a:hover .link-mark,
.service-index > a:focus-visible .link-mark {
  transform: rotate(90deg);
  border-color: var(--text);
  background: var(--text);
  color: var(--page);
}

.proof-heading {
  max-width: 850px;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.proof-heading p {
  max-width: 62ch;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.proof-gallery {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(0.8rem, 1.5vw, 1.4rem);
}

.proof-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
}

.proof-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03);
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1), filter 300ms ease;
}

.proof-gallery figure:hover img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.04);
}

.proof-gallery figcaption {
  display: grid;
  padding: 1.2rem 0 0;
  gap: 0.35rem;
  background: var(--page);
}

.proof-gallery figcaption strong {
  font-size: 1.05rem;
}

.proof-gallery figcaption span {
  color: var(--muted);
  font-size: 0.9rem;
}

.proof-link {
  margin-top: 2rem;
}

.audiences {
  background: var(--surface);
}

.audiences h2 {
  max-width: 13ch;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.audience-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--text);
}

.audience-columns article {
  padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 4vw, 4rem) 0 0;
}

.audience-columns article + article {
  padding-right: 0;
  padding-left: clamp(1rem, 4vw, 4rem);
  border-left: 1px solid var(--border);
}

.audience-columns h3 {
  margin-bottom: 1.2rem;
}

.audience-columns p {
  max-width: 48ch;
  margin-bottom: 2rem;
  font-size: 1.03rem;
}

.service-area {
  padding-top: calc(var(--section-space) * 0.8);
  padding-bottom: calc(var(--section-space) * 0.8);
  border-bottom: 1px solid var(--border);
}

.service-area-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 9rem);
}

.service-area h2 {
  max-width: 11ch;
  margin: 0;
}

.area-copy {
  padding-left: clamp(1.5rem, 4vw, 4rem);
  border-left: 5px solid var(--accent);
}

.area-copy p {
  max-width: 58ch;
  margin-bottom: 1rem;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.area-copy p:last-child {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.quote-section {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  min-height: 590px;
  background: var(--surface);
}

.quote-photo {
  position: relative;
  overflow: hidden;
}

.quote-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 72%, var(--image-shade));
  content: "";
}

.quote-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(0.8) contrast(1.05);
}

.quote-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem) max(var(--gutter), calc((100vw - var(--max-width)) / 2 + var(--gutter))) clamp(4rem, 8vw, 8rem) clamp(3rem, 7vw, 8rem);
}

.quote-content h2 {
  margin-bottom: 1.5rem;
}

.quote-content > p {
  max-width: 45ch;
  margin-bottom: 2rem;
  font-size: 1.12rem;
}

.site-footer {
  padding: clamp(4rem, 7vw, 7rem) var(--gutter) 0;
  background: var(--page);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  width: min(100%, var(--max-width));
  margin: 0 auto;
  gap: clamp(4rem, 9vw, 9rem);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand .brand {
  margin-bottom: 1.6rem;
}

.footer-brand p {
  max-width: 28ch;
  margin-bottom: 2rem;
}

.footer-brand > a:not(.brand) {
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.8fr;
  gap: clamp(2rem, 5vw, 5rem);
}

.footer-nav h2 {
  max-width: none;
  margin-bottom: 1.3rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-cookie {
  display: block;
  width: fit-content;
  margin-bottom: 0.72rem;
  padding: 0;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 0.93rem;
  text-align: left;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-cookie:hover,
.footer-cookie:focus-visible {
  border-color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--max-width));
  margin: clamp(3rem, 6vw, 6rem) auto 0;
  padding: 1.2rem 0;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.83rem;
}

.mobile-action-bar {
  display: none;
}

.motion-ready .reveal {
  transform: translateY(28px);
  opacity: 0;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), opacity 700ms ease;
}

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

/* Shared interior-page system. The homepage compositions remain one-off. */
.interior-main {
  overflow: clip;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 680;
}

.breadcrumb a {
  border-bottom: 1px solid transparent;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  border-color: var(--accent);
  color: var(--text);
}

.breadcrumb span[aria-hidden="true"] {
  color: var(--border);
}

.interior-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  min-height: calc(82dvh - var(--header-height));
  border-bottom: 1px solid var(--border);
}

.interior-hero-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 4vw, 4.5rem) clamp(3rem, 6vw, 6rem) max(var(--gutter), calc((100vw - var(--max-width)) / 2 + var(--gutter)));
}

.interior-hero h1,
.legal-hero h1,
.not-found h1 {
  max-width: 12.5ch;
  margin-bottom: 1.6rem;
  font-size: clamp(3.15rem, 5.25vw, 6rem);
  font-stretch: 92%;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
}

.interior-hero-lead {
  max-width: 47ch;
  margin-bottom: 2rem;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.55;
}

.service-location {
  max-width: 47ch;
  margin: -0.75rem 0 1.75rem;
  padding-left: 0.9rem;
  border-left: 3px solid var(--accent);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 680;
  line-height: 1.45;
}

.interior-hero-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--surface-strong);
}

.interior-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--image-shade), transparent 28%);
  content: "";
  pointer-events: none;
}

.interior-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

.interior-hero-media figcaption {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 1;
  max-width: 28rem;
  padding: 0.8rem 1rem;
  background: rgb(17 19 16 / 86%);
  color: #f2f2ed;
  font-size: 0.82rem;
  line-height: 1.45;
}

.route-section {
  padding: var(--section-space) 0;
}

.route-section.is-surface {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.route-section.is-dark {
  background: #171915;
  color: #f2f2ed;
}

.route-section.is-dark p {
  color: #c5c6bf;
}

.route-section.is-dark .work-chain {
  border-color: #f2f2ed;
}

.route-section.is-dark .work-chain li {
  border-color: #454840;
}

.route-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.route-heading {
  max-width: 900px;
  margin-bottom: clamp(2.75rem, 5vw, 5rem);
}

.route-heading h2 {
  max-width: 13ch;
}

.route-heading > p:last-child {
  max-width: 63ch;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.answer-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 9rem);
}

.answer-lead h2 {
  margin: 0;
}

.answer-copy {
  padding-left: clamp(1.4rem, 3vw, 3rem);
  border-left: 5px solid var(--accent);
}

.answer-copy p {
  max-width: 62ch;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
}

.answer-copy p:last-child {
  margin-bottom: 0;
}

.decision-grid,
.scope-ledger,
.material-ledger,
.article-index {
  border-top: 1px solid var(--text);
}

.decision-item,
.scope-row,
.material-row,
.article-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr) auto;
  align-items: start;
  padding: clamp(1.5rem, 2.5vw, 2.4rem) 0;
  gap: clamp(1.5rem, 4vw, 4rem);
  border-bottom: 1px solid var(--border);
}

.decision-item strong,
.scope-row h3,
.material-row h3,
.article-row h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.1vw, 2.15rem);
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.article-row h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.1vw, 2.15rem);
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.decision-item p,
.scope-row p,
.material-row p,
.article-row p {
  max-width: 58ch;
  margin: 0;
}

.decision-item .link-mark {
  margin-top: 0.1rem;
}

.decision-item:hover,
.decision-item:focus-visible {
  background: color-mix(in srgb, var(--accent) 10%, transparent);
}

.work-chain {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--text);
}

.work-chain li {
  min-height: 190px;
  padding: 1.4rem 1.15rem 1.25rem;
  border-right: 1px solid var(--border);
}

.work-chain li:last-child {
  border-right: 0;
}

.work-chain strong {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.work-chain p {
  margin: 0;
  font-size: 0.9rem;
}

.work-chain li:last-child {
  background: var(--accent);
  color: var(--accent-ink);
}

.work-chain li:last-child p {
  color: var(--accent-ink);
}

.image-statement {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: stretch;
  min-height: 560px;
}

.image-statement > figure {
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background: var(--surface-strong);
}

.image-statement > figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

.image-statement > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem);
  background: var(--surface);
}

.image-statement > div h2 {
  max-width: 11ch;
}

.image-statement > div p {
  max-width: 48ch;
}

.image-statement-media {
  min-height: 420px;
  overflow: hidden;
  background: var(--surface-strong);
}

.image-statement-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

.image-statement-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem);
  background: var(--surface);
}

.image-statement-copy h2 {
  max-width: 11ch;
}

.image-statement-copy p {
  max-width: 48ch;
  font-size: 1.06rem;
}

.image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.image-pair figure {
  margin: 0;
  background: var(--page);
}

.image-pair img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03);
}

.image-pair figcaption {
  padding: 1rem 1.1rem 1.2rem;
  border-top: 4px solid var(--accent);
  font-weight: 730;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--text);
}

.comparison-grid article {
  padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 4vw, 4rem) 0 0;
}

.comparison-grid article + article {
  padding-right: 0;
  padding-left: clamp(1rem, 4vw, 4rem);
  border-left: 1px solid var(--border);
}

.comparison-grid h3 {
  margin-bottom: 1rem;
}

.factor-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  padding: clamp(2.5rem, 5vw, 5rem);
  gap: clamp(2rem, 6vw, 7rem);
  background: var(--accent);
  color: var(--accent-ink);
}

.factor-band h2,
.factor-band p,
.factor-band li {
  color: var(--accent-ink);
}

.factor-band h2 {
  margin: 0;
}

.factor-list,
.checklist,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.factor-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 2rem;
}

.factor-band > .factor-list:only-child {
  grid-column: 1 / -1;
}

.factor-list li,
.checklist li {
  position: relative;
  padding-left: 1.4rem;
}

.factor-list li::before,
.checklist li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  background: currentColor;
  content: "";
}

.checklist {
  display: grid;
  gap: 0.85rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.5vw, 1.4rem);
}

.project-card {
  grid-column: span 6;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
}

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

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

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03);
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1), filter 250ms ease;
}

.project-card.is-wide img {
  aspect-ratio: 16 / 9;
}

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

.project-card figcaption {
  padding: 1.25rem 1.3rem 1.45rem;
}

.project-card strong,
.project-card span {
  display: block;
}

.project-card strong {
  margin-bottom: 0.4rem;
  font-size: 1.15rem;
}

.project-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.capability-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.capability-map > article {
  min-height: 260px;
  padding: clamp(1.4rem, 2.4vw, 2.2rem);
  background: var(--page);
}

.is-dark .capability-map > article {
  background: #171915;
}

.capability-map > article > span {
  display: block;
  margin-bottom: clamp(3rem, 6vw, 6rem);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.capability-map h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.capability-map p {
  margin: 0;
}

.capability-list {
  border-top: 1px solid var(--text);
}

.capability-list article,
.capability-list li {
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--border);
}

.capability-list h3,
.capability-list li strong {
  display: block;
  margin-bottom: 0.7rem;
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
}

.capability-list p,
.capability-list li span {
  display: block;
  margin: 0;
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--text);
}

.fact-strip > div {
  min-height: 180px;
  padding: 1.5rem 1.5rem 1rem 0;
  border-right: 1px solid var(--border);
}

.fact-strip > div + div {
  padding-left: 1.5rem;
}

.fact-strip > div:last-child {
  border-right: 0;
}

.fact-strip strong {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact-strip p {
  margin: 0;
  color: var(--text);
  font-size: 1.12rem;
  font-weight: 680;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 9rem);
}

.contact-aside {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.contact-aside a {
  display: block;
  width: fit-content;
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
  font-weight: 730;
}

.contact-direct {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.contact-direct > p:last-child {
  margin-top: 1.7rem;
}

.contact-line {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-line span,
.contact-line strong {
  display: block;
}

.contact-line span {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-line strong {
  color: var(--text);
  font-size: 1.1rem;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.quote-form .form-heading,
.quote-form .field-row,
.quote-form > .field,
.quote-form > .button,
.quote-form .form-note {
  grid-column: 1 / -1;
}

.quote-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.quote-form > .button {
  justify-self: start;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field.is-full,
.form-actions {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 730;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--page);
  color: var(--text);
  font: inherit;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
  opacity: 0.88;
}

.field small {
  color: var(--muted);
}

.consent-row {
  display: flex;
  grid-column: 1 / -1;
  align-items: flex-start;
  gap: 0.7rem;
}

.consent-row input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  accent-color: var(--accent);
}

.consent-row label {
  max-width: 62ch;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.legal-hero {
  padding: clamp(4rem, 8vw, 8rem) var(--gutter);
  border-bottom: 1px solid var(--border);
}

.legal-hero-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.legal-hero h1 {
  max-width: 13ch;
}

.legal-hero p {
  max-width: 58ch;
  font-size: 1.1rem;
}

.legal-hero > * {
  width: min(100%, var(--max-width));
  margin-right: auto;
  margin-left: auto;
}

.legal-notice {
  width: min(calc(100% - (2 * var(--gutter))), var(--max-width));
  margin: clamp(2rem, 4vw, 4rem) auto 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.48fr) minmax(0, 1.52fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 9rem);
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.legal-toc a {
  display: block;
  padding: 0.55rem 0;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.legal-copy {
  max-width: 780px;
}

.legal-copy section {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: calc(var(--header-height) + 2rem);
}

.legal-copy h2 {
  max-width: none;
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
}

.legal-copy h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.legal-copy p,
.legal-copy li {
  max-width: 72ch;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table > div {
  display: grid;
  grid-template-columns: minmax(130px, 0.5fr) minmax(0, 1.5fr);
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.data-table dt {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 720;
}

.data-table dd {
  margin: 0;
}

.data-table th,
.data-table td {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  width: 34%;
  color: var(--muted);
  font-size: 0.86rem;
}

.notice {
  padding: 1.4rem 1.5rem;
  border-left: 5px solid var(--accent);
  background: var(--surface);
}

.notice p:last-child {
  margin-bottom: 0;
}

.route-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  padding: clamp(3rem, 7vw, 7rem) max(var(--gutter), calc((100vw - var(--max-width)) / 2 + var(--gutter)));
  gap: clamp(2rem, 6vw, 7rem);
  background: var(--surface);
}

.route-cta h2 {
  max-width: 24ch;
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 3.8vw, 4.25rem);
  line-height: 1.02;
  text-wrap: balance;
}

.route-cta p {
  max-width: 56ch;
  margin: 0;
}

.route-cta-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.not-found {
  display: grid;
  min-height: calc(100dvh - var(--header-height));
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.not-found-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 5vw, 5rem) clamp(4rem, 8vw, 8rem) max(var(--gutter), calc((100vw - var(--max-width)) / 2 + var(--gutter)));
}

.not-found h1 {
  max-width: 9ch;
}

.not-found-photo {
  min-height: 520px;
  overflow: hidden;
}

.not-found > figure {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
}

.not-found > figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.07);
}

.not-found-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.07);
}

.recovery-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 var(--gutter) var(--section-space);
  gap: 1px;
}

.recovery-links a {
  min-height: 150px;
  padding: 1.5rem;
  background: var(--surface);
}

.recovery-links span,
.recovery-links strong {
  display: block;
}

.recovery-links span {
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.recovery-links strong {
  font-size: 1.3rem;
}

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

  .brand {
    width: 186px;
    height: 54px;
    gap: 0.35rem;
    padding-right: 0.45rem;
    padding-left: 0.45rem;
  }

  .brand::before {
    width: 70px;
    flex-basis: 70px;
    background-position: -33px 0;
    background-size: 140px 67px;
  }

  .brand::after {
    font-size: 0.66rem;
  }

  .desktop-nav {
    gap: 0.85rem;
  }

  .desktop-nav .nav-link {
    font-size: 0.86rem;
  }

  .header-phone {
    display: none;
  }

  .header-actions {
    gap: 0.6rem;
  }

  .hero-copy {
    padding-right: 3rem;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-quote {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .nav-ready .mobile-menu:not([hidden]),
  html:not(.nav-ready) .mobile-menu {
    display: block;
  }

  html:not(.nav-ready) .site-header {
    position: relative;
    height: auto;
  }

  html:not(.nav-ready) .header-inner {
    height: var(--header-height);
  }

  html:not(.nav-ready) .menu-toggle {
    display: none;
  }

  html:not(.nav-ready) .mobile-menu {
    position: static;
    height: auto;
    padding-bottom: 2rem;
  }

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

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

  .transformation-sequence {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid {
    gap: 3rem;
  }

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

  .interior-hero h1 {
    font-size: clamp(3.2rem, 7.3vw, 5.5rem);
  }

  .work-chain {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .work-chain li:nth-child(3) {
    border-right: 0;
  }

  .work-chain li:nth-child(n + 4) {
    border-top: 1px solid var(--border);
  }

  .project-card.is-wide,
  .project-card.is-narrow {
    grid-column: span 6;
  }

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

@media (max-width: 767px) {
  :root {
    --header-height: 64px;
    --section-space: 4.75rem;
  }

  body {
    padding-bottom: 64px;
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
    hyphens: auto;
    overflow-wrap: anywhere;
  }

  .audiences h2 {
    font-size: clamp(2rem, 8.8vw, 2.8rem);
  }

  .header-inner {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .brand {
    width: 190px;
    height: 50px;
    padding: 0.25rem 0.45rem;
  }

  .brand::before {
    width: 72px;
    height: 42px;
    flex-basis: 72px;
    background-position: -33px 0;
    background-size: 140px 67px;
  }

  .brand::after {
    font-size: 0.64rem;
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }

  .hero-copy {
    min-height: 58dvh;
    padding: 3rem 1rem 2.75rem;
  }

  .hero h1 {
    max-width: 9.5ch;
    margin-bottom: 1.3rem;
    font-size: clamp(3.05rem, 14.2vw, 4.2rem);
    line-height: 0.94;
  }

  .hero-lead {
    max-width: 34ch;
    margin-bottom: 1.7rem;
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
    flex-wrap: wrap;
    gap: 1rem;
  }

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

  .hero-media {
    min-height: 42dvh;
  }

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

  .interior-hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }

  .interior-hero-copy {
    min-height: 0;
    padding: 3rem 1rem;
  }

  .interior-hero h1,
  .legal-hero h1,
  .not-found h1 {
    max-width: none;
    margin-bottom: 1.25rem;
    font-size: clamp(2.45rem, 10.2vw, 3.25rem);
    letter-spacing: -0.025em;
    line-height: 1.02;
    overflow-wrap: break-word;
    hyphens: auto;
    word-spacing: 0.02em;
  }

  .interior-hero-media {
    min-height: 330px;
  }

  .interior-hero-media figcaption {
    right: 0.8rem;
    bottom: 0.8rem;
    left: 0.8rem;
  }

  .breadcrumb {
    margin-bottom: 2.2rem;
  }

  .route-inner {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .answer-lead,
  .factor-band,
  .capability-map,
  .contact-layout,
  .legal-layout,
  .route-cta,
  .not-found {
    grid-template-columns: 1fr;
  }

  .answer-lead,
  .capability-map,
  .contact-layout,
  .legal-layout {
    gap: 2.5rem;
  }

  .answer-copy {
    padding-left: 1.1rem;
  }

  .decision-item,
  .scope-row,
  .material-row,
  .article-row {
    grid-template-columns: 1fr auto;
    gap: 0.7rem 1rem;
  }

  .decision-item p,
  .scope-row p,
  .material-row p,
  .article-row p {
    grid-column: 1 / -1;
  }

  .work-chain {
    grid-template-columns: 1fr 1fr;
  }

  .work-chain li,
  .work-chain li:nth-child(3) {
    min-height: 170px;
    border-right: 1px solid var(--border);
    border-top: 1px solid var(--border);
  }

  .work-chain li:nth-child(even) {
    border-right: 0;
  }

  .work-chain li:first-child,
  .work-chain li:nth-child(2) {
    border-top-color: var(--text);
  }

  .work-chain li:last-child {
    grid-column: 1 / -1;
    min-height: 140px;
  }

  .image-statement {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }

  .image-statement-media {
    min-height: 310px;
  }

  .image-statement > figure {
    min-height: 310px;
  }

  .image-statement-copy {
    padding: 3.5rem 1rem;
  }

  .image-statement > div {
    padding: 3.5rem 1rem;
  }

  .image-pair,
  .comparison-grid,
  .fact-strip {
    grid-template-columns: 1fr;
  }

  .comparison-grid article,
  .comparison-grid article + article {
    padding: 2rem 0;
    border-left: 0;
  }

  .comparison-grid article + article {
    border-top: 1px solid var(--border);
  }

  .factor-band {
    padding: 3rem 1rem;
  }

  .factor-list {
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-card.is-wide,
  .project-card.is-narrow {
    grid-column: 1 / -1;
  }

  .capability-map > div:first-child,
  .contact-aside,
  .contact-direct,
  .legal-toc {
    position: static;
  }

  .fact-strip > div,
  .fact-strip > div + div {
    min-height: 0;
    padding: 1.4rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .fact-strip strong {
    margin-bottom: 0.8rem;
  }

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

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

  .field.is-full,
  .form-actions,
  .consent-row {
    grid-column: auto;
  }

  .legal-hero {
    padding: 4rem 1rem;
  }

  .legal-toc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem;
  }

  .data-table,
  .data-table tbody,
  .data-table tr,
  .data-table th,
  .data-table td {
    display: block;
    width: 100%;
  }

  .data-table th {
    padding-bottom: 0.2rem;
    border-bottom: 0;
  }

  .data-table > div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .data-table td {
    padding-top: 0;
  }

  .route-cta {
    align-items: start;
    padding: 3.5rem 1rem 4rem;
  }

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

  .not-found-copy {
    min-height: 620px;
    padding: 4rem 1rem;
  }

  .not-found-photo {
    min-height: 320px;
  }

  .not-found > figure {
    min-height: 320px;
  }

  .recovery-links {
    grid-template-columns: 1fr;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .section-inner {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .transformation {
    padding-top: 3.75rem;
  }

  .transformation-heading {
    margin-bottom: 2.5rem;
  }

  .transformation-sequence {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .transformation-sequence figcaption {
    min-height: 126px;
    padding: 1rem 0.85rem 1.15rem;
  }

  .transformation-sequence figcaption strong {
    font-size: 0.94rem;
  }

  .transformation-sequence figcaption span {
    font-size: 0.8rem;
  }

  .transformation-summary {
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem;
    gap: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .services-intro {
    position: static;
  }

  .services-photo {
    height: 225px;
  }

  .service-index > a {
    grid-template-columns: 2.5rem minmax(0, 1fr) 2rem;
    min-height: 118px;
    padding: 1.4rem 0;
  }

  .service-index > a:hover,
  .service-index > a:focus-visible {
    padding-left: 0.5rem;
  }

  .service-copy strong {
    font-size: 1.6rem;
  }

  .proof-heading {
    margin-bottom: 3rem;
  }

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

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

  .audience-columns article,
  .audience-columns article + article {
    padding: 2rem 0;
    border-left: 0;
  }

  .audience-columns article + article {
    border-top: 1px solid var(--border);
  }

  .service-area-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2.5rem;
  }

  .area-copy {
    padding-left: 1.2rem;
  }

  .quote-section {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }

  .quote-photo {
    height: 280px;
  }

  .quote-photo::after {
    background: linear-gradient(180deg, transparent 70%, var(--image-shade));
  }

  .quote-content {
    padding: 3.5rem 1rem 4rem;
  }

  .quote-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .site-footer {
    padding: 4rem 1rem 0;
  }

  .footer-inner {
    gap: 3.5rem;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1.5rem;
  }

  .footer-nav > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 25;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    min-height: 64px;
    border-top: 1px solid var(--border);
    background: var(--page);
  }

  .mobile-action-bar a {
    display: grid;
    min-width: 0;
    place-items: center;
    font-size: 0.92rem;
    font-weight: 800;
    white-space: nowrap;
  }

  .mobile-action-bar a + a {
    background: var(--accent);
    color: var(--accent-ink);
  }

  .mobile-menu-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .hero-copy {
    min-height: 0;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 13.8vw, 3.5rem);
  }

  .eyebrow {
    font-size: 0.68rem;
  }

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

  .footer-nav > div:first-child {
    grid-column: auto;
  }
}

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

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

  .motion-ready .reveal {
    transform: none;
    opacity: 1;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--page);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
