:root {
  --ink: #0d1930;
  --muted: #64718a;
  --navy: #111f35;
  --blue: #0074d9;
  --cyan: #25c2e8;
  --violet: #7558e8;
  --soft-blue: #eef8ff;
  --soft-violet: #f3f0ff;
  --paper: #f8fbff;
  --panel: #ffffff;
  --line: #e3eaf4;
  --white: #ffffff;
  --shadow-soft: 0 18px 44px rgba(13, 25, 48, 0.1);
  --shadow-strong: 0 30px 70px rgba(13, 25, 48, 0.18);
  --font-body: Aptos, "Segoe UI", Arial, sans-serif;
  --font-display: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  --font-brand: Bahnschrift, "Aptos Display", "Arial Narrow", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  line-height: 1.55;
}

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

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

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

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--white);
  background: var(--navy);
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1240px, calc(100% - 32px));
  min-height: 72px;
  padding: 10px 14px 10px 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(227, 234, 244, 0.92);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(13, 25, 48, 0.1);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: box-shadow 180ms ease, min-height 180ms ease, top 180ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  min-height: 64px;
  box-shadow: 0 18px 52px rgba(13, 25, 48, 0.14);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-symbol {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(229, 247, 255, 0.92));
  border: 1px solid rgba(37, 194, 232, 0.24);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 10px 24px rgba(0, 116, 217, 0.09);
}

.brand-symbol img {
  width: 40px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 94, 180, 0.12));
}

.brand-wordmark {
  display: grid;
  gap: 3px;
  line-height: 1;
}

.brand-wordmark strong {
  color: var(--navy);
  font-family: var(--font-brand);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brand-wordmark small {
  color: var(--blue);
  font-family: var(--font-brand);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2.6vw, 34px);
  color: #34425a;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--violet));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-action,
.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 16px 34px rgba(0, 116, 217, 0.25);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(0, 116, 217, 0.18);
  box-shadow: 0 12px 28px rgba(13, 25, 48, 0.08);
}

.button:hover,
.button:focus-visible,
.header-action:hover,
.header-action:focus-visible {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(34px, 5vw, 76px);
  min-height: 850px;
  padding: 150px clamp(20px, 7vw, 110px) 120px;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(135deg, #ffffff 0%, #eef8ff 43%, #f4f0ff 100%),
    var(--paper);
}

.hero::before {
  position: absolute;
  inset: 94px clamp(16px, 4vw, 64px) 52px;
  content: "";
  border: 1px solid rgba(227, 234, 244, 0.7);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.hero-image {
  position: absolute;
  top: 150px;
  right: clamp(20px, 6vw, 94px);
  z-index: 1;
  width: min(55vw, 760px);
  height: 540px;
  object-fit: cover;
  object-position: 62% center;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.1) 70%),
    linear-gradient(180deg, rgba(117, 88, 232, 0.1), rgba(37, 194, 232, 0.08));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 670px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 6.8vw, 6.4rem);
  line-height: 0.9;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 34px;
  color: #40506a;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  position: absolute;
  right: clamp(28px, 7vw, 110px);
  bottom: 104px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(118px, 1fr));
  width: min(720px, calc(100% - 56px));
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(227, 234, 244, 0.86);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(13, 25, 48, 0.16);
  backdrop-filter: blur(16px);
}

.hero-stats div {
  padding: 24px;
  border-right: 1px solid rgba(227, 234, 244, 0.86);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section {
  padding: clamp(78px, 9vw, 132px) clamp(20px, 6vw, 88px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto 46px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
  margin-bottom: 44px;
  text-align: center;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 4.05rem);
  line-height: 0.98;
}

.section-heading.compact h2 {
  margin-bottom: 12px;
}

.section-heading p:not(.eyebrow),
.split-content p,
.industries-content p,
.contact-copy p,
.intro-copy p {
  color: var(--muted);
  font-size: 1rem;
}

.intro {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(420px, 1fr);
  gap: clamp(30px, 6vw, 80px);
  max-width: 1180px;
  margin: 0 auto;
}

.intro-copy {
  max-width: 540px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.proof-strip div,
.category-grid article,
.process-grid article,
.contact-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(13, 25, 48, 0.06);
}

.proof-strip div {
  min-height: 190px;
  padding: 28px;
}

.proof-strip span,
.category-grid span,
.process-grid span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.proof-strip strong,
.feature-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.proof-strip p,
.category-grid p,
.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.visual-split {
  display: grid;
  grid-template-columns: minmax(280px, 1.08fr) minmax(300px, 0.82fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  background:
    linear-gradient(180deg, var(--soft-blue) 0%, #ffffff 100%);
}

.image-panel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.28 / 1;
  border: 1px solid rgba(227, 234, 244, 0.96);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}

.image-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(117, 88, 232, 0.1), rgba(37, 194, 232, 0));
  pointer-events: none;
}

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

.split-content {
  max-width: 560px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.feature-list div {
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-left: 3px solid var(--cyan);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(13, 25, 48, 0.05);
}

.feature-list span {
  display: block;
  color: var(--muted);
}

.catalogue {
  background: var(--white);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.category-grid article {
  display: flex;
  flex-direction: column;
  min-height: 292px;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(13, 25, 48, 0.1);
}

.category-grid h3,
.process-grid h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.12;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
}

.product-meta em {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: #29405f;
  background: linear-gradient(135deg, #f3fbff, #f6f2ff);
  border: 1px solid rgba(0, 116, 217, 0.12);
  border-radius: 8px;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.industries {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, #101d32 0%, #142947 58%, #1f3158 100%);
}

.industries .eyebrow {
  color: #91e8ff;
}

.industries-content {
  max-width: 560px;
}

.industries-content p {
  color: rgba(255, 255, 255, 0.74);
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.industry-tags span {
  padding: 9px 12px;
  color: #edfaff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
}

.delivery-image {
  overflow: hidden;
  min-height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.26);
}

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

.process {
  background: linear-gradient(180deg, #f8fbff 0%, #eff9fb 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.process-grid article {
  min-height: 230px;
  padding: 32px 28px;
}

.process-grid span {
  color: var(--violet);
  font-size: 2rem;
  line-height: 1;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 420px);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
  background: var(--white);
}

.contact-copy {
  max-width: 680px;
}

.contact-actions {
  margin-top: 30px;
}

.contact-card {
  display: grid;
  gap: 4px;
  width: min(100%, 320px);
  min-height: 100px;
  padding: 20px;
}

.contact-card span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card strong {
  align-self: end;
  font-size: 1rem;
  line-height: 1.32;
}

.primary-contact {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 18px 38px rgba(0, 116, 217, 0.2);
}

.primary-contact span {
  color: #dbf7ff;
}

.hours {
  padding: 34px;
  color: var(--white);
  background: linear-gradient(145deg, #111f35, #182c4a);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}

.hours h3 {
  margin-bottom: 24px;
  font-size: 1.75rem;
}

.hours dl {
  display: grid;
  gap: 0;
  margin: 0 0 28px;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hours dt,
.hours dd {
  margin: 0;
}

.hours dt {
  color: rgba(255, 255, 255, 0.68);
}

.hours dd {
  font-weight: 800;
}

.hours .button {
  width: 100%;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 28px;
  align-items: center;
  padding: 34px clamp(20px, 6vw, 88px);
  color: rgba(255, 255, 255, 0.74);
  background: #101a29;
}

.footer-brand {
  flex-wrap: wrap;
}

.footer-brand .brand-wordmark strong {
  color: var(--white);
}

.footer-brand .brand-wordmark small {
  color: #81dcff;
}

.footer-brand p {
  flex-basis: 100%;
  margin: 2px 0 0;
  font-size: 0.84rem;
}

.site-footer small {
  margin: 0;
  font-size: 0.84rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

  .nav-toggle {
    display: block;
    justify-self: end;
    grid-column: 3;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 10px;
  }

  .site-nav a::after {
    display: none;
  }

  .header-action {
    justify-self: end;
    grid-column: 2;
    grid-row: 1;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 78px;
  }

  .hero-image {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: min(56vw, 500px);
    margin-top: 24px;
    grid-row: 2;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-stats {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
    grid-row: 3;
  }

  .section-heading,
  .intro-grid,
  .visual-split,
  .industries,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .image-panel,
  .delivery-image {
    min-height: 0;
  }

  .delivery-image {
    aspect-ratio: 1.55 / 1;
  }

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

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    grid-template-columns: 1fr auto;
    width: calc(100% - 20px);
    gap: 10px;
    padding: 8px 10px;
  }

  .nav-toggle {
    grid-column: 2;
  }

  .brand-symbol {
    width: 44px;
    height: 44px;
  }

  .brand-symbol img {
    width: 34px;
    height: 38px;
  }

  .brand-wordmark strong {
    font-size: 0.88rem;
    letter-spacing: 0.16em;
  }

  .brand-wordmark small {
    font-size: 0.53rem;
    letter-spacing: 0.2em;
  }

  .header-action {
    display: none;
  }

  .hero {
    display: block;
    padding: 122px 18px 56px;
  }

  .hero::before {
    inset: 88px 10px 22px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 255, 0.9));
  }

  h1 {
    font-size: clamp(2.4rem, 11vw, 3.15rem);
    line-height: 0.98;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-image {
    height: 260px;
    margin-top: 28px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .hero-stats div {
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 66px 18px;
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 2.55rem);
    line-height: 1.04;
  }

  .proof-strip,
  .category-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    width: 100%;
  }

  .hours {
    padding: 26px 22px;
  }
}

/* Full-screen premium scroll experience */
html {
  scroll-snap-type: y mandatory;
}

body {
  overscroll-behavior-y: contain;
  scroll-snap-type: y mandatory;
}

main > section {
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.site-header {
  transition: box-shadow 180ms ease, min-height 180ms ease, top 180ms ease, transform 260ms ease, opacity 180ms ease;
}

.site-header.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -130%);
}

.section {
  min-height: 100svh;
  padding: clamp(52px, 6.4vh, 82px) clamp(20px, 6vw, 88px);
}

.intro,
.catalogue,
.process {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero {
  min-height: 100svh;
  padding: clamp(108px, 13vh, 138px) clamp(20px, 7vw, 110px) clamp(42px, 6vh, 70px);
}

.hero::before {
  inset: clamp(86px, 11vh, 118px) clamp(14px, 4vw, 64px) clamp(20px, 4vh, 42px);
}

.hero-image {
  top: clamp(126px, 16vh, 156px);
  width: min(52vw, 760px);
  height: clamp(320px, 50vh, 530px);
}

h1 {
  font-size: clamp(2.9rem, 5.35vw, 5.35rem);
  line-height: 0.94;
}

.hero-copy {
  margin-bottom: 24px;
  font-size: clamp(0.98rem, 1.14vw, 1.1rem);
}

.hero-stats {
  bottom: clamp(28px, 6vh, 62px);
}

.hero-stats div {
  padding: 18px 20px;
}

.section-heading {
  margin-bottom: clamp(20px, 3vh, 34px);
}

.section-heading.compact {
  margin-bottom: clamp(18px, 2.8vh, 30px);
}

h2 {
  font-size: clamp(1.95rem, 3.2vw, 3.45rem);
  line-height: 1.02;
}

.intro-grid {
  align-items: center;
}

.proof-strip div {
  min-height: 156px;
  padding: 22px;
}

.visual-split,
.industries,
.contact {
  min-height: 100svh;
  padding-top: clamp(56px, 7vh, 86px);
  padding-bottom: clamp(56px, 7vh, 86px);
}

.image-panel {
  max-height: 58vh;
}

.delivery-image {
  min-height: 0;
  height: min(52vh, 500px);
}

.category-grid {
  display: grid;
  grid-template-columns: none;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, calc((100% - 30px) / 4));
  gap: 10px;
  max-width: 1320px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 116, 217, 0.45) rgba(227, 234, 244, 0.75);
}

.category-grid::-webkit-scrollbar {
  height: 8px;
}

.category-grid::-webkit-scrollbar-track {
  background: rgba(227, 234, 244, 0.75);
  border-radius: 999px;
}

.category-grid::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--blue), var(--violet));
  border-radius: 999px;
}

.category-grid article {
  scroll-snap-align: start;
  min-height: 0;
  height: clamp(218px, 27vh, 252px);
  padding: clamp(12px, 1.45vw, 18px);
}

.category-grid span {
  margin-bottom: 8px;
  font-size: 0.56rem;
}

.category-grid h3 {
  margin-bottom: 7px;
  font-size: clamp(0.88rem, 0.95vw, 1.02rem);
}

.category-grid p {
  font-size: clamp(0.7rem, 0.72vw, 0.78rem);
  line-height: 1.42;
}

.product-meta {
  gap: 6px;
  padding-top: 12px;
}

.product-meta em {
  min-height: 24px;
  padding: 0 7px;
  font-size: 0.54rem;
}

.process-grid article {
  min-height: 170px;
  padding: 24px;
}

.contact {
  align-items: center;
}

.hours {
  max-height: 74vh;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-image {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: min(40vh, 390px);
    margin-top: 12px;
    grid-row: 1;
  }

  .hero-content {
    grid-row: 2;
  }

  .hero-stats {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 10px;
    grid-row: 3;
  }
}

@media (max-width: 900px) {
  html {
    scroll-snap-type: y proximity;
  }

  main > section {
    min-height: 100svh;
  }

  .section,
  .visual-split,
  .industries,
  .contact {
    padding: 52px 18px;
  }

  .hero {
    padding: 96px 18px 34px;
  }

  .hero-image {
    height: clamp(180px, 30vh, 300px);
    margin-top: 0;
  }

  h1 {
    font-size: clamp(2rem, 8.6vw, 3.05rem);
    line-height: 1;
  }

  .hero-copy {
    margin-bottom: 16px;
    font-size: 0.94rem;
  }

  .button {
    min-height: 44px;
  }

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

  .hero-stats div {
    padding: 13px 15px;
  }

  .hero-stats div:nth-child(2n) {
    border-right: 0;
  }

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

  .hero-stats strong {
    font-size: 1.6rem;
  }

  .hero-stats span {
    font-size: 0.58rem;
  }

  .section-heading,
  .intro-grid,
  .visual-split,
  .industries,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  h2 {
    font-size: clamp(1.75rem, 7vw, 2.35rem);
  }

  .proof-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .proof-strip div {
    min-height: 0;
    padding: 18px;
  }

  .visual-split {
    gap: 22px;
  }

  .image-panel {
    max-height: 24vh;
  }

  .feature-list {
    gap: 10px;
    margin-top: 16px;
  }

  .feature-list div {
    padding: 12px 16px;
  }

  .feature-list span {
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .catalogue {
    overflow: hidden;
  }

  .catalogue .section-heading.compact {
    text-align: left;
  }

  .category-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    max-width: none;
    width: calc(100vw - 36px);
    margin: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 2px 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .category-grid article {
    flex: 0 0 min(82vw, 340px);
    min-height: 360px;
    padding: 20px;
    scroll-snap-align: start;
  }

  .category-grid span {
    font-size: 0.62rem;
  }

  .category-grid h3 {
    font-size: 1.15rem;
  }

  .category-grid p {
    font-size: 0.9rem;
  }

  .product-meta {
    padding-top: 18px;
  }

  .product-meta em {
    min-height: 28px;
    font-size: 0.58rem;
  }

  .industries {
    gap: 24px;
  }

  .delivery-image {
    height: 28vh;
  }

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

  .process-grid article {
    min-height: 150px;
    padding: 18px;
  }

  .contact-actions {
    gap: 10px;
  }

  .contact-card {
    min-height: 82px;
  }
}

@media (max-width: 640px) {
  .site-header.is-hidden {
    transform: translate(-50%, -130%);
  }

  .site-header {
    top: 8px;
  }

  .hero {
    padding: 92px 10px 24px;
  }

  .hero::before {
    inset: 78px 6px 12px;
  }

  .hero-image {
    height: clamp(145px, 26vh, 230px);
  }

  .hero-content,
  .hero-stats {
    margin-left: 8px;
    margin-right: 8px;
    width: auto;
  }

  .hero-actions {
    gap: 9px;
  }

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

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

  .hero-stats div:nth-child(2n + 1) {
    border-right: 1px solid var(--line);
  }

  .section,
  .visual-split,
  .industries,
  .contact {
    padding: 46px 18px;
  }

  .intro-copy p {
    font-size: 0.92rem;
  }

  .category-grid article {
    flex-basis: calc(100vw - 58px);
  }

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

  .process-grid article {
    min-height: 0;
  }

  .hours {
    max-height: none;
  }

  .contact {
    gap: 14px;
  }

  .contact .eyebrow {
    margin-bottom: 8px;
  }

  .contact h2 {
    margin-bottom: 10px;
  }

  .contact-copy p {
    margin-bottom: 0;
    font-size: 0.9rem;
  }

  .contact-actions {
    display: grid;
    gap: 10px;
    margin-top: 14px;
  }

  .contact-card {
    min-height: 56px;
    padding: 11px 16px;
  }

  .contact-card strong {
    font-size: 0.92rem;
  }

  .hours {
    padding: 14px 20px;
  }

  .hours h3 {
    margin-bottom: 8px;
    font-size: 1.25rem;
  }

  .hours dl {
    margin-bottom: 10px;
  }

  .hours div {
    padding: 5px 0;
  }

  .hours dt,
  .hours dd {
    font-size: 0.82rem;
  }

  .hours .button {
    min-height: 40px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-snap-type: y mandatory;
  }
}

/* Final fit-and-header pass */
html,
body {
  scroll-padding-top: 0;
}

.brand-symbol {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand-symbol img {
  filter: drop-shadow(0 5px 10px rgba(0, 94, 180, 0.14));
}

.site-header.is-scrolled {
  top: 0;
  width: 100%;
  min-height: 46px;
  padding: 4px clamp(16px, 4vw, 34px);
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(13, 25, 48, 0.08);
}

.site-header.is-scrolled .brand-symbol {
  width: 34px;
  height: 34px;
}

.site-header.is-scrolled .brand-symbol img {
  width: 29px;
  height: 31px;
}

.site-header.is-scrolled .brand-wordmark strong {
  font-size: 0.82rem;
  letter-spacing: 0.17em;
}

.site-header.is-scrolled .brand-wordmark small {
  font-size: 0.48rem;
  letter-spacing: 0.21em;
}

.site-header.is-scrolled .site-nav {
  font-size: 0.66rem;
}

.site-header.is-scrolled .header-action,
.site-header.is-scrolled .button {
  min-height: 34px;
  padding: 0 14px;
  font-size: 0.66rem;
}

.site-header.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -105%);
}

.section,
.visual-split,
.industries,
.process,
.catalogue,
.contact {
  padding-top: clamp(58px, 7vh, 74px);
  padding-bottom: clamp(28px, 4vh, 48px);
}

.visual-split {
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1fr);
  gap: clamp(24px, 4.2vw, 58px);
}

.visual-split .image-panel {
  max-height: 48vh;
}

.split-content h2 {
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
}

.split-content p {
  font-size: 0.98rem;
  line-height: 1.48;
}

.feature-list {
  gap: 10px;
  margin-top: 18px;
}

.feature-list div {
  padding: 14px 18px;
}

.feature-list span {
  font-size: 0.94rem;
  line-height: 1.4;
}

.catalogue .section-heading.compact {
  margin-bottom: 18px;
}

.catalogue .section-heading.compact h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.catalogue .section-heading.compact p {
  margin-bottom: 0;
}

.category-grid article {
  height: clamp(204px, 25vh, 236px);
}

.contact {
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
}

.contact h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.contact-copy p {
  line-height: 1.48;
}

.contact-actions {
  margin-top: 18px;
}

.contact-card {
  min-height: 84px;
  padding: 16px 18px;
}

.hours {
  padding: 24px 30px;
}

.hours h3 {
  margin-bottom: 16px;
  font-size: 1.55rem;
}

.hours div {
  padding: 8px 0;
}

@media (max-width: 900px) {
  .site-header.is-scrolled {
    min-height: 42px;
    padding: 4px 10px;
  }

  .site-header.is-scrolled .brand-wordmark {
    display: none;
  }

  .site-header.is-scrolled .nav-toggle {
    width: 34px;
    height: 34px;
  }

  .section,
  .visual-split,
  .industries,
  .process,
  .catalogue,
  .contact {
    padding-top: 52px;
    padding-bottom: 24px;
  }

  .section-heading,
  .intro-grid,
  .visual-split,
  .industries,
  .contact {
    grid-template-columns: 1fr;
  }

  .visual-split .image-panel {
    max-height: 22vh;
  }

  .split-content h2 {
    font-size: clamp(1.75rem, 6.5vw, 2.2rem);
  }

  .split-content p {
    font-size: 0.9rem;
  }

  .feature-list {
    gap: 8px;
    margin-top: 12px;
  }

  .feature-list div {
    padding: 10px 13px;
  }

  .feature-list span {
    font-size: 0.82rem;
  }

  .category-grid article {
    min-height: 0;
    height: min(58vh, 350px);
  }
}

/* Catalogue scroller containment */
.catalogue {
  overflow: hidden;
}

.catalogue .category-grid {
  width: min(100%, 1320px);
  max-width: none;
  margin: 0 auto;
  padding: 4px max(14px, 1vw) 18px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: max(14px, 1vw);
  box-sizing: border-box;
}

.catalogue .category-grid::after {
  content: "";
  width: max(20px, 3vw);
  grid-row: 1 / -1;
}

.catalogue .category-grid article {
  scroll-snap-align: start;
}

@media (min-width: 901px) {
  .catalogue .category-grid {
    display: grid;
    grid-template-columns: none;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 30px) / 4);
    gap: 10px;
    padding-left: 0;
    padding-right: 0;
    scroll-padding-left: 0;
    scroll-padding-right: 0;
  }
}

@media (min-width: 901px) and (max-width: 1199px) {
  .catalogue .category-grid {
    grid-auto-columns: calc((100% - 20px) / 3);
  }
}

@media (max-width: 900px) {
  .catalogue .category-grid {
    display: flex;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    scroll-padding-left: 0;
    scroll-padding-right: 0;
  }

  .catalogue .category-grid::after {
    display: none;
  }
}

/* Catalogue single-screen fit */
.catalogue.section {
  justify-content: flex-start;
  padding-top: clamp(78px, 8.5vh, 92px);
  padding-bottom: clamp(18px, 2.4vh, 28px);
}

.catalogue .section-heading.compact {
  margin-bottom: clamp(10px, 1.8vh, 16px);
}

.catalogue .eyebrow {
  margin-bottom: 6px;
}

.catalogue .section-heading.compact h2 {
  margin-bottom: 6px;
  font-size: clamp(1.85rem, 2.55vw, 2.75rem);
  line-height: 0.98;
}

.catalogue .section-heading.compact p {
  font-size: clamp(0.9rem, 1.15vw, 1.08rem);
}

.catalogue .category-grid article {
  height: clamp(176px, 22vh, 214px);
  padding: clamp(11px, 1.1vw, 16px);
}

.catalogue .category-grid span {
  margin-bottom: 6px;
  font-size: clamp(0.52rem, 0.62vw, 0.62rem);
}

.catalogue .category-grid h3 {
  margin-bottom: 6px;
  font-size: clamp(0.84rem, 0.86vw, 0.98rem);
}

.catalogue .category-grid p {
  font-size: clamp(0.66rem, 0.68vw, 0.76rem);
  line-height: 1.34;
}

.catalogue .product-meta {
  padding-top: 8px;
}

.catalogue .product-meta em {
  min-height: 22px;
  font-size: 0.5rem;
}

@media (max-width: 900px) {
  .catalogue.section {
    padding-top: 58px;
  }

  .catalogue .section-heading.compact h2 {
    font-size: clamp(1.7rem, 7vw, 2.15rem);
  }

  .catalogue .category-grid article {
    height: min(54vh, 330px);
    padding: 18px;
  }

  .catalogue .category-grid p {
    font-size: 0.88rem;
    line-height: 1.45;
  }
}

/* Definitive catalogue viewport fix */
.catalogue.section {
  height: 100svh;
  min-height: 100svh;
  padding: clamp(74px, 8.4vh, 88px) clamp(20px, 6vw, 88px) clamp(12px, 1.8vh, 22px);
  overflow: hidden;
}

.catalogue .section-heading.compact {
  flex: 0 0 auto;
  max-width: 860px;
  margin-bottom: clamp(10px, 1.45vh, 14px);
}

.catalogue .section-heading.compact h2 {
  margin-bottom: 5px;
  font-size: clamp(1.7rem, 2.35vw, 2.45rem);
}

.catalogue .section-heading.compact p {
  font-size: clamp(0.84rem, 1vw, 0.98rem);
  line-height: 1.28;
}

.catalogue-window {
  --catalogue-gap: 10px;
  --visible-columns: 4;
  width: min(100%, 1320px);
  height: clamp(360px, 50vh, 460px);
  min-height: 0;
  flex: 0 1 auto;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 116, 217, 0.48) rgba(227, 234, 244, 0.82);
}

.catalogue-window::-webkit-scrollbar {
  height: 8px;
}

.catalogue-window::-webkit-scrollbar-track {
  background: rgba(227, 234, 244, 0.82);
  border-radius: 999px;
}

.catalogue-window::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--blue), var(--violet));
  border-radius: 999px;
}

.catalogue-window .category-grid {
  display: grid;
  width: max-content;
  min-width: 100%;
  max-width: none;
  height: calc(100% - 12px);
  margin: 0;
  padding: 0;
  overflow: visible;
  grid-template-columns: none;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-auto-flow: column;
  grid-auto-columns: calc((min(100vw - 176px, 1320px) - (var(--catalogue-gap) * (var(--visible-columns) - 1))) / var(--visible-columns));
  gap: var(--catalogue-gap);
  scroll-snap-type: none;
}

.catalogue-window .category-grid::after {
  display: none;
}

.catalogue-window .category-grid article {
  height: 100%;
  min-height: 0;
  max-height: none;
  padding: clamp(10px, 1vw, 14px);
  scroll-snap-align: start;
}

.catalogue-window .category-grid span {
  margin-bottom: 5px;
  font-size: clamp(0.5rem, 0.58vw, 0.58rem);
}

.catalogue-window .category-grid h3 {
  margin-bottom: 5px;
  font-size: clamp(0.8rem, 0.82vw, 0.94rem);
  line-height: 1.12;
}

.catalogue-window .category-grid p {
  font-size: clamp(0.62rem, 0.64vw, 0.72rem);
  line-height: 1.3;
}

.catalogue-window .product-meta {
  gap: 5px;
  padding-top: 7px;
}

.catalogue-window .product-meta em {
  min-height: 21px;
  padding: 0 7px;
  font-size: 0.48rem;
}

@media (min-width: 901px) and (max-width: 1199px) {
  .catalogue-window {
    --visible-columns: 3;
  }

  .catalogue-window .category-grid {
    grid-auto-columns: calc((min(100vw - 88px, 1320px) - (var(--catalogue-gap) * (var(--visible-columns) - 1))) / var(--visible-columns));
  }
}

@media (max-width: 900px) {
  .catalogue.section {
    padding: 54px 18px 14px;
  }

  .catalogue .section-heading.compact {
    text-align: left;
    margin-bottom: 10px;
  }

  .catalogue .eyebrow {
    margin-bottom: 4px;
    font-size: 0.62rem;
  }

  .catalogue .section-heading.compact h2 {
    font-size: clamp(1.45rem, 6vw, 1.95rem);
  }

  .catalogue .section-heading.compact p {
    font-size: 0.84rem;
  }

  .catalogue-window {
    width: 100%;
    height: clamp(330px, 52vh, 420px);
  }

  .catalogue-window .category-grid {
    display: flex;
    width: max-content;
    min-width: 0;
    height: calc(100% - 12px);
    gap: 10px;
  }

  .catalogue-window .category-grid article {
    flex: 0 0 min(78vw, 330px);
    height: 100%;
    padding: 16px;
  }

  .catalogue-window .category-grid span {
    font-size: 0.58rem;
  }

  .catalogue-window .category-grid h3 {
    font-size: 1rem;
  }

  .catalogue-window .category-grid p {
    font-size: 0.82rem;
    line-height: 1.38;
  }

  .catalogue-window .product-meta em {
    min-height: 26px;
    font-size: 0.54rem;
  }
}

@media (max-width: 520px) {
  .catalogue.section {
    padding-top: 50px;
  }

  .catalogue-window .category-grid article {
    flex-basis: calc(100vw - 54px);
    padding: 14px;
  }
}

/* Full-bleed branded landing hero */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  height: 100svh;
  padding: clamp(92px, 12vh, 128px) clamp(22px, 7vw, 118px) clamp(108px, 14vh, 138px);
  overflow: hidden;
  color: var(--white);
  background: #07152a;
}

.hero::before {
  display: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  object-position: 56% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 14, 29, 0.8) 0%, rgba(5, 14, 29, 0.62) 34%, rgba(5, 14, 29, 0.18) 63%, rgba(5, 14, 29, 0.04) 100%),
    linear-gradient(180deg, rgba(5, 14, 29, 0.18) 0%, rgba(5, 14, 29, 0.06) 45%, rgba(5, 14, 29, 0.76) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 660px);
  max-width: 660px;
}

.hero .eyebrow {
  color: #7ee8ff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.hero h1 {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(3rem, 5.6vw, 6rem);
  line-height: 0.92;
  text-shadow: 0 16px 46px rgba(0, 0, 0, 0.45);
}

.hero-copy {
  max-width: 500px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.45;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.hero .button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.hero-stats {
  position: absolute;
  left: clamp(22px, 7vw, 118px);
  right: clamp(22px, 7vw, 118px);
  bottom: clamp(22px, 4vh, 34px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  width: auto;
  max-width: 980px;
  overflow: hidden;
  color: var(--white);
  background: rgba(7, 21, 42, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stats strong {
  color: var(--white);
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

@media (max-width: 1080px) {
  .hero {
    display: flex;
    padding-bottom: clamp(118px, 16vh, 146px);
  }

  .hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-position: 62% center;
  }

  .hero-stats {
    position: absolute;
    width: auto;
    margin-top: 0;
    grid-template-columns: repeat(4, minmax(92px, 1fr));
  }
}

@media (max-width: 760px) {
  .hero {
    align-items: flex-end;
    padding: 84px 18px 148px;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 14, 29, 0.82) 0%, rgba(5, 14, 29, 0.5) 58%, rgba(5, 14, 29, 0.18) 100%),
      linear-gradient(180deg, rgba(5, 14, 29, 0.18) 0%, rgba(5, 14, 29, 0.2) 48%, rgba(5, 14, 29, 0.84) 100%);
  }

  .hero-content {
    width: 100%;
    max-width: 410px;
  }

  .hero h1 {
    max-width: 360px;
    margin-bottom: 12px;
    font-size: clamp(2.25rem, 11vw, 3.4rem);
    line-height: 0.96;
  }

  .hero-copy {
    max-width: 330px;
    margin-bottom: 16px;
    font-size: 0.94rem;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    width: min(100%, 330px);
  }

  .hero-stats {
    left: 18px;
    right: 18px;
    bottom: 16px;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats div {
    padding: 11px 13px;
  }
}

@media (max-width: 440px) {
  .hero {
    padding: 76px 14px 136px;
  }

  .hero h1 {
    max-width: 310px;
  }

  .hero-copy {
    max-width: 300px;
  }

  .hero .button {
    min-height: 42px;
  }

  .hero-stats {
    left: 14px;
    right: 14px;
  }

  .hero-stats strong {
    font-size: 1.25rem;
  }
}

/* Mobile premium polish pass */
@media (max-width: 760px) {
  html,
  body {
    scroll-snap-type: y proximity;
  }

  body {
    line-height: 1.42;
  }

  .site-header {
    top: 8px;
    width: calc(100% - 20px);
    min-height: 54px;
    padding: 6px 10px;
    gap: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
  }

  .brand {
    gap: 8px;
  }

  .brand-symbol {
    width: 34px;
    height: 34px;
  }

  .brand-symbol img {
    width: 30px;
    height: 32px;
  }

  .brand-wordmark strong {
    font-size: 0.75rem;
    letter-spacing: 0.17em;
  }

  .brand-wordmark small {
    font-size: 0.47rem;
    letter-spacing: 0.2em;
  }

  .nav-toggle {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .site-nav {
    top: calc(100% + 8px);
    padding: 8px;
  }

  .site-nav a {
    padding: 11px 10px;
    font-size: 0.74rem;
  }

  main > section,
  .section,
  .visual-split,
  .industries,
  .process,
  .catalogue,
  .contact {
    min-height: 100svh;
  }

  .hero {
    align-items: flex-end;
    height: 100svh;
    min-height: 100svh;
    padding: 82px 20px 34px;
  }

  .hero-image {
    object-position: 72% center;
    filter: saturate(1.03) contrast(1.02);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 14, 29, 0.95) 0%, rgba(5, 14, 29, 0.78) 48%, rgba(5, 14, 29, 0.26) 100%),
      linear-gradient(180deg, rgba(5, 14, 29, 0.18) 0%, rgba(5, 14, 29, 0.12) 34%, rgba(5, 14, 29, 0.82) 100%);
  }

  .hero-content {
    max-width: 318px;
  }

  .hero .eyebrow {
    margin-bottom: 9px;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .hero h1 {
    max-width: 305px;
    margin-bottom: 10px;
    font-size: clamp(2.05rem, 9.1vw, 2.65rem);
    line-height: 0.98;
  }

  .hero-copy {
    max-width: 300px;
    margin-bottom: 16px;
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .hero-actions {
    display: grid;
    width: min(100%, 310px);
    gap: 9px;
  }

  .hero .button {
    min-height: 43px;
    padding: 0 14px;
    border-radius: 8px;
    font-size: 0.68rem;
  }

  .hero-stats {
    display: none;
  }

  .section,
  .visual-split,
  .industries,
  .process,
  .contact {
    padding: 60px 20px 24px;
    overflow: hidden;
  }

  .section-heading,
  .section-heading.compact {
    max-width: 100%;
    margin-bottom: 16px;
    text-align: left;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  h2,
  .split-content h2,
  .contact h2 {
    margin-bottom: 10px;
    font-size: clamp(1.62rem, 7.2vw, 2.18rem);
    line-height: 1.02;
  }

  .section-heading p:not(.eyebrow),
  .split-content p,
  .industries-content p,
  .contact-copy p,
  .intro-copy p {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .intro {
    justify-content: center;
  }

  .intro-grid {
    gap: 14px;
  }

  .intro-copy p {
    margin-bottom: 10px;
  }

  .proof-strip {
    display: grid;
    gap: 8px;
  }

  .proof-strip div {
    min-height: 0;
    padding: 13px 15px;
  }

  .proof-strip span {
    margin-bottom: 4px;
    font-size: 0.58rem;
  }

  .proof-strip strong {
    margin-bottom: 3px;
    font-size: 0.92rem;
  }

  .proof-strip p {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .visual-split {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
  }

  .visual-split .image-panel {
    width: 100%;
    max-height: none;
    aspect-ratio: 1.65 / 1;
    box-shadow: 0 16px 42px rgba(13, 25, 48, 0.12);
  }

  .split-content {
    max-width: none;
  }

  .feature-list {
    gap: 8px;
    margin-top: 12px;
  }

  .feature-list div {
    padding: 10px 12px;
    border-left-width: 2px;
  }

  .feature-list strong {
    margin-bottom: 2px;
    font-size: 0.88rem;
  }

  .feature-list span {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .catalogue.section {
    height: 100svh;
    min-height: 100svh;
    padding: 56px 18px 14px;
  }

  .catalogue .section-heading.compact {
    margin-bottom: 10px;
  }

  .catalogue .section-heading.compact h2 {
    margin-bottom: 4px;
    font-size: clamp(1.45rem, 6.3vw, 1.9rem);
  }

  .catalogue .section-heading.compact p {
    font-size: 0.78rem;
    line-height: 1.32;
  }

  .catalogue-window {
    height: clamp(270px, 38vh, 320px);
  }

  .catalogue-window .category-grid article {
    flex-basis: calc(100vw - 36px);
    padding: 14px;
  }

  .catalogue-window .category-grid h3 {
    font-size: 0.98rem;
  }

  .catalogue-window .category-grid p {
    font-size: 0.78rem;
    line-height: 1.36;
  }

  .industries {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
  }

  .industry-tags {
    gap: 7px;
    margin-top: 14px;
  }

  .industry-tags span {
    padding: 7px 9px;
    font-size: 0.72rem;
  }

  .delivery-image {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1.55 / 1;
  }

  .process {
    justify-content: center;
  }

  .process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .process-grid article {
    min-height: 132px;
    padding: 14px;
  }

  .process-grid span {
    margin-bottom: 8px;
    font-size: 1.35rem;
  }

  .process-grid h3 {
    margin-bottom: 5px;
    font-size: 0.98rem;
  }

  .process-grid p {
    font-size: 0.76rem;
    line-height: 1.34;
  }

  .contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }

  .contact-copy {
    max-width: none;
  }

  .contact-actions {
    display: grid;
    gap: 8px;
    margin-top: 12px;
  }

  .contact-card {
    width: 100%;
    min-height: 58px;
    padding: 11px 14px;
  }

  .contact-card span {
    font-size: 0.56rem;
  }

  .contact-card strong {
    font-size: 0.88rem;
    line-height: 1.26;
  }

  .hours {
    width: 100%;
    padding: 14px 16px;
  }

  .hours h3 {
    margin-bottom: 8px;
    font-size: 1.18rem;
  }

  .hours dl {
    margin-bottom: 10px;
  }

  .hours div {
    padding: 4px 0;
  }

  .hours dt,
  .hours dd {
    font-size: 0.78rem;
  }

  .hours .button {
    min-height: 39px;
  }
}

@media (max-width: 380px) {
  .hero {
    padding: 78px 16px 28px;
  }

  .hero h1 {
    max-width: 285px;
    font-size: clamp(2rem, 9.4vw, 2.45rem);
  }

  .hero-copy {
    max-width: 280px;
    font-size: 0.84rem;
  }

  .catalogue-window .category-grid article {
    flex-basis: calc(100vw - 32px);
  }

  .section,
  .visual-split,
  .industries,
  .process,
  .contact {
    padding-left: 16px;
    padding-right: 16px;
  }
}
