@font-face {
  font-family: "Inter";
  src: url("fonts/InterVariable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #181715;
  --muted: #66615b;
  --soft: #8b837a;
  --orange: #c43b12;
  --orange-dark: #a92f0b;
  --orange-bright: #f4511e;
  --orange-pale: #fff0e8;
  --cream: #faf6f0;
  --paper: #fffdf9;
  --sand: #f1e7db;
  --mist: #eaf0f2;
  --footer: #2b2723;
  --white: #ffffff;
  --line: #e8ded3;
  --line-strong: #d5c7b8;
  --green: #1b8f4d;
  --shadow: 0 18px 50px rgba(55, 34, 20, .09);
  --shadow-small: 0 8px 24px rgba(55, 34, 20, .08);
  --radius: 16px;
  --radius-small: 10px;
  --max: 1180px;
  --reading: 760px;
  --ease: 180ms ease;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--white);
  background: var(--ink);
  font-weight: 720;
  transform: translateY(-160%);
  transition: transform var(--ease);
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(244,81,30,.28);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  margin: 0 0 18px;
  font-weight: 750;
  line-height: 1.1;
  letter-spacing: -.035em;
  text-wrap: balance;
}

h1,
h2 {
  overflow-wrap: break-word;
  white-space: normal;
}
h1 { font-size: clamp(2.75rem, 5vw, 4.85rem); }
h2 { font-size: clamp(2rem, 4vw, 3.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
h4 { font-size: 1rem; letter-spacing: -.01em; }
p { margin: 0 0 20px; text-wrap: pretty; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.narrow { width: min(calc(100% - 40px), var(--reading)); margin-inline: auto; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.section-cream { background: var(--cream); }
.section-dark { color: var(--ink); background: var(--mist); }
.section-orange { color: var(--white); background: var(--orange); }

.eyebrow {
  display: none;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: .79rem;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-dark .eyebrow { color: var(--orange); }
.section-orange .eyebrow { color: #ffd7c5; }

.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.6;
}

.section-dark .lead { color: var(--muted); }
.section-orange .lead { color: rgba(255,255,255,.78); }
.section-dark .button-white {
  border-color: var(--orange);
  color: var(--white);
  background: var(--orange);
}
.section-dark .button-white:hover {
  border-color: var(--orange-dark);
  color: var(--white);
  background: var(--orange-dark);
}
.muted { color: var(--muted); }
.small { font-size: .9rem; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.kicker { font-size: .9rem; color: var(--muted); }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--orange);
  border-radius: 6px;
  color: var(--white);
  background: var(--orange);
  font-weight: 720;
  line-height: 1;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.button:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: var(--shadow-small);
  transform: translateY(-1px);
}

.button-outline { color: var(--ink); background: transparent; border-color: var(--line-strong); }
.button-outline:hover { color: var(--orange); background: var(--white); border-color: var(--orange); }
.button-white { color: var(--orange); background: var(--white); border-color: var(--white); }
.button-white:hover { color: var(--orange-dark); background: #fff7f3; border-color: #fff7f3; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 720;
  border-bottom: 1px solid currentColor;
  transition: gap var(--ease), color var(--ease);
}
.text-link:hover { gap: 13px; color: var(--orange-dark); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.path-links { column-gap: 34px; row-gap: 14px; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(232,222,211,.85);
  background: rgba(255,253,249,.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: 124px;
  height: auto;
}
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.nav-link, .nav-trigger {
  position: relative;
  border: 0;
  color: #37332f;
  background: transparent;
  font-size: .92rem;
  font-weight: 660;
  cursor: pointer;
}

.nav-link:hover, .nav-trigger:hover,
.nav-link.active, .nav-trigger.active { color: var(--orange); }
.nav-group { position: relative; }
.nav-trigger::after { content: "⌄"; margin-left: 6px; font-size: .8em; }
.dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: -18px;
  min-width: 270px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
}

.nav-group:hover .dropdown,
.nav-group.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 11px 12px;
  border-radius: 7px;
  font-size: .91rem;
  font-weight: 630;
}
.dropdown a:hover { color: var(--orange); background: var(--orange-pale); }
.header-quote { min-height: 42px; padding: 10px 17px; font-size: .9rem; }
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}
.menu-button span, .menu-button span::before, .menu-button span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform var(--ease), opacity var(--ease);
}
.menu-button span { position: relative; }
.menu-button span::before, .menu-button span::after { position: absolute; left: 0; content: ""; }
.menu-button span::before { top: -6px; }
.menu-button span::after { top: 6px; }
.menu-open .menu-button span { background: transparent; }
.menu-open .menu-button span::before { top: 0; transform: rotate(45deg); }
.menu-open .menu-button span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  z-index: 99;
  inset: 77px 0 0;
  overflow-y: auto;
  padding: 20px 24px 48px;
  background: var(--paper);
}
.mobile-menu.open { display: block; }
.mobile-menu > a, .mobile-menu summary {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 720;
  cursor: pointer;
}
.mobile-menu details a {
  display: block;
  padding: 12px 0 12px 16px;
  color: var(--muted);
}
.mobile-menu .button { width: 100%; margin-top: 22px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 88px;
  border-bottom: 1px solid var(--line);
}
.hero::after {
  position: absolute;
  z-index: -1;
  top: -240px;
  right: -220px;
  width: 620px;
  height: 620px;
  border: 1px solid #f1ddd2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,81,30,.07), rgba(244,81,30,0) 65%);
  content: "";
}
.hero-copy { max-width: 1080px; }
.hero h1 { max-width: none; }
.hero .lead { max-width: 760px; margin-bottom: 34px; }
.hero-compact { padding: 74px 0 66px; }
.hero-compact h1 { font-size: clamp(2.6rem, 5vw, 4.7rem); }
body[data-page="insights"] .hero-compact { padding: 52px 0 46px; }
.hero-centered { text-align: center; }
.hero-centered .hero-copy { max-width: var(--max); }
.hero-centered .hero-copy, .hero-centered .lead, .hero-centered .button-row { margin-inline: auto; }
.hero-centered .button-row { justify-content: center; }
body[data-page="home"] .hero h1 { font-size: clamp(3rem, 4.25vw, 4.15rem); }
body[data-page="home"] h2 { font-size: clamp(2rem, 3.3vw, 3rem); }

/* Give the homepage hero a real, approved China-side project visual. */
body[data-page="home"] .hero:first-child {
  isolation: isolate;
  display: flex;
  min-height: 620px;
  align-items: center;
  padding: 56px 0;
}
body[data-page="home"] .hero:first-child::before {
  display: none;
}
body[data-page="home"] .hero:first-child .hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 470px);
  grid-template-rows: 1fr auto auto auto 1fr;
  column-gap: 56px;
  align-content: center;
  align-items: center;
  max-width: var(--max);
  padding-right: 0;
  text-align: left;
}
.home-hero-proof {
  position: static;
  grid-column: 2;
  grid-row: 1 / 6;
  width: 100%;
  margin: 0;
  transform: none;
}
.home-hero-proof img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: var(--shadow-small);
}
.home-hero-proof figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.4;
  text-align: center;
}
body[data-page="home"] .hero:first-child h1 {
  grid-column: 1;
  grid-row: 2;
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1;
  white-space: normal;
  text-wrap: balance;
}
body[data-page="home"] .hero:first-child .lead,
body[data-page="home"] .hero:first-child .button-row { margin-inline: 0; }
body[data-page="home"] .hero:first-child .lead {
  grid-column: 1;
  grid-row: 3;
  max-width: 610px;
  margin-bottom: 30px;
  font-size: clamp(1.12rem, 1.45vw, 1.2rem);
  line-height: 1.68;
}
body[data-page="home"] .hero:first-child .button-row {
  grid-column: 1;
  grid-row: 4;
  width: 100%;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 14px;
  max-width: none;
  padding-left: 0;
}
body[data-page="home"] .hero:first-child .button {
  flex: 0 0 auto;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  font-size: .95rem;
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
  align-items: center;
  gap: 56px;
}
.hero-split > figure {
  width: 100%;
  max-width: 520px;
  justify-self: end;
}
.hero-split .lead {
  max-width: 620px;
  font-size: clamp(1.12rem, 1.45vw, 1.2rem);
  line-height: 1.68;
}
.hero-split h1,
.hero .split h1 { font-size: clamp(2.4rem, 3.7vw, 3.75rem); }

.trust-strip {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-item {
  display: flex;
  min-height: 138px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 26px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--orange-pale);
  box-shadow: var(--shadow-small);
  text-align: center;
}
.trust-item strong {
  display: block;
  color: var(--orange-dark);
  font-size: clamp(1.8rem, 2.5vw, 2.35rem);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.trust-item span {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.35;
}

.media-placeholder {
  display: flex;
  min-height: 330px;
  align-items: center;
  justify-content: center;
  padding: 32px;
  border: 1px dashed #c9b9aa;
  border-radius: var(--radius);
  color: #776c62;
  background:
    linear-gradient(135deg, rgba(244,81,30,.06), transparent 55%),
    repeating-linear-gradient(-45deg, #faf6f0, #faf6f0 12px, #fffdf9 12px, #fffdf9 24px);
  text-align: center;
}
.media-placeholder span { max-width: 260px; font-size: .92rem; font-weight: 650; }
.media-placeholder.tall { min-height: 470px; }
.media-placeholder.wide { min-height: 280px; aspect-ratio: 16/8; }
.media-placeholder.short { min-height: 210px; }
.media-placeholder.dark {
  border-color: rgba(255,255,255,.25);
  color: rgba(255,255,255,.72);
  background: repeating-linear-gradient(-45deg, #272421, #272421 12px, #211e1b 12px, #211e1b 24px);
}

.media-photo {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #eee7df;
}
.media-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
.media-photo.tall { min-height: 470px; }
.media-photo.wide { min-height: 280px; aspect-ratio: 16 / 8; }
.media-photo.short { min-height: 210px; }
.media-photo.contain {
  padding: 10px;
  background: var(--white);
}
.media-photo.contain img { object-fit: contain; }
.media-photo.position-top img { object-position: center top; }
.media-photo.position-upper img { object-position: center 34%; }
.media-photo.position-left img { object-position: left center; }
.inspection-hero-photo {
  min-height: 0;
  aspect-ratio: 4 / 3;
}
.inspection-hero-photo img { object-position: center 54%; }

.case-collage {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--radius);
}
.case-collage figure {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #eee7df;
}
.case-collage figure:first-child { grid-row: 1 / 3; }
.case-collage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cases-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #cedde5;
  background:
    radial-gradient(circle at 61% 17%, rgba(111, 189, 235, .34), transparent 24%),
    radial-gradient(circle at 34% 86%, rgba(127, 199, 238, .25), transparent 28%),
    linear-gradient(118deg, #edf4f7 0%, #e7f1f6 58%, #f4f8fa 100%);
}
.cases-hero::before {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: radial-gradient(rgba(31, 58, 72, .28) .55px, transparent .55px);
  background-size: 5px 5px;
  content: "";
  pointer-events: none;
}
.cases-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 600px;
  grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
  gap: 52px;
  align-items: center;
}
.cases-hero-copy { position: relative; z-index: 3; padding: 62px 0; }
.cases-hero-kicker {
  margin: 0 0 20px;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cases-hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 3.65vw, 3.8rem);
  line-height: .98;
  letter-spacing: -.055em;
  overflow-wrap: break-word;
  white-space: normal;
}
.cases-hero-copy > p:last-child {
  max-width: 530px;
  margin: 30px 0 0;
  color: #53656f;
  font-size: 1.08rem;
  line-height: 1.75;
  text-wrap: pretty;
}
.cases-polaroid-board {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 38px 2px 32px;
}
.case-polaroid {
  position: relative;
  z-index: 1;
  min-width: 0;
  width: auto;
  margin: 0;
  padding: 9px 9px 42px;
  border: 1px solid rgba(96, 113, 122, .3);
  background: #fff;
  box-shadow: 0 12px 28px rgba(39, 69, 83, .14);
  transform-origin: center;
}
.case-polaroid::before {
  position: absolute;
  top: -7px;
  right: 20px;
  width: 10px;
  height: 36px;
  border: 2px solid rgba(91, 102, 108, .48);
  border-radius: 7px;
  content: "";
}
.case-polaroid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.case-polaroid figcaption {
  position: absolute;
  right: 12px;
  bottom: 13px;
  left: 12px;
  overflow: hidden;
  color: #465760;
  font-size: .72rem;
  font-weight: 760;
  letter-spacing: .045em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.case-polaroid-sourcing { transform: rotate(-.8deg) translateY(7px); }
.case-polaroid-evidence { transform: rotate(.8deg) translateY(-5px); }
.case-polaroid-check { transform: rotate(.6deg) translateY(3px); }
.case-polaroid-export { transform: rotate(-.6deg) translateY(-3px); }

.photo-gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: repeat(3, minmax(140px, 1fr));
  gap: 10px;
  min-height: 590px;
  margin: 32px 0 52px;
}
.photo-gallery figure {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) - 3px);
  background: #eee7df;
}
.photo-gallery figure:first-child { grid-row: 1 / 4; }
.photo-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  align-items: center;
  gap: 56px;
}
.split:has(> figure:first-child) { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); }
.split.wide-copy { grid-template-columns: minmax(0, 1.14fr) minmax(0, .86fr); }
.split.wide-media { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
.split-top { align-items: start; }
.split > div { min-width: 0; }
.split > div > .lead {
  font-size: clamp(1.12rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}
.split > .media-photo,
.split > .shipping-loading-gallery {
  width: 100%;
  max-width: 540px;
  justify-self: center;
}

.service-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.service-index {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--orange);
  font-weight: 780;
}
.service-row h3 { margin: 0 0 7px; font-size: 1.25rem; }
.service-row p { margin: 0; color: var(--muted); }
.service-row .text-link { white-space: nowrap; }

.founder {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 68px;
  align-items: start;
}
.founder > * { min-width: 0; }
.founder-profile .media-placeholder,
.founder-profile .media-photo { min-height: 0; aspect-ratio: 4 / 5; }
.founder-profile .founder-photo { aspect-ratio: 3 / 4; }
.founder-content {
  display: flex;
  align-self: stretch;
  flex-direction: column;
  padding-top: 8px;
}
.founder-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
  max-width: none;
  margin-top: 18px;
  margin-bottom: 30px;
}
.founder-story p { margin: 0; }
.founder-story strong { color: var(--orange); font-weight: inherit; }
.founder-quote {
  width: 100%;
  max-width: none;
  margin: auto 0 0;
  padding-left: 24px;
  border-left: 3px solid var(--orange);
  color: var(--ink);
  font-size: clamp(1.25rem, 2.1vw, 1.65rem);
  font-weight: 720;
  line-height: 1.4;
}
.role { color: var(--orange); font-weight: 720; }
.about-proof-copy h2 { white-space: normal; }

body[data-page="about"] .about-journey-copy p,
body[data-page="about"] .about-company-intro > p,
body[data-page="about"] .company-focus-panel > p,
body[data-page="about"] .about-section-head > p,
body[data-page="about"] .about-unique-grid article > p,
body[data-page="about"] .about-proof-copy > p,
body[data-page="about"] .quote-box p {
  font-size: 1.06rem;
  line-height: 1.72;
}

.about-journey-hero { padding: 82px 0 88px; }
.about-journey-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, .92fr);
  align-items: center;
  gap: 56px;
}
.about-journey-copy { position: relative; z-index: 1; min-width: 0; }
.about-journey-copy h1 {
  max-width: 100%;
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 3.2vw, 3.1rem);
}
.about-journey-copy > .lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--ink);
  font-weight: 560;
}
.about-journey-story { max-width: 680px; }
.about-journey-story p { margin: 0 0 15px; color: var(--muted); }
.about-journey-story p:last-child { margin-bottom: 0; }
.about-journey-collage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 560px;
  justify-self: end;
}
.journey-photo-item {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  margin: 0;
}
.journey-photo,
.journey-photo-placeholder {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}
.journey-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}
.journey-photo-yard img { object-position: center 50%; }
.journey-photo-inspection img { object-position: center 40%; }
.journey-photo-supplier img { object-position: center 43%; }
.journey-photo-meeting img { object-position: center 48%; }
.journey-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 22px 18px;
  border-style: dashed;
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(244,81,30,.055), transparent 54%),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.42), rgba(255,255,255,.42) 13px, rgba(250,246,240,.82) 13px, rgba(250,246,240,.82) 26px);
  text-align: center;
}
.journey-photo-placeholder span {
  color: var(--orange);
  font-size: .68rem;
  font-weight: 780;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.journey-photo-placeholder strong { color: var(--ink); font-size: .84rem; line-height: 1.45; }
.journey-photo-placeholder small { color: var(--soft); font-size: .7rem; line-height: 1.4; }
.journey-photo-item figcaption { height: 58px; padding: 12px 2px 0; }
.journey-photo-item figcaption span {
  display: block;
  margin-bottom: 3px;
  color: var(--orange);
  font-size: .64rem;
  font-weight: 780;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.journey-photo-item figcaption strong { display: block; font-size: .78rem; line-height: 1.4; }

.about-company-section { padding: 88px 0; }
.about-company-intro {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}
.about-company-intro h2 { margin-bottom: 12px; font-size: clamp(2.3rem, 4vw, 3.4rem); }
.about-company-intro .lead { margin: 0 auto; }
.about-company-board {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.company-focus-panel,
.company-stat-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.company-focus-panel {
  grid-row: 1 / -1;
  min-height: 250px;
  padding: 34px;
  border-color: #ddcbbb;
  color: var(--ink);
  background: var(--sand);
}
.company-focus-panel h3 {
  max-width: 520px;
  margin: 22px 0 16px;
  color: var(--ink);
  font-size: clamp(1.8rem, 2.8vw, 2.35rem);
}
.company-focus-panel p { max-width: 560px; margin: 0; color: var(--muted); }
.company-label {
  display: block;
  color: var(--orange);
  font-size: .72rem;
  font-weight: 780;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.company-method-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line-strong);
  color: var(--ink);
  font-size: .84rem;
  font-weight: 720;
}
.company-method-line b { color: var(--orange); }
.company-stat-panel {
  display: grid;
  grid-template-columns: 54px minmax(112px, .55fr) minmax(0, 1fr);
  gap: 22px;
  min-height: 0;
  align-items: center;
  padding: 22px 26px;
  background: var(--white);
  box-shadow: var(--shadow-small);
}
.company-stat-panel::before {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background-color: var(--orange-pale);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 28px;
  content: "";
}
.company-stat-panel:nth-child(2)::before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGcgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjYTkyZjBiIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMiI+PHBhdGggZD0ibTIxIDgtMiAyLTEuNS0zLjdBMiAyIDAgMCAwIDE1LjY0NiA1SDguNGEyIDIgMCAwIDAtMS45MDMgMS4yNTdMNSAxMCAzIDhtNCA2aC4wMU0xNyAxNGguMDEiLz48cmVjdCB3aWR0aD0iMTgiIGhlaWdodD0iOCIgeD0iMyIgeT0iMTAiIHJ4PSIyIi8+PHBhdGggZD0iTTUgMTh2Mm0xNC0ydjIiLz48L2c+PC9zdmc+");
}
.company-stat-panel:nth-child(3)::before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGcgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjYTkyZjBiIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMiI+PHBhdGggZD0iTTE1IDIxdi01YTEgMSAwIDAgMC0xLTFoLTRhMSAxIDAgMCAwLTEgMXY1bTguNzc0LTEwLjY5YTEuMTIgMS4xMiAwIDAgMC0xLjU0OSAwIDIuNSAyLjUgMCAwIDEtMy40NTEgMCAxLjEyIDEuMTIgMCAwIDAtMS41NDggMCAyLjUgMi41IDAgMCAxLTMuNDUyIDAgMS4xMiAxLjEyIDAgMCAwLTEuNTQ5IDAgMi41IDIuNSAwIDAgMS0zLjc3LTMuMjQ4bDIuODg5LTQuMTg0QTIgMiAwIDAgMSA3IDJoMTBhMiAyIDAgMCAxIDEuNjUzLjg3M2wyLjg5NSA0LjE5MmEyLjUgMi41IDAgMCAxLTMuNzc0IDMuMjQ0Ii8+PHBhdGggZD0iTTQgMTAuOTVWMTlhMiAyIDAgMCAwIDIgMmgxMmEyIDIgMCAwIDAgMi0ydi04LjA1Ii8+PC9nPjwvc3ZnPg==");
}
.company-stat-panel:nth-child(4)::before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGcgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjYTkyZjBiIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMiI+PHBhdGggZD0iTTIxLjU0IDE1SDE3YTIgMiAwIDAgMC0yIDJ2NC41NE03IDMuMzRWNWEzIDMgMCAwIDAgMyAzIDIgMiAwIDAgMSAyIDJjMCAxLjEuOSAyIDIgMmEyIDIgMCAwIDAgMi0yYzAtMS4xLjktMiAyLTJoMy4xN00xMSAyMS45NVYxOGEyIDIgMCAwIDAtMi0yIDIgMiAwIDAgMS0yLTJ2LTFhMiAyIDAgMCAwLTItMkgyLjA1Ii8+PGNpcmNsZSBjeD0iMTIiIGN5PSIxMiIgcj0iMTAiLz48L2c+PC9zdmc+");
}
.company-stat-panel strong {
  display: block;
  margin: 0;
  color: var(--orange-dark);
  font-size: clamp(2.25rem, 3.5vw, 3.15rem);
  font-variant-numeric: tabular-nums;
  line-height: .95;
  letter-spacing: -.045em;
}
.company-stat-panel p { margin: 0; color: var(--muted); line-height: 1.5; text-wrap: pretty; }

.about-section-head {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}
.about-section-head .lead { margin-inline: auto; }
.about-unique-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}
.about-unique-grid article {
  grid-column: span 2;
  min-height: 100%;
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.about-unique-grid article:nth-child(4) { grid-column: 2 / span 2; }
.about-unique-grid article:nth-child(5) { grid-column: 4 / span 2; }
.about-unique-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 780;
  letter-spacing: .08em;
}
.about-unique-grid h3 { margin-bottom: 12px; font-size: 1.25rem; }
.about-unique-grid p { margin: 0; color: var(--muted); font-size: 1rem; }

.about-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(400px, .96fr);
  align-items: center;
  gap: 56px;
}
.about-proof-grid-reverse { grid-template-columns: minmax(400px, .96fr) minmax(0, 1.04fr); }
.about-proof-copy { max-width: 560px; }
.about-proof-copy .lead { margin-bottom: 18px; }
.about-asset-placeholder {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(244,81,30,.055), transparent 54%),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.5), rgba(255,255,255,.5) 14px, rgba(250,246,240,.72) 14px, rgba(250,246,240,.72) 28px);
}
.about-asset-placeholder .asset-status {
  margin-bottom: 18px;
  color: var(--orange);
  font-size: .76rem;
  font-weight: 780;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.about-asset-placeholder strong { color: var(--ink); font-size: clamp(1.4rem, 2.3vw, 2rem); line-height: 1.2; }
.about-asset-placeholder ul { margin: 22px 0; padding-left: 20px; }
.about-asset-placeholder li { margin: 5px 0; }
.about-asset-placeholder small { max-width: 520px; color: var(--soft); }
.about-license-placeholder { min-height: 500px; }

.about-warehouse-section { padding: 80px 0; }
.about-warehouse-section .about-proof-grid {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 44px;
  padding: 48px;
  border: 1px solid #d5e1e7;
  border-radius: 24px;
  background: #eef4f7;
}
.about-warehouse-section .about-proof-copy { max-width: 520px; }
.about-warehouse-section .about-proof-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 3.2vw, 3.25rem);
  text-wrap: balance;
}
.about-warehouse-section .about-proof-copy p { text-wrap: pretty; }
.about-warehouse-intro { margin-bottom: 24px; }
.warehouse-capabilities {
  margin: 0;
  padding: 0;
  border-top: 1px solid #cedde5;
  list-style: none;
}
.warehouse-capabilities li {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid #cedde5;
}
.warehouse-capabilities strong {
  color: var(--ink);
  font-size: .9rem;
  line-height: 1.45;
}
.warehouse-capabilities span {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.55;
  text-wrap: pretty;
}
.about-warehouse-board {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 10px 0;
}
.about-warehouse-polaroid {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 9px 9px 38px;
  border: 1px solid rgba(96, 113, 122, .3);
  background: #fff;
  box-shadow: 0 10px 22px rgba(39, 69, 83, .13);
  transform-origin: center;
}
.about-warehouse-polaroid::before {
  position: absolute;
  top: -7px;
  right: 20px;
  width: 10px;
  height: 36px;
  border: 2px solid rgba(91, 102, 108, .48);
  border-radius: 7px;
  content: "";
}
.about-warehouse-polaroid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.about-warehouse-polaroid figcaption {
  position: absolute;
  right: 12px;
  bottom: 13px;
  left: 12px;
  overflow: hidden;
  color: #465760;
  font-size: .69rem;
  font-weight: 760;
  letter-spacing: .07em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.about-warehouse-polaroid-main {
  transform: rotate(-1deg);
}
.about-warehouse-polaroid-main img { object-position: 53% center; }
.about-warehouse-polaroid-equipment {
  transform: rotate(1deg) translateY(-7px);
}
.about-warehouse-polaroid-equipment img { object-position: center 56%; }
.about-warehouse-polaroid-loading {
  transform: rotate(.8deg) translateY(4px);
}
.about-warehouse-polaroid-loading img { object-position: center 62%; }
.about-warehouse-polaroid-transfer {
  transform: rotate(-1deg) translateY(-3px);
}

.about-license-card {
  overflow: hidden;
  margin: 0;
  padding: 22px 22px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-small);
}
.about-license-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
}
.about-license-card figcaption {
  padding: 14px 4px 0;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 680;
}

.shipping-loading-gallery {
  display: grid;
  min-height: 470px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.shipping-loading-gallery figure {
  min-width: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}
.shipping-loading-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat { padding: 34px 28px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; margin-bottom: 7px; font-size: clamp(1.4rem, 2vw, 1.8rem); line-height: 1.2; }
.stat span { color: var(--muted); font-size: .9rem; }

.process-preview {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 44px;
  border-top: 1px solid var(--line-strong);
}
.process-preview article { position: relative; padding: 30px 24px 0 0; }
.process-preview article::before {
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}
.process-preview b { display: block; margin-bottom: 7px; font-size: .88rem; color: var(--orange); }
.process-preview span { font-weight: 700; }

.case-feature {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-small);
}
.case-feature .media-placeholder { min-height: 420px; border: 0; border-right: 1px dashed var(--line-strong); border-radius: 0; }
.case-feature .media-photo { min-height: 420px; border: 0; border-right: 1px solid var(--line); border-radius: 0; }
.case-copy { padding: 50px; }
.case-metric {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 28px 0;
  background: var(--line);
}
.case-metric div { padding: 18px; background: var(--cream); }
.case-metric strong { display: block; color: var(--orange); font-size: 1.35rem; }
.case-metric span { color: var(--muted); font-size: .82rem; }

.home-section-heading {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
body[data-page="home"] .home-section-heading h2 {
  margin: 0;
  text-wrap: balance;
}
.home-case-section {
  padding: 28px 0 88px;
  background: #f1ece4;
}
.home-case-heading { margin-bottom: 28px; }
.home-case-feature {
  display: grid;
  min-height: 480px;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-small);
}
.home-case-media {
  height: 100%;
  min-height: 480px;
  overflow: hidden;
  margin: 0;
  border-right: 1px solid var(--line);
  background: #e8e1d9;
}
.home-case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home-case-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 48px 54px;
}
.home-case-heading-group {
  display: grid;
  gap: 16px;
}
.home-case-label {
  display: block;
  margin: 0;
  color: var(--orange);
  font-size: .74rem;
  font-weight: 780;
  letter-spacing: .11em;
  text-transform: uppercase;
}
body[data-page="home"] .home-case-content h2 {
  margin: 0;
  font-size: clamp(2.15rem, 2.55vw, 2.55rem);
  line-height: 1.02;
  text-wrap: pretty;
  white-space: normal;
}
.home-case-content h2 a:hover { color: var(--orange-dark); }
.home-case-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}
.home-case-fact {
  display: flex;
  min-width: 0;
  min-height: 102px;
  flex-direction: column;
  justify-content: center;
  padding: 20px 22px;
  background: #f8f4ee;
}
.home-case-fact-primary { background: var(--orange-pale); }
.home-case-fact strong {
  display: block;
  margin-bottom: 6px;
  color: var(--orange-dark);
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  letter-spacing: -.02em;
  line-height: 1.15;
  white-space: normal;
}
.home-case-fact span {
  display: block;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.4;
}
.home-case-button {
  align-self: center;
  min-height: 52px;
  border-color: var(--orange);
  padding: 14px 22px;
  color: var(--white);
  background: var(--orange);
  font-size: 1rem;
}

.quote-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 54px 60px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: var(--sand);
}
.quote-box > * { min-width: 0; }
.quote-box h2 { max-width: 760px; margin-bottom: 12px; font-size: clamp(1.9rem, 3vw, 3rem); }
.quote-box p { max-width: 700px; margin: 0; color: var(--muted); }
.quote-box .button-white {
  border-color: var(--orange);
  color: var(--white);
  background: var(--orange);
}
.quote-box .button-white:hover {
  border-color: var(--orange-dark);
  color: var(--white);
  background: var(--orange-dark);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 5px 20px rgba(55,34,20,.04);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
a.card:hover {
  border-color: #d6b39f;
  box-shadow: var(--shadow-small);
  transform: translateY(-3px);
}
.card .media-placeholder { min-height: 220px; border: 0; border-bottom: 1px dashed var(--line-strong); border-radius: 0; }
.card .media-photo { min-height: 220px; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; }
.card-body { display: flex; flex: 1; flex-direction: column; padding: 28px; }
.card-body h2,
.card-body h3 { margin-bottom: 12px; font-size: 1.35rem; }
.card-body p { color: var(--muted); }
.card-body .text-link { align-self: flex-start; }
.card-footer,
.article-card-footer {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 22px;
}
.card-footer time,
.article-card-footer time {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: .82rem;
  font-variant-numeric: tabular-nums;
}
.tag {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: .75rem;
  font-weight: 780;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-groups { display: grid; gap: 52px; margin-top: 46px; }
.brand-group h3 { margin-bottom: 22px; font-size: 1.2rem; letter-spacing: -.02em; }
.brand-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.brand-tile {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #38332f;
  background: var(--white);
  font-size: .9rem;
  font-weight: 780;
  text-align: left;
}
.brand-tile img {
  width: 52px;
  height: 40px;
  flex: 0 0 52px;
  object-fit: contain;
}
.brand-tile img.brand-logo-wide {
  width: 72px;
  height: 34px;
  flex-basis: 72px;
}
.brand-tile span {
  line-height: 1.2;
}

.brand-request {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
  padding: 24px 28px;
  border: 1px solid #f0b79e;
  border-radius: var(--radius);
  background: var(--orange-pale);
}
.brand-request-mark {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  background: var(--white);
  font-size: 1.45rem;
  font-weight: 760;
}
.brand-request p {
  max-width: 720px;
  margin: 0;
  color: #4f4a45;
}
.brand-request .text-link {
  white-space: nowrap;
}

.compare-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
.compare-row:last-child { border-bottom: 0; }
.compare-row > div { padding: 20px; border-right: 1px solid var(--line); }
.compare-row > div:last-child { border-right: 0; }
.compare-row.header { color: var(--white); background: var(--ink); font-weight: 720; }
.compare-row:not(.header) > div:first-child { font-weight: 720; background: var(--cream); }

.comparison-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.comparison-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}
.comparison-table th,
.comparison-table td {
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.comparison-table tr > :last-child { border-right: 0; }
.comparison-table tbody tr:last-child > * { border-bottom: 0; }
.comparison-table thead th { color: var(--white); background: var(--ink); font-weight: 720; }
.comparison-table tbody th { background: var(--cream); font-weight: 720; }

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vehicle-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-small);
}
.vehicle-card .media-placeholder { min-height: 215px; border: 0; border-bottom: 1px dashed var(--line-strong); border-radius: 0; }
.vehicle-card .media-photo { min-height: 215px; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; }
.vehicle-card .vehicle-photo { min-height: 0; aspect-ratio: 4 / 3; margin: 0; }
.vehicle-card .vehicle-photo img { min-height: 0; }
.vehicle-content { display: flex; flex: 1; flex-direction: column; padding: 26px; }
.vehicle-content h3 { margin-bottom: 10px; }
.vehicle-content ul { margin: 4px 0 24px; padding: 0; list-style: none; }
.vehicle-content li { position: relative; margin: 8px 0; padding-left: 20px; color: var(--muted); font-size: .9rem; }
.vehicle-content li::before { position: absolute; left: 0; color: var(--orange); content: "✓"; }
.vehicle-specs li { display: grid; grid-template-columns: minmax(92px, .8fr) 1.5fr; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.vehicle-specs li:first-child { border-top: 1px solid var(--line); }
.vehicle-specs li::before { content: none; }
.vehicle-specs strong { color: var(--ink); font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }
.vehicle-specs span { line-height: 1.45; }
.vehicle-content .button { width: 100%; margin-top: auto; }
.vehicle-content .vehicle-model-link { align-self: flex-start; margin-top: auto; }
.vehicle-card.open-card {
  justify-content: center;
  color: var(--white);
  background: var(--ink);
}
.vehicle-card.open-card .vehicle-content { min-height: 100%; justify-content: center; padding: 42px; }
.vehicle-card.open-card p { color: rgba(255,255,255,.68); }

.inspection-layout {
  display: block;
}
.inspection-level-intro { max-width: 900px; }
.inspection-level-intro .lead { max-width: 830px; }
.inspection-levels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}
.inspection-level {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.inspection-level h3 { margin: 18px 0 20px; font-size: 1.55rem; line-height: 1.08; }
.inspection-level p { margin: 0; }
.inspection-level.featured { border-color: #f2b89f; background: var(--orange-pale); }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin: 22px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 22px; color: var(--muted); }
.check-list li::before { position: absolute; left: 0; color: var(--orange); content: "✓"; font-weight: 800; }

.advanced-verification {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .9fr) minmax(0, 1fr);
  align-items: center;
  gap: 44px;
  margin-top: 50px;
}
.verification-column { display: grid; gap: 46px; }
.verification-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: start;
  gap: 18px;
}
.verification-icon {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid #bccbb8;
  border-radius: 11px;
  color: #334c38;
  background: #fbfdf9;
}
.verification-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
.verification-item h3 { margin-bottom: 7px; font-size: 1.08rem; letter-spacing: -.02em; }
.verification-item p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.55; }
.verification-report { min-height: 480px; }
.verification-note {
  max-width: 760px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: .88rem;
  text-align: center;
}
.verification-note::before { margin-right: 8px; color: #526f58; content: "ⓘ"; }

.report {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.report-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--ink);
}
.report-head strong { color: var(--orange); }
.report-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 22px; }
.report-item { padding: 16px; border: 1px solid var(--line); border-radius: 8px; }
.report-item span { display: block; color: var(--muted); font-size: .82rem; }
.report-item b { display: block; margin-top: 4px; }
.report-risk { margin-top: 22px; padding: 20px; border-left: 4px solid var(--orange); background: var(--orange-pale); }

.inspection-disclaimer {
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: start;
  gap: 28px;
  padding: 34px 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.inspection-disclaimer-mark {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid #f0ad90;
  border-radius: 50%;
  color: var(--orange);
  background: var(--orange-pale);
  font-size: 1.3rem;
  font-weight: 800;
}
.inspection-disclaimer h2 { margin-bottom: 10px; font-size: clamp(1.55rem, 2.4vw, 2.2rem); }
.inspection-disclaimer p { max-width: 900px; margin-bottom: 8px; }
.inspection-disclaimer p:last-child { margin-bottom: 0; }

.inspection-request-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.inspection-request-step {
  min-height: 100%;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
}
.inspection-request-step:last-child { border-right: 0; }
.inspection-request-step > span {
  display: block;
  margin-bottom: 22px;
  color: var(--orange);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.inspection-request-step h3 { margin-bottom: 10px; font-size: 1.18rem; }
.inspection-request-step p { margin: 0; color: var(--muted); font-size: .92rem; }
.inspection-request-action { margin-top: 30px; }

.scope-table { border-top: 1px solid var(--line-strong); }
.scope-row {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 32px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.scope-row strong { font-size: 1.08rem; }
.scope-row p { margin: 0; color: var(--muted); }
.market-fit-layout {
  grid-template-columns: .9fr 1.1fr;
  align-items: stretch;
  gap: 72px;
}
.market-steps {
  align-self: stretch;
}
.market-steps .scope-row {
  grid-template-columns: 1fr;
  gap: 9px;
  padding: 31px 0;
}
.market-steps .scope-row:first-child { padding-top: 4px; }
.market-steps .scope-row strong { font-size: 1.18rem; }
.market-steps .scope-row p { max-width: 52ch; }
.market-fit-title {
  margin-bottom: 54px;
  font-size: clamp(2rem, 3.45vw, 3.25rem);
  white-space: normal;
}
.market-fit-layout .media-placeholder {
  min-height: 520px;
}
.market-fit-layout .media-photo { min-height: 520px; }
.scope-index {
  display: block;
  margin-bottom: 5px;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 800;
}
.included { color: var(--green); font-size: .8rem; font-weight: 780; letter-spacing: .06em; text-transform: uppercase; }
.optional { color: var(--orange); font-size: .8rem; font-weight: 780; letter-spacing: .06em; text-transform: uppercase; }

.handoff {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
  margin-top: 46px;
}
.handoff-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.handoff-arrow { color: var(--orange); font-size: 1.8rem; }

.shipping-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.shipping-card { position: relative; padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.shipping-card h3 { font-size: 1.7rem; }
.shipping-card ul { margin: 22px 0 0; padding-left: 20px; color: var(--muted); }
.route {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid #d5e1e5;
  border-radius: var(--radius);
  background: #d5e1e5;
}
.route-step { padding: 34px 26px; background: var(--white); }
.route-step b { display: block; margin-bottom: 24px; color: var(--orange); font-size: .82rem; }
.route-step strong { display: block; margin-bottom: 8px; }
.route-step span { color: var(--muted); font-size: .9rem; }

.home-start-section {
  padding: 72px 0;
  background: #f7f3ed;
}
.home-start-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.home-start-card {
  position: relative;
  display: grid;
  min-height: 330px;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 1fr);
  align-items: center;
  overflow: hidden;
  padding: 36px 24px 30px 38px;
  border: 1px solid rgba(213,199,184,.78);
  border-radius: var(--radius);
}
.home-start-card-sourcing { background: #fff0ec; }
.home-start-card-inspection { background: #edf4f3; }
.home-start-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}
body[data-page="home"] .home-start-card h2 {
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 2.15vw, 2.15rem);
  line-height: 1.06;
  white-space: normal;
  text-wrap: balance;
}
.home-start-card p {
  max-width: 34ch;
  margin-bottom: 24px;
  color: #5d5a55;
  font-size: .98rem;
  line-height: 1.55;
}
.home-start-illustration {
  display: flex;
  height: 100%;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  min-width: 0;
  margin: 0;
}
.home-start-illustration img {
  display: block;
  width: 100%;
  max-width: 340px;
  height: 100%;
  max-height: 280px;
  object-fit: contain;
  object-position: center;
}

.two-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 42px; }
.path {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.path b { display: block; margin-bottom: 8px; color: var(--orange); }
.path h3 { font-size: 1.45rem; }

.full-process { margin-top: 52px; }

/* Center inner-page section headings within the space before their content. */
body:not([data-page="home"]) .section > .container > .center:first-child,
body:not([data-page="home"]) .section > .container > .about-section-head:first-child,
body:not([data-page="home"]) .section-sm > .container > .center:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body:not([data-page="home"]) .section > .container > .center:first-child,
body:not([data-page="home"]) .section > .container > .about-section-head:first-child {
  min-height: 112px;
  margin-top: -58px;
  margin-bottom: 36px;
}
body:not([data-page="home"]) .section-sm > .container > .center:first-child {
  min-height: 84px;
  margin-top: -38px;
  margin-bottom: 30px;
}
body:not([data-page="home"]) .section > .container > .center:first-child > :last-child,
body:not([data-page="home"]) .section > .container > .about-section-head:first-child > :last-child,
body:not([data-page="home"]) .section-sm > .container > .center:first-child > :last-child {
  margin-bottom: 0;
}
body:not([data-page="home"]) .section > .container > .center:first-child + *,
body:not([data-page="home"]) .section > .container > .about-section-head:first-child + *,
body:not([data-page="home"]) .section-sm > .container > .center:first-child + * {
  margin-top: 0;
}

/* Keep the five service pages compact: one centered module title, no subtitle. */
:is(
  body[data-page="new-vehicles"],
  body[data-page="used-vehicles"],
  body[data-page="inspection"],
  body[data-page="buying-export"],
  body[data-page="shipping"]
) main > :is(.section, .section-sm):not(.hero) {
  padding-block: 84px;
}
:is(
  body[data-page="new-vehicles"],
  body[data-page="used-vehicles"],
  body[data-page="inspection"],
  body[data-page="buying-export"],
  body[data-page="shipping"]
) main > .section-sm:not(.hero) {
  padding-block: 64px;
}
:is(
  body[data-page="new-vehicles"],
  body[data-page="used-vehicles"],
  body[data-page="inspection"],
  body[data-page="buying-export"],
  body[data-page="shipping"]
) main > :is(.section, .section-sm):not(.hero) > .container > h2 {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
  text-wrap: balance;
}
:is(
  body[data-page="new-vehicles"],
  body[data-page="used-vehicles"],
  body[data-page="inspection"],
  body[data-page="buying-export"],
  body[data-page="shipping"]
) main > :is(.section, .section-sm):not(.hero) > .container :is(.center:first-child, .split > div, .inspection-level-intro) > h2 {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
  text-wrap: balance;
}
:is(
  body[data-page="new-vehicles"],
  body[data-page="used-vehicles"],
  body[data-page="inspection"],
  body[data-page="buying-export"],
  body[data-page="shipping"]
) main > :is(.section, .section-sm):not(.hero) > .container.split > div > h2:first-of-type {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
  text-wrap: balance;
}
:is(
  body[data-page="new-vehicles"],
  body[data-page="used-vehicles"],
  body[data-page="inspection"],
  body[data-page="buying-export"],
  body[data-page="shipping"]
) main > :is(.section, .section-sm):not(.hero) > .container > h2 + .lead {
  display: none;
}
:is(
  body[data-page="new-vehicles"],
  body[data-page="used-vehicles"],
  body[data-page="inspection"],
  body[data-page="buying-export"],
  body[data-page="shipping"]
) main > :is(.section, .section-sm):not(.hero) > .container :is(.center:first-child, .inspection-level-intro) > h2 + .lead {
  display: none;
}
:is(
  body[data-page="new-vehicles"],
  body[data-page="used-vehicles"],
  body[data-page="inspection"],
  body[data-page="buying-export"],
  body[data-page="shipping"]
) main > :is(.section, .section-sm):not(.hero) > .container > .center:first-child {
  min-height: 0;
  margin: 0;
}
:is(
  body[data-page="new-vehicles"],
  body[data-page="used-vehicles"],
  body[data-page="inspection"],
  body[data-page="buying-export"],
  body[data-page="shipping"]
) main > :is(.section, .section-sm):not(.hero) > .container > .center:first-child > h2 {
  margin-bottom: 0;
}
:is(
  body[data-page="new-vehicles"],
  body[data-page="used-vehicles"],
  body[data-page="inspection"],
  body[data-page="buying-export"],
  body[data-page="shipping"]
) main > :is(.section, .section-sm):not(.hero) > .container.split > div > h2:first-of-type {
  margin-bottom: 28px;
}
:is(
  body[data-page="new-vehicles"],
  body[data-page="used-vehicles"],
  body[data-page="inspection"],
  body[data-page="buying-export"],
  body[data-page="shipping"]
) .inspection-level-intro {
  max-width: none;
  text-align: center;
}
:is(
  body[data-page="new-vehicles"],
  body[data-page="used-vehicles"],
  body[data-page="inspection"],
  body[data-page="buying-export"],
  body[data-page="shipping"]
) .market-fit-title {
  margin-bottom: 38px;
  text-align: center;
}

/* Give every Service module title a real vertical center line. */
:is(
  body[data-page="new-vehicles"],
  body[data-page="used-vehicles"],
  body[data-page="inspection"],
  body[data-page="buying-export"],
  body[data-page="shipping"]
) main > .section:not(.hero) > .container > h2,
:is(
  body[data-page="new-vehicles"],
  body[data-page="used-vehicles"],
  body[data-page="inspection"],
  body[data-page="buying-export"],
  body[data-page="shipping"]
) main > .section:not(.hero) > .container > :is(.center:first-child, .inspection-level-intro) {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  margin-top: -56px;
  margin-bottom: 28px;
  text-align: center;
}
:is(
  body[data-page="new-vehicles"],
  body[data-page="used-vehicles"],
  body[data-page="inspection"],
  body[data-page="buying-export"],
  body[data-page="shipping"]
) main > .section:not(.hero) > .container > :is(.center:first-child, .inspection-level-intro) > h2 {
  margin: 0;
}
:is(
  body[data-page="new-vehicles"],
  body[data-page="used-vehicles"],
  body[data-page="inspection"],
  body[data-page="buying-export"],
  body[data-page="shipping"]
) main > .section:not(.hero) > .container :is(.split > div, .container.split > div) > h2:first-of-type {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 28px;
  text-align: center;
}
:is(
  body[data-page="new-vehicles"],
  body[data-page="used-vehicles"],
  body[data-page="inspection"],
  body[data-page="buying-export"],
  body[data-page="shipping"]
) main > .section-sm:not(.hero) > .container > h2,
:is(
  body[data-page="new-vehicles"],
  body[data-page="used-vehicles"],
  body[data-page="inspection"],
  body[data-page="buying-export"],
  body[data-page="shipping"]
) main > .section-sm:not(.hero) > .container > :is(.center:first-child, .inspection-level-intro) {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: center;
  margin-top: -42px;
  margin-bottom: 22px;
  text-align: center;
}
:is(
  body[data-page="new-vehicles"],
  body[data-page="used-vehicles"],
  body[data-page="inspection"],
  body[data-page="buying-export"],
  body[data-page="shipping"]
) main > .section-sm:not(.hero) > .container > :is(.center:first-child, .inspection-level-intro) > h2 {
  margin: 0;
}
:is(
  body[data-page="new-vehicles"],
  body[data-page="used-vehicles"],
  body[data-page="inspection"],
  body[data-page="buying-export"],
  body[data-page="shipping"]
) main > .section-sm:not(.hero) > .container :is(.split > div, .container.split > div) > h2:first-of-type {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 22px;
  text-align: center;
}
body[data-page="inspection"] main > .section-dark > .container.split > div {
  display: flex;
  flex-direction: column;
}
body[data-page="inspection"] main > .section-dark > .container.split > div > .button {
  align-self: center;
  margin-top: 8px;
}
.process-step {
  display: grid;
  grid-template-columns: 90px 1fr 1fr;
  gap: 42px;
  padding: 42px 0;
  border-top: 1px solid var(--line);
}
.process-step:last-child { border-bottom: 1px solid var(--line); }
.step-number {
  color: var(--orange);
  font-size: 2.4rem;
  font-weight: 760;
  letter-spacing: -.04em;
}
.process-step h3 { margin-bottom: 10px; font-size: 1.55rem; }
.process-step p { margin: 0; color: var(--muted); }
.client-gain { padding-left: 25px; border-left: 2px solid var(--orange); }
.client-gain strong { display: block; margin-bottom: 6px; }

.article-list { display: grid; gap: 24px; margin-top: 44px; }
.article-card {
  display: grid;
  grid-template-columns: 330px 1fr;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.article-card > * { min-width: 0; }
.article-card:hover { border-color: #d6b39f; box-shadow: var(--shadow-small); transform: translateY(-2px); }
.article-card .media-placeholder { min-height: 100%; border: 0; border-right: 1px dashed var(--line-strong); border-radius: 0; }
.article-card .media-photo { min-height: 100%; border: 0; border-right: 1px solid var(--line); border-radius: 0; }
.article-card .media-photo { width: 100%; max-width: 100%; height: 100%; min-height: 240px; aspect-ratio: auto; }
.article-card .media-photo img { object-fit: contain; }
.article-card-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 38px; }
.article-card-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(1.35rem, 1.75vw, 1.55rem);
  letter-spacing: -.035em;
}
.article-card-footer { margin-top: 2px; padding-top: 0; }
body[data-page="cases"] .article-card-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}
body[data-page="cases"] .article-card-footer .text-link {
  grid-column: 1;
  justify-self: start;
}
body[data-page="cases"] .article-card-footer time {
  grid-column: 2;
  justify-self: center;
}
.case-title-line { display: block; }
.article-card-copy .case-title-line + .case-title-line { margin-top: 8px; }
.article-card-copy p { color: var(--muted); }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: .86rem;
}
.breadcrumb a:hover { color: var(--orange); }
.article-hero { padding: 72px 0 38px; }
.article-hero h1 { max-width: 100%; font-size: clamp(2.45rem, 5vw, 4.5rem); overflow-wrap: break-word; text-wrap: balance; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 24px; color: var(--muted); font-size: .9rem; }
.article-meta a { color: var(--orange-dark); font-weight: 720; }
.article-meta a:hover { text-decoration: underline; text-underline-offset: 3px; }
.article-cover { margin: 32px 0 52px; }
.article-body { font-size: 1.06rem; }
.article-body h2 { margin-top: 56px; max-width: 100%; font-size: clamp(1.8rem, 3vw, 2.5rem); white-space: normal; overflow-wrap: break-word; text-wrap: balance; }
.article-body h3 { margin-top: 36px; }
.article-body p, .article-body li { color: #4f4a45; }
.article-body p, .article-body li { overflow-wrap: break-word; text-wrap: pretty; }
.article-body ul, .article-body ol { padding-left: 24px; }
.article-body li { margin-bottom: 10px; }
.article-body table { width: 100%; margin: 34px 0; border-collapse: collapse; font-size: .95rem; }
.article-body th, .article-body td { padding: 14px 16px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.article-body th { color: var(--ink); background: var(--cream); font-weight: 760; }
.article-body .wp-block-table { max-width: 100%; overflow-x: auto; }

@media (min-width: 1000px) {
  .article-body > table:has(tr > :nth-child(5)),
  .article-body > .wp-block-table:has(tr > :nth-child(5)) {
    width: min(1000px, calc(100vw - 40px));
    max-width: none;
    margin-inline: 50%;
    transform: translateX(-50%);
  }
}
.article-callout {
  margin: 36px 0;
  padding: 28px;
  border-left: 4px solid var(--orange);
  background: var(--cream);
}
.article-callout strong { display: block; margin-bottom: 6px; }

.legal-page .article-hero { border-bottom: 1px solid var(--line); background: var(--cream); }
.legal-page .article-hero h1 { font-size: clamp(2.6rem, 5vw, 4.6rem); }
.legal-body { padding: 18px 0 90px; }
.legal-body > p:first-child { font-size: 1.16rem; }
.legal-body h2 { scroll-margin-top: 110px; }
.legal-body h3 { margin-top: 34px; font-size: 1.3rem; }
.legal-body a { color: var(--orange-dark); text-decoration: underline; text-underline-offset: 3px; }
.legal-body strong { color: var(--ink); }
.legal-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin: 34px 0 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}
.legal-summary div { padding: 24px; background: var(--white); }
.legal-summary span { display: block; margin-bottom: 7px; color: var(--orange-dark); font-size: .76rem; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.legal-summary strong { display: block; font-size: 1rem; line-height: 1.45; }

.case-detail-hero {
  padding: 34px 0 0;
  border-bottom: 1px solid #cedde5;
  background: #edf4f7;
}
.case-detail-hero .breadcrumb { margin-bottom: 28px; }
.case-detail-heading { margin: 0; }
.case-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  gap: 48px;
  align-items: center;
  padding-bottom: 32px;
}
.case-detail-hero-copy { max-width: 760px; }
.case-detail-label {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
}
.case-detail-hero h1 {
  margin: 0;
  font-size: clamp(1.6rem, 1.9vw, 1.85rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.case-detail-hero .case-title-line { max-width: 100%; white-space: normal; overflow-wrap: break-word; text-wrap: balance; }
.case-detail-hero .case-title-line + .case-title-line { margin-top: 10px; }
.case-detail-hero .lead { max-width: 560px; margin: 0; font-size: 1.08rem; }
.case-detail-hero-media {
  min-height: 0;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0;
  border: 1px solid #cedde5;
  border-radius: 12px;
  background: #f7f5f2;
  box-shadow: 0 12px 28px rgba(39, 69, 83, .11);
  justify-self: end;
}
.case-detail-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.case-detail-hero-placeholder {
  padding: 28px;
  border-style: dashed;
  box-shadow: none;
}
.case-fact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #cedde5;
  border-bottom: 0;
  background: var(--paper);
}
.case-fact-strip > div { min-width: 0; padding: 24px 26px; border-right: 1px solid #cedde5; }
.case-fact-strip > div:last-child { border-right: 0; }
.case-fact-strip span,
.case-fact-strip small { display: block; }
.case-fact-strip span {
  margin-bottom: 8px;
  color: var(--orange);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
}
.case-fact-strip strong { display: block; margin-bottom: 4px; font-size: 1.2rem; }
.case-fact-strip small { color: var(--muted); font-size: .78rem; line-height: 1.45; }

.case-evidence-section { padding: 78px 0 82px; }
.case-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 32px;
}
.case-section-heading h2 { margin: 0; font-size: clamp(2rem, 3.4vw, 3rem); }
.case-section-heading p { max-width: 430px; margin: 0; color: var(--muted); }
.case-evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.case-evidence-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}
.case-evidence-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #eee7df;
}
.case-evidence-grid .case-evidence-result img { background: #f5fbff; }
.case-evidence-grid figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.case-story-section { padding: 24px 0 88px; background: var(--cream); }
.case-story { border-top: 1px solid var(--line-strong); }
.case-story-step {
  display: grid;
  grid-template-columns: 60px minmax(220px, .65fr) minmax(0, 1.35fr);
  gap: 28px;
  padding: 44px 0;
  border-bottom: 1px solid var(--line-strong);
}
.case-story-index { color: var(--orange); font-size: .78rem; font-weight: 800; }
.case-story-step h2 { margin: 0; font-size: clamp(1.45rem, 2.35vw, 2rem); }
.case-story-copy { min-width: 0; }
.case-story-copy p,
.case-story-copy li { color: #4f4a45; }
.case-story-copy p,
.case-story-copy li { overflow-wrap: break-word; text-wrap: pretty; }
.case-story-copy p:last-child { margin-bottom: 0; }
.case-story-copy ul { margin: 24px 0 0; padding-left: 20px; }
.case-story-copy li { margin-bottom: 8px; }
.case-related-services {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 0 0;
}
.case-related-services > strong { font-size: .92rem; }
.case-related-services > div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px 26px; }

.empty-state {
  padding: 70px 40px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  text-align: center;
}
.empty-state h2 { font-size: 2rem; }
.empty-state p { max-width: 600px; margin-inline: auto; color: var(--muted); }

.not-found-section {
  display: grid;
  min-height: clamp(520px, 68vh, 720px);
  place-items: center;
  padding: 80px 0;
  background:
    radial-gradient(circle at 80% 12%, rgba(204, 232, 246, .76), transparent 34%),
    linear-gradient(135deg, #fffdf9 0%, #f5f0e9 100%);
}
.not-found-card {
  max-width: 780px;
  padding: clamp(38px, 6vw, 70px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow);
}
.not-found-code {
  margin-bottom: 14px;
  color: var(--orange);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .16em;
}
.not-found-card h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
.not-found-card > p:not(.not-found-code) {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.12rem;
}
.not-found-card .text-link { margin-left: 8px; }

.timeline { margin-top: 40px; border-left: 1px solid var(--line-strong); }
.timeline-item { position: relative; padding: 0 0 42px 38px; }
.timeline-item::before {
  position: absolute;
  top: 5px;
  left: -6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-year { color: var(--orange); font-weight: 780; }
.timeline-item h3 { margin: 5px 0 8px; }
.timeline-item p { margin: 0; color: var(--muted); }

@media (max-width: 1020px) {
  .about-journey-layout { grid-template-columns: 1fr; gap: 54px; }
  .about-journey-copy h1 { white-space: normal; }
  .about-journey-copy > .lead,
  .about-journey-story { max-width: 820px; }
  .about-journey-collage { width: min(100%, 760px); min-height: 600px; margin-inline: auto; }
  .about-company-board { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: auto; }
  .company-focus-panel { grid-column: 1 / -1; grid-row: auto; }
  .company-stat-panel {
    display: flex;
    min-height: 210px;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 26px 20px;
    text-align: center;
  }
  .company-stat-panel::before { margin-bottom: 18px; }
  .company-stat-panel strong { margin-bottom: 10px; }
  .about-unique-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .about-unique-grid article,
  .about-unique-grid article:nth-child(4),
  .about-unique-grid article:nth-child(5) { grid-column: auto; }
  .about-unique-grid article:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 10px);
    justify-self: center;
  }
  .about-proof-grid,
  .about-proof-grid-reverse { grid-template-columns: 1fr; gap: 38px; }
  .about-proof-copy { max-width: 760px; }
  .about-proof-grid-reverse .about-proof-copy { grid-row: 1; }
  .about-proof-grid-reverse .about-asset-placeholder,
  .about-proof-grid-reverse .about-license-card { grid-row: 2; }
  .about-asset-placeholder,
  .about-license-placeholder { min-height: 380px; }
  .about-warehouse-section .about-proof-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 40px;
  }
  .about-warehouse-section .about-proof-copy { max-width: 680px; }
  .about-warehouse-board { width: min(100%, 760px); margin-inline: auto; }
}

@media (max-width: 760px) {
  .about-journey-hero { padding: 50px 0 58px; }
  .about-journey-copy h1 { font-size: clamp(1.7rem, 7vw, 2.25rem); }
  .about-journey-copy > .lead { margin-bottom: 22px; }
  .about-journey-story p { margin-bottom: 13px; }
  .about-journey-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    min-height: 0;
  }
  .journey-photo-primary { grid-column: auto; grid-row: auto; }
  .journey-photo-placeholder { padding: 20px 14px; }
  .about-company-section { padding: 66px 0; }
  .about-company-intro { margin-bottom: 28px; }
  .about-company-intro h2,
  .about-section-head h2,
  .about-proof-copy h2 { font-size: 1.35rem; line-height: 1.12; white-space: normal; }
  .about-company-board { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
  .company-focus-panel { grid-column: 1 / -1; min-height: 0; padding: 28px 24px; }
  .company-focus-panel h3 { margin: 17px 0 12px; font-size: 1.65rem; }
  .company-method-line { margin-top: 20px; padding-top: 15px; }
  .company-stat-panel {
    grid-column: auto;
    min-height: 162px;
    align-items: center;
    padding: 18px 10px;
    text-align: center;
  }
  .company-stat-panel::before {
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
    border-radius: 11px;
    background-size: 21px;
  }
  .company-stat-panel strong { margin-bottom: 10px; font-size: 2rem; }
  .company-stat-panel p { font-size: .76rem; line-height: 1.38; }
  .about-unique-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 30px; }
  .about-unique-grid article:last-child { grid-column: auto; width: auto; justify-self: stretch; }
  .about-unique-grid article {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 7px 12px;
    padding: 21px 20px;
  }
  .about-unique-grid article > span { grid-column: 1; grid-row: 1; margin: 3px 0 0; }
  .about-unique-grid article > h3 { grid-column: 2; grid-row: 1; margin: 0; font-size: 1.08rem; }
  .about-unique-grid article > p { grid-column: 2; grid-row: 2; font-size: .94rem; line-height: 1.58; }
  .about-proof-section { padding: 66px 0; }
  .about-warehouse-section { padding: 54px 0; }
  .about-warehouse-section .about-proof-grid {
    gap: 24px;
    padding: 28px 18px 22px;
    border-radius: 18px;
  }
  .about-warehouse-section .about-proof-copy h2 { margin-bottom: 16px; }
  .about-warehouse-intro { margin-bottom: 18px; }
  .warehouse-capabilities li {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 12px 0;
  }
  .warehouse-capabilities strong { font-size: .88rem; }
  .warehouse-capabilities span { font-size: .84rem; }
  .about-asset-placeholder,
  .about-license-placeholder { min-height: 340px; padding: 30px 26px; }
  .about-warehouse-board {
    width: 100%;
    gap: 10px;
    padding: 8px 2px 4px;
  }
  .about-warehouse-polaroid,
  .about-warehouse-polaroid-main,
  .about-warehouse-polaroid-equipment,
  .about-warehouse-polaroid-loading,
  .about-warehouse-polaroid-transfer {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
  }
  .about-warehouse-polaroid-main {
    transform: rotate(-1.5deg);
  }
  .about-warehouse-polaroid-equipment { transform: rotate(1.5deg); }
  .about-warehouse-polaroid-loading { transform: rotate(1.5deg); }
  .about-warehouse-polaroid-transfer { transform: rotate(-1.5deg); }
  .about-warehouse-polaroid figcaption { font-size: .58rem; letter-spacing: .045em; }
  .about-license-card { padding: 12px 12px 14px; }
  .shipping-loading-gallery { min-height: 360px; gap: 7px; }
}

@media (max-width: 560px) {
  .about-journey-collage { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .journey-photo-placeholder { gap: 4px; padding: 10px 8px; }
  .journey-photo-placeholder strong { font-size: .7rem; line-height: 1.3; }
  .journey-photo-placeholder small { display: none; }
  .journey-photo-item figcaption { height: 64px; padding-top: 9px; }
}

.locations { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.location { padding: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.location span { color: var(--orange); font-size: .78rem; font-weight: 780; text-transform: uppercase; }
.location h3 { margin-top: 8px; }

.quote-intro { max-width: 800px; }
.start-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}
.start-option { position: relative; }
.start-option input { position: absolute; opacity: 0; pointer-events: none; }
.start-option label {
  display: block;
  min-height: 100%;
  padding: 28px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
}
.start-option input:checked + label { border-color: var(--orange); background: var(--orange-pale); }
.start-option strong { display: block; margin-bottom: 8px; font-size: 1.12rem; }
.start-option span { display: block; color: var(--muted); font-size: .92rem; }

.quote-form { padding: 46px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.quote-form .eyebrow { display: inline-block; margin-bottom: 10px; }
.form-section { padding: 0 0 38px; margin-bottom: 38px; border-bottom: 1px solid var(--line); }
.form-section:last-of-type { border-bottom: 0; }
.form-section h2 { font-size: 1.65rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .88rem; font-weight: 720; }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  outline: 0;
  color: var(--ink);
  background: var(--paper);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(244,81,30,.12); }
.field small { color: var(--muted); }
.check-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 20px; }
.check-option { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); }
.check-option input { margin-top: 5px; accent-color: var(--orange); }
.conditional { display: none; }
.conditional.visible { display: block; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.notes-field { margin-top: 24px; }
.form-preview-note { margin-top: 22px; }
.quote-form--compact {
  display: grid;
  gap: 32px;
  padding: 46px 52px;
  box-shadow: 0 18px 54px rgba(55, 34, 20, .08);
}
body[data-page="quote"] .section-cream > .narrow { width: min(calc(100% - 40px), 980px); }
.quote-form-intro { max-width: 620px; }
.quote-form-kicker {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--orange-dark);
  font-size: .75rem;
  font-weight: 780;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.quote-form-intro h2 { margin-bottom: 10px; font-size: clamp(1.8rem, 3vw, 2.45rem); }
.quote-form-intro p { margin: 0; color: var(--muted); }
.quote-step {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
.quote-step legend {
  width: 100%;
  padding: 0;
  margin-bottom: 15px;
  font-size: 1rem;
  font-weight: 760;
  letter-spacing: -.01em;
}
.quote-start-step { padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.quote-start-options { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin: 0; }
.quote-start-options .start-option label { padding: 20px 22px; border-width: 1px; border-radius: 12px; }
.quote-start-options .start-option input:checked + label { border-color: var(--orange); box-shadow: 0 0 0 1px var(--orange); }
.quote-start-options .start-option strong { margin-bottom: 4px; font-size: 1rem; }
.quote-start-options .start-option span { font-size: .86rem; }
.field-optional { color: var(--muted); font-size: .82em; font-weight: 500; }
.quote-step-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px; }
.quote-step-grid > .quote-step + .quote-step { padding-left: 42px; border-left: 1px solid var(--line); }
.quote-fields { display: grid; gap: 17px; }
.quote-form--compact .field textarea { min-height: 102px; }
.quote-form--compact .quote-quantity { max-width: 150px; }
.quote-supplier-details { padding: 24px; border: 1px solid var(--line); border-radius: 12px; background: var(--cream); }
.quote-supplier-details .field textarea { min-height: 88px; background: var(--white); }
.quote-form--compact .privacy-consent { margin: -4px 0 0; }
.quote-form--compact .form-actions { padding-top: 2px; }
.related-links { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.home-risk-section { padding: 28px 0 88px; }
.home-risk-layout {
  align-items: start;
  row-gap: 0;
}
.home-risk-layout > div:first-child { display: contents; }
body[data-page="home"] .home-risk-layout > div:first-child > h2 {
  display: flex;
  min-height: 104px;
  grid-column: 1 / -1;
  grid-row: 1;
  align-items: center;
  justify-content: center;
  margin: 0 0 28px;
  text-align: center;
  text-wrap: balance;
}
.home-risk-layout > div:first-child > .service-list {
  grid-column: 1;
  grid-row: 2;
}
.home-risk-layout > div:first-child > .optional-services-note {
  grid-column: 1;
  grid-row: 3;
}
.home-risk-layout > .media-photo {
  grid-column: 2;
  grid-row: 2 / span 2;
}
.customer-feedback-section { padding: 28px 0 64px; }
.customer-feedback-section > .container > .center {
  display: flex;
  min-height: 104px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.customer-feedback-section h2 { margin-bottom: 14px; }
.customer-feedback-section .lead { margin-bottom: 0; }
.testimonial-carousel {
  position: relative;
  margin-top: 28px;
  padding: 0 58px;
}
.testimonial-viewport {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}
.testimonial-viewport::-webkit-scrollbar { display: none; }
.testimonial-card {
  display: flex;
  min-height: 0;
  flex: 0 0 calc((100% - 22px) / 2);
  flex-direction: column;
  border: 1px solid var(--line);
  border-top: 3px solid var(--orange);
  border-radius: 7px;
  overflow: hidden;
  background: var(--paper);
  scroll-snap-align: start;
}
.testimonial-profile {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 22px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.testimonial-avatar {
  width: 58px;
  height: 58px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--line-strong);
}
.testimonial-profile strong,
.testimonial-profile span { display: block; }
.testimonial-profile strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1rem;
}
.testimonial-profile span {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.45;
}
.testimonial-card blockquote {
  margin: 0;
  padding: 20px 22px 24px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.7;
  text-wrap: pretty;
}
.testimonial-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  font-size: 1.15rem;
  font-weight: 760;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color var(--ease), border-color var(--ease), background var(--ease), opacity var(--ease);
}
.testimonial-prev { left: 0; }
.testimonial-next { right: 0; }
.testimonial-control:hover:not(:disabled),
.testimonial-control:focus-visible { border-color: var(--orange); color: var(--paper); background: var(--orange); }
.testimonial-control:disabled { opacity: .28; cursor: default; }
.testimonial-disclosure {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .78rem;
  text-align: center;
}
.vehicle-grid-spaced { margin-top: 44px; }
.shipping-options-spaced,
.route-spaced { margin-top: 42px; }
.compare-table-spaced { margin-top: 36px; }
.availability-note { margin-top: 18px; }
.report-title { margin: 4px 0 0; }
.founder-name { margin: 18px 0 2px; }
.optional-services-note { margin-top: 20px; }
.form-message { display: none; margin-top: 20px; padding: 18px; border-left: 4px solid var(--green); background: #edf8f1; }
.form-message.visible { display: block; }
.form-message.is-error { border-left-color: #b42318; color: #7a271a; background: #fef3f2; }
.form-message.is-success { border-left-color: var(--green); color: #185c37; background: #edf8f1; }
.sauri-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.button:disabled { opacity: .65; cursor: wait; }
.privacy-consent { display: flex; align-items: flex-start; gap: 12px; margin: 26px 0; color: var(--muted); font-size: .9rem; line-height: 1.55; }
.privacy-consent input { flex: 0 0 auto; margin-top: 5px; accent-color: var(--orange); }
.privacy-consent a { color: var(--orange-dark); text-decoration: underline; text-underline-offset: 3px; }

.site-footer { color: rgba(255,255,255,.78); background: var(--footer); }
.footer-main {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 54px;
  padding: 70px 0 50px;
}
.footer-brand .brand {
  padding: 0;
  background: transparent;
}
.footer-brand .brand-logo { width: 170px; }
.footer-brand p { max-width: 330px; margin-top: 20px; color: rgba(255,255,255,.72); font-size: .96rem; }
.footer-brand p span { display: block; }
.footer-brand p span + span { margin-top: 8px; }
.footer-col h3 { margin-bottom: 18px; color: var(--white); font-size: .98rem; letter-spacing: .02em; }
.footer-col a, .footer-col span { display: block; margin: 10px 0; color: rgba(255,255,255,.76); font-size: .94rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.66);
  font-size: .82rem;
}

.contact-rail {
  position: fixed;
  z-index: 80;
  right: 18px;
  bottom: 80px;
  display: grid;
  gap: 8px;
}
.rail-link {
  display: flex;
  width: 58px;
  min-height: 58px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--muted);
  background: var(--white);
  box-shadow: var(--shadow-small);
  font-size: .66rem;
  transition: transform var(--ease), color var(--ease);
}
.rail-icon { width: 21px; height: 21px; color: var(--orange); fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.rail-link:hover { color: var(--orange); transform: translateX(-3px); }
.mobile-whatsapp { display: none; }

@media (min-width: 1021px) {
  .hero-compact h1 {
    font-size: clamp(2.6rem, 4.25vw, 3.8rem);
  }

  .split h2 {
    font-size: clamp(2.1rem, 3.15vw, 3rem);
  }

  .article-hero h1 {
    font-size: 2rem;
    letter-spacing: -.035em;
    white-space: normal;
    text-wrap: balance;
  }

  .article-card-copy h2 { white-space: normal; text-wrap: balance; }
  .case-copy .case-title-line { white-space: normal; }
  .case-copy .case-title-line + .case-title-line { margin-top: 8px; }

  .article-body h2 {
    font-size: 1.85rem;
  }
}

@media (max-width: 1020px) {
  body[data-page="home"] .hero:first-child::before { display: none; }
  body[data-page="home"] .hero:first-child { min-height: 0; }
  body[data-page="home"] .hero:first-child .hero-copy { display: block; max-width: 760px; padding-right: 0; text-align: center; }
  .home-hero-proof {
    position: static;
    width: min(100%, 560px);
    margin: 38px auto 0;
    transform: none;
  }
  body[data-page="home"] .hero:first-child h1,
  body[data-page="home"] .hero:first-child .lead { max-width: none; }
  body[data-page="home"] .hero:first-child .lead,
  body[data-page="home"] .hero:first-child .button-row { margin-inline: auto; }
  body[data-page="home"] .hero:first-child .button-row { justify-content: center; max-width: 520px; padding-left: 0; }
  .desktop-nav { display: none; }
  .menu-button { display: flex; }
  .hero-split, .split, .split:has(> figure:first-child), .split.wide-copy, .split.wide-media, .founder { grid-template-columns: 1fr; gap: 46px; }
  .home-risk-layout { row-gap: 0; }
  body[data-page="home"] .home-risk-layout > div:first-child > h2 {
    grid-column: 1;
    grid-row: 1;
  }
  .home-risk-layout > div:first-child > .service-list {
    grid-column: 1;
    grid-row: 2;
  }
  .home-risk-layout > div:first-child > .optional-services-note {
    grid-column: 1;
    grid-row: 3;
  }
  .home-risk-layout > .media-photo {
    grid-column: 1;
    grid-row: 4;
    margin-top: 46px;
  }
  .market-fit-title { margin-bottom: 38px; white-space: normal; }
  .market-fit-layout { gap: 38px; }
  .market-fit-layout .media-placeholder { min-height: 360px; }
  .market-fit-layout .media-photo { min-height: 360px; }
  .hero-split .media-placeholder { min-height: 300px; }
  .hero-split .media-photo { min-height: 300px; }
  .hero-split .inspection-hero-photo { min-height: 0; width: 100%; }
  .founder .media-placeholder { max-width: 480px; width: 100%; }
  .founder .media-photo { max-width: 480px; width: 100%; }
  .card-grid, .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-wall { grid-template-columns: repeat(4, 1fr); }
  .inspection-levels { grid-template-columns: 1fr; }
  .inspection-level { min-height: 0; }
  .advanced-verification { grid-template-columns: 1fr 1fr; }
  .verification-column:first-child { grid-column: 1; grid-row: 1; }
  .verification-column:last-child { grid-column: 2; grid-row: 1; }
  .verification-report { grid-column: 1 / -1; grid-row: 2; min-height: 360px; }
  .inspection-request-grid { grid-template-columns: repeat(2, 1fr); }
  .inspection-request-step:nth-child(2) { border-right: 0; }
  .inspection-request-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .cases-hero-layout {
    min-height: 540px;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 24px;
  }
  .cases-hero h1 { font-size: clamp(2.3rem, 4.6vw, 3rem); }
  .cases-polaroid-board { gap: 14px; padding: 30px 2px 26px; }
  .case-detail-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .case-detail-hero-copy { max-width: none; }
  .case-detail-hero-media { max-width: 560px; justify-self: start; }
  .case-detail-hero h1 { font-size: clamp(1.8rem, 3.4vw, 2rem); }
  .legal-summary { grid-template-columns: 1fr; }
  .case-story-step { grid-template-columns: 52px minmax(180px, .6fr) minmax(0, 1.4fr); gap: 22px; }
}

@media (max-width: 760px) {
  .container, .narrow { width: min(calc(100% - 32px), var(--max)); }
  h1, h2 { white-space: normal; }
  .section { padding: 72px 0; }
  .section-sm { padding: 54px 0; }
  :is(
    body[data-page="new-vehicles"],
    body[data-page="used-vehicles"],
    body[data-page="inspection"],
    body[data-page="buying-export"],
    body[data-page="shipping"]
  ) main > .section:not(.hero) {
    padding-block: 72px;
  }
  :is(
    body[data-page="new-vehicles"],
    body[data-page="used-vehicles"],
    body[data-page="inspection"],
    body[data-page="buying-export"],
    body[data-page="shipping"]
  ) main > .section-sm:not(.hero) {
    padding-block: 54px;
  }
  :is(
    body[data-page="new-vehicles"],
    body[data-page="used-vehicles"],
    body[data-page="inspection"],
    body[data-page="buying-export"],
    body[data-page="shipping"]
  ) main > .section:not(.hero) > .container > h2,
  :is(
    body[data-page="new-vehicles"],
    body[data-page="used-vehicles"],
    body[data-page="inspection"],
    body[data-page="buying-export"],
    body[data-page="shipping"]
  ) main > .section:not(.hero) > .container > :is(.center:first-child, .inspection-level-intro) {
    min-height: 84px;
    margin-top: -42px;
    margin-bottom: 30px;
  }
  :is(
    body[data-page="new-vehicles"],
    body[data-page="used-vehicles"],
    body[data-page="inspection"],
    body[data-page="buying-export"],
    body[data-page="shipping"]
  ) main > .section:not(.hero) > .container :is(.split > div, .container.split > div) > h2:first-of-type {
    min-height: 84px;
    margin-bottom: 24px;
  }
  :is(
    body[data-page="new-vehicles"],
    body[data-page="used-vehicles"],
    body[data-page="inspection"],
    body[data-page="buying-export"],
    body[data-page="shipping"]
  ) main > .section-sm:not(.hero) > .container > h2,
  :is(
    body[data-page="new-vehicles"],
    body[data-page="used-vehicles"],
    body[data-page="inspection"],
    body[data-page="buying-export"],
    body[data-page="shipping"]
  ) main > .section-sm:not(.hero) > .container > :is(.center:first-child, .inspection-level-intro) {
    min-height: 72px;
    margin-top: -36px;
    margin-bottom: 18px;
  }
  :is(
    body[data-page="new-vehicles"],
    body[data-page="used-vehicles"],
    body[data-page="inspection"],
    body[data-page="buying-export"],
    body[data-page="shipping"]
  ) main > .section-sm:not(.hero) > .container :is(.split > div, .container.split > div) > h2:first-of-type {
    min-height: 72px;
    margin-bottom: 18px;
  }
  body:not([data-page="home"]) .section > .container > .center:first-child,
  body:not([data-page="home"]) .section > .container > .about-section-head:first-child {
    min-height: 84px;
    margin-top: -34px;
    margin-bottom: 24px;
  }
  body:not([data-page="home"]) .section-sm > .container > .center:first-child {
    min-height: 76px;
    margin-top: -26px;
    margin-bottom: 22px;
  }
  .header-inner { min-height: 68px; gap: 12px; }
  .site-header .brand-logo { width: 108px; }
  .header-quote { display: none; }
  .mobile-menu { inset: 69px 0 0; }
  .hero { padding: 68px 0 58px; }
  h2 { font-size: clamp(1.35rem, 5.6vw, 1.8rem); }
  body[data-page="home"] h2 { font-size: clamp(1.35rem, 5.6vw, 1.75rem); }
  .quote-box h2,
  .market-fit-title { font-size: clamp(1.35rem, 5.6vw, 1.8rem); }
  .hero h1, .hero-split h1,
  .hero-compact h1,
  .article-hero h1 { font-size: clamp(1.7rem, 7vw, 2.25rem); line-height: 1.08; }
  .article-body h2 { font-size: clamp(1.3rem, 5.2vw, 1.65rem); }
  .hero .lead { font-size: 1.06rem; }
  .media-placeholder.wide { width: 100%; min-height: 220px; aspect-ratio: auto; }
  .media-photo.wide { width: 100%; min-height: 220px; aspect-ratio: auto; }
  .button-row .button { flex: 1 1 180px; }
  .not-found-section { min-height: 520px; padding: 48px 0; }
  .not-found-card { padding: 34px 24px; }
  .not-found-card h1 { font-size: clamp(2rem, 10vw, 2.8rem); }
  .not-found-card .text-link { margin: 8px 0 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .service-row { grid-template-columns: 48px 1fr; gap: 16px; }
  .service-row .text-link { grid-column: 2; justify-self: start; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process-preview { grid-template-columns: 1fr; border-top: 0; }
  .process-preview article { padding: 20px 0 20px 28px; border-left: 1px solid var(--line-strong); }
  .process-preview article::before { top: 27px; left: -6px; }
  .founder,
  .case-feature,
  .quote-box,
  .article-card { grid-template-columns: minmax(0, 1fr); }
  .case-feature .media-placeholder { min-height: 250px; border-right: 0; border-bottom: 1px dashed var(--line-strong); }
  .case-feature .media-photo { min-height: 250px; border-right: 0; border-bottom: 1px solid var(--line); }
  .case-copy { padding: 30px; }
  .home-case-feature { min-height: 0; grid-template-columns: 1fr; }
  .home-case-media {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .home-case-content {
    justify-content: flex-start;
    gap: 28px;
    padding: 34px 28px;
  }
  body[data-page="home"] .home-case-content h2 {
    margin: 0;
  }
  .home-case-heading-group { gap: 14px; }
  body[data-page="home"] .home-case-content h2 { font-size: clamp(1.7rem, 7.4vw, 2.15rem); }
	.home-case-facts { margin: 0; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-case-fact { min-height: 98px; padding: 16px 14px; }
  .home-case-fact strong { white-space: normal; }
  .home-case-button { width: 100%; }
  .quote-box { grid-template-columns: 1fr; padding: 36px 28px; }
  .quote-box .button { width: 100%; }
  .card-grid, .vehicle-grid, .shipping-options, .two-paths, .locations, .start-options { grid-template-columns: 1fr; }
  .home-start-section { padding: 54px 0; }
  .home-start-cards { grid-template-columns: 1fr; gap: 18px; }
  .home-start-card {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 30px 26px 0;
  }
  body[data-page="home"] .home-start-card h2 { font-size: clamp(1.55rem, 6.2vw, 2rem); }
  .home-start-card p { max-width: 42ch; }
  .home-start-illustration {
    height: auto;
    width: min(100%, 360px);
    margin: 4px auto 0;
  }
  .home-start-illustration img { width: 100%; height: auto; max-height: none; }
  .home-hero-proof figcaption { margin-top: 8px; font-size: .74rem; }
  .home-case-section,
  .home-risk-section,
  .customer-feedback-section { padding: 20px 0 48px; }
  .home-section-heading,
  body[data-page="home"] .home-risk-layout > div:first-child > h2,
  .customer-feedback-section > .container > .center { min-height: 84px; }
  .home-case-heading,
  body[data-page="home"] .home-risk-layout > div:first-child > h2 { margin-bottom: 22px; }
  .testimonial-carousel { margin-top: 24px; padding: 0 50px; }
  .testimonial-card { min-height: 0; flex-basis: 100%; }
  .brand-wall { grid-template-columns: repeat(2, 1fr); }
  .brand-tile { min-height: 82px; gap: 10px; padding: 13px 10px; font-size: .8rem; }
  .brand-tile img { width: 38px; height: 30px; flex-basis: 38px; }
  .brand-tile img.brand-logo-wide { width: 50px; height: 26px; flex-basis: 50px; }
  .brand-request {
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 22px 20px;
  }
  .brand-request-mark { width: 42px; height: 42px; font-size: 1.25rem; }
  .brand-request .text-link { grid-column: 2; justify-self: start; }
  .compare-table { overflow-x: auto; }
  .compare-row { min-width: 700px; }
  .article-body table { display: block; max-width: 100%; overflow-x: auto; white-space: normal; }
  .check-list, .check-options { grid-template-columns: 1fr; }
  .advanced-verification { grid-template-columns: 1fr; gap: 34px; margin-top: 36px; }
  .verification-column:first-child,
  .verification-column:last-child,
  .verification-report { grid-column: auto; grid-row: auto; }
  .verification-column { gap: 26px; }
  .verification-report { min-height: 320px; }
  .inspection-disclaimer { grid-template-columns: 1fr; padding: 30px 26px; }
  .inspection-request-grid { grid-template-columns: 1fr; }
  .inspection-request-step,
  .inspection-request-step:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .inspection-request-step:last-child { border-bottom: 0; }
  .scope-row { grid-template-columns: 1fr; gap: 8px; }
  .handoff { grid-template-columns: 1fr; }
  .handoff-arrow { transform: rotate(90deg); justify-self: center; }
  .route { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 54px 1fr; gap: 18px; }
  .client-gain { grid-column: 2; }
  .article-card-copy h2,
  .article-card-copy .case-title-line,
  .legal-body h2 { white-space: normal; }
  .article-card .media-placeholder { min-height: 220px; border-right: 0; border-bottom: 1px dashed var(--line-strong); }
  .article-card .media-photo { min-height: 220px; border-right: 0; border-bottom: 1px solid var(--line); }
  .article-card-copy { padding: 28px; }
  .case-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 150px;
    min-height: 0;
  }
  .case-collage figure:first-child { grid-column: 1 / -1; grid-row: 1; }
  .cases-hero-layout {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 56px;
    padding-bottom: 42px;
  }
  .cases-hero-copy { padding: 0; }
  .cases-hero-kicker { margin-bottom: 14px; font-size: .68rem; }
  .cases-hero h1 { font-size: clamp(1.75rem, 8vw, 2.7rem); letter-spacing: -.045em; }
  .cases-hero-copy > p:last-child { max-width: 560px; margin-top: 20px; font-size: .98rem; line-height: 1.65; }
  .cases-polaroid-board {
    display: grid;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 28px 3px 8px;
  }
  .case-polaroid,
  .case-polaroid-sourcing,
  .case-polaroid-evidence,
  .case-polaroid-check,
  .case-polaroid-export {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
  }
  .case-polaroid:nth-child(odd) { transform: rotate(-.7deg); }
  .case-polaroid:nth-child(even) { transform: rotate(.7deg); }
  .case-polaroid figcaption { font-size: .6rem; letter-spacing: .03em; }
  .case-detail-hero { padding-top: 24px; }
  .case-detail-hero .breadcrumb { margin-bottom: 22px; }
  .case-detail-heading { margin: 0; }
  .case-detail-hero-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 30px; }
  .case-detail-label { margin-bottom: 12px; font-size: .68rem; }
  .case-detail-hero h1 { font-size: clamp(1.45rem, 6.4vw, 2rem); }
  .case-detail-hero .case-title-line { white-space: normal; }
  .case-detail-hero .lead { font-size: .98rem; line-height: 1.6; }
  .case-detail-hero-media { max-width: none; justify-self: stretch; }
  .case-fact-strip { grid-template-columns: 1fr; }
  .case-fact-strip > div { padding: 18px 20px; border-right: 0; border-bottom: 1px solid #cedde5; }
  .case-fact-strip > div:last-child { border-bottom: 0; }
  .case-evidence-section { padding: 58px 0 62px; }
  .case-section-heading { display: block; margin-bottom: 24px; }
  .case-section-heading h2 { margin-bottom: 12px; }
  .case-evidence-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .case-evidence-grid figure:first-child { grid-column: 1 / -1; }
  .case-evidence-grid figcaption { padding: 10px 11px; font-size: .64rem; }
  .case-story-section { padding: 12px 0 62px; }
  .case-story-step {
    grid-template-columns: 38px 1fr;
    gap: 10px 14px;
    padding: 32px 0;
  }
  .case-story-step h2 { grid-column: 2; }
  .case-story-copy { grid-column: 2; }
  .case-related-services { align-items: flex-start; flex-direction: column; gap: 14px; }
  .case-related-services > div { justify-content: flex-start; }
  .photo-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 230px);
    min-height: 0;
  }
  .photo-gallery figure:first-child { grid-column: auto; grid-row: auto; }
  .quote-form { padding: 26px 20px; box-shadow: none; }
  .quote-form--compact { gap: 26px; padding: 28px 22px; }
  body[data-page="quote"] .section-cream > .narrow { width: min(calc(100% - 32px), var(--max)); }
  .quote-step-grid { grid-template-columns: 1fr; gap: 28px; }
  .quote-step-grid > .quote-step + .quote-step { padding: 28px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .quote-start-options { grid-template-columns: 1fr; }
  .quote-form--compact .quote-quantity { max-width: none; }
  .quote-supplier-details { padding: 20px; }
  .quote-form--compact .form-actions { align-items: flex-start; flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 38px 24px; padding-top: 54px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .contact-rail { display: none; }
  .mobile-whatsapp {
    position: fixed;
    z-index: 90;
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom));
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    background: var(--green);
    box-shadow: var(--shadow);
    font-size: .72rem;
    font-weight: 780;
  }
  .mobile-whatsapp .rail-icon { width: 25px; height: 25px; color: currentColor; }
  body[data-page="quote"] .mobile-whatsapp { display: none; }
}

@media (max-width: 760px) {
  html, body { overflow-x: clip; }
  .cases-hero-copy,
  .hero-copy,
  .article-hero .narrow,
  .about-journey-copy { min-width: 0; }
  .cases-hero h1,
  .hero-compact h1,
  .article-hero h1,
  .about-journey-copy h1 { overflow-wrap: anywhere; }
}

@media (max-width: 440px) {
  body[data-page="home"] .hero h1 { font-size: clamp(1.7rem, 7vw, 1.95rem); }
  body[data-page="home"] .hero:first-child .button-row {
    align-items: stretch;
    flex-direction: column;
  }
  body[data-page="home"] .hero:first-child .button {
    width: 100%;
    flex: 0 0 auto;
  }
  .mobile-whatsapp {
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
    border-width: 2px;
  }
  .trust-grid, .stats, .footer-main { grid-template-columns: 1fr; }
  .about-company-board { grid-template-columns: 1fr; }
  .company-stat-panel {
    display: grid;
    grid-template-columns: 40px 84px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 18px 20px;
    text-align: left;
  }
  .company-stat-panel::before { margin: 0; }
  .company-stat-panel strong { margin: 0; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .footer-brand { grid-column: auto; }
  .case-metric { grid-template-columns: 1fr; }
  .case-evidence-grid { grid-template-columns: 1fr; }
  .case-evidence-grid figure:first-child { grid-column: auto; }
}

@media (max-width: 360px) {
  h2,
  .quote-box h2,
  .market-fit-title,
  .article-card-copy h2 { font-size: 1.22rem; }
  .hero h1,
  .hero-split h1,
  .hero-compact h1,
  .article-hero h1,
  .about-journey-copy h1,
  body[data-page="home"] .hero h1 { font-size: 1.35rem; }
  .about-company-intro h2 { font-size: 1.45rem; }
}

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

/* Insights page */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}
.section-head h2 { margin: 0; }
.section-title { font-size: clamp(1.7rem, 2.8vw, 2.2rem); }
.insights-layout { display: block; }
.insights-topics { margin: 0 0 36px; }
.topic-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.topic-chip {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 650;
  white-space: nowrap;
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}
.topic-chip:hover { border-color: var(--orange); color: var(--orange); }
.topic-chip.is-active { color: var(--white); background: var(--orange); border-color: var(--orange); }

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.insight-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 4px 16px rgba(55,34,20,.03);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.insight-card:hover {
  border-color: #d6b39f;
  box-shadow: var(--shadow-small);
  transform: translateY(-3px);
}
.insight-card[hidden] { display: none; }
.insight-photo {
  min-height: 0;
  margin: 0;
  aspect-ratio: 16 / 10;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}
.insight-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.insight-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 26px 26px;
}
.insight-body h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.3;
}
.insight-meta {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
  color: var(--muted);
  font-size: .82rem;
  font-variant-numeric: tabular-nums;
}

/* WordPress archive controls and editor-safe front-end output */
.navigation.pagination {
  margin-top: 42px;
}
.navigation.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.navigation.pagination .page-numbers {
  display: inline-grid;
  min-width: 42px;
  min-height: 42px;
  padding: 8px 12px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-weight: 700;
}
.navigation.pagination a.page-numbers:hover,
.navigation.pagination a.page-numbers:focus-visible,
.navigation.pagination .page-numbers.current {
  border-color: var(--orange);
  color: var(--white);
  background: var(--orange);
}
.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

@media (max-width: 1020px) {
  .insight-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .section-head { align-items: flex-start; }
  .insights-topics {
    margin-right: -16px;
    margin-left: -16px;
    padding: 0 16px 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }
  .insights-topics::-webkit-scrollbar { display: none; }
  .insight-grid { grid-template-columns: 1fr; gap: 20px; }
}
