/*
Theme Name: Go Big Graphics
Theme URI: https://gobiggraphics.com/
Author: Go Big Graphics
Author URI: https://gobiggraphics.com/
Description: Single-page wide-format printing marketing site for Go Big Graphics — retail displays, vehicle wraps, branded environments, and large-scale visual programs across the Southeast. Every call-to-action routes to the Contact section.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: go-big-graphics
*/

/* ─── Tokens ─────────────────────────────────────────────────────────────── */
:root {
  --ink: #07101d;
  --navy-950: #020711;
  --navy-900: #04111f;
  --navy-800: #0a2034;
  --white: #ffffff;
  --paper: #f4f3ef;
  --paper-2: #fafaf6;
  --muted: #57606f;
  --line: rgba(7, 16, 29, 0.1);
  --line-dark: rgba(255, 255, 255, 0.14);
  --orange: #f2380f;
  --orange-2: #ff4c14;
  --orange-deep: #d92c07;
  --cyan: #11c7f3;
  --blue: #006fb9;
  --yellow: #ffc400;

  /* Icon chip gradients */
  --grad-orange: linear-gradient(140deg, #ff7038 0%, #f2380f 100%);
  --grad-cyan: linear-gradient(140deg, #3ad6ff 0%, #0cb2e0 100%);
  --grad-yellow: linear-gradient(140deg, #ffd84d 0%, #ffb500 100%);
  --grad-blue: linear-gradient(140deg, #2f9be0 0%, #00609f 100%);

  /* Elevation */
  --shadow-xs: 0 1px 2px rgba(7, 16, 29, 0.06);
  --shadow-sm: 0 1px 2px rgba(7, 16, 29, 0.05), 0 4px 14px -2px rgba(7, 16, 29, 0.08);
  --shadow-md: 0 2px 6px rgba(7, 16, 29, 0.05), 0 14px 30px -10px rgba(7, 16, 29, 0.16);
  --shadow-lg: 0 4px 10px rgba(7, 16, 29, 0.05), 0 26px 52px -18px rgba(7, 16, 29, 0.24);

  /* Shape */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.21, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-1: 170ms;
  --dur-2: 340ms;

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

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

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

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

img, svg {
  display: block;
}

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

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

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

h1, h2, h3 {
  text-wrap: balance;
}

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

/* ─── Accessibility helpers ──────────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 400;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-lg);
  transform: translateY(-220%);
  transition: transform var(--dur-2) var(--ease);
}

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

/* SVG sprite container — never rendered */
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ─── Scroll progress (CSS scroll-driven, progressive) ───────────────────── */
.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 300;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-2) 0%, var(--yellow) 55%, var(--cyan) 100%);
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
}

@supports (animation-timeline: scroll()) {
  .scroll-progress {
    animation: scroll-progress linear both;
    animation-timeline: scroll(root);
  }

  @keyframes scroll-progress {
    to { transform: scaleX(1); }
  }
}

/* ─── 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(74px, 6.4vw, 90px);
  padding: 0 clamp(18px, 2.5vw, 36px);
  background: #fce4c0;
  border-bottom: 1px solid rgba(242, 56, 15, 0.18);
  gap: clamp(14px, 1.8vw, 26px);
  color: var(--ink);
  transition: background-color var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
}

.site-header.is-scrolled {
  background: #fce4c0;
  box-shadow: 0 12px 32px -14px rgba(0, 0, 0, 0.15);
}

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

.logo img {
  height: clamp(60px, 6vw, 80px);
  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.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(7, 16, 29, 0.74);
}

.desktop-nav a {
  position: relative;
  padding: 10px 2px;
  white-space: nowrap;
  transition: color var(--dur-1) var(--ease);
}

.desktop-nav a::after {
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 2px;
  content: "";
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--orange-2), var(--yellow));
  transition: transform var(--dur-2) var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--ink);
}

.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 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color var(--dur-1) var(--ease),
    border-color var(--dur-1) var(--ease),
    color var(--dur-1) var(--ease),
    box-shadow var(--dur-2) var(--ease),
    transform var(--dur-1) var(--ease);
}

.quote-btn:active,
.btn:active {
  transform: translateY(0) scale(0.97);
}

.quote-btn svg,
.btn svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
  flex-shrink: 0;
  transition: transform var(--dur-2) var(--ease);
}

.quote-btn:hover svg,
.quote-btn:focus-visible svg,
.btn:hover svg,
.btn:focus-visible svg {
  transform: translateX(4px);
}

.quote-btn {
  height: clamp(36px, 3vw, 40px);
  padding: 0 clamp(16px, 1.6vw, 22px);
  background: linear-gradient(180deg, #ff5a22 0%, #ef3309 100%);
  color: var(--white);
  margin-left: auto;
  flex-shrink: 0;
  box-shadow: 0 8px 18px -8px rgba(242, 56, 15, 0.65);
}

.quote-btn:hover,
.quote-btn:focus-visible {
  background: linear-gradient(180deg, #ff6a35 0%, #f93d0e 100%);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -8px rgba(242, 56, 15, 0.7);
}

.btn {
  height: clamp(44px, 3.4vw, 48px);
  padding: 0 clamp(22px, 2.2vw, 30px);
  min-width: 150px;
}

.btn--orange {
  background: linear-gradient(180deg, #ff5a22 0%, #ef3309 100%);
  color: var(--white);
  box-shadow: 0 12px 26px -12px rgba(242, 56, 15, 0.7);
}

.btn--orange:hover,
.btn--orange:focus-visible {
  background: linear-gradient(180deg, #ff6a35 0%, #f93d0e 100%);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -12px rgba(242, 56, 15, 0.65);
}

.btn--outline {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(2, 8, 20, 0.28);
  color: var(--white);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--navy {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 12px 26px -14px rgba(4, 17, 31, 0.9);
}

.btn--navy:hover,
.btn--navy:focus-visible {
  background: var(--navy-800);
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -14px rgba(4, 17, 31, 0.8);
}

.btn--white {
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  min-width: 170px;
  box-shadow: 0 12px 28px -14px rgba(0, 0, 0, 0.5);
}

.btn--white:hover,
.btn--white:focus-visible {
  background: var(--paper-2);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -14px rgba(0, 0, 0, 0.45);
}

/* ─── Hamburger ──────────────────────────────────────────────────────────── */
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color var(--dur-1) var(--ease);
}

.hamburger:hover,
.hamburger:focus-visible {
  background: rgba(0, 0, 0, 0.08);
}

.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: 6px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

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

.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: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange-2);
}

.section-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  flex-shrink: 0;
}

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

.section-intro h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 1.6rem + 2vw, 3.1rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--ink);
}

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

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

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

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

.section-intro--dark p {
  color: rgba(255, 255, 255, 0.68);
}

/* ─── 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(--ink);
}

.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;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.82) 30%,
    rgba(255, 255, 255, 0.28) 54%,
    transparent 70%
  );
}

.hero .section-rail {
  grid-column: 1;
  grid-row: 1 / 3;
  background: rgba(255, 255, 255, 0.45);
  border-right: 1px solid rgba(7, 16, 29, 0.06);
  color: var(--ink);
}

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

.hero .btn--outline {
  border-color: rgba(4, 17, 31, 0.55);
  background: transparent;
  color: var(--navy-900);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero .btn--outline:hover,
.hero .btn--outline:focus-visible {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--white);
}

.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: clamp(3.4rem, 2.5rem + 3vw, 5rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
}

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

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

.hero h1 strong {
  font-weight: inherit;
  color: var(--ink);
  background-image: linear-gradient(180deg, transparent 62%, rgba(255, 196, 0, 0.55) 62%, rgba(255, 196, 0, 0.55) 94%, transparent 94%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.hero__kicker {
  margin: 0 0 14px;
  color: var(--ink);
  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(--orange);
}

.hero__text {
  max-width: 500px;
  margin: 0 0 26px;
  color: rgba(7, 16, 29, 0.72);
  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 {
  position: relative;
  grid-column: 2;
  grid-row: 2;
  display: flex;
  border-top: 1px solid rgba(7, 16, 29, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero__statsbar::before {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--orange-2) 0%, var(--yellow) 55%, var(--cyan) 100%);
  opacity: 0.9;
}

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

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

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

.hero__stat span {
  display: block;
  margin-top: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #4d5868;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  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(54px, 5.4vw, 84px) clamp(24px, 3vw, 44px);
}

.service-area {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.92), rgba(250, 249, 244, 0.82)),
    radial-gradient(circle at 8% 78%, rgba(242, 56, 15, 0.08), transparent 18rem),
    radial-gradient(circle at 96% 16%, rgba(17, 199, 243, 0.08), transparent 20rem),
    var(--paper-2);
}

.service-area .section-rail {
  background: rgba(255, 255, 255, 0.45);
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.service-area::before {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.service-area::before {
  top: -120px;
  right: -120px;
  width: 420px;
  height: 310px;
  background:
    linear-gradient(135deg, rgba(238, 232, 218, 0.55), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(135deg, rgba(7, 16, 29, 0.07) 0 1px, transparent 1px 9px);
  clip-path: polygon(42% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.7;
}

.service-area::after {
  /* Lives in the bottom row, left of the intro copy — anchored to the
     content box so it tracks the cards' left edge on wide screens. */
  z-index: -1;
  left: clamp(-50px, calc((100vw - 1440px) / 2 + 10px), 250px);
  bottom: -30px;
  width: clamp(460px, 40vw, 620px);
  aspect-ratio: 1628 / 966;
  background: none;
  filter: drop-shadow(0 24px 26px rgba(5, 12, 22, 0.16));
}

.service-area .band__inner {
  position: relative;
  z-index: 10;
  max-width: 1440px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  grid-template-rows: auto minmax(420px, auto) auto auto;
  gap: clamp(24px, 3vw, 34px) clamp(38px, 5vw, 72px);
  align-items: start;
  padding: clamp(38px, 4vw, 56px) clamp(30px, 5vw, 64px) clamp(240px, 24vw, 340px);
}

.service-area .section-intro {
  position: relative;
  z-index: 10;
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  max-width: 440px;
}

.service-area .section-intro p {
  color: #2c3848;
}

.service-area .info-grid {
  position: relative;
  z-index: 10;
  grid-column: 1 / -1;
  grid-row: 1;
  gap: 24px 22px;
}

.service-area__ticker {
  grid-column: 1 / -1;
  overflow: hidden;
  border: 1px solid rgba(5, 12, 22, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 247, 240, 0.98) 52%, rgba(255, 255, 255, 0.96) 100%);
  box-shadow: var(--shadow-sm);
}

.service-area__ticker--top {
  grid-row: 1;
}

.service-area__ticker--bottom {
  grid-row: 3;
}

.service-area__ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 56px;
  padding: 13px 28px;
  animation: serviceAreaTicker 24s linear infinite;
}

.service-area__ticker span {
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.service-area__ticker span:nth-child(even) {
  color: var(--orange-deep);
}

@keyframes serviceAreaTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.service-area__map-panel {
  position: relative;
  z-index: 8;
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  min-width: 0;
}

.service-area__map {
  margin: -10px 0 0;
}

.service-area__map img {
  display: block;
  width: min(100%, 780px);
  height: auto;
  filter: drop-shadow(0 24px 22px rgba(5, 12, 22, 0.12));
}

.service-area__cities {
  display: flex;
  max-width: 780px;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 18px;
}

.service-area__cities span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(5, 12, 22, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: #263345;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: var(--shadow-xs);
}

.service-area__notes {
  position: relative;
  z-index: 8;
  display: grid;
  grid-column: 1 / -1;
  grid-row: 4;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-area__rhino {
  position: absolute;
  bottom: 0;
  right: 0;
  width: clamp(240px, 30vw, 420px);
  height: auto;
  z-index: 6;
  pointer-events: none;
  filter: drop-shadow(0 16px 28px rgba(5, 12, 22, 0.18));
}

.service-area__notes li {
  position: relative;
  min-height: 68px;
  padding: 18px 18px 18px 48px;
  border: 1px solid rgba(5, 12, 22, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: #273548;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
  box-shadow: var(--shadow-sm);
}

.service-area__notes li::before {
  position: absolute;
  top: 14px;
  left: 20px;
  color: var(--orange-deep);
  content: "*";
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.service-area .info-card {
  --service-card-bg: none;

  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  overflow: hidden;
  padding: 24px 22px 22px;
  border-color: rgba(5, 12, 22, 0.07);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.94) 42%,
      rgba(255, 255, 255, 0.52) 72%,
      rgba(255, 255, 255, 0.12) 100%
    ),
    var(--service-card-bg) center bottom / cover no-repeat,
    var(--white);
  box-shadow: var(--shadow-md);
}

.service-area .info-card:nth-of-type(1) { --service-card-bg: url("public/assets/go-big/service-area-card-orlando-bg.jpg"); }
.service-area .info-card:nth-of-type(2) { --service-card-bg: url("public/assets/go-big/service-area-card-tampa-bg.jpg"); }
.service-area .info-card:nth-of-type(3) { --service-card-bg: url("public/assets/go-big/service-area-card-daytona-bg.jpg"); }
.service-area .info-card:nth-of-type(4) { --service-card-bg: url("public/assets/go-big/service-area-card-kissimmee-bg.jpg"); }
.service-area .info-card:nth-of-type(5) { --service-card-bg: url("public/assets/go-big/service-area-card-lakeland-bg.jpg"); }
.service-area .info-card:nth-of-type(6) { --service-card-bg: url("public/assets/go-big/service-area-card-nationwide-bg.jpg"); }

.service-area .info-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.52), transparent 44%),
    radial-gradient(circle at 92% 104%, rgba(5, 12, 22, 0.08), transparent 38%);
  pointer-events: none;
}

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

.service-area .info-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 0 20px;
}

.service-area .info-card__icon svg {
  width: 23px;
  height: 23px;
}

.service-area .info-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.18;
  text-transform: none;
}

.service-area .info-card p {
  max-width: 230px;
  margin-top: 8px;
  color: #38465b;
  font-size: 0.94rem;
  line-height: 1.55;
}

.materials {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 42% 68%, rgba(17, 199, 243, 0.20), transparent 24rem),
    radial-gradient(ellipse at 82% 36%, rgba(0, 111, 185, 0.14), transparent 28rem),
    linear-gradient(105deg, rgba(3, 24, 42, 0.92) 0%, rgba(7, 48, 81, 0.92) 50%, rgba(7, 26, 46, 0.92) 100%),
    url("public/assets/go-big/bg-forest.jpg") center / cover no-repeat;
}

.materials .section-rail {
  background: rgba(0, 0, 0, 0.14);
}

.materials::before,
.materials::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.materials::before {
  display: none;
}

.materials::after {
  z-index: 2;
  left: max(240px, calc((100vw - 1440px) / 2 + 275px));
  bottom: -58px;
  width: clamp(420px, 33vw, 560px);
  aspect-ratio: 1536 / 1024;
  background: url("public/assets/go-big/materials-eagle.png") center / contain no-repeat;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.24));
}

.materials .band__inner {
  position: relative;
  z-index: 3;
  max-width: 1440px;
  min-height: 560px;
  grid-template-columns: minmax(270px, 330px) minmax(0, 780px);
  grid-template-rows: auto auto auto;
  justify-content: space-between;
  gap: clamp(18px, 2.4vw, 28px) clamp(120px, 14vw, 200px);
  align-items: start;
  padding: clamp(44px, 4.2vw, 58px) clamp(30px, 5vw, 64px);
}

.materials .section-intro {
  position: relative;
  z-index: 4;
  grid-column: 1;
  grid-row: 1 / span 3;
  align-self: center;
  max-width: 330px;
}

.materials .section-eyebrow--dim {
  color: var(--orange-2);
}

.materials .section-intro--dark p {
  color: rgba(255, 255, 255, 0.84);
}

.material-name-cloud {
  position: relative;
  z-index: 4;
  display: flex;
  grid-column: 2;
  grid-row: 1;
  flex-wrap: wrap;
  gap: 8px 9px;
  align-self: start;
}

.material-name-cloud span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.materials .info-grid {
  position: relative;
  z-index: 4;
  grid-column: 2;
  grid-row: 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.materials .info-card--dark {
  display: flex;
  min-height: 318px;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.materials .info-card--dark > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 17px 18px 19px;
}

.material-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.materials .info-card--dark:hover {
  border-color: rgba(17, 199, 243, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 22px 40px rgba(0, 0, 0, 0.26);
}

.materials .info-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 0 18px;
}

.materials .info-card__icon svg {
  width: 21px;
  height: 21px;
}

.materials .info-card--dark h3 {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.2;
}

.materials .info-card--dark p {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.52;
}

.materials-applications {
  position: relative;
  z-index: 4;
  grid-column: 2;
  grid-row: 3;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(3, 18, 32, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 32px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.materials-applications h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.15;
}

.materials-applications__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.materials-applications__grid span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(17, 199, 243, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.75rem;
  font-weight: 750;
  line-height: 1.15;
}

.displays {
  background: linear-gradient(180deg, var(--white) 0%, #fbfaf6 100%);
}

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

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

.info-card:hover {
  border-color: rgba(17, 199, 243, 0.38);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.info-card__icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  margin-top: 1px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform var(--dur-2) var(--ease-bounce);
}

.info-card:hover .info-card__icon {
  transform: scale(1.08) rotate(-5deg);
}

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

.info-card__icon--cyan {
  background: var(--grad-cyan);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 8px 16px -6px rgba(17, 199, 243, 0.55);
}

.info-card__icon--yellow {
  background: var(--grad-yellow);
  color: #271d05;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 8px 16px -6px rgba(255, 196, 0, 0.55);
}

.info-card__icon--orange {
  background: var(--grad-orange);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 8px 16px -6px rgba(242, 56, 15, 0.5);
}

.info-card__icon--blue {
  background: var(--grad-blue);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 8px 16px -6px rgba(0, 111, 185, 0.5);
}

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

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

/* 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 12px 28px rgba(0, 0, 0, 0.3);
}

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

/* ─── Solutions ──────────────────────────────────────────────────────────── */
.solutions {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: var(--rail) minmax(0, 1fr);
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 18%, rgba(242, 56, 15, 0.07), transparent 20rem),
    radial-gradient(circle at 86% 64%, rgba(255, 196, 0, 0.08), transparent 18rem),
    linear-gradient(105deg, rgba(255, 255, 255, 0.92), rgba(250, 247, 239, 0.9)),
    var(--paper-2);
}

.solutions .section-rail {
  background: rgba(255, 255, 255, 0.45);
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.solutions::before,
.solutions::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.solutions::before {
  z-index: 0;
  left: -190px;
  bottom: -190px;
  width: 620px;
  height: 390px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(242, 56, 15, 0.1), transparent 42%),
    linear-gradient(28deg, transparent 56%, rgba(242, 56, 15, 0.48) 57% 62%, transparent 63%),
    radial-gradient(ellipse at 50% 70%, rgba(242, 56, 15, 0.07), transparent 58%);
  opacity: 0.78;
}

.solutions::after {
  z-index: 1;
  right: max(44px, calc((100vw - 1440px) / 2 + 44px));
  bottom: 48px;
  width: clamp(520px, 42vw, 640px);
  aspect-ratio: 1672 / 941;
  background: url("public/assets/go-big/solutions-cheetah.png") center / contain no-repeat;
  filter: drop-shadow(0 24px 28px rgba(5, 12, 22, 0.14));
}

.solutions__inner {
  grid-column: 2;
  position: relative;
  z-index: 3;
  display: grid;
  max-width: 1440px;
  margin-inline: auto;
  width: 100%;
  grid-template-columns: minmax(230px, 260px) minmax(0, 760px);
  justify-content: start;
  gap: clamp(32px, 4vw, 44px);
  align-items: start;
  min-height: 600px;
  padding: clamp(40px, 4.2vw, 58px) clamp(30px, 5vw, 64px);
}

.solutions .section-intro {
  position: relative;
  z-index: 4;
  max-width: 285px;
}

.solutions .section-intro p {
  color: #2c3848;
}

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

.service-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(5, 12, 22, 0.08);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition:
    border-color var(--dur-2) var(--ease),
    box-shadow var(--dur-2) var(--ease),
    transform var(--dur-2) var(--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(242, 56, 15, 0.35);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: clamp(152px, 11.5vw, 184px);
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card__body {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  min-height: 104px;
  padding: 16px 16px 18px;
  align-items: start;
  background: var(--white);
}

.service-card__icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  flex-shrink: 0;
  margin-top: 1px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform var(--dur-2) var(--ease-bounce);
}

.service-card:hover .service-card__icon {
  transform: scale(1.08) rotate(-5deg);
}

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

.service-card__icon--cyan {
  background: var(--grad-cyan);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 8px 16px -6px rgba(17, 199, 243, 0.55);
}

.service-card__icon--yellow {
  background: var(--grad-yellow);
  color: #271d05;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 8px 16px -6px rgba(255, 196, 0, 0.55);
}

.service-card__icon--orange {
  background: var(--grad-orange);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 8px 16px -6px rgba(242, 56, 15, 0.5);
}

.service-card__icon--blue {
  background: var(--grad-blue);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 8px 16px -6px rgba(0, 111, 185, 0.5);
}

.service-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.18;
  text-transform: none;
  letter-spacing: 0;
  transition: color var(--dur-1) var(--ease);
}

.service-card:hover h3 {
  color: var(--orange-deep);
}

.service-card p {
  margin: 7px 0 0;
  color: #3c485d;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.5;
}

/* Program Fulfillment */
.program-fulfillment {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: var(--rail) minmax(0, 1fr);
  overflow: hidden;
  background:
    linear-gradient(112deg, rgba(242, 56, 15, 0.2) 0%, transparent 28%),
    linear-gradient(135deg, #020711 0%, #061323 48%, #0b1624 100%);
  color: var(--white);
}

.program-fulfillment::before,
.program-fulfillment::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.program-fulfillment::before {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 100%);
  background-size: 74px 74px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
  opacity: 0.36;
}

.program-fulfillment::after {
  left: var(--rail);
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--orange-2) 36%, rgba(255, 255, 255, 0.58) 62%, transparent 100%);
}

.program-fulfillment .section-rail {
  background: rgba(0, 0, 0, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.program-fulfillment .section-intro--dark h2 span {
  color: var(--orange-2);
}

.program-fulfillment .section-eyebrow--dim {
  color: rgba(255, 255, 255, 0.72);
}

.fulfillment__inner {
  grid-column: 2;
  position: relative;
  z-index: 2;
  display: grid;
  max-width: var(--content-max);
  margin-inline: auto;
  width: 100%;
  grid-template-areas:
    "intro operations"
    "services services"
    "cta cta";
  grid-template-columns: minmax(270px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 54px);
  padding: clamp(58px, 5.6vw, 90px) clamp(24px, 3.6vw, 52px);
}

.fulfillment__intro {
  grid-area: intro;
  align-self: start;
  max-width: 360px;
}

.fulfillment__intro .fulfillment__support {
  margin-top: -12px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.fulfillment__promise {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 4px solid var(--orange-2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.9);
}

.fulfillment__promise span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--orange-2);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fulfillment__promise strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.25;
}

.fulfillment__promise p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
  line-height: 1.5;
}

.fulfillment__operations {
  grid-area: operations;
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 250px);
  gap: 18px;
  align-items: center;
}

.fulfillment-map {
  position: relative;
  min-height: 356px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 52% 45%, rgba(242, 56, 15, 0.12), transparent 15rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #07111e;
  box-shadow: 0 28px 64px -36px rgba(0, 0, 0, 0.9);
  margin: 0;
}

.fulfillment-map::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(2, 7, 17, 0) 56%, rgba(2, 7, 17, 0.22) 100%),
    radial-gradient(circle at 52% 45%, rgba(242, 56, 15, 0.12), transparent 18rem);
  pointer-events: none;
}

.fulfillment-map picture {
  display: block;
}

.fulfillment-map__image {
  display: block;
  width: 100%;
  min-height: 356px;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fulfillment-flow {
  display: grid;
  min-width: 0;
  gap: 12px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  list-style: none;
}

.fulfillment-flow li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 11px;
  align-items: start;
  min-width: 0;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.fulfillment-flow li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: rgba(242, 56, 15, 0.16);
  color: var(--orange-2);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.fulfillment-flow strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
}

.fulfillment-flow p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.4;
}

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

.fulfillment-service {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 13px;
  min-width: 0;
  min-height: 132px;
  overflow: hidden;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(2, 7, 17, 0.56);
  box-shadow: 0 18px 38px -30px rgba(0, 0, 0, 0.95);
  transition:
    border-color var(--dur-2) var(--ease),
    background-color var(--dur-2) var(--ease),
    transform var(--dur-2) var(--ease);
}

.fulfillment-service::before {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(242, 56, 15, 0.64), transparent 72%);
  opacity: 0.58;
}

.fulfillment-service:hover {
  border-color: rgba(242, 56, 15, 0.36);
  background-color: rgba(255, 255, 255, 0.03);
  transform: translateY(-4px);
}

.fulfillment-service--featured {
  grid-template-columns: 108px 1fr;
  align-items: center;
  min-height: 172px;
  padding: 20px 18px;
  border-color: rgba(242, 56, 15, 0.32);
  background:
    linear-gradient(135deg, rgba(242, 56, 15, 0.18), rgba(255, 255, 255, 0.07) 48%, rgba(255, 255, 255, 0.035)),
    rgba(2, 7, 17, 0.62);
  box-shadow: 0 24px 46px -32px rgba(242, 56, 15, 0.52), 0 18px 38px -32px rgba(0, 0, 0, 0.95);
}

.fulfillment-service--featured::before {
  height: 3px;
  background: linear-gradient(90deg, var(--orange-2), rgba(255, 255, 255, 0.5), transparent 88%);
  opacity: 0.92;
}

.fulfillment-service--featured h3 {
  font-size: 1.05rem;
}

.fulfillment-service__media {
  position: relative;
  width: 94px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: #111927;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 28px -22px rgba(0, 0, 0, 0.95);
}

.fulfillment-service__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%),
    radial-gradient(circle at 78% 12%, rgba(242, 56, 15, 0.26), transparent 40%);
  pointer-events: none;
}

.fulfillment-service__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fulfillment-service__icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.fulfillment-service__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.fulfillment-service__icon--orange {
  background: var(--grad-orange);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 8px 16px -6px rgba(242, 56, 15, 0.58);
}

.fulfillment-service__icon--dark {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    #111927;
  color: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 8px 16px -8px rgba(0, 0, 0, 0.65);
}

.fulfillment-service__icon--cyan {
  background: var(--grad-orange);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 8px 16px -6px rgba(242, 56, 15, 0.58);
}

.fulfillment-service__icon--yellow {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    #111927;
  color: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 8px 16px -8px rgba(0, 0, 0, 0.65);
}

.fulfillment-service__icon--blue {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    #111927;
  color: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 8px 16px -8px rgba(0, 0, 0, 0.65);
}

.fulfillment-service h3 {
  margin: 1px 0 0;
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
}

.fulfillment-service p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.48;
}

.fulfillment-cta {
  grid-area: cta;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  margin-top: -16px;
  padding: 22px 24px;
  border: 1px solid rgba(242, 56, 15, 0.26);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(242, 56, 15, 0.16), rgba(255, 255, 255, 0.055) 58%, rgba(255, 255, 255, 0.025)),
    rgba(2, 7, 17, 0.58);
  box-shadow: 0 22px 46px -34px rgba(0, 0, 0, 0.95);
}

.fulfillment-cta h3 {
  margin: 0;
  max-width: 620px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 1.18rem + 1.15vw, 2.2rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.fulfillment-cta .btn {
  flex-shrink: 0;
}

/* ─── Equipment ──────────────────────────────────────────────────────────── */
.equipment {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: var(--rail) minmax(0, 1fr);
  overflow: hidden;
  background: var(--paper-2);
  color: var(--ink);
}

.equipment .section-rail {
  background: rgba(0, 0, 0, 0.14);
}

.equipment__inner {
  grid-column: 2;
  position: relative;
  z-index: 3;
  display: grid;
  max-width: 1440px;
  margin-inline: auto;
  width: 100%;
  grid-template-columns: minmax(220px, 245px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
  padding: clamp(44px, 4.2vw, 62px) clamp(30px, 5vw, 64px) clamp(46px, 4.6vw, 64px);
}

.equipment__inner::before,
.equipment__inner::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.equipment__inner::before {
  right: -110px;
  top: -116px;
  width: 620px;
  height: 170px;
  border-radius: 50%;
  background: rgba(242, 56, 15, 0.08);
}

.equipment__inner::after {
  right: -100px;
  bottom: -120px;
  width: 600px;
  height: 260px;
  background:
    radial-gradient(circle at 78% 52%, rgba(17, 199, 243, 0.28), transparent 14rem),
    radial-gradient(rgba(17, 199, 243, 0.24) 1.1px, transparent 1.7px);
  background-size: auto, 10px 10px;
  opacity: 0.45;
  transform: rotate(-8deg);
}

.equipment .section-intro {
  max-width: 250px;
}

.equipment .section-intro h2 {
  line-height: 1.02;
  color: var(--ink);
}

.equipment .section-intro h2 span {
  color: inherit;
}

.equipment .section-intro p {
  color: #3b4656;
}

.equipment-showcase {
  min-width: 0;
}

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

.equipment-item {
  min-width: 0;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(5, 12, 22, 0.07);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition:
    border-color var(--dur-2) var(--ease),
    box-shadow var(--dur-2) var(--ease),
    transform var(--dur-2) var(--ease);
}

.equipment-item:hover {
  border-color: rgba(17, 199, 243, 0.32);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.equipment-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  background: #f3f5f7;
  transition: transform var(--dur-2) var(--ease);
}

.equipment-item:hover img {
  transform: translateY(-3px);
}

.equipment-item h3 {
  margin: 16px 0 7px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.16;
  text-transform: none;
}

.equipment-item p {
  margin: 0;
  color: #4b5768;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.45;
}

.equipment-brands {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 24px);
  margin-top: clamp(24px, 3vw, 40px);
  padding-top: clamp(20px, 2.2vw, 30px);
  border-top: 1px solid rgba(5, 12, 22, 0.12);
}

.equipment-brands span {
  min-width: 0;
  font-family: var(--font-display);
  color: var(--ink);
  font-size: clamp(1.55rem, 2.8vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  overflow-wrap: anywhere;
}

.equipment-brands span:nth-child(even) {
  color: var(--orange-2);
}

.equipment-item__brand {
  display: block;
  margin-top: 4px;
  color: var(--orange-deep);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}


.equipment-cta {
  grid-column: 1 / -1;
  position: relative;
  z-index: 2;
  min-height: clamp(310px, 26vw, 390px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 64%, rgba(17, 199, 243, 0.16), transparent 26rem),
    linear-gradient(105deg, rgba(3, 24, 42, 0.92) 0%, rgba(7, 48, 81, 0.92) 48%, rgba(7, 20, 33, 0.92) 100%),
    url("public/assets/go-big/bg-bison.jpg") center / cover no-repeat;
  color: var(--white);
}

.equipment-cta::before,
.equipment-cta::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.equipment-cta::before {
  z-index: 1;
  left: -4%;
  top: -94px;
  width: 112%;
  height: 150px;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  background: var(--paper-2);
  transform: rotate(2deg);
}

.equipment-cta::after {
  z-index: 2;
  right: clamp(-260px, calc((100vw - 1440px) / 2 - 100px), -80px);
  bottom: -86px;
  width: clamp(900px, 78vw, 1200px);
  aspect-ratio: 1699 / 926;
  background: url("public/assets/go-big/equipment-eagle.png") right bottom / contain no-repeat;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.26));
}

.equipment-cta__copy {
  position: relative;
  z-index: 4;
  max-width: 1440px;
  margin-inline: auto;
  padding: clamp(96px, 8vw, 122px) clamp(30px, 5vw, 64px) clamp(42px, 5vw, 68px);
}

.equipment-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.equipment-cta__eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange-2);
  flex-shrink: 0;
}

.equipment-cta h3 {
  margin: 0;
  max-width: 440px;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.2vw, 4.3rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

.equipment-cta h3 span {
  color: var(--orange-2);
}

.equipment-cta p {
  max-width: 480px;
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
  line-height: 1.6;
}

/* ─── 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/bg-splash-orange-cta.jpg") 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 h2 {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 2rem + 1vw, 2.8rem);
  font-weight: 900;
  line-height: 0.94;
  text-transform: uppercase;
}

.contact-cta p {
  margin: 8px 0 0;
  font-size: 0.92rem;
  font-weight: 500;
  opacity: 0.88;
}

.contact-form {
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 2;
  width: min(100%, 660px);
  gap: 12px;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(4, 17, 31, 0.28);
  box-shadow: 0 22px 44px -28px rgba(4, 17, 31, 0.78);
  backdrop-filter: blur(8px);
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.contact-form label span {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(4, 17, 31, 0.18);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.88rem;
  padding: 11px 12px;
  box-shadow: inset 0 1px 2px rgba(4, 17, 31, 0.08);
}

.contact-form textarea {
  min-height: 104px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--navy-900);
  outline: 3px solid rgba(255, 255, 255, 0.52);
}

.contact-form .btn {
  justify-self: start;
  min-width: 190px;
}

.contact-form__message {
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-form__message--success {
  background: rgba(255, 255, 255, 0.2);
}

.contact-form__message--error {
  background: rgba(4, 17, 31, 0.35);
}

/* ─── 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/about-splash-1100.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(--orange);
}

.about__media {
  position: absolute;
  z-index: 1;
  top: 60px;
  right: min(0px, calc((var(--rail) + 1280px - 100vw) / 2));
  bottom: 0;
  width: clamp(560px, 50vw, 720px);
  min-height: 100%;
  overflow: visible;
  border-radius: 0;
}

.about__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}

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

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

.stats div::before {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 4px;
  border-radius: 4px;
  content: "";
  background: linear-gradient(180deg, var(--orange-2), var(--yellow));
}

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

.stats dd {
  margin: 6px 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  padding:
    clamp(44px, 5vw, 68px)
    clamp(24px, 3.5vw, 48px)
    clamp(20px, 2.4vw, 28px)
    calc(var(--rail) + clamp(24px, 3.5vw, 48px));
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.3fr) minmax(190px, 1fr) minmax(230px, 1fr);
  gap: clamp(30px, 5vw, 80px);
  max-width: 1280px;
}

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

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

.site-footer__brand p {
  max-width: 340px;
  margin: 18px 0 0;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer h2 {
  margin: 0 0 16px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 11px 32px;
  align-content: start;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__nav h2 {
  grid-column: 1 / -1;
}

.site-footer__nav a {
  transition: color var(--dur-1) var(--ease), transform var(--dur-1) var(--ease);
}

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

.site-footer__contact {
  display: grid;
  gap: 13px;
  align-content: start;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__contact a {
  display: flex;
  align-items: center;
  gap: 11px;
  transition: color var(--dur-1) var(--ease);
}

.site-footer__contact a:hover,
.site-footer__contact a:focus-visible {
  color: var(--white);
}

.site-footer__contact svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--orange-2);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  flex-shrink: 0;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  max-width: 1280px;
  margin-top: clamp(30px, 4vw, 44px);
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__copy {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__top {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  transition:
    color var(--dur-1) var(--ease),
    border-color var(--dur-1) var(--ease),
    transform var(--dur-1) var(--ease);
}

.site-footer__top svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
  transform: rotate(-90deg);
}

.site-footer__top:hover,
.site-footer__top:focus-visible {
  color: var(--orange-2);
  border-color: var(--orange-2);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   Motion layer — entrance + scroll-reveal animations
   (gated behind html.js so content is fully visible without JavaScript)
   ═══════════════════════════════════════════════════════════════════════════ */

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
}

@keyframes hero-zoom {
  from {
    transform: scale(1.06);
  }
}

/* Hero entrance (plays once on load) */
.js .hero__bg {
  animation: hero-zoom 2.2s var(--ease) both;
}

.js .hero__body > * {
  animation: rise-in 0.85s var(--ease) backwards;
}

.js .hero__body > :nth-child(1) { animation-delay: 0.08s; }
.js .hero__body > :nth-child(2) { animation-delay: 0.18s; }
.js .hero__body > :nth-child(3) { animation-delay: 0.28s; }
.js .hero__body > :nth-child(4) { animation-delay: 0.4s; }

.js .hero__statsbar {
  animation: rise-in 0.9s var(--ease) 0.5s backwards;
}

/* Scroll reveal — single elements */
.js [data-reveal] {
  opacity: 0;
}

.js [data-reveal].is-visible {
  opacity: 1;
  animation: rise-in 0.75s var(--ease) backwards;
}

/* Scroll reveal — staggered groups (children animate, parent stays put) */
.js [data-reveal="group"] {
  opacity: 1;
  animation: none;
}

.js [data-reveal="group"]:not(.is-visible) > * {
  opacity: 0;
}

.js [data-reveal="group"].is-visible > * {
  animation: rise-in 0.7s var(--ease) backwards;
}

.js [data-reveal="group"].is-visible > :nth-child(2) { animation-delay: 80ms; }
.js [data-reveal="group"].is-visible > :nth-child(3) { animation-delay: 160ms; }
.js [data-reveal="group"].is-visible > :nth-child(4) { animation-delay: 240ms; }
.js [data-reveal="group"].is-visible > :nth-child(5) { animation-delay: 320ms; }
.js [data-reveal="group"].is-visible > :nth-child(6) { animation-delay: 400ms; }
.js [data-reveal="group"].is-visible > :nth-child(7) { animation-delay: 480ms; }
.js [data-reveal="group"].is-visible > :nth-child(8) { animation-delay: 560ms; }
.js [data-reveal="group"].is-visible > :nth-child(9) { animation-delay: 640ms; }

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

@media (max-width: 1320px) {
  .desktop-nav {
    font-size: 0.7rem;
    gap: clamp(10px, 1.2vw, 16px);
  }

  .quote-btn {
    padding-inline: 16px;
  }
}

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

  .quote-btn {
    display: none;
  }

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

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

  .service-area .band__inner {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 380px);
    grid-template-rows: auto minmax(360px, auto) auto auto;
    gap: 32px;
    padding-inline: clamp(24px, 4vw, 42px);
    padding-bottom: clamp(220px, 24vw, 320px);
  }
  .service-area__rhino {
    width: clamp(220px, 26vw, 360px);
  }

  .service-area::after {
    left: -30px;
    bottom: -24px;
    width: clamp(400px, 46vw, 520px);
  }

  .service-area .info-grid {
    gap: 18px;
  }

  .service-area__ticker-track {
    gap: 44px;
  }

  .service-area__map img {
    width: min(100%, 660px);
  }

  .service-area .info-card {
    min-height: 244px;
    padding: 20px;
  }

  .materials::after {
    left: 250px;
    bottom: -44px;
    width: 400px;
  }

  .materials .band__inner {
    grid-template-columns: minmax(250px, 310px) minmax(0, 1fr);
    gap: 18px 70px;
    padding-inline: clamp(24px, 4vw, 42px);
  }

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

  .materials .info-card--dark {
    min-height: 314px;
    padding: 0;
  }

  .solutions::after {
    right: -120px;
    bottom: 18px;
    width: 520px;
  }

  .solutions__inner {
    grid-template-columns: minmax(240px, 290px) minmax(0, 1fr);
    gap: 34px;
    min-height: 560px;
    padding-inline: clamp(24px, 4vw, 42px);
  }

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

  .fulfillment__inner {
    grid-template-areas:
      "intro"
      "operations"
      "services"
      "cta";
    grid-template-columns: 1fr;
  }

  .fulfillment__intro {
    max-width: 720px;
  }

  .fulfillment__operations {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  }

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

  .equipment .section-intro {
    max-width: 560px;
  }

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

  .equipment-item {
    padding: 14px;
  }

  .equipment-item img {
    height: clamp(120px, 12vw, 150px);
  }

  .equipment-cta::after {
    right: -250px;
    bottom: -78px;
    width: 980px;
  }

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

  .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-form {
    grid-column: 1 / -1;
    width: min(100%, 620px);
  }

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

  .about__media {
    position: relative;
    inset: auto;
    justify-self: end;
    width: min(72vw, 640px);
    grid-column: 1 / -1;
    min-height: 340px;
    overflow: visible;
    border-radius: 0;
  }
}

@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);
    padding: 12px clamp(14px, 4vw, 22px) 20px;
  }

  .mobile-menu a {
    display: grid;
    min-height: clamp(58px, 7vw, 66px);
    grid-template-columns: clamp(44px, 6vw, 54px) 1fr 26px;
    align-items: center;
    margin-top: 9px;
    padding: 0 clamp(16px, 4vw, 22px);
    border: 1px solid rgba(5, 12, 22, 0.08);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-xs);
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition:
      border-color var(--dur-1) var(--ease),
      box-shadow var(--dur-2) var(--ease),
      transform var(--dur-1) var(--ease);
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus-visible {
    border-color: rgba(17, 199, 243, 0.4);
    box-shadow: var(--shadow-sm);
    transform: translateX(3px);
  }

  .mobile-menu a:active {
    transform: scale(0.985);
  }

  .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: var(--muted);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
    transition: stroke var(--dur-1) var(--ease), transform var(--dur-2) var(--ease);
  }

  .mobile-menu a:hover svg,
  .mobile-menu a:focus-visible svg {
    stroke: var(--orange-2);
    transform: translateX(3px);
  }
}

@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(116px, 14vw, 150px);
  }
}

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

  .service-area .band__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    padding-bottom: clamp(200px, 38vw, 280px);
  }
  .service-area__rhino {
    width: clamp(180px, 34vw, 260px);
  }

  .service-area .section-intro {
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
    max-width: 560px;
  }

  .service-area .info-grid {
    grid-column: auto;
    grid-row: auto;
  }

  .service-area__ticker,
  .service-area__map-panel,
  .service-area__notes {
    grid-column: auto;
    grid-row: auto;
  }

  .service-area__map {
    margin-top: 0;
  }

  .service-area__notes {
    grid-template-columns: 1fr;
  }

  .service-area::after {
    display: none;
  }

  .service-area .info-card {
    min-height: 236px;
  }

  .materials::before,
  .materials::after {
    display: none;
  }

  .materials .band__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: clamp(42px, 6vw, 58px);
  }

  .materials .section-intro {
    grid-column: auto;
    grid-row: auto;
    max-width: 560px;
  }

  .material-name-cloud {
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
  }

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

  .materials-applications {
    grid-column: auto;
    grid-row: auto;
  }

  .solutions::before,
  .solutions::after {
    display: none;
  }

  .solutions__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: clamp(42px, 6vw, 58px);
  }

  .solutions .section-intro {
    max-width: 560px;
  }

  .hero__statsbar {
    flex-wrap: wrap;
  }

  .hero__stat {
    flex: 1 1 50%;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 16, 29, 0.08);
  }

  .hero__stat:nth-child(odd) {
    border-right: 1px solid rgba(7, 16, 29, 0.08);
  }

  .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);
  }

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

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

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

  .fulfillment-service--featured:nth-child(3) {
    grid-column: 1 / -1;
  }

  .fulfillment-cta {
    align-items: flex-start;
    flex-direction: column;
    margin-top: -4px;
  }

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

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

  .equipment-cta::after {
    right: -360px;
    bottom: -70px;
    width: 860px;
    opacity: 0.82;
  }

  .equipment-cta__copy {
    padding-top: clamp(82px, 10vw, 100px);
  }

  .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-form {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

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

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

  .about__media {
    width: min(84vw, 620px);
    min-height: 320px;
  }

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

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

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

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

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

  .section-rail {
    display: none;
  }

  /* ── Hero mobile ── */
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-height: clamp(620px, 135vw, 780px);
    color: var(--white);
  }

  .hero__media {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: -2;
  }

  .hero__bg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    background: #06111f;
  }

  .hero__gradient {
    display: block;
    background:
      linear-gradient(180deg, rgba(3, 10, 20, 0.08) 0%, rgba(3, 10, 20, 0.36) 45%, rgba(3, 10, 20, 0.92) 100%),
      linear-gradient(90deg, rgba(3, 10, 20, 0.86) 0%, rgba(3, 10, 20, 0.5) 58%, rgba(3, 10, 20, 0.16) 100%);
  }

  .hero__body {
    grid-column: 1;
    display: flex;
    min-height: inherit;
    flex-direction: column;
    justify-content: flex-end;
    max-width: none;
    padding: clamp(180px, 42vw, 260px) clamp(18px, 5vw, 26px) clamp(28px, 7vw, 44px);
  }

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

  .hero h1 span {
    color: var(--white);
  }

  .hero__kicker {
    font-size: 0.86rem;
  }

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

  .hero__actions {
    gap: 10px;
  }

  .hero .btn--outline {
    border-color: rgba(255, 255, 255, 0.78);
    background: rgba(4, 17, 31, 0.24);
    color: var(--white);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .hero .btn--outline:hover,
  .hero .btn--outline:focus-visible {
    border-color: var(--white);
    background: var(--white);
    color: var(--navy-900);
  }

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

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

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

  .hero__stat:nth-child(odd) {
    border-right: 1px solid rgba(7, 16, 29, 0.08);
  }

  .hero__stat:nth-child(-n+2) {
    border-bottom: 1px solid rgba(7, 16, 29, 0.08);
  }

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

  .solutions__inner, .fulfillment__inner, .equipment__inner, .band__inner {
    display: block;
    padding: clamp(34px, 8vw, 46px) clamp(18px, 5vw, 24px) clamp(38px, 9vw, 52px);
  }
  .service-area .band__inner {
    padding-bottom: clamp(150px, 44vw, 210px);
  }
  .service-area__rhino {
    width: clamp(140px, 44vw, 200px);
  }

  .equipment__inner::before,
  .equipment__inner::after {
    display: none;
  }

  /* Keep the eagle on mobile — smaller, anchored bottom-right, clear of copy */
  .equipment-cta::after {
    right: -140px;
    bottom: -36px;
    width: clamp(380px, 92vw, 470px);
    opacity: 0.95;
  }

  .section-intro h2 {
    font-size: 2.05rem;
    max-width: min(340px, 90vw);
  }

  .section-intro p {
    font-size: 0.93rem;
    margin-bottom: 20px;
  }

  .section-intro .btn {
    min-width: min(210px, 100%);
  }

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

  .material-name-cloud {
    margin-top: clamp(18px, 5vw, 24px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .material-name-cloud span {
    justify-content: center;
    min-height: 31px;
    padding: 0 8px;
    text-align: center;
    font-size: 0.66rem;
  }

  .materials .info-grid {
    margin-top: 16px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .materials-applications {
    margin-top: 16px;
    padding: 16px;
  }

  .materials-applications__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .materials-applications__grid span {
    justify-content: center;
    min-height: 32px;
    padding: 0 8px;
    text-align: center;
    font-size: 0.68rem;
    overflow-wrap: anywhere;
  }

  .service-area__ticker-track {
    gap: 34px;
    padding: 12px 22px;
  }

  .service-area__ticker span {
    font-size: 1.08rem;
  }

  .service-area__cities {
    gap: 7px;
    margin-top: 14px;
  }

  .service-area__cities span {
    min-height: 28px;
    padding-inline: 10px;
    font-size: 0.74rem;
  }

  .service-area__notes li {
    min-height: 0;
    padding: 16px 16px 16px 44px;
    font-size: 0.86rem;
  }

  .service-area .info-card {
    min-height: 242px;
    padding: 18px;
  }

  .service-area .info-card__icon {
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
  }

  .service-area .info-card__icon svg {
    width: 20px;
    height: 20px;
  }

  .service-area .info-card h3 {
    font-size: 0.96rem;
  }

  .service-area .info-card p {
    max-width: 240px;
    font-size: 0.82rem;
  }

  .materials .info-card--dark {
    min-height: 0;
    padding: 0;
    border-radius: 10px;
  }

  .materials .info-card--dark > div {
    padding: 15px 16px 17px;
  }

  .material-card__image {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
  }

  .materials .info-card__icon {
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
  }

  .materials .info-card__icon svg {
    width: 20px;
    height: 20px;
  }

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

  .service-card {
    border-radius: 10px;
  }

  .service-card img {
    height: clamp(158px, 45vw, 190px);
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .service-card__body {
    min-height: 0;
    grid-template-columns: 38px 1fr;
    gap: 10px;
    padding: 14px;
  }

  .service-card__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

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

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

  .fulfillment__operations,
  .fulfillment-services,
  .fulfillment-cta {
    margin-top: clamp(18px, 5vw, 24px);
  }

  .fulfillment__operations {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fulfillment__intro {
    max-width: 560px;
  }

  .fulfillment__intro .fulfillment__support {
    font-size: 0.86rem;
  }

  .fulfillment__promise {
    max-width: 440px;
    padding: 16px;
    border-radius: 10px;
  }

  .fulfillment-map {
    min-height: 0;
    border-radius: 10px;
  }

  .fulfillment-map__image {
    min-height: clamp(260px, 68vw, 340px);
  }

  .fulfillment-flow {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
    border-radius: 10px;
  }

  .fulfillment-flow li {
    min-height: 0;
    padding: 11px;
  }

  .fulfillment-services {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .fulfillment-service--featured:nth-child(3) {
    grid-column: auto;
  }

  .fulfillment-service {
    min-height: 0;
    grid-template-columns: 40px 1fr;
    padding: 14px;
    border-radius: 10px;
  }

  .fulfillment-service--featured {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
    padding: 15px 14px;
  }

  .fulfillment-service__media {
    width: 78px;
    border-radius: 10px;
  }

  .fulfillment-service__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .fulfillment-service h3 {
    font-size: 0.94rem;
  }

  .fulfillment-service p {
    font-size: 0.8rem;
  }

  .fulfillment-cta {
    gap: 14px;
    padding: 18px 16px;
    border-radius: 10px;
  }

  .fulfillment-cta h3 {
    max-width: 310px;
    font-size: 1.55rem;
  }

  .fulfillment-cta .btn {
    min-width: min(230px, 100%);
  }

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

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

  .equipment-brands span {
    font-size: clamp(1.9rem, 9vw, 2.9rem);
  }

  .equipment-item {
    padding: 14px;
    border-radius: 10px;
  }

  .equipment-item img {
    height: auto;
    border-radius: 8px;
  }

  .equipment-item h3 {
    font-size: 0.96rem;
  }

  .about__inner {
    grid-column: 1 / -1;
    display: block;
    width: 100%;
    min-height: 0;
    overflow: hidden;
    padding-bottom: clamp(215px, 58vw, 300px);
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }

  .stats dt {
    font-size: 2.15rem;
  }

  .stats dd {
    font-size: 0.66rem;
  }

  .about__media {
    position: absolute;
    inset: auto -46px -12px auto;
    z-index: 1;
    width: clamp(270px, 78vw, 380px);
    min-height: 0;
    margin: 0;
    pointer-events: none;
  }

  .about__media img {
    width: 100%;
    height: auto;
    object-position: right bottom;
  }

  .contact-cta {
    --cta-cheetah-anchor-x: 32%;
    --cta-cheetah-bottom: -12px;
    --cta-cheetah-width: clamp(220px, 68vw, 290px);

    display: block;
  }

  .contact-cta__visual {
    z-index: 1;
    opacity: 0.95;
  }

  .contact-cta__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
    padding: clamp(34px, 9vw, 46px) clamp(18px, 5vw, 24px) clamp(220px, 58vw, 270px);
  }

  .contact-cta__copy,
  .contact-form {
    position: relative;
    z-index: 3;
  }

  .contact-cta h2 {
    max-width: 300px;
    font-size: 2.1rem;
  }

  .contact-cta p {
    max-width: 310px;
    font-size: 0.88rem;
  }

  .contact-form {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    max-width: 420px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-form .btn {
    justify-self: start;
  }
}

@media (max-width: 480px) {
  .service-area .band__inner {
    padding-bottom: clamp(118px, 40vw, 156px);
  }
  .service-area__rhino {
    width: clamp(110px, 38vw, 150px);
  }

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

  .service-area__ticker-track {
    gap: 28px;
  }

  .service-area__ticker span {
    font-size: 0.98rem;
  }

  .service-area .info-card {
    min-height: 236px;
  }

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

  .material-name-cloud span {
    font-size: 0.68rem;
  }

  .about__inner {
    padding-bottom: clamp(210px, 66vw, 280px);
  }

  .about__media {
    right: -54px;
    bottom: -8px;
    width: clamp(285px, 88vw, 360px);
  }

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

  .fulfillment-map__image {
    min-height: 240px;
  }

  .fulfillment-service--featured {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 10px;
  }

  .fulfillment-service__media {
    width: 66px;
  }

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

  .equipment-item img {
    height: auto;
  }
}

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

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

/* ─── Reduced motion ─────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }

  .js [data-reveal],
  .js [data-reveal="group"] > * {
    opacity: 1 !important;
    transform: none !important;
  }

  .service-area__ticker-track {
    animation: none !important;
    transform: none !important;
  }

  .scroll-progress {
    display: none;
  }
}


