@font-face {
  font-family: "Thunder";
  src: url("assets/fonts/Thunder-LC.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Thunder";
  src: url("assets/fonts/Thunder-MediumLC.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Thunder";
  src: url("assets/fonts/Thunder-SemiBoldLC.woff2") format("woff2");
  font-style: normal;
  font-weight: 650;
  font-display: swap;
}

:root {
  --black: #050505;
  --white: #fff;
  --blue: #4169e1;
  --paper: #f7f7f5;
  --muted: #5b5b5b;
  --line: #cfcfcb;
  --line-dark: #303030;
  --header-height: 74px;
  --page-pad: clamp(20px, 4vw, 64px);
  --page: var(--page-pad);
  --content-width: 1480px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  background: var(--white);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--black);
  background: var(--white);
  font-family: "Thunder", sans-serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

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

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

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

button,
a,
select {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 11px 15px;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-150%);
}

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

.container {
  width: min(100%, var(--content-width));
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--black);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  height: 100%;
}

.brand {
  display: inline-flex;
  width: 112px;
  height: 40px;
  align-items: center;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 40px);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.site-nav > a:not(.button) {
  position: relative;
  min-height: 44px;
  padding-top: 12px;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 19px 11px;
  color: var(--white);
  font-size: 17px;
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  background: var(--blue);
  border: 1px solid var(--blue);
  transition:
    color 200ms ease,
    background 200ms ease,
    border-color 200ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.button-small {
  min-height: 44px;
  padding: 12px 16px 9px;
  font-size: 15px;
}

.button-outline {
  color: var(--black);
  background: transparent;
  border-color: var(--black);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

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

.button-light:hover,
.button-light:focus-visible {
  color: var(--white);
  background: var(--black);
  border-color: var(--white);
}

.menu-toggle {
  display: none;
  min-width: 68px;
  min-height: 44px;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  padding: 0;
  text-transform: uppercase;
  background: transparent;
  border: 0;
}

.menu-icon {
  width: 24px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 6px currentColor;
  transition: transform 200ms ease;
}

.page-main {
  padding-top: var(--header-height);
}

.eyebrow {
  margin: 0;
  font-size: 14px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow-blue {
  color: var(--blue);
}

.display {
  margin: 0;
  font-size: clamp(66px, 7.2vw, 118px);
  font-weight: 650;
  line-height: 0.86;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-wrap: balance;
  font-kerning: normal;
  font-feature-settings: "kern" 1;
}

.page-title {
  margin: 0;
  font-size: clamp(64px, 7.5vw, 120px);
  font-weight: 650;
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-title {
  margin: 0;
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 650;
  line-height: 0.92;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  text-wrap: balance;
}

.subheading {
  margin: 0;
  font-size: clamp(29px, 3vw, 45px);
  font-weight: 650;
  line-height: 1;
}

.lead {
  max-width: 690px;
  margin: 0;
  font-size: clamp(25px, 2.4vw, 37px);
  line-height: 1.08;
}

.body-copy {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 23px);
}

.section {
  padding-block: clamp(72px, 8vw, 112px);
}

.section-compact {
  padding-block: clamp(54px, 6vw, 84px);
}

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

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

.section-head {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-head .section-title {
  max-width: 900px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 4px;
  font-size: 16px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid currentColor;
  transition: color 200ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--blue);
}

.text-link span {
  transition: transform 200ms var(--ease);
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(6px);
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  height: min(780px, calc(100svh - var(--header-height)));
  min-height: 610px;
  max-width: 1800px;
  margin-inline: auto;
  border-bottom: 1px solid var(--black);
}

.home-hero-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(42px, 5vw, 70px) var(--page-pad) clamp(34px, 4vw, 54px);
}

.home-hero-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.home-hero .display {
  max-width: 900px;
  margin-block: 36px 28px;
}

.home-hero-bottom {
  display: grid;
  grid-template-columns: minmax(250px, 510px) auto;
  gap: 40px;
  align-items: end;
}

.home-hero-bottom p {
  margin: 0;
  font-size: clamp(21px, 1.8vw, 29px);
  line-height: 1.15;
}

.home-hero-media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--black);
  border-left: 1px solid var(--black);
}

.home-hero-media img,
.media-frame img,
.split-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.home-hero-media figcaption,
.media-frame figcaption,
.split-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 15px 9px;
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--blue);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(380px, 1fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: start;
}

.intro-copy {
  display: grid;
  gap: 28px;
}

.compact-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.compact-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 13px 0 10px;
  border-bottom: 1px solid var(--line);
}

.compact-list span {
  color: var(--blue);
  font-size: 13px;
}

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

.overview-row {
  display: grid;
  grid-template-columns: 56px minmax(220px, 0.8fr) minmax(260px, 1fr) auto;
  gap: 32px;
  align-items: center;
  min-height: 92px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
  transition:
    color 200ms ease,
    background 200ms ease,
    padding 240ms var(--ease);
}

.overview-row:hover {
  padding-inline: 20px;
  color: var(--white);
  background: var(--blue);
}

.overview-row > span {
  font-size: 13px;
  letter-spacing: 0.12em;
}

.overview-row h3 {
  margin: 0;
  font-size: clamp(29px, 3vw, 45px);
  font-weight: 650;
  line-height: 0.95;
  text-transform: uppercase;
}

.overview-row p {
  margin: 0;
  color: #c8c8c8;
  font-size: 18px;
}

.overview-row:hover p {
  color: var(--white);
}

.overview-arrow {
  font-size: 23px;
}

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

.step {
  min-height: 220px;
  padding: 22px 24px 24px;
  border-right: 1px solid var(--black);
}

.step:last-child {
  border-right: 0;
}

.step > span {
  display: block;
  margin-bottom: 42px;
  color: var(--blue);
  font-size: 14px;
}

.step h3 {
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(380px, 1.1fr);
  min-height: 570px;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.split-media {
  position: relative;
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid var(--black);
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 105px);
}

.split-content .section-title {
  margin: 24px 0 28px;
}

.category-mini-list {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--black);
}

.category-mini-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0 9px;
  border-bottom: 1px solid var(--line);
}

.category-mini-list span:last-child {
  color: var(--muted);
}

.location-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(420px, 1.3fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: center;
}

.location-band .section-title {
  max-width: 800px;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  padding-block: clamp(58px, 7vw, 90px);
}

.cta-band h2 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(47px, 5vw, 78px);
  font-weight: 650;
  line-height: 0.95;
  text-transform: uppercase;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  min-height: 480px;
  border-bottom: 1px solid var(--black);
}

.page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(52px, 7vw, 96px) var(--page-pad);
}

.page-hero-copy .page-title {
  margin: 38px 0 30px;
}

.page-hero-copy .lead {
  max-width: 600px;
}

.page-hero-media {
  min-height: 460px;
  overflow: hidden;
  background: var(--black);
  border-left: 1px solid var(--black);
}

.page-hero-simple {
  min-height: auto;
  padding-block: clamp(70px, 9vw, 120px);
  border-bottom: 1px solid var(--black);
}

.page-hero-simple .page-title {
  max-width: 1100px;
  margin-top: 42px;
}

.page-hero-simple .lead {
  margin-top: 35px;
}

.detail-list {
  border-top: 1px solid var(--black);
}

.detail-row {
  display: grid;
  grid-template-columns: 55px minmax(220px, 0.75fr) minmax(300px, 1fr);
  gap: clamp(24px, 5vw, 80px);
  padding: 29px 0 27px;
  border-bottom: 1px solid var(--line);
}

.detail-row > span {
  padding-top: 5px;
  color: var(--blue);
  font-size: 13px;
}

.detail-row h2,
.detail-row h3 {
  margin: 0;
  font-size: clamp(31px, 3.4vw, 51px);
  font-weight: 650;
  line-height: 0.95;
  text-transform: uppercase;
}

.detail-row p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 22px);
}

.process-flow {
  display: grid;
  grid-template-columns: minmax(270px, 0.65fr) minmax(450px, 1.35fr);
  gap: clamp(60px, 10vw, 150px);
}

.process-flow-copy {
  align-self: start;
}

.process-flow-copy .section-title {
  margin: 25px 0 25px;
}

.process-flow-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
  border-top: 1px solid var(--white);
}

.process-flow-list li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;
  padding: 23px 0 20px;
  border-bottom: 1px solid var(--line-dark);
  counter-increment: process;
}

.process-flow-list li::before {
  color: #9b9b9b;
  font-size: 13px;
  content: "0" counter(process);
}

.process-flow-list h3 {
  margin: 0 0 5px;
  font-size: 27px;
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
}

.process-flow-list p {
  max-width: 660px;
  margin: 0;
  color: #bdbdbd;
  font-size: 18px;
}

.product-category-list {
  border-top: 1px solid var(--black);
}

.category-row {
  display: grid;
  grid-template-columns: 50px minmax(210px, 0.65fr) minmax(260px, 1fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
  min-height: 112px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition:
    color 200ms ease,
    background 200ms ease,
    padding 220ms var(--ease);
}

.category-row:hover {
  padding-inline: 20px;
  color: var(--white);
  background: var(--blue);
}

.category-row > span {
  color: var(--blue);
  font-size: 13px;
}

.category-row:hover > span,
.category-row:hover p {
  color: var(--white);
}

.category-row h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 59px);
  font-weight: 650;
  line-height: 0.95;
  text-transform: uppercase;
}

.category-row p {
  margin: 0;
  color: var(--muted);
}

.capabilities-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--white);
  border-left: 1px solid var(--white);
}

.capability-cell {
  min-height: 170px;
  padding: 24px;
  border-right: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
}

.capability-cell span {
  display: block;
  margin-bottom: 42px;
  color: #a9a9a9;
  font-size: 13px;
}

.capability-cell h3 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 650;
  text-transform: uppercase;
}

.capability-cell p {
  margin: 0;
  color: #bdbdbd;
  font-size: 17px;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(60px, 10vw, 150px);
}

.about-intro-copy {
  display: grid;
  gap: 30px;
}

.media-frame {
  position: relative;
  height: clamp(360px, 43vw, 620px);
  margin: 0;
  overflow: hidden;
}

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

.principle-row {
  display: grid;
  grid-template-columns: 50px minmax(200px, 0.7fr) minmax(280px, 1fr);
  gap: 30px;
  padding: 24px 0 21px;
  border-bottom: 1px solid var(--line-dark);
}

.principle-row > span {
  color: #9b9b9b;
  font-size: 13px;
}

.principle-row h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
}

.principle-row p {
  margin: 0;
  color: #bdbdbd;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(480px, 1.28fr);
  gap: clamp(65px, 10vw, 150px);
}

.contact-copy .section-title {
  margin: 26px 0 28px;
}

.direct-contact {
  display: grid;
  gap: 7px;
  margin-top: 44px;
  font-size: 20px;
}

.direct-contact a {
  width: max-content;
  max-width: 100%;
  border-bottom: 1px solid currentColor;
  transition: color 200ms ease;
}

.direct-contact a:hover,
.direct-contact a:focus-visible {
  color: var(--blue);
}

.enquiry-form {
  border-top: 1px solid var(--black);
}

.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.field {
  display: flex;
  flex-direction: column;
  padding-top: 22px;
  border-bottom: 1px solid var(--black);
}

.field:focus-within {
  border-color: var(--blue);
  border-bottom-width: 3px;
}

.field label {
  margin-bottom: 9px;
  font-size: 13px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 0 11px;
  background: transparent;
  border: 0;
  border-radius: 0;
  outline: 0;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: #8a8a8a;
}

.form-actions {
  display: grid;
  grid-template-columns: minmax(230px, 0.75fr) 1fr;
  gap: 26px;
  align-items: center;
  margin-top: 30px;
}

.submit-button {
  border-radius: 0;
}

.form-actions p,
.form-status {
  margin: 0;
  font-size: 15px;
}

.form-status {
  min-height: 22px;
  margin-top: 12px;
  color: var(--blue);
}

.contact-note {
  margin-top: 32px;
  padding: 18px 0 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.65fr 1fr 0.8fr;
  gap: 50px;
  padding-block: 62px 46px;
}

.footer-brand {
  display: inline-block;
  width: 150px;
}

.footer-brand img {
  width: 100%;
  filter: invert(1);
}

.footer-label {
  display: block;
  margin-bottom: 15px;
  color: #8e8e8e;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.footer-nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: #8fa8ff;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 17px 15px;
  color: #9a9a9a;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-top: 1px solid var(--line-dark);
}

.whatsapp-float {
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: 18px;
  display: flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--black);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--black);
  transition:
    color 200ms ease,
    background 200ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: var(--white);
  background: var(--blue);
}

.whatsapp-float svg {
  width: 26px;
  fill: currentColor;
}

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

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

@media (max-width: 1050px) {
  .home-hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  }

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

  .home-hero-bottom .button {
    width: max-content;
  }

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

  .step:nth-child(2) {
    border-right: 0;
  }

  .step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--black);
  }

  .capabilities-table {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .menu-toggle {
    z-index: 2;
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    padding: 96px var(--page-pad) 38px;
    color: var(--white);
    background: var(--black);
    transform: translateX(100%);
    transition: transform 360ms var(--ease);
  }

  .site-nav > a:not(.button) {
    width: 100%;
    padding: 3px 0;
    font-size: clamp(43px, 11vw, 72px);
    font-weight: 650;
    line-height: 1;
    letter-spacing: 0;
  }

  .site-nav .button {
    width: 100%;
    margin-top: 24px;
    font-size: 20px;
  }

  .menu-open .site-nav {
    transform: translateX(0);
  }

  .menu-open .site-header {
    color: var(--white);
    background: var(--black);
    border-color: var(--white);
  }

  .menu-open .brand img {
    filter: invert(1);
  }

  .menu-open .menu-icon {
    box-shadow: none;
    transform: rotate(45deg);
  }

  .home-hero,
  .page-hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
  }

  .home-hero-content {
    min-height: 560px;
  }

  .home-hero-media,
  .page-hero-media {
    height: 420px;
    min-height: 0;
    border-top: 1px solid var(--black);
    border-left: 0;
  }

  .intro-grid,
  .location-band,
  .about-intro,
  .contact-layout,
  .process-flow {
    grid-template-columns: 1fr;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .overview-row {
    grid-template-columns: 42px minmax(190px, 0.85fr) 1fr;
  }

  .overview-row .overview-arrow {
    display: none;
  }

  .split-feature {
    grid-template-columns: 1fr;
  }

  .split-media {
    height: 440px;
    border-right: 0;
    border-bottom: 1px solid var(--black);
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

  .cta-band .button {
    width: max-content;
  }

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

@media (max-width: 620px) {
  body {
    font-size: 18px;
  }

  .brand {
    width: 96px;
  }

  .home-hero-content {
    min-height: 510px;
    padding-top: 34px;
  }

  .home-hero-top {
    display: block;
  }

  .home-hero-top .eyebrow:last-child {
    margin-top: 4px;
  }

  .home-hero .display,
  .display {
    font-size: clamp(54px, 16vw, 78px);
  }

  .page-title {
    font-size: clamp(56px, 17vw, 84px);
  }

  .section-title {
    font-size: clamp(44px, 13vw, 66px);
  }

  .home-hero-media,
  .page-hero-media {
    height: 330px;
  }

  .section {
    padding-block: 68px;
  }

  .section-compact {
    padding-block: 50px;
  }

  .overview-row {
    grid-template-columns: 34px 1fr;
    gap: 14px;
    padding: 20px 0 18px;
  }

  .overview-row p {
    grid-column: 2;
  }

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

  .step,
  .step:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--black);
  }

  .step:last-child {
    border-bottom: 0;
  }

  .step > span {
    margin-bottom: 24px;
  }

  .split-media {
    height: 330px;
    min-height: 0;
  }

  .split-content {
    padding: 48px var(--page-pad);
  }

  .location-band {
    gap: 30px;
  }

  .detail-row,
  .category-row,
  .principle-row {
    grid-template-columns: 34px 1fr;
    gap: 14px;
  }

  .detail-row p,
  .category-row p,
  .principle-row p {
    grid-column: 2;
  }

  .category-row:hover {
    padding-inline: 10px;
  }

  .capabilities-table {
    grid-template-columns: 1fr;
  }

  .field-pair,
  .form-actions {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-actions {
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-meta {
    flex-direction: column;
    gap: 5px;
  }
}

@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;
  }

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

/* Multi-page editorial system */
.site-header:has(> .wordmark) {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-inline: var(--page-pad);
}

.wordmark {
  position: relative;
  display: inline-flex;
  width: 158px;
  padding-left: 12px;
}

.wordmark::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--blue);
  content: "";
}

.wordmark img { width: 100%; }

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 18px;
  color: var(--white);
  background: var(--blue);
  border: 1px solid var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer:has(> .footer-mark) {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  padding: 62px var(--page-pad) 28px;
}

.footer-mark { display: inline-block; width: 180px; }
.footer-mark img { width: 100%; filter: invert(1); }
.site-footer:has(> .footer-mark) > .footer-meta { flex-direction: column; align-items: flex-end; padding: 0; }

.inner-page {
  padding-top: var(--header-height);
}

.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.page-hero {
  min-height: 78svh;
  padding: clamp(80px, 10vw, 150px) var(--page) 70px;
  border-bottom: 1px solid var(--black);
}

.page-hero h1,
.contact-page-head h1 {
  max-width: 1200px;
  margin: clamp(70px, 10vw, 140px) 0 40px;
  font-size: clamp(86px, 13vw, 210px);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.page-hero h1 em,
.contact-page-head h1 em {
  color: var(--blue);
  font-style: normal;
}

.page-hero-blue {
  position: relative;
  overflow: hidden;
}

.page-hero-blue::after {
  position: absolute;
  right: -8vw;
  bottom: -22vw;
  width: 56vw;
  height: 56vw;
  background: var(--blue);
  border-radius: 50%;
  content: "";
  opacity: 0.12;
}

.page-deck {
  max-width: 700px;
  margin: 0 0 0 auto;
  font-size: clamp(24px, 2.5vw, 40px);
  line-height: 1.08;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(70px, 10vw, 180px);
}

.story-copy {
  padding-top: 65px;
  font-size: 23px;
}

.story-copy p + p {
  margin-top: 30px;
}

.image-statement {
  position: relative;
  min-height: 680px;
  color: var(--white);
  background: var(--black);
}

.image-statement img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  opacity: 0.48;
  filter: grayscale(1);
}

.image-statement div {
  position: absolute;
  right: var(--page);
  bottom: 60px;
  left: var(--page);
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
}

.image-statement strong {
  max-width: 760px;
  font-size: clamp(36px, 5vw, 80px);
  font-weight: 650;
  line-height: 0.95;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 90px;
  border-top: 1px solid var(--black);
}

.value-grid article {
  min-height: 330px;
  padding: 24px;
  border-right: 1px solid var(--black);
}

.value-grid article:first-child { border-left: 1px solid var(--black); }
.value-grid article:nth-child(2) { color: var(--white); background: var(--blue); }
.value-grid h3 { margin: 90px 0 20px; font-size: 52px; text-transform: uppercase; }

.page-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  padding: 90px var(--page);
}

.page-cta h2 {
  grid-column: 1;
  margin: 0;
  font-size: clamp(72px, 11vw, 170px);
  line-height: 0.8;
  text-transform: uppercase;
}

.page-cta .nav-cta { grid-column: 2; grid-row: 1 / span 2; }

.catalog-hero {
  color: var(--white);
  background: #050505;
  border-bottom-color: var(--blue);
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 50px;
}

.catalog-toolbar h2 { margin: 0; font-size: 56px; text-transform: uppercase; }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
}

.catalog-card {
  position: relative;
  display: flex;
  min-height: 650px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  overflow: hidden;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  transition: color 250ms ease, background 250ms ease;
}

.catalog-card:hover { color: var(--white); background: var(--black); }
.catalog-card.blue-card { color: var(--white); background: var(--blue); }
.catalog-card.blue-card:hover { background: var(--black); }
.card-number { font-size: 15px; letter-spacing: 0.12em; }
.catalog-card h3 { margin: 8px 0; font-size: clamp(42px, 4vw, 66px); line-height: 0.9; text-transform: uppercase; }
.catalog-card p { margin: 0 0 28px; }
.catalog-card b { font-size: 16px; text-transform: uppercase; letter-spacing: 0.08em; }

.product-silhouette {
  position: relative;
  width: 60%;
  aspect-ratio: 1;
  margin: auto;
  background: currentColor;
  clip-path: polygon(25% 15%, 41% 8%, 59% 8%, 75% 15%, 97% 36%, 82% 53%, 71% 42%, 73% 94%, 27% 94%, 29% 42%, 18% 53%, 3% 36%);
  opacity: 0.13;
}

.catalog-card:hover .product-silhouette,
.blue-card .product-silhouette { opacity: 0.34; }
.product-silhouette.tshirt { clip-path: polygon(27% 15%, 40% 8%, 60% 8%, 73% 15%, 96% 33%, 82% 51%, 72% 43%, 72% 92%, 28% 92%, 28% 43%, 18% 51%, 4% 33%); }
.product-silhouette.active { clip-path: polygon(21% 7%, 44% 7%, 42% 48%, 36% 95%, 11% 95%, 20% 48%, 8% 20%, 20% 7%, 79% 7%, 92% 20%, 80% 48%, 89% 95%, 64% 95%, 58% 48%, 56% 7%); }
.product-silhouette.jacket { clip-path: polygon(20% 15%, 44% 5%, 56% 5%, 80% 15%, 97% 42%, 80% 55%, 72% 42%, 74% 95%, 26% 95%, 28% 42%, 20% 55%, 3% 42%); }
.product-silhouette.team { clip-path: polygon(27% 12%, 40% 6%, 60% 6%, 73% 12%, 96% 28%, 83% 48%, 72% 41%, 71% 94%, 29% 94%, 28% 41%, 17% 48%, 4% 28%); }
.product-silhouette.custom { clip-path: polygon(12% 12%, 88% 12%, 88% 88%, 12% 88%, 12% 60%, 38% 60%, 38% 40%, 12% 40%); }

.product-detail {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) 1.15fr;
  min-height: calc(100svh - var(--header-height));
}

.product-summary {
  position: sticky;
  top: var(--header-height);
  height: calc(100svh - var(--header-height));
  padding: 55px var(--page);
  color: var(--white);
  background: var(--blue);
}

.back-link { display: inline-block; margin-bottom: 70px; text-transform: uppercase; letter-spacing: .1em; }
.product-summary h1 { max-width: 700px; margin: 25px 0; font-size: clamp(60px, 7vw, 110px); line-height: .82; text-transform: uppercase; }
.detail-silhouette { position: absolute; right: 3vw; bottom: 4vh; width: 44%; color: var(--white); opacity: .16; }
.product-summary ul { position: relative; z-index: 1; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.5); }
.product-summary li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.35); }

.order-panel { padding: clamp(70px, 8vw, 130px) var(--page); }
.order-panel h2 { margin: 20px 0; font-size: clamp(64px, 8vw, 120px); line-height: .84; text-transform: uppercase; }
.order-panel > p { max-width: 650px; font-size: 24px; }
.product-order-form { margin-top: 70px; }

.contact-page-head {
  padding: 100px var(--page) 70px;
  color: var(--white);
  background: var(--blue);
}

.contact-page-head h1 { margin-bottom: 70px; }
.contact-page-head h1 em { color: var(--black); }
.contact-channels { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.55); }
.contact-channels a { padding: 24px 24px 24px 0; border-right: 1px solid rgba(255,255,255,.55); }
.contact-channels a + a { padding-left: 24px; }
.contact-channels small, .contact-channels strong { display: block; }
.contact-channels small { margin-bottom: 30px; text-transform: uppercase; letter-spacing: .1em; }
.contact-channels strong { font-size: clamp(20px, 2vw, 30px); overflow-wrap: anywhere; }

@media (max-width: 900px) {
  .story-grid, .product-detail { grid-template-columns: 1fr; }
  .value-grid, .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .product-summary { position: relative; top: auto; height: auto; min-height: 700px; }
  .contact-channels { grid-template-columns: 1fr; }
  .contact-channels a, .contact-channels a + a { padding: 22px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.45); }
}

@media (max-width: 620px) {
  .site-footer:has(> .footer-mark) { grid-template-columns: 1fr; }
  .site-footer:has(> .footer-mark) > .footer-meta { align-items: flex-start; }
  .page-hero { min-height: 72svh; }
  .page-hero h1, .contact-page-head h1 { font-size: 21vw; }
  .story-copy { padding-top: 0; }
  .image-statement, .image-statement img { min-height: 560px; height: 560px; }
  .image-statement div { align-items: start; flex-direction: column; }
  .value-grid, .catalog-grid { grid-template-columns: 1fr; }
  .catalog-card { min-height: 560px; }
  .page-cta { grid-template-columns: 1fr; }
  .page-cta .nav-cta { grid-column: 1; grid-row: auto; width: max-content; }
  .product-summary { min-height: 650px; }
  .contact-page-head { padding-top: 80px; }
}
