:root {
  --orange: #ff9518;
  --orange-dark: #e27700;
  --gold-soft: #fff4e6;
  --ink: #181818;
  --muted: #626872;
  --line: #e5e7eb;
  --soft: #f4f6f8;
  --wash: #fcfcfd;
  --panel: #ffffff;
  --radius: 8px;
  --page-pad: max(18px, calc((100vw - 1180px) / 2));
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--wash);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

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

:target {
  scroll-margin-top: 96px;
}

::selection {
  background: rgba(255, 149, 24, 0.28);
}

:focus-visible {
  outline: 3px solid rgba(255, 149, 24, 0.7);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--page-pad);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  width: 210px;
  height: 58px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  transform-origin: left center;
  transition: opacity 280ms ease, transform 280ms ease, filter 280ms ease;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.hero-logo-visible .brand {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.82);
  filter: blur(2px);
}

body:not(.hero-logo-visible) .brand {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  color: #4b4b4b;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-color: var(--orange);
}

.nav-cta {
  padding: 8px 12px !important;
  background: #111;
  border: 0 !important;
  border-radius: var(--radius);
  color: #fff;
}

.hero {
  position: relative;
  min-height: calc(100vh - 89px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: start;
  gap: clamp(26px, 5vw, 64px);
  padding: clamp(32px, 4.6vw, 62px) var(--page-pad) clamp(56px, 7vw, 88px);
  background:
    radial-gradient(circle at 72% 16%, rgba(255, 149, 24, 0.18), transparent 30%),
    radial-gradient(circle at 20% 78%, rgba(255, 149, 24, 0.09), transparent 32%),
    linear-gradient(135deg, #fff 0%, #fff 56%, #f4f6f8 56%, #f4f6f8 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: min(42vw, 540px);
  height: 8px;
  background: var(--orange);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 149, 24, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.045) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at 72% 46%, #000 0%, transparent 56%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 780px;
  animation: heroRise 700ms ease both;
}

.hero-logo-mark {
  width: clamp(220px, 30vw, 360px);
  margin-bottom: clamp(22px, 4vw, 38px);
  filter: drop-shadow(0 22px 48px rgba(255, 149, 24, 0.16));
}

.hero-logo-mark img {
  width: 100%;
  height: auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--orange-dark);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 720px;
  color: var(--ink);
  font-size: clamp(48px, 6.4vw, 86px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: #444;
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.value-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.value-strip span {
  padding: 9px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: rgba(0, 0, 0, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(24, 24, 24, 0.12);
}

.button.primary {
  background: #111;
  color: #fff;
  border-color: #111;
}

.button.ghost {
  background: #fff;
}

.hero-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: clamp(72px, 10vw, 146px);
  animation: heroRise 800ms 120ms ease both;
}

.hero-card div {
  min-height: 124px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(17, 24, 39, 0.07);
  backdrop-filter: blur(14px);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.hero-card div:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 70px rgba(17, 24, 39, 0.11);
}

.hero-card strong {
  display: block;
  color: #111;
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1;
}

.hero-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
}

.hero-light {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-light span {
  position: absolute;
  left: 51%;
  top: 50%;
  width: min(46vw, 620px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 149, 24, 0.78), transparent);
  transform-origin: left center;
  opacity: 0;
  filter: blur(0.4px);
  animation: lightSweep 4.8s ease-in-out infinite;
}

.hero-light span:nth-child(1) {
  transform: rotate(-18deg);
}

.hero-light span:nth-child(2) {
  transform: rotate(8deg);
  animation-delay: 1.1s;
}

.hero-light span:nth-child(3) {
  transform: rotate(28deg);
  animation-delay: 2.2s;
}

@keyframes lightSweep {
  0% {
    opacity: 0;
    translate: -14% 0;
    scale: 0.7 1;
  }
  38% {
    opacity: 0.72;
  }
  72% {
    opacity: 0;
    translate: 20% 0;
    scale: 1.08 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  padding: clamp(56px, 7vw, 92px) var(--page-pad);
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 30px;
}

.section-heading::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 149, 24, 0));
  border-radius: 999px;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 52px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0;
}

.lead {
  max-width: 980px;
  margin: 0;
  color: #333;
  font-size: clamp(21px, 2.45vw, 32px);
  line-height: 1.3;
  font-weight: 720;
}

.mission {
  background:
    linear-gradient(180deg, rgba(255, 149, 24, 0.035), transparent 52%),
    var(--soft);
}

.team-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.team-grid article,
.support-grid article {
  min-height: 148px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 2px solid rgba(255, 149, 24, 0.26);
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(24, 24, 24, 0.035);
}

.team-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--orange);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.plain-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.plain-list p {
  margin: 0;
  padding: 18px 20px;
  background: #1f2329;
  color: #fff;
  border-radius: var(--radius);
  font-weight: 700;
}

.partners {
  background: #fff;
}

.partner-quote {
  max-width: 840px;
  margin: 0 0 28px auto;
  padding: 32px;
  background: #fff;
  border-left: 6px solid var(--orange);
  border-radius: var(--radius);
}

.partner-quote p {
  margin: 0;
  font-size: clamp(20px, 2.5vw, 30px);
  font-style: italic;
  font-weight: 750;
  line-height: 1.22;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.logo-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(24, 24, 24, 0.025);
}

.split,
.media-grid,
.assortment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.resource-list,
.feature-list,
.assortment-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.resource-list div,
.feature-list article,
.assortment-list span {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid rgba(255, 149, 24, 0.28);
  border-radius: var(--radius);
}

.resource-list strong,
.feature-list strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
}

.resource-list span,
.feature-list p {
  display: block;
  margin: 7px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.slide-figure,
.visual-card {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(24, 24, 24, 0.07);
}

.slide-figure img,
.visual-card img {
  width: 100%;
  object-fit: cover;
}

.slide-figure img {
  aspect-ratio: 16 / 9;
}

.visual-card {
  padding: clamp(14px, 2vw, 24px);
}

.visual-card img {
  border-radius: calc(var(--radius) - 2px);
}

.map-visual {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 149, 24, 0.1), transparent 28%),
    #fff;
}

.map-visual img {
  aspect-ratio: 16 / 10;
  object-fit: contain;
}

.warehouse-visual {
  padding: 0;
  background: #151515;
}

.warehouse-visual img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.warehouse-collage {
  display: grid;
  grid-template-columns: 1.35fr 0.78fr 0.78fr;
  grid-template-rows: 220px 170px;
  gap: 10px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(24, 24, 24, 0.07);
}

.warehouse-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

.warehouse-collage .warehouse-main {
  grid-column: 1 / span 2;
}

.warehouse-collage img:nth-child(2) {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.product-visual {
  background: #fff;
}

.product-visual img {
  object-fit: contain;
}

.clients {
  background:
    linear-gradient(180deg, #fff 0%, #fff 42%, #f7f8fa 42%, #f7f8fa 100%);
}

.clients .section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  font-weight: 750;
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 26px;
}

.coverage-tags span {
  padding: 9px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #3c3c3c;
  font-size: 14px;
  font-weight: 800;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.client-grid span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid rgba(255, 149, 24, 0.18);
  border-radius: var(--radius);
  font-weight: 750;
}

.logistics {
  background: #fff;
}

.media-grid {
  grid-template-columns: minmax(360px, 1.1fr) minmax(0, 0.9fr);
}

.feature-list article {
  background: #1f2329;
  color: #fff;
  border-color: #1f1f1f;
}

.feature-list p {
  color: rgba(255, 255, 255, 0.72);
}

.assortment {
  background: var(--soft);
}

.assortment-list {
  grid-template-columns: 1fr 1fr;
}

.assortment-list span {
  display: flex;
  align-items: center;
  min-height: 66px;
  background: #fff;
  font-weight: 800;
}

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

.support-grid h3 {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  margin-bottom: 18px;
  padding: 8px 14px;
  background: var(--gold-soft);
  color: #6d3900;
  border-radius: 999px;
}

.support-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.cta {
  display: grid;
  justify-items: center;
  gap: 28px;
  padding: clamp(64px, 10vw, 124px) 18px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.2), transparent 34%),
    var(--orange);
}

.cta img {
  width: min(300px, 72vw);
  padding: 0;
  background: transparent;
  border-radius: 0;
  filter: brightness(0);
}

.cta h2 {
  max-width: 740px;
  font-size: clamp(30px, 4vw, 52px);
}

.cta p {
  max-width: 660px;
  margin: -10px 0 0;
  font-size: 18px;
  font-weight: 750;
}

.contact-links {
  display: grid;
  gap: 10px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 850;
}

.contact-links a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.contact-links a:hover {
  color: #111;
  text-decoration-thickness: 3px;
}

@media (max-width: 1060px) {
  .hero,
  .split,
  .media-grid,
  .assortment-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    background:
      linear-gradient(180deg, #fff 0%, #fff 60%, #f4f6f8 60%),
      #fff;
  }

  .team-grid,
  .client-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  .site-header {
    position: sticky;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    min-height: 58px;
    padding: 8px 14px;
  }

  body.hero-logo-visible .site-header {
    justify-content: flex-end;
  }

  .brand {
    width: 126px;
    height: 42px;
    flex: 0 0 126px;
  }

  .nav {
    flex: 1;
    justify-content: flex-end;
    gap: 8px;
    font-size: 13px;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    min-height: 38px;
    padding-inline: 14px !important;
  }

  .team-grid,
  .plain-list,
  .logo-row,
  .support-grid,
  .assortment-list {
    grid-template-columns: 1fr;
  }

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

  .warehouse-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .warehouse-collage .warehouse-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .warehouse-collage img:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
  }

  .warehouse-collage img {
    aspect-ratio: 1 / 1;
  }

  .warehouse-collage .warehouse-main {
    aspect-ratio: 16 / 10;
  }

  .hero {
    min-height: auto;
    padding: 20px 14px 42px;
  }

  .hero::before {
    width: 76vw;
  }

  .hero::after {
    background-size: 58px 58px;
    mask-image: radial-gradient(circle at 56% 36%, #000 0%, transparent 60%);
  }

  .hero-logo-mark {
    width: min(210px, 66vw);
    margin-bottom: 18px;
  }

  .hero-card {
    gap: 8px;
    margin-top: 18px;
  }

  .hero-light span {
    display: none;
  }

  h1 {
    font-size: clamp(40px, 12vw, 52px);
  }

  h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .hero-copy > p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.45;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 22px;
  }

  .button {
    width: 100%;
    min-height: 44px;
  }

  .value-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 14px;
  }

  .value-strip span {
    padding: 8px 10px;
    font-size: 12px;
  }

  .hero-card div {
    padding: 14px;
  }

  .hero-card strong {
    font-size: 28px;
  }

  .hero-card span {
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.35;
  }

  .hero-card div,
  .team-grid article,
  .support-grid article {
    min-height: 0;
  }

  .partner-quote {
    padding: 22px;
  }

  .section {
    padding: 40px 14px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading::after {
    margin-top: 14px;
  }

  .lead {
    font-size: 19px;
  }

  .team-grid article,
  .support-grid article,
  .resource-list div,
  .feature-list article,
  .assortment-list span {
    padding: 14px;
  }

  .team-grid span {
    margin-bottom: 12px;
    font-size: 36px;
  }

  .plain-list p {
    padding: 14px;
  }

  .coverage-tags {
    gap: 6px;
    margin-bottom: 18px;
  }

  .coverage-tags span {
    padding: 7px 9px;
    font-size: 12px;
  }

  .client-grid {
    gap: 8px;
  }

  .client-grid span {
    min-height: 48px;
    padding: 10px;
    font-size: 12px;
    line-height: 1.25;
  }

  .visual-card {
    padding: 10px;
  }

  .contact-links {
    font-size: 17px;
  }
}

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