:root {
  --ink: #121412;
  --charcoal: #232620;
  --cream: #f6efe4;
  --paper: #fffaf2;
  --warm: #eadbc8;
  --olive: #636f50;
  --green: #214b37;
  --red: #b62225;
  --gold: #c9943d;
  --clay: #aa613d;
  --muted: rgba(18,20,18,.68);
  --line: rgba(18,20,18,.13);
  --shadow: 0 28px 80px rgba(18,20,18,.16);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.page { overflow: hidden; }
.container { width: min(1180px, calc(100% - 44px)); margin: 0 auto; }

/* Topbar */
.topbar {
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
}
.topbar span:last-child { opacity: .72; }

/* Header / nav */
header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(246,239,228,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(18,20,18,.1);
}
.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 200px; }
.brand img { width: 54px; height: 54px; object-fit: contain; }
.wordmark {
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: -.045em;
  line-height: .91;
  font-size: 28px;
}
nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
  color: rgba(18,20,18,.74);
  font-weight: 800;
  font-size: 14px;
}
nav ul a:hover { color: var(--red); }
nav ul a.active { color: var(--red); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(18,20,18,.2);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; margin: 0 auto; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary { color: white; background: var(--red); box-shadow: 0 16px 34px rgba(182,34,37,.22); }
.btn.dark { color: var(--cream); background: var(--ink); box-shadow: 0 16px 34px rgba(18,20,18,.18); }
.btn.ghost { color: var(--ink); border-color: rgba(18,20,18,.24); background: transparent; }
.btn.light { color: var(--ink); background: var(--cream); }

/* Hero */
.hero {
  padding: 42px 0 56px;
  background:
    radial-gradient(circle at 7% 4%, rgba(182,34,37,.11), transparent 28rem),
    radial-gradient(circle at 92% 7%, rgba(201,148,61,.16), transparent 25rem),
    linear-gradient(180deg, #f8f0e5 0%, #efe0ce 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 28px;
  align-items: stretch;
}
.hero-copy {
  min-height: 620px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(18,20,18,.1);
  background: linear-gradient(145deg, rgba(255,250,242,.94), rgba(234,219,200,.86));
  box-shadow: var(--shadow);
  padding: clamp(34px, 6vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.hero-copy:after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -120px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  border: 28px solid rgba(33,75,55,.08);
  transform: rotate(-18deg);
}
.eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(33,75,55,.10);
  color: var(--green);
  border: 1px solid rgba(33,75,55,.12);
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow:before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
h1 {
  margin: 26px 0 24px;
  max-width: 760px;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: .91;
  letter-spacing: -.075em;
}
.lead {
  max-width: 690px;
  color: rgba(18,20,18,.74);
  font-size: clamp(18px, 2vw, 22px);
  margin: 0;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.service-strip {
  position: relative;
  z-index: 2;
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.service-chip {
  background: rgba(255,250,242,.76);
  border: 1px solid rgba(18,20,18,.11);
  border-radius: 18px;
  padding: 18px 16px;
}
.service-chip strong { display: block; font-size: 14px; line-height: 1.15; }
.service-chip small { display: block; margin-top: 7px; color: var(--muted); font-size: 12px; font-weight: 750; }

.hero-visual {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(18,20,18,.92), rgba(35,38,32,.93)),
    radial-gradient(circle at 70% 10%, rgba(201,148,61,.24), transparent 30rem);
  box-shadow: var(--shadow);
  color: var(--cream);
  isolation: isolate;
}
.hero-visual:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(246,239,228,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246,239,228,.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 54% 44%, black 0, transparent 76%);
  opacity: .45;
}
.hero-visual:after {
  content: "";
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  border: 2px solid rgba(246,239,228,.2);
  top: 80px;
  right: -120px;
  transform: rotate(-19deg);
}
.visual-inner { position: relative; z-index: 2; padding: 28px; min-height: 620px; display: flex; flex-direction: column; }
.facility-card {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 16px;
  align-items: center;
  width: min(410px, 100%);
  background: rgba(246,239,228,.08);
  border: 1px solid rgba(246,239,228,.16);
  border-radius: 22px;
  padding: 16px;
  backdrop-filter: blur(12px);
}
.facility-card img { width: 66px; height: 66px; object-fit: contain; filter: invert(1); opacity: .92; }
.facility-card strong { display: block; font-size: 24px; line-height: .95; letter-spacing: -.04em; text-transform: uppercase; }
.facility-card span { display: block; margin-top: 8px; color: rgba(246,239,228,.7); font-size: 13px; }
.warehouse-scene { position: relative; flex: 1; min-height: 420px; margin-top: 22px; }
.truck {
  position: absolute;
  left: 3%;
  right: 3%;
  bottom: 30px;
  height: 138px;
  border-radius: 14px;
  background: var(--cream);
  box-shadow: 0 24px 40px rgba(0,0,0,.26);
}
.truck:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 58%;
  border-radius: 14px 0 0 14px;
  background: linear-gradient(145deg, #fffaf2, #eadbc8);
}
.truck:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 32%;
  height: 118px;
  border-radius: 52px 14px 14px 0;
  background: var(--red);
}
.truck-logo {
  position: absolute;
  left: 28px;
  top: 35px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: -.04em;
  line-height: .92;
  font-size: 22px;
  z-index: 2;
}
.truck-logo img { width: 54px; height: 54px; object-fit: contain; }
.wheel { position: absolute; bottom: -20px; width: 50px; height: 50px; border-radius: 50%; background: #161814; border: 9px solid #4b5045; z-index: 5; }
.wheel.one { left: 72px; }
.wheel.two { right: 84px; }
.cases { position: absolute; left: 8%; top: 24px; display: grid; grid-template-columns: repeat(3, 118px); gap: 12px; }
.case {
  min-height: 94px;
  background: rgba(246,239,228,.12);
  border: 1px solid rgba(246,239,228,.18);
  border-radius: 14px;
  padding: 15px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.12);
}
.case small { display: block; color: rgba(246,239,228,.62); font-size: 11px; letter-spacing: .09em; text-transform: uppercase; font-weight: 900; }
.case strong { display: block; margin-top: 6px; font-size: 17px; line-height: 1.05; }
.case:nth-child(2) { transform: translateY(26px); background: rgba(182,34,37,.26); }
.case:nth-child(3) { transform: translateY(2px); background: rgba(99,111,80,.32); }
.temp-badge {
  position: absolute;
  right: 34px;
  top: 150px;
  width: 150px;
  min-height: 150px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(246,239,228,.1);
  border: 1px solid rgba(246,239,228,.17);
  backdrop-filter: blur(10px);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 13px;
}
.temp-badge span { display: block; font-size: 38px; line-height: 1; margin-bottom: 8px; }

/* Sections */
.section { padding: 84px 0; background: var(--paper); }
.section.alt { background: var(--cream); }
.section.dark { background: var(--ink); color: var(--cream); }
.section-header {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  gap: 30px;
  align-items: end;
  margin-bottom: 32px;
}
.section-kicker {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .95;
  letter-spacing: -.055em;
}
.section-header p { margin: 0; color: var(--muted); font-size: 17px; }
.dark .section-header p { color: rgba(246,239,228,.68); }

/* Page hero (interior pages) */
.page-hero {
  padding: 56px 0 40px;
  background:
    radial-gradient(circle at 8% 0%, rgba(182,34,37,.10), transparent 26rem),
    linear-gradient(180deg, #f8f0e5 0%, #efe0ce 100%);
}
.page-hero h1 { font-size: clamp(40px, 5.4vw, 72px); margin: 18px 0 18px; max-width: 900px; }
.page-hero p { max-width: 640px; color: var(--muted); font-size: clamp(17px,2vw,20px); margin: 0; }
.breadcrumb { font-size: 13px; font-weight: 800; color: var(--muted); letter-spacing: .04em; }
.breadcrumb a:hover { color: var(--red); }

/* Category grid */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.category-card {
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(18,20,18,.08);
}
.category-visual {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(33,75,55,.92), rgba(18,20,18,.9));
}
.category-visual.red { background: linear-gradient(135deg, rgba(182,34,37,.94), rgba(80,22,21,.94)); }
.category-visual.gold { background: linear-gradient(135deg, rgba(201,148,61,.94), rgba(88,62,24,.94)); }
.category-visual.olive { background: linear-gradient(135deg, rgba(99,111,80,.94), rgba(39,48,37,.94)); }
.category-visual.clay { background: linear-gradient(135deg, rgba(170,97,61,.95), rgba(75,39,27,.94)); }
.category-visual.charcoal { background: linear-gradient(135deg, rgba(35,38,32,.95), rgba(18,20,18,.96)); }
.category-visual:after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 18px solid rgba(255,250,242,.13);
  right: -46px;
  top: -78px;
}
.box-stack { position: absolute; left: 24px; bottom: 18px; display: flex; align-items: flex-end; gap: 8px; }
.box-stack i { display: block; width: 46px; height: 46px; border-radius: 10px; background: rgba(255,250,242,.82); box-shadow: inset 0 -8px 0 rgba(18,20,18,.1); }
.box-stack i:nth-child(2) { width: 58px; height: 64px; }
.box-stack i:nth-child(3) { width: 42px; height: 52px; }
.category-body { padding: 24px; }
.label {
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.category-body h3 { margin: 10px 0 9px; font-size: 25px; line-height: 1; letter-spacing: -.04em; }
.category-body p { margin: 0; color: var(--muted); font-size: 15px; }
.pack { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); display: flex; gap: 8px; flex-wrap: wrap; }
.pack span { font-size: 11px; font-weight: 800; letter-spacing: .03em; color: var(--green); background: rgba(33,75,55,.10); border: 1px solid rgba(33,75,55,.14); border-radius: 999px; padding: 5px 10px; }

/* Capabilities */
.capabilities {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 28px;
  align-items: stretch;
}
.capabilities-intro {
  border-radius: 26px;
  padding: 32px;
  background: var(--ink);
  color: var(--cream);
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.capabilities-intro:after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 210px;
  height: 210px;
  border: 22px solid rgba(246,239,228,.08);
  border-radius: 50%;
}
.capabilities-intro h2 { margin: 0; font-size: 42px; line-height: .96; letter-spacing: -.055em; position: relative; z-index: 2; }
.capabilities-intro p { margin: 18px 0 0; color: rgba(246,239,228,.72); position: relative; z-index: 2; }
.capability-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.capability {
  border-radius: 22px;
  border: 1px solid var(--line);
  padding: 24px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(18,20,18,.07);
}
.capability .num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(182,34,37,.1);
  color: var(--red);
  display: grid;
  place-items: center;
  font-weight: 950;
  margin-bottom: 20px;
}
.capability h3 { margin: 0 0 9px; font-size: 23px; line-height: 1; letter-spacing: -.035em; }
.capability p { margin: 0; color: var(--muted); font-size: 15px; }

/* Operator band */
.operator-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--charcoal);
}
.operator-copy { padding: clamp(34px, 5vw, 58px); background: var(--green); color: var(--cream); }
.operator-copy h2 { margin: 0 0 18px; font-size: clamp(34px, 4vw, 56px); line-height: .96; letter-spacing: -.055em; }
.operator-copy p { margin: 0; color: rgba(246,239,228,.72); font-size: 17px; }
.operator-points { display: grid; gap: 14px; margin-top: 28px; }
.operator-point { display: grid; grid-template-columns: 34px 1fr; gap: 12px; }
.check { width: 34px; height: 34px; border-radius: 50%; background: var(--cream); color: var(--green); display: grid; place-items: center; font-weight: 950; }
.operator-point strong { display: block; }
.operator-point span { display: block; color: rgba(246,239,228,.68); font-size: 14px; margin-top: 3px; }
.operator-visual {
  min-height: 520px;
  position: relative;
  background:
    linear-gradient(135deg, rgba(246,239,228,.1), rgba(246,239,228,.04)),
    #22251f;
}
.flow { position: absolute; inset: 38px; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; }
.flow-card {
  border-radius: 22px;
  border: 1px solid rgba(246,239,228,.14);
  background: rgba(246,239,228,.08);
  padding: 22px;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.flow-card:before { content: ""; position: absolute; width: 110px; height: 110px; border-radius: 50%; right: -28px; top: -34px; border: 12px solid rgba(246,239,228,.08); }
.flow-card small { color: rgba(246,239,228,.55); font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }
.flow-card strong { margin-top: 8px; font-size: 25px; line-height: 1; letter-spacing: -.04em; }

/* Network */
.network { display: grid; grid-template-columns: 1.05fr .95fr; gap: 34px; align-items: center; }
.network-map {
  min-height: 430px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(18,20,18,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,20,18,.04) 1px, transparent 1px),
    linear-gradient(145deg, #fffaf2, #eadbc8);
  background-size: 48px 48px, 48px 48px, auto;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.route-line {
  position: absolute;
  inset: 72px 60px;
  border: 3px dashed rgba(182,34,37,.42);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 180px 0 0;
  transform: rotate(-6deg);
}
.pin {
  position: absolute;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: white;
  font-weight: 950;
  box-shadow: 0 16px 30px rgba(182,34,37,.25);
}
.pin.one { left: 70px; top: 235px; }
.pin.two { left: 285px; top: 120px; background: var(--green); }
.pin.three { right: 78px; bottom: 88px; background: var(--gold); }
.map-caption { position: absolute; left: 34px; bottom: 28px; right: 34px; display: flex; justify-content: space-between; gap: 18px; color: var(--muted); font-size: 13px; font-weight: 800; }
.network-copy h2 { margin: 0 0 18px; font-size: clamp(34px, 4vw, 56px); line-height: .96; letter-spacing: -.055em; }
.network-copy p { color: var(--muted); margin: 0; font-size: 17px; }
.network-points { margin-top: 26px; display: grid; gap: 12px; }
.network-points div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 950;
}
.network-points span { color: var(--muted); font-weight: 750; }

/* Quality */
.quality-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.quality-card {
  border-radius: 22px;
  padding: 24px;
  background: rgba(255,250,242,.08);
  border: 1px solid rgba(246,239,228,.13);
  min-height: 230px;
}
.quality-card .icon { width: 42px; height: 42px; border-radius: 50%; background: rgba(246,239,228,.1); display: grid; place-items: center; font-weight: 950; color: var(--gold); margin-bottom: 26px; }
.quality-card h3 { margin: 0 0 10px; font-size: 22px; line-height: 1; letter-spacing: -.035em; }
.quality-card p { margin: 0; color: rgba(246,239,228,.68); font-size: 15px; }

/* Social proof: partner logos + testimonials */
.logo-wall { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.logo-chip {
  height: 78px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--muted);
  font-weight: 900;
  letter-spacing: .04em;
  font-size: 14px;
  text-transform: uppercase;
}
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 22px; }
.testimonial {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  padding: 26px;
  box-shadow: 0 16px 34px rgba(18,20,18,.07);
  display: flex;
  flex-direction: column;
}
.testimonial .quote { font-size: 17px; line-height: 1.45; margin: 0 0 18px; }
.testimonial .quote:before { content: "\201C"; color: var(--red); font-weight: 900; }
.testimonial .who { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.testimonial .avatar { width: 44px; height: 44px; border-radius: 50%; background: rgba(33,75,55,.12); color: var(--green); display: grid; place-items: center; font-weight: 950; }
.testimonial .who strong { display: block; font-size: 14px; }
.testimonial .who span { display: block; color: var(--muted); font-size: 13px; }

/* Stats band */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { border: 1px solid var(--line); border-radius: 20px; background: #fff; padding: 24px; }
.stat strong { display: block; font-size: 40px; line-height: 1; letter-spacing: -.05em; color: var(--green); }
.stat span { display: block; margin-top: 8px; color: var(--muted); font-size: 14px; }

/* Final CTA */
.final-cta {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 28px;
  align-items: center;
  border-radius: var(--radius-xl);
  background: var(--red);
  color: white;
  padding: clamp(32px, 5vw, 54px);
  box-shadow: var(--shadow);
}
.final-cta h2 { margin: 0; font-size: clamp(34px, 4vw, 58px); line-height: .95; letter-spacing: -.055em; }
.final-cta p { margin: 0 0 22px; color: rgba(255,255,255,.76); font-size: 17px; }
.final-cta .section-kicker { color: rgba(255,255,255,.72); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Contact / form */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 34px; align-items: start; }
.contact-info { display: grid; gap: 22px; }
.info-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(18,20,18,.06);
}
.info-card small { color: var(--red); font-size: 11px; font-weight: 950; letter-spacing: .13em; text-transform: uppercase; }
.info-card strong { display: block; margin-top: 8px; font-size: 19px; letter-spacing: -.02em; }
.info-card p { margin: 6px 0 0; color: var(--muted); font-size: 15px; }
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(26px, 4vw, 40px);
  background: #fff;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; margin-bottom: 18px; }
.field label { font-size: 13px; font-weight: 900; letter-spacing: .02em; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  font: inherit;
  color: var(--ink);
  padding: 14px 16px;
  border: 1px solid rgba(18,20,18,.18);
  border-radius: 14px;
  background: var(--paper);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(182,34,37,.14);
}
.field textarea { min-height: 130px; resize: vertical; }
.field .error-msg { color: var(--red); font-size: 12.5px; font-weight: 700; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--red); }
.field.invalid .error-msg { display: block; }
.form-note { color: var(--muted); font-size: 13px; margin: 4px 0 18px; }
.form-status { margin-top: 16px; font-weight: 800; font-size: 14px; display: none; padding: 14px 16px; border-radius: 14px; }
.form-status.success { display: block; background: rgba(33,75,55,.1); color: var(--green); }
.form-status.error { display: block; background: rgba(182,34,37,.1); color: var(--red); }
.hidden-field { display: none !important; }

/* Success / thank-you page */
.success-page { min-height: 70vh; display: grid; place-items: center; padding: 60px 0; }
.success-box {
  max-width: 720px;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(34px, 6vw, 64px);
  box-shadow: var(--shadow);
}
.success-box .check-big {
  width: 72px; height: 72px; margin: 0 auto 22px;
  border-radius: 50%; display: grid; place-items: center;
  background: rgba(33,75,55,.12); color: var(--green); font-size: 34px; font-weight: 950;
}
.success-box h1 { font-size: clamp(36px, 5vw, 60px); margin: 0 0 16px; }
.success-box p { color: var(--muted); font-size: 18px; margin: 0 0 28px; }

/* Prose (legal / FAQ text) */
.prose h2 { font-size: 24px; letter-spacing: -.03em; margin: 30px 0 10px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--muted); font-size: 16px; margin: 0 0 14px; }
.prose a { color: var(--red); font-weight: 700; }
.faq-item { border: 1px solid var(--line); border-radius: 18px; background: #fff; padding: 22px 24px; margin-bottom: 14px; box-shadow: 0 12px 28px rgba(18,20,18,.05); }
.faq-item h3 { margin: 0 0 8px; font-size: 19px; letter-spacing: -.02em; }
.faq-item p { margin: 0; color: var(--muted); font-size: 15px; }

/* Back to top button */
#to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  color: var(--cream);
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(18,20,18,.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 40;
}
#to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
#to-top:hover { background: var(--red); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
}

/* Footer */
footer { background: var(--ink); color: var(--cream); padding: 48px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; padding-bottom: 30px; border-bottom: 1px solid rgba(246,239,228,.12); }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 46px; height: 46px; object-fit: contain; filter: invert(1); }
.footer-brand strong { text-transform: uppercase; line-height: .92; letter-spacing: -.04em; font-size: 21px; }
.footer-about { color: rgba(246,239,228,.66); font-size: 14px; margin: 16px 0 0; max-width: 320px; }
.footer-col h4 { margin: 0 0 14px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(246,239,228,.5); }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: rgba(246,239,228,.82); font-size: 14px; font-weight: 700; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 22px; }
.footer-copy { color: rgba(246,239,228,.6); font-size: 13px; }

/* Responsive */
@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  nav { position: fixed; inset: 84px 0 auto 0; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .28s ease; z-index: 25; }
  nav.open { transform: translateY(0); }
  nav ul { flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 22px 18px; }
  nav ul li { width: 100%; }
  nav ul a { display: block; padding: 14px 0; font-size: 16px; border-bottom: 1px solid var(--line); width: 100%; }
  .nav .btn { display: none; }
  .hero-grid, .section-header, .capabilities, .operator-band, .network, .final-cta, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy, .hero-visual { min-height: auto; }
  .visual-inner { min-height: 560px; }
  .category-grid, .quality-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-list { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .logo-wall { grid-template-columns: repeat(3, 1fr); }
  .testimonials, .stats { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 660px) {
  .container { width: min(100% - 28px, 1180px); }
  .topbar .container { display: grid; gap: 5px; }
  .nav { height: 76px; }
  nav { inset: 76px 0 auto 0; }
  .brand { min-width: 0; }
  .brand img { width: 45px; height: 45px; }
  .wordmark { font-size: 23px; }
  .hero { padding-top: 22px; }
  .hero-copy { padding: 28px; border-radius: 24px; }
  h1 { font-size: 48px; }
  .service-strip, .category-grid, .quality-grid, .form-row, .logo-wall, .stats { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .visual-inner { min-height: 640px; padding: 20px; }
  .cases { grid-template-columns: 1fr; left: 24px; right: 24px; }
  .case { min-height: 76px; }
  .case:nth-child(2), .case:nth-child(3) { transform: none; }
  .temp-badge { top: 310px; right: 24px; width: 120px; min-height: 120px; }
  .truck { height: 128px; }
  .truck-logo { left: 20px; font-size: 18px; }
  .truck-logo img { width: 44px; height: 44px; }
  .section { padding: 58px 0; }
  .flow { inset: 22px; grid-template-columns: 1fr; }
  .operator-visual { min-height: 680px; }
  .network-points div { display: grid; gap: 4px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* ---- Real photos on product cards (graceful fallback to gradient) ---- */
.cat-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 3;
  display: block;
}
/* ---- Real photo for homepage hero (replaces the CSS scene when present) ---- */
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 4;
}
.hero-visual:has(.hero-photo) .visual-inner { display: none; }   /* hide abstract scene when a photo is set */
.hero-visual .photo-badge { display: none; }
.hero-visual:has(.hero-photo) .photo-badge { display: flex; }
.hero-visual .photo-badge {
  position: absolute;
  left: 22px; bottom: 22px;
  z-index: 5;
  display: flex; align-items: center; gap: 12px;
  background: rgba(18,20,18,.62);
  border: 1px solid rgba(246,239,228,.2);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 12px 16px;
  color: var(--cream);
}
.hero-visual .photo-badge img { width: 38px; height: 38px; object-fit: contain; filter: invert(1); }
.hero-visual .photo-badge strong { font-size: 15px; letter-spacing: -.02em; line-height: 1; }

/* ---- Filled process step cards (about page) ---- */
.flow-card .step-no {
  position: absolute;
  top: 18px; left: 20px;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--red);
  color: #fff;
  font-weight: 950; font-size: 14px;
  z-index: 2;
}
.flow-card small {
  margin-top: 0;
}
.flow-card em {
  display: block;
  margin-top: 6px;
  font-style: normal;
  color: rgba(246,239,228,.6);
  font-size: 13px;
  line-height: 1.35;
}
/* Optional real photo over the operator-visual (replaces abstract flow when present) */
.op-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 3;
}
.operator-visual:has(.op-photo) .flow { display: none; }

/* Optional real photo over the distribution map (keeps the stage caption on top) */
.map-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
}
.network-map:has(.map-photo) .route-line,
.network-map:has(.map-photo) .pin { display: none; }
.network-map:has(.map-photo)::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,20,18,0) 40%, rgba(18,20,18,.72) 100%);
  z-index: 2;
}
.network-map:has(.map-photo) .map-caption {
  z-index: 3;
  color: var(--cream);
}
.network-map:has(.map-photo) .map-caption span { color: rgba(246,239,228,.85); }

/* ---- Fix: mobile hamburger not clickable (closed menu was intercepting taps) ---- */
@media (max-width: 980px) {
  .nav-toggle { position: relative; z-index: 40; }
  #site-nav { pointer-events: none; }
  #site-nav.open { pointer-events: auto; }
}

/* ---- Robust mobile menu (override): closed = display:none so it can never block the toggle ---- */
@media (max-width: 980px) {
  header { position: sticky; }
  .nav-toggle { display: flex; position: relative; z-index: 50; }
  #site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transform: none;
    display: none;
    pointer-events: auto;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    z-index: 45;
  }
  #site-nav.open { display: block; }
  #site-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 22px 18px; }
  #site-nav ul li { width: 100%; }
  #site-nav ul a { display: block; padding: 14px 0; font-size: 16px; border-bottom: 1px solid var(--line); }
}

/* ---- Multi-image carousel on product cards (2–5 images per category) ---- */
.cat-gallery { position: absolute; inset: 0; z-index: 3; }
.category-visual.has-photo .box-stack { display: none; }
.cat-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .5s ease; }
.cat-slide.active { opacity: 1; }
.cat-prev, .cat-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
  width: 30px; height: 30px; border: none; border-radius: 50%;
  background: rgba(18,20,18,.5); color: #fff; cursor: pointer;
  font-size: 17px; line-height: 1; display: grid; place-items: center;
}
.cat-prev { left: 8px; } .cat-next { right: 8px; }
.cat-prev:hover, .cat-next:hover { background: rgba(18,20,18,.85); }
.cat-dots { position: absolute; bottom: 8px; left: 0; right: 0; z-index: 6; display: flex; gap: 6px; justify-content: center; }
.cat-dot { width: 7px; height: 7px; border-radius: 50%; border: none; background: rgba(255,255,255,.55); cursor: pointer; padding: 0; }
.cat-dot.active { background: #fff; }
