@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --swift-charcoal: #23262b;
  --swift-gold: #c39a45;
  --swift-steel: #7c8794;
  --swift-pallet: #d8dadd;
  --swift-offwhite: #f7f7f5;
  --swift-white: #ffffff;
  --swift-ink: #191b1f;
  --swift-success: #176b43;
  --swift-error: #9f2f2f;
  --swift-shadow: 0 14px 36px rgba(35, 38, 43, 0.1);
  --swift-radius: 3px;
  --swift-content: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--swift-charcoal);
  background: var(--swift-offwhite);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.admin-bar .site-header { top: 32px; }

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

a { color: inherit; text-underline-offset: 0.2em; }
a:hover { color: #8d6824; }

h1, h2, h3, h4 {
  margin-top: 0;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.7rem, 6vw, 5.6rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p { margin-top: 0; }

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

.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 9999;
  transform: translateY(-130%);
  padding: 0.8rem 1rem;
  color: var(--swift-white);
  background: var(--swift-charcoal);
}

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

:focus-visible {
  outline: 3px solid var(--swift-gold);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(35, 38, 43, 0.09);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  width: min(calc(100% - 2.4rem), 1380px);
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
}

.site-logo,
.footer-logo {
  display: block;
  flex: 0 0 auto;
  width: 255px;
  height: 60px;
  background: url("../logo/ss-logo-horizontal.svg") left center / contain no-repeat;
}

.footer-logo {
  width: 230px;
  height: 70px;
  background-image: url("../logo/ss-logo-horizontal-white.svg");
}

.primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.primary-nav a {
  position: relative;
  color: var(--swift-charcoal);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.55rem;
  height: 2px;
  background: var(--swift-gold);
  transition: right 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after { right: 0; }

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 48px;
  height: 48px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 3px;
  margin: 5px 0;
  background: var(--swift-charcoal);
}

.button,
.swift-form button,
.wp-element-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.45rem;
  border: 2px solid transparent;
  border-radius: var(--swift-radius);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease;
}

.button:hover,
.swift-form button:hover,
.wp-element-button:hover { transform: translateY(-2px); }
.button--gold,
.swift-form button { color: var(--swift-charcoal); background: var(--swift-gold); }
.button--gold:hover,
.swift-form button:hover { color: var(--swift-charcoal); background: #d1ab5d; }
.button--dark { color: var(--swift-white); background: var(--swift-charcoal); }
.button--outline { color: var(--swift-white); border-color: var(--swift-gold); background: transparent; }
.button--outline:hover { color: var(--swift-charcoal); background: var(--swift-gold); }
.header-cta { white-space: nowrap; }

.container {
  width: min(calc(100% - 2.4rem), var(--swift-content));
  margin-inline: auto;
}

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--white { background: var(--swift-white); }
.section--dark { color: var(--swift-white); background: var(--swift-charcoal); }
.section--tight { padding: 2rem 0; }

.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--swift-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading { max-width: 820px; margin-bottom: 2.2rem; }
.section-heading p:last-child { max-width: 700px; color: #555d67; font-size: 1.05rem; }
.section--dark .section-heading p:last-child { color: #dce0e4; }

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: stretch;
  color: var(--swift-white);
  background: var(--swift-charcoal);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 26, 30, 0.99) 0%, rgba(24, 26, 30, 0.96) 38%, rgba(24, 26, 30, 0.2) 68%, rgba(24, 26, 30, 0.08) 100%),
    url("../images/hero-workforce.webp") center / cover no-repeat;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2.4rem), 1380px);
  margin: auto;
  padding: 7rem 0;
}

.hero__copy { max-width: 720px; }
.hero h1 { margin-bottom: 1.3rem; text-transform: uppercase; }
.hero h1 span { display: block; color: var(--swift-gold); }
.hero__lead { max-width: 610px; margin-bottom: 2rem; color: #e7e8e9; font-size: clamp(1.08rem, 1.7vw, 1.35rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__notice { max-width: 620px; margin-top: 2rem; padding-left: 1rem; border-left: 3px solid var(--swift-gold); color: #ccd0d4; font-size: 0.88rem; }

.proof-bar { color: var(--swift-charcoal); background: var(--swift-white); border-bottom: 1px solid var(--swift-pallet); }
.proof-bar__inner {
  width: min(calc(100% - 2.4rem), var(--swift-content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.proof {
  min-height: 104px;
  padding: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  border-right: 1px solid var(--swift-pallet);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}
.proof:last-child { border-right: 0; }
.proof__icon { color: var(--swift-gold); font-size: 1.6rem; line-height: 1; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.service-card {
  min-width: 0;
  background: var(--swift-white);
  box-shadow: var(--swift-shadow);
}
.service-card img { width: 100%; aspect-ratio: 4 / 3; display: block; object-fit: cover; }
.service-card__body { padding: 1.6rem; }
.service-card h3 { margin-bottom: 0.8rem; text-transform: uppercase; }
.service-card p { color: #5b626c; }
.service-card__note { padding-top: 0.8rem; border-top: 1px solid var(--swift-pallet); font-size: 0.78rem; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; counter-reset: swift-step; }
.process-step { position: relative; padding: 1.6rem; border-top: 3px solid var(--swift-gold); background: #2d3137; counter-increment: swift-step; }
.process-step::before { content: "0" counter(swift-step); display: block; margin-bottom: 1.2rem; color: var(--swift-gold); font-weight: 700; }
.process-step h3 { font-size: 1rem; text-transform: uppercase; }
.process-step p { margin-bottom: 0; color: #d5d8dc; font-size: 0.9rem; }

.cta-band { padding: 3.2rem 0; color: var(--swift-white); background: var(--swift-charcoal); }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-band h2 { margin-bottom: 0.45rem; font-size: clamp(1.65rem, 3vw, 2.6rem); text-transform: uppercase; }
.cta-band p { margin-bottom: 0; color: #d4d7db; }

.page-hero { color: var(--swift-white); background: var(--swift-charcoal); }
.page-hero__grid { min-height: 380px; display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: stretch; }
.page-hero__copy { padding: clamp(3.5rem, 7vw, 6rem) clamp(1.2rem, 5vw, 5rem); align-self: center; }
.page-hero__copy h1 { margin-bottom: 1rem; font-size: clamp(2.6rem, 5vw, 4.7rem); text-transform: uppercase; }
.page-hero__copy p { max-width: 660px; color: #dce0e4; font-size: 1.07rem; }
.page-hero__image { min-height: 340px; background: url("../images/service-warehouse.webp") center / cover no-repeat; }
.page-hero__image--workers { background-image: url("../images/hero-workforce.webp"); }
.page-hero__image--compliance { background-image: url("../images/service-manufacturing.webp"); }

.split { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.promise-list { display: grid; gap: 1rem; }
.promise { padding: 1.4rem 0 1.4rem 4rem; border-bottom: 1px solid var(--swift-pallet); }
.promise h3 { position: relative; margin-bottom: 0.5rem; text-transform: uppercase; }
.promise h3::before { content: ""; position: absolute; left: -4rem; top: -0.2rem; width: 2.8rem; height: 2.8rem; border: 2px solid var(--swift-gold); transform: rotate(45deg); }
.promise p { color: #5b626c; }

.swift-form-wrap { padding: clamp(1.5rem, 4vw, 2.5rem); background: var(--swift-white); box-shadow: var(--swift-shadow); }
.swift-form-wrap h2 { margin-bottom: 0.6rem; font-size: clamp(1.7rem, 3vw, 2.5rem); text-transform: uppercase; }
.swift-form-intro { margin-bottom: 1.6rem; color: #5a6169; }
.swift-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 1.2rem; }
.swift-field { min-width: 0; }
.swift-field--full { grid-column: 1 / -1; }
.swift-field label,
.swift-field legend { display: block; margin-bottom: 0.42rem; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; }
.swift-field input,
.swift-field select,
.swift-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 0.9rem;
  color: var(--swift-charcoal);
  background: var(--swift-white);
  border: 1px solid #aeb4bb;
  border-radius: 2px;
  font: inherit;
}
.swift-field textarea { min-height: 130px; resize: vertical; }
.swift-field input:focus,
.swift-field select:focus,
.swift-field textarea:focus { border-color: var(--swift-gold); outline: 3px solid rgba(195, 154, 69, 0.25); }
.swift-checks { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.swift-checks label,
.swift-consent { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.82rem; font-weight: 400; text-transform: none; }
.swift-checks input,
.swift-consent input { width: 1.1rem; min-height: 1.1rem; margin-top: 0.15rem; }
.swift-help { display: block; margin-top: 0.35rem; color: #666d75; font-size: 0.75rem; }
.swift-form button { grid-column: 1 / -1; width: 100%; border: 0; }
.swift-form-message { margin-bottom: 1.2rem; padding: 1rem; border-left: 4px solid; }
.swift-form-message--success { color: #0d5332; background: #e5f5ed; border-color: var(--swift-success); }
.swift-form-message--error { color: #722222; background: #faeaea; border-color: var(--swift-error); }
.swift-hp { position: absolute !important; left: -9999px !important; }

.jobs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.job-card { padding: 1.8rem; border-top: 4px solid var(--swift-gold); background: var(--swift-white); box-shadow: var(--swift-shadow); }
.job-card h2 { margin-bottom: 0.7rem; font-size: 1.55rem; text-transform: uppercase; }
.job-meta { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 1rem; }
.job-meta span { padding: 0.3rem 0.55rem; background: var(--swift-offwhite); font-size: 0.75rem; font-weight: 700; }
.jobs-empty { padding: clamp(2.5rem, 7vw, 5rem); text-align: center; background: var(--swift-white); border: 1px solid var(--swift-pallet); }
.jobs-empty__mark { width: 84px; height: 84px; margin: 0 auto 1.6rem; background: url("../logo/ss-monogram.svg") center / contain no-repeat; }

.compliance-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.compliance-card { padding: 1.8rem; background: var(--swift-white); border-left: 4px solid var(--swift-gold); }
.compliance-card h3 { text-transform: uppercase; }
.notice { padding: 1.2rem 1.4rem; color: #4e3c15; background: #fbf4e5; border: 1px solid #e1c886; }
.legal-copy { max-width: 880px; }
.legal-copy h2 { margin-top: 2.6rem; font-size: 1.8rem; text-transform: uppercase; }
.legal-copy h3 { margin-top: 1.7rem; font-size: 1.1rem; text-transform: uppercase; }
.legal-copy li { margin-bottom: 0.55rem; }

.site-footer { padding: 4.5rem 0 1.5rem; color: #e6e8ea; background: #191b1f; }
.site-footer__grid,
.site-footer__legal { width: min(calc(100% - 2.4rem), var(--swift-content)); margin-inline: auto; }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr 0.7fr 1fr 1fr; gap: 2.5rem; }
.site-footer h2 { margin-bottom: 1rem; color: var(--swift-white); font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; }
.site-footer a { display: block; margin-bottom: 0.48rem; color: #e6e8ea; }
.site-footer p { color: #bfc4ca; font-size: 0.87rem; }
.site-footer__legal { margin-top: 3rem; padding-top: 1.4rem; display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid #393e45; }
.site-footer__legal a { display: inline; }

@media (max-width: 1050px) {
  .site-logo { width: 220px; }
  .primary-nav { gap: 1rem; }
  .primary-nav a { font-size: 0.72rem; }
  .header-cta { display: none; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:last-child { grid-column: 1 / -1; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
  .site-header__inner { min-height: 76px; }
  .site-logo { width: 205px; height: 54px; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 1rem 1.2rem 1.5rem;
    flex-direction: column;
    align-items: stretch;
    background: var(--swift-white);
    box-shadow: var(--swift-shadow);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { min-height: 44px; display: flex; align-items: center; font-size: 0.85rem; border-bottom: 1px solid var(--swift-pallet); }
  .primary-nav a::after { display: none; }
  .hero { min-height: 760px; align-items: end; }
  .hero::after { background: linear-gradient(0deg, rgba(24, 26, 30, 1) 0%, rgba(24, 26, 30, 0.96) 46%, rgba(24, 26, 30, 0.05) 78%), url("../images/hero-workforce.webp") 62% top / auto 56% no-repeat; }
  .hero__inner { padding: 25rem 0 4rem; }
  .hero h1 { font-size: clamp(2.7rem, 12vw, 4.4rem); }
  .hero__actions { display: grid; }
  .proof-bar__inner { grid-template-columns: 1fr; }
  .proof { min-height: 70px; justify-content: flex-start; border-right: 0; border-bottom: 1px solid var(--swift-pallet); }
  .card-grid,
  .jobs-grid,
  .compliance-grid,
  .split { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; }
  .process-grid { grid-template-columns: 1fr; }
  .cta-band__inner { align-items: flex-start; flex-direction: column; }
  .page-hero__grid { grid-template-columns: 1fr; }
  .page-hero__copy h1 { font-size: clamp(2.25rem, 10vw, 3.4rem); }
  .page-hero__image { order: -1; min-height: 280px; }
  .swift-form { grid-template-columns: 1fr; }
  .swift-field--full,
  .swift-form button { grid-column: auto; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__legal { flex-direction: column; }
}

@media (max-width: 480px) {
  .site-logo { width: 180px; }
  .hero__inner { padding-top: 22rem; }
  .hero h1 { max-width: 100%; font-size: clamp(2.25rem, 10.2vw, 2.6rem); letter-spacing: -0.035em; }
  .card-grid { gap: 1rem; }
  .swift-form-wrap { padding-inline: 1rem; }
}

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

@media print {
  .site-header, .site-footer, .hero__actions, .cta-band, .menu-toggle { display: none !important; }
  body { color: #000; background: #fff; }
  .section, .page-hero__copy { padding: 1.5rem 0; }
}
