/* =====================================================================
   MniGlobal / AGREX — Public Site Stylesheet
   Brand palette extracted from assets/mniglobal_hd.png (logo):
     Navy   #243D7D  — wordmark / primary brand colour
     Orange #F0593A  — flame accent (solid throughout — no gradients)
   Light theme throughout. Typefaces: Plus Jakarta Sans (headings), Inter (body).
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  /* ---- Brand colours ---- */
  --navy: #243D7D;
  --navy-600: #1E3269;
  --navy-700: #18285A;
  --navy-800: #121F42;
  --navy-50: #EEF1FA;
  --navy-100: #DEE4F5;
  --navy-200: #C3CDEC;

  --orange: #F0593A;
  --orange-2: #F3813F;
  --gold: #F9BD4D;
  --gold-50: #FEF6E7;

  /* ---- Neutrals / text ---- */
  --ink: #171B2E;
  --body-text: #3D4257;
  --muted: #6B7086;
  --muted-2: #9297AA;
  --border: #E3E6F0;
  --border-2: #EDEFF6;
  --surface: #FFFFFF;
  --surface-alt: #F6F7FC;
  --surface-muted: #EEF0F8;

  /* ---- Semantic ---- */
  --success: #1E8E5A;
  --success-bg: #E7F7EF;
  --error: #D93B3B;
  --error-bg: #FDEDED;
  --warning: #B4790A;
  --warning-bg: #FEF6E7;

  /* ---- Type ---- */
  --font-heading: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  /* ---- Shape / elevation ---- */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 999px;
  --shadow-sm: 0 1px 3px rgba(23, 27, 46, 0.07), 0 1px 2px rgba(23, 27, 46, 0.05);
  --shadow-md: 0 8px 24px rgba(24, 40, 90, 0.10), 0 2px 6px rgba(24, 40, 90, 0.06);
  --shadow-lg: 0 20px 48px rgba(24, 40, 90, 0.16), 0 6px 16px rgba(24, 40, 90, 0.08);

  --container-max: 1280px;
  --gutter: 2rem;
}

@media (max-width: 1199px) { :root { --gutter: 1.25rem; } }
@media (max-width: 767px)  { :root { --gutter: 1rem; } }

/* ---------------------------------------------------------------------
   Reset
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body-text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
/* Icons (every <svg> on this site is a small inline glyph from the icon()
   helper, meant to sit beside text like a character) get an inline-friendly
   default — display:block here would force a line break between an icon
   and the text next to it in any plain inline container (a link, a label)
   that isn't itself a flex row. vertical-align:middle corrects the classic
   "icon sits low against the text baseline" mismatch inline SVG has by
   default. Components that lay icon+text out via flexbox (.btn, .link-arrow,
   icon-tile, etc.) are unaffected — flex children are governed by the flex
   container regardless of their own display value. */
svg { max-width: 100%; display: inline-block; vertical-align: middle; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.6em;
}
p { margin: 0 0 1em; }
table { border-collapse: collapse; width: 100%; }
:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }

/* ---------------------------------------------------------------------
   Layout helpers
   --------------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: 5rem 0; }
.section--tight { padding: 3.5rem 0; }
.section--alt { background: var(--surface-alt); }
.section--navy { background: var(--navy); color: rgba(255,255,255,0.92); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
@media (max-width: 767px) {
  .section { padding: 3rem 0; }
  .section--tight { padding: 2.25rem 0; }
}

.grid { display: grid; gap: var(--gutter); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 1199px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.9em;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  display: inline-block;
}
.section--navy .eyebrow { color: var(--gold); }

.section-head { max-width: 720px; margin: 0 0 2.75rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.35rem); }
h3 { font-size: 1.3rem; }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }

/* ---------------------------------------------------------------------
   Buttons
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85em 1.7em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { box-shadow: var(--shadow-md); color: #fff; }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-600); color: #fff; }
.btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: inherit;
}
.btn--outline:hover { background: rgba(255,255,255,0.12); }
.btn--outline-navy { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn--outline-navy:hover { background: var(--navy-50); }
.btn--ghost { background: transparent; color: var(--navy); padding-left: 0; padding-right: 0; }
.btn--ghost:hover { color: var(--orange); }
.btn--block { width: 100%; }
.btn--sm { padding: 0.55em 1.1em; font-size: 0.85rem; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; transform: none; }

.link-arrow { display: inline-flex; align-items: center; gap: 0.4em; font-weight: 700; color: var(--navy); }
.link-arrow svg { width: 16px; height: 16px; transition: transform .15s ease; }
.link-arrow:hover { color: var(--orange); }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------------------------------------------------------------------
   Header
   --------------------------------------------------------------------- */
.utility-bar {
  background: var(--navy-800);
  color: rgba(255,255,255,0.85);
  font-size: 0.83rem;
}
.utility-bar .container { display: flex; justify-content: space-between; align-items: center; padding-top: 0.5rem; padding-bottom: 0.5rem; }
.utility-bar a { color: inherit; }
.utility-bar a:hover { color: var(--gold); }
.utility-bar__left { display: flex; gap: 1.5rem; }
@media (max-width: 767px) { .utility-bar { display: none; } }

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding:0px;
  /* padding: 0.85rem 0; */
}
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand img { height: 42px; width: auto; }
.brand__fallback { font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem; color: var(--navy); }

.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav__list { display: flex; align-items: center; gap: 1.9rem; }
.main-nav__list > li { position: relative; }
.main-nav__list a.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink);
  padding: 1.7rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-bottom: 2px solid transparent;
}
.main-nav__list a.nav-link:hover,
.main-nav__list a.nav-link.is-active { color: var(--navy); border-color: var(--orange); }
.main-nav__list .chevron { width: 10px; height: 10px; transition: transform .15s ease; }
.main-nav__list li:hover .chevron { transform: rotate(180deg); }

.header-ctas { display: flex; align-items: center; gap: 0.75rem; }
.header-ctas .btn { padding: 0.7em 1.35em; font-size: 0.88rem; }

.hamburger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: var(--radius-sm); }
.hamburger:hover { background: var(--surface-alt); }
.hamburger span, .hamburger::before, .hamburger::after { content:''; display:block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
.hamburger { flex-direction: column; gap: 5px; }
.hamburger::before, .hamburger::after { content: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

@media (max-width: 1023px) {
  .main-nav, .header-ctas { display: none; }
  .hamburger { display: inline-flex; }
}

/* Mega menu
   Anchored to the LEFT edge of its trigger <li>, never centered: a menu
   this wide (up to 720px) centered under a ~120px-wide "Products" trigger
   would hang ~300px off both sides of it, and on a laptop-width viewport
   (roughly 1024–1440px, where the header container has little side
   margin to spare) that pushed the left columns off-screen entirely —
   exactly the "hierarchy not visible" symptom. Left-anchoring plus a
   deliberately narrower width keeps the whole grid on-screen at every
   width down to the 1024px mobile-nav cutoff. */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: min(720px, calc(100vw - 2 * var(--gutter)));
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-2);
  padding: 1.5rem 1.75rem 1.25rem;
  display: none;
  z-index: 50;
}
.has-mega:hover .mega-menu { display: block; }
.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 1.5rem;
}
.mega-menu__col {
  border-left: 1px solid var(--border-2);
  padding-left: 1.5rem;
  margin-left: -1px;
}
.mega-menu__col:nth-child(3n+1) { border-left: none; padding-left: 0; margin-left: 0; }
.mega-menu__col-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 0.75rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--navy-50);
  min-height: 2.6em;
}
.mega-menu__col-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 7px;
  background: var(--navy-50);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.mega-menu__col a {
  display: block;
  padding: 0.32rem 0;
  font-size: 0.86rem;
  color: var(--body-text);
  line-height: 1.35;
}
.mega-menu__col a:hover { color: var(--orange); }
.mega-menu__col a.view-all { color: var(--navy); font-weight: 700; margin-top: 0.3rem; }
.mega-menu__footer {
  display: flex; align-items: center; gap: 0.4rem;
  margin-top: 1.25rem; padding-top: 1rem;
  border-top: 1px solid var(--border-2);
  font-family: var(--font-heading); font-weight: 700; font-size: 0.86rem;
  color: var(--orange);
}
.mega-menu__footer:hover { color: var(--navy); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 200; display: none;
}
.mobile-drawer.is-open { display: block; }
.mobile-drawer__overlay { position: absolute; inset: 0; background: rgba(18,31,66,0.55); }
.mobile-drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(360px, 88vw);
  background: #fff; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  animation: slideIn .2s ease;
}
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
.mobile-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.25rem; border-bottom: 1px solid var(--border); }
.mobile-drawer__body { padding: 0.5rem 1.25rem 1.25rem; overflow-y: auto; flex: 1; }
.mobile-drawer__foot { padding: 1.1rem 1.25rem; border-top: 1px solid var(--border); }
.mobile-nav-item { border-bottom: 1px solid var(--border-2); }
.mobile-nav-item > a, .mobile-nav-item > button {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 0.9rem 0; font-family: var(--font-heading); font-weight: 600; font-size: 1rem; color: var(--ink); text-align: left;
}
.mobile-submenu { display: none; padding-bottom: 0.75rem; }
.mobile-submenu.is-open { display: block; }
.mobile-submenu a { display: block; padding: 0.55rem 0 0.55rem 0.75rem; color: var(--muted); font-size: 0.92rem; border-left: 2px solid var(--border); }
.mobile-nav-item.is-open .chevron { transform: rotate(180deg); }
.close-btn { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: var(--radius-full); }
.close-btn:hover { background: var(--surface-alt); }

/* ---------------------------------------------------------------------
   Page title band
   --------------------------------------------------------------------- */
.page-title-band {
  position: relative;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 3.75rem 0 3.25rem;
  overflow: hidden;
}
.page-title-band::before {
  /* solid brand-tint overlay — sits over a photo (set inline via
     background-image) for legibility, or over the plain navy
     background-color when no photo is supplied, so both cases read as
     the same design language. */
  content: '';
  position: absolute; inset: 0;
  background: rgba(24, 40, 90, 0.86);
  pointer-events: none;
}
.page-title-band .container { position: relative; }
.page-title-band .eyebrow { color: var(--gold); }
.page-title-band h1 { color: #fff; margin-bottom: 0.5rem; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 0.4rem; font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: #fff; font-weight: 600; }
@media (max-width: 767px) { .page-title-band { padding: 2.5rem 0 2.25rem; } }

/* ---------------------------------------------------------------------
   Hero (home)
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  background-color: var(--navy-800);
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
  padding-top: 4.5rem;
}
.hero::before {
  /* solid brand-tint overlay — see .page-title-band::before */
  content: '';
  position: absolute; inset: 0;
  background: rgba(18, 31, 66, 0.88);
  pointer-events: none;
}
.hero__inner { position: relative; padding-bottom: 4rem; max-width: 760px; }
.hero .eyebrow { color: var(--gold); }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
.hero__subhead { color: rgba(255,255,255,0.82); font-size: 1.12rem; max-width: 620px; margin-bottom: 2rem; }
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.stat-strip {
  position: relative;
  background: rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(2px);
}
.stat-strip__grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.stat-tile { text-align: center; padding: 1.75rem 1rem; border-right: 1px solid rgba(255,255,255,0.12); }
.stat-tile:last-child { border-right: none; }
.stat-tile__value {
  font-family: var(--font-heading); font-weight: 800; font-size: 2rem;
  color: var(--orange);
}
.stat-tile__label { font-size: 0.82rem; color: rgba(255,255,255,0.75); margin-top: 0.2rem; }
@media (max-width: 991px) { .stat-strip__grid { grid-template-columns: repeat(3, 1fr); } .stat-tile:nth-child(3) { border-right: none; } }
@media (max-width: 767px) {
  .stat-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-tile { border-right: 1px solid rgba(255,255,255,0.12); border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat-tile:nth-child(2n) { border-right: none; }
  .stat-tile__value { font-size: 1.6rem; }
}

/* ---------------------------------------------------------------------
   Cards
   --------------------------------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow .15s ease, transform .15s ease, border-color .15s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--border-2); }
.card__body { padding: 1.5rem; }
.card__media { aspect-ratio: 4/3; background: var(--surface-muted); }
/* Product / family pack-shot photography sits on its own white background
   already, so it's shown in full via object-fit:contain (never cropped) —
   these are labelled bottles/tubs, cropping into one reads as a mistake.
   Real environmental photography (blog, team, general media frames) uses
   object-fit:cover instead, since those are meant to fill the frame. */
.product-card__media img, .family-card .card__media img,
.gallery-main img, .gallery-thumbs .thumb img,
.mini-product-list .thumb img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.blog-card__media img, .recent-post-item .thumb img,
.team-card__photo img, .media-frame img,
.industry-card__photo img { width: 100%; height: 100%; object-fit: cover; }

.icon-tile {
  width: 54px; height: 54px; border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy-50); color: var(--navy);
  margin-bottom: 1.1rem;
}
.icon-tile svg { width: 26px; height: 26px; }
.icon-tile--flame { background: var(--gold-50); color: var(--orange); }

.family-card__icon {
  position: absolute; top: 0.9rem; left: 0.9rem;
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: #fff; color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}

/* Family cards (home + products hub) */
.family-card__body { padding: 1.5rem; }
.family-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.family-card p { font-size: 0.92rem; color: var(--muted); margin-bottom: 1rem; }
.chip-row { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.1rem; }
.chip {
  font-size: 0.76rem; font-weight: 600; padding: 0.3em 0.75em;
  background: var(--navy-50); color: var(--navy); border-radius: var(--radius-full);
}

/* Industry compact card */
.industry-card { display: flex; gap: 1rem; padding: 1.4rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); }
.industry-card__icon { flex-shrink: 0; width: 46px; height: 46px; border-radius: var(--radius-sm); background: var(--navy-50); color: var(--navy); display: flex; align-items: center; justify-content: center; }
.industry-card h4 { font-size: 1.02rem; margin-bottom: 0.25rem; }
.industry-card p { font-size: 0.87rem; color: var(--muted); margin: 0; }

/* Feature tile (why choose us) */
.feature-tile { text-align: left; }
.feature-tile h4 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.feature-tile p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* Service card */
.service-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.6rem; position: relative; }
.service-card__badge { font-family: var(--font-heading); font-weight: 800; font-size: 1.6rem; color: var(--navy-100); margin-bottom: 0.5rem; }
.service-card h4 { font-size: 1.08rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.9rem; }

/* Checklist */
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem 1.5rem; }
.checklist li { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.94rem; font-weight: 600; color: var(--ink); }
.checklist .check-icon { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--orange); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.checklist .check-icon svg { width: 12px; height: 12px; }
@media (max-width: 575px) { .checklist { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------
   About strip / two-column media blocks
   --------------------------------------------------------------------- */
.split-block { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split-block--reverse { direction: rtl; }
.split-block--reverse > * { direction: ltr; }
@media (max-width: 900px) {
  .split-block, .split-block--reverse { grid-template-columns: 1fr; direction: ltr; gap: 2rem; }
}
.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

.img-placeholder {
  background: #E4E4E4;
  color: #8A8D93;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.6rem; text-align: center; padding: 1.5rem;
  min-height: 220px; width: 100%; height: 100%;
  border-radius: inherit;
}
.img-placeholder__icon { opacity: 0.65; }
.img-placeholder__label { font-size: 0.78rem; font-weight: 600; max-width: 220px; line-height: 1.4; }
.img-placeholder.ratio-square { aspect-ratio: 1/1; }
.img-placeholder.ratio-wide { aspect-ratio: 16/9; }
.img-placeholder.ratio-portrait { aspect-ratio: 3/4; min-height: 280px; }

/* AGREX brand strip */
.brand-strip { background: var(--navy-800); color: #fff; border-radius: var(--radius-lg); overflow: hidden; }
.brand-strip .split-block { gap: 0; }
.brand-strip__text { padding: 3.5rem; }
.brand-strip h2 { color: #fff; }
.brand-strip p { color: rgba(255,255,255,0.78); }
.brand-strip .img-placeholder { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5); border-radius: 0; min-height: 100%; }
@media (max-width: 900px) { .brand-strip__text { padding: 2.25rem; } }

/* Certification badges */
.cert-row { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; justify-content: center; }
.cert-badge { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; width: 140px; text-align: center; }
a.cert-badge { transition: transform .15s ease; }
a.cert-badge:hover { transform: translateY(-3px); }
a.cert-badge:hover .cert-badge__icon { background: var(--navy); color: #fff; }
.cert-badge__icon { width: 76px; height: 76px; border-radius: 50%; background: var(--navy-50); color: var(--navy); display: flex; align-items: center; justify-content: center; transition: background .15s ease, color .15s ease; }
.cert-badge__name { font-size: 0.82rem; font-weight: 700; color: var(--ink); }
a.cert-badge .cert-badge__hint { font-size: 0.7rem; color: var(--muted); font-weight: 600; }

/* Final CTA */
.final-cta { text-align: center; }
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,0.82); max-width: 520px; margin: 0 auto 1.75rem; }
.final-cta .hero__ctas { justify-content: center; }

/* ---------------------------------------------------------------------
   Footer
   --------------------------------------------------------------------- */
.pre-footer-cta { background: var(--orange); color: #fff; padding: 2.75rem 0; }
.pre-footer-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.pre-footer-cta h3 { color: #fff; margin: 0; font-size: 1.4rem; }
.pre-footer-cta .btn--outline { border-color: rgba(255,255,255,0.7); }

.site-footer { background: var(--navy-800); color: rgba(255,255,255,0.72); }
.site-footer a { color: rgba(255,255,255,0.72); }
.site-footer a:hover { color: var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2.5rem; padding: 4rem 0 3rem; }
.footer-brand img { height: 38px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; max-width: 280px; }
.footer-col h5 { color: #fff; font-family: var(--font-heading); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1.1rem; }
.footer-col li { margin-bottom: 0.65rem; font-size: 0.9rem; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--orange); color: #fff; }
.footer-social svg { width: 16px; height: 16px; }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; }
.footer-contact svg { flex-shrink: 0; width: 17px; height: 17px; margin-top: 0.2rem; color: var(--gold); }

.newsletter-row { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.75rem 0; }
.newsletter-row .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.newsletter-form { display: flex; gap: 0.6rem; }
.newsletter-form input { width: 240px; max-width: 60vw; }

.legal-bar { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.35rem 0; font-size: 0.82rem; }
.legal-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.legal-bar .legal-links { display: flex; gap: 1.25rem; }

@media (max-width: 991px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .footer-grid { grid-template-columns: 1fr; padding: 2.75rem 0 2rem; gap: 2rem; } .newsletter-row .container { flex-direction: column; align-items: flex-start; } }

/* ---------------------------------------------------------------------
   Forms
   --------------------------------------------------------------------- */
.field { margin-bottom: 1.25rem; }
.field label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--ink); margin-bottom: 0.4rem; }
.field .req { color: var(--orange); }
.field input[type=text], .field input[type=email], .field input[type=tel], .field input[type=number],
.field input[type=password], .field input[type=date], .field input[type=datetime-local],
.field select, .field textarea {
  width: 100%;
  padding: 0.8em 1em;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 0.95rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--navy);
  outline: none;
  box-shadow: 0 0 0 3px var(--navy-50);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-hint { font-size: 0.8rem; color: var(--muted); margin-top: 0.35rem; }
.field-error { font-size: 0.8rem; color: var(--error); margin-top: 0.35rem; font-weight: 600; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--error); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 575px) { .field-row { grid-template-columns: 1fr; } }
.checkbox-field { display: flex; align-items: flex-start; gap: 0.6rem; }
.checkbox-field input { margin-top: 0.25rem; width: 17px; height: 17px; accent-color: var(--navy); }
.checkbox-field label { font-weight: 500; font-size: 0.88rem; margin: 0; }
.radio-group { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; }
.radio-pill span {
  display: inline-block; padding: 0.55em 1.1em; border: 1.5px solid var(--border);
  border-radius: var(--radius-full); font-size: 0.86rem; font-weight: 600; color: var(--body-text);
}
.radio-pill input:checked + span { background: var(--navy); border-color: var(--navy); color: #fff; }

.alert { padding: 1rem 1.25rem; border-radius: var(--radius-sm); font-size: 0.92rem; margin-bottom: 1.5rem; display: flex; gap: 0.7rem; align-items: flex-start; }
.alert svg { flex-shrink: 0; width: 20px; height: 20px; margin-top: 0.1rem; }
.alert--success { background: var(--success-bg); color: #0F5C39; }
.alert--error { background: var(--error-bg); color: #9A2222; }

/* ---------------------------------------------------------------------
   Products listing
   --------------------------------------------------------------------- */
.listing-layout { display: grid; grid-template-columns: 280px 1fr; gap: 2.5rem; align-items: start; }
@media (max-width: 900px) { .listing-layout { grid-template-columns: 1fr; } }

.filter-panel { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.5rem; position: sticky; top: 6.5rem; }
/* Sticky only makes sense in the two-column desktop layout, where the
   filter panel sits beside a separately-scrolling product grid. Once
   .listing-layout collapses to one column below, the panel and the grid
   stack in the same flow — a sticky panel then pins on top of the grid as
   the visitor scrolls past it, hiding the products underneath. */
@media (max-width: 900px) { .filter-panel { position: static; top: auto; } }
.filter-panel h5 { font-family: var(--font-heading); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 0.9rem; }
.filter-panel .search-box { position: relative; margin-bottom: 1.75rem; }
.filter-panel .search-box input { padding-left: 2.6em; }
.filter-panel .search-box svg { position: absolute; left: 0.9em; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; color: var(--muted-2); }
.family-list { margin-bottom: 1.75rem; }
.family-list li a { display: flex; justify-content: space-between; padding: 0.6rem 0.7rem; border-radius: var(--radius-sm); font-size: 0.92rem; font-weight: 600; color: var(--body-text); }
.family-list li a:hover { background: var(--surface-alt); }
.family-list li a.is-active { background: var(--navy-50); color: var(--navy); }
.family-list li a .count { color: var(--muted-2); font-weight: 500; }
.mini-product-list li { display: flex; gap: 0.7rem; align-items: center; padding: 0.5rem 0; }
.mini-product-list .thumb { width: 44px; height: 44px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.mini-product-list .thumb .img-placeholder { min-height: 44px; padding: 0; }
.mini-product-list .thumb .img-placeholder__label { display: none; }
.mini-product-list .thumb svg { width: 16px; height: 16px; }
.mini-product-list span.name { font-size: 0.86rem; font-weight: 600; color: var(--ink); }

.toolbar-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.75rem; flex-wrap: wrap; gap: 1rem; }
.toolbar-row .results-count { font-size: 0.9rem; color: var(--muted); }
.toolbar-row select { padding: 0.6em 2em 0.6em 1em; border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: #fff; font-size: 0.88rem; font-weight: 600; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 1199px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .product-grid { grid-template-columns: 1fr; } }
.product-card__media { aspect-ratio: 1/1; }
.product-card .chip { margin-bottom: 0.6rem; }
.product-card h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.product-card p { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; }

.pagination { display: flex; justify-content: center; gap: 0.4rem; margin-top: 3rem; }
.pagination a, .pagination span {
  min-width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); font-weight: 700; font-size: 0.88rem; border: 1.5px solid var(--border);
}
.pagination a:hover { border-color: var(--navy); color: var(--navy); }
.pagination .is-current { background: var(--navy); border-color: var(--navy); color: #fff; }
.pagination .disabled { opacity: 0.4; pointer-events: none; }

.empty-state { text-align: center; padding: 4rem 1rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   Product detail
   --------------------------------------------------------------------- */
.product-detail-top { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 3.5rem; }
@media (max-width: 900px) { .product-detail-top { grid-template-columns: 1fr; gap: 1.75rem; } }
.gallery-main { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 0.9rem; box-shadow: var(--shadow-sm); }
.gallery-main .img-placeholder { min-height: 380px; }
.gallery-thumbs { display: flex; gap: 0.75rem; }
.gallery-thumbs .thumb { width: 80px; height: 80px; border-radius: var(--radius-sm); overflow: hidden; border: 1.5px solid var(--border); }
.gallery-thumbs .thumb .img-placeholder { min-height: 80px; padding: 0.4rem; }
.gallery-thumbs .thumb .img-placeholder__label { font-size: 0.55rem; }

.quick-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin: 1.5rem 0; padding: 1.25rem; background: var(--surface-alt); border-radius: var(--radius-md); }
.quick-specs .qs-item .label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); font-weight: 700; }
.quick-specs .qs-item .value { font-size: 0.94rem; font-weight: 700; color: var(--ink); }
.product-cta-row { display: flex; gap: 0.9rem; flex-wrap: wrap; margin: 1.5rem 0; }
.meta-row { display: flex; gap: 1.5rem; flex-wrap: wrap; font-size: 0.85rem; color: var(--muted); padding-top: 1.25rem; border-top: 1px solid var(--border); }
.meta-row strong { color: var(--ink); }
.share-row { display: flex; gap: 0.6rem; align-items: center; margin-top: 1.1rem; }
.share-row a { width: 34px; height: 34px; border-radius: 50%; background: var(--surface-alt); display: flex; align-items: center; justify-content: center; }
.share-row a:hover { background: var(--navy-50); color: var(--navy); }
.share-row svg { width: 15px; height: 15px; }

.warning-banner { display: flex; gap: 0.75rem; background: var(--warning-bg); border: 1px solid #F0DBA0; color: #7A5A08; padding: 1rem 1.25rem; border-radius: var(--radius-sm); font-size: 0.88rem; margin-bottom: 1.5rem; }
.warning-banner svg { flex-shrink: 0; width: 20px; height: 20px; }

.tabs__nav { display: flex; gap: 0.5rem; border-bottom: 2px solid var(--border); margin-bottom: 2rem; overflow-x: auto; }
.tabs__nav button {
  padding: 0.9rem 1.3rem; font-family: var(--font-heading); font-weight: 700; font-size: 0.92rem;
  color: var(--muted); border-bottom: 3px solid transparent; margin-bottom: -2px; white-space: nowrap;
}
.tabs__nav button.is-active { color: var(--navy); border-color: var(--orange); }
.tabs__panel { display: none; }
.tabs__panel.is-active { display: block; }
.spec-table { width: 100%; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); }
.spec-table tr:nth-child(even) { background: var(--surface-alt); }
.spec-table th, .spec-table td { text-align: left; padding: 0.9rem 1.25rem; font-size: 0.92rem; vertical-align: top; }
.spec-table th { width: 34%; color: var(--ink); font-weight: 700; background: var(--navy-50); }
.bullet-list li { position: relative; padding-left: 1.5rem; margin-bottom: 0.6rem; font-size: 0.95rem; }
.bullet-list li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px; border-radius: 2px; background: var(--orange); }
.msds-disclaimer { margin-top: 1.5rem; padding: 1rem 1.25rem; background: var(--surface-alt); border-left: 3px solid var(--navy); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 0.85rem; color: var(--muted); font-style: italic; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { padding: 1.1rem 0; font-weight: 700; font-family: var(--font-heading); font-size: 0.98rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--orange); font-weight: 400; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding-bottom: 1.1rem; color: var(--muted); margin: 0; }

/* ---------------------------------------------------------------------
   Blog
   --------------------------------------------------------------------- */
.blog-card__media { aspect-ratio: 4/3.15; position: relative; }
.blog-card__date { position: absolute; top: 0.9rem; left: 0.9rem; background: #fff; border-radius: var(--radius-sm); padding: 0.4em 0.7em; font-size: 0.72rem; font-weight: 800; text-align: center; box-shadow: var(--shadow-sm); }
.blog-card__meta { font-size: 0.78rem; color: var(--muted); margin-bottom: 0.5rem; display: flex; gap: 0.6rem; align-items: center; }
.blog-card h3 { font-size: 1.08rem; margin-bottom: 0.5rem; }
.blog-card p { font-size: 0.88rem; color: var(--muted); }

.blog-detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
@media (max-width: 991px) { .blog-detail-layout { grid-template-columns: 1fr; } }
.article-body { font-size: 1.02rem; line-height: 1.8; color: var(--body-text); }
.article-body h2 { margin-top: 1.8em; font-size: 1.5rem; }
.article-body h3 { margin-top: 1.5em; font-size: 1.2rem; }
.article-body p { margin-bottom: 1.3em; }
.article-body ul, .article-body ol { margin: 0 0 1.3em; padding-left: 1.4em; list-style: disc; }
.article-body blockquote { border-left: 3px solid var(--orange); padding: 0.3rem 0 0.3rem 1.5rem; font-style: italic; color: var(--ink); margin: 1.8em 0; font-size: 1.1rem; }
.article-body img { border-radius: var(--radius-md); margin: 1.5em 0; }
.tag-pill-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.tag-pill { font-size: 0.78rem; font-weight: 600; padding: 0.4em 0.9em; background: var(--surface-alt); border-radius: var(--radius-full); color: var(--muted); }

.sidebar-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.5rem; margin-bottom: 1.5rem; }
.sidebar-card h5 { font-family: var(--font-heading); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 1rem; }
.recent-post-item { display: flex; gap: 0.8rem; margin-bottom: 1rem; }
.recent-post-item .thumb { width: 60px; height: 60px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.recent-post-item .thumb .img-placeholder { min-height: 60px; padding: 0.2rem; }
.recent-post-item .thumb .img-placeholder__label { display: none; }
.recent-post-item .date { font-size: 0.72rem; color: var(--muted-2); }
.recent-post-item .title { font-size: 0.86rem; font-weight: 700; color: var(--ink); }
.category-list li a { display: flex; justify-content: space-between; padding: 0.5rem 0; font-size: 0.9rem; font-weight: 600; color: var(--body-text); border-bottom: 1px solid var(--border-2); }
.category-list li a:hover { color: var(--navy); }

/* ---------------------------------------------------------------------
   Contact
   --------------------------------------------------------------------- */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); height: 420px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.info-card-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: -4.5rem; position: relative; z-index: 2; padding: 0 1rem; }
.info-card { background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 1.5rem; display: flex; gap: 1rem; }
.info-card__icon { width: 46px; height: 46px; border-radius: var(--radius-sm); background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-card h5 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.info-card p { font-size: 0.85rem; color: var(--muted); margin: 0; }
@media (max-width: 900px) { .info-card-row { grid-template-columns: 1fr; margin-top: 1.5rem; } .map-embed { height: 260px; } }

.contact-form-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 900px) { .contact-form-layout { grid-template-columns: 1fr; } }
.help-list li { display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 0.9rem; font-size: 0.94rem; }
.help-list svg { color: var(--orange); flex-shrink: 0; width: 18px; height: 18px; margin-top: 0.15rem; }

/* ---------------------------------------------------------------------
   Process steps (OEM / Dealership)
   --------------------------------------------------------------------- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
@media (max-width: 991px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .process-steps { grid-template-columns: 1fr; } }
.process-step { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.6rem; position: relative; }
.process-step__num { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: var(--orange); margin-bottom: 0.5rem; }
.process-step h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.9rem; }
.process-step ul li { font-size: 0.83rem; color: var(--body-text); padding-left: 1.1rem; position: relative; margin-bottom: 0.4rem; }
.process-step ul li::before { content: '—'; position: absolute; left: 0; color: var(--orange); }

.data-table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--border); margin-bottom: 1rem; }
.data-table { width: 100%; }
.data-table th { background: var(--navy-50); color: var(--navy); text-align: left; padding: 0.9rem 1.1rem; font-size: 0.85rem; }
.data-table td { padding: 0.85rem 1.1rem; font-size: 0.9rem; border-top: 1px solid var(--border); }

/* ---------------------------------------------------------------------
   About page extras
   --------------------------------------------------------------------- */
.mv-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.75rem; }
.mv-card h4 { font-size: 1.08rem; }
.mv-card p { font-size: 0.92rem; color: var(--muted); margin: 0; }

.timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.25rem; }
.timeline-item { border-top: 3px solid var(--orange); padding-top: 1rem; }
.timeline-item .year { font-family: var(--font-heading); font-weight: 800; font-size: 1.4rem; color: var(--navy); }
.timeline-item p { font-size: 0.85rem; color: var(--muted); margin: 0.3rem 0 0; }

.team-card { text-align: center; }
.team-card__photo { border-radius: var(--radius-md); overflow: hidden; margin-bottom: 1rem; }
.team-card__photo .img-placeholder { aspect-ratio: 1/1; min-height: 0; }
.team-card h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.team-card .role { font-size: 0.82rem; color: var(--orange); font-weight: 700; }

.presence-band { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 900px) { .presence-band { grid-template-columns: 1fr; gap: 2rem; } }
.presence-stat { font-family: var(--font-heading); font-weight: 800; font-size: 3rem; color: var(--orange); }

/* ---------------------------------------------------------------------
   404
   --------------------------------------------------------------------- */
.error-page { text-align: center; padding: 6rem 0; }
.error-page__digits { font-family: var(--font-heading); font-weight: 800; font-size: clamp(4rem, 12vw, 8rem); color: var(--orange); line-height: 1; margin-bottom: 1rem; }
.error-page h1 { margin-bottom: 0.75rem; }
.error-page p { color: var(--muted); max-width: 460px; margin: 0 auto 2rem; }
.error-quick-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }
@media (max-width: 767px) { .error-page { padding: 3.5rem 0; } }

/* ---------------------------------------------------------------------
   Simple content pages (Terms / Privacy / AGREX brand)
   --------------------------------------------------------------------- */
.prose { font-size: 1rem; line-height: 1.8; max-width: 820px; }
.prose h2 { margin-top: 1.6em; font-size: 1.4rem; }
.prose h3 { margin-top: 1.3em; font-size: 1.15rem; }
.prose p { margin-bottom: 1.2em; color: var(--body-text); }
.prose ul, .prose ol { margin: 0 0 1.2em; padding-left: 1.4em; list-style: decimal; }
.prose ul { list-style: disc; }
.prose li { margin-bottom: 0.5em; }

/* ---------------------------------------------------------------------
   Misc utilities
   --------------------------------------------------------------------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.badge-new { display: inline-block; font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; background: var(--orange); color: #fff; padding: 0.25em 0.6em; border-radius: var(--radius-full); margin-left: 0.5em; vertical-align: middle; }

@media print { .site-header, .site-footer, .pre-footer-cta { display: none; } }
