/* Freeweld public site — shared styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --color-bg: #0f1419;
  --color-surface: #0c0f39;
  --color-text: #e8eaed;
  --color-text-muted: #9aa0a6;
  --color-accent: #2d7d7a;
  --color-accent-hover: #3a9a96;
  --color-highlight: #f8e300;
  --font-sans: "Segoe UI", system-ui, -apple-system, sans-serif;
  --header-h: 3.5rem;
  --max-w: 72rem;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
}

a {
  color: var(--color-accent-hover);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-highlight);
}

.site-brand {
  display: flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

.site-brand:hover {
  text-decoration: none;
}

.site-brand img {
  display: block;
  height: 100%;
  width: auto;
  max-width: min(280px, 42vw);
  object-fit: contain;
  object-position: left center;
}

.site-brand:hover img {
  opacity: 0.92;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: center;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--color-text);
}

.site-nav a.is-active {
  color: var(--color-accent-hover);
  font-weight: 600;
}

.site-nav a.site-nav__ariba-link {
  font-family: "Trebuchet MS", "Segoe UI", system-ui, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--color-highlight);
  font-weight: 700;
}

.site-nav a.site-nav__ariba-link:hover {
  color: #fff2a8;
}

.site-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.1rem;
  padding: 0 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  background: transparent;
  color: var(--color-text);
  font: inherit;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.site-nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-nav-toggle:focus-visible {
  outline: 2px solid var(--color-highlight);
  outline-offset: 2px;
}

.site-nav__flags {
  margin-left: 0.45rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav__flag {
  display: block;
  width: 1.875rem;
  height: auto;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
  }

  .site-nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0.75rem;
    right: 0.75rem;
    z-index: 120;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.1rem;
    padding: 0.6rem 0.75rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: var(--color-surface);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.45rem);
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 0s;
  }

  .site-nav a {
    display: block;
    padding: 0.45rem 0;
    font-size: 1.06rem;
    font-weight: 600;
    color: var(--color-text);
  }

  .site-nav a.site-nav__ariba-link {
    font-size: 1rem;
  }

  .site-nav__flags {
    margin: 0.25rem 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav {
    transition: none;
    transform: none;
  }
}

.site-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.site-main h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
}

.site-lead {
  margin: 0 0 1.5rem;
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 42rem;
}

.site-main code {
  font-size: 0.9em;
  padding: 0.1em 0.35em;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
}

.site-section {
  margin-top: 2rem;
}

.site-section h2 {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.site-footer {
  margin-top: auto;
  padding: 1.5rem 1.25rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer p {
  margin: 0;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.site-footer p + p {
  margin-top: 0.85rem;
}

.site-footer__copy {
  font-size: 0.75rem;
}

.site-footer a {
  color: var(--color-accent-hover);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

body {
  display: flex;
  flex-direction: column;
}

/* --- Home page (compact vertical rhythm) --- */
.site-main.home-page {
  padding: 0 1.25rem 1.25rem;
}

.home-page {
  padding-top: 0;
  line-height: 1.45;
}

.home-page > .home-hero__intro {
  margin-bottom: 0.2rem;
}

.home-logo-marquee {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0.4rem max(1.25rem, calc(50vw - var(--max-w) / 2)) 0.45rem;
  background: rgba(8, 10, 16, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.home-logo-marquee h2 {
  margin: 0 0 0.3rem;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text);
}

.home-logo-marquee__track {
  display: flex;
  overflow: hidden;
  gap: 1.25rem;
  white-space: nowrap;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.home-logo-marquee__items {
  display: inline-flex;
  gap: 0.55rem;
  min-width: max-content;
  animation: logoMarquee 80s linear infinite;
}

.home-logo-marquee__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7rem;
  height: 4rem;
  padding: 0 0.65rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #fff;
  color: var(--color-text-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.home-logo-marquee__logo {
  display: block;
  max-width: 6.25rem;
  max-height: 3rem;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: brightness(1.05) contrast(1.05);
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 1.25rem));
  }
}

.home-case-study {
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(3.6rem, 10.5vw, 5.6rem) max(1.25rem, calc(50vw - var(--max-w) / 2));
  text-align: center;
  overflow: hidden;
  background: #080a0e;
}

.home-case-study__backdrop {
  position: absolute;
  inset: 0;
  background-image: url("/Images/Barge%20Dock/Barge_DSC00769.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-case-study__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(8, 10, 16, 0.55) 0%,
    rgba(15, 20, 25, 0.78) 45%,
    rgba(8, 10, 16, 0.92) 100%
  );
}

.home-case-study__inner {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  margin: 0 auto;
}

.home-case-study__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-highlight);
}

.home-case-study__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 5.2vw, 2.85rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--color-text);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.65);
}

.home-case-study__subtitle {
  margin: 0 0 1.7rem;
  font-size: clamp(1.2rem, 3.2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-accent-hover);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.home-case-study__body {
  margin: 0 0 2.5rem;
  font-size: clamp(1.02rem, 2.4vw, 1.2rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.55);
}

.home-case-study__actions {
  margin: 0;
}

.home-case-study__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.6rem 1.15rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
}

.home-case-study__btn:hover {
  text-decoration: none;
}

.home-page > .home-hero {
  margin-bottom: 1.25rem;
}

.home-hero {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 1.35rem max(1.25rem, calc(50vw - var(--max-w) / 2)) 1.15rem;
  background: linear-gradient(160deg, rgba(45, 125, 122, 0.18) 0%, var(--color-surface) 45%, rgba(27, 12, 57, 0.95) 100%);
  border-bottom: 1px solid rgba(244, 255, 0, 0.25);
}

.home-hero__intro {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0.85rem max(1.25rem, calc(50vw - var(--max-w) / 2)) clamp(1.15rem, 2.5vw, 1.65rem);
  background: rgb(8 10 16);
}

.home-hero__intro-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: -2;
}

.home-hero__intro-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 16, 0.4) 0%, rgba(8, 10, 16, 0.68) 100%);
  z-index: -1;
}

.home-hero__intro-content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.home-hero__grid {
  display: grid;
  gap: 1rem;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
}

@media (min-width: 52rem) {
  .home-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.home-hero__eyebrow {
  margin: 0 0 0.3rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent-hover);
}

.home-hero h1,
.home-hero__intro h1 {
  margin: 0 0 0.25rem;
  font-size: clamp(1.35rem, 3.8vw, 2.15rem);
  line-height: 1.15;
}

.home-hero__tagline {
  margin: 0 0 1.5rem;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--color-highlight);
  font-style: italic;
  line-height: 1.3;
}

.home-hero__intro-pitch {
  text-align: left;
  max-width: 52rem;
  margin-bottom: 7rem;
  /*margin: 0 0 clamp(2.65rem, 6.5vw, 4.5rem);*/
}

.home-hero__intro-pitch-cert {
  margin: 0 0 1rem;
  font-size: clamp(0.95rem, 2.1vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--color-text);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.75);
}

.home-hero__intro-pitch-shout {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 5.5vw, 3.15rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-highlight);
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.85);
}

.home-hero__intro-pitch-lead {
  margin: 1.15rem 0 0;
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  font-weight: 800;
  line-height: 1.45;
  color: var(--color-text);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75);
}

.home-hero__flags {
  position: absolute;
  top: 0.05rem;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
}

.home-hero__flag {
  display: block;
  height: 1.35rem;
  width: auto;
  max-width: 2.75rem;
  object-fit: contain;
  object-position: left center;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.home-hero__lead {
  margin-bottom: 0.65rem;
  max-width: 36rem;
  font-size: 0.98rem;
  line-height: 1.45;
}

.home-hero__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  max-width: 72rem;
}

@media (min-width: 56rem) {
  .home-hero__cards {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }
}

/* Outside .home-hero__intro so overflow:hidden does not clip fixed positioning */
@media (min-width: 48rem) {
  .home-page > .home-hero__contact-dock {
    position: fixed;
    top: calc(var(--header-h) + 0.5rem);
    right: 0;
    left: auto;
    bottom: auto;
    width: min(18.5rem, 100vw);
    max-width: 100vw;
    z-index: 90;
    margin: 0;
    padding: 0;
  }

  .home-page > .home-hero__contact-dock.is-collapsed {
    width: auto;
    max-width: none;
  }

  .home-page > .home-hero__contact-dock .home-hero__contact-card {
    border-radius: 8px 0 0 8px;
    border-right-width: 0;
    padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
  }

  .home-page > .home-hero__contact-dock.is-collapsed .home-hero__contact-card {
    padding: 0.45rem max(0.35rem, env(safe-area-inset-right, 0px)) 0.45rem 0.55rem;
  }
}

.home-hero__industries-card {
  max-width: none;
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: perspective(900px) rotateX(var(--card-tilt-x, 0deg)) rotateY(var(--card-tilt-y, 0deg)) translateY(0);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 140ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.home-hero__products-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: none;
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: perspective(900px) rotateX(var(--card-tilt-x, 0deg)) rotateY(var(--card-tilt-y, 0deg)) translateY(0);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 140ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.home-hero__industries-card h2 {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
  line-height: 1.2;
}

.home-hero__products-card h2 {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
  line-height: 1.2;
}

.home-hero__products-list {
  margin: 0;
  padding-left: 1rem;
}

.home-hero__products-list li {
  margin-bottom: 0.3rem;
  font-size: 0.86rem;
  line-height: 1.3;
  color: var(--color-text-muted);
}

.home-hero__products-list li:last-child {
  margin-bottom: 0;
}

.home-hero__products-asme {
  margin: auto 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text);
}

.home-hero__products-asme strong {
  color: var(--color-highlight);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-right: 0.25rem;
  font-weight: 800;
}

.home-hero__products-asme-marks {
  display: inline-block;
  margin-left: 0.15rem;
  letter-spacing: 0.11em;
}

.home-hero__industries-intro {
  margin: 0 0 0.55rem;
  font-size: 0.9rem;
  line-height: 1.35;
  color: var(--color-text);
}

.home-hero__industries-list {
  margin: 0;
  padding-left: 1rem;
  columns: 2;
  column-gap: 1.25rem;
}

.home-hero__industries-list li {
  break-inside: avoid;
  margin-bottom: 0.3rem;
  font-size: 0.86rem;
  line-height: 1.3;
  color: var(--color-text-muted);
}

.home-hero__trust-line {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text);
}

.home-hero__trust-line strong {
  color: var(--color-highlight);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-right: 0.25rem;
  font-weight: 800;
}

.home-hero__contact-dock {
  position: relative;
  z-index: 1;
}

.home-hero__contact-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.45rem;
}

.home-hero__contact-card__header h2 {
  margin: 0;
  flex: 1;
  min-width: 0;
}

.home-hero__contact-dock-toggle {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  margin: -0.15rem -0.1rem 0 0;
  padding: 0;
  border: 1px solid rgba(255, 160, 160, 0.45);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.35);
  color: #ffd8d8;
  cursor: pointer;
  line-height: 1;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.home-hero__contact-dock-toggle:hover {
  background: rgba(80, 12, 12, 0.55);
  border-color: rgba(255, 200, 200, 0.55);
  color: #fff;
}

.home-hero__contact-dock-toggle:focus-visible {
  outline: 2px solid var(--color-highlight);
  outline-offset: 2px;
}

.home-hero__contact-dock-toggle-icon {
  font-size: 0.72rem;
}

.home-hero__contact-dock-toggle-icon--expand {
  display: none;
}

.home-hero__contact-dock.is-collapsed .home-hero__contact-dock-toggle-icon--collapse {
  display: none;
}

.home-hero__contact-dock.is-collapsed .home-hero__contact-dock-toggle-icon--expand {
  display: block;
}

.home-hero__contact-dock.is-collapsed .home-hero__contact-card__header h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-hero__contact-dock.is-collapsed .home-hero__contact-card__header {
  justify-content: center;
}

.home-hero__contact-dock.is-collapsed .home-hero__contact-card__body {
  display: none;
}

@media (max-width: 47.99rem) {
  .home-page > .home-hero__contact-dock {
    display: none;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-hero__contact-card {
  max-width: none;
  margin-top: 0;
  margin-left: 0;
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
  background: linear-gradient(160deg, rgba(94, 10, 10, 0.78) 0%, rgba(52, 8, 8, 0.78) 100%);
  border: 1px solid rgba(255, 89, 89, 0.45);
  box-shadow: 0 0 0 1px rgba(255, 46, 46, 0.14) inset, 0 8px 20px rgba(0, 0, 0, 0.22);
  transform: perspective(900px) rotateX(var(--card-tilt-x, 0deg)) rotateY(var(--card-tilt-y, 0deg)) translateY(0);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 140ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.home-hero__industries-card:hover,
.home-hero__products-card:hover,
.home-hero__contact-card:hover {
  transform: perspective(900px) rotateX(var(--card-tilt-x, 0deg)) rotateY(var(--card-tilt-y, 0deg)) translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.home-hero__industries-card h2,
.home-hero__products-card h2,
.home-hero__contact-card h2 {
  transition: color 220ms ease, text-shadow 220ms ease;
}

.home-hero__industries-card:hover h2,
.home-hero__products-card:hover h2 {
  color: var(--color-highlight);
  text-shadow: 0 0 10px rgba(244, 255, 0, 0.22);
}

.home-hero__industries-card:hover,
.home-hero__products-card:hover {
  border-color: rgba(244, 255, 0, 0.65);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(244, 255, 0, 0.28) inset, 0 0 16px rgba(244, 255, 0, 0.24);
}

.home-hero__contact-card:hover {
  background: linear-gradient(160deg, rgba(120, 14, 14, 0.82) 0%, rgba(66, 10, 10, 0.82) 100%);
  border-color: rgba(255, 122, 122, 0.6);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 70, 70, 0.22) inset;
}

.home-hero__contact-card h2 {
  color: #ffd8d8;
}

.home-hero__contact-card:hover h2 {
  color: #fff;
  text-shadow: 0 0 12px rgba(255, 126, 126, 0.45);
}

.home-hero__contact-card h2 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.home-hero__contact-line {
  margin: 0.15rem 0;
  font-size: 0.83rem;
  line-height: 1.35;
  color: var(--color-text);
}

.home-hero__contact-line a {
  color: #ffd3d3;
  font-weight: 600;
}

.home-hero__contact-actions {
  margin: 0.45rem 0 0;
}

.home-hero__quote-btn {
  padding: 0.45rem 0.85rem;
  font-size: 0.86rem;
  text-decoration: none;
  background: #c31616;
  border: 1px solid #f93636;
  color: #fff;
  box-shadow: 0 6px 16px rgba(167, 0, 0, 0.35);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.home-hero__contact-card .home-hero__quote-btn {
  background: #af0f0f;
  border: 1px solid #f93636;
  color: #fff;
}

.home-hero__quote-btn:hover {
  text-decoration: none;
  background: #af0f0f;
  border-color: #f93636;
}

.home-hero__contact-card .home-hero__quote-btn:hover {
  background: #af0f0f;
  border-color: #f93636;
  color: #fff;
}

.home-overlay-section {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 1.15rem max(1.25rem, calc(50vw - var(--max-w) / 2));
  background: rgba(12, 18, 28, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.home-brochure-strip {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0.55rem max(1.25rem, calc(50vw - var(--max-w) / 2));
  background: rgba(8, 10, 16, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.home-brochure-strip__actions {
  margin: 0;
  display: flex;
  justify-content: center;
}

.home-brochure-strip__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.85rem;
  font-size: 0.9rem;
  text-decoration: none;
}

.home-brochure-strip__btn:hover {
  text-decoration: none;
}

.home-overlay-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  align-items: stretch;
}

@media (min-width: 56rem) {
  .home-overlay-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.home-overlay-figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  min-height: 16rem;
}

.home-overlay-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 16rem;
  max-height: 22rem;
  object-fit: cover;
  object-position: center;
  transition: opacity 260ms ease;
}

.home-overlay-copy {
  padding: 0.8rem 0.9rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.home-overlay-kicker {
  margin: 0 0 0.3rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent-hover);
  font-weight: 700;
}

.home-overlay-copy h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.2rem, 2.3vw, 1.55rem);
}

.home-overlay-copy p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--color-text);
}

.home-overlay-materials {
  margin: 0.65rem 0 0;
  padding-left: 1.1rem;
}

.home-overlay-materials li {
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.home-engineering-section {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 1.25rem max(1.25rem, calc(50vw - var(--max-w) / 2));
  background: rgba(8, 10, 16, 0.62);
  border-top: 1px solid rgba(244, 255, 0, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.home-barge-section {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 1.15rem max(1.25rem, calc(50vw - var(--max-w) / 2));
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-barge-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  align-items: stretch;
}

.home-barge-media-column {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

@media (min-width: 56rem) {
  .home-barge-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.home-barge-figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.26);
  height: clamp(16rem, 34vw, 22rem);
}

.home-barge-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 260ms ease;
}

.home-barge-copy {
  padding: 0.8rem 0.9rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.home-barge-copy h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
}

.home-barge-copy p {
  margin: 0;
  max-width: none;
  color: var(--color-text);
}

.home-barge-copy p + p {
  margin-top: 0.55rem;
}

.home-barge-metrics-table {
  width: 100%;
  margin-top: 0.85rem;
  border-collapse: collapse;
  border: 1px solid rgba(244, 255, 0, 0.24);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(8, 10, 16, 0.55);
}

.home-barge-metrics-table th,
.home-barge-metrics-table td {
  padding: 0.5rem 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.home-barge-metrics-table tr:last-child th,
.home-barge-metrics-table tr:last-child td {
  border-bottom: 0;
}

.home-barge-metrics-table th {
  width: 58%;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  text-align: left;
  font-weight: 700;
}

.home-barge-metrics-table td {
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-highlight);
}

.home-barge-highlights {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.55rem;
}

.home-barge-highlights--media {
  margin-top: 0;
}

.home-barge-highlight {
  padding: 0.6rem 0.7rem;
  border-radius: 6px;
  border-left: 3px solid var(--color-accent-hover);
  border: 1px solid rgba(58, 154, 150, 0.3);
  background: rgba(15, 20, 25, 0.62);
}

.home-barge-highlight h3 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--color-text);
}

.home-barge-highlight p {
  margin: 0;
  color: var(--color-text);
  font-size: 0.88rem;
  line-height: 1.4;
}

.home-engineering-section h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
}

.home-engineering-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  align-items: stretch;
}

@media (min-width: 56rem) {
  .home-engineering-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.home-engineering-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.home-engineering-item {
  padding: 0.7rem 0.8rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.home-engineering-media {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  min-height: 100%;
}

.home-engineering-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  object-position: center;
  transition: opacity 260ms ease;
}

.home-engineering-item h3 {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  color: var(--color-highlight);
}

.home-engineering-subtitle {
  margin: 0 0 0.35rem !important;
  font-size: 0.86rem;
  color: var(--color-text) !important;
  font-weight: 600;
}

.home-engineering-item p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.35;
  color: var(--color-text-muted);
}

.home-hero__media {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.home-hero__experts {
  margin-top: 0;
  margin-bottom: 0.15rem;
}

.home-hero__figure {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-hero__photo {
  display: block;
  width: 100%;
  height: min(13rem, 31vh);
  object-fit: cover;
  object-position: center;
}

@media (min-width: 52rem) {
  .home-hero__photo {
    height: min(14.5rem, 33vh);
  }
}

.home-section {
  margin-top: 1.35rem;
}

.home-section:first-of-type {
  margin-top: 0;
}

.home-section h2 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.25;
}

.home-section p {
  margin: 0;
  max-width: 48rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.home-section p + p {
  margin-top: 0.5rem;
}

.home-section--alt {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 1.15rem max(1.25rem, calc(50vw - var(--max-w) / 2));
  margin-top: 1.35rem;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.home-qual {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  padding: 1.25rem max(1.25rem, calc(50vw - var(--max-w) / 2)) 1.35rem;
  max-width: none;
  background:
    linear-gradient(135deg, rgba(45, 125, 122, 0.22) 0%, rgba(27, 12, 57, 0.92) 55%, rgba(15, 20, 25, 0.98) 100%);
  border-top: 1px solid rgba(244, 255, 0, 0.35);
  border-bottom: 1px solid rgba(45, 125, 122, 0.45);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
}

.home-qual--in-hero {
  margin: 0;
  padding: 0.7rem 0.8rem 0.75rem;
  border-radius: 6px;
  background: rgba(8, 10, 16, 0.62);
  border: 1px solid rgba(244, 255, 0, 0.22);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.24);
}

.home-qual__figure {
  margin: 0 0 0.55rem;
}

.home-qual--in-hero h2 {
  margin-bottom: 0.35rem;
  font-size: 1.02rem;
}

.home-qual--in-hero .home-qual__lead {
  font-size: 0.86rem;
  line-height: 1.35;
}

.home-qual--in-hero .home-asme {
  margin-top: 0.5rem !important;
  padding: 0.4rem 0.55rem 0.45rem;
  font-size: 0.84rem;
}

.home-qual--in-hero .home-asme__marks {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
}

.home-qual h2 {
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-text);
  margin-bottom: 0.45rem;
}

.home-qual__lead {
  margin: 0;
  max-width: 52rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--color-text);
}

.home-qual__lead strong {
  color: var(--color-highlight);
  font-weight: 700;
}

.home-qual .home-asme {
  margin-top: 0.75rem !important;
  margin-bottom: 0;
  padding: 0.55rem 0.75rem 0.6rem;
  max-width: 52rem;
  border-radius: 6px;
  border: 1px solid rgba(244, 255, 0, 0.35);
  border-left: 3px solid var(--color-highlight);
  background: rgba(0, 0, 0, 0.25);
  color: var(--color-text) !important;
  font-size: 0.9375rem;
  line-height: 1.4;
}

.home-qual .home-asme__marks {
  display: inline-block;
  margin-left: 0.3rem;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--color-accent-hover);
}

.home-cap-list {
  margin: 0.3rem 0 0;
  padding-left: 1.1rem;
  max-width: 40rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.home-cap-list li {
  margin-bottom: 0.2rem;
  line-height: 1.4;
}

.home-cap-list li:last-child {
  margin-bottom: 0;
}

.home-cta {
  margin-top: 1.35rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 1.15rem max(1.25rem, calc(50vw - var(--max-w) / 2));
  text-align: center;
  background: rgba(45, 125, 122, 0.15);
  border: 1px solid rgba(45, 125, 122, 0.35);
  border-radius: 6px;
}

.home-cta__title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
}

.home-cta__text {
  margin: 0 0 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.home-cta__text a {
  font-weight: 600;
  white-space: nowrap;
}

.home-cta__actions {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
  justify-content: center;
}

.home-cta .btn {
  text-decoration: none;
  padding: 0.45rem 0.95rem;
  font-size: 0.9375rem;
}

.home-cta .btn:hover {
  text-decoration: none;
}

.home-cta__link {
  font-size: 1rem;
  font-weight: 600;
}

.home-trust-lead {
  margin: 0 0 0.45rem !important;
  font-size: 0.875rem;
}

.home-logo-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  justify-content: flex-start;
}

.home-logo-strip__ph {
  display: block;
  width: 5.5rem;
  height: 2.35rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-closing {
  margin-top: 1.35rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 1.1rem max(1.25rem, calc(50vw - var(--max-w) / 2)) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-closing p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.home-closing a {
  font-weight: 600;
}

.home-closing-grid {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

@media (min-width: 56rem) {
  .home-closing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.home-closing-tile {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  min-height: 14.5rem;
}

.home-closing-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 16, 0.3) 0%, rgba(8, 10, 16, 0.62) 100%);
}

.home-closing-tile__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 14.5rem;
  max-height: 19rem;
  object-fit: cover;
  object-position: center;
  transition: transform 280ms ease;
}

.home-closing-tile__label {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  color: #fff;
  text-align: center;
  font-size: clamp(1.9rem, 5vw, 2.7rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.7);
}

.home-closing-tile:hover {
  text-decoration: none;
}

.home-closing-tile:hover .home-closing-tile__image {
  transform: scale(1.04);
}

@media (max-width: 47.99rem) {
  .home-closing-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-closing-tile {
    min-height: 10.5rem;
  }

  .home-closing-tile__image {
    min-height: 10.5rem;
    max-height: 13.5rem;
  }

  .home-closing-tile__label {
    font-size: clamp(1.25rem, 8vw, 1.75rem);
    padding: 0.55rem;
  }
}

@media (max-width: 56rem) {
  .site-main.home-page {
    overflow-x: clip;
  }

  .site-main.home-page .home-logo-marquee {
    display: none;
  }

  .site-main.home-page > .home-hero,
  .site-main.home-page > .home-hero__intro,
  .site-main.home-page .home-logo-marquee,
  .site-main.home-page .home-case-study,
  .site-main.home-page .home-overlay-section,
  .site-main.home-page .home-brochure-strip,
  .site-main.home-page .home-engineering-section,
  .site-main.home-page .home-barge-section,
  .site-main.home-page .home-cta,
  .site-main.home-page .home-closing,
  .site-main.home-page .home-qual,
  .site-main.home-page .home-section--alt {
    margin-left: 0;
    margin-right: 0;
    width: auto;
    max-width: 100%;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* --- Company page --- */
.site-main.company-page {
  max-width: 78rem;
}

.company-hero {
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 1rem max(1.25rem, calc(50vw - var(--max-w) / 2));
  display: grid;
  gap: 1rem;
  align-items: stretch;
  border-radius: 10px;
  overflow: hidden;
  background-image: url("/Images/Company/YUN00075.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.company-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 10, 16, 0.6) 0%,
    rgba(8, 10, 16, 0.78) 45%,
    rgba(15, 20, 25, 0.9) 100%
  );
}

.company-hero > * {
  position: relative;
  z-index: 1;
}

@media (min-width: 56rem) {
  .company-hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

.company-hero__copy p {
  margin: 0;
  color: var(--color-text);
  max-width: 44rem;
}

.company-hero__copy p + p {
  margin-top: 0.6rem;
}

.company-hero__media {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  min-height: 16rem;
  background: rgba(8, 10, 16, 0.18);
}

.company-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 16rem;
  max-height: 23rem;
  object-fit: cover;
  object-position: center;
}

.company-mission {
  margin-top: 2.2rem;
}

.company-mission p {
  margin: 0;
  max-width: 52rem;
  color: var(--color-text);
}

.company-mission__list {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
  max-width: 58rem;
}

.company-mission__list li {
  margin-bottom: 0.45rem;
  color: var(--color-text-muted);
}

.company-mission__list li:last-child {
  margin-bottom: 0;
}

.company-highlights__grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
}

@media (min-width: 56rem) {
  .company-highlights__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.company-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 0.55rem;
  padding: 0.75rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.company-card__figure {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 10rem;
}

.company-card__figure img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 10rem;
  max-height: 13rem;
  object-fit: cover;
}

.company-card h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--color-text);
}

.company-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.company-history__intro {
  margin: 0 0 0.9rem;
  max-width: 50rem;
  color: var(--color-text);
}

.company-timeline {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: 1fr;
}

@media (min-width: 56rem) {
  .company-timeline {
    grid-template-columns: 1fr 1fr;
  }
}

.company-timeline__item {
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.company-timeline__item h3 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-highlight);
}

.company-timeline__item p {
  margin: 0;
  font-size: 0.89rem;
  line-height: 1.4;
  color: var(--color-text-muted);
}

.company-gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

@media (min-width: 56rem) {
  .company-gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.company-gallery__item {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.company-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 13rem;
  max-height: 17rem;
  object-fit: cover;
}

.company-gallery__cta {
  margin: 0.85rem 0 0;
  color: var(--color-text);
}

.company-gallery__cta a {
  font-weight: 600;
}

/* Contact form skeleton */
.contact-page .site-lead {
  max-width: 54rem;
}

.site-main.contact-page {
  max-width: 78rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.contact-info {
  display: grid;
  gap: 1rem;
}

.contact-info__top {
  display: grid;
  gap: 1rem;
}

@media (min-width: 56rem) {
  .contact-info__top {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }
}

.contact-info__map-panel {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
}

.contact-info__map-panel iframe {
  display: block;
  width: 100%;
  height: 22rem;
  border: 0;
}

@media (min-width: 56rem) {
  .contact-info__map-panel iframe {
    height: 100%;
    min-height: 31rem;
  }
}

.contact-info__stack {
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: 1rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-card h3 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.55rem;
  font-size: 1rem;
}

.contact-card__icon {
  font-size: 1rem;
  line-height: 1;
}

.contact-card__label {
  margin: 0.65rem 0 0.2rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.contact-card__address,
.contact-card__line {
  margin: 0;
  font-style: normal;
  font-size: 0.95rem;
}

.contact-card__line--pair {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.contact-card__action {
  margin: 0.75rem 0 0;
  font-weight: 600;
}

.contact-card__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.contact-card__table th,
.contact-card__table td {
  padding: 0.42rem 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card__table tr:last-child th,
.contact-card__table tr:last-child td {
  border-bottom: 0;
}

.contact-card__table th {
  width: 36%;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-weight: 700;
}

.contact-card__table td {
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 600;
}

.form-grid {
  display: grid;
  gap: 1rem;
  max-width: 34rem;
  margin-top: 1rem;
}

.form-grid--contact {
  max-width: none;
}

.contact-form-card {
  display: grid;
  gap: 0.8rem;
  padding: 0.85rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

@media (min-width: 56rem) {
  .contact-form-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }
}

.contact-form-field {
  display: grid;
  gap: 0.35rem;
}

@media (min-width: 56rem) {
  .contact-form-field--full,
  .contact-form-actions {
    grid-column: 1 / -1;
  }
}

.contact-form-actions {
  display: flex;
  justify-content: flex-start;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  padding: 0.5rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  background: var(--color-surface);
  color: var(--color-text);
  font: inherit;
}

.form-grid textarea {
  min-height: 6rem;
  resize: vertical;
}

.contact-status {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.45;
  max-width: 48rem;
  border: 1px solid transparent;
  animation: contactStatusIn 0.45s ease both;
}

.contact-status__text {
  flex: 1;
  min-width: 0;
}

.contact-status__check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  animation: contactCheckPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.08s both;
}

.contact-status__check-icon {
  display: block;
}

.contact-status__check-path {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: contactCheckDraw 0.4s ease forwards 0.2s;
}

.contact-status--success {
  background: linear-gradient(135deg, rgba(45, 125, 122, 0.28) 0%, rgba(27, 90, 88, 0.35) 100%);
  border-color: rgba(58, 154, 150, 0.55);
  color: #e8f7f6;
  box-shadow: 0 4px 24px rgba(45, 125, 122, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-status--success .contact-status__check {
  background: var(--color-accent-hover);
  box-shadow: 0 2px 12px rgba(58, 154, 150, 0.45);
}

.contact-status--error {
  background: rgba(120, 30, 30, 0.25);
  border-color: rgba(255, 120, 120, 0.35);
  color: #ffd8d8;
}

.contact-status--error .contact-status__check {
  display: none;
}

@keyframes contactStatusIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contactCheckPop {
  from {
    opacity: 0;
    transform: scale(0.35);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes contactCheckDraw {
  to {
    stroke-dashoffset: 0;
  }
}

.btn--contact-submit {
  position: relative;
  transition:
    transform 0.22s ease,
    box-shadow 0.28s ease,
    background 0.2s ease;
}

.btn--contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(45, 125, 122, 0.42);
}

.btn--contact-submit:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 4px 14px rgba(45, 125, 122, 0.3);
  transition-duration: 0.08s;
}

.btn--contact-submit:focus-visible {
  outline: 2px solid var(--color-accent-hover);
  outline-offset: 3px;
}

.btn--contact-submit.is-celebrate {
  animation: contactBtnCelebrate 0.7s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
}

@keyframes contactBtnCelebrate {
  0% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(45, 125, 122, 0.25);
  }
  35% {
    transform: scale(1.08);
    background: var(--color-accent-hover);
    box-shadow:
      0 0 0 4px rgba(58, 154, 150, 0.25),
      0 14px 36px rgba(45, 125, 122, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(45, 125, 122, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-status,
  .contact-status__check,
  .contact-status__check-path,
  .btn--contact-submit.is-celebrate {
    animation: none;
  }

  .contact-status__check-path {
    stroke-dashoffset: 0;
  }

  .btn--contact-submit:hover {
    transform: none;
  }
}

.contact-form-section .contact-form-intro {
  margin-bottom: 1.25rem;
  max-width: 48rem;
}

.contact-form-intro__headline {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
}

.contact-form-intro__note {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: grid;
  place-items: start center;
  overflow-y: auto;
  padding: calc(0.75rem + env(safe-area-inset-top, 0px)) 0.75rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
}

.contact-overlay[hidden] {
  display: none;
}

.contact-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 16, 0.7);
}

.contact-overlay__panel {
  position: relative;
  z-index: 1;
  width: min(48rem, 100%);
  max-height: none;
  overflow: auto;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(112, 145, 190, 0.35);
  background: #0d1a2d;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.56);
}

.contact-overlay__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.contact-overlay__header h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--color-highlight);
  text-shadow: none;
}

.contact-overlay__info {
  margin: 0 0 0.8rem;
  padding: 0.6rem 0.7rem;
  border-radius: 8px;
  border: 1px solid rgba(112, 145, 190, 0.38);
  background: #12243d;
}

.contact-overlay__info-row {
  margin: 0;
  color: var(--color-text);
  font-size: 0.84rem;
  line-height: 1.35;
}

.contact-overlay__info-row + .contact-overlay__info-row {
  margin-top: 0.28rem;
}

.contact-overlay__info-row strong {
  color: var(--color-highlight);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.76rem;
}

.contact-overlay__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(112, 145, 190, 0.5);
  border-radius: 6px;
  background: #142841;
  color: var(--color-highlight);
  cursor: pointer;
}

.contact-overlay__close:hover {
  background: #1a3353;
  color: #fff;
}

.contact-overlay__close:focus-visible {
  outline: 2px solid var(--color-accent-hover);
  outline-offset: 2px;
}

.contact-overlay__form-card {
  background: #10233b;
  border: 1px solid rgba(112, 145, 190, 0.3);
}

.contact-overlay .form-grid label {
  color: #b6c3d5;
}

.contact-overlay .form-grid input,
.contact-overlay .form-grid textarea,
.contact-overlay .form-grid select {
  background: #091423;
  border-color: rgba(140, 169, 207, 0.42);
  color: #f1f5fb;
}

.contact-overlay .form-grid input::placeholder,
.contact-overlay .form-grid textarea::placeholder {
  color: #9aa9bf;
}

.contact-overlay .contact-status {
  margin-top: 0.8rem;
}

body.contact-overlay-open {
  overflow: hidden;
}

@media (min-width: 48rem) {
  .contact-overlay {
    place-items: center;
    padding: 1rem;
  }

  .contact-overlay__panel {
    width: min(48rem, calc(100vw - 2rem));
    max-height: calc(100dvh - 2rem);
  }
}

.btn {
  display: inline-block;
  padding: 0.55rem 1.1rem;
  border: none;
  border-radius: 4px;
  background: var(--color-accent);
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.btn:hover {
  background: var(--color-accent-hover);
}

/* --- Products page --- */
.site-main.products-page .products-row {
  margin-top: 2.25rem;
}

.site-main.products-page .products-row:first-of-type {
  margin-top: 1.5rem;
}

.section-band {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 1.15rem max(1.25rem, calc(50vw - var(--max-w) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-band--navy {
  background: linear-gradient(160deg, rgba(45, 125, 122, 0.16) 0%, rgba(27, 12, 57, 0.92) 56%, rgba(15, 20, 25, 0.96) 100%);
}

.section-band--slate {
  background: rgba(8, 10, 16, 0.62);
}

.products-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  align-items: stretch;
}

@media (min-width: 56rem) {
  .products-row {
    grid-template-columns: 1fr 1fr;
  }

  .products-row--reverse .products-row__copy {
    order: 2;
  }

  .products-row--reverse .products-row__media {
    order: 1;
  }
}

.products-row__copy {
  padding: 0.15rem 0;
}

.products-row__copy h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.25;
}

.products-row__copy p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-text);
}

.products-row__copy p + p {
  margin-top: 0.55rem;
}

.products-row--text-only .products-row__copy {
  max-width: 60rem;
}

.products-row__spacer {
  height: 1.35rem;
}

.products-row__figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  min-height: 16rem;
}

.products-row__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 16rem;
  max-height: 22rem;
  object-fit: cover;
  object-position: center;
  transition: opacity 260ms ease;
}

.site-main.products-page .home-cta {
  margin-top: 2.5rem;
}

/* --- Technology page --- */
.site-main.technology-page .products-row {
  margin-top: 2.25rem;
}

.site-main.technology-page .products-row:first-of-type {
  margin-top: 1.5rem;
}

.site-main.technology-page .site-section {
  margin-top: 2.25rem;
}

.site-main.technology-page .home-cta {
  margin-top: 2.5rem;
}

.site-main.technology-page .tech-emphasis {
  color: var(--color-highlight);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.site-main.technology-page .tech-keyword {
  color: var(--color-accent-hover);
  font-weight: 700;
}

.site-main.technology-page .tech-callout {
  margin-top: 0.8rem;
  padding: 0.55rem 0.7rem;
  border-left: 3px solid var(--color-highlight);
  border: 1px solid rgba(244, 255, 0, 0.28);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
}

/* --- Employment (Join Our Team) --- */
.site-main.employment-page {
  max-width: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.employment-hero {
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: min(52vh, 36rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 10vw, 5rem) max(1.25rem, calc(50vw - var(--max-w) / 2));
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.employment-hero__media {
  position: absolute;
  inset: 0;
}

.employment-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.employment-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(8, 10, 16, 0.92) 100%);
}

.employment-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin: 0 auto;
}

.employment-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.25rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.employment-hero__pulse {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #fff;
  animation: employmentHeroPulse 2s ease-in-out infinite;
}

@keyframes employmentHeroPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.65;
    transform: scale(0.92);
  }
}

.employment-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 7vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-text);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.75);
}

.employment-hero__lead {
  margin: 0;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  line-height: 1.55;
  font-weight: 400;
  color: rgba(232, 234, 237, 0.88);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.65);
}

.employment-hero__lead strong {
  font-weight: 600;
  color: #fff;
}

.employment-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
}

.employment-section.section-band {
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 1.6rem max(1.25rem, calc(50vw - var(--max-w) / 2)) 2.1rem;
}

.employment-section__header {
  text-align: center;
  margin-bottom: 2rem;
}

.employment-section__header h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text);
}

.employment-section__sub {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--color-text-muted);
}

.employment-benefits__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 40rem) {
  .employment-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 64rem) {
  .employment-benefits__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.employment-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.32);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.employment-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.employment-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1.1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
}

.employment-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
}

.employment-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.employment-apply__grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 56rem) {
  .employment-apply__grid {
    grid-template-columns: minmax(0, 0.38fr) minmax(0, 1fr);
    gap: 2rem;
  }
}

.employment-apply__positions {
  padding: 1.75rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.38);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.employment-apply__positions h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.employment-positions {
  margin: 0;
  padding: 0;
  list-style: none;
}

.employment-positions li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

.employment-positions li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

.employment-positions li:last-child {
  margin-bottom: 0;
}

.employment-apply__howto {
  padding: 1.75rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.employment-apply__howto > h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-text);
}

.employment-apply__intro {
  margin: 0 0 1.75rem;
  font-size: 1.125rem;
  line-height: 1.55;
  font-weight: 400;
  color: var(--color-text-muted);
}

.employment-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.employment-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.employment-step:last-of-type {
  margin-bottom: 0;
}

.employment-step__num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text);
}

.employment-step__body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
}

.employment-step__body p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.employment-apply__cta {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 36rem) {
  .employment-apply__cta {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}

.employment-apply__download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  background: #fff !important;
  color: #0f1419 !important;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.employment-apply__download:hover {
  background: rgba(255, 255, 255, 0.92) !important;
  color: #0f1419 !important;
  text-decoration: none;
}

.employment-apply__download-icon {
  flex-shrink: 0;
}

.employment-apply__note {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-align: center;
}

@media (min-width: 36rem) {
  .employment-apply__note {
    text-align: left;
  }
}

.employment-legacy {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 2.5rem 0 3.5rem;
  background: rgba(8, 10, 16, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.employment-legacy__header {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

.employment-marquee {
  position: relative;
  margin-top: 1.5rem;
}

.employment-marquee__track {
  display: flex;
  overflow: hidden;
  gap: 1.5rem;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.employment-marquee__row {
  display: inline-flex;
  gap: 1.5rem;
  min-width: max-content;
  animation: employmentLegacyMarquee 48s linear infinite;
}

.employment-marquee:hover .employment-marquee__row {
  animation-play-state: paused;
}

.employment-marquee__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(2.5rem, 8vw, 5rem);
  z-index: 2;
  pointer-events: none;
}

.employment-marquee__fade--left {
  left: 0;
  background: linear-gradient(to right, var(--color-bg), transparent);
}

.employment-marquee__fade--right {
  right: 0;
  background: linear-gradient(to left, var(--color-bg), transparent);
}

.employment-marquee__card {
  margin: 0;
  flex: none;
  width: min(28rem, 82vw);
  height: min(18rem, 48vw);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.employment-marquee__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2s ease;
}

.employment-marquee__card:hover img {
  transform: scale(1.04);
}

@keyframes employmentLegacyMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 1.5rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  .employment-marquee__row {
    animation: none;
  }

  .employment-hero__pulse {
    animation: none;
  }

  .employment-marquee__card:hover img {
    transform: none;
  }
}
