/* ─── Tokens ─────────────────────────────────────────────────────────────── */
:root {
  --ink: #07101d;
  --navy-950: #020711;
  --navy-900: #04111f;
  --navy-800: #0a2034;
  --white: #ffffff;
  --paper: #f4f3ef;
  --paper-2: #fafaf6;
  --muted: #6b7280;
  --line: rgba(7, 16, 29, 0.11);
  --line-dark: rgba(255, 255, 255, 0.15);
  --orange: #f2380f;
  --orange-2: #ff4c14;
  --cyan: #11c7f3;
  --blue: #006fb9;
  --yellow: #ffc400;
  --shadow-card: 0 4px 18px rgba(5, 12, 22, 0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --rail: 88px;
  --content-max: 1280px;
  --font-display: 'Barlow Condensed', Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

/* Keep anchored sections clear of the sticky header */
[id] {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

img, svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

/* ─── Page shell ─────────────────────────────────────────────────────────── */
.page-shell {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ─── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  height: clamp(64px, 5.4vw, 78px);
  padding: 0 clamp(18px, 2.5vw, 36px);
  background: rgba(2, 7, 17, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: clamp(14px, 1.8vw, 26px);
  color: var(--white);
}

/* ─── Logo (header) ──────────────────────────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: clamp(48px, 4.6vw, 62px);
  width: auto;
  max-width: none;
  object-fit: contain;
}

/* ─── Desktop nav ────────────────────────────────────────────────────────── */
.desktop-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.7vw, 26px);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  white-space: nowrap;
  transition: color 150ms ease;
}

.desktop-nav a::after {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange-2);
  transition: transform 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav .is-active {
  color: var(--orange-2);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav .is-active::after {
  transform: scaleX(1);
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.quote-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color 150ms ease,
    border-color 150ms ease,
    color 150ms ease,
    box-shadow 150ms ease;
}

.quote-btn {
  height: clamp(34px, 3vw, 38px);
  padding: 0 clamp(14px, 1.4vw, 18px);
  background: var(--orange-2);
  color: var(--white);
  margin-left: auto;
  flex-shrink: 0;
}

.quote-btn:hover,
.quote-btn:focus-visible {
  background: #e83509;
}

.btn {
  height: clamp(38px, 3.4vw, 42px);
  padding: 0 clamp(16px, 1.6vw, 22px);
  min-width: 140px;
}

.btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  flex-shrink: 0;
}

.btn--orange {
  background: var(--orange-2);
  color: var(--white);
}

.btn--orange:hover,
.btn--orange:focus-visible {
  background: #e83509;
  box-shadow: 0 8px 22px rgba(242, 56, 15, 0.28);
}

.btn--outline {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(2, 8, 20, 0.3);
  color: var(--white);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  border-color: var(--cyan);
  background: rgba(2, 8, 20, 0.55);
}

.btn--navy {
  background: var(--navy-900);
  color: var(--white);
}

.btn--navy:hover,
.btn--navy:focus-visible {
  background: var(--navy-800);
  box-shadow: 0 8px 20px rgba(5, 12, 22, 0.2);
}

.btn--white {
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  min-width: 160px;
}

.btn--white:hover,
.btn--white:focus-visible {
  background: var(--paper);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* ─── Hamburger ──────────────────────────────────────────────────────────── */
.hamburger {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  flex-shrink: 0;
}

.hamburger span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
}

/* ─── Section backgrounds ────────────────────────────────────────────────── */
.section-dark {
  background:
    radial-gradient(ellipse at 72% 20%, rgba(0, 111, 185, 0.2), transparent 26rem),
    linear-gradient(115deg, #020b19 0%, #05152b 55%, #071120 100%);
  color: var(--white);
}

.section-light {
  background: var(--paper-2);
}

/* ─── Section rail ───────────────────────────────────────────────────────── */
.section-rail {
  position: relative;
  z-index: 8;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  padding-top: 32px;
  text-align: center;
  text-transform: uppercase;
}

.rail-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.rail-label {
  margin-top: 5px;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.rail-line {
  position: relative;
  width: 1px;
  flex: 1;
  min-height: 64px;
  margin-top: 22px;
  background: currentColor;
  opacity: 0.5;
}

.rail-line::before,
.rail-line::after {
  position: absolute;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
  background: currentColor;
}

.rail-line::before { top: 0; }
.rail-line::after  { bottom: 0; }

.section-rail--dark {
  color: var(--white);
  background: rgba(0, 0, 0, 0.14);
}

.section-rail--dark .rail-number,
.section-rail--dark .rail-label {
  color: var(--orange-2);
}

.section-rail--light {
  color: #06111f;
  background: rgba(255, 255, 255, 0.45);
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.section-rail--orange {
  color: var(--white);
  background: rgba(0, 0, 0, 0.1);
}

/* ─── Section intro (shared) ─────────────────────────────────────────────── */
.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.section-eyebrow--dim   { color: rgba(255, 255, 255, 0.55); }
.section-eyebrow--white { color: rgba(255, 255, 255, 0.8); }

.section-intro h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 0.97;
  text-transform: uppercase;
  color: var(--ink);
}

.section-intro h2 span {
  display: block;
  color: var(--orange);
}

.section-intro p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.6;
}

.section-intro--dark h2 {
  color: var(--white);
  font-size: 2.15rem;
}

.section-intro--dark h2 span {
  color: var(--cyan);
}

.section-intro--dark p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 18px;
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: var(--rail) minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  min-height: clamp(520px, 48vw, 660px);
  overflow: hidden;
  color: var(--white);
}

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

.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Light scrim over the copy area only; the photo stays untouched
     from ~70% across so it reads natural, not faded. */
  background: linear-gradient(
    90deg,
    rgba(2, 7, 17, 0.6) 0%,
    rgba(2, 7, 17, 0.34) 32%,
    rgba(2, 7, 17, 0.08) 54%,
    transparent 70%
  );
}

.hero .section-rail {
  grid-column: 1;
  grid-row: 1 / 3;
}

.hero__body {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 590px;
  padding: clamp(56px, 6vw, 86px) clamp(24px, 3.5vw, 56px) clamp(38px, 4vw, 58px);
}

.hero h1 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 4.9rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
}

.hero h1 span {
  display: block;
  margin-top: 6px;
  font-size: 0.72em;
  line-height: 0.95;
}

.hero h1 em {
  font-style: normal;
  color: var(--cyan);
}

.hero h1 strong {
  font-weight: inherit;
  color: var(--yellow);
}

.hero__kicker {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero__kicker span {
  display: block;
  color: var(--cyan);
}

.hero__text {
  max-width: 500px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1.65;
}

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

/* Hero stats bar */
.hero__statsbar {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 7, 17, 0.72);
  backdrop-filter: blur(10px);
}

.hero__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(14px, 1.6vw, 20px) 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  text-align: center;
}

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

.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--orange-2);
  line-height: 1;
}

.hero__stat span {
  display: block;
  margin-top: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

/* ─── Mobile menu ────────────────────────────────────────────────────────── */
.mobile-menu {
  display: none;
}

/* ─── Info bands (Service Area / Materials / Display Systems) ────────────── */
.band {
  display: grid;
  grid-template-columns: var(--rail) minmax(0, 1fr);
}

.band__inner {
  display: grid;
  max-width: var(--content-max);
  margin-inline: auto;
  width: 100%;
  grid-template-columns: minmax(240px, 310px) minmax(0, 1fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
  padding: clamp(48px, 4.8vw, 72px) clamp(24px, 3vw, 44px);
}

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

.info-grid {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.info-card {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: start;
  min-width: 0;
  padding: 16px 14px;
  border: 1px solid rgba(5, 12, 22, 0.08);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    transform 150ms ease;
}

.info-card:hover {
  border-color: rgba(17, 199, 243, 0.28);
  box-shadow: 0 8px 26px rgba(5, 12, 22, 0.14);
  transform: translateY(-2px);
}

.info-card__icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  margin-top: 1px;
}

.info-card__icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.info-card__icon--cyan   { background: var(--cyan); }
.info-card__icon--yellow { background: var(--yellow); color: var(--ink); }
.info-card__icon--orange { background: var(--orange); }
.info-card__icon--blue   { background: var(--blue); }

.info-card h3 {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.info-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.45;
}

/* Dark variant (Materials & Substrates) */
.info-card--dark {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

.info-card--dark:hover {
  border-color: rgba(17, 199, 243, 0.4);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
}

.info-card--dark h3 { color: var(--white); }
.info-card--dark p  { color: rgba(255, 255, 255, 0.62); }

/* ─── Solutions ──────────────────────────────────────────────────────────── */
.solutions {
  display: grid;
  grid-template-columns: var(--rail) minmax(0, 1fr);
}

.solutions__inner {
  display: grid;
  max-width: var(--content-max);
  margin-inline: auto;
  grid-template-columns: minmax(240px, 310px) minmax(0, 1fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
  padding: clamp(52px, 5vw, 78px) clamp(24px, 3vw, 44px);
}

.solution-grid {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(5, 12, 22, 0.08);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    transform 150ms ease;
}

.service-card::after {
  position: absolute;
  right: -34px;
  bottom: -38px;
  z-index: 0;
  width: 132px;
  aspect-ratio: 896 / 560;
  content: "";
  background: url("public/assets/go-big/paint-splash-card-accent.png") center / contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  border-color: rgba(17, 199, 243, 0.28);
  box-shadow: 0 8px 26px rgba(5, 12, 22, 0.14);
  transform: translateY(-2px);
}

.service-card img {
  width: 100%;
  height: clamp(138px, 11vw, 178px);
  object-fit: cover;
}

.service-card__body {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  min-height: 92px;
  padding: 14px;
  align-items: start;
}

.service-card__icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  flex-shrink: 0;
  margin-top: 1px;
}

.service-card__icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.service-card__icon--cyan   { background: var(--cyan); }
.service-card__icon--yellow { background: var(--yellow); color: var(--ink); }
.service-card__icon--orange { background: var(--orange); }
.service-card__icon--blue   { background: var(--blue); }

.service-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.18;
  text-transform: uppercase;
  letter-spacing: 0;
}

.service-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.45;
}

/* ─── Equipment ──────────────────────────────────────────────────────────── */
.equipment {
  display: grid;
  grid-template-columns: var(--rail) minmax(0, 1fr);
}

.equipment .section-rail {
  padding-top: 28px;
}

.equipment .rail-line {
  min-height: 52px;
  margin-top: 20px;
}

.equipment__inner {
  display: grid;
  max-width: var(--content-max);
  margin-inline: auto;
  grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  padding: clamp(48px, 4.8vw, 72px) clamp(24px, 3vw, 44px);
}

.equipment-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.equipment-item {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
}

.equipment-item img {
  width: 100%;
  height: clamp(100px, 8.2vw, 136px);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 14px 16px rgba(0, 0, 0, 0.36));
}

.equipment-item h3 {
  margin: 14px 0 5px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.equipment-item p {
  max-width: 220px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.45;
}

/* ─── Contact CTA ────────────────────────────────────────────────────────── */
.contact-cta {
  /* Anchored to .contact-cta__inner (the centered content box), so the
     cheetah keeps the same position relative to the copy at every
     screen resolution. anchor-x = horizontal center of the image. */
  --cta-cheetah-anchor-x: 265px;
  --cta-cheetah-bottom: -58px;
  --cta-cheetah-width: 500px;

  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: var(--rail) minmax(0, 1fr);
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(232, 44, 8, 0.94) 0%, rgba(249, 64, 16, 0.95) 52%, rgba(229, 38, 3, 0.96) 100%),
    url("public/assets/go-big/paint-splash-orange-cta.png") center / cover no-repeat;
  color: var(--white);
}

.contact-cta .section-rail {
  padding-top: 24px;
}

.contact-cta .rail-line {
  min-height: 38px;
  margin-top: 16px;
}

.contact-cta__visual {
  position: absolute;
  z-index: -1;
  left: var(--cta-cheetah-anchor-x);
  bottom: var(--cta-cheetah-bottom);
  width: var(--cta-cheetah-width);
  max-width: none;
  height: auto;
  transform: translateX(-50%);
  transform-origin: 50% 100%;
  pointer-events: none;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.22));
}

.contact-cta__inner {
  position: relative;
  z-index: 4;
  display: grid;
  max-width: var(--content-max);
  margin-inline: auto;
  width: 100%;
  grid-template-columns: minmax(210px, 250px) minmax(0, 1fr);
  gap: clamp(20px, 2.6vw, 40px);
  align-items: center;
  min-height: clamp(190px, 15vw, 240px);
  padding: clamp(42px, 4vw, 60px) clamp(24px, 3vw, 44px) clamp(42px, 4vw, 60px) 545px;
}

.contact-cta__inner > .btn {
  grid-column: 1;
  justify-self: start;
}

.contact-cta h2 {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 0.94;
  text-transform: uppercase;
}

.contact-cta p {
  margin: 6px 0 0;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.85;
}

.contact-list {
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 2;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 16px;
}

.contact-list a {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 10px;
  align-items: center;
  min-width: 0;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.contact-list span {
  display: grid;
  width: 34px;
  height: 34px;
  grid-row: span 2;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-list svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact-list strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── About ──────────────────────────────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: var(--rail) minmax(0, 1fr);
  position: relative;
  overflow: hidden;
}

.about::before {
  position: absolute;
  right: -8%;
  bottom: -20%;
  z-index: 0;
  width: min(48vw, 650px);
  aspect-ratio: 1600 / 1008;
  content: "";
  background: url("public/assets/go-big/paint-splash-blue-orange-about.png") center / contain no-repeat;
  opacity: 0.16;
  pointer-events: none;
}

.about__inner {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: var(--content-max);
  margin-inline: auto;
  width: 100%;
  min-height: 460px;
  grid-template-columns: minmax(250px, 330px) minmax(0, 1fr) minmax(420px, 520px);
  gap: clamp(30px, 4.5vw, 64px);
  align-items: center;
  padding: clamp(64px, 6vw, 92px) clamp(24px, 3vw, 44px);
}

.about .section-intro,
.about .stats {
  position: relative;
  z-index: 2;
}

.about .section-intro h2 span {
  color: var(--cyan);
}

.about__media {
  position: absolute;
  z-index: 1;
  top: 0;
  right: clamp(24px, 3vw, 44px);
  bottom: 0;
  width: min(44vw, 560px);
  min-height: 100%;
  overflow: hidden;
  border-radius: 0;
}

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

/* ─── Stats ──────────────────────────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 16px;
  margin: 0;
}

.stats div {
  position: relative;
  padding-left: 18px;
  min-width: 0;
}

.stats div::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50% 50% 50% 0;
  content: "";
  transform: rotate(-35deg);
  background: linear-gradient(135deg, var(--orange), var(--yellow));
}

.stats dt {
  font-family: var(--font-display);
  font-size: 2.45rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
}

.stats dd {
  margin: 4px 0 0;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.25;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  padding: clamp(20px, 2.4vw, 28px) clamp(24px, 3vw, 40px) clamp(20px, 2.4vw, 28px) calc(var(--rail) + clamp(24px, 3vw, 40px));
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-logo img {
  height: clamp(52px, 5vw, 64px);
  width: auto;
  object-fit: contain;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: var(--orange-2);
}

.site-footer__copy {
  margin: 0;
  font-size: 0.6rem;
  font-weight: 500;
}

/* ─── Focus styles ───────────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1180px) {
  :root {
    --rail: 80px;
  }

  .quote-btn {
    display: none;
  }

  .desktop-nav {
    font-size: 0.64rem;
    gap: clamp(12px, 1.5vw, 20px);
  }

  .band__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-cta {
    --cta-cheetah-anchor-x: 225px;
    --cta-cheetah-bottom: -48px;
    --cta-cheetah-width: 430px;
  }

  .contact-cta__inner {
    padding-left: 465px;
  }

  .contact-list {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .solutions__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .equipment__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .equipment-grid {
    gap: 14px;
  }

  .contact-cta__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 210px;
    padding: clamp(30px, 3.5vw, 44px) clamp(20px, 2.6vw, 32px) clamp(30px, 3.5vw, 44px) 420px;
  }

  .contact-list {
    grid-column: 1 / -1;
  }

  .about__inner {
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
    min-height: 0;
  }

  .about__media {
    position: relative;
    inset: auto;
    width: auto;
    grid-column: 1 / -1;
    min-height: 340px;
    border-radius: var(--radius-md);
  }
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  /* Anchored to the header box itself so overflowing siblings can never
     push it out of the viewport. */
  .hamburger {
    display: inline-flex;
    position: absolute;
    right: clamp(16px, 5vw, 22px);
    top: 50%;
    transform: translateY(-50%);
  }

  /* ── Section-links menu (hamburger target) ── */
  .mobile-menu {
    display: block;
    overflow: hidden;
    background: var(--paper-2);
  }

  .mobile-menu a {
    display: grid;
    min-height: clamp(58px, 7vw, 68px);
    grid-template-columns: clamp(44px, 6vw, 54px) 1fr 22px;
    align-items: center;
    padding: 0 clamp(16px, 5vw, 22px);
    border-bottom: 1px solid rgba(5, 12, 22, 0.1);
    background: linear-gradient(180deg, #ffffff, #f6f5f1);
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .mobile-menu a span {
    color: var(--cyan);
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1;
  }

  .mobile-menu a:nth-child(3n+2) span { color: var(--orange); }
  .mobile-menu a:nth-child(3n+3) span { color: #f0a900; }

  .mobile-menu svg {
    width: 16px;
    height: 16px;
    justify-self: end;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: clamp(500px, 58vw, 620px);
  }

  .hero__body {
    padding-inline: clamp(20px, 2.8vw, 36px);
  }

  .hero h1 {
    font-size: 4rem;
  }

  .equipment-item img {
    height: clamp(92px, 10vw, 118px);
  }
}

@media (max-width: 900px) {
  :root {
    --rail: 72px;
  }

  .site-header {
    padding-inline: clamp(16px, 3vw, 24px);
  }

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

  .hero__statsbar {
    flex-wrap: wrap;
  }

  .hero__stat {
    flex: 1 1 50%;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .hero__stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.09);
  }

  .hero__stat:last-child,
  .hero__stat:nth-last-child(2):nth-child(odd) {
    border-bottom: 0;
  }

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

  .service-card img {
    height: clamp(132px, 18vw, 156px);
  }

  .equipment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 22px;
  }

  .equipment-item img {
    height: clamp(76px, 13vw, 108px);
  }

  .contact-cta {
    --cta-cheetah-anchor-x: 165px;
    --cta-cheetah-bottom: -40px;
    --cta-cheetah-width: 360px;
  }

  .contact-cta__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-left: 340px;
  }

  .contact-list {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-cta__inner > .btn {
    grid-column: auto;
  }

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

  .stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  :root {
    --rail: 0px;
  }

  .site-header {
    height: 60px;
    padding-inline: clamp(16px, 5vw, 22px);
  }

  .site-header .logo img {
    height: 44px;
  }

  .section-rail {
    display: none;
  }

  /* ── Hero mobile ── */
  .hero {
    display: block;
    min-height: clamp(460px, 105vw, 560px);
  }

  .hero__bg {
    object-position: 70% center;
  }

  .hero__gradient {
    background: linear-gradient(
      180deg,
      rgba(2, 7, 17, 0.18) 0%,
      rgba(2, 7, 17, 0.5) 58%,
      rgba(2, 7, 17, 0.8) 100%
    ),
    linear-gradient(
      90deg,
      rgba(2, 7, 17, 0.26) 0%,
      transparent 60%
    );
  }

  .hero__body {
    display: block;
    max-width: none;
    padding: clamp(150px, 38vw, 205px) clamp(18px, 5vw, 26px) clamp(20px, 5vw, 28px);
  }

  .hero h1 {
    font-size: 3.25rem;
    max-width: min(340px, 90vw);
  }

  .hero__kicker {
    font-size: 0.86rem;
  }

  .hero__text {
    max-width: min(400px, 90vw);
    font-size: 0.94rem;
  }

  .hero__actions {
    gap: 10px;
  }

  .btn {
    min-width: min(180px, 48%);
    height: clamp(40px, 10vw, 46px);
    font-size: 0.72rem;
  }

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

  .hero__stat {
    border-right: 0;
    border-bottom: 0;
    padding: 12px;
  }

  .hero__stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.09);
  }

  .hero__stat:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  /* ── Sections mobile ── */
  .solutions, .equipment, .band {
    display: block;
  }

  .solutions__inner, .equipment__inner, .band__inner {
    display: block;
    padding: clamp(28px, 7vw, 40px) clamp(18px, 5vw, 24px) clamp(32px, 8vw, 44px);
  }

  .section-intro p {
    font-size: 0.92rem;
    margin-bottom: 16px;
  }

  .info-grid {
    margin-top: clamp(18px, 5vw, 24px);
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
    gap: 12px;
  }

  .solution-grid {
    margin-top: clamp(18px, 5vw, 24px);
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
    gap: 12px;
  }

  .service-card img {
    height: clamp(120px, 32vw, 164px);
  }

  .service-card h3 {
    font-size: 0.82rem;
  }

  .service-card p {
    font-size: 0.76rem;
  }

  /* ── Equipment mobile ── */
  .equipment-grid {
    margin-top: clamp(18px, 5vw, 24px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 12px;
  }

  .equipment-item img {
    height: clamp(78px, 20vw, 108px);
  }

  .equipment-item p {
    max-width: none;
  }

  /* ── Contact mobile ── */
  .contact-cta {
    --cta-cheetah-anchor-x: calc(100% - 96px);
    --cta-cheetah-bottom: -60px;
    --cta-cheetah-width: clamp(480px, 124vw, 560px);

    display: block;
  }

  .contact-cta__visual {
    opacity: 1;
    filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.25));
  }

  .contact-cta__inner {
    display: block;
    min-height: 0;
    padding: clamp(30px, 8vw, 42px) clamp(18px, 5vw, 24px) clamp(205px, 56vw, 255px);
  }

  .contact-cta h2 {
    font-size: 2rem;
  }

  .contact-list {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: clamp(16px, 5vw, 22px);
  }

  .contact-cta .btn {
    margin-top: clamp(18px, 5vw, 24px);
    min-width: min(180px, 100%);
  }

  /* ── About mobile ── */
  .about {
    display: block;
  }

  .about__inner {
    display: block;
    padding: clamp(28px, 7vw, 40px) clamp(18px, 5vw, 24px);
  }

  .about__media {
    min-height: clamp(260px, 78vw, 340px);
    margin-top: clamp(22px, 6vw, 30px);
  }

  .section-intro h2 {
    font-size: 2rem;
    max-width: min(300px, 85vw);
  }

  .stats {
    margin-top: clamp(22px, 6vw, 30px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }

  /* ── Footer mobile ── */
  .site-footer {
    padding-inline: clamp(18px, 5vw, 24px);
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .site-footer__nav {
    gap: 8px 16px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.75rem;
  }

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

@media (max-width: 370px) {
  .hero__body {
    padding-top: 160px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
}
