:root {
  --ink: #111418;
  --ink-soft: #3d4450;
  --muted: #6b7280;
  --navy: #0e2a4a;
  --navy-mid: #163a63;
  --blue: #2e5ea8;
  --orange: #c9a227;
  --orange-dark: #a6841c;
  --gold: #c9a227;
  --gold-bright: #e0b13a;
  --gold-soft: #efe4c0;
  --bg: #f4f6fa;
  --paper: #ffffff;
  --line: #e5e7ee;
  --white: #ffffff;
  --ok: #2f6f4a;
  --danger: #b42318;
  --shadow: 0 10px 28px rgba(14, 42, 74, 0.08);
  --radius: 14px;
  --topbar-h: 34px;
  --header-bar-h: 64px;
  --nav-h: 48px;
  --header-h: 146px;
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Outfit", "DM Sans", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  padding-top: var(--header-h);
}
h1, h2, h3, .page-title, .brand-kynox, .footer-brand, .hero-banner-fallback strong {
  font-family: var(--display);
  letter-spacing: -0.03em;
}
.skip-link { position: absolute; left: -999px; }
.skip-link:focus { left: 12px; top: 12px; background: #fff; padding: 8px 12px; z-index: 200; }

.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 52;
  height: var(--topbar-h);
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar a { color: #fff; text-decoration: none; }
.topbar-tag {
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-bright);
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  margin-left: auto;
}
.topbar-phone { font-weight: 700; letter-spacing: .02em; white-space: nowrap; }

.site-header {
  position: fixed;
  top: var(--topbar-h); left: 0; right: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-bar {
  min-height: var(--header-bar-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-logo { height: 38px; width: auto; }
.brand-mark {
  width: 38px; height: 38px;
  color: var(--gold);
  display: grid; place-items: center;
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 13px;
  background: #fff;
  position: relative;
}
.brand-mark::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
  pointer-events: none;
}
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-kynox { font-weight: 800; color: var(--navy); font-size: 1.15rem; letter-spacing: .08em; }
.brand-kynox span { color: var(--gold); }
.brand-gold {
  align-self: flex-start;
  margin-top: 3px;
  background: var(--gold);
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  padding: 2px 6px;
}
.search-form { position: relative; width: 100%; }
.header-search { max-width: 560px; }
.search-form input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 0 18px 0 42px;
  font-size: 16px;
}
.search-form input:focus { outline: 2px solid var(--gold); border-color: transparent; }
.search-icon { position: absolute; left: 16px; top: 13px; color: var(--muted); pointer-events: none; }
.header-enquiry { min-height: 42px !important; padding: 8px 16px !important; }
.icon-btn {
  position: relative;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--ink);
  text-decoration: none;
}
.menu-btn {
  display: none !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin: 0;
  border-radius: 1px;
}
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  min-width: 20px; height: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px; font-weight: 700;
  border-radius: 999px;
  display: grid; place-items: center;
  padding: 0 5px;
}
.main-nav {
  border-top: 1px solid var(--line);
  background: #fff;
}
.main-nav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 6px;
  min-height: var(--nav-h);
  align-items: center;
}
.main-nav a {
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 15.5px;
  text-decoration: none;
  padding: 10px 12px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--navy); }
.main-nav a.is-active {
  color: var(--navy);
  font-weight: 800;
  border-bottom-color: var(--gold);
}
.mobile-drawer { display: none; padding: 8px 16px 18px; border-top: 1px solid var(--line); }
.mobile-drawer a {
  display: block;
  padding: 13px 0;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-top: 1px solid var(--line);
  min-height: 44px;
}
.mobile-drawer a.is-active { color: var(--navy); font-weight: 800; }
.mobile-drawer.is-open { display: block; }
@media (max-width: 991.98px) {
  :root { --header-h: 98px; --nav-h: 0px; }
  .header-bar { grid-template-columns: 1fr auto; }
  .header-search, .header-links, .header-enquiry, .main-nav { display: none; }
  .menu-btn { display: flex !important; gap: 5px; }
  .topbar { font-size: 11px; }
  .topbar-tag { font-size: 11px; letter-spacing: .03em; }
  .topbar-right { gap: 12px; }
}
@media (max-width: 420px) {
  .topbar-tag { letter-spacing: 0; }
  .topbar-right { gap: 10px; }
}

.btn-cta, .btn-add, .btn-primary {
  background: var(--navy) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 700;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 10px !important;
}
.btn-cta:hover, .btn-add:hover { background: var(--navy-mid) !important; color: #fff !important; }
.btn-gold {
  background: var(--gold) !important;
  border: none !important;
  color: var(--navy) !important;
  font-weight: 800;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 10px !important;
}
.btn-gold:hover { background: var(--gold-bright) !important; color: var(--navy) !important; }
.btn-navy {
  background: var(--navy) !important;
  color: #fff !important;
  border: none !important;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 10px !important;
  font-weight: 600;
}
.btn-navy:hover { background: var(--navy-mid) !important; color: #fff !important; }
.btn-ghost-line {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  min-height: 42px;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-ghost-line:hover { border-color: var(--navy); color: var(--navy); }

.hero-slider-wrap { background: var(--navy); overflow: hidden; }
.hero-slider-wrap .carousel,
.hero-slide-link,
.hero-slider-wrap .carousel-inner,
.hero-slider-wrap .carousel-item.active,
.hero-slider-wrap picture,
.hero-banner-img,
.hero-banner-fallback {
  height: 360px;
}
.hero-slide-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.hero-slider-wrap picture { display: block; }
.hero-banner-img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
  background: var(--navy);
  display: block;
}
.hero-banner-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  max-height: 360px;
  background:
    linear-gradient(115deg, var(--navy) 0%, var(--blue) 55%, #3b6bb8 100%);
  color: #fff;
}
@media (max-width: 767.98px) {
  .hero-slider-wrap .carousel,
  .hero-slide-link,
  .hero-slider-wrap .carousel-inner,
  .hero-slider-wrap .carousel-item.active,
  .hero-slider-wrap picture,
  .hero-banner-img,
  .hero-banner-fallback {
    height: 320px;
  }
  .hero-banner-img,
  .hero-banner-fallback { max-height: 320px; }
}
.hero-fallback-copy { text-align: center; padding: 16px; }
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 6px;
}
.hero-banner-fallback strong {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 700;
}
.hero-slider-wrap .carousel-caption {
  left: 8%; right: auto; bottom: 12%;
  text-align: left;
  background: rgba(15, 39, 68, .45);
  padding: 10px 14px;
  border-radius: 10px;
  max-width: 70%;
}
.hero-slider-wrap .carousel-caption h1 {
  font-size: clamp(1rem, 2.4vw, 1.6rem);
  margin: 0;
  color: #fff;
  font-weight: 700;
}
.hero-slider-wrap .carousel-control-prev,
.hero-slider-wrap .carousel-control-next { width: 7%; }

.section { padding: 40px 0; }
.section--tint { background: #fff; }
.section-head { margin-bottom: 22px; }
.section-title { font-size: clamp(1.35rem, 3vw, 1.85rem); font-weight: 700; margin-bottom: 6px; }
.section-sub, .seo-blurb { color: var(--muted); margin-bottom: 0; max-width: 720px; }
.page-title { font-weight: 700; font-size: clamp(1.5rem, 3vw, 2rem); }
.crumbs {
  display: flex; flex-wrap: wrap; gap: 8px;
  font-size: 13px; color: var(--muted);
  padding: 18px 0 10px;
}
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--navy); }
.section-head--row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.lead-copy { font-size: 1.05rem; color: var(--ink-soft); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
.cat-card--photo {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  min-height: 260px;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.cat-card--photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(14, 42, 74, .14);
  color: inherit;
}
.cat-card-media {
  position: relative;
  display: grid;
  place-items: center;
  height: 188px;
  overflow: hidden;
  background:
    linear-gradient(115deg, var(--navy) 0 22%, transparent 22.2%),
    linear-gradient(180deg, #fff 0%, #f3f6fb 100%);
}
.cat-card-media::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 42%;
  background: linear-gradient(135deg, transparent 49%, var(--gold) 49.2%);
  pointer-events: none;
}
.cat-card-media img, .cat-photo-fallback {
  width: 78%;
  height: 78%;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 6px;
  box-shadow: none;
  position: relative;
  z-index: 1;
}
.cat-photo-fallback {
  background: rgba(255,255,255,.5);
  border-radius: 12px;
  display: block;
}
.cat-card--photo strong {
  margin-top: auto;
  padding: 14px 12px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--navy);
  color: #fff;
}
.cat-grid .empty-note, .brand-grid .empty-note { grid-column: 1 / -1; }
.cat-grid--page .cat-card--photo { min-height: 300px; }
.cat-grid--page .cat-card-media { height: 220px; }

.home-search {
  display: flex;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 6px 6px 18px;
}
.home-search input { border: 0; flex: 1; min-width: 0; font-size: 16px; outline: none; }
.home-search .btn { min-height: 42px !important; border-radius: 999px !important; }
.finder-card, .panel, .product-card, .step-card, .brand-chip, .summary-card, .cart-item, .cta-card, .brand-tile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.finder-card { padding: 18px; }
.finder-label { font-weight: 700; margin-bottom: 8px; }
.brand-strip { display: flex; flex-wrap: wrap; gap: 10px; }
.brand-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; font-weight: 700; color: var(--ink); text-decoration: none;
}
.brand-chip img { height: 22px; width: auto; }
.brand-chip:hover { border-color: var(--gold); color: var(--ink); }
.brand-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 576px) { .brand-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .brand-grid { grid-template-columns: repeat(4, 1fr); } }
.brand-tile {
  display: flex;
  flex-direction: column;
  padding: 0;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  min-height: 220px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.brand-tile:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  color: inherit;
  box-shadow: 0 16px 36px rgba(14, 42, 74, .14);
}
.brand-tile-logo {
  height: 140px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(115deg, var(--navy) 0 28%, var(--blue) 28% 100%);
  padding: 18px;
}
.brand-tile-logo img {
  max-height: 80px;
  max-width: 78%;
  width: auto;
  height: auto;
  object-fit: contain;
  background: #fff;
  padding: 10px 14px;
  border-radius: 10px;
}
.brand-tile-logo .brand-tile-fallback {
  color: var(--gold);
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: .06em;
}
.brand-tile strong {
  display: block;
  padding: 16px 14px 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  background: #fff;
  border-top: 4px solid var(--gold);
}
.brand-tile img { height: auto; width: auto; }

.band--navy {
  background: linear-gradient(115deg, var(--navy) 0 58%, var(--blue) 58%);
  color: #fff;
  padding: 40px 0;
}
.band-grid { display: grid; gap: 20px; }
@media (min-width: 768px) { .band-grid { grid-template-columns: 1.4fr .8fr; align-items: center; } }
.band--navy h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
.band-points { margin: 0; padding-left: 18px; }
.cta-pair { display: grid; gap: 14px; }
@media (min-width: 768px) { .cta-pair { grid-template-columns: 1fr 1fr; } }
.cta-card { padding: 24px; }
.cta-card--gold { background: linear-gradient(180deg, #fff, var(--gold-soft)); }
.contact-strip {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px;
}
.contact-strip-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.product-card { overflow: hidden; height: 100%; display: flex; flex-direction: column; }
.product-card .thumb { display: block; background: #f3f4f7; }
.product-card img { width: 100%; height: 170px; object-fit: contain; padding: 10px; background: #fff; }
.product-card .body { padding: 12px 14px 14px; flex: 1; display: flex; flex-direction: column; }
.product-card .name { color: var(--ink); text-decoration: none; font-weight: 700; display: block; font-size: 14.5px; }
.compat-line { font-size: 12px; color: var(--muted); margin-top: 6px; }
.product-actions { display: grid; gap: 8px; }
.product-actions .btn, .product-actions .btn-ghost-line { width: 100%; min-height: 40px; font-size: 13px; }
.empty-note { background: #fff; border: 1px dashed var(--line); padding: 24px; border-radius: 12px; }

.catalog-page { padding-bottom: 48px; }
.catalog-toolbar {
  display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; margin-bottom: 16px;
}
.filter-open { display: none; }
.catalog-layout { display: grid; gap: 20px; }
@media (min-width: 992px) {
  .catalog-layout { grid-template-columns: 260px 1fr; align-items: start; }
  .filter-panel { position: sticky; top: calc(var(--header-h) + 12px); }
}
.filter-panel { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px; }
.filter-panel-head { display: flex; justify-content: space-between; margin-bottom: 10px; }
.filter-close { display: none; border: 0; background: none; font-size: 28px; line-height: 1; }
.filter-backdrop { display: none; }
@media (max-width: 991.98px) {
  .filter-open { display: inline-flex; }
  .filter-close { display: block; }
  .filter-panel {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: min(340px, 92vw);
    z-index: 80;
    transform: translateX(-110%);
    transition: transform .2s ease;
    overflow: auto;
    border-radius: 0;
  }
  .filter-panel.is-open { transform: none; }
  .filter-backdrop.is-on {
    display: block; position: fixed; inset: 0; background: rgba(15,39,68,.35); z-index: 70;
  }
}

.site-footer {
  background: var(--navy);
  color: #c9d3e0;
  padding: 48px 0 20px;
  margin-top: 8px;
}
.footer-brand { font-size: 1.5rem; color: #fff; margin-bottom: 8px; letter-spacing: .08em; font-weight: 800; }
.footer-brand span { color: var(--gold); }
.site-footer a { display: block; color: #fff; margin: 6px 0; text-decoration: none; opacity: .88; }
.site-footer h3 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-note { font-size: 12px; opacity: .75; }
.copy { margin-top: 28px; opacity: .5; font-size: 13px; }

.wa-float {
  position: fixed; right: 14px; bottom: 18px;
  width: 54px; height: 54px;
  background: #25d366; color: #fff; border-radius: 50%;
  text-decoration: none; z-index: 40; display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(37,211,102,.4);
}
.back-top {
  position: fixed; right: 16px; bottom: 84px;
  width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff;
  color: var(--ink); display: none; z-index: 40; cursor: pointer;
}
.back-top.is-on { display: grid; place-items: center; }

.form-select, .form-control { min-height: 44px; border-radius: 10px; border-color: var(--line); font-size: 16px; }
.gallery-main { width: 100%; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.thumbs { display: flex; gap: 8px; margin-top: 10px; overflow: auto; }
.thumbs img { width: 68px; height: 68px; object-fit: cover; border-radius: 10px; cursor: pointer; border: 2px solid transparent; }
.thumbs img.active { border-color: var(--gold); }
.success-box { background: #eef6ef; border: 1px solid #c9ddcc; padding: 40px 24px; border-radius: 20px; text-align: center; }
.success-box .ok { font-size: 42px; color: var(--ok); }

.enquiry-page {
  max-width: 560px;
  margin: 0 auto;
}
.enquiry-page .page-title,
.enquiry-page .seo-blurb { text-align: center; }
.enquiry-page .seo-blurb { margin: 0 auto 20px; }
.enquiry-form { position: static; }
.enquiry-selected {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 16px;
  background: #fafbfd;
}
.enquiry-selected-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 0;
  border-top: 1px solid var(--line);
}
.enquiry-selected-row:first-of-type { border-top: 0; }
.cart-item { display: grid; grid-template-columns: 72px 1fr; gap: 12px; padding: 14px; margin-bottom: 10px; }
.cart-item img { width: 72px; height: 72px; object-fit: contain; background: #f3f4f7; border-radius: 10px; }
.cart-item-top { display: flex; justify-content: space-between; gap: 8px; }
.cart-remove { border: 0; background: none; color: var(--danger); font-weight: 600; font-size: 13px; }
.summary-card { padding: 20px; position: sticky; top: calc(var(--header-h) + 12px); }
.empty-cart { text-align: center; padding: 40px 16px; }
#product-grid.is-loading { opacity: .55; pointer-events: none; }
img.lazy { background: #f3f4f7; }

.pdp { padding: 8px 0 48px; }
.pdp-grid { display: grid; gap: 20px; }
@media (min-width: 992px) { .pdp-grid { grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; } }
.pdp-photo-empty { min-height: 220px; border-radius: var(--radius); background: #f3f4f7; display: grid; place-items: center; color: var(--muted); }
.pdp-meta { color: var(--muted); font-size: 13px; margin: 0 0 6px; }
.sku-line { font-size: 13px; color: var(--ink-soft); }
.pdp-desc { color: var(--ink-soft); }
.pdp-note { font-size: 13px; color: var(--muted); }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.model-chip {
  display: inline-block; padding: 8px 12px; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; text-decoration: none; color: var(--ink); font-size: 13px; font-weight: 600;
}
.pdp-block { margin-top: 28px; }
.pdp-block h2, .pdp-models h2, .content-page h2 { font-size: 1.15rem; font-weight: 700; }
.plain-list { padding-left: 18px; }
.panel { padding: 0; }
.panel.p-4 { padding: 1.25rem !important; }

@media (max-width: 575.98px) {
  .product-card img { height: 240px; }
  .cat-card--photo { min-height: 220px; }
  .cat-card-media { height: 148px; }
  .cat-grid--page .cat-card--photo { min-height: 240px; }
  .cat-grid--page .cat-card-media { height: 168px; }
  .home-search { flex-direction: column; border-radius: 16px; padding: 10px; }
  .contact-strip-actions, .contact-strip { width: 100%; }
  .contact-strip-actions .btn { flex: 1; }
}

.filter-group { margin-bottom: 16px; }
.filter-group .form-label {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
  margin-bottom: 8px;
}
.filter-checks {
  max-height: 180px;
  overflow: auto;
  display: grid;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fafbfd;
}
.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0;
  min-height: 32px;
  cursor: pointer;
}
.filter-check .filter-n { color: var(--muted); font-weight: 600; }

.page-hero {
  background:
    linear-gradient(115deg, var(--navy) 0 62%, var(--blue) 62%);
  color: #fff;
  padding: 36px 0 32px;
  margin-bottom: 8px;
}
.page-hero .crumbs { padding-top: 0; color: rgba(255,255,255,.7); }
.page-hero .crumbs a { color: rgba(255,255,255,.8); }
.page-hero .crumbs a:hover { color: var(--gold); }
.page-hero .page-title { color: #fff; margin-bottom: 8px; }
.page-hero .seo-blurb { color: rgba(255,255,255,.82); max-width: 640px; }
.page-hero .script-line {
  font-style: italic;
  color: var(--gold-bright);
  font-size: 1.15rem;
  margin: 0 0 8px;
}

.about-grid { display: grid; gap: 18px; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1.2fr .8fr; align-items: start; } }
.about-panel { padding: 28px; }
.about-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.about-points li {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 14px 16px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow);
}
.about-seal {
  width: 92px; height: 92px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--navy);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 auto 16px;
}

.contact-map {
  width: 100%;
  height: 200px;
  border: 0;
  display: block;
}
.contact-map-wrap {
  background: var(--navy);
  overflow: hidden;
  border-radius: 14px;
  margin-top: 12px;
}
.contact-info-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 8px;
}
.contact-info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}
.contact-info-card span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-info-card a, .contact-info-card p { margin: 0; color: var(--navy); font-weight: 600; text-decoration: none; }
.contact-form-card { padding: 24px; }

.brands-intro { padding-bottom: 8px; }
