:root {
  --black: #111111;
  --charcoal: #242424;
  --text: #555555;
  --muted: #727272;
  --line: #dddddd;
  --soft: #f3f3f3;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 16px 44px rgba(0, 0, 0, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--charcoal);
  font-family: Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

h1, h2, h3, h4, h5, h6, p { margin-top: 0; }
h1, h2, h3, h4, h5, h6 { color: var(--black); font-weight: 600; letter-spacing: -.025em; }
h1 { font-size: clamp(34px, 4.3vw, 56px); line-height: 1.06; }
h2 { margin-bottom: 16px; font-size: clamp(26px, 3vw, 38px); line-height: 1.12; }
h3 { margin-bottom: 10px; font-size: 18px; line-height: 1.25; }
h4 { font-size: 16px; }
h5 { font-size: 14px; }
h6 { font-size: 12px; }
p { color: var(--text); font-size: 15px; line-height: 1.65; }
.lead { color: var(--charcoal); font-size: 17px; line-height: 1.55; }

.section { padding: 88px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--black); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark p { color: var(--white); }
.section-dark p { opacity: .72; }
.section-head { max-width: 680px; margin-bottom: 42px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { width: 26px; height: 2px; background: currentColor; content: ""; }

.button {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .07em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.button:hover {
  border-color: #303030;
  background: #303030;
  color: var(--white);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .18);
  transform: translateY(-2px);
}
.button:active { box-shadow: 0 5px 12px rgba(0, 0, 0, .14); transform: translateY(0); }
.button:focus-visible, .menu-toggle:focus-visible, .snap-button:focus-visible, .faq-question:focus-visible {
  outline: 3px solid rgba(17, 17, 17, .24);
  outline-offset: 3px;
}
.button-dark { border-color: var(--black); background: var(--black); color: var(--white); }
.button-outline {
  border-color: rgba(255, 255, 255, .9);
  background: transparent;
  color: var(--white);
  box-shadow: none;
}
.button-outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}
.text-link {
  width: fit-content;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s ease, gap .2s ease;
}
.text-link::after { margin-left: 6px; content: "→"; transition: margin-left .2s ease; }
.text-link:hover::after { margin-left: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
}
.nav { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 40px;
  height: 40px;
  position: relative;
  border: 6px solid var(--black);
  border-right-color: transparent;
  border-radius: 50%;
}
.brand-mark::before {
  width: 17px;
  height: 4px;
  position: absolute;
  right: -5px;
  top: 12px;
  border-radius: 4px;
  background: var(--black);
  content: "";
}
.brand-mark::after {
  position: absolute;
  right: -8px;
  top: 8px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid var(--black);
  content: "";
}
.brand-copy strong { display: block; color: var(--black); font-size: 17px; letter-spacing: -.03em; }
.brand-copy small { display: block; margin-top: 2px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 27px; }
.nav-links a:not(.button) { color: #333; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.nav-links a:hover, .nav-links a.active { color: #777; }
.nav-links .button { min-height: 44px; padding-inline: 19px; box-shadow: none; }
.menu-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.menu-toggle:hover { border-color: #aaa; background: var(--soft); }

.hero {
  --home-hero-image: url("images/c-logistics-hero.png");
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--soft);
}
.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.91) 42%, rgba(255,255,255,.2) 80%),
    var(--home-hero-image) center / cover;
  content: "";
}
.hero-content { max-width: 670px; position: relative; z-index: 2; padding: 90px 0; }
.hero h1 { max-width: 650px; margin-bottom: 22px; text-transform: uppercase; }
.hero p { max-width: 620px; color: #333; font-size: 17px; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 35px; color: #333; font-size: 12px; font-weight: 700; }
.hero-proof span + span::before { margin-right: 18px; content: "•"; }
.reference-hero { margin: 10px; border-radius: var(--radius); }

.branded-image, .trade-feature-image, .commitment-image { position: relative; overflow: hidden; border-radius: var(--radius); }
.image-brand {
  min-height: 40px;
  padding: 6px 10px;
  position: absolute;
  z-index: 4;
  left: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d4d4d4;
  border-radius: var(--radius);
  background: rgba(255,255,255,.9);
  color: var(--black);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  backdrop-filter: blur(7px);
}
.image-brand strong { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.image-brand .brand-mark { width: 25px; height: 25px; border-width: 4px; }
.image-brand .brand-mark::before { width: 11px; height: 3px; right: -4px; top: 7px; }
.image-brand .brand-mark::after { right: -6px; top: 4px; border-top-width: 4px; border-bottom-width: 4px; border-left-width: 6px; }
.image-brand-hero { left: auto; right: 25px; top: 25px; }

.trade-feature { margin: 10px; display: grid; grid-template-columns: 1fr 1.15fr; gap: 10px; }
.trade-feature-copy {
  min-height: 410px;
  padding: clamp(42px, 6vw, 82px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}
.trade-feature-copy.dark { border-color: var(--black); background: var(--black); color: var(--white); }
.trade-feature-copy.dark h2, .trade-feature-copy.dark p, .trade-feature-copy.dark .text-link { color: var(--white); }
.trade-feature-copy p { max-width: 440px; }
.trade-feature-image { min-height: 410px; }
.trade-feature-image img, .commitment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
  transition: transform .65s ease, filter .35s ease;
}
.trade-feature-image:hover img { transform: scale(1.035); }
.feature-icon { width: 66px; height: 66px; margin-bottom: 18px; display: grid; place-items: center; }
.feature-icon svg { width: 48px; height: 48px; stroke-width: 1.3; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.service-card, .industry-card, .value-card {
  min-width: 0;
  padding: 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card { min-height: 235px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.service-card:hover, .industry-card:hover { transform: translateY(-5px); border-color: #aaa; box-shadow: var(--shadow); }
.service-icon, .industry-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--black);
}
.service-icon svg { width: 30px; height: 30px; stroke-width: 1.6; }
.industry-icon svg { width: 24px; height: 24px; stroke-width: 1.7; }
.service-card p { margin-bottom: 0; font-size: 13px; }
.service-card .text-link { margin-top: 18px; }
.services-reference { margin: 10px; border-radius: var(--radius); background: var(--soft); }
.services-reference .card-grid { grid-template-columns: repeat(4, 1fr); }
.services-reference .service-card { min-height: 215px; }
.section:not(.services-reference) .service-card { align-items: flex-start; justify-content: flex-start; text-align: left; }
.center-action { margin-top: 34px; display: flex; justify-content: center; }

.values-reference { margin: 10px; border-radius: var(--radius); background: var(--black); color: var(--white); }
.values-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 75px; align-items: start; }
.values-intro { position: sticky; top: 110px; }
.values-intro h2, .values-intro p, .values-intro .eyebrow { color: var(--white); }
.values-list { display: grid; }
.value-row {
  min-height: 130px;
  padding: 26px 0;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.value-row:first-child { border-top: 1px solid rgba(255,255,255,.2); }
.value-row > span { color: #aaa; font-size: 12px; font-weight: 700; }
.value-row h3, .value-row p { color: var(--white); }
.value-row p { margin-bottom: 0; opacity: .68; }

.commitment-reference { margin: 10px; border-radius: var(--radius); background: var(--soft); }
.commitment-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 65px; align-items: center; }
.commitment-image { height: 530px; }
.commitment-copy { padding: 42px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.commitment-quote { color: var(--black); font-size: 18px; font-weight: 600; line-height: 1.5; }
.reference-cta { margin: 10px; padding: 38px 0; border-radius: var(--radius); background: #dedede; }
.reference-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.reference-cta h2, .reference-cta .eyebrow { margin-bottom: 0; }

.page-hero {
  padding: 100px 0 82px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,.93), rgba(0,0,0,.55)),
    var(--page-hero-image) center 55% / cover;
}
.page-hero h1, .page-hero p, .page-hero .eyebrow { color: var(--white); }
.page-hero h1 { max-width: 850px; font-size: clamp(23px, 4vw, 48px); }
.page-hero p { max-width: 700px; margin-bottom: 0; color: #ddd; font-size: 16px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 65px; align-items: center; }
.photo-card { min-height: 480px; position: relative; overflow: hidden; border-radius: var(--radius); background: var(--black); box-shadow: var(--shadow); }
.photo-card > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}
.photo-card::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(0,0,0,.8)); content: ""; }
.photo-caption { position: absolute; z-index: 2; left: 25px; right: 25px; bottom: 23px; color: var(--white); }
.photo-caption strong { display: block; margin-bottom: 5px; font-size: 19px; }
.photo-caption span { color: #ccc; font-size: 13px; }
.section-photo {
  width: 100%;
  height: 400px;
  margin-bottom: 45px;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(1.04) contrast(1.02);
}
.branded-service-photo {
  height: clamp(300px, 42vw, 520px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.image-collage { margin-bottom: 45px; display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: 215px 215px; gap: 12px; }
.image-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(1.04) contrast(1.02);
}
.image-collage img:first-child { grid-row: 1 / 3; }
.check-list { margin: 25px 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; list-style: none; }
.check-list li { padding-left: 24px; position: relative; color: #444; font-size: 14px; font-weight: 600; }
.check-list li::before { position: absolute; left: 0; content: "✓"; }
.regions { display: grid; grid-template-columns: 1.1fr .9fr; gap: 65px; align-items: center; }
.region-list { margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.region-list span { padding: 14px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); color: var(--black); font-size: 13px; font-weight: 700; }
.industry-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.industry-card { min-height: 145px; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; }
.industry-card h3 { margin-bottom: 0; font-size: 16px; }
.cta-panel { padding: 55px; overflow: hidden; border-radius: var(--radius); background: var(--black); color: var(--white); }
.cta-panel h2, .cta-panel p { max-width: 760px; color: var(--white); }
.cta-panel p { opacity: .72; }
.cta-panel .button {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
}
.cta-panel .button:hover {
  border-color: #d8d8d8;
  background: #d8d8d8;
  color: var(--black);
}
.cta-panel .button:focus-visible, .section-dark .button:focus-visible {
  outline-color: rgba(255, 255, 255, .65);
}

.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.process-step { min-height: 190px; padding: 24px 18px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); text-align: center; }
.step-number { width: 48px; height: 48px; margin: 0 auto 18px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: var(--white); font-weight: 700; }
.process-step h3, .process-step p { color: var(--white); }
.process-step p { font-size: 13px; opacity: .7; }
.stats-band { margin-top: 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.stat { min-height: 105px; padding: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); text-align: center; }
.stat strong { margin-bottom: 5px; color: var(--white); font-size: 21px; }
.stat span { color: #aaa; font-size: 12px; }
.snap-controls { display: none; }

.faq-list { max-width: 880px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; padding: 23px 0; display: flex; justify-content: space-between; gap: 20px; border: 0; background: none; color: var(--black); font-weight: 700; text-align: left; cursor: pointer; }
.faq-question span { font-size: 21px; transition: transform .2s ease; }
.faq-item.open .faq-question span { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-answer { max-height: 240px; }
.faq-answer p { padding: 0 40px 22px 0; margin: 0; }

.contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 60px; }
.contact-card { padding: 28px; margin-bottom: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.contact-card strong { display: block; margin-bottom: 8px; color: var(--black); }
.contact-card p { margin: 0; color: var(--black); font-size: 14px; }
.contact-card a {
  color: var(--black);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.contact-card a:hover { color: #555; }
.quote-form { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--black); font-size: 12px; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 13px 14px; border: 1px solid #ccc; border-radius: var(--radius); background: var(--white); color: var(--charcoal); outline: 0; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--black); box-shadow: 0 0 0 3px rgba(0,0,0,.07); }
.form-note { margin: 15px 0 0; font-size: 11px; }
.form-success { display: none; padding: 15px; margin-bottom: 18px; border: 1px solid #bbb; border-radius: var(--radius); background: var(--white); color: var(--black); font-weight: 700; }
.form-error { display: none; padding: 15px; margin-bottom: 18px; border: 1px solid #9a3030; border-radius: var(--radius); background: #fff4f4; color: #721c1c; font-weight: 700; }
.form-trap { width: 1px; height: 1px; position: absolute; left: -10000px; overflow: hidden; }
.privacy-field { margin-top: 2px; }
.privacy-check { display: flex; align-items: flex-start; gap: 10px; font-weight: 400 !important; line-height: 1.55; }
.privacy-check input { width: 17px; min-height: 17px; margin-top: 2px; flex: 0 0 17px; accent-color: var(--black); }
.privacy-check span { color: #444; font-size: 12px; }
.quote-form .button { width: 100%; min-height: 54px; }
.quote-form button:disabled {
  border-color: #777;
  background: #777;
  box-shadow: none;
  cursor: wait;
  opacity: .72;
  transform: none;
}

.site-footer { padding: 65px 0 24px; background: var(--black); color: var(--white); }
.site-footer .brand-copy strong { color: var(--white); }
.site-footer .brand-copy small { color: #aaa; }
.site-footer .brand-mark { border-color: var(--white); border-right-color: transparent; }
.site-footer .brand-mark::before { background: var(--white); }
.site-footer .brand-mark::after { border-left-color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr .8fr 1fr; gap: 45px; }
.footer-about { max-width: 330px; margin-top: 20px; color: #aaa; font-size: 13px; }
.footer-title { margin-bottom: 18px; color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #bbb; font-size: 13px; line-height: 1.6; }
.footer-office {
  padding: 22px;
  border: 1px solid #3b3b3b;
  border-radius: var(--radius);
  background: #1b1b1b;
}
.footer-contact {
  display: grid;
  gap: 3px;
  color: #e4e4e4;
  font-size: 13px;
  font-style: normal;
  line-height: 1.55;
}
.footer-contact strong { margin-bottom: 3px; color: var(--white); font-size: 14px; }
.footer-registration {
  margin-top: 17px;
  padding-top: 15px;
  display: grid;
  gap: 7px;
  border-top: 1px solid #3b3b3b;
  color: #e4e4e4;
  font-size: 12px;
  line-height: 1.5;
}
.footer-registration strong { color: var(--white); }
.footer-registration a { color: var(--white); overflow-wrap: anywhere; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { margin-top: 45px; padding-top: 22px; display: flex; justify-content: space-between; gap: 25px; border-top: 1px solid #333; color: #888; font-size: 11px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .nav-links {
    position: fixed;
    inset: 80px 0 auto;
    padding: 25px 24px 30px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links .button { width: 100%; }
  .menu-toggle { display: grid; }
  .services-reference .card-grid, .card-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .process-grid, .stats-band { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .process-grid::-webkit-scrollbar, .stats-band::-webkit-scrollbar { display: none; }
  .process-step { flex: 0 0 255px; scroll-snap-align: start; }
  .stat { flex: 0 0 205px; scroll-snap-align: start; }
  .snap-controls { margin-top: 12px; display: flex; justify-content: flex-end; gap: 8px; }
  .snap-button {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--black);
    border-radius: var(--radius);
    background: var(--black);
    color: var(--white);
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease;
  }
  .snap-button:hover { background: #303030; transform: translateY(-2px); }
}

@media (max-width: 800px) {
  .section { padding: 65px 0; }
  .hero { min-height: 600px; align-items: flex-start; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.9) 46%, rgba(255,255,255,.18) 100%),
      var(--home-hero-image) center / cover;
  }
  .hero-content { padding-top: 72px; }
  .image-brand-hero { top: auto; right: 14px; bottom: 14px; }
  .trade-feature { grid-template-columns: 1fr; gap: 8px; }
  .trade-feature-copy { min-height: 320px; }
  .trade-feature-image { min-height: 330px; }
  .trade-feature-copy.dark { order: 3; }
  .trade-feature-image:nth-of-type(3) { order: 4; }
  .values-layout, .commitment-layout, .split, .regions, .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .values-intro { position: static; }
  .commitment-image, .photo-card { height: 390px; min-height: 390px; }
  .commitment-copy { padding: 30px; }
  .reference-cta .container { align-items: flex-start; flex-direction: column; }
  .page-hero { padding: 82px 0 68px; }
  .image-collage { grid-template-columns: 1fr; grid-template-rows: 250px 200px 200px; }
  .image-collage img:first-child { grid-row: auto; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
}

@media (max-width: 700px) {
  .card-grid { grid-template-columns: 1fr; }
  .services-reference .card-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .container { width: min(100% - 28px, 1180px); }
  h1 { font-size: 31px; }
  h2 { font-size: 20px; }
  h3 { font-size: 17px; }
  p, .hero p { font-size: 14px; }
  .section { padding: 55px 0; }
  .reference-hero, .trade-feature, .services-reference, .values-reference, .commitment-reference, .reference-cta { margin: 6px; }
  .trade-feature-copy { min-height: 290px; padding: 38px 24px; align-items: center; text-align: center; }
  .trade-feature-image { min-height: 285px; }
  .services-reference .card-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .services-reference .service-card { min-height: 200px; padding: 20px 12px; }
  .service-icon { width: 50px; height: 50px; margin-bottom: 14px; }
  .service-icon svg { width: 26px; height: 26px; }
  .service-card p { font-size: 12px; line-height: 1.45; }
  .industry-grid, .check-list, .region-list { grid-template-columns: 1fr; }
  .value-row { grid-template-columns: 38px 1fr; }
  .commitment-image, .photo-card { height: 310px; min-height: 310px; }
  .commitment-copy, .quote-form, .cta-panel { padding: 25px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .brand-copy small { display: none; }
  .image-brand { left: 12px; top: 12px; }
  .image-brand-hero { left: auto; right: 12px; top: auto; bottom: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
