/* ==========================================================================
   Safetrans Freight Solutions — homepage
   All colours, sizes, radii and spacing are taken from the source SVG
   comps (desktop 1280×5367, mobile 390×6786). Type sizes were derived by
   matching rendered glyph ink-widths against the outlined text in the SVG.
   Base styles = mobile comp (390). Desktop comp applies from 1024px up.
   ========================================================================== */

/* ------------------------------------------------------------------ tokens */
:root {
  /* palette */
  --lime: #C4E31D;
  --ink: #191C1D;          /* card + section titles */
  --heading: #1F1F1F;      /* display headings */
  --body: #5F5E5E;         /* paragraph text */
  --border: #E5E7EB;
  --chip: #EDEEEF;
  --band: rgba(244, 244, 244, .73);
  --dark: #2E3132;
  --cta-title: #141F00;
  --cta-desc: #374E00;
  --footer-bg: #32392E;
  --footer-head: #E2E5E9;
  --footer-link: #EDEEEF;
  --footer-tagline: #E5E7EB;
  --white: #fff;

  /* effects */
  --card-shadow: 0 1px 2px rgba(0, 0, 0, .05);
  --logo-shadow: 0 4px 25px rgba(0, 0, 0, .06);

  /* layout */
  --gutter: 16px;
  --shell: 358px;
}

/* ------------------------------------------------------------------ reset */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: Manrope, "Segoe UI", system-ui, -apple-system, sans-serif;
  font-weight: 500;
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 10px 16px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
}
.skip-link:focus { left: 8px; top: 8px; }

:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }

.ico { display: block; width: 1em; height: 1em; flex: none; }

/* utility: comp-specific copy (the two comps differ in a few places) */
.d-only { display: none; }
.m-only { display: block; }

/* ------------------------------------------------------------------ shell */
.shell {
  width: 100%;
  max-width: calc(var(--shell) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ------------------------------------------------------------------ type */
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .125em;
  text-transform: uppercase;
  color: var(--lime);
}
.eyebrow--center { text-align: center; }
.eyebrow--dark { color: var(--heading); }

.h2 {
  font-size: 24.5px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: -.01em;
  color: var(--heading);
}
.h2--center { text-align: center; }
.accent { color: var(--lime); }

.section-sub {
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  color: var(--body);
  text-align: center;
}

/* ------------------------------------------------------------------ buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
.btn .ico { font-size: 13px; width: 1.15em; }

.btn--lime {
  height: 36px;
  padding-inline: 18px;
  border-radius: 6px;
  background: var(--lime);
  color: var(--heading);
  transition: filter .18s ease;
}
.btn--lime:hover { filter: brightness(.95); }

.btn--lg {
  height: 36px;
  padding-inline: 20px;
  border-radius: 10px;
}

.btn--dark {
  height: 40px;
  padding-inline: 18px;
  border-radius: 6px;
  background: var(--dark);
  color: var(--white);
}
.btn--ghost {
  height: 40px;
  padding-inline: 18px;
  border-radius: 5.5px;
  border: 1px solid var(--dark);
  color: var(--dark);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  padding-bottom: 6px;
  border-bottom: 1.5px solid var(--lime);
}
.link-arrow .ico { font-size: 8px; }

.link-lime {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--lime);
}
.link-lime .ico { font-size: 12px; width: 1.2em; }

/* ------------------------------------------------------------------ header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
}
.site-header__inner {
  display: flex;
  align-items: center;
  min-height: 138px;   /* centres the row on y=69, as drawn */
  gap: 29px;           /* burger ends x=34, logo starts x=63 */
}
.brand { order: 2; margin: 0; }
.brand img {
  width: 70px;
  height: auto;
  filter: var(--logo-shadow);
}
.burger {
  order: 1;
  width: 18px;
  height: 12px;
  position: relative;
  flex: none;
}
.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  border-radius: 1px;
  background: var(--ink);
  transition: transform .25s ease, opacity .2s ease;
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 5px; }
.burger span:nth-child(3) { top: 10px; }

.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.site-header__actions { order: 3; display: flex; align-items: center; gap: 12px; margin-left: auto; }

/* mobile nav drawer */
.nav {
  order: 4;
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  background: rgba(25, 28, 29, .96);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.nav.is-open { opacity: 1; visibility: visible; }
.nav__list { display: grid; gap: 26px; text-align: center; }
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--white);
}
.nav__link .ico { font-size: 8px; }
.nav__link.is-active { color: var(--lime); }

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative;
  height: 576px;
  overflow: hidden;
  background: #9aa0a3;
}
.hero__media { position: absolute; inset: 0; }
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__video { display: block; background: #9aa0a3; }
.hero__scrim {
  position: absolute;
  inset: 0;
  opacity: .45;
  background: linear-gradient(180deg, rgba(102, 102, 102, 0) 0%, rgb(102, 102, 102) 100%);
}

/* ------------------------------------------------------------------ services */
.services {
  position: relative;
  padding: 47px 0 21px;
  background: url("assets/services-bg-mobile.png") no-repeat center top / cover;
}
.services__grid { display: grid; gap: 17px; }
.services__intro { display: grid; gap: 20px; margin-bottom: 16px; }

.svc-card {
  border: 1px solid var(--border);
  border-radius: 7.5px;
  background: var(--white);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}
.svc-card__media img { width: 100%; height: 187px; object-fit: cover; }
.svc-card__body { display: flex; gap: 9px; padding: 24px 25px 26px; }
.svc-card__icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--white);
  flex: none;
}
.svc-card__icon .ico { font-size: 15px; }
.svc-card__text { display: grid; gap: 12px; justify-items: start; }
.svc-card__title { font-size: 14px; font-weight: 600; line-height: 1.2; color: var(--ink); }
.svc-card__desc { font-size: 12.25px; font-weight: 500; line-height: 25px; color: var(--body); }

/* ------------------------------------------------------------------ advantage */
.advantage {
  padding: 24px 0 46px;
  background: var(--band);
}
.advantage__lead {
  max-width: 300px;
  margin: 10px auto 44px;
  font-size: 12.25px;
  font-weight: 500;
  line-height: 16px;
  color: var(--heading);
  text-align: center;
}
.advantage__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.adv-card {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 14px;
  min-height: 228px;
  padding: 29px 14px;
  border-radius: 13px;
  background: var(--white);
  text-align: center;
}
.adv-card__icon { color: var(--lime); }
.adv-card__icon .ico { font-size: 40px; }
.adv-card__title { font-size: 14px; font-weight: 600; line-height: 1.25; color: var(--ink); }
.adv-card__desc { font-size: 12.25px; font-weight: 500; line-height: 21px; color: var(--body); }

/* ------------------------------------------------------------------ legacy */
.legacy { padding: 23px 0 0; }
.legacy__copy > * + * { margin-top: 0; }
.legacy .eyebrow { margin-bottom: 24px; }
.legacy__para {
  font-size: 13.25px;
  font-weight: 400;
  line-height: 25px;
  color: var(--body);
}
.legacy__para:first-of-type { margin-top: 34px; }
.legacy__para + .legacy__para { margin-top: 21px; }

.legacy__points {
  display: grid;
  gap: 26px;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}
.point { display: flex; gap: 12px; }
.point__icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--white);
  flex: none;
}
.point__icon .ico { font-size: 16px; }
.point__title { font-size: 14px; font-weight: 600; line-height: 1.2; color: var(--ink); margin-bottom: 10px; }
.point__desc { font-size: 12.25px; font-weight: 400; line-height: 25px; color: var(--body); }

.legacy .btn--lg { margin-top: 28px; }
.legacy__media { margin-top: 40px; }
.legacy__media img { width: 100%; }

/* ------------------------------------------------------------------ recognition */
.recognition { padding: 56px 0 0; }
.recognition .eyebrow { margin-bottom: 20px; }
.recognition .h2 { margin-bottom: 10px; }
.recognition .section-sub { margin-bottom: 40px; }
.recognition__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.recognition__row img { height: 94px; width: auto; object-fit: contain; }

/* ------------------------------------------------------------------ sectors */
.sectors { padding: 44px 0 0; }
.sectors .eyebrow { margin-bottom: 20px; }
.sectors .h2 { margin-bottom: 12px; }
.sectors .section-sub { margin-bottom: 30px; }
.sectors__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px 6px;
  align-items: end;
}
.sector {
  order: var(--m-order, 0);
  display: grid;
  justify-items: center;
  align-content: end;
  gap: 12px;
  text-align: center;
}
.sector img { height: 33px; width: auto; object-fit: contain; }
.sector span {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: var(--ink);
}

/* ------------------------------------------------------------------ customers */
.customers { padding: 44px 0 0; }
.customers .eyebrow { margin-bottom: 20px; }
.customers .h2 { margin-bottom: 34px; }
.customers__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.customers__row img { height: 35px; width: auto; object-fit: contain; }
.customers__row--2 { margin-top: 14px; }
.customers__row--2 img { height: 41px; }

/* ------------------------------------------------------------------ insights */
.insights { padding: 49px 0 0; }
.insights__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 45px;
}
.insights__grid { display: grid; gap: 42px; }
.post__media { display: block; border-radius: 8px; overflow: hidden; }
.post__media img { width: 100%; height: 201px; object-fit: cover; }
.post__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 21px 0 12px;
  font-size: 11px;
  font-weight: 500;
  color: var(--body);
}
.tag {
  padding: 5px 8px;
  border-radius: 2px;
  background: var(--chip);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--ink);
}
.post__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
  color: var(--ink);
  margin-bottom: 12px;
}
.post__excerpt { font-size: 12.25px; font-weight: 500; line-height: 18px; color: var(--body); }

/* ------------------------------------------------------------------ cta */
.cta { padding: 60px 0 0; }
.cta__panel {
  position: relative;
  border-radius: 14px;
  background: var(--lime);
  overflow: hidden;
}
.cta__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(333deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .2) 100%);
  pointer-events: none;
}
.cta__copy { position: relative; z-index: 1; padding: 30px 24px 0; }
.cta__title {
  margin: 18px 0 14px;
  font-size: 24.5px;
  font-weight: 700;
  line-height: 33px;
  letter-spacing: -.01em;
  color: var(--cta-title);
}
.cta__desc {
  max-width: 260px;
  font-size: 12.25px;
  font-weight: 500;
  line-height: 18px;
  color: var(--cta-desc);
}
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.cta__ship { position: relative; width: 100%; margin-top: 10px; }

/* ------------------------------------------------------------------ footer */
.site-footer { margin-top: 60px; background: var(--footer-bg); color: var(--footer-link); }
.site-footer__grid { display: grid; gap: 40px; padding-top: 46px; padding-bottom: 40px; }
.site-footer__logo { width: 147px; height: auto; }
.site-footer__tagline {
  margin-top: 24px;
  max-width: 340px;
  font-size: 13px;
  font-weight: 500;
  line-height: 22px;
  color: var(--footer-tagline);
}
.socials { display: flex; gap: 14px; margin-top: 24px; }
.socials a {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--footer-link);
  transition: color .18s ease;
}
.socials a:hover { color: var(--lime); }
.socials .ico { font-size: 18px; }

.site-footer__heading {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--footer-head);
  margin-bottom: 18px;
}
.site-footer__col ul { display: grid; gap: 12px; }
.site-footer__col a { font-size: 14px; font-weight: 500; color: var(--footer-link); }
.site-footer__col a:hover { color: var(--lime); }

.site-footer__bar { border-top: 1px solid rgba(226, 229, 233, .14); }
.site-footer__bar p {
  padding: 18px var(--gutter);
  font-size: 11px;
  font-weight: 500;
  color: var(--white);
  text-align: center;
}

/* ==========================================================================
   DESKTOP COMP — 1280 canvas, 1120 content column, 80px gutters
   ========================================================================== */
@media (min-width: 1024px) {

  :root { --gutter: 80px; --shell: 1120px; }

  .d-only { display: block; }
  .m-only { display: none; }

  /* -------------------------------------------------------------- type */
  .h2 { font-size: 36px; line-height: 49px; }
  .section-sub { font-size: 18px; line-height: 25px; }

  /* -------------------------------------------------------------- header */
  /* every child centres on y=54.5 of the 109px row, as drawn */
  .site-header__inner { min-height: 109px; padding-top: 0; gap: 0; }
  .brand { order: 0; margin: 0; }
  .brand img { width: 155px; }
  .burger { display: none; }

  .nav {
    order: 1;
    position: static;
    display: block;
    margin-left: 48px;
    background: none;
    opacity: 1;
    visibility: visible;
  }
  .nav__list { display: flex; align-items: center; gap: 22px; text-align: left; }
  /* 16px/600 uppercase: cap height solves to the 12.0px drawn in the comp.
     No vertical padding — it would lift the text off the shared centre line. */
  .nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;   /* chevron glyph lands 14.9px after the label, as drawn */
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    color: var(--white);
  }
  .nav__link.is-active { color: var(--white); }
  /* underline drawn at y 70.5–72.5 with the cap top at 48.7 -> 8px below the box */
  .nav__link.is-active::after {
    content: "";
    position: absolute;
    left: -8px;
    right: -8px;
    bottom: -8px;
    height: 2px;
    background: var(--lime);
  }
  .nav__link:hover { color: var(--lime); }
  .nav__link .ico { font-size: 5px; width: 2.2em; }

  .site-header__actions { order: 2; margin-left: auto; gap: 9px; }

  /* drawn 141x35: 15px lead, 82.5px label, 11.5px gap, 14.6px arrow, 17px tail */
  .btn--lime {
    height: 35px;
    border-radius: 7px;
    padding: 0 17px 0 15px;
    gap: 11.5px;
    font-size: 15px;
  }
  .btn .ico { font-size: 15px; }

  /* -------------------------------------------------------------- hero */
  .hero { height: 767px; }
  .hero__scrim {
    background: linear-gradient(180deg, rgba(95, 94, 94, 0) 78%, rgb(95, 94, 94) 100%);
  }

  /* -------------------------------------------------------------- services */
  .services {
    padding: 70px 0 50px;
    background-image: url("assets/services-bg.png");
    background-size: 100% 914px;
  }
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .services__intro { gap: 32px; align-content: start; margin: 0; padding-top: 3px; }

  .svc-card { border-radius: 20px; display: flex; flex-direction: column; }
  .svc-card__media img { height: 175px; }
  .svc-card__body { gap: 8px; padding: 19px; }
  .svc-card__icon { width: 39px; height: 39px; }
  .svc-card__icon .ico { font-size: 21px; }
  .svc-card__text { gap: 0; }
  .svc-card__title { font-size: 20px; line-height: 27px; }
  .svc-card__desc { font-size: 18px; margin-top: 8px; }
  .link-arrow { margin-top: 22px; }

  /* -------------------------------------------------------------- advantage */
  .advantage { padding: 48px 0 50px; }
  .advantage__lead {
    max-width: 490px;
    margin: 12px auto 50px;
    font-size: 20px;
    font-weight: 600;
    line-height: 27px;
  }
  .advantage__row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
  }
  .adv-card {
    flex: 0 1 auto;
    max-width: 252px;
    min-height: 293px;
    gap: 18px;
    padding: 52px 12px 30px;
  }
  .adv-card__icon .ico { font-size: 44px; }
  .adv-card__title { font-size: 20px; line-height: 27px; }
  .adv-card__desc { font-size: 18px; line-height: 25px; }

  /* -------------------------------------------------------------- legacy */
  .legacy { padding: 50px 0 53px; }
  .legacy__grid {
    display: grid;
    grid-template-columns: minmax(0, 555px) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
  }
  .legacy .eyebrow { margin-bottom: 30px; }
  .legacy__para { font-size: 18px; font-weight: 500; }
  .legacy__para:first-of-type { margin-top: 34px; }
  .legacy__para + .legacy__para { margin-top: 28px; }
  .legacy__points {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 36px;
    padding-top: 17px;
  }
  .point { gap: 12px; }
  .point__icon { width: 43px; height: 43px; }
  .point__icon .ico { font-size: 25px; }
  .point__title { font-size: 20px; line-height: 27px; margin-bottom: 6px; }
  .point__desc { font-size: 18px; font-weight: 500; }
  .legacy .btn--lg { height: 42px; margin-top: 42px; font-size: 15px; padding-inline: 22px; }
  .legacy__media { margin: 0; }
  .legacy__media img { width: 100%; max-width: 525px; margin-left: auto; }

  /* -------------------------------------------------------------- recognition */
  .recognition { padding: 53px 0 0; }
  .recognition .h2 { margin-bottom: 24px; }
  .recognition__row { gap: clamp(28px, 7vw, 107px); flex-wrap: wrap; }
  .recognition__row img { height: 109px; }

  /* -------------------------------------------------------------- sectors */
  .sectors { padding: 48px 0 0; }
  .sectors .eyebrow { margin-bottom: 22px; }
  .sectors .h2 { margin-bottom: 20px; }
  .sectors .section-sub { margin-bottom: 42px; }
  .sectors__grid { gap: 42px 20px; }
  .sector { order: 0; gap: 18px; }
  .sector img { height: 82px; }
  .sector span { font-size: 20px; line-height: 27px; }

  /* -------------------------------------------------------------- customers */
  .customers { padding: 55px 0 0; }
  .customers .eyebrow { margin-bottom: 22px; }
  .customers .h2 { margin-bottom: 48px; }
  .customers__row { gap: clamp(24px, 5vw, 75px); flex-wrap: wrap; }
  .customers__row img { height: 73px; }
  .customers__row--2 { margin-top: 37px; gap: clamp(24px, 4vw, 58px); }
  .customers__row--2 img { height: 103px; }

  /* -------------------------------------------------------------- insights */
  .insights { padding: 62px 0 0; }
  .insights__head { align-items: center; margin-bottom: 22px; }
  .insights__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .post__media img { height: 201px; }
  .post__meta { margin: 24px 0 20px; font-size: 13px; gap: 17px; }
  .tag { font-size: 10.5px; padding: 6px 13px; }
  .post__title { font-size: 20px; line-height: 27px; margin-bottom: 22px; }
  .post__excerpt { font-size: 18px; line-height: 25px; }
  .link-lime { font-size: 12px; }

  /* -------------------------------------------------------------- cta */
  .cta { padding: 50px 0 0; }
  .cta__panel { min-height: 372px; display: flex; align-items: center; }
  .cta__copy { padding: 0 0 0 50px; max-width: 470px; }
  .cta__title { margin: 22px 0 18px; font-size: 36px; line-height: 48.5px; }
  .cta__desc { max-width: 345px; font-size: 18px; line-height: 25px; }
  .cta__actions { gap: 8px; margin-top: 36px; }
  .btn--dark { height: 44px; font-size: 15px; padding-inline: 20px; }
  .btn--ghost { height: 43px; font-size: 15px; padding-inline: 20px; }
  .cta__ship {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 56%;
    max-width: 626px;
    margin: 0;
    z-index: 0;
  }

  /* -------------------------------------------------------------- footer */
  .site-footer { margin-top: 74px; }
  .site-footer__grid {
    grid-template-columns: minmax(0, 480px) minmax(0, 240px) minmax(0, 1fr);
    gap: 34px;
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .site-footer__logo { width: 169px; }
  .site-footer__tagline { margin-top: 28px; max-width: 430px; font-size: 19px; line-height: 27px; }
  .socials { gap: 12px; margin-top: 26px; }
  .socials .ico { font-size: 20px; }
  .site-footer__heading { font-size: 20px; margin-bottom: 20px; }
  .site-footer__col ul { gap: 10px; }
  .site-footer__col a { font-size: 19px; }
  .site-footer__bar p { padding: 20px 0; font-size: 13px; }
}

/* very small phones — keep the 4-up sector grid from overflowing */
@media (max-width: 360px) {
  .sectors__grid { gap: 20px 4px; }
  .sector span { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* ==========================================================================
   SERVICES MODULE
   Added for the 8 service pages. Measurements taken from the desktop comps
   (1280×2286–2882) and the mobile master (service_mob.svg, 390×3677).
   Nothing above this line was changed.
   ========================================================================== */

:root {
  --body-alt: #4B5563;   /* service overview paragraphs */
  --nav-panel: #fff;
}

/* ------------------------------------------------- services dropdown (mega) */
.nav__item.has-sub { position: relative; }

.mega {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mega__link {
  display: block;
  font-weight: 500;
  color: var(--heading);
}

/* ------------------------------------------------------------- service hero */
.svc-hero {
  position: relative;
  height: 406px;
  overflow: hidden;
  background: #6c7378;
}
.svc-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svc-hero__scrim {
  position: absolute;
  inset: 0;
  opacity: .3;
  background: linear-gradient(180deg, rgba(20, 22, 23, .35) 0%, rgb(20, 22, 23) 100%);
}
.svc-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 145px;
}
.svc-hero__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: -.01em;
  color: var(--white);
}
.svc-hero__sub {
  margin-top: 14px;
  max-width: 300px;
  font-size: 12.25px;
  font-weight: 500;
  line-height: 19px;
  color: var(--white);
}
.btn--hero {
  height: 35px;
  margin-top: 20px;
  padding-inline: 16px;
  border-radius: 6px;
}

/* --------------------------------------------------------- service overview */
.svc-overview { padding: 23px 0 30px; }
.svc-overview .eyebrow { margin-bottom: 21px; }
.svc-overview__para {
  margin-top: 22px;
  font-size: 12.25px;
  font-weight: 500;
  line-height: 25px;
  color: var(--body-alt);
}
.svc-overview__media { margin-top: 33px; }
.svc-overview__media img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.svc-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 10px;
  margin-top: 30px;
}
.svc-checks li {
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-size: 12.25px;
  font-weight: 500;
  line-height: 17px;
  color: var(--ink);
}
.svc-checks .ico {
  flex: none;
  width: 11px;
  height: 8px;
  color: var(--lime);
  transform: translateY(-1px);
}

/* ---------------------------------------------------------------- partners */
.partners { padding: 34px 0 40px; background: rgba(244, 244, 244, .51); }
.partners .eyebrow { margin-bottom: 20px; }
.partners .h2 { margin-bottom: 28px; }

.partners__card {
  border-radius: 17px;
  background: var(--white);
  padding: 20px;
}
.partners__head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
}
.partners__badge {
  display: grid;
  place-items: center;
  width: 51px;
  height: 51px;
  border-radius: 5.5px;
  background: var(--lime);
  color: var(--white);
  flex: none;
}
.partners__badge .ico { font-size: 33px; }
.partners__sub {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}
.partners__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.partners__grid li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 45px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink);
}
.partners__grid li::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

/* ---------------------------------------------------------------- process */
.process { padding: 40px 0 44px; background: var(--white); }
.process .h2 { margin-bottom: 34px; }

.process__row {
  display: grid;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 0 16px;
  text-align: center;
  background: var(--white);
}
.step__mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  background: var(--white);
  color: var(--lime);
  flex: none;
}
.step__mark .ico { width: 20px; height: 12px; }
.step__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}
.step__desc {
  font-size: 12.25px;
  font-weight: 500;
  line-height: 19px;
  color: var(--body);
}

/* service CTA has no eyebrow — heading sits at the top of the panel */
.cta__copy > .cta__title:first-child { margin-top: 0; }

/* ==========================================================================
   DESKTOP — services module
   ========================================================================== */
@media (min-width: 1024px) {

  /* ---------------------------------------------------- dropdown behaviour */
  .nav__link--sub { cursor: pointer; }

  .mega {
    position: absolute;
    top: calc(100% + 19px);
    left: -10px;
    z-index: 40;
    width: 363px;
    padding: 10px;
    border-radius: 13px;
    background: var(--nav-panel);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  /* bridge the gap so the pointer can travel from the link to the panel */
  .nav__item.has-sub::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 363px;
    height: 22px;
  }
  .nav__item.has-sub:hover .mega,
  .nav__item.has-sub:focus-within .mega,
  .mega.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mega__link {
    padding: 12px 10px;
    border-radius: 8px;
    font-size: 18px;
    line-height: 1.15;
    color: var(--heading);
    transition: background-color .16s ease, color .16s ease;
  }
  .mega__link:hover { background: rgba(196, 227, 29, .18); }
  .mega__link.is-current { background: rgba(196, 227, 29, .3); font-weight: 600; }

  /* active parent gets the same lime underline as the homepage nav */
  .nav__link--sub.is-active { position: relative; }
  .nav__link--sub.is-active::after {
    content: "";
    position: absolute;
    left: -8px;
    right: 12px;
    bottom: 12px;
    height: 2px;
    background: var(--lime);
  }

  /* ---------------------------------------------------------- service hero */
  .svc-hero { height: 498px; }
  .svc-hero__inner { padding-top: 174px; }
  .svc-hero__title {
    font-size: 72px;
    line-height: 78px;
    letter-spacing: .01em;
  }
  .svc-hero__sub {
    margin-top: 20px;
    max-width: 720px;
    font-size: 20px;
    line-height: 28px;
  }
  .btn--hero {
    height: 44px;
    margin-top: 30px;
    padding-inline: 30px;
    font-size: 15px;
  }

  /* ------------------------------------------------------ service overview */
  .svc-overview { padding: 53px 0 35px; }
  .svc-overview__grid {
    display: grid;
    grid-template-columns: minmax(0, 586px) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
  }
  .svc-overview .eyebrow { margin-bottom: 28px; }
  .svc-overview__para { margin-top: 28px; font-size: 18px; }
  .svc-overview__media { margin-top: 0; }
  .svc-overview__media img {
    width: 100%;
    max-width: 528px;
    height: auto;
    aspect-ratio: 528 / 474;
    margin-left: auto;
  }
  .svc-checks {
    gap: 14px 24px;
    margin-top: 34px;
    max-width: 560px;
  }
  .svc-checks li { font-size: 18px; line-height: 25px; gap: 10px; }
  .svc-checks .ico { transform: translateY(-2px); }

  /* ------------------------------------------------------------- partners */
  .partners { padding: 54px 0 50px; }
  .partners .eyebrow { margin-bottom: 22px; }
  .partners .h2 { margin-bottom: 57px; }
  .partners__card { padding: 20px; max-width: 979px; margin-inline: auto; }
  .partners__head { gap: 11px; margin-bottom: 21px; }
  .partners__sub { font-size: 20px; }
  .partners__grid[data-cols="4"] { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .partners__grid[data-cols="3"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .partners__grid li { min-height: 49px; font-size: 18px; }

  /* -------------------------------------------------------------- process */
  .process { padding: 62px 0 50px; }
  .process .h2 { margin-bottom: 57px; }
  .process__row {
    position: relative;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
  }
  /* lime connector, revealed only in the gaps between the white step cards */
  .process__row::before {
    content: "";
    position: absolute;
    top: 128px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--lime);
    opacity: .62;
    z-index: 0;
  }
  .step {
    position: relative;
    z-index: 1;
    gap: 0;
    padding: 0 12px;
  }
  .step__title { margin-top: 30px; font-size: 20px; line-height: 27px; }
  .step__desc { margin-top: 12px; font-size: 18px; line-height: 25px; }
}

/* ==========================================================================
   MOBILE NAVIGATION — white drawer with services accordion (Group_24.svg)
   ========================================================================== */
@media (max-width: 1023px) {

  /* Group_24.svg: a translucent white card, rx 13, inset 16px, starting at
     y=118 — not a full-bleed panel. The hero and logo stay visible behind it. */
  .nav {
    position: fixed;
    top: 118px;
    left: 16px;
    right: 16px;
    z-index: 60;
    display: block;
    max-height: calc(100vh - 134px);
    padding: 26px 17px 22px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 13px;
    background: rgba(255, 255, 255, .83);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    place-items: stretch;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .26s ease, transform .26s ease, visibility .26s ease;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

  .nav__list { display: block; text-align: left; }
  .nav__list > li + li { margin-top: 0; }

  .nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 38px;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: var(--heading);
  }
  .nav__link.is-active { color: var(--heading); }
  .nav__link--sub .ico { font-size: 5px; width: 1.9em; transition: transform .26s ease; }
  .nav__link--sub[aria-expanded="true"] .ico { transform: rotate(180deg); }

  /* accordion panel */
  .mega {
    overflow: hidden;
    max-height: 0;
    transition: max-height .3s ease;
  }
  .mega__link {
    display: block;
    padding: 7px 0;
    font-size: 11.7px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--heading);
    text-transform: none;
    letter-spacing: 0;
  }
  .mega__link.is-current { color: #7d9412; font-weight: 700; }


  /* burger flips to a close icon and must sit above the drawer */
  .burger { position: relative; z-index: 70; }
  body.nav-open .burger span { background: var(--heading); }

  /* the drawer covers the page, so lock scroll behind it */
  body.nav-open { overflow: hidden; }
}

/* mobile: partners + process follow the mobile master */
@media (max-width: 1023px) {
  .partners__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process__row { grid-template-columns: 1fr; }
  .step { padding: 0; }
}

@media (max-width: 400px) {
  .svc-checks { grid-template-columns: 1fr; }
  .partners__grid { grid-template-columns: 1fr; }
}

/* mobile service image matches the mobile master's 358x267 proportions */
@media (max-width: 1023px) {
  .svc-overview__media img { aspect-ratio: 358 / 267; height: auto; }
}

/* ==========================================================================
   ABOUT US PAGE
   Measurements from About_us.svg (1280×5594) and About_us_mob.svg (390×6542).
   The advantage row, sectors grid, CTA and footer are reused verbatim from the
   homepage; only genuinely new components are defined here.
   ========================================================================== */

:root { --tint: #F8FAF5; --hairline: #F9FAFB; }

/* the About comp places the advantage row on white — no grey band */
body[data-page="about"] .advantage { background: none; }

/* --------------------------------------------------------------- hero pill */
.pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .24);
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .125em;
  text-transform: uppercase;
  color: var(--white);
}

/* --------------------------------------------------------------- about hero */
.about-hero {
  position: relative;
  height: 576px;
  overflow: hidden;
  background: #6c7378;
}
.about-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero__scrim {
  position: absolute;
  inset: 0;
  opacity: .45;
  background: linear-gradient(180deg, rgba(20, 22, 23, .3) 0%, rgb(20, 22, 23) 100%);
}
.about-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 184px;
}
.about-hero__title {
  margin-top: 25px;
  font-size: 28px;
  font-weight: 700;
  line-height: 38.4px;
  letter-spacing: .01em;
  color: var(--white);
}
.about-hero__sub {
  margin-top: 20px;
  max-width: 344px;
  font-size: 12.25px;
  font-weight: 500;
  line-height: 25px;
  color: var(--white);
}
.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.btn--glass {
  border: 1px solid #F6F8FF;
  background: rgba(255, 255, 255, .26);
  color: var(--white);
}
body[data-page="about"] .btn--hero { font-size: 9px; }

/* -------------------------------------------------------------------- story */
.story { padding: 40px 0 44px; }
.story__grid { display: grid; gap: 34px; }
.story .eyebrow { margin-bottom: 22px; }

.story__title {
  font-size: 24.5px;
  font-weight: 700;
  line-height: 33px;
  letter-spacing: -.01em;
  color: var(--heading);
}
.story__sub {
  margin-top: 30px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading);
}
.story__para {
  margin-top: 14px;
  font-size: 12.25px;
  font-weight: 500;
  line-height: 25px;
  color: var(--body);
}

/* overlapping photo pair: framed shot behind, larger shot in front */
.story__media { position: relative; padding-top: 42px; }
.story__frame {
  position: absolute;
  top: 0;
  left: 94.7px;
  margin: 0;
  width: 263.3px;
  padding: 0 0 12px 12px;
  background: var(--white);
}
.story__img { display: block; width: 100%; height: auto; object-fit: cover; }
.story__img--a { width: 278.2px; }
.story__img--b { width: 251.3px; }

/* ---------------------------------------------------------------------- why */
.why { padding: 34px 0 40px; }
.why .eyebrow { margin-bottom: 20px; }
.why .h2 { margin-bottom: 18px; }
.why__lead {
  max-width: 800px;
  margin-inline: auto;
  font-size: 12.25px;
  font-weight: 500;
  line-height: 25px;
  color: var(--body);
  text-align: center;
}
.why__points { display: grid; gap: 22px; margin-top: 30px; }
.why__point-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--heading);
}
.why__point-desc {
  margin-top: 8px;
  font-size: 12.25px;
  font-weight: 500;
  line-height: 25px;
  color: var(--body);
}

.why__row { display: grid; gap: 12px; margin-top: 34px; }
.why-card {
  padding: 11.5px 12px 16px;
  border: 1px solid var(--chip);
  border-radius: 16.5px;
  background: var(--white);
}
.why-card__icon { display: block; }
.why-card__icon img { width: 30px; height: 30px; border-radius: 15px; }
.why-card__title {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}
.why-card__desc {
  margin-top: 10px;
  font-size: 12.25px;
  font-weight: 500;
  line-height: 25px;
  color: var(--body);
}

/* -------------------------------------------------------------- capabilities */
.capabilities { padding: 34px 0 40px; }
.capabilities .eyebrow { margin-bottom: 22px; }
.capabilities__lead {
  margin-top: 16px;
  font-size: 12.25px;
  font-weight: 500;
  line-height: 25px;
  color: var(--body);
}
.capabilities__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  margin-top: 30px;
}
.cap-card {
  padding: 20px 16px;
  border: 1px solid var(--hairline);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--card-shadow);
}
.cap-card__icon { display: block; color: var(--lime); }
.cap-card__icon .ico { width: 30px; height: 30px; }
.cap-card__title {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}
.cap-card__desc {
  margin-top: 10px;
  font-size: 12.25px;
  font-weight: 500;
  line-height: 21px;
  color: var(--body);
}

/* ------------------------------------------- supply panel (desktop comp only) */
.supply { padding: 0 0 40px; }
.supply__panel {
  border-radius: 20px;
  background: var(--tint);
  padding: 33px 31px 38px;
}
.supply__eyebrow {
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  color: var(--lime);
}
.supply__title {
  margin-top: 14px;
  font-size: 36px;
  font-weight: 700;
  line-height: 49px;
  letter-spacing: -.01em;
  color: var(--heading);
}
.supply__rule {
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 22px;
  border-radius: 2px;
  background: var(--lime);
}
.supply__para {
  margin-top: 25px;
  max-width: 510px;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  color: var(--body);
}
.supply__stats {
  display: flex;
  gap: 30px;
  margin-top: 34px;
}
.supply-stat {
  display: grid;
  justify-items: center;
  gap: 0;
  text-align: center;
}
.supply-stat__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  color: var(--lime);
}
.supply-stat__icon .ico { width: 27px; height: 27px; }
.supply-stat__big {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--lime);
}
.supply-stat__small {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}

/* ------------------------------------------------------------------- values */
.values { padding: 34px 0 40px; }
.values .eyebrow { margin-bottom: 20px; }
.values .h2 { margin-bottom: 34px; }
.values__grid { display: grid; gap: 8px; }
.value-card {
  padding: 18px;
  border-radius: 17px;
  background: var(--white);
  box-shadow: var(--card-shadow);
}
.value-card__icon { display: block; }
.value-card__icon img { width: 39px; height: 36px; }
.value-card__title {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}
.value-card__desc {
  margin-top: 10px;
  font-size: 12.25px;
  font-weight: 500;
  line-height: 21px;
  color: var(--body);
}

/* ==========================================================================
   DESKTOP — About Us
   ========================================================================== */
@media (min-width: 1024px) {

  /* ------------------------------------------------------------------ hero */
  .about-hero { height: 779px; }
  .about-hero__inner { padding-top: 219px; }
  .pill { padding: 9px 16px; border-radius: 13.5px; font-size: 12px; }
  .about-hero__title {
    margin-top: 21px;
    font-size: 72px;
    line-height: 73px;
  }
  .about-hero__sub {
    margin-top: 24px;
    max-width: 700px;
    font-size: 20px;
    line-height: 28px;
  }
  .about-hero__actions { margin-top: 30px; gap: 8px; }
  .btn--glass { border-radius: 6px; }
  body[data-page="about"] .btn--hero { font-size: 15px; padding-inline: 0; width: 199px; justify-content: center; }

  /* ----------------------------------------------------------------- story */
  .story { padding: 53px 0 45px; }
  .story__grid {
    grid-template-columns: minmax(0, 486px) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
  }
  .story .eyebrow { margin-bottom: 27px; }
  .story__title { font-size: 62px; line-height: 70px; letter-spacing: .01em; }
  .story__sub { margin-top: 36px; font-size: 20px; }
  .story__para { margin-top: 12px; font-size: 18px; }

  /* photo pair: 356.8×339.8 in front, framed 337.7×260.2 behind and offset */
  .story__media { padding-top: 32px; height: 400px; }
  .story__img--a { width: 356.8px; }
  .story__img--b { width: 325.7px; }
  .story__frame {
    top: 0;
    left: 148.3px;
    width: 337.7px;
  }

  /* ------------------------------------------------------------------- why */
  .why { padding: 55px 0 50px; }
  .why .eyebrow { margin-bottom: 22px; }
  .why .h2 { margin-bottom: 22px; }
  .why__lead { max-width: 800px; font-size: 18px; }
  .why__points { gap: 34px; margin-top: 42px; }
  .why__point-title { font-size: 20px; line-height: 27px; }
  .why__point-desc { margin-top: 6px; font-size: 18px; max-width: 660px; }

  .why__row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14.3px;
    margin-top: 40px;
  }
  .why-card { padding: 17.5px 18px 20px; }
  .why-card__icon img { width: 42px; height: 41px; border-radius: 20.5px; }
  .why-card__title { margin-top: 14px; font-size: 20px; line-height: 27px; }
  .why-card__desc { margin-top: 8px; font-size: 18px; }

  /* ---------------------------------------------------------- capabilities */
  .capabilities { padding: 50px 0 50px; }
  .capabilities .eyebrow { margin-bottom: 24px; }
  .capabilities__lead { margin-top: 18px; max-width: 600px; font-size: 18px; }
  .capabilities__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 11px;
    margin-top: 35px;
  }
  .cap-card { padding: 27px; }
  .cap-card__icon .ico { width: 36px; height: 36px; }
  .cap-card__title { margin-top: 28px; font-size: 20px; line-height: 27px; }
  .cap-card__desc { margin-top: 12px; font-size: 18px; line-height: 25px; }

  /* --------------------------------------------------------- supply panel */
  .supply__panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 506px);
    gap: 40px;
    align-items: start;
    padding: 33px 31px 38px;
  }
  .supply__stats { gap: 30.7px; margin-top: 60px; justify-content: flex-end; }
  .supply-stat { width: 127px; }

  /* ---------------------------------------------------------------- values */
  .values { padding: 50px 0 50px; }
  .values .eyebrow { margin-bottom: 22px; }
  .values .h2 { margin-bottom: 57px; }
  .values__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 23.5px;
  }
  .value-card { padding: 18px; }
  .value-card__title { margin-top: 32px; font-size: 20px; line-height: 27px; }
  .value-card__desc { margin-top: 12px; font-size: 18px; line-height: 25px; }
}

/* the tinted supply panel exists only in the desktop comp */
@media (max-width: 1023px) {
  .supply { display: none; }
}

/* ==========================================================================
   CONTACT PAGE
   From Contact_us.svg (1280×1265) and Contact_us_mob.svg (390×1684).
   This page has no hero image and no CTA panel, so the header runs as a solid
   white band with dark navigation.
   ========================================================================== */

:root { --input-border: #D9D9D9; --placeholder: #6B7280; }

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

/* ------------------------------------------------- solid header (no hero) */
.site-header--solid {
  position: static;
  background: var(--white);
}
.site-header--solid .site-header__inner { min-height: 109px; padding-top: 29px; }
.site-header--solid .nav__link { color: var(--heading); }
.site-header--solid .lang-select__toggle { border-color: var(--ink); color: var(--ink); }
/* the drawer sits over white page content here, so keep it opaque */
.site-header--solid .nav {
  background: var(--white);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .12);
}

/* -------------------------------------------------------------- page intro */
.contact-intro { padding: 23px 0 0; }
.contact-intro .eyebrow { margin-bottom: 16px; }

/* ------------------------------------------------------------------ layout */
.contact { padding: 28px 0 14px; }
.contact__grid { display: grid; gap: 34px; }

/* -------------------------------------------------------------------- form */
.qform {
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 0 5px rgba(0, 0, 0, .25);
  padding: 22.7px 20.5px 20px;
}
/* on mobile a row collapses to one column, so it needs the field gap itself */
.qform__row { display: grid; grid-template-columns: 1fr; gap: 22.8px; }

.field { margin: 0; }
/* only siblings that are DIRECT children of the form are spaced — fields inside
   a .qform__row are grid items and must stay on the same baseline */
.qform > .field + .field,
.qform > .qform__row + .qform__row,
.qform > .qform__row + .field,
.qform > .field + .qform__row { margin-top: 22.8px; }

.field__label {
  display: block;
  margin-bottom: 13px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: #000;
}
.field__control {
  position: relative;
  display: block;
}
.field__icon {
  position: absolute;
  top: 50%;
  left: 8.5px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 18px;
  color: var(--placeholder);
  pointer-events: none;
}
.field__icon .ico { width: 100%; height: auto; }

.field__input {
  width: 100%;
  height: 39px;
  padding: 0 12px 0 36.6px;
  border: 1px solid var(--input-border);
  border-radius: 11.5px;
  background: var(--white);
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color .16s ease, box-shadow .16s ease;
}
/* fields without a leading icon sit flush, as drawn */
.field__control--select .field__input,
.field__input--area { padding-left: 8.2px; }

.field__input::placeholder { color: var(--placeholder); opacity: 1; }
.field__input:focus {
  outline: none;
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(196, 227, 29, .35);
}
.field__input--area {
  height: 110px;
  padding-top: 11px;
  padding-bottom: 11px;
  resize: vertical;
  line-height: 1.5;
}
.field__input--select {
  padding-right: 34px;
  color: var(--placeholder);
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.field__input--select:valid { color: var(--ink); }
.field__chevron {
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
  color: var(--placeholder);
  pointer-events: none;
}
.field__chevron .ico { font-size: 5px; width: 1.7em; }

.qform__submit {
  width: 100%;
  max-width: 460px;
  height: 44px;
  margin-top: 20.5px;
  gap: 10px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
}
.qform__submit .ico { width: 17px; height: 17px; }
.qform__status {
  margin-top: 12px;
  font-size: 12.25px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--body);
}
.qform__status[data-state="ok"] { color: #4d6b00; }
.qform__status[data-state="error"] { color: #b3261e; }

/* ------------------------------------------------------------- info column */
.contact-info .eyebrow { margin-bottom: 20px; }
.contact-info__para {
  font-size: 12.25px;
  font-weight: 500;
  line-height: 25px;
  color: var(--body);
}
.contact-info__list { display: grid; gap: 20px; margin-top: 30px; }
.contact-info__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  color: var(--ink);
}
.contact-info__list a { color: inherit; }
.contact-info__list a:hover { color: #4d6b00; text-decoration: underline; }
.contact-info__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 18px;
  height: 22px;
  color: var(--heading);
}
.contact-info__icon .ico { width: 100%; height: auto; }

/* ==========================================================================
   DESKTOP — Contact
   ========================================================================== */
@media (min-width: 1024px) {

  .site-header--solid .site-header__inner { min-height: 125px; padding-top: 0; padding-bottom: 10px; }
  .site-header--solid .nav__link:hover { color: #6f8a00; }
  .site-header--solid .nav__link.is-active { color: var(--heading); }

  .contact-intro { padding: 53px 0 0; }
  .contact-intro .eyebrow { margin-bottom: 21px; }

  .contact { padding: 28px 0 50px; }
  .contact__grid {
    grid-template-columns: minmax(0, 596px) minmax(0, 1fr);
    gap: 30px;
    align-items: start;
  }

  .qform { padding: 42.5px 30.5px 40px; }
  .qform__row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 21px; }
  .qform__submit { margin: 20.5px auto 0; }

  .contact-info { padding-top: 3px; }
  .contact-info .eyebrow { margin-bottom: 24px; }
  .contact-info__para { font-size: 18px; max-width: 440px; }
  .contact-info__list { gap: 22px; margin-top: 40px; }
  .contact-info__list li { font-size: 18px; line-height: 26px; gap: 11px; }
  .contact-info__icon { width: 20px; height: 26px; }
}

/* ==========================================================================
   LANGUAGE SELECTOR
   Replaces the static language pill. One component, two instances per page
   (header on desktop, drawer on mobile) driven by the same CSS and JS.
   ========================================================================== */

.lang-select { position: relative; }

.lang-select__toggle {
  display: inline-flex;
  align-items: center;
  gap: 9.2px;
  height: 35px;
  padding: 0 16.8px 0 10.5px;
  border: 1px solid var(--heading);
  border-radius: 6.5px;
  background: rgba(255, 255, 255, .10);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  backdrop-filter: blur(8px) saturate(140%);
  color: var(--heading);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: border-color .16s ease, background-color .16s ease;
}
.lang-select__toggle .lang-select__label { margin-right: 7.6px; }
.lang-select__toggle:hover { background: rgba(196, 227, 29, .16); }
.lang-select__toggle .ico {
  font-size: 5px;
  width: 1.7em;
  transition: transform .22s ease;
}
.lang-select__toggle[aria-expanded="true"] .ico { transform: rotate(180deg); }

.lang-select__label { font-variant-numeric: tabular-nums; }

/* flags -------------------------------------------------------------------- */
.flag-wrap {
  flex: none;
  display: block;
  width: 20px;
  height: 15px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .12);
}
.flag { display: block; width: 100%; height: 100%; }

/* menu --------------------------------------------------------------------- */
.lang-select__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 50;
  width: 218px;
  max-height: 320px;
  overflow-y: auto;
  margin: 0;
  padding: 8px;
  border-radius: 13px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .16);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.lang-select.is-open .lang-select__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-select__item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  color: var(--heading);
  transition: background-color .14s ease;
}
.lang-select__item:hover,
.lang-select__item:focus-visible { background: rgba(196, 227, 29, .18); }
.lang-select__item.is-selected {
  background: rgba(196, 227, 29, .3);
  font-weight: 700;
}

/* the header sits over a photo on every page except Contact, so the pill and
   its chevron invert there */
.site-header:not(.site-header--solid) .lang-select__toggle {
  border-color: var(--white);
  color: var(--white);
}
.site-header:not(.site-header--solid) .lang-select__toggle:hover {
  background: rgba(255, 255, 255, .16);
}

/* Below 1024px the single selector is relocated into the drawer by script.js
   (Group_24.svg draws it there). These rules apply wherever it lands. */
.nav > .lang-select { margin-top: 30px; width: 100%; }
.nav > .lang-select .lang-select__toggle {
  width: 100%;
  justify-content: flex-start;
  background: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-color: var(--heading);
  color: var(--heading);
}
.nav > .lang-select .lang-select__toggle .ico { margin-left: auto; }
.nav > .lang-select .lang-select__menu { right: auto; left: 0; width: 100%; }

/* if script.js never runs, the pill must not crowd the mobile header bar */
@media (max-width: 1023px) {
  .site-header__actions .lang-select { display: none; }
}

@media (min-width: 1024px) {
  /* the desktop pill keeps the drawn 126.7x34 proportions plus the flag */
  .lang-select__menu { width: 224px; }
}
