:root {
  --bg: #f4f1ec;
  --ink: #161819;
  --muted: #626466;
  --line: rgba(22, 24, 25, 0.16);
  --graphite: #222629;
  --graphite-2: #0d0f10;
  --aluminium: #d6d0c5;
  --warm: #b9915a;
  --white: #fffaf2;
  --max: 1680px;
  --gutter: clamp(1rem, 3.4vw, 4rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --type-brand: clamp(1.5rem, 2.6vw, 2.1rem);
  --type-nav: 0.95rem;
  --type-eyebrow: 0.78rem;
  --type-hero: clamp(2rem, 2.75vw, 2.45rem);
  --type-section: clamp(2.05rem, 3.9vw, 3.75rem);
  --type-motion-title: clamp(2.05rem, 2.75vw, 3rem);
  --type-section-compact: clamp(1.45rem, 1.75vw, 2rem);
  --type-panel-compact: clamp(1.34rem, 1.55vw, 1.75rem);
  --type-panel-title: clamp(1.8rem, 3.2vw, 3.25rem);
  --type-card-title: clamp(1.2rem, 1.75vw, 1.48rem);
  --type-feature: clamp(1.18rem, 1.8vw, 1.45rem);
  --type-stat: clamp(1.08rem, 1.65vw, 1.35rem);
  --type-body: 1rem;
  --type-body-large: 1.06rem;
  --type-small: 0.86rem;
  --type-caption: 0.78rem;
  --type-button: 0.92rem;
  --tracking-label: 0.16em;
  --section-y: clamp(3.2rem, 6.5vw, 6rem);
  --section-y-tight: clamp(2.4rem, 5vw, 4.4rem);
  --section-head-gap: clamp(1.5rem, 4vw, 4rem);
  --media-logo: url('assets/logo.png?v=20260627-watermark-qa');
  --media-watermark: url('assets/vetromax-watermark.png?v=20260627-watermark-qa');
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  overflow-x: hidden;
  isolation: isolate;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 2;
  content: '';
  background-image: var(--media-watermark);
  background-repeat: repeat;
  background-position: 7vw 12vh;
  background-size: clamp(22rem, 30vw, 38rem) auto;
  opacity: 0.032;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.site-header,
.intro,
main,
.site-footer,
.project-lightbox {
  position: relative;
  z-index: 1;
}

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

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

section {
  scroll-margin-top: 6rem;
}

svg {
  width: 1.05em;
  height: 1.05em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.container {
  width: min(var(--max), calc(100% - var(--gutter) - var(--gutter)));
  margin-inline: auto;
}

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

.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  color: var(--white);
  background: var(--graphite);
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  background: var(--graphite-2);
  transition: opacity 700ms var(--ease), visibility 700ms var(--ease);
}

.intro.is-gone {
  visibility: hidden;
  opacity: 0;
}

.intro-inner {
  display: grid;
  gap: 1.05rem;
  justify-items: center;
  width: min(30rem, 76vw);
}

.intro-logo {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translateY(10px);
  animation: intro-logo 1000ms var(--ease) 200ms forwards;
}

.intro-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--warm), transparent);
  animation: intro-line 1100ms var(--ease) 450ms forwards;
}

@keyframes intro-logo {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes intro-line {
  to {
    width: min(24rem, 72vw);
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 1rem var(--gutter);
  color: var(--white);
  transition: background 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(244, 241, 236, 0.92);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(14.5rem, 16.5vw, 17.6rem);
  min-width: 0;
  transform: translateY(-0.18rem);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  transition: filter 240ms ease, opacity 240ms ease;
}

.site-header.is-scrolled .brand-logo,
.site-header.is-open .brand-logo {
  filter: brightness(0);
}

.site-nav {
  display: flex;
  gap: clamp(1.1rem, 2.5vw, 2.8rem);
  justify-content: flex-end;
  align-items: center;
  font-size: var(--type-nav);
}

.site-nav a:not(.nav-cta) {
  opacity: 0.82;
  transition: opacity 180ms ease;
}

.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta):focus-visible {
  opacity: 1;
}

.nav-cta {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  min-height: 2.8rem;
  padding: 0 1.3rem;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
}

.hero {
  --hero-content-max: 96rem;
  --hero-stack-gap: clamp(0.9rem, 2.1vw, 1.75rem);
  position: relative;
  min-height: 94svh;
  padding: clamp(7rem, 12vh, 9rem) 0 clamp(3rem, 6vh, 5rem);
  color: var(--white);
  background: radial-gradient(
      circle at 82% 18%,
      rgba(185, 145, 90, 0.24),
      transparent 28rem
    ),
    linear-gradient(135deg, #0d0f10 0%, #171a1c 52%, #27231d 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 22%;
  content: '';
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-areas:
    'heading'
    'media'
    'details';
  grid-template-columns: 1fr;
  gap: var(--hero-stack-gap);
  align-items: start;
  align-content: start;
  min-height: auto;
}

.hero-heading {
  grid-area: heading;
  width: min(100%, var(--hero-content-max));
  min-width: 0;
  margin-inline: auto;
}

.hero-details {
  grid-area: details;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(0.8rem, 1.6vw, 1.35rem) clamp(0.9rem, 2vw, 1.7rem);
  align-items: center;
  width: min(100%, var(--hero-content-max));
  min-width: 0;
  max-width: none;
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--warm);
  font-size: var(--type-eyebrow);
  font-weight: 650;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.motion .eyebrow,
.approach .eyebrow,
.systems .eyebrow,
.projects .eyebrow,
.company-identity .eyebrow {
  color: #8a642f;
}

.eyebrow-light {
  color: rgba(255, 250, 242, 0.78);
}

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

.hero h1 {
  max-width: none;
  margin-bottom: 0;
  color: #fffaf2;
  font-size: var(--type-hero);
  font-weight: 260;
  line-height: 1.04;
  letter-spacing: 0;
  white-space: normal;
}

.hero h1 span {
  color: #e0c28d;
}

.hero .lede {
  max-width: 32rem;
  margin-bottom: 0;
  color: rgba(255, 250, 242, 0.82);
  font-size: var(--type-body-large);
  line-height: 1.6;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero .button-row {
  gap: 0.75rem;
}

.hero-details .button-row {
  grid-column: 1 / -1;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  gap: 0.7rem;
  justify-content: center;
  align-items: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.35rem;
  color: inherit;
  font: inherit;
  font-size: var(--type-button);
  font-weight: 560;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease,
    border-color 180ms ease;
}

.hero .button-row .btn {
  min-height: 2.8rem;
  padding: 0.72rem 1.05rem;
}

.hero-details .button-row .btn {
  min-height: 2.65rem;
  padding: 0.66rem 0.9rem;
  white-space: nowrap;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--graphite-2);
  border-color: #e7d8bb;
  background: #e7d8bb;
}

.btn-ghost {
  color: currentColor;
  background: rgba(255, 255, 255, 0.05);
}

.btn-light {
  color: var(--graphite-2);
  border-color: var(--white);
  background: var(--white);
}

.btn-ghost-light {
  color: var(--white);
}

.hero-figure {
  position: relative;
  grid-area: media;
  width: min(100%, var(--hero-content-max));
  min-width: 0;
  align-self: center;
  justify-self: center;
  margin: 0;
}

.hero-figure > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(255, 250, 242, 0.34);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.hero-figure figcaption {
  margin-top: 0.75rem;
  color: rgba(255, 250, 242, 0.72);
  font-size: var(--type-caption);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-carousel-viewport {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: transparent;
  border-radius: 0;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.48);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.hero-carousel.is-dragging .hero-carousel-viewport {
  cursor: grabbing;
}

.hero-carousel-viewport::before {
  position: absolute;
  right: clamp(0.7rem, 1.8vw, 1rem);
  bottom: clamp(0.7rem, 1.8vw, 1rem);
  z-index: 5;
  width: clamp(8.5rem, 14vw, 11.5rem);
  aspect-ratio: 628 / 162;
  content: '';
  background:
    rgba(13, 15, 16, 0.38)
    var(--media-logo) center / 82% auto no-repeat;
  border: 1px solid rgba(255, 250, 242, 0.24);
  border-radius: 0.38rem;
  box-shadow: 0 0.65rem 1.5rem rgba(0, 0, 0, 0.24);
  opacity: 0.9;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.hero-carousel-viewport::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: '';
  background:
    linear-gradient(
      90deg,
      rgba(13, 15, 16, 0.4),
      transparent 1.8% 98.2%,
      rgba(13, 15, 16, 0.4)
    ),
    linear-gradient(
      180deg,
      rgba(13, 15, 16, 0.38),
      transparent 1.8% 98.2%,
      rgba(13, 15, 16, 0.38)
    );
  box-shadow: inset 0 0 18px 7px rgba(13, 15, 16, 0.38);
  pointer-events: none;
}

.hero-photo-watermark {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 3;
  width: clamp(14rem, 42%, 30rem);
  aspect-ratio: 1341 / 1078;
  content: '';
  background: var(--media-watermark) center / contain no-repeat;
  filter:
    drop-shadow(0 0 0.85rem rgba(255, 250, 242, 0.42))
    drop-shadow(0 0 0.25rem rgba(13, 15, 16, 0.48));
  mix-blend-mode: normal;
  opacity: 0.32;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero-carousel-track {
  display: flex;
  transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  min-width: 100%;
  background: transparent;
}

.hero-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
}

@media (min-width: 1181px) {
  .hero-slide img {
    aspect-ratio: 21 / 9;
  }
}

.hero-carousel figcaption {
  position: absolute;
  bottom: clamp(0.75rem, 1.8vw, 1.1rem);
  left: clamp(0.75rem, 1.8vw, 1.1rem);
  z-index: 5;
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  max-width: min(68%, 30rem);
  margin: 0;
  padding: 0.42rem 0.58rem;
  color: rgba(255, 250, 242, 0.78);
  line-height: 1.25;
  text-transform: none;
  background: rgba(13, 15, 16, 0.28);
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.hero-carousel-count {
  display: none;
}

.hero-carousel-control {
  position: absolute;
  top: 50%;
  z-index: 6;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: clamp(2.45rem, 4vw, 3.15rem);
  height: clamp(2.45rem, 4vw, 3.15rem);
  padding: 0;
  color: #fffaf2;
  border: 1px solid rgba(255, 250, 242, 0.72);
  border-radius: 50%;
  background: rgba(13, 15, 16, 0.44);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  transform: translateY(-50%);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.hero-carousel-control:hover,
.hero-carousel-control:focus-visible {
  background: rgba(13, 15, 16, 0.7);
  transform: translateY(-50%) scale(1.04);
}

.hero-carousel-control svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-carousel-prev {
  right: 4.6rem;
  left: auto;
}

.hero-carousel-next {
  right: 0.85rem;
}

@media (max-width: 1180px) {
  .hero {
    --hero-content-max: 56rem;
  }

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

  .hero h1 {
    white-space: normal;
  }

  .hero-details {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .hero-details .button-row {
    justify-content: center;
  }

  .hero-details .button-row {
    flex-wrap: wrap;
  }

  .hero-details .button-row .btn {
    white-space: normal;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .header-inner {
    gap: 1rem;
  }

  .site-nav {
    gap: clamp(0.7rem, 1.4vw, 1.4rem);
    font-size: 0.88rem;
  }

  .nav-cta {
    padding-inline: 1rem;
  }
}

.motion,
.approach,
.systems,
.projects {
  padding: var(--section-y) 0;
}

.motion {
  padding-top: 0;
  padding-bottom: clamp(2.2rem, 4vw, 3.8rem);
  background: var(--bg);
}

.approach {
  padding-block: clamp(2.2rem, 4vw, 3.8rem);
}

.systems {
  padding-top: clamp(1rem, 2.4vw, 2rem);
}

.systems .section-head {
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.72fr);
  gap: clamp(1.1rem, 2.4vw, 2.3rem);
  align-items: start;
  margin-bottom: clamp(0.8rem, 1.6vw, 1.25rem);
}

.systems .section-head h2 {
  max-width: 13ch;
  font-size: clamp(1.75rem, 2.65vw, 2.55rem);
}

.systems .section-sub {
  line-height: 1.56;
}

.motion-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 0.34fr) minmax(0, 1fr);
  gap: clamp(1.7rem, 3vw, 3rem);
  align-items: start;
}

.motion-copy {
  position: sticky;
  top: 7rem;
}

.motion-copy h2 {
  max-width: 12ch;
  margin-bottom: 0.95rem;
  font-size: var(--type-motion-title);
  font-weight: 310;
  line-height: 1.06;
}

.motion-copy .btn {
  margin-top: 0.95rem;
}

.shorts-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: flex-start;
  gap: 1px;
  overflow: visible;
  padding-bottom: 0;
  background: transparent;
  scroll-snap-type: none;
}

.shorts-rail-single {
  grid-template-columns: minmax(12rem, min(100%, 20rem));
  justify-content: center;
}

.shorts-rail-single .short-card {
  width: 100%;
  max-width: 20rem;
}

.shorts-rail-youtube {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shorts-rail-youtube .short-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 0.65rem;
}

.short-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 0.75rem;
  background: var(--white);
  scroll-snap-align: start;
}

.short-card::before {
  position: absolute;
  top: clamp(1rem, 4vw, 1.45rem);
  left: 50%;
  z-index: 2;
  width: clamp(5.2rem, 46%, 9rem);
  aspect-ratio: 1341 / 1078;
  content: '';
  background: var(--media-watermark) center / contain no-repeat;
  filter:
    drop-shadow(0 0 0.65rem rgba(255, 250, 242, 0.38))
    drop-shadow(0 0 0.2rem rgba(13, 15, 16, 0.48));
  opacity: 0.24;
  pointer-events: none;
  transform: translateX(-50%);
}

.short-card iframe,
.short-card-media {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
  background: #0d0f10;
}

.short-card-youtube::before {
  top: 1.1rem;
  width: clamp(4.6rem, 24%, 7rem);
  opacity: 0.2;
}

.short-card-youtube .youtube-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0d0f10;
}

.short-card-youtube iframe {
  position: absolute;
  inset: 0;
  height: 100%;
  aspect-ratio: auto;
}

.short-card-local-video .short-card-media {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.short-card-feed-video .youtube-video-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.youtube-thumbnail img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.youtube-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: clamp(3rem, 9vw, 4.5rem);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 250, 242, 0.42);
  border-radius: 50%;
  background: rgba(13, 15, 16, 0.45);
  box-shadow: 0 1rem 2.8rem rgba(0, 0, 0, 0.26);
  transform: translate(-50%, -50%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.youtube-play-icon {
  width: 0;
  height: 0;
  margin-left: 0.18rem;
  border-top: 0.58rem solid transparent;
  border-bottom: 0.58rem solid transparent;
  border-left: 0.9rem solid #fffaf2;
}

.short-card-media {
  position: relative;
  z-index: 1;
  object-fit: contain;
  object-position: center;
}

.short-card-landscape {
  min-width: 0;
}

.short-card div {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem 0.25rem 0.2rem;
}

.short-card strong {
  font-size: var(--type-body);
  font-weight: 520;
}

.short-card span {
  color: var(--muted);
  font-size: var(--type-small);
  line-height: 1.35;
}

.short-card strong,
.short-card span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, min(100%, 46rem));
  gap: clamp(0.75rem, 1.4vw, 1.1rem);
  align-items: start;
  margin-bottom: clamp(1.15rem, 2vw, 1.9rem);
}

.approach .section-head,
.projects .section-head {
  grid-template-columns: minmax(0, min(100%, 46rem));
  gap: clamp(0.75rem, 1.4vw, 1.1rem);
  align-items: start;
}

.section-head h2 {
  max-width: 15ch;
  margin-bottom: 0;
  font-size: var(--type-section);
  font-weight: 310;
  line-height: 1.04;
  letter-spacing: 0;
}

.approach .section-head h2,
.projects .section-head h2 {
  max-width: 18ch;
  font-size: var(--type-section-compact);
  line-height: 1.1;
}

.section-sub {
  max-width: 34rem;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.58;
}

.system-evidence-note {
  max-width: 32rem;
  margin: 0;
  padding-top: 0.7rem;
  color: var(--muted);
  font-size: var(--type-small);
  line-height: 1.55;
  border-top: 1px solid var(--line);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.approach-grid li {
  min-height: 10rem;
  padding: clamp(1.25rem, 2.2vw, 1.75rem);
  background: #fffaf2;
}

.approach-num {
  display: block;
  margin-bottom: clamp(0.7rem, 1.35vw, 1.05rem);
  color: var(--warm);
  font-size: var(--type-caption);
  letter-spacing: var(--tracking-label);
}

.approach-grid h3,
.system-card h3 {
  font-size: var(--type-card-title);
  font-weight: 420;
  line-height: 1.16;
}

.approach-grid p,
.system-card p,
.download-panel p,
.contact-panel address {
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.65;
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: transparent;
}

.system-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.system-card-feature {
  grid-column: auto;
}

.system-card:nth-child(4),
.system-card:nth-child(5) {
  grid-column: auto;
}

.system-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 0.46;
  background: #d9d3c8;
}

.system-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.system-card:hover .system-media img {
  transform: scale(1.035);
}

.system-media-render img {
  object-fit: contain;
  padding: 1.2rem;
  background: #ece7de;
}

.system-media-grey img {
  position: relative;
  z-index: 1;
  grid-row: 2;
  min-height: 0;
  object-fit: contain;
  padding: clamp(0.18rem, 0.45vw, 0.38rem) clamp(0.25rem, 0.6vw, 0.52rem)
    clamp(0.42rem, 0.8vw, 0.7rem);
  background: transparent;
  filter: drop-shadow(0 1.2rem 1.35rem rgba(38, 36, 31, 0.18));
  transform: scale(1.16);
}

.system-card:hover .system-media-grey img {
  transform: scale(1.2);
}

.system-media-photo-contain img {
  object-fit: contain;
  background: #ece7de;
}

.system-media-grey {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  isolation: isolate;
  aspect-ratio: 1 / 0.62;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 48%, rgba(255, 255, 255, 0.86), transparent 42%),
    linear-gradient(135deg, #f4f3ef 0%, #e4e2db 100%);
}

.system-media-grey::before {
  position: absolute;
  inset: -16% -14% -18%;
  z-index: 0;
  content: '';
  background-image: var(--render-image);
  background-repeat: no-repeat;
  background-position: 50% 56%;
  background-size: 158% auto;
  filter: grayscale(1) contrast(1.04);
  opacity: 0.24;
  transform: scale(1.08);
}

.system-media-title {
  z-index: 2;
  display: grid;
  gap: 0.22rem;
  min-width: 0;
  margin: 0;
  padding: clamp(0.78rem, 1.5vw, 1.15rem) clamp(0.9rem, 1.8vw, 1.35rem)
    clamp(0.35rem, 0.9vw, 0.55rem);
  color: var(--ink);
  background: linear-gradient(
    180deg,
    rgba(244, 243, 239, 0.94) 0%,
    rgba(244, 243, 239, 0.72) 72%,
    rgba(244, 243, 239, 0) 100%
  );
}

.system-media-title span {
  min-width: 0;
  font-size: var(--type-card-title);
  font-weight: 420;
  line-height: 1.05;
}

.system-media-title small {
  max-width: 24ch;
  color: var(--muted);
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  font-weight: 430;
  line-height: 1.24;
}

.system-body {
  padding: clamp(1rem, 1.8vw, 1.45rem);
}

.system-body h3 {
  margin-bottom: 0.35rem;
}

.system-signature {
  max-width: 17ch;
  margin-bottom: 0.65rem;
  color: var(--ink) !important;
  font-size: var(--type-feature);
  font-weight: 360;
  line-height: 1.18;
}

.system-card-feature .system-signature {
  max-width: 17ch;
  font-size: var(--type-feature);
}

.system-tag {
  margin-bottom: 0.7rem;
  color: var(--warm) !important;
  font-size: var(--type-caption);
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.projects {
  padding-block: clamp(2.2rem, 4vw, 3.8rem);
  background: #ebe6dd;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.project {
  position: relative;
  height: clamp(18rem, 24vw, 24rem);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #d9d3c8;
}

.project-gallery-trigger {
  position: absolute;
  inset: 0;
  z-index: 7;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.project-gallery-trigger:focus-visible {
  outline: 2px solid #fffaf2;
  outline-offset: -0.6rem;
}

.project::before {
  position: absolute;
  right: clamp(0.72rem, 1.7vw, 1rem);
  bottom: clamp(0.72rem, 1.7vw, 1rem);
  z-index: 5;
  width: clamp(7.4rem, 18vw, 10.5rem);
  aspect-ratio: 628 / 162;
  content: '';
  background:
    rgba(13, 15, 16, 0.4)
    var(--media-logo) center / 82% auto no-repeat;
  border: 1px solid rgba(255, 250, 242, 0.25);
  border-radius: 0.38rem;
  box-shadow: 0 0.65rem 1.5rem rgba(0, 0, 0, 0.24);
  opacity: 0.92;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.project::after {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 4;
  width: clamp(9rem, 40%, 20rem);
  aspect-ratio: 1341 / 1078;
  content: '';
  background: var(--media-watermark) center / contain no-repeat;
  filter:
    drop-shadow(0 0 0.85rem rgba(255, 250, 242, 0.42))
    drop-shadow(0 0 0.25rem rgba(13, 15, 16, 0.48));
  opacity: 0.3;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.project-tall {
  aspect-ratio: auto;
}

.project-wide {
  aspect-ratio: auto;
}

@media (min-width: 981px) {
  .projects-grid .project:nth-last-child(1):nth-child(3n + 1) {
    grid-column: 1 / -1;
  }
}

.project img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 650ms var(--ease);
}

.project:hover img {
  transform: scale(1.035);
}

.project figcaption {
  position: absolute;
  right: auto;
  bottom: 1rem;
  left: 1rem;
  z-index: 5;
  width: fit-content;
  max-width: min(70%, 24rem);
  padding: 0.52rem 0.68rem;
  color: rgba(255, 250, 242, 0.84);
  font-size: var(--type-caption);
  line-height: 1.35;
  background: rgba(13, 15, 16, 0.36);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2.5rem);
}

.project-lightbox[aria-hidden='true'] {
  display: none;
}

.project-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 15, 16, 0.82);
  backdrop-filter: blur(18px);
}

.project-lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: min(100%, 88rem);
  max-height: min(88svh, 58rem);
  overflow: hidden;
  color: var(--white);
  background: rgba(13, 15, 16, 0.88);
  border: 1px solid rgba(255, 250, 242, 0.18);
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.44);
}

.project-lightbox-media {
  position: relative;
  display: grid;
  min-height: 0;
  background: #0d0f10;
}

.project-lightbox-media img {
  width: 100%;
  height: min(70svh, 46rem);
  object-fit: contain;
  background: #0d0f10;
}

.project-lightbox-close,
.project-lightbox-control {
  position: absolute;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  padding: 0;
  color: #fffaf2;
  border: 1px solid rgba(255, 250, 242, 0.62);
  border-radius: 999px;
  background: rgba(13, 15, 16, 0.48);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.project-lightbox-close {
  top: 1rem;
  right: 1rem;
  width: 2.65rem;
  height: 2.65rem;
}

.project-lightbox-control {
  top: 50%;
  width: clamp(2.45rem, 4vw, 3.2rem);
  height: clamp(2.45rem, 4vw, 3.2rem);
  transform: translateY(-50%);
}

.project-lightbox-prev {
  left: clamp(0.8rem, 2vw, 1.25rem);
}

.project-lightbox-next {
  right: clamp(0.8rem, 2vw, 1.25rem);
}

.project-lightbox-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
  padding: clamp(1rem, 2.5vw, 1.45rem);
  background: rgba(22, 24, 25, 0.92);
}

.project-lightbox-copy .eyebrow {
  margin-bottom: 0.5rem;
}

.project-lightbox-copy h2 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 380;
  line-height: 1.08;
}

.project-lightbox-copy p {
  margin-bottom: 0;
  color: rgba(255, 250, 242, 0.76);
  font-size: var(--type-small);
  line-height: 1.45;
}

.project-lightbox-count {
  white-space: nowrap;
  color: rgba(255, 250, 242, 0.7);
  font-size: var(--type-caption);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.has-project-lightbox {
  overflow: hidden;
}

.contact-band {
  padding: clamp(4rem, 8vw, 7rem) 0;
  color: var(--white);
  background: var(--graphite);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 250, 242, 0.16);
}

.download-panel,
.contact-panel {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: rgba(255, 250, 242, 0.055);
}

.download-panel h2,
.contact-panel h2 {
  max-width: 16ch;
  margin-bottom: 1rem;
  font-size: var(--type-panel-compact);
  font-weight: 320;
  line-height: 1.1;
}

.download-panel p,
.contact-panel address {
  margin-bottom: 1.5rem;
  color: rgba(255, 250, 242, 0.72);
  font-style: normal;
}

.catalogue-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.catalogue-form label {
  display: grid;
  gap: 0.42rem;
  color: rgba(255, 250, 242, 0.82);
  font-size: var(--type-small);
  font-weight: 620;
}

.catalogue-form label span {
  display: flex;
  gap: 0.3rem;
  align-items: baseline;
}

.catalogue-form em {
  color: rgba(255, 250, 242, 0.58);
  font-size: 0.86em;
  font-style: normal;
  font-weight: 500;
}

.catalogue-form input,
.catalogue-form select {
  width: 100%;
  min-height: 3rem;
  border: 1px solid rgba(255, 250, 242, 0.24);
  border-radius: 0;
  padding: 0.8rem 0.9rem;
  color: var(--white);
  background: rgba(255, 250, 242, 0.075);
  font: inherit;
  outline: none;
}

.catalogue-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 250, 242, 0.72) 50%),
    linear-gradient(135deg, rgba(255, 250, 242, 0.72) 50%, transparent 50%);
  background-position:
    calc(100% - 1.1rem) 50%,
    calc(100% - 0.78rem) 50%;
  background-repeat: no-repeat;
  background-size: 0.34rem 0.34rem;
}

.catalogue-form select option {
  color: var(--ink);
  background: var(--white);
}

.catalogue-form input:focus,
.catalogue-form select:focus {
  border-color: rgba(232, 205, 154, 0.78);
  background-color: rgba(255, 250, 242, 0.12);
}

.catalogue-form .btn,
.catalogue-form-status {
  grid-column: 1 / -1;
}

.catalogue-form .btn:disabled {
  cursor: wait;
  opacity: 0.68;
}

.catalogue-form-status {
  min-height: 1.3rem;
  margin: 0;
  color: rgba(255, 250, 242, 0.72);
  font-size: var(--type-small);
}

.contact-panel a {
  color: var(--white);
}

.company-identity {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: linear-gradient(
      135deg,
      rgba(255, 250, 242, 0.8),
      rgba(214, 208, 197, 0.55)
    ),
    var(--bg);
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.company-identity h2 {
  max-width: 16ch;
  margin-bottom: 1.1rem;
  font-size: var(--type-panel-compact);
  font-weight: 320;
  line-height: 1.1;
}

.company-identity p,
.verification-note {
  max-width: 46rem;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.75;
}

.verification-note {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.company-facts {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.company-facts div {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  background: rgba(255, 250, 242, 0.78);
}

.company-facts dt {
  color: var(--muted);
  font-size: var(--type-caption);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.company-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: var(--type-body);
  font-weight: 650;
}

.company-facts a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.subpage {
  background: radial-gradient(
      circle at 85% 10%,
      rgba(185, 145, 90, 0.16),
      transparent 30rem
    ),
    var(--bg);
}

.subpage .site-header {
  position: sticky;
  color: var(--ink);
}

.subpage-nav {
  display: flex;
}

.subpage-hero {
  padding: clamp(6.5rem, 12vw, 10rem) 0 clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  background: radial-gradient(
      circle at 80% 20%,
      rgba(185, 145, 90, 0.22),
      transparent 26rem
    ),
    linear-gradient(135deg, #0d0f10, #222629);
}

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

.subpage-hero .lede {
  max-width: 50rem;
}

.legal-updated {
  margin: 0;
  color: rgba(255, 250, 242, 0.7);
  font-size: var(--type-small);
}

.legal-section {
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(17rem, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.policy-card,
.legal-content,
.support-card {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(255, 250, 242, 0.84);
  border: 1px solid var(--line);
  box-shadow: 0 1.2rem 3rem rgba(13, 15, 16, 0.08);
}

.policy-card {
  position: sticky;
  top: 6rem;
}

.policy-card h2,
.support-card h2 {
  margin-bottom: 1rem;
  font-size: var(--type-card-title);
}

.company-facts.compact div {
  grid-template-columns: 1fr;
  gap: 0.25rem;
  padding: 0.92rem 1rem;
}

.legal-content {
  display: grid;
  gap: 2.2rem;
}

.legal-content section + section {
  padding-top: 2.2rem;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 1rem;
  font-size: var(--type-panel-title);
  font-weight: 380;
}

.legal-content h3 {
  margin: 1.3rem 0 0.55rem;
  font-size: var(--type-card-title);
}

.legal-content p,
.legal-content li,
.support-card p {
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.72;
}

.legal-content a,
.support-card a:not(.btn) {
  color: var(--ink);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

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

.support-card {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.support-card-wide {
  grid-column: 1 / -1;
}

.subpage-footer {
  margin-top: 0;
}

.site-footer {
  padding: 2.2rem 0;
  color: rgba(255, 250, 242, 0.74);
  background: #0d0f10;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.footer-logo {
  width: clamp(11rem, 16vw, 15rem);
  filter: brightness(0) invert(1);
  opacity: 0.86;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}

.footer-legal {
  margin: 0;
  font-size: var(--type-small);
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 650ms ease, transform 650ms var(--ease);
}

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

.hero [data-reveal] {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  :root {
    --type-section: 2rem;
    --type-panel-title: 1.85rem;
  }

  .site-header {
    padding-block: 0.82rem;
    color: var(--ink);
    background: rgba(244, 241, 236, 0.94);
    box-shadow: 0 1px 0 var(--line);
    backdrop-filter: blur(18px);
  }

  .brand-logo {
    filter: brightness(0);
  }

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

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    color: inherit;
    border: 1px solid currentColor;
    border-radius: 999px;
    background: transparent;
  }

  .menu-toggle-bars {
    display: grid;
    gap: 0.36rem;
    width: 1.1rem;
  }

  .menu-toggle-bars span {
    height: 1px;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: var(--gutter);
    left: var(--gutter);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
  }

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

  .subpage .header-inner {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    align-items: start;
  }

  .subpage .subpage-nav {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.85rem 1.2rem;
    align-items: center;
    padding: 0;
    color: inherit;
    background: transparent;
    box-shadow: none;
  }

  .nav-cta {
    justify-content: center;
  }

  .hero {
    --hero-content-max: 46rem;
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 2.25rem;
  }

  .hero-grid,
  .motion-grid,
  .section-head,
  .contact-grid,
  .company-grid,
  .legal-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .systems .section-head {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-grid {
    grid-template-areas:
      'heading'
      'media'
      'details';
    gap: 1.35rem;
  }

  .policy-card {
    position: static;
  }

  .motion-copy {
    position: static;
  }

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

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

  .hero-grid {
    min-height: auto;
  }

  .hero-heading,
  .hero-details {
    width: min(100%, var(--hero-content-max));
    max-width: none;
    margin-inline: auto;
  }

  .hero-details {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .hero .lede {
    max-width: 100%;
  }

  .hero-heading h1 {
    max-width: none;
    white-space: normal;
  }

  .hero-figure {
    width: min(100%, var(--hero-content-max));
    max-width: none;
  }

  .hero-carousel figcaption {
    align-items: flex-start;
  }

  .motion-copy h2,
  .section-head h2 {
    max-width: 18ch;
  }

  .approach-grid,
  .systems-grid {
    grid-template-columns: 1fr;
  }

  .system-media {
    aspect-ratio: 1 / 0.58;
  }

  .system-card-feature {
    grid-column: auto;
  }

  .system-card:nth-child(4),
  .system-card:nth-child(5) {
    grid-column: auto;
  }

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

  .project,
  .project-tall,
  .project-wide {
    aspect-ratio: 16 / 11;
    grid-column: auto;
    height: auto;
    min-height: 17rem;
  }

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

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

@media (min-width: 981px) and (max-height: 760px) {
  .hero {
    --hero-stack-gap: 0.95rem;
    padding-top: 5.8rem;
    padding-bottom: 2.8rem;
  }

  .hero-grid {
    min-height: auto;
    align-items: start;
  }

  .eyebrow {
    margin-bottom: 0.85rem;
  }

  .hero h1 {
    max-width: none;
    font-size: min(2.35rem, var(--type-hero));
  }

  .hero .lede {
    font-size: 1rem;
    line-height: 1.5;
  }

  .btn {
    min-height: 2.8rem;
    padding-block: 0.66rem;
  }
}

@media (max-width: 760px) {
  :root {
    --type-section: 1.68rem;
    --type-panel-title: 1.65rem;
    --type-card-title: 1.18rem;
    --type-feature: 1.18rem;
    --type-body: 0.95rem;
    --type-body-large: 0.95rem;
  }

  section {
    scroll-margin-top: 5.4rem;
  }

  .hero-grid {
    grid-template-areas:
      'heading'
      'media'
      'details';
    gap: 1rem;
  }

  .motion,
  .approach,
  .systems,
  .projects,
  .company-identity,
  .contact-band {
    padding-block: 2.75rem;
  }

  .motion {
    padding-top: 0;
    padding-bottom: 2.1rem;
  }

  .approach {
    padding-block: 2.1rem;
  }

  .systems {
    padding-top: 2.1rem;
  }

  .section-head {
    gap: 1rem;
    margin-bottom: 1.45rem;
  }

  .section-head h2,
  .motion-copy h2,
  .company-identity h2,
  .download-panel h2,
  .contact-panel h2 {
    max-width: 14ch;
    font-size: var(--type-section);
    line-height: 1.08;
  }

  .approach .section-head h2,
  .projects .section-head h2,
  .company-identity h2,
  .download-panel h2,
  .contact-panel h2 {
    max-width: 18ch;
    font-size: clamp(1.46rem, 7vw, 1.78rem);
    line-height: 1.12;
  }

  .section-sub,
  .company-identity p,
  .verification-note {
    font-size: var(--type-body);
    line-height: 1.58;
  }

  .project figcaption,
  .footer-legal,
  .site-footer nav a {
    overflow-wrap: anywhere;
  }

  .project {
    min-height: 17rem;
  }

  .project-lightbox {
    padding: 0.75rem;
  }

  .project-lightbox-panel {
    max-height: 92svh;
  }

  .project-lightbox-media img {
    height: 58svh;
  }

  .project-lightbox-copy {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .project-lightbox-count {
    white-space: normal;
  }

  .approach-grid li {
    min-height: auto;
    padding: 1.25rem;
  }

  .approach-num {
    margin-bottom: 1rem;
  }

  .company-facts div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) and (orientation: landscape) {
  :root {
    --type-hero: clamp(1.42rem, 2.55vw, 1.8rem);
    --type-body-large: 0.86rem;
    --type-stat: 0.94rem;
    --type-caption: 0.64rem;
    --type-button: 0.82rem;
  }

  .site-header {
    padding-block: 0.62rem;
  }

  .brand {
    width: 14.1rem;
  }

  .menu-toggle {
    width: 2.35rem;
    height: 2.35rem;
  }

  .hero {
    --hero-content-max: 42rem;
    --hero-stack-gap: 0.72rem;
    padding-top: 4.7rem;
    padding-bottom: 1.45rem;
  }

  .hero-grid {
    grid-template-areas:
      'heading'
      'media'
      'details';
    grid-template-columns: 1fr;
    gap: 0.72rem;
    align-items: start;
  }

  .hero-heading,
  .hero-details,
  .hero-figure {
    width: min(100%, var(--hero-content-max));
    max-width: none;
    margin-inline: auto;
  }

  .hero h1 {
    font-size: var(--type-hero);
    line-height: 1.08;
  }

  .hero .lede {
    max-width: 38rem;
    font-size: var(--type-body-large);
    line-height: 1.32;
  }

  .hero-details .button-row {
    display: flex;
    gap: 0.55rem;
    justify-content: center;
  }

  .hero-details .button-row .btn {
    min-height: 2.15rem;
    padding: 0.42rem 0.72rem;
    font-size: var(--type-button);
  }

  .hero-figure {
    align-self: start;
  }

  .hero-carousel figcaption {
    margin-top: 0.45rem;
    font-size: var(--type-caption);
  }

  .hero-carousel-control {
    width: 2.15rem;
    height: 2.15rem;
  }

  .shorts-rail {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.6rem;
    scroll-snap-type: x proximity;
  }

  .shorts-rail-single {
    display: grid;
    grid-template-columns: minmax(12rem, min(100%, 20rem));
    justify-content: center;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .short-card {
    flex: 0 0 11rem;
    min-width: 11rem;
  }

  .shorts-rail-youtube {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .shorts-rail-youtube .short-card {
    flex: initial;
    min-width: 0;
    width: 100%;
  }

  .shorts-rail-single .short-card {
    flex: initial;
    min-width: 0;
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 1rem;
    --type-hero: 1.65rem;
    --type-eyebrow: 0.72rem;
    --type-body-large: 0.92rem;
    --type-stat: 0.95rem;
    --type-caption: 0.66rem;
    --type-button: 0.8rem;
  }

  .site-header {
    padding-block: 0.75rem;
  }

  .brand {
    width: min(14.3rem, calc(100vw - 6.5rem));
  }

  .menu-toggle {
    width: 2.55rem;
    height: 2.55rem;
  }

  .hero {
    --hero-content-max: 100%;
    --hero-stack-gap: 0.85rem;
    padding-top: 6.65rem;
    padding-bottom: 1.2rem;
    background-position: 62% center;
  }

  .hero-heading,
  .hero-details,
  .hero-figure,
  .hero .lede,
  .hero-details .button-row {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero h1 {
    font-size: var(--type-hero);
    line-height: 1.08;
    white-space: normal;
  }

  .eyebrow {
    margin-bottom: 0.72rem;
    font-size: var(--type-eyebrow);
    letter-spacing: 0.16em;
  }

  .hero .lede {
    font-size: var(--type-body-large);
    line-height: 1.44;
    overflow-wrap: anywhere;
  }

  .hero-figure {
    margin-top: 0;
  }

  .hero-carousel figcaption {
    margin-top: 0.48rem;
    font-size: var(--type-caption);
    letter-spacing: 0.05em;
  }

  .button-row {
    flex-wrap: wrap;
  }

  .hero-details .button-row {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  .button-row .btn {
    flex: 0 1 auto;
    min-width: 0;
    min-height: 2.25rem;
    padding: 0.45rem 0.82rem;
  }

  .hero-details .button-row .btn {
    min-height: 2.25rem;
    width: auto;
    padding-inline: 0.82rem;
    font-size: var(--type-button);
    white-space: normal;
  }

  .hero-carousel figcaption {
    flex-direction: column;
    gap: 0.35rem;
    align-items: flex-start;
  }

  .hero-carousel-control {
    width: 2.35rem;
    height: 2.35rem;
  }

  .hero-carousel-prev {
    right: 3.45rem;
    left: auto;
  }

  .hero-carousel-next {
    right: 0.55rem;
  }

  .company-facts div {
    grid-template-columns: 1fr;
  }

  .shorts-rail {
    display: flex;
    gap: 0.65rem;
    margin-top: 1.4rem;
    margin-inline: calc(var(--gutter) * -1);
    overflow-x: auto;
    padding-inline: var(--gutter);
    padding-bottom: 0.6rem;
    background: transparent;
    scroll-snap-type: x proximity;
  }

  .shorts-rail-single {
    display: grid;
    grid-template-columns: minmax(12rem, min(100%, 18rem));
    justify-content: center;
    margin-inline: 0;
    overflow: visible;
    padding-inline: 0;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .short-card {
    flex: 0 0 10.25rem;
    min-width: 10.25rem;
    padding: 0.5rem;
    border: 1px solid var(--line);
  }

  .shorts-rail-youtube {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
    margin-inline: 0;
    overflow: visible;
    padding-inline: 0;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .shorts-rail-youtube .short-card {
    flex: initial;
    min-width: 0;
    width: 100%;
    padding: 0.55rem;
  }

  .shorts-rail-single .short-card {
    flex: initial;
    min-width: 0;
  }

  .short-card iframe,
  .short-card-media {
    aspect-ratio: 9 / 16;
  }

  .short-card-youtube iframe {
    aspect-ratio: auto;
  }

  .short-card-local-video .short-card-media {
    aspect-ratio: 16 / 9;
  }

  .short-card div {
    padding: 0.65rem 0 0;
  }

  .short-card strong,
  .short-card span {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 360px) {
  :root {
    --type-hero: 1.55rem;
    --type-button: 0.78rem;
  }

  .brand {
    width: 12.8rem;
  }

  .hero h1 {
    font-size: var(--type-hero);
  }

  .hero-details .button-row .btn {
    font-size: var(--type-button);
  }
}

/* Local hero experiment: fullscreen project photography while retaining the existing carousel controls and gestures. */
.hero {
  --hero-photo-top: clamp(5rem, 8.1vh, 6.2rem);
  --hero-content-max: 1680px;
  --hero-photo-zoom-start: 1.035;
  --hero-photo-zoom-end: 1;
  min-height: 100svh;
  padding: calc(var(--hero-photo-top) + clamp(1.2rem, 4.2vh, 3.5rem)) 0
    clamp(1.8rem, 4.5vh, 3.4rem);
  overflow: hidden;
  background: #0d0f10;
}

.hero::before {
  position: absolute;
  inset: var(--hero-photo-top) 0 0;
  z-index: 1;
  content: '';
  background:
    linear-gradient(
      90deg,
      rgba(13, 15, 16, 0.6) 0%,
      rgba(13, 15, 16, 0.34) 34%,
      rgba(13, 15, 16, 0.08) 64%,
      rgba(13, 15, 16, 0.22) 100%
    ),
    linear-gradient(
      180deg,
      rgba(13, 15, 16, 0.16) 0%,
      rgba(13, 15, 16, 0.02) 38%,
      rgba(13, 15, 16, 0.46) 86%,
      rgba(244, 241, 236, 0.92) 100%
    );
  pointer-events: none;
}

.hero::after {
  z-index: 2;
  height: 24%;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-grid {
  position: static;
  z-index: 3;
  grid-template-areas:
    'heading'
    'details';
  min-height: calc(100svh - var(--hero-photo-top) - clamp(2rem, 6vh, 4rem));
  align-content: end;
  padding-bottom: clamp(1.4rem, 3.4vh, 2.8rem);
}

.hero-heading,
.hero-details {
  position: relative;
  z-index: 3;
  width: min(100%, var(--hero-content-max));
}

.hero-heading {
  max-width: min(58rem, 72vw);
  margin-inline: 0 auto;
}

.hero-heading .eyebrow {
  margin-bottom: clamp(0.7rem, 1.8vh, 1.1rem);
  color: rgba(224, 194, 141, 0.88);
}

.hero h1 {
  max-width: 12.5ch;
  font-size: clamp(2.8rem, 5.6vw, 6rem);
  line-height: 0.98;
  text-wrap: balance;
}

.hero-details {
  grid-template-columns: minmax(18rem, 38rem) auto;
  gap: clamp(1rem, 2.2vw, 2.1rem);
  align-items: end;
  margin-inline: 0 auto;
}

.hero .lede {
  max-width: 34rem;
  color: rgba(255, 250, 242, 0.84);
  text-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.42);
}

.hero-details .button-row {
  grid-column: auto;
  justify-content: flex-end;
  align-self: end;
}

.hero-details .button-row .btn {
  color: #fffaf2;
  background: rgba(13, 15, 16, 0.26);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero-details .button-row .btn-primary {
  color: #161819;
  background: rgba(231, 216, 187, 0.9);
}

.hero-figure {
  position: absolute;
  inset: var(--hero-photo-top) 0 0;
  z-index: 0;
  width: 100%;
  max-width: none;
  align-self: stretch;
  justify-self: stretch;
}

.hero-carousel-viewport,
.hero-carousel-track,
.hero-slide {
  height: 100%;
}

.hero-carousel-viewport {
  border: 0;
  box-shadow: none;
}

.hero-carousel-viewport::before {
  right: clamp(1rem, 3.4vw, 4rem);
  bottom: clamp(1rem, 3.5vh, 2rem);
  z-index: 4;
}

.hero-carousel-viewport::after {
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(13, 15, 16, 0.18),
      transparent 5% 94%,
      rgba(13, 15, 16, 0.16)
    ),
    linear-gradient(
      180deg,
      rgba(13, 15, 16, 0.16),
      transparent 22% 72%,
      rgba(13, 15, 16, 0.28)
    );
  box-shadow: inset 0 0 2rem rgba(13, 15, 16, 0.3);
}

.hero-slide {
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  transform: scale(var(--hero-photo-zoom-start));
  transform-origin: center;
  will-change: transform;
}

.hero-slide.is-active img {
  animation: hero-photo-drift 6500ms ease-out forwards;
}

.hero-carousel-track {
  transition-duration: 820ms;
}

.hero-carousel figcaption {
  bottom: clamp(1.05rem, 3.3vh, 2rem);
  left: clamp(1rem, 3.4vw, 4rem);
  z-index: 4;
  max-width: min(24rem, 46vw);
  background: rgba(13, 15, 16, 0.18);
}

.hero-carousel-control {
  top: 54%;
  bottom: auto;
  z-index: 5;
  transform: translateY(-50%);
}

.hero-carousel-control:hover,
.hero-carousel-control:focus-visible {
  transform: translateY(-50%) scale(1.04);
}

.hero-carousel-prev {
  right: calc(clamp(1rem, 3.4vw, 4rem) + 3.75rem);
  left: auto;
}

.hero-carousel-next {
  right: clamp(1rem, 3.4vw, 4rem);
}

@keyframes hero-photo-drift {
  from {
    transform: scale(var(--hero-photo-zoom-start)) translate3d(0, 0, 0);
  }

  to {
    transform: scale(var(--hero-photo-zoom-end)) translate3d(0, 0, 0);
  }
}

@media (max-width: 1180px) {
  .hero {
    --hero-content-max: 100%;
  }

  .hero-grid {
    min-height: calc(100svh - var(--hero-photo-top) - 2rem);
  }

  .hero-heading {
    max-width: min(46rem, 86vw);
  }

  .hero-details {
    grid-template-columns: minmax(0, 1fr);
    max-width: min(46rem, 100%);
  }

  .hero-details .button-row {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .hero {
    --hero-photo-top: 4.45rem;
    min-height: calc(100svh + 4.75rem);
    padding-top: calc(var(--hero-photo-top) + 1rem);
    padding-bottom: 4.75rem;
  }

  .hero-grid {
    gap: 0.7rem;
    min-height: calc(100svh - var(--hero-photo-top));
    padding-bottom: clamp(4.5rem, 12svh, 6.25rem);
  }

  .hero-heading,
  .hero-details {
    width: 100%;
  }

  .hero-heading {
    max-width: 24rem;
  }

  .hero h1 {
    max-width: 10.5ch;
    font-size: clamp(2.05rem, 10vw, 3.2rem);
  }

  .hero .lede {
    max-width: 27rem;
    font-size: clamp(0.94rem, 3.65vw, 1.04rem);
    line-height: 1.45;
  }

  .hero-details .button-row {
    gap: 0.55rem;
    justify-content: flex-start;
  }

  .hero-details .button-row .btn {
    min-height: 2.08rem;
    padding-inline: 0.95rem;
    font-size: 0.86rem;
  }

  .hero-carousel figcaption {
    right: auto;
    bottom: 1rem;
    left: 1rem;
    max-width: 58%;
  }

  .hero-carousel-control {
    top: 30%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .hero-carousel-control:hover,
  .hero-carousel-control:focus-visible {
    transform: translateY(-50%) scale(1.04);
  }

  .hero-carousel-prev {
    right: 4.15rem;
    left: auto;
  }

  .hero-carousel-next {
    right: 1rem;
  }

  .hero-carousel-viewport::before {
    width: 7.2rem;
    right: 1rem;
    bottom: 4.7rem;
  }
}

@media (max-width: 560px) {
  .hero {
    --hero-photo-top: 4.45rem;
    min-height: calc(100svh + 5rem);
    padding-bottom: 5rem;
  }

  .hero-grid {
    justify-content: start;
    padding-bottom: clamp(4.75rem, 14svh, 6.5rem);
  }

  .hero-details .button-row .btn {
    min-height: 2.08rem;
  }
}

@media (max-width: 1180px) and (max-height: 520px) {
  .hero {
    --hero-photo-top: 4rem;
    min-height: calc(100svh + 4rem);
    padding-top: calc(var(--hero-photo-top) + 0.7rem);
    padding-bottom: 4rem;
  }

  .hero-grid {
    gap: 0.55rem;
    min-height: calc(100svh - var(--hero-photo-top));
    padding-bottom: clamp(3.8rem, 13vh, 4.35rem);
  }

  .hero-heading {
    max-width: min(34rem, 52vw);
  }

  .hero h1 {
    max-width: 12.5ch;
    font-size: clamp(2rem, 4.4vw, 3rem);
  }

  .hero .lede {
    max-width: 34rem;
    font-size: 0.94rem;
    line-height: 1.36;
  }

  .hero-details {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
  }

  .hero-details .button-row .btn {
    min-height: 2rem;
    padding-inline: 0.9rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 980px) {
  body:not(.subpage) .site-header {
    color: var(--white);
    background:
      linear-gradient(
        180deg,
        rgba(13, 15, 16, 0.96) 0%,
        rgba(13, 15, 16, 0.86) 68%,
        rgba(13, 15, 16, 0.2) 100%
      );
    box-shadow: none;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  body:not(.subpage) .brand-logo,
  body:not(.subpage) .site-header:not(.is-scrolled):not(.is-open) .brand-logo {
    filter: none;
  }

  body:not(.subpage) .menu-toggle {
    color: var(--white);
    background: rgba(13, 15, 16, 0.18);
  }

  body:not(.subpage) .site-header.is-scrolled,
  body:not(.subpage) .site-header.is-open {
    color: var(--ink);
    background: rgba(244, 241, 236, 0.94);
    box-shadow: 0 1px 0 var(--line);
  }

  body:not(.subpage) .site-header.is-scrolled .brand-logo,
  body:not(.subpage) .site-header.is-open .brand-logo {
    filter: brightness(0);
  }

  body:not(.subpage) .site-header.is-scrolled .menu-toggle,
  body:not(.subpage) .site-header.is-open .menu-toggle {
    color: var(--ink);
    background: transparent;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro {
    display: none;
  }

  html {
    scroll-behavior: auto;
  }

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-carousel-track {
    transition: none !important;
  }

  .hero-slide.is-active img {
    animation: none;
    transform: none;
  }
}
