:root {
  --ink: #1f2328;
  --steel: #3f444a;
  --muted: #6b7480;
  --line: #dbe1e7;
  --paper: #f6f8f9;
  --white: #ffffff;
  --signal: #ed1c24;
  --signal-dark: #bd1219;
  --signal-soft: #ffe7e9;
  --focus: rgba(237, 28, 36, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  line-height: 1.6;
  background: var(--white);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-nav {
  min-height: 5.35rem;
  background: rgba(253, 252, 249, 0.96);
  border-bottom: 1px solid rgba(31, 35, 40, 0.1);
  backdrop-filter: blur(20px);
  animation: navDrop 0.7s ease both;
  transition:
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.site-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 34px rgba(19, 24, 32, 0.1);
}

.site-nav > .container {
  min-height: 5.35rem;
  align-items: center;
}

.navbar-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.navbar-brand {
  padding: 0;
}

.brand-logo {
  display: block;
  width: clamp(10.4rem, 17vw, 13.2rem);
  height: auto;
}

.site-nav .navbar-collapse {
  justify-content: flex-end;
}

.site-nav .navbar-nav {
  gap: clamp(0.4rem, 1.1vw, 1.15rem);
}

.site-nav .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: #102019;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1;
  padding: 0.55rem 0.15rem;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.site-nav .nav-link:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0.15rem;
  right: 0.15rem;
  bottom: 0.32rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: var(--signal-dark);
}

.site-nav .nav-link:not(.nav-cta):hover::after,
.site-nav .nav-link:not(.nav-cta).active::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  gap: 0.8rem;
  min-height: 2.8rem;
  margin-left: 0.7rem;
  padding: 0.6rem 0.65rem 0.6rem 1.2rem;
  color: var(--white);
  background: var(--signal);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(237, 28, 36, 0.22);
}

.site-nav .nav-cta::after {
  content: "\2192";
  display: inline-grid;
  place-items: center;
  width: 1.95rem;
  height: 1.95rem;
  color: var(--signal);
  background: var(--white);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.active {
  color: var(--white);
  background: var(--signal-dark);
}

.site-nav .nav-cta:hover::after {
  transform: translateX(0.16rem);
}

.navbar-toggler {
  border: 0;
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.18rem var(--focus);
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  color: var(--white);
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slider {
  overflow: hidden;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1.8s ease-in-out,
    transform 6.5s linear;
  will-change: opacity, transform;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.1);
}

.hero-slide-one {
  object-position: center center;
}

.hero-slide-two {
  object-position: 66% center;
  filter: saturate(1.08) contrast(1.04);
}

.hero-slide-three {
  object-position: 36% center;
  filter: brightness(0.96) contrast(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 17, 23, 0.88) 0%, rgba(13, 17, 23, 0.67) 42%, rgba(13, 17, 23, 0.12) 100%),
    linear-gradient(0deg, rgba(13, 17, 23, 0.72) 0%, rgba(13, 17, 23, 0.02) 46%);
}

.hero-shade::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(237, 28, 36, 0.18), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 88px);
  opacity: 0.85;
}

.hero-accent-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 4px;
  background: linear-gradient(90deg, var(--signal), rgba(237, 28, 36, 0), var(--signal));
  transform-origin: left;
  animation: accentLoad 1.3s 0.4s ease both;
}

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

  .hero-slide {
    transition: none;
  }

  .hero-slide-one {
    opacity: 1;
    transform: scale(1.04);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 88vh;
  padding-top: 8.75rem;
  padding-bottom: 3.25rem;
}

.hero-copy-block .eyebrow,
.hero-copy-block h1,
.hero-copy,
.hero-actions,
.hero-product-strip,
.hero-stats div {
  animation: riseIn 0.9s ease both;
}

.hero-copy-block h1 {
  animation-delay: 0.12s;
}

.hero-copy {
  animation-delay: 0.24s;
}

.hero-actions {
  animation-delay: 0.36s;
}

.hero-product-strip {
  animation-delay: 0.5s;
}

.hero-stats div:nth-child(1) {
  animation-delay: 0.42s;
}

.hero-stats div:nth-child(2) {
  animation-delay: 0.54s;
}

.hero-stats div:nth-child(3) {
  animation-delay: 0.66s;
}

.min-vh-90 {
  width: 100%;
  min-height: 0;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.hero-kicker span {
  display: inline-block;
  width: 2.7rem;
  height: 2px;
  background: var(--signal);
  transform-origin: left;
  animation: lineGrow 0.8s 0.2s ease both;
}

.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 13ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 7vw, 6.3rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 42rem;
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  border-radius: 8px;
  padding: 0.82rem 1.25rem;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(237, 28, 36, 0.24);
}

.btn-primary:hover,
.btn-primary:focus {
  border-color: var(--signal-dark);
  background: var(--signal-dark);
  color: var(--white);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.hero-product-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
  max-width: 42rem;
}

.hero-product-strip span {
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-stats {
  display: grid;
  gap: 0.95rem;
  max-width: 30rem;
  margin-left: auto;
}

.hero-stats div {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 5.8rem 1fr;
  gap: 1.15rem;
  align-items: center;
  min-height: 5rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(237, 28, 36, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(12, 16, 22, 0.88), rgba(33, 38, 45, 0.58));
  backdrop-filter: blur(16px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.hero-stats div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--signal);
}

.hero-stats div::after {
  content: "";
  position: absolute;
  right: -3rem;
  top: -3rem;
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats div:hover {
  transform: translateX(-5px) translateY(-2px);
  border-color: rgba(237, 28, 36, 0.72);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(237, 28, 36, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.hero-stats strong {
  position: relative;
  z-index: 1;
  color: var(--signal);
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  font-weight: 900;
  line-height: 1;
}

.hero-stats span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.35;
}

.section-pad {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.home-intro {
  position: relative;
  background:
    linear-gradient(180deg, var(--white), #fafbfc);
}

.home-intro::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(237, 28, 36, 0.24), transparent);
}

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

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.22rem;
  font-weight: 850;
  line-height: 1.25;
}

.lead-text,
.body-large,
.page-intro {
  color: var(--muted);
  font-size: 1.08rem;
}

.split-band .lead-text,
.split-band .body-large,
.split-band p {
  color: rgba(255, 255, 255, 0.74);
}

.feature-card,
.value-card,
.product-card {
  height: 100%;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(31, 35, 40, 0.06);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.feature-card:hover,
.value-card:hover,
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(237, 28, 36, 0.28);
  box-shadow: 0 28px 70px rgba(31, 35, 40, 0.12);
}

.feature-card {
  min-height: 14rem;
}

.about-values {
  position: relative;
  overflow: hidden;
}

.about-values::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(237, 28, 36, 0.16), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 96px);
  pointer-events: none;
}

.about-values .container {
  position: relative;
  z-index: 1;
}

.about-values .value-card {
  position: relative;
  overflow: hidden;
  min-height: 17rem;
  padding: 1.7rem;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 251, 0.94));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.about-values .value-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--signal);
}

.about-values .value-card::after {
  content: "";
  position: absolute;
  right: -2.5rem;
  top: -2.5rem;
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  background: var(--signal-soft);
}

.value-icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 3.8rem;
  height: 3.8rem;
  margin-bottom: 1.15rem;
  border-radius: 8px;
  background: var(--signal);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(237, 28, 36, 0.24);
}

.value-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.about-values .value-card h3,
.about-values .value-card p {
  position: relative;
  z-index: 1;
}

.about-values .value-card h3 {
  color: var(--ink);
}

.about-values .value-card p {
  color: var(--muted);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.2rem;
  border-radius: 8px;
  background: var(--signal-soft);
  color: var(--signal-dark);
  font-weight: 900;
}

.feature-card h3,
.value-card h3,
.product-card h3 {
  position: relative;
}

.feature-card h3::after,
.value-card h3::after,
.product-card h3::after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 2px;
  margin-top: 0.7rem;
  background: var(--signal);
}

.feature-card p,
.value-card p,
.product-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.15rem 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.product-list li {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: 0.42rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--steel);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.2;
}

.product-list li::before {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.48rem;
  border-radius: 999px;
  background: var(--signal);
}

.catalog-card {
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(180deg, var(--white), #fbfcfd);
}

.catalog-card:hover .catalog-media img {
  transform: scale(1.06);
}

.catalog-card-body {
  padding: 1.35rem;
}

.catalog-card-body > p {
  margin-bottom: 0;
}

.catalog-media {
  position: relative;
  min-height: 25rem;
  overflow: hidden;
  background: var(--ink);
}

.catalog-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 35, 40, 0.02), rgba(31, 35, 40, 0.58)),
    linear-gradient(90deg, rgba(237, 28, 36, 0.18), transparent 46%);
}

.catalog-media img {
  width: 100%;
  height: 25rem;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.catalog-media span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 8px;
  background: var(--signal);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 18px 35px rgba(237, 28, 36, 0.28);
}

.catalog-card .product-list li {
  background: var(--white);
  box-shadow: 0 8px 22px rgba(31, 35, 40, 0.04);
}

.rounded-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
}

.media-frame {
  position: relative;
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: -0.8rem 0.8rem 0.8rem -0.8rem;
  border: 1px solid rgba(237, 28, 36, 0.42);
  border-radius: 8px;
}

.media-frame .rounded-media {
  position: relative;
  z-index: 1;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.check-list {
  display: grid;
  gap: 0.95rem;
  margin: 1.6rem 0;
}

.check-list p {
  display: grid;
  grid-template-columns: 1rem 1fr;
  gap: 0.8rem;
  margin: 0;
}

.check-list span {
  width: 0.72rem;
  height: 0.72rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: var(--signal);
}

.text-link {
  display: inline-flex;
  color: var(--signal-dark);
  font-weight: 900;
  text-decoration: none;
}

.split-band .text-link {
  color: var(--signal);
}

.text-link:hover {
  text-decoration: underline;
}

.supply-band {
  padding: 0;
  background: var(--signal);
  color: var(--white);
}

.supply-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.supply-item {
  display: grid;
  gap: 0.45rem;
  min-height: 9.5rem;
  padding: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  align-content: center;
}

.supply-item strong {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  font-weight: 900;
}

.supply-item span {
  max-width: 18rem;
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  font-weight: 850;
  line-height: 1.25;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(237, 28, 36, 0.09), transparent 32%),
    var(--paper);
  border: 1px solid var(--line);
}

.reveal-up {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineGrow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes accentLoad {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.cta-panel h2 {
  max-width: 19ch;
  margin-bottom: 0;
  font-size: clamp(1.75rem, 4vw, 3rem);
}

.site-footer {
  padding: 3.5rem 0 1.8rem;
  background: #0d1117;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer .footer-brand {
  display: inline-flex;
  padding: 0.6rem 0.75rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: var(--white);
  color: var(--white);
}

.footer-logo {
  width: clamp(10rem, 18vw, 12.5rem);
}

.site-footer h4 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--signal);
}

.footer-bottom {
  margin-top: 2.4rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.9rem;
}

.page-main {
  padding-top: 4.5rem;
}

.page-hero {
  padding: clamp(3.6rem, 7vw, 6rem) 0 clamp(2.8rem, 5vw, 4rem);
  background:
    linear-gradient(135deg, rgba(19, 24, 32, 0.97), rgba(39, 49, 61, 0.92)),
    url("../img/home-banner-product-making.png") center / cover;
  color: var(--white);
}

.page-hero-about {
  background:
    linear-gradient(135deg, rgba(19, 24, 32, 0.96), rgba(39, 49, 61, 0.9)),
    url("../img/banner-inspection-no-face.png") center / cover;
}

.page-hero-products {
  background:
    linear-gradient(135deg, rgba(19, 24, 32, 0.96), rgba(39, 49, 61, 0.9)),
    url("../img/product-mounting-plates.png") center / cover;
}

.page-hero-careers {
  background:
    linear-gradient(135deg, rgba(19, 24, 32, 0.96), rgba(39, 49, 61, 0.88)),
    url("../img/banner-dispatch.png") center / cover;
}

.page-hero-contact {
  background:
    linear-gradient(135deg, rgba(19, 24, 32, 0.96), rgba(39, 49, 61, 0.9)),
    url("../img/product-luggage-rack.png") center / cover;
}

.page-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.8rem, 6vw, 5.25rem);
}

.page-intro {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.buyer-grid div {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-weight: 800;
}

.about-copy-section {
  background:
    linear-gradient(135deg, rgba(237, 28, 36, 0.045), transparent 34%),
    var(--paper);
}

.about-copy-card {
  height: 100%;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(31, 35, 40, 0.08);
}

.about-copy-card h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.about-copy-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
}

.team-grid {
  display: grid;
  gap: 1rem;
}

.team-heading-sticky {
  position: sticky;
  top: 7rem;
}

.team-card {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(237, 28, 36, 0.06), transparent 32%),
    var(--paper);
}

.team-card-featured {
  display: grid;
  grid-template-columns: minmax(12rem, 16rem) 1fr;
  gap: 1.35rem;
  align-items: start;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(237, 28, 36, 0.08), transparent 38%),
    var(--white);
  box-shadow: 0 24px 60px rgba(31, 35, 40, 0.1);
}

.team-photo-wrap {
  position: sticky;
  top: 7rem;
  overflow: visible;
  border-radius: 8px;
  background: transparent;
}

.team-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0 0 3.75rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: inherit;
  pointer-events: none;
}

.team-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  background: var(--ink);
}

.team-linkedin {
  position: relative;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  margin: 0.75rem 0 0;
  padding: 0;
  display: inline-block;
  text-decoration: none;
  transition:
    transform 0.2s ease;
}

.team-linkedin img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.team-linkedin:hover {
  transform: translateY(-2px);
}

.team-card span {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--signal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.team-card h3 {
  margin-bottom: 0.45rem;
}

.team-card p {
  margin: 0 0 0.9rem;
  color: var(--muted);
}

.team-card p:last-child {
  margin-bottom: 0;
}

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

.product-card-wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 1rem 1rem 1rem 2rem;
}

.product-card-wide img {
  width: 100%;
  height: 22rem;
  border-radius: 8px;
  object-fit: cover;
}

.process-list {
  display: grid;
  gap: 0.85rem;
}

.process-list div {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.process-list strong {
  color: var(--signal);
  font-weight: 900;
}

.process-list span {
  color: rgba(255, 255, 255, 0.78);
}

.contact-panel,
.quote-form {
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.contact-panel {
  height: 100%;
}

.contact-form {
  height: auto;
}

.contact-item {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-child {
  border-bottom: 0;
}

.contact-item span,
.quote-form label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-item a,
.contact-item strong {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 850;
  text-decoration: none;
}

.contact-address p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.quote-form label {
  display: block;
  margin-bottom: 0.35rem;
}

.form-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #c9d1d9;
  border-radius: 8px;
  padding: 0.82rem 0.9rem;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.quote-form input[type="file"] {
  padding: 0.7rem;
  background:
    linear-gradient(135deg, rgba(237, 28, 36, 0.06), transparent 34%),
    var(--white);
}

.quote-form small {
  display: block;
  margin-top: 0.42rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--signal);
  outline: 3px solid var(--focus);
}

.career-apply {
  background:
    linear-gradient(135deg, rgba(237, 28, 36, 0.06), transparent 34%),
    var(--white);
}

.apply-intro {
  position: sticky;
  top: 7rem;
}

.apply-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.career-form {
  background:
    linear-gradient(180deg, var(--white), #fbfcfd);
  box-shadow: 0 28px 70px rgba(31, 35, 40, 0.1);
}

@media (max-width: 991.98px) {
  .site-nav,
  .site-nav > .container {
    min-height: 4.8rem;
  }

  .site-nav .navbar-collapse {
    margin-top: 0.8rem;
    padding: 0.9rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(31, 35, 40, 0.1);
    border-radius: 14px;
    box-shadow: 0 24px 55px rgba(19, 24, 32, 0.12);
  }

  .site-nav .navbar-nav {
    align-items: flex-start !important;
    gap: 0.2rem;
  }

  .site-nav .nav-link {
    width: 100%;
    min-height: 2.55rem;
    padding: 0.7rem 0.25rem;
  }

  .site-nav .nav-cta {
    width: auto;
    margin-left: 0;
    margin-top: 0.45rem;
    padding: 0.6rem 0.65rem 0.6rem 1rem;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 12ch;
  }

  .hero-stats {
    margin: 2rem 0 0;
  }

  .supply-grid {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .supply-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .supply-item:last-child {
    border-bottom: 0;
  }

  .cta-panel,
  .product-card-wide {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-card-wide {
    padding: 1.25rem;
  }

  .team-card-featured {
    grid-template-columns: 1fr;
  }

  .team-photo-wrap {
    position: relative;
    top: auto;
    max-width: 18rem;
  }

  .team-heading-sticky {
    position: relative;
    top: auto;
  }
}

@media (max-width: 767.98px) {
  .brand-logo {
    width: 8.6rem;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-content {
    align-items: flex-start;
    min-height: auto;
    padding-top: 5.6rem;
    padding-bottom: 3.4rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.75rem);
  }

  .hero-product-strip {
    gap: 0.45rem;
  }

  .hero-product-strip span {
    padding: 0.38rem 0.62rem;
    font-size: 0.78rem;
  }

  .media-frame::before {
    inset: -0.45rem 0.45rem 0.45rem -0.45rem;
  }

  .hero-stats div {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .buyer-grid,
  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-card-wide {
    grid-column: auto;
  }

  .product-card-wide img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .process-list div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}
