/* ============ Tokens ============ */
/* Aligned to the approved homepage system (index.html): lime accent,
   charcoal-navy, warm cream, sharp 2px corners, IBM Plex Sans / Archivo.
   styles.css is loaded only by quote.html, so these are quote-tool tokens. */
:root {
  --navy-deep: #0B1D26;   /* charcoal-navy — primary dark */
  --navy: #10303D;         /* dark surface / hover */
  --navy-soft: #16414F;    /* lighter dark surface */
  --lime: #C8E64B;         /* primary accent */
  --lime-bright: #D8F168;  /* accent hover */
  --lime-dim: rgba(200,230,75,.14); /* tint fill for selected/hover states */
  --lime-line: rgba(200,230,75,.55);

  --canvas: #F7F5F0;       /* warm cream page ground */
  --panel: #EDEAE1;        /* warm panel / chip ground */
  --ink: #0B1D26;
  --ink-soft: #4C5C62;
  --ink-mute: #7A8A8F;     /* mono labels / captions */
  --cream: #F7F5F0;
  --error: #B3261E;
  --line: #D9D4C8;         /* warm card border */
  --line-soft: #E4E0D6;
  --shadow: 0 20px 50px -20px rgba(11,29,38,.35);
  --radius: 2px;
  --font-display: "Archivo", sans-serif;
  --font-hero: "Archivo", sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  /* Legacy aliases — existing quote.css rules resolve these names.
     Teal selected-states now read as the homepage's lime language;
     "deep" variants map to navy so on-light text stays legible. */
  --teal: #C8E64B;
  --teal-deep: #10303D;
  --gold: #C8E64B;
  --gold-bright: #D8F168;
  --gold-deep: #10303D;
}

@media (prefers-color-scheme: dark) {
  :root { color-scheme: dark; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ============ Type helpers ============ */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 0 0 14px;
}
.eyebrow--dark { color: var(--teal-deep); }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.12;
  color: var(--navy-deep);
  margin: 0 0 14px;
  max-width: 20ch;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 44px;
  line-height: 1.6;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 12px 22px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn--lg { padding: 15px 28px; font-size: 0.98rem; }
.btn--full { width: 100%; }
.btn--gold { background: var(--lime); color: var(--navy-deep); border-radius: var(--radius); }
.btn--gold:hover { background: var(--lime-bright); transform: translateY(-2px); }
.btn--outline { border-color: rgba(255,255,255,.4); color: var(--navy-deep); background: rgba(255,255,255,.6); border-radius: var(--radius); }
.btn--outline:hover { border-color: var(--lime); background: #fff; transform: translateY(-2px); }
.btn--ghost { border-color: rgba(244,239,228,.5); color: var(--cream); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

/* ============ Topbar ============ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(11,35,64,.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(244,239,228,.08);
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand__mark { height: 46px; width: auto; flex-shrink: 0; object-fit: contain; }
.brand__word { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .01em;
  color: var(--cream);
}
.brand__name em {
  font-style: normal;
  color: var(--gold);
  margin-left: 6px;
  font-weight: 700;
}
.brand__tag {
  font-size: .66rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
}

.nav { display: flex; gap: 28px; }
.nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  color: rgba(244,239,228,.85);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}
.nav a:hover { color: var(--gold-bright); border-color: var(--gold); }

.topbar__actions { display: flex; align-items: center; gap: 16px; }
.phone-chip {
  display: flex; align-items: center; gap: 8px;
  color: var(--cream);
  font-size: .88rem;
  font-weight: 600;
}
.phone-chip svg { width: 16px; height: 16px; color: var(--teal); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,35,64,.94) 0%, rgba(11,35,64,.8) 32%, rgba(11,35,64,.35) 58%, rgba(11,35,64,.08) 78%),
    linear-gradient(180deg, rgba(11,35,64,.6) 0%, rgba(11,35,64,0) 20%, rgba(11,35,64,0) 72%, rgba(11,35,64,.55) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 118px;
}

.hero__copy { max-width: 620px; }

.hero__headline {
  font-family: var(--font-hero);
  font-weight: 400;
  font-size: clamp(3.4rem, 7vw, 6rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  color: var(--cream);
  margin: 0 0 34px;
  text-transform: uppercase;
}
.hero__headline-line, .hero__headline-accent { display: block; }
.hero__headline-accent { color: var(--gold); }

.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__ctas .btn--gold {
  box-shadow: 0 14px 32px -10px rgba(204,154,60,.6);
}
.hero__ctas .btn--gold:hover {
  box-shadow: 0 18px 40px -10px rgba(227,178,78,.7);
}

/* ---- Hero entrance (one authored focal sequence, page load only) ---- */
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-line {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-wipe {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}
.hero .eyebrow {
  animation: hero-rise .55s cubic-bezier(.16,1,.3,1) both;
  animation-delay: .05s;
}
.hero__headline-line {
  animation: hero-line .65s cubic-bezier(.16,1,.3,1) both;
  animation-delay: .15s;
}
.hero__headline-accent {
  animation: hero-line .65s cubic-bezier(.16,1,.3,1) both;
  animation-delay: .32s;
}
.hero__ctas {
  animation: hero-rise .6s cubic-bezier(.16,1,.3,1) both;
  animation-delay: .5s;
}
.hero__photo {
  animation: hero-wipe .8s cubic-bezier(.16,1,.3,1) both;
  animation-delay: .3s;
  will-change: clip-path;
}

/* ============ Trust strip ============ */
.trust-strip { background: var(--gold-metal-wide); }
.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px 28px;
  padding: 18px 24px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .86rem;
  letter-spacing: .01em;
}
.trust-item svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ============ Services ============ */
.services { padding: 96px 0; background: var(--panel); }
.services__group-title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 18px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.services__group-title::before {
  content: '';
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: currentColor;
}
.services__group-title--procurement { color: var(--teal-deep); }
.services__group-title--logistics { color: var(--gold-deep); }
.services__grid:first-of-type + .services__partners { margin-top: -8px; }
.services__grid {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}
.services__grid--quad { grid-template-columns: repeat(4, 1fr); }
.services__partners {
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.6;
  max-width: 70ch;
  margin: -18px 0 44px;
  border-left: 2px solid var(--teal);
  padding-left: 14px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin: 16px 0 8px;
}
.service-card p { color: var(--ink-soft); line-height: 1.55; margin: 0; font-size: .92rem; }
.service-card__quote-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  font-size: .86rem;
  color: var(--teal-deep);
}
.service-card__quote-link:hover { text-decoration: underline; }

.service-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
}
.service-card__icon svg { width: 24px; height: 24px; }

.services__grid--procurement .service-card__icon { background: var(--teal-deep); }
.services__grid--logistics .service-card__icon { background: var(--gold-metal); }

/* ============ Who we serve ============ */
.serve { position: relative; overflow: hidden; padding: 96px 0; background: var(--navy-deep); }
.serve__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.serve > .wrap { position: relative; z-index: 1; }
.serve .eyebrow--dark { color: var(--teal); }
.serve .section-title { color: var(--cream); }
.serve__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.serve-card {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: left;
  box-shadow: 0 18px 40px -22px rgba(0,0,0,.6);
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease;
}
.serve-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 52px -18px rgba(0,0,0,.6);
}
.serve-card__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.serve-card__icon svg { width: 22px; height: 22px; }
.serve-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 0 0 6px;
}
.serve-card p { font-size: .88rem; color: var(--ink-soft); margin: 0; line-height: 1.5; }

.serve-card--teal .serve-card__icon { background: var(--teal-deep); }
.serve-card--teal h3 { color: var(--teal-deep); }
.serve-card--gold .serve-card__icon { background: var(--gold-metal); }
.serve-card--gold h3 { color: var(--gold-deep); }

/* ============ Poster campaign marquee ============ */
.poster-campaign { padding: 44px 0 36px; background: var(--navy-deep); overflow: hidden; }
.poster-campaign .eyebrow--dark { color: var(--teal); margin-bottom: 10px; }
.poster-campaign .section-title {
  color: var(--cream);
  max-width: none;
  font-weight: 900;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.poster-campaign__accent { display: block; color: var(--gold); }
.poster-campaign .section-lead { color: rgba(244,239,228,.7); margin-bottom: 0; max-width: 64ch; }

.poster-marquee {
  margin-top: 28px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.poster-marquee__track {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  width: max-content;
  animation: marquee 120s linear infinite;
}
.poster-marquee:hover .poster-marquee__track,
.poster-marquee:focus-within .poster-marquee__track {
  animation-play-state: paused;
}
.poster-marquee__item {
  flex-shrink: 0;
  width: 300px;
}
.poster-marquee__item img {
  width: 300px;
  height: 404px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 16px 34px -14px rgba(0,0,0,.6);
  border: 1px solid rgba(28,140,134,.25);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.poster-marquee__item:hover img {
  transform: translateY(-8px);
  border-color: rgba(28,140,134,.6);
  box-shadow: 0 28px 52px -16px rgba(20,102,97,.55), 0 0 0 1px rgba(28,140,134,.3);
}
.poster-marquee__item span {
  display: block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .88rem;
  color: var(--teal);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ Values band ============ */
.values { background: var(--panel); padding: 64px 0; }
.values__lead {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--gold-deep);
  text-align: center;
  margin: 0 0 40px;
  letter-spacing: .02em;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value {
  border-top: 2px solid var(--gold);
  padding-top: 16px;
}
.value span {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-deep);
  margin-bottom: 8px;
}
.value p { color: var(--ink-soft); font-size: .9rem; line-height: 1.55; margin: 0; }

/* ============ CTA band ============ */
.cta-band { background: var(--gold-metal-wide); padding: 56px 0; }
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--navy-deep);
  margin: 0 0 6px;
}
.cta-band p { margin: 0; color: rgba(11,35,64,.75); font-weight: 600; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band .btn--gold { background: var(--navy-deep); color: var(--cream); }
.cta-band .btn--gold:hover { background: #0e2b52; }
.cta-band .btn--ghost { border-color: var(--navy-deep); color: var(--navy-deep); }
.cta-band .btn--ghost:hover { border-color: var(--navy-deep); background: rgba(11,35,64,.08); }

/* ============ Contact ============ */
.contact { padding: 96px 0; background: var(--panel); }
.contact__inner {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 48px;
}

.quote-form { margin-top: 8px; }
.form-row { margin-bottom: 18px; }
.form-row--split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  border-color: var(--teal);
  outline: none;
}
.form-row textarea { resize: vertical; }
.form-status { min-height: 1.4em; font-weight: 600; color: var(--teal-deep); margin-top: 12px; }

.contact__direct {
  background: var(--navy-deep);
  border-radius: var(--radius);
  padding: 36px 30px;
  align-self: start;
}
.contact__direct h3 {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.2rem;
  margin: 0 0 22px;
}
.direct-link {
  display: flex; align-items: center; gap: 12px;
  color: var(--cream);
  font-weight: 600;
  padding: 14px 0;
  border-top: 1px solid rgba(244,239,228,.12);
  transition: color .2s ease;
}
.direct-link:first-of-type { border-top: none; }
.direct-link svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.direct-link:hover { color: var(--gold-bright); }
.direct-link--static:hover { color: var(--cream); cursor: default; }

/* ============ Footer ============ */
.footer { background: var(--navy-deep); border-top: 1px solid rgba(244,239,228,.1); padding-top: 48px; }
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 36px;
}
.footer__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--cream);
}
.footer__name em { font-style: normal; color: var(--gold); margin-left: 6px; }
.footer__brand p { color: rgba(244,239,228,.6); font-size: .9rem; margin: 8px 0 0; }
.footer__brand p.footer__reg { color: rgba(244,239,228,.4); font-size: .78rem; }
.footer__nav { display: flex; gap: 24px; align-items: flex-start; }
.footer__nav a { color: rgba(244,239,228,.8); font-size: .92rem; font-weight: 600; }
.footer__nav a:hover { color: var(--gold-bright); }
.footer__contact { display: flex; flex-direction: column; gap: 8px; font-size: .92rem; }
.footer__contact a { color: rgba(244,239,228,.8); }
.footer__contact a:hover { color: var(--gold-bright); }
.footer__contact span { color: rgba(244,239,228,.55); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
  border-top: 1px solid rgba(244,239,228,.1);
  padding: 20px 24px;
  font-size: .8rem;
  color: rgba(244,239,228,.45);
}
.footer__credit { color: rgba(244,239,228,.45); }
.footer__credit:hover { color: var(--gold-bright); }

/* ============ WhatsApp FAB (mobile) ============ */
.whatsapp-fab {
  display: none;
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(0,0,0,.45);
  animation: fab-pulse 2.6s ease-in-out infinite;
}
.whatsapp-fab::before {
  /* Soft scrim so any body copy the fixed button happens to sit over during
     scroll fades under it rather than clipping mid-word at a hard edge. */
  content: '';
  position: absolute;
  inset: -26px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,35,64,.16) 0%, rgba(11,35,64,0) 72%);
}
.whatsapp-fab svg { width: 30px; height: 30px; }
.whatsapp-fab:hover { background: #20bd5a; }
@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 12px 28px -8px rgba(0,0,0,.45), 0 0 0 0 rgba(37,211,102,.5); }
  50% { box-shadow: 0 12px 28px -8px rgba(0,0,0,.45), 0 0 0 10px rgba(37,211,102,0); }
}

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .whatsapp-fab { display: flex; }
  .nav, .topbar__actions .phone-chip { display: none; }
  .nav-toggle { display: flex; flex-shrink: 0; }
  .topbar__inner { flex-wrap: nowrap; }
  .topbar__actions { flex-shrink: 0; }
  .brand { min-width: 0; flex-shrink: 1; }
  .brand__word { display: none; }
  /* Extra clearance so the fixed WhatsApp FAB (~74px footprint incl. offset)
     never rests over the last row of value cards at a natural scroll stop. */
  .values { padding-bottom: 104px; }
}

@media (max-width: 860px) {
  .services__grid--quad { grid-template-columns: repeat(2, 1fr); }
  .serve__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 420px) {
  .btn--gold.btn:not(.btn--lg):not(.btn--full) { padding: 10px 14px; font-size: .82rem; }
  .brand__mark { height: 34px; width: auto; }
  .topbar.nav-open .nav {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 18px;
    border-bottom: 1px solid rgba(244,239,228,.1);
  }
  .hero__inner { padding-top: 100px; padding-bottom: 60px; }
  .services__grid--quad { grid-template-columns: 1fr; }
  .serve__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__inner { grid-template-columns: 1fr; }
  .form-row--split { grid-template-columns: 1fr; }
  .poster-campaign { padding: 36px 0 28px; }
  .poster-marquee__item { width: 220px; }
  .poster-marquee__item img { width: 220px; height: 297px; }
  .poster-marquee__track { animation-duration: 90s; }
}

@media (max-width: 560px) {
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}
