@font-face {
  font-family: "Auge Trial";
  src: url("assets/fonts/auge-trial-regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Auge Trial";
  src: url("assets/fonts/auge-trial-semibold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Auge Trial";
  src: url("assets/fonts/auge-trial-black.otf") format("opentype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "Bodoni Moda";
  src: url("assets/fonts/bodoni-moda-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

:root {
  --black: #0a0e0f;
  --raised: #121819;
  --cream: #fffae3;
  --green: #8db600;
  --pink: #d52d70;
  --body-font: "Bodoni Moda", Georgia, serif;
  --display-font: "Auge Trial", "Arial Black", sans-serif;
  --page-pad: 64px;
  --content-width: 1312px;
}

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

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--cream);
  background: var(--black);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img, video { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { font-family: var(--display-font); }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, h4, figure, ol { margin: 0; }
ol { padding: 0; list-style: none; }
section, [id] { scroll-margin-top: 28px; }

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -80px;
  left: 12px;
  padding: 10px 16px;
  color: var(--black);
  background: var(--cream);
  transition: top 180ms ease;
}

.skip-link:focus { top: 12px; }

.section-inner,
.hero__inner {
  width: min(100%, 1440px);
  margin-inline: auto;
}

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

.eyebrow {
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 1.54px;
  text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6, .service-teaser strong, .proof-bar strong {
  font-family: var(--display-font);
  font-weight: 900;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--black);
  background: var(--green);
  font-family: var(--display-font);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .66px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

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

.button--compact {
  min-height: 42px;
  padding: 12px 20px;
}

.button--outline {
  color: var(--cream);
  border-color: rgb(255 250 227 / .45);
  background: rgb(10 14 15 / .28);
}

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

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

/* Hero */
.hero {
  position: relative;
  height: 920px;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

.hero__media {
  position: absolute;
  z-index: -2;
  inset: 0;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  top: 0;
  left: -7%;
  width: 114%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(10 14 15 / .9) 0%, rgb(10 14 15 / .7) 44%, rgb(10 14 15 / .25) 76%, rgb(10 14 15 / .42) 100%),
    linear-gradient(0deg, rgb(10 14 15 / .52) 0%, transparent 48%);
}

.hero.video-failed .hero__video { display: none; }
.hero.video-failed .hero__media { background: url("assets/videos/exploding-orange-poster.jpg") center / cover no-repeat; }

.hero__inner {
  position: relative;
  display: grid;
  height: 100%;
  grid-template-rows: minmax(0, 1fr) 186px;
  padding: 108px var(--page-pad) 48px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 38px;
  left: 50%;
  display: flex;
  width: min(var(--content-width), calc(100% - (var(--page-pad) * 2)));
  height: 70px;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  transition: top 220ms ease, height 220ms ease, padding 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  top: 12px;
  height: 82px;
  padding-inline: 18px;
  border: 1px solid rgb(255 250 227 / .12);
  border-radius: 42px;
  background: rgb(10 14 15 / .9);
  box-shadow: 0 14px 44px rgb(0 0 0 / .28);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  width: 183px;
  flex: 0 0 183px;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: .12px;
}

.brand img {
  width: 183px;
  height: 50px;
  object-fit: contain;
  transform: scaleY(-1);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: clamp(26px, 5.2vw, 76px);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .88px;
  text-transform: uppercase;
}

.desktop-nav a,
.footer-nav a {
  position: relative;
  opacity: .86;
  transition: opacity 180ms ease, color 180ms ease;
}

.desktop-nav a::after,
.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.desktop-nav a:hover,
.footer-nav a:hover { opacity: 1; }
.desktop-nav a:hover::after,
.footer-nav a:hover::after { transform: scaleX(1); }

.menu-toggle,
.mobile-menu { display: none; }

.hero__content {
  display: flex;
  min-height: 0;
  align-items: center;
  justify-content: flex-start;
}

.hero__message {
  display: flex;
  width: min(820px, 68vw);
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.hero__message .eyebrow {
  font-size: 12px;
  letter-spacing: 1.8px;
}

.hero h1 {
  color: var(--cream);
  font-size: 96px;
  line-height: 92px;
  letter-spacing: -2.4px;
  white-space: nowrap;
}

.hero__lead {
  width: min(560px, 100%);
  color: rgb(255 250 227 / .82);
  font-size: 20px;
  line-height: 30px;
}

.hero__actions { display: flex; gap: 12px; }

.service-strip {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-teaser {
  display: flex;
  min-width: 0;
  height: 186px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgb(255 250 227 / .16);
  border-radius: 10px;
  background: rgb(10 14 15 / .7);
  backdrop-filter: blur(2px);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.service-teaser:hover {
  border-color: rgb(141 182 0 / .72);
  background: rgb(18 24 25 / .92);
  transform: translateY(-4px);
}

.service-teaser span {
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
}

.service-teaser strong {
  font-size: 32px;
  line-height: 38px;
  letter-spacing: -.16px;
}

.service-teaser small {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .8px;
  text-transform: uppercase;
  opacity: .62;
}

/* Shared title compositions */
.section-intro {
  display: flex;
  height: 170px;
  align-items: flex-end;
  justify-content: space-between;
}

.section-intro > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.section-intro h2,
.process h2 {
  font-size: 52px;
  line-height: 56px;
  letter-spacing: -.78px;
}

.section-intro__copy {
  width: 420px;
  padding-bottom: 2px;
  font-size: 18px;
  line-height: 28px;
  opacity: .68;
}

/* Services */
.services {
  height: 900px;
  overflow: hidden;
}

.services__inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 52px;
  padding: 88px var(--page-pad);
}

.service-rail {
  display: grid;
  min-height: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  display: flex;
  min-width: 0;
  height: 560px;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  background: var(--raised);
  scroll-snap-align: start;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.service-card:hover {
  z-index: 2;
  box-shadow: 0 24px 60px rgb(0 0 0 / .28);
  transform: translateY(-6px);
}

.service-card__media {
  height: 360px;
  flex: 0 0 360px;
  overflow: hidden;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(.2,.8,.2,1);
}

.service-card:nth-child(1) img { object-position: 50% 48%; }
.service-card:nth-child(2) img { object-position: 53% center; }
.service-card:nth-child(3) img { object-position: 50% 62%; }
.service-card:nth-child(4) img { object-position: center; }
.service-card:hover img { transform: scale(1.035); }

.service-card__content {
  display: flex;
  height: 200px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 22px;
}

.service-card__content span {
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
}

.service-card__content h3 {
  font-size: 24px;
  line-height: 30px;
}

.service-card__content p {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  opacity: .55;
}

/* Process */
.process {
  height: 820px;
  overflow: hidden;
}

.process__inner {
  display: grid;
  height: 100%;
  grid-template-columns: minmax(0, 720px) minmax(0, 544px);
  gap: 48px;
  padding: 72px var(--page-pad);
}

.process__media {
  position: relative;
  height: 676px;
  overflow: hidden;
  border-radius: 24px;
}

.process__media::after {
  position: absolute;
  inset: 0;
  background: rgb(10 14 15 / .18);
  content: "";
}

.process__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.process__sequence {
  display: flex;
  height: 676px;
  flex-direction: column;
  align-items: flex-start;
  padding-block: 14px;
}

.process__sequence > .eyebrow { margin-bottom: 24px; letter-spacing: 1.32px; }
.process__sequence > h2 { margin-bottom: 24px; }

.process__summary {
  width: min(500px, 100%);
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 25px;
  opacity: .66;
}

.process-steps { width: 100%; }

.process-step {
  display: grid;
  min-height: 80px;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgb(255 250 227 / .14);
}

.process-step > span {
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
}

.process-step h3 {
  margin-bottom: 5px;
  font-family: var(--display-font);
  font-size: 16px;
  font-weight: 900;
  line-height: 18px;
}

.process-step p {
  font-size: 13px;
  line-height: 19px;
  opacity: .58;
}

/* Sectors */
.sectors {
  height: 760px;
  overflow: hidden;
}

.sectors__inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 46px;
  padding: 88px var(--page-pad) 72px;
}

.sectors .section-intro > div { gap: 12px; }
.sectors .section-intro h2 { width: 760px; }
.sectors .section-intro__copy { width: 410px; font-size: 17px; line-height: 26px; opacity: .65; }

.sector-grid {
  display: grid;
  height: 286px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.sector-card {
  display: flex;
  min-width: 0;
  height: 286px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgb(255 250 227 / .12);
  border-radius: 16px;
  background: var(--raised);
  transition: border-color 220ms ease, transform 220ms ease;
}

.sector-card:hover {
  border-color: rgb(141 182 0 / .58);
  transform: translateY(-4px);
}

.sector-card > span { color: var(--green); font-size: 11px; font-weight: 600; }
.sector-card h3 { font-size: 24px; line-height: 30px; }
.sector-card h4 { font-size: 12px; font-weight: 600; line-height: 18px; opacity: .62; }
.sector-card p { font-size: 14px; line-height: 22px; opacity: .72; }

.proof-bar {
  display: grid;
  height: 108px;
  flex: 0 0 108px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 54px;
  color: var(--black);
  background: var(--green);
}

.proof-bar > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid var(--black);
}

.proof-bar > div:last-child { border: 0; }
.proof-bar strong { font-size: 24px; line-height: 30px; }
.proof-bar span { font-size: 10px; font-weight: 600; line-height: 1.2; letter-spacing: .6px; text-transform: uppercase; opacity: .72; }

/* Contact CTA */
.contact {
  position: relative;
  height: 620px;
  overflow: hidden;
  isolation: isolate;
}

.contact__backdrop {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(rgb(10 14 15 / .78), rgb(10 14 15 / .78)),
    url("assets/figma/cta-prep.jpg") center 48% / cover no-repeat;
}

.contact__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 72px var(--page-pad);
}

.contact__message {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.contact__message h2 {
  width: 780px;
  font-size: 72px;
  line-height: 72px;
  letter-spacing: -1.44px;
}

.contact__message > p:last-child {
  width: 540px;
  font-size: 18px;
  line-height: 28px;
  opacity: .72;
}

.contact-panel {
  display: flex;
  width: 410px;
  height: 330px;
  flex: 0 0 410px;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  padding: 34px;
  border: 1px solid rgb(255 250 227 / .16);
  border-radius: 28px;
  background: rgb(10 14 15 / .88);
  backdrop-filter: blur(6px);
}

.contact-panel h3 { font-size: 24px; line-height: 30px; }
.contact-panel p { font-size: 15px; line-height: 23px; opacity: .66; }
.contact-panel .button { width: 100%; min-height: 52px; font-size: 14px; }

/* Footer */
.footer {
  height: 320px;
  overflow: hidden;
  background: var(--raised);
}

.footer__inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 52px;
  padding: 64px var(--page-pad) 44px;
}

.footer__top {
  display: flex;
  height: 100px;
  align-items: flex-start;
  justify-content: space-between;
}

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

.footer-brand img {
  width: 230px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
  transform: scaleY(-1);
}

.footer-brand span {
  color: var(--green);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  gap: 30px;
  padding-top: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-nav a,
.footer-nav span { opacity: .72; }

.footer__rule { width: 100%; height: 1px; flex: 0 0 1px; background: rgb(255 250 227 / .12); }

.footer__bottom {
  display: flex;
  height: 30px;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 10px;
  line-height: 1.4;
}

.footer__bottom p:first-child { opacity: .48; }
.footer__bottom p:last-child { color: var(--pink); font-weight: 600; letter-spacing: .8px; text-transform: uppercase; }

/* Contact dialog */
.contact-dialog {
  width: min(720px, calc(100% - 40px));
  max-height: min(820px, calc(100dvh - 40px));
  padding: 34px;
  overflow: auto;
  border: 1px solid rgb(255 250 227 / .18);
  border-radius: 28px;
  color: var(--cream);
  background: var(--raised);
  box-shadow: 0 40px 120px rgb(0 0 0 / .65);
}

.contact-dialog::backdrop {
  background: rgb(10 14 15 / .8);
  backdrop-filter: blur(8px);
}

.contact-dialog__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.contact-dialog__head .eyebrow { margin-bottom: 10px; }
.contact-dialog h2 { max-width: 540px; font-size: 42px; line-height: 44px; letter-spacing: -.64px; }

.dialog-close {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid rgb(255 250 227 / .22);
  border-radius: 50%;
  color: var(--cream);
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgb(255 250 227 / .2);
  border-radius: 10px;
  color: var(--cream);
  background: var(--black);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form textarea { min-height: 126px; resize: vertical; }
.contact-form__wide { grid-column: 1 / -1; }
.contact-form__actions { display: flex; align-items: center; gap: 18px; }
.form-status { font-size: 13px; opacity: .72; }

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible { opacity: 1; transform: none; }

.reveal-on-load {
  animation: reveal-in 800ms 120ms both cubic-bezier(.2,.8,.2,1);
}

@keyframes reveal-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

/* Tablet landscape and smaller desktops */
@media (max-width: 1199px) {
  :root { --page-pad: 48px; }

  .hero { height: 900px; }
  .desktop-nav { margin-right: 26px; gap: 20px; }
  .hero h1 { font-size: clamp(72px, 8vw, 88px); line-height: .96; }
  .hero__message { width: min(720px, 72vw); }
  .service-teaser { height: 176px; }
  .service-teaser strong { font-size: 27px; }

  .services,
  .process,
  .sectors,
  .contact,
  .footer { height: auto; }

  .services { min-height: 900px; }
  .services__inner { min-height: 900px; padding-block: 72px; }
  .section-intro h2, .process h2 { font-size: 48px; line-height: 52px; }

  .service-rail {
    display: flex;
    width: calc(100% + var(--page-pad));
    padding-right: var(--page-pad);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .service-rail::-webkit-scrollbar { display: none; }
  .service-card { width: 316px; min-width: 316px; }

  .process__inner {
    min-height: 820px;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 36px;
    padding-block: 64px;
  }

  .process__media,
  .process__sequence { height: 692px; }
  .process__summary { margin-bottom: 18px; }
  .process-step { min-height: 86px; }

  .sectors__inner { min-height: 760px; padding-block: 72px 36px; }
  .sectors .section-intro h2 { width: auto; }
  .sector-card { height: auto; min-height: 286px; padding: 24px; }
  .sector-card h3 { font-size: 22px; line-height: 27px; }

  .contact__inner { min-height: 620px; gap: 44px; }
  .contact__message h2 { width: auto; font-size: 64px; line-height: 64px; }
  .contact__message > p:last-child { width: min(490px, 100%); }
  .contact-panel { width: 370px; flex-basis: 370px; }

  .footer__inner { min-height: 320px; }
}

/* Tablet portrait */
@media (max-width: 900px) {
  .site-header > .button,
  .desktop-nav { display: none; }

  .menu-toggle {
    position: relative;
    z-index: 32;
    display: grid;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 7px;
    margin-left: auto;
    border: 0;
    border-radius: 50%;
    background: var(--green);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 19px;
    height: 1.5px;
    background: var(--black);
    transition: transform 220ms ease;
  }

  .menu-open .menu-toggle span:first-child { transform: translateY(4.25px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    z-index: 30;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 110px var(--page-pad) 50px;
    visibility: hidden;
    background: rgb(10 14 15 / .98);
    font-family: var(--display-font);
    font-size: clamp(38px, 8vw, 58px);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(100%);
    transition: visibility 300ms, opacity 300ms ease, transform 300ms cubic-bezier(.2,.8,.2,1);
  }

  .menu-open .mobile-menu { visibility: visible; opacity: 1; transform: none; }
  .mobile-menu .button { margin-top: 12px; font-family: var(--display-font); font-size: 12px; }

  .hero { height: 980px; }
  .hero__inner { grid-template-rows: minmax(0, 1fr) 168px; }
  .hero__video { left: -42%; width: 184%; object-position: 54% center; }
  .hero__veil { background: linear-gradient(90deg, rgb(10 14 15 / .9), rgb(10 14 15 / .42)), linear-gradient(0deg, rgb(10 14 15 / .72), transparent 58%); }
  .hero__message { width: min(680px, 100%); }
  .hero h1 { font-size: clamp(62px, 10vw, 80px); }
  .hero__lead { font-size: 18px; line-height: 28px; }

  .service-strip {
    display: flex;
    width: calc(100% + var(--page-pad));
    padding-right: var(--page-pad);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .service-strip::-webkit-scrollbar { display: none; }
  .service-teaser { width: 286px; min-width: 286px; height: 168px; scroll-snap-align: start; }

  .section-intro {
    height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .section-intro__copy,
  .sectors .section-intro__copy { width: min(560px, 100%); }
  .services__inner { min-height: 0; padding-block: 76px; }

  .process__inner {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 46px;
    padding-block: 72px;
  }

  .process__media { width: 100%; height: auto; aspect-ratio: 1.3 / 1; }
  .process__sequence { width: 100%; height: auto; padding: 0; }
  .process-step { min-height: 80px; }

  .sectors__inner { min-height: 0; padding-block: 76px; }
  .sector-grid { height: auto; grid-template-columns: 1fr; }
  .sector-card { min-height: 230px; }

  .proof-bar {
    height: auto;
    grid-template-columns: 1fr 1fr;
    border-radius: 28px;
  }

  .proof-bar > div { min-height: 100px; }
  .proof-bar > div:nth-child(2) { border-right: 0; }
  .proof-bar > div:nth-child(-n+2) { border-bottom: 1px solid var(--black); }

  .contact__inner {
    min-height: 720px;
    align-items: stretch;
    flex-direction: column;
    justify-content: center;
    gap: 48px;
    padding-block: 72px;
  }

  .contact__message h2 { font-size: 60px; line-height: 60px; }
  .contact-panel { width: min(520px, 100%); height: auto; flex-basis: auto; }

  .footer__inner { min-height: 350px; gap: 34px; }
  .footer__top { height: auto; gap: 28px; }
  .footer-nav { max-width: 420px; flex-wrap: wrap; justify-content: flex-end; row-gap: 20px; }
}

/* Mobile */
@media (max-width: 640px) {
  :root { --page-pad: 20px; }

  .hero { height: 900px; min-height: 900px; }
  .hero__inner { grid-template-rows: minmax(0, 1fr) 150px; padding-top: 84px; padding-bottom: 22px; }
  .site-header { height: 64px; }
  .site-header { top: 20px; }
  .site-header.is-scrolled { top: 8px; height: 72px; padding-inline: 10px; }
  .brand { width: 150px; flex-basis: 150px; font-size: 10px; }
  .brand img { width: 150px; height: 41px; }
  .menu-toggle { width: 44px; height: 44px; }

  .hero__video { left: -92%; width: 285%; object-position: 52% center; }
  .hero__veil { background: linear-gradient(0deg, rgb(10 14 15 / .9) 0%, rgb(10 14 15 / .55) 72%, rgb(10 14 15 / .64) 100%); }
  .hero__content { align-items: center; }
  .hero__message { width: 100%; gap: 16px; }
  .hero__message .eyebrow { max-width: 310px; font-size: 10px; letter-spacing: 1.25px; white-space: normal; }
  .hero h1 { font-size: clamp(50px, 14.5vw, 62px); line-height: .94; letter-spacing: -1.4px; }
  .hero h1 { white-space: normal; }
  .hero__lead { max-width: 440px; font-size: 16px; line-height: 24px; }
  .hero__actions { width: 100%; flex-direction: column; gap: 10px; }
  .hero__actions .button { width: 100%; }
  .service-teaser { width: 246px; min-width: 246px; height: 150px; padding: 16px; gap: 8px; }
  .service-teaser strong { font-size: 25px; line-height: 32px; }

  .services__inner,
  .process__inner,
  .sectors__inner,
  .contact__inner { padding-block: 64px; }

  .section-intro > div { gap: 10px; }
  .section-intro h2,
  .process h2 { font-size: clamp(40px, 12vw, 48px); line-height: 1.02; letter-spacing: -.55px; }
  .section-intro__copy,
  .sectors .section-intro__copy { font-size: 16px; line-height: 25px; }

  .services__inner { gap: 38px; }
  .service-rail { width: calc(100% + var(--page-pad)); }
  .service-card { width: 82vw; min-width: 82vw; max-width: 316px; height: 520px; }
  .service-card__media { height: 330px; flex-basis: 330px; }
  .service-card__content { height: 190px; padding: 20px; }

  .process__inner { gap: 38px; }
  .process__media { aspect-ratio: 1 / .86; border-radius: 18px; }
  .process__sequence > .eyebrow,
  .process__sequence > h2,
  .process__summary { margin-bottom: 20px; }
  .process-step { grid-template-columns: 22px minmax(0, 1fr); gap: 12px; padding-block: 15px; }
  .process-step p { font-size: 12px; line-height: 18px; }

  .sectors__inner { gap: 36px; }
  .sector-card { min-height: 242px; padding: 24px; }
  .proof-bar strong { font-size: 21px; }
  .proof-bar span { max-width: 130px; text-align: center; font-size: 9px; }

  .contact__inner { min-height: 740px; gap: 38px; }
  .contact__message { gap: 16px; }
  .contact__message h2 { font-size: clamp(52px, 15vw, 64px); line-height: .95; }
  .contact__message > p:last-child { font-size: 16px; line-height: 25px; }
  .contact-panel { gap: 15px; padding: 26px; border-radius: 22px; }
  .contact-panel h3 { font-size: 22px; }

  .footer__inner { min-height: 510px; padding-block: 56px 34px; }
  .footer__top { align-items: flex-start; flex-direction: column; }
  .footer-nav { justify-content: flex-start; gap: 20px; }
  .footer__bottom { height: auto; flex-direction: column; gap: 12px; white-space: normal; }

  .contact-dialog { width: calc(100% - 24px); padding: 24px 20px; border-radius: 22px; }
  .contact-dialog h2 { font-size: 34px; line-height: 36px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form__wide { grid-column: auto; }
  .contact-form__actions { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 48px; }
  .hero__lead { font-size: 15px; line-height: 22px; }
  .button { padding-inline: 16px; font-size: 10px; }
  .mobile-menu { font-size: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .hero__video { display: none; }
  .hero__media { background: url("assets/videos/exploding-orange-poster.jpg") center / cover no-repeat; }
  .reveal { opacity: 1; transform: none; }
}
