:root {
  --navy: #101c30;
  --navy-soft: #1b2b43;
  --gold: #c1932c;
  --gold-dark: #8c681d;
  --paper: #f6f6f4;
  --white: #fff;
  --ink-muted: #5c6572;
  --divider: #d8d9d6;
  --danger: #a3231f;
  --success: #1f6e42;
  --shadow: 0 12px 36px rgba(16, 28, 48, .09);
  --content: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--navy); font-family: Barlow, Arial, sans-serif; font-size: 16px; line-height: 1.6; }
body.admin-bar { --git-admin-bar-offset: 32px; }
body.mobile-menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-underline-offset: .18em; }
button, input, select, textarea { font: inherit; }
button, .button { border-radius: 0; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
h1, h2, h3, h4, h5, h6 { font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif; line-height: 1.06; margin-top: 0; }
h1 { font-size: clamp(2.45rem, 6vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.7rem); }
h3 { font-size: clamp(1.45rem, 2.6vw, 2.2rem); }
p { margin-top: 0; }
.wrap { width: min(calc(100% - 40px), var(--content)); margin-inline: auto; }
.site-main { min-height: 52vh; }
.section { padding: clamp(64px, 8vw, 112px) 0; }
.section-compact { padding: 48px 0; }
.section-navy { background: var(--navy); color: var(--white); }
.section-white { background: var(--white); }
.eyebrow { color: var(--gold-dark); font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.section-navy .eyebrow { color: #e5be65; }
.lede { color: var(--ink-muted); font-size: 1.1rem; max-width: 760px; }
.section-navy .lede { color: rgba(255,255,255,.76); }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.screen-reader-text:focus, .skip-link:focus { clip: auto !important; width: auto; height: auto; padding: 12px 18px; margin: 0; left: 10px; top: 10px; z-index: 10000; background: var(--white); color: var(--navy); }
.icon { width: 1.15em; height: 1.15em; fill: none; vertical-align: -.15em; }

.site-header { position: sticky; top: var(--git-runtime-header-offset, var(--git-admin-bar-offset, 0px)); z-index: 900; isolation: isolate; background: rgba(255,255,255,.985); border-bottom: 1px solid var(--divider); box-shadow: 0 1px 0 rgba(16,28,48,.02); transition: background-color .18s ease, box-shadow .18s ease; }
.site-header.is-scrolled { background: rgba(255,255,255,.995); box-shadow: 0 7px 22px rgba(16,28,48,.1); }
.site-header-inner { min-height: 86px; display: flex; align-items: center; gap: clamp(16px, 2vw, 28px); }
.brand { display: inline-flex; min-width: 0; flex: 0 0 auto; align-items: center; gap: 12px; margin-right: auto; text-decoration: none; }
.brand-logo { display: block; width: auto; height: auto; max-width: 210px; max-height: 58px; flex: 0 0 auto; object-fit: contain; }
.brand-with-wordmark .brand-logo { width: auto; height: 58px; max-width: 70px; }
.brand-wordmark { display: flex; flex-direction: column; color: var(--navy); font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif; line-height: 1; white-space: nowrap; }
.brand-wordmark strong { font-size: 1.12rem; letter-spacing: .02em; }
.brand-wordmark > span { margin-top: 6px; font-size: .74rem; letter-spacing: .16em; }
.desktop-navigation { display: none; min-width: 0; }
.primary-menu, .footer-menu, .mobile-menu { list-style: none; margin: 0; padding: 0; }
.primary-menu { display: flex; flex-wrap: nowrap; align-items: center; gap: 4px; }
.primary-menu li { flex: 0 0 auto; }
.primary-menu a { display: inline-flex; align-items: center; padding: 8px 9px; border: 1px solid transparent; font-size: .9rem; font-weight: 600; text-decoration: none; white-space: nowrap; transition: background-color .15s ease, border-color .15s ease, color .15s ease; }
.primary-menu a:hover, .primary-menu .current-menu-item > a { background: rgba(16,28,48,.05); border-color: var(--divider); color: var(--gold-dark); }
.header-cta.button { display: none; flex: 0 0 auto; white-space: nowrap; }

@media (min-width: 1280px) {
  /* .wrap caps at var(--content) = 1200px from 1240px viewport upward, so the
     header's available width is constant for this entire range. A vw-based
     gap would keep growing with the viewport regardless and eventually
     re-collide, so it is fixed here instead of left to scale indefinitely. */
  .site-header-inner { gap: 16px; }
  .desktop-navigation { display: block; }
  .header-cta.button { display: inline-flex; }
  .mobile-menu-toggle { display: none !important; }
}
.mobile-menu-toggle, .mobile-menu-close { height: 46px; align-items: center; justify-content: center; border: 1px solid rgba(16,28,48,.22); background: rgba(16,28,48,.03); color: var(--navy); cursor: pointer; transition: background-color .15s ease, border-color .15s ease; }
.mobile-menu-toggle:hover, .mobile-menu-close:hover { background: rgba(16,28,48,.08); border-color: rgba(16,28,48,.36); }
.mobile-menu-toggle:focus-visible, .mobile-menu-close:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.mobile-menu-toggle .icon, .mobile-menu-close .icon { width: 19px; height: 19px; flex: 0 0 auto; }
.mobile-menu-toggle { display: flex; gap: 7px; padding: 0 15px; font-size: .86rem; font-weight: 600; white-space: nowrap; }
.mobile-menu-toggle-label { line-height: 1; }
.mobile-menu-close { display: none; width: 46px; padding: 0; }
.mobile-navigation-panel, .mobile-navigation-panel[hidden] { display: none !important; visibility: hidden; opacity: 0; }
.mobile-navigation-inner { padding-block: 24px 50px; }
.mobile-menu-close { margin-left: auto; }
.mobile-menu { margin: 32px 0; border-top: 1px solid var(--divider); }
.mobile-menu li { border-bottom: 1px solid var(--divider); }
.mobile-menu a { display: block; padding: 16px 4px; color: var(--navy); text-decoration: none; font-size: 1.1rem; }
.site-main [id] { scroll-margin-top: calc(96px + var(--git-runtime-header-offset, var(--git-admin-bar-offset, 0px))); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 46px; padding: 11px 20px; border: 1px solid transparent; font-weight: 700; line-height: 1.2; text-decoration: none; cursor: pointer; }
.button-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.button-primary:hover { background: #d3a63f; border-color: #d3a63f; }
.button-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.section-navy .button-secondary { color: var(--white); border-color: rgba(255,255,255,.68); }
.button-block { display: flex; width: 100%; margin-top: 12px; }
.button[aria-disabled="true"] { opacity: .58; cursor: not-allowed; }

.hero {
  --hero-media-width: 100%;
  --hero-image-position-x: 54%;
  --hero-image-position-y: 58%;
  --hero-fade: 18%;
  position: relative; min-height: clamp(600px, 44vw, 660px); display: grid; align-items: center; overflow: hidden; color: var(--white); background: var(--navy);
}
/* Full-height media panel: the visible portion of the image is controlled by
   clipping .hero-media itself to the right var(--hero-media-width) of the
   section, rather than by shrinking the image to a height percentage. A
   height-percentage + object-fit:contain approach (the previous
   implementation) anchors a short, letterboxed strip to the bottom-right and
   leaves the rest of the panel empty — clipping a full-height, object-fit:
   cover image avoids that dead space at every tier. */
.hero-media { position: absolute; inset: 0; clip-path: inset(0 0 0 calc(100% - var(--hero-media-width))); background: linear-gradient(110deg, #101c30 0%, #253449 52%, #444b54 100%); }
.hero-media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: var(--hero-image-position-x) var(--hero-image-position-y); }
/* Opaque up to the clip boundary, then a soft fade of width var(--hero-fade)
   into the visible image, so the copy/media seam reads as an intentional
   blend. Only the two custom properties change per tier below — the
   gradient formula itself is declared once here. */
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,22,42,.92) 0%, rgba(8,22,42,.92) calc(100% - var(--hero-media-width)), rgba(8,22,42,0) calc(100% - var(--hero-media-width) + var(--hero-fade))), linear-gradient(180deg, rgba(8,22,42,.02) 55%, rgba(8,22,42,.2) 100%); }
.hero-content { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr); max-width: var(--content); padding-block: clamp(40px, 5vw, 64px); }
.hero-copy-column { width: min(100%, 560px); padding-block: clamp(10px, 1.5vw, 20px); text-shadow: 0 1px 18px rgba(8,22,42,.18); }
.hero .eyebrow { margin-bottom: 13px; color: #e5be65; font-size: .875rem; line-height: 1.35; }
.hero h1 { max-width: 560px; margin: 0 0 17px; font-size: clamp(2.3rem, 3.3vw, 3.7rem); line-height: 1.1; text-wrap: balance; }
.hero .hero-copy { max-width: 520px; margin-bottom: 0; color: rgba(255,255,255,.88); font-size: clamp(.96rem, 1.05vw, 1.075rem); line-height: 1.58; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hero .button { min-height: 46px; }
.hero .button-secondary { background: rgba(8,22,42,.26); color: var(--white); border-color: rgba(255,255,255,.76); }
.hero .button-secondary:hover { background: rgba(255,255,255,.12); color: var(--white); border-color: var(--white); }
.hero-tertiary-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 15px; color: rgba(255,255,255,.88); font-size: .88rem; font-weight: 700; text-decoration-color: rgba(229,190,101,.72); text-decoration-thickness: 1px; }
.hero-tertiary-link:hover { color: #f2ca70; text-decoration-color: currentColor; }
.hero-tertiary-link .icon { transition: transform .18s ease; }
.hero-tertiary-link:hover .icon { transform: translateX(3px); }
.hero-trust-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; max-width: 560px; margin: 20px 0 0; padding: 16px 0 0; border-top: 1px solid rgba(255,255,255,.3); list-style: none; text-shadow: none; }
.hero-trust-list li { position: relative; min-width: 0; padding: 0 14px 0 16px; color: rgba(255,255,255,.77); font-size: .76rem; line-height: 1.48; }
.hero-trust-list li:first-child { padding-left: 16px; }
.hero-trust-list li + li { border-left: 1px solid rgba(255,255,255,.2); }
.hero-trust-list li::before { content: ""; position: absolute; top: .5em; left: 0; width: 6px; height: 6px; border: 1px solid #e5be65; transform: rotate(45deg); }

/* Tier: 900–1279px — mobile Header navigation is still active here (the nav
   switch is at 1280px). Copy column sized to leave a verified safety margin
   ahead of the media panel's clip boundary at both ends of this range. */
@media (min-width: 900px) {
  .hero { min-height: clamp(620px, 46vw, 680px); --hero-media-width: 52%; --hero-fade: 12%; }
  .hero-copy-column { width: min(46%, 540px); }
  .hero h1 { max-width: 480px; font-size: clamp(2.1rem, 3vw, 2.6rem); }
  .hero .hero-copy { max-width: 440px; }
  .hero-trust-list { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 540px; row-gap: 10px; }
  .hero-trust-list li { border-left: 0; }
  .hero-trust-list li:nth-child(2n) { border-left: 1px solid rgba(255,255,255,.2); }
}

/* Tier: 1280–1399px — desktop Header navigation active. Media grows, copy
   column widens now there is more room ahead of the clip boundary. */
@media (min-width: 1280px) {
  .hero { min-height: clamp(640px, 40vw, 700px); --hero-media-width: 58%; --hero-fade: 10%; }
  .hero-copy-column { width: min(38%, 456px); }
  .hero h1 { max-width: 430px; font-size: clamp(2.4rem, 3vw, 2.9rem); }
  .hero .hero-copy { max-width: 410px; }
  .hero-trust-list { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 456px; row-gap: 10px; }
  .hero-actions { gap: 12px; }
}

/* Tier: 1400px and up — larger, more dominant media. The media width is
   capped in px (not left as a pure percentage) so it stops growing past
   ~1040px on very wide viewports — otherwise, because .wrap is centered and
   capped at var(--content) while the media panel is measured against the
   full viewport, the growing side gutters would eventually let the media
   panel's clip boundary catch up with and collide with the copy column. */
@media (min-width: 1400px) {
  .hero { min-height: clamp(660px, 36vw, 720px); --hero-media-width: min(60%, 1040px); --hero-fade: 8%; }
  .hero-copy-column { width: min(34%, 430px); }
  .hero h1 { max-width: 400px; font-size: clamp(2.5rem, 3vw, 3rem); }
  .hero .hero-copy { max-width: 380px; }
  /* Three columns were tried here first, but at this copy-column width they
     wrap the longest trust statement to ~4 lines — not "clean" per the
     brief's own qualifier, so this tier keeps the same 2-column layout as
     the two narrower tiers rather than forcing a column count that doesn't
     fit the available text width. */
  .hero-trust-list { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 430px; row-gap: 10px; }
  .hero-trust-list li { border-left: 0; }
  .hero-trust-list li:nth-child(2n) { border-left: 1px solid rgba(255,255,255,.2); }
}

.archive-header, .page-header { padding: clamp(54px, 7vw, 92px) 0 44px; border-bottom: 1px solid var(--divider); }
.archive-header h1, .page-header h1 { max-width: 900px; margin-bottom: 12px; }
.breadcrumbs { margin-bottom: 16px; font-size: .82rem; color: var(--ink-muted); }
.breadcrumbs a { color: inherit; }
.about-page { background: var(--paper); }
.about-intro { padding: 20px 0 clamp(64px, 7vw, 92px); }
.about-breadcrumbs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: clamp(38px, 5vw, 66px); }
.about-intro-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr); align-items: center; gap: clamp(40px, 6vw, 78px); }
.about-intro-copy { max-width: 650px; }
.about-intro-copy .eyebrow { margin-bottom: 12px; }
.about-intro-copy h1 { margin-bottom: 22px; font-size: clamp(2.25rem, 3vw, 2.85rem); line-height: 1.08; }
.about-lede { margin: 0; color: var(--ink-muted); font-size: clamp(1rem, 1.25vw, 1.1rem); line-height: 1.82; }
.about-figure { min-width: 0; margin: 0; }
.about-figure-media { aspect-ratio: 16 / 10; overflow: hidden; background: #e8e9e5; }
.about-figure-media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-figure figcaption { margin-top: 9px; color: var(--ink-muted); font-size: .75rem; line-height: 1.5; }
.about-values { padding: clamp(48px, 6vw, 72px) 0; border-block: 1px solid var(--divider); background: #efefec; }
.about-values-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(32px, 5vw, 70px); }
.about-value { min-width: 0; }
.about-value-icon { display: block; width: 28px; height: 28px; margin-bottom: 18px; color: var(--gold-dark); fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.about-value h2 { margin-bottom: 10px; font-size: clamp(1.45rem, 2.25vw, 1.9rem); line-height: 1.12; }
.about-value p { max-width: 360px; margin: 0; color: var(--ink-muted); line-height: 1.72; }
.about-cta { padding: clamp(48px, 6vw, 72px) 0; background: var(--white); }
.about-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.about-cta-copy h2 { margin-bottom: 7px; font-size: clamp(1.75rem, 3vw, 2.4rem); }
.about-cta-copy p { margin: 0; color: var(--ink-muted); }
.about-cta-actions { display: flex; flex: 0 0 auto; flex-wrap: wrap; gap: 12px; }

.product-archive { background: var(--paper); }
.product-archive .product-archive-wrap { max-width: 1200px; }
.product-archive .product-archive-header { padding: 20px 0 28px; border-bottom: 1px solid var(--divider); background: var(--paper); }
.product-archive .breadcrumbs { margin-bottom: clamp(24px, 3vw, 36px); }
.product-archive .product-archive-header h1 { max-width: 760px; margin-bottom: 14px; font-size: clamp(2.25rem, 4vw, 3.25rem); line-height: 1.08; }
.product-archive .product-archive-intro { max-width: 930px; margin: 0; color: var(--ink-muted); font-size: 1rem; line-height: 1.75; }
.product-archive .product-search-form { display: flex; max-width: 780px; flex-wrap: wrap; align-items: stretch; gap: 10px; margin-top: 26px; }
.product-archive .product-search-control { display: flex; min-width: 0; min-height: 46px; flex: 1 1 420px; align-items: center; gap: 10px; padding: 0 14px; border: 1px solid #b7bbc0; background: var(--white); }
.product-archive .product-search-control:focus-within { border-color: var(--gold-dark); outline: 3px solid rgba(193,147,44,.22); }
.product-archive .product-search-icon { flex: 0 0 auto; color: var(--ink-muted); }
.product-archive .product-search-control input { width: 100%; min-width: 0; min-height: 44px; border: 0; outline: 0; background: transparent; color: var(--navy); font: inherit; }
.product-archive .product-search-control input::placeholder { color: #777f89; opacity: 1; }
.product-archive .product-search-submit { min-height: 46px; padding: 10px 22px; border: 1px solid var(--gold); background: var(--gold); color: var(--navy); font: inherit; font-weight: 700; cursor: pointer; }
.product-archive .product-search-submit:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }
.product-archive .product-search-submit:focus-visible { outline: 3px solid rgba(193,147,44,.3); outline-offset: 2px; }
.product-archive .product-filter-reset { display: inline-flex; min-height: 42px; flex: 0 0 100%; align-items: center; width: fit-content; color: var(--gold-dark); font-size: .88rem; font-weight: 700; }
.product-archive .product-filter-groups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 5vw, 72px); margin-top: 28px; }
.product-archive .product-filter-group { min-width: 0; }
.product-archive .product-filter-group h2 { margin-bottom: 10px; color: var(--ink-muted); font-family: inherit; font-size: .82rem; font-weight: 700; letter-spacing: .08em; line-height: 1.4; }
.product-archive .product-filter-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.product-archive .product-filter-pill { display: inline-flex; min-height: 38px; align-items: center; justify-content: center; padding: 7px 14px; border: 1px solid #c7cbd0; border-radius: 999px; background: transparent; color: var(--navy); font-size: .88rem; line-height: 1.25; text-align: center; text-decoration: none; }
.product-archive .product-filter-pill:hover { border-color: var(--gold-dark); background: #fff9ea; color: var(--navy); }
.product-archive .product-filter-pill:focus-visible { outline: 3px solid rgba(193,147,44,.28); outline-offset: 2px; }
.product-archive .product-filter-pill.is-selected { border-color: var(--gold-dark); background: var(--navy); color: var(--white); }
.product-archive .product-result-count { margin: 24px 0 0; color: var(--ink-muted); font-size: .9rem; }
.product-archive .product-archive-results { padding: clamp(32px, 4vw, 54px) 0 clamp(54px, 7vw, 86px); background: #f2f2ef; }
.product-archive .product-archive-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; gap: 18px; }
.product-archive .product-archive-card { display: flex; min-width: 0; height: 100%; flex-direction: column; overflow: hidden; border: 1px solid var(--divider); background: var(--white); }
.product-archive .product-archive-card-media { display: block; position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-bottom: 1px solid #e5e5e1; background: #efefec; line-height: 0; }
.product-archive .product-archive-card-media > img { display: block; width: 100%; height: 100%; max-width: none; padding: clamp(12px, 1.7vw, 22px); object-fit: contain; object-position: center; }
.product-archive .product-archive-card-fallback { display: grid; width: 100%; height: 100%; place-items: center; background: #ecece8; }
.product-archive .product-archive-card-fallback img { width: min(30%, 76px); height: auto; opacity: .68; }
.product-archive .product-archive-card-body { display: flex; min-width: 0; flex: 1 1 auto; flex-direction: column; padding: 18px 16px 17px; }
.product-archive .product-archive-card-category { min-height: 28px; margin: 0 0 11px; padding: 6px 9px; background: #fff7df; color: #8d681d; font-size: .72rem; line-height: 1.35; }
.product-archive .product-archive-card h2 { margin: 0 0 9px; font-size: clamp(1.35rem, 1.7vw, 1.6rem); line-height: 1.08; overflow-wrap: anywhere; }
.product-archive .product-archive-card h2 a { color: var(--navy); text-decoration: none; }
.product-archive .product-archive-card h2 a:hover { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 4px; }
.product-archive .product-archive-card h2 a:focus-visible, .product-archive .product-archive-card-media:focus-visible { outline: 3px solid rgba(193,147,44,.32); outline-offset: 2px; }
.product-archive .product-archive-card-description { margin: 0; color: var(--ink-muted); font-size: .88rem; line-height: 1.62; }
.product-archive .product-archive-surface-tags { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 13px 0 0; padding: 0; }
.product-archive .product-archive-surface-tags li { padding: 4px 8px; border: 1px solid #d9b65e; color: #846015; font-size: .68rem; line-height: 1.25; }
.product-archive .product-archive-card-actions { display: flex; flex-wrap: wrap; gap: 9px 16px; margin-top: auto; padding-top: 18px; }
.product-archive .product-archive-detail-link, .product-archive .product-archive-tds-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold-dark); font-size: .78rem; font-weight: 700; line-height: 1.4; }
.product-archive .product-archive-card-actions .icon { width: 15px; height: 15px; }
.product-archive .product-archive-pagination { margin-top: 34px; }
.product-archive .product-archive-empty { max-width: 700px; padding: clamp(28px, 5vw, 48px); border: 1px solid var(--divider); background: var(--white); }
.product-archive .product-archive-empty h2 { margin-bottom: 10px; font-size: clamp(1.75rem, 3vw, 2.25rem); }
.product-archive .product-archive-empty p { color: var(--ink-muted); }
.product-archive .product-empty-search-link { color: var(--gold-dark); font-weight: 700; }

.product-detail { background: var(--paper); }
.product-detail-wrap { max-width: 1200px; }
.product-detail-hero { padding: 20px 0 clamp(58px, 7vw, 84px); background: var(--paper); }
.product-detail-breadcrumbs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: clamp(30px, 4vw, 48px); }
.product-detail-hero-grid { display: grid; grid-template-columns: minmax(0, 46fr) minmax(0, 54fr); align-items: start; gap: clamp(38px, 6vw, 76px); }
.product-gallery { min-width: 0; }
.product-gallery-stage { position: relative; min-width: 0; overflow: hidden; border: 1px solid var(--divider); background: var(--white); }
.product-gallery:not(.is-enhanced):not(.product-gallery-single) .product-gallery-stage { display: grid; gap: 12px; overflow: visible; border: 0; background: transparent; }
.product-gallery.is-enhanced .product-gallery-stage, .product-gallery-single .product-gallery-stage { aspect-ratio: 1 / 1; }
.product-gallery-slide { min-width: 0; margin: 0; overflow: hidden; border: 1px solid var(--divider); background: var(--white); }
.product-gallery:not(.is-enhanced):not(.product-gallery-single) .product-gallery-slide { aspect-ratio: 4 / 3; }
.product-gallery.is-enhanced .product-gallery-slide { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.product-gallery-single .product-gallery-slide { width: 100%; height: 100%; border: 0; }
.product-gallery-slide[hidden] { display: none; }
.product-gallery-image { display: block; width: 100%; height: 100%; max-width: none; padding: clamp(22px, 4vw, 46px); object-fit: contain; object-position: center; }
.product-gallery-role-surface_problem .product-gallery-image,
.product-gallery-role-application_context .product-gallery-image,
.product-gallery-role-surface_context .product-gallery-image { padding: 0; object-fit: cover; }
.product-gallery-role-surface_detail .product-gallery-image { padding: 0; object-fit: cover; }
.product-gallery-slide figcaption { padding: 10px 12px; color: var(--ink-muted); font-size: .78rem; line-height: 1.5; }
.product-gallery.is-enhanced .product-gallery-slide figcaption { display: none; }
.product-gallery-fallback { display: grid; width: 100%; height: 100%; place-items: center; background: #ecece8; }
.product-gallery-fallback img { width: 76px; opacity: .65; }
.product-gallery-arrow { display: none; position: absolute; top: 50%; width: 48px; height: 48px; align-items: center; justify-content: center; padding: 0; border: 1px solid rgba(16,28,48,.28); background: rgba(255,255,255,.94); color: var(--navy); cursor: pointer; transform: translateY(-50%); }
.product-gallery.is-enhanced .product-gallery-arrow { display: inline-flex; }
.product-gallery-previous { left: 12px; }
.product-gallery-next { right: 12px; }
.product-gallery-arrow:hover { border-color: var(--gold); background: var(--gold); }
.product-gallery-arrow .icon { width: 20px; height: 20px; stroke: currentColor; }
.product-gallery-arrow .icon-reverse { transform: rotate(180deg); }
.product-gallery-meta { display: flex; min-height: 34px; align-items: flex-start; justify-content: space-between; gap: 16px; padding-top: 11px; }
.product-gallery-active-caption { margin: 0; color: var(--ink-muted); font-size: .78rem; line-height: 1.5; }
.product-gallery-counter { flex: 0 0 auto; margin: 0; color: var(--ink-muted); font-size: .76rem; font-weight: 700; letter-spacing: .06em; }
.product-gallery-thumbnails { display: none; gap: 8px; padding-top: 12px; overflow-x: auto; scrollbar-width: thin; }
.product-gallery.is-enhanced .product-gallery-thumbnails { display: flex; }
.product-gallery-thumbnail { width: 72px; height: 62px; flex: 0 0 72px; padding: 3px; overflow: hidden; border: 1px solid var(--divider); background: var(--white); cursor: pointer; }
.product-gallery-thumbnail img { display: block; width: 100%; height: 100%; object-fit: contain; }
.product-gallery-thumbnail.is-active { border-color: var(--gold-dark); box-shadow: inset 0 0 0 2px var(--gold); }
.product-detail-summary { min-width: 0; padding-top: clamp(8px, 2vw, 22px); }
.product-detail-code { margin-bottom: 12px; }
.product-detail-summary h1 { max-width: 680px; margin-bottom: 20px; font-size: clamp(2.75rem, 5vw, 4.35rem); line-height: 1.03; overflow-wrap: anywhere; }
.product-detail-intro { max-width: 680px; margin-bottom: 24px; color: var(--ink-muted); font-size: clamp(1rem, 1.35vw, 1.1rem); line-height: 1.78; }
.product-detail-taxonomy { display: grid; grid-template-columns: 90px minmax(0, 1fr); gap: 12px; padding: 12px 0; border-top: 1px solid var(--divider); }
.product-detail-taxonomy > span { color: var(--ink-muted); font-size: .78rem; font-weight: 700; }
.product-detail-taxonomy ul, .product-detail-chips { display: flex; flex-wrap: wrap; gap: 7px; list-style: none; margin: 0; padding: 0; }
.product-detail-taxonomy li, .product-detail-chips li { padding: 5px 9px; border: 1px solid #d9b65e; color: #7d5b14; background: #fffaf0; font-size: .75rem; line-height: 1.35; }
.product-detail-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.product-detail-document { border-color: var(--navy); background: var(--white); color: var(--navy); }
.product-detail-document:hover { border-color: var(--gold-dark); color: var(--gold-dark); }
.product-detail-context { padding: clamp(54px, 7vw, 82px) 0; border-block: 1px solid var(--divider); }
.product-detail-narrow { max-width: 900px; }
.product-detail-context h2, .product-detail-section-heading h2, .product-detail-surfaces h2, .product-detail-before-use h2 { margin-bottom: 16px; font-size: clamp(2rem, 4vw, 3.15rem); }
.product-detail-context p:last-child { margin: 0; color: var(--ink-muted); font-size: clamp(1rem, 1.35vw, 1.12rem); line-height: 1.85; }
.product-detail-benefits { padding: clamp(58px, 7vw, 88px) 0; background: #efefec; }
.product-detail-section-heading { max-width: 790px; margin-bottom: 30px; }
.product-detail-section-heading > p:last-child { color: var(--ink-muted); }
.product-benefit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; list-style: none; margin: 0; padding: 1px; background: var(--divider); }
.product-benefit-grid li { display: grid; min-height: 150px; grid-template-columns: 28px 1fr; align-content: start; gap: 12px; padding: clamp(22px, 3vw, 32px); background: var(--white); }
.product-benefit-grid li > span { display: grid; width: 24px; height: 24px; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-dark); font-size: .8rem; }
.product-benefit-grid p { margin: 0; line-height: 1.65; }
.product-detail-surfaces { padding: clamp(58px, 7vw, 88px) 0; }
.product-detail-surface-grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: clamp(38px, 7vw, 88px); }
.product-detail-surface-grid > div:first-child > p:last-child { color: var(--ink-muted); }
.product-detail-term-groups { display: grid; align-content: start; gap: 26px; }
.product-detail-term-groups h3 { margin-bottom: 12px; font-size: 1.35rem; }
.product-detail-chips li { padding: 8px 12px; background: transparent; }
.product-detail-practical { padding: clamp(58px, 7vw, 88px) 0; border-top: 1px solid var(--divider); background: #efefec; }
.product-practical-heading { max-width: 850px; }
.product-practical-specs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin-bottom: clamp(34px, 5vw, 54px); padding: 1px; background: var(--divider); }
.product-practical-coverage-grid { grid-template-columns: 1fr; }
.product-practical-spec { min-width: 0; padding: clamp(20px, 2.6vw, 30px); background: var(--white); }
.product-practical-coverage { grid-column: 1 / -1; }
.product-practical-label { margin: 0 0 10px; color: var(--gold-dark); font-size: .75rem; font-weight: 800; letter-spacing: .07em; line-height: 1.4; text-transform: uppercase; }
.product-practical-value { margin: 0; color: var(--navy); font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif; font-size: clamp(1.35rem, 2.2vw, 1.85rem); font-weight: 700; line-height: 1.18; }
.product-practical-spec > p:last-child:not(.product-practical-value) { margin: 9px 0 0; color: var(--ink-muted); font-size: .84rem; line-height: 1.6; }
.product-practical-tools { margin-bottom: clamp(34px, 5vw, 54px); }
.product-practical-tools > h3, .product-practical-method h3, .product-practical-restrictions h3, .product-practical-aftercare h3 { margin-bottom: 18px; font-size: clamp(1.55rem, 2.5vw, 2rem); }
.product-tool-groups { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.product-tool-group { min-width: 0; padding: 22px; border: 1px solid var(--divider); background: var(--white); }
.product-tool-group h4 { margin-bottom: 10px; color: var(--gold-dark); font-family: inherit; font-size: .78rem; letter-spacing: .04em; line-height: 1.4; }
.product-tool-group ul, .product-practical-restrictions ul, .product-practical-aftercare ul { margin: 0; padding-left: 19px; color: var(--ink-muted); }
.product-tool-group li, .product-practical-restrictions li, .product-practical-aftercare li { padding: 3px 0; line-height: 1.65; }
.product-practical-method { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 1px; margin-bottom: clamp(34px, 5vw, 54px); padding: 1px; background: var(--divider); }
.product-practical-timing { margin-bottom: clamp(34px, 5vw, 54px); }
.product-practical-timing > h3 { margin-bottom: 18px; font-size: clamp(1.55rem, 2.5vw, 2rem); }
.product-practical-timing .product-practical-specs { margin-bottom: 0; }
.product-practical-method > section { min-width: 0; padding: clamp(24px, 3.5vw, 40px); background: var(--white); }
.product-practical-checklist { display: grid; gap: 15px; list-style: none; margin: 0; padding: 0; }
.product-practical-checklist li { display: grid; grid-template-columns: 24px minmax(0, 1fr); gap: 10px; color: var(--ink-muted); line-height: 1.65; }
.product-practical-checklist li > span:first-child { display: grid; width: 22px; height: 22px; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-dark); font-size: .72rem; }
.product-practical-steps ol { display: grid; gap: 0; list-style: none; margin: 0; padding: 0; counter-reset: product-steps; }
.product-practical-steps li { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 14px; padding: 15px 0; border-top: 1px solid var(--divider); color: var(--ink-muted); line-height: 1.65; counter-increment: product-steps; }
.product-practical-steps li:first-child { padding-top: 0; border-top: 0; }
.product-practical-steps li::before { content: counter(product-steps, decimal-leading-zero); color: var(--gold-dark); font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif; font-size: 1.3rem; font-weight: 700; }
.product-practical-restrictions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-bottom: clamp(30px, 4vw, 44px); }
.product-practical-restrictions-single { grid-template-columns: 1fr; }
.product-practical-restrictions > section { padding: clamp(22px, 3vw, 32px); border: 1px solid var(--divider); background: var(--white); }
.product-practical-warning { border-color: #d4b169 !important; background: #fff8e8 !important; }
.product-practical-warning h3 { color: #765414; }
.product-practical-aftercare { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.product-practical-aftercare > section { padding: clamp(22px, 3vw, 32px); border-top: 2px solid var(--gold); background: var(--white); }
.product-detail-before-use { padding: clamp(58px, 7vw, 88px) 0; border-block: 1px solid var(--divider); background: var(--navy); color: var(--white); }
.product-detail-before-grid { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); gap: clamp(38px, 7vw, 88px); }
.product-detail-before-copy { color: rgba(255,255,255,.82); font-size: 1.05rem; line-height: 1.82; }
.product-detail-safety { padding: 22px 24px; margin-top: 24px; border-left: 3px solid var(--gold); background: rgba(255,255,255,.07); }
.product-detail-safety h3 { margin-bottom: 8px; font-size: 1.4rem; }
.product-detail-safety p { margin: 0; color: rgba(255,255,255,.78); font-size: .92rem; line-height: 1.72; }
.product-detail-related { padding: clamp(58px, 7vw, 88px) 0; }
.product-related-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.product-related-card { display: grid; min-width: 0; grid-template-columns: minmax(150px, .78fr) minmax(0, 1.22fr); border: 1px solid var(--divider); background: var(--white); }
.product-related-media { display: grid; min-height: 280px; place-items: center; padding: 18px; border-right: 1px solid var(--divider); background: #efefec; }
.product-related-media img { width: 100%; height: 100%; max-height: 250px; object-fit: contain; }
.product-related-body { min-width: 0; padding: 24px; }
.product-related-body h3 { margin-bottom: 10px; font-size: clamp(1.5rem, 2.3vw, 2rem); overflow-wrap: anywhere; }
.product-related-body h3 a { text-decoration: none; }
.product-related-body > p:not(.eyebrow) { color: var(--ink-muted); font-size: .9rem; line-height: 1.62; }
.product-related-body .product-detail-chips { margin-top: 16px; }
.product-related-body .product-detail-chips li { padding: 4px 7px; font-size: .68rem; }
.product-related-actions { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 20px; }
.product-related-actions a { color: var(--gold-dark); font-size: .8rem; font-weight: 700; }
.product-detail-cta { padding: clamp(54px, 7vw, 78px) 0; }
.product-detail-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 38px; }
.product-detail-cta h2 { max-width: 700px; margin-bottom: 10px; font-size: clamp(2rem, 4vw, 3.1rem); }
.product-detail-cta p { max-width: 700px; margin: 0; color: rgba(255,255,255,.74); }
.product-detail-cta-actions { display: flex; flex: 0 0 auto; flex-wrap: wrap; gap: 10px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.section-heading > div { max-width: 760px; }
.section-heading h2 { margin-bottom: 10px; }

.home-technical-guidance { padding: clamp(58px, 7vw, 88px) 0; border-block: 1px solid var(--divider); background: #efefec; text-align: center; }
.home-technical-guidance-inner { display: flex; max-width: 960px; flex-direction: column; align-items: center; }
.home-technical-guidance .eyebrow { margin-bottom: 10px; }
.home-technical-guidance h2 { max-width: 820px; margin-bottom: 17px; font-size: clamp(2rem, 4vw, 3.25rem); }
.home-technical-guidance-description { max-width: 790px; margin: 0; color: var(--ink-muted); font-size: clamp(1rem, 1.4vw, 1.1rem); line-height: 1.75; }
.home-technical-guidance-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; gap: 20px; }
.card { display: flex; min-width: 0; height: auto; flex-direction: column; overflow: visible; background: var(--white); border: 1px solid var(--divider); box-shadow: none; transition: transform .18s ease, box-shadow .18s ease; }
a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-media { display: block; position: relative; width: 100%; aspect-ratio: 4 / 3; flex: 0 0 auto; overflow: hidden; background: #e8e9e5; line-height: 0; }
.card-media img { display: block; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center; }
.product-card .card-media { background: var(--white); }
.product-card .card-media img { object-fit: contain; padding: clamp(12px, 2vw, 24px); }
.article-card .card-media img, .reference-card .card-media img, .solution-card .card-media img { object-fit: cover; }
.card-body { display: flex; min-width: 0; height: auto; flex: 1 1 auto; flex-direction: column; overflow: visible; padding: 24px; }
.card-body > :last-child { margin-bottom: 0; }
.card-body h2, .card-body h3 { margin-bottom: 10px; font-size: clamp(1.35rem, 2vw, 1.85rem); overflow-wrap: anywhere; }
.h3-like { display: block; margin-bottom: 10px; font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif; font-size: clamp(1.35rem, 2vw, 1.85rem); font-weight: 700; line-height: 1.06; overflow-wrap: anywhere; }
.card-body p { color: var(--ink-muted); }
.card-link { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-dark); font-weight: 700; }
.card-body > .card-link { margin-top: auto; padding-top: 8px; }
.home-recommended-product-card { height: 100%; }
.home-recommended-product-media { aspect-ratio: 4 / 3; background: #f5f5f2; }
.home-recommended-product-media img { object-fit: contain; object-position: center; padding: clamp(16px, 2.2vw, 28px); }
.home-recommended-product-body { gap: 0; }
.home-recommended-product-code { margin-bottom: 8px; }
.home-recommended-product-card h3 { margin-bottom: 12px; }
.home-recommended-product-card h3 a { text-decoration: none; }
.home-recommended-product-hook { margin: 0 0 12px; color: var(--navy); font-size: 1rem; font-weight: 700; line-height: 1.55; }
.home-recommended-product-description { margin: 0; color: var(--ink-muted); font-size: .92rem; line-height: 1.72; }
.home-recommended-product-description strong { color: var(--navy); }
.home-recommended-product-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 20px; margin-top: auto; padding-top: 22px; }
.home-recommended-product-actions .card-link { min-height: 44px; align-items: center; }
.home-recommended-products-missing { grid-column: 1 / -1; margin: 0; padding: 14px 16px; border-left: 3px solid var(--gold); background: #fff7df; color: var(--navy); }
.card-inactive { background: #efefec; }
.card-inactive .card-body { opacity: .82; }
.solution-card.card { display: flex; color: inherit; text-decoration: none; }
.solution-card .card-body > span { display: block; }
.solution-card .card-body > .card-link { display: inline-flex; }
.surface-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.surface-card { display: flex; min-height: 92px; flex-direction: column; border: 1px solid var(--divider); background: var(--paper); text-decoration: none; }
.surface-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.surface-card-image { display: block; aspect-ratio: 16 / 8; overflow: hidden; }
.surface-card-image img { width: 100%; height: 100%; object-fit: cover; }
.surface-card-body { display: flex; flex: 1; align-items: center; justify-content: space-between; gap: 10px; padding: 18px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 14px 0; }
.tag { display: inline-block; padding: 5px 9px; border: 1px solid var(--divider); background: var(--paper); font-size: .76rem; }

.content-layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(280px, .75fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.content-card { background: var(--white); border: 1px solid var(--divider); padding: clamp(24px, 4vw, 48px); }
.content-card + .content-card { margin-top: 20px; }
.sidebar-card { position: sticky; top: 106px; background: var(--white); border: 1px solid var(--divider); padding: 28px; }
.product-hero-grid { display: grid; grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr); gap: clamp(36px, 7vw, 92px); align-items: center; }
.product-packshot { min-height: 420px; display: grid; place-items: center; background: var(--white); border: 1px solid var(--divider); padding: 40px; }
.product-packshot img { max-height: 430px; width: 100%; object-fit: contain; }
.technical-table { width: 100%; border-collapse: collapse; }
.technical-table th, .technical-table td { border-bottom: 1px solid var(--divider); padding: 13px 10px; text-align: left; vertical-align: top; }
.technical-table th { width: 38%; font-size: .84rem; color: var(--ink-muted); }
.document-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.document-unavailable { padding: 14px; background: #efefec; border-left: 3px solid var(--gold); }
.safety-contact { margin-top: 18px; padding: 14px; background: #fff8e9; border-left: 3px solid var(--gold); }
.illustrative-note { font-size: .8rem; color: var(--ink-muted); }
.review-marker { padding: 12px 16px; border: 1px solid #cf982a; background: #fff7df; font-weight: 700; }
.prose { max-width: 800px; }
.prose > *:first-child { margin-top: 0; }
.prose h2, .prose h3 { margin-top: 1.5em; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.gallery-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.reference-detail { background: var(--paper); }
.reference-detail-wrap { max-width: 1120px; }
.reference-detail-header { padding: 22px 0 clamp(36px, 5vw, 58px); }
.reference-detail-breadcrumbs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: clamp(28px, 4vw, 44px); }
.reference-detail-eyebrow { margin-bottom: 9px; }
.reference-detail-region { display: inline-block; padding: 4px 9px; margin: 0 0 15px; border: 1px solid var(--divider); color: var(--ink-muted); font-size: .78rem; line-height: 1.35; }
.reference-detail-title { max-width: 980px; margin-bottom: 18px; font-size: clamp(2.625rem, 4.2vw, 3.5rem); line-height: 1.08; overflow-wrap: anywhere; }
.reference-detail-summary { max-width: 880px; margin: 0; color: var(--ink-muted); font-size: clamp(1rem, 1.35vw, 1.125rem); line-height: 1.75; }
.reference-detail-gallery { padding: 0 0 clamp(44px, 6vw, 72px); }
.reference-gallery-grid { display: grid; height: clamp(500px, 49vw, 650px); grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr); grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 14px; }
.reference-gallery-item { position: relative; min-width: 0; min-height: 0; margin: 0; overflow: hidden; background: #e8e9e5; border: 1px solid var(--divider); }
.reference-gallery-item:first-child { grid-row: 1 / -1; }
.reference-gallery-image { display: block; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center; }
.reference-gallery-item figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 9px 12px; background: rgba(8, 22, 42, .82); color: var(--white); font-size: .75rem; line-height: 1.45; }
.reference-gallery-count-1 { height: auto; grid-template-columns: 1fr; grid-template-rows: none; }
.reference-gallery-count-1 .reference-gallery-item:first-child { aspect-ratio: 16 / 9; grid-row: auto; }
.reference-gallery-count-2 { height: clamp(360px, 38vw, 500px); grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: 1fr; }
.reference-gallery-count-2 .reference-gallery-item:first-child { grid-row: auto; }
.reference-detail-facts { border-block: 1px solid var(--divider); background: var(--white); }
.reference-facts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1px; padding-block: 0; background: var(--divider); }
.reference-fact { min-width: 0; padding: clamp(24px, 3vw, 34px); background: var(--white); }
.reference-fact-label { margin-bottom: 7px; color: var(--ink-muted); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.reference-fact-value { margin: 0; font-weight: 600; line-height: 1.5; overflow-wrap: anywhere; }
.reference-fact-links a { color: var(--gold-dark); }
.reference-detail-products { padding: clamp(48px, 6vw, 72px) 0; background: #efefec; border-bottom: 1px solid var(--divider); }
.reference-detail-products h2 { margin-bottom: 10px; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.reference-detail-products > .reference-detail-wrap > p { max-width: 760px; margin-bottom: 22px; color: var(--ink-muted); }
.reference-product-links { display: flex; flex-wrap: wrap; gap: 12px; }
.reference-detail-cta { padding: clamp(48px, 6vw, 72px) 0; background: var(--navy); color: var(--white); }
.reference-detail-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.reference-detail-cta h2 { max-width: 680px; margin-bottom: 9px; font-size: clamp(2rem, 3.5vw, 2.9rem); }
.reference-detail-cta p { max-width: 680px; margin: 0; color: rgba(255,255,255,.74); }
.reference-detail-cta-actions { display: flex; flex: 0 0 auto; flex-wrap: wrap; gap: 12px; }
.reference-detail-cta .button-secondary { color: var(--white); border-color: rgba(255,255,255,.72); }
.reference-detail-cta .button-secondary:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.search-form { display: flex; gap: 8px; max-width: 620px; }
.search-form label { flex: 1; }
.search-field { width: 100%; min-height: 46px; padding: 10px 12px; border: 1px solid var(--divider); background: var(--white); }
.pagination { margin-top: 40px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.page-numbers { display: inline-flex; min-width: 42px; min-height: 42px; align-items: center; justify-content: center; border: 1px solid var(--divider); padding: 8px; text-decoration: none; }
.page-numbers.current { background: var(--navy); color: var(--white); }

.git-enquiry-form { max-width: 820px; padding: clamp(24px, 4vw, 46px); border: 1px solid var(--divider); background: var(--white); }
.git-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.git-field { display: flex; flex-direction: column; gap: 6px; }
.git-field-wide { grid-column: 1 / -1; }
.git-field label, .git-consent-field label { font-weight: 600; }
.git-field input, .git-field select, .git-field textarea { width: 100%; border: 1px solid #aeb2b7; background: var(--white); color: var(--navy); padding: 11px 12px; border-radius: 0; }
.git-field input:focus, .git-field select:focus, .git-field textarea:focus { outline: 3px solid rgba(193,147,44,.25); border-color: var(--gold-dark); }
.git-field-help { margin: 0; color: var(--ink-muted); font-size: .8rem; }
.git-consent-field { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 10px; margin: 22px 0; }
.git-consent-field input { width: 18px; height: 18px; margin-top: 4px; }
.git-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.git-form-notice { max-width: 820px; padding: 20px; margin-bottom: 20px; border-left: 4px solid; }
.git-form-success { background: #e9f5ee; border-color: var(--success); }
.git-form-error { background: #faeceb; border-color: var(--danger); }

.contact-details { display: grid; gap: 18px; margin-bottom: 30px; }
.contact-detail { display: grid; grid-template-columns: 28px 1fr; gap: 12px; }
.contact-detail .icon { color: var(--gold-dark); }
address { font-style: normal; }

.site-footer { padding: clamp(52px, 5vw, 68px) 0 0; background: var(--navy); color: var(--white); }
.site-footer .footer-grid { display: grid; grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, .8fr)); gap: clamp(32px, 4vw, 58px); align-items: start; }
.site-footer .footer-brand, .site-footer .footer-navigation, .site-footer .footer-contact { min-width: 0; }
.site-footer .footer-brand-lockup { display: inline-flex; align-items: center; gap: 13px; color: var(--white); text-decoration: none; }
.site-footer .footer-logo { display: block; width: auto; height: auto; max-width: 72px; max-height: 48px; object-fit: contain; }
.site-footer .footer-brand-name { max-width: 190px; font-size: 1rem; font-weight: 800; line-height: 1.2; letter-spacing: .025em; }
.site-footer .footer-brand-description { max-width: 340px; margin: 20px 0 0; color: rgba(255,255,255,.76); font-size: .95rem; line-height: 1.7; }
.site-footer .footer-company-name { max-width: 340px; margin: 12px 0 0; color: rgba(255,255,255,.58); font-size: .88rem; line-height: 1.65; }
.site-footer .footer-manufacturer-attribution { max-width: 340px; margin: 9px 0 0; color: rgba(255,255,255,.58); font-size: .84rem; line-height: 1.65; }
.site-footer .footer-manufacturer-attribution a { color: rgba(255,255,255,.9); font-weight: 650; text-decoration: underline; text-decoration-color: rgba(255,255,255,.45); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.site-footer .footer-manufacturer-attribution a:hover { color: var(--gold); text-decoration-color: currentColor; }
.site-footer .footer-manufacturer-attribution a:focus-visible { color: var(--gold); outline: 2px solid var(--gold); outline-offset: 4px; text-decoration-color: currentColor; }
.site-footer .footer-heading { margin: 2px 0 18px; color: rgba(255,255,255,.7); font-size: .95rem; font-weight: 700; line-height: 1.3; letter-spacing: .035em; }
.site-footer .footer-link-list { list-style: none; margin: 0; padding: 0; }
.site-footer .footer-link-list li + li { margin-top: 10px; }
.site-footer a { color: rgba(255,255,255,.94); text-decoration: none; text-underline-offset: 4px; transition: color .18s ease, text-decoration-color .18s ease; }
.site-footer .footer-link-list a, .site-footer .footer-contact-link, .site-footer .footer-email, .site-footer .footer-legal a { overflow-wrap: anywhere; }
.site-footer a:hover { color: var(--gold); text-decoration: underline; text-decoration-thickness: 1px; }
.site-footer a:focus-visible { color: var(--gold); outline: 2px solid var(--gold); outline-offset: 4px; }
.site-footer .footer-email { display: inline-block; margin-bottom: 14px; }
.site-footer address { margin: 0; color: rgba(255,255,255,.76); font-size: .92rem; font-style: normal; line-height: 1.7; }
.site-footer .footer-contact-link { display: inline-block; margin-top: 14px; font-weight: 700; }
.site-footer .footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: clamp(42px, 5vw, 62px); padding: 22px 0 24px; border-top: 1px solid rgba(255,255,255,.17); color: rgba(255,255,255,.62); font-size: .84rem; line-height: 1.5; }
.site-footer .footer-bottom p { margin: 0; }
.site-footer .footer-legal { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 22px; }
.site-footer .footer-legal a { color: rgba(255,255,255,.72); }

@media (max-width: 1000px) {
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .surface-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .product-related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1100px) {
  .product-archive .product-archive-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .site-header-inner { min-height: 80px; gap: 12px; }
  .brand { gap: 9px; }
  .brand-logo { max-width: 170px; max-height: 50px; }
  .brand-with-wordmark .brand-logo { height: 50px; max-width: 58px; }
  .brand-wordmark strong { font-size: .94rem; }
  .brand-wordmark > span { margin-top: 5px; font-size: .66rem; }
}

@media (max-width: 899px) {
  .site-header-inner { min-height: 80px; gap: 14px; }
  .brand { gap: 10px; }
  .brand-logo { max-width: 150px; max-height: 50px; }
  .brand-with-wordmark .brand-logo { height: 50px; max-width: 60px; }
  .brand-wordmark strong { font-size: 1rem; }
  .brand-wordmark > span { margin-top: 5px; font-size: .68rem; }
  .mobile-navigation-panel.is-open {
    display: block !important;
    visibility: visible;
    opacity: 1;
    position: fixed;
    top: var(--git-runtime-header-offset, var(--git-admin-bar-offset, 0px));
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - var(--git-runtime-header-offset, var(--git-admin-bar-offset, 0px)));
    height: calc(100dvh - var(--git-runtime-header-offset, var(--git-admin-bar-offset, 0px)));
    z-index: 1000;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--paper);
    color: var(--navy);
  }
  .mobile-navigation-panel.is-open .mobile-navigation-inner { min-height: 100%; }
  .mobile-navigation-panel.is-open .mobile-menu-close { display: flex; }
  .mobile-navigation-panel.is-open nav { display: block; position: static; width: 100%; visibility: visible; opacity: 1; }
  .mobile-navigation-panel.is-open .mobile-menu { display: block; position: static; width: 100%; min-width: 0; max-height: none; visibility: visible; opacity: 1; overflow: visible; transform: none; }
  .mobile-navigation-panel.is-open .mobile-menu li { display: block; position: static; width: 100%; visibility: visible; opacity: 1; transform: none; }
  .mobile-navigation-panel.is-open .mobile-menu a { display: block !important; visibility: visible; opacity: 1; color: var(--navy); }
  .hero { min-height: clamp(650px, 76vw, 720px); }
  .hero-media img { object-position: 55% 58%; }
  .hero-media::after { background: linear-gradient(180deg, rgba(8,22,42,.16) 0%, rgba(8,22,42,.58) 58%, rgba(8,22,42,.78) 100%), linear-gradient(90deg, rgba(8,22,42,.88) 0%, rgba(8,22,42,.66) 58%, rgba(8,22,42,.22) 100%); }
  .hero-content { grid-template-columns: minmax(0, 1fr); }
  .hero-copy-column { width: min(100%, 650px); }
  .hero h1 { max-width: 620px; font-size: clamp(2.65rem, 5.5vw, 3.125rem); }
  .hero-trust-list { max-width: 650px; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 34px; }
  .about-intro-copy { max-width: 720px; }
  .about-figure { width: 100%; }
  .about-values-grid { gap: 30px; }
  .about-cta-inner { align-items: flex-start; flex-direction: column; }
  .reference-gallery-grid, .reference-gallery-count-1, .reference-gallery-count-2 { height: auto; grid-template-columns: 1fr; grid-template-rows: none; gap: 12px; }
  .reference-gallery-item, .reference-gallery-grid .reference-gallery-item:first-child { aspect-ratio: 4 / 3; grid-row: auto; }
  .reference-detail-cta-inner { align-items: flex-start; flex-direction: column; }
  .product-archive .product-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.product-detail-hero-grid { grid-template-columns: 1fr; gap: 34px; }
	.product-gallery.is-enhanced .product-gallery-stage, .product-gallery-single .product-gallery-stage { aspect-ratio: 4 / 3; }
	.product-detail-summary { padding-top: 0; }
	.product-benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.product-detail-surface-grid, .product-detail-before-grid { grid-template-columns: 1fr; gap: 30px; }
	.product-tool-groups { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.product-practical-method { grid-template-columns: 1fr; }
	.product-detail-cta-inner { align-items: flex-start; flex-direction: column; }
  .product-hero-grid { grid-template-columns: 1fr; }
  .product-packshot { min-height: 330px; }
  .site-footer .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px 48px; }
  .site-footer .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 782px) {
  body.admin-bar { --git-admin-bar-offset: 46px; }
}

@media (max-width: 640px) {
  .wrap { width: min(calc(100% - 28px), var(--content)); }
  .site-header-inner { min-height: 72px; gap: 10px; }
  .brand { gap: 8px; }
  .brand-logo { max-width: 140px; max-height: 44px; }
  .brand-with-wordmark .brand-logo { height: 44px; max-width: 52px; }
  .brand-wordmark strong { font-size: .9rem; }
  .brand-wordmark > span { margin-top: 4px; font-size: .62rem; }
  .hero { min-height: 760px; align-items: end; }
  .hero-media img { object-position: 56% center; }
  .hero-media::after { background: linear-gradient(180deg, rgba(8,22,42,.26) 0%, rgba(8,22,42,.58) 35%, rgba(8,22,42,.92) 78%, rgba(8,22,42,.97) 100%); }
  .hero-content { padding-block: 42px; }
  .hero-copy-column { padding-block: 0; }
  .hero h1 { margin-bottom: 15px; font-size: clamp(2.05rem, 10vw, 2.6rem); }
  .hero .hero-copy { font-size: .95rem; line-height: 1.56; }
  .hero-actions, .document-actions { flex-direction: column; align-items: stretch; }
  .hero-actions { margin-top: 21px; }
  .hero-tertiary-link { min-height: 44px; margin-top: 8px; }
  .hero-trust-list { grid-template-columns: 1fr; gap: 8px; margin-top: 13px; padding-top: 15px; }
  .hero-trust-list li { padding-left: 17px; font-size: .76rem; }
  .hero-trust-list li + li { border-left: 0; }
  .about-intro { padding-top: 16px; }
  .about-breadcrumbs { margin-bottom: 34px; }
  .about-intro-copy h1 { font-size: clamp(2.1rem, 9vw, 2.5rem); }
  .about-figure-media { aspect-ratio: 4 / 3; }
  .about-values-grid { grid-template-columns: 1fr; gap: 38px; }
  .about-value p { max-width: none; }
  .about-cta-actions { width: 100%; flex-direction: column; align-items: stretch; }
  .reference-detail-header { padding-top: 16px; }
  .reference-detail-breadcrumbs { margin-bottom: 28px; }
  .reference-detail-title { font-size: clamp(2.1rem, 10vw, 2.5rem); line-height: 1.12; }
  .reference-facts-grid { grid-template-columns: 1fr; }
  .reference-detail-cta-actions { width: 100%; flex-direction: column; align-items: stretch; }
  .product-archive .product-archive-header { padding-top: 16px; }
  .product-archive .product-archive-header h1 { font-size: clamp(2.1rem, 10vw, 2.5rem); }
  .product-archive .product-search-form { gap: 8px; }
  .product-archive .product-search-control { flex-basis: 100%; }
  .product-archive .product-search-submit { flex: 1 1 auto; }
  .product-archive .product-filter-groups { grid-template-columns: 1fr; gap: 26px; }
  .product-archive .product-filter-pill { min-height: 42px; }
  .product-archive .product-archive-grid { grid-template-columns: 1fr; }
	.product-detail-hero { padding-top: 16px; }
	.product-detail-breadcrumbs { margin-bottom: 28px; }
	.product-detail-summary h1 { font-size: clamp(2.35rem, 12vw, 3.1rem); }
	.product-detail-actions, .product-detail-cta-actions { width: 100%; flex-direction: column; align-items: stretch; }
	.product-detail-actions .button, .product-detail-cta-actions .button { width: 100%; }
	.product-gallery-arrow { width: 44px; height: 44px; }
	.product-gallery-previous { left: 8px; }
	.product-gallery-next { right: 8px; }
	.product-gallery-thumbnail { width: 64px; height: 56px; flex-basis: 64px; }
	.product-benefit-grid { grid-template-columns: 1fr; }
	.product-benefit-grid li { min-height: 0; }
	.product-practical-specs, .product-tool-groups, .product-practical-restrictions, .product-practical-aftercare { grid-template-columns: 1fr; }
	.product-practical-coverage { grid-column: auto; }
	.product-practical-method > section { padding: 24px 20px; }
	.product-related-card { grid-template-columns: 1fr; }
	.product-related-media { min-height: 240px; border-right: 0; border-bottom: 1px solid var(--divider); }
  .card-grid, .gallery-grid, .git-form-grid, .footer-grid { grid-template-columns: 1fr; }
  .surface-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer { padding-top: 46px; }
  .site-footer .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .site-footer .footer-grid > :first-child { grid-column: auto; }
  .site-footer .footer-bottom { align-items: flex-start; flex-direction: column; gap: 14px; margin-top: 40px; padding-block: 20px 24px; }
  .site-footer .footer-legal { justify-content: flex-start; gap: 10px 18px; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .git-field-wide { grid-column: auto; }
  .technical-table th, .technical-table td { display: block; width: 100%; }
  .technical-table th { padding-bottom: 2px; border-bottom: 0; }
  .technical-table td { padding-top: 2px; }
}

/* Home Problem–Solution carousel (scoped). */
.home-problem-section { padding: clamp(40px, 4vw, 56px) 0 clamp(56px, 6vw, 76px); background: var(--paper); border-bottom: 1px solid var(--divider); }
.home-problem-intro { max-width: 780px; margin: 0 0 20px; }
.home-problem-intro .eyebrow { margin-bottom: 8px; }
.home-problem-intro h2 { margin: 0 0 9px; font-size: clamp(30px, 3.4vw, 46px); line-height: 1.12; }
.home-problem-intro > p:last-child { margin: 0; color: var(--ink-muted); font-size: 16px; line-height: 1.65; }
.home-problem-carousel { outline: none; }
.home-problem-carousel:focus-visible { outline: 3px solid var(--gold); outline-offset: 5px; }
.home-problem-track { display: grid; gap: 24px; }
.home-problem-slide { display: grid; width: 100%; min-width: 0; max-width: 100%; grid-template-columns: minmax(0, 56%) minmax(0, 44%); min-height: 560px; align-items: stretch; overflow: hidden; isolation: isolate; background: var(--white); border: 1px solid var(--divider); }
.home-problem-carousel.is-carousel-ready .home-problem-track { display: block; }
.home-problem-carousel.is-carousel-ready .home-problem-slide[hidden] { display: none; }
.home-problem-media { position: relative; z-index: 0; width: 100%; min-width: 0; max-width: 100%; min-height: 560px; height: 100%; margin: 0; overflow: hidden; contain: layout paint; background: #efefec; }
.home-problem-media > img { display: block; width: 100%; min-width: 0; max-width: 100%; height: 100%; object-fit: contain; object-position: center center; }
.home-problem-media figcaption { position: absolute; right: 12px; bottom: 10px; max-width: calc(100% - 24px); padding: 5px 8px; color: var(--white); background: rgba(16,28,48,.78); font-size: 11px; line-height: 1.35; }
.home-problem-placeholder { position: absolute; inset: 0; display: grid; align-content: center; justify-items: center; gap: 9px; padding: clamp(24px, 5vw, 64px); text-align: center; background: #e6e5e1; color: var(--navy); }
.home-problem-placeholder-label { color: #80600e; font-size: 11px; font-weight: 700; letter-spacing: .16em; line-height: 1.3; }
.home-problem-placeholder-copy { max-width: 290px; color: var(--ink-muted); font-size: clamp(15px, 1.4vw, 18px); line-height: 1.55; }
.home-problem-arrow { display: none; position: absolute; top: 50%; width: 48px; height: 48px; padding: 0; align-items: center; justify-content: center; border: 1px solid rgba(16,28,48,.2); background: rgba(255,255,255,.96); color: var(--navy); box-shadow: 0 3px 12px rgba(16,28,48,.12); transform: translateY(-50%); cursor: pointer; z-index: 2; }
.home-problem-carousel.is-carousel-ready .home-problem-arrow { display: inline-flex; }
.home-problem-arrow span { font-size: 34px; line-height: 1; transform: translateY(-1px); }
.home-problem-prev { left: 16px; }
.home-problem-next { right: 16px; }
.home-problem-arrow:hover { color: var(--white); background: var(--navy); }
.home-problem-arrow:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.home-problem-content { position: relative; z-index: 1; width: 100%; min-width: 0; max-width: 100%; display: flex; flex-direction: column; gap: 10px; overflow-wrap: anywhere; padding: clamp(26px, 2.6vw, 32px); background: var(--white); }
.home-problem-content > * { min-width: 0; max-width: 100%; }
.home-problem-summary .eyebrow { margin: 0 0 5px; }
.home-problem-summary h3 { margin: 0 0 7px; font-size: clamp(25px, 2.2vw, 33px); line-height: 1.15; }
.home-problem-description { margin: 0; color: var(--ink-muted); font-size: 14px; line-height: 1.55; }
.home-problem-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 0; padding: 0; list-style: none; }
.home-problem-tags li { padding: 4px 9px; border: 1px solid #d6d9dd; color: var(--navy); background: var(--white); font-size: 11px; line-height: 1.2; }
.home-problem-assessment { padding: 10px 12px; border-left: 3px solid var(--gold); background: #f5f4f0; }
.home-problem-assessment strong { display: block; margin-bottom: 2px; font-size: 13px; }
.home-problem-assessment p { margin: 0; color: var(--ink-muted); font-size: 12px; line-height: 1.48; }
.home-problem-guidance h4 { margin: 0 0 7px; font-size: 16px; }
.home-problem-guidance ol { display: grid; gap: 6px; margin: 0; padding: 0; list-style: none; counter-reset: home-problem-step; }
.home-problem-guidance li { display: grid; grid-template-columns: 23px minmax(0, 1fr); column-gap: 8px; counter-increment: home-problem-step; }
.home-problem-guidance li::before { content: counter(home-problem-step); display: flex; width: 22px; height: 22px; align-items: center; justify-content: center; border: 1px solid var(--gold); color: #7d5b09; font-size: 11px; font-weight: 700; }
.home-problem-guidance li strong, .home-problem-guidance li span { grid-column: 2; }
.home-problem-guidance li strong { font-size: 12px; line-height: 1.35; }
.home-problem-guidance li span { color: var(--ink-muted); font-size: 11px; line-height: 1.42; }
.home-problem-safe-note { margin: 0; color: var(--ink-muted); font-size: 12px; line-height: 1.5; }
.home-problem-product { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--divider); }
.home-problem-product-label { margin: 0 0 7px; color: #8a650d; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.home-problem-product-inner { display: grid; min-width: 0; grid-template-columns: 96px minmax(0, 1fr); gap: 14px; align-items: center; }
.home-problem-product-image { width: 96px; height: 88px; }
.home-problem-product-image img { display: block; width: 100%; height: 100%; object-fit: contain; }
.home-problem-product-code { display: block; margin-bottom: 2px; color: #8a650d; font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.home-problem-product-copy h4 { margin: 0; font-size: 19px; line-height: 1.18; }
.home-problem-product-role { margin: 4px 0 0; color: var(--ink-muted); font-size: 11px; line-height: 1.4; }
.home-problem-product-category { margin: 3px 0 0; color: var(--ink-muted); font-size: 11px; line-height: 1.35; }
.home-problem-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.home-problem-actions .button { min-height: 40px; padding: 9px 13px; font-size: 12px; }
.home-problem-tds { display: inline-flex; min-height: 40px; align-items: center; gap: 5px; color: #7d5b09; font-size: 12px; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.home-problem-tds:hover { color: var(--navy); }
.home-problem-tds:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.home-problem-draft-note { margin: -5px 0 0; color: var(--ink-muted); font-size: 11px; }
.home-problem-controls { display: none; min-height: 48px; margin-top: 14px; align-items: center; justify-content: center; gap: 20px; }
.home-problem-carousel.is-carousel-ready .home-problem-controls { display: flex; }
.home-problem-play { display: inline-flex; width: 44px; height: 44px; padding: 0; align-items: center; justify-content: center; border: 1px solid var(--divider); background: var(--white); color: var(--navy); cursor: pointer; }
.home-problem-play:hover { border-color: var(--gold); }
.home-problem-play:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.home-problem-dots { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: center; }
.home-problem-dots button { width: 12px; height: 12px; min-width: 12px; padding: 0; border: 1px solid #b9bec5; background: transparent; cursor: pointer; }
.home-problem-dots button.is-active { border-color: var(--gold); background: var(--gold); }
.home-problem-dots button:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.home-problem-counter { min-width: 54px; margin: 0; color: var(--ink-muted); font-size: 12px; font-weight: 700; letter-spacing: .08em; }

@media (max-width: 1179px) and (min-width: 900px) {
  .home-problem-slide { grid-template-columns: minmax(0, 52%) minmax(0, 48%); min-height: 540px; }
  .home-problem-media { min-height: 540px; }
  .home-problem-content { gap: 11px; padding: 25px; }
  .home-problem-summary h3 { font-size: 27px; }
  .home-problem-guidance li span { font-size: 10.5px; }
  .home-problem-actions .button { padding-inline: 10px; }
}

@media (max-width: 899px) {
  .home-problem-section { padding-top: clamp(28px, 5vw, 40px); }
  .home-problem-slide { display: block; min-height: 0; }
  .home-problem-media { height: auto; min-height: 0; aspect-ratio: 16 / 9; contain: layout paint; }
  .home-problem-content { gap: 14px; padding: clamp(22px, 5vw, 32px); }
  .home-problem-product { margin-top: 0; }
}

@media (max-width: 480px) {
  .home-problem-intro { margin-bottom: 16px; }
  .home-problem-intro h2 { font-size: 29px; }
  .home-problem-intro > p:last-child { font-size: 14px; }
  .home-problem-content { padding: 20px; }
  .home-problem-summary h3 { font-size: 25px; }
  .home-problem-media { aspect-ratio: 4 / 3; }
  .home-problem-placeholder { padding: 22px; }
  .home-problem-arrow { width: 44px; height: 44px; }
  .home-problem-prev { left: 10px; }
  .home-problem-next { right: 10px; }
  .home-problem-product-inner { grid-template-columns: 84px minmax(0, 1fr); gap: 11px; }
  .home-problem-product-image { width: 84px; height: 80px; }
  .home-problem-actions { align-items: stretch; }
  .home-problem-actions .button { flex: 1 1 100%; justify-content: center; }
  .home-problem-tds { justify-content: center; }
  .home-problem-controls { gap: 12px; }
  .home-problem-dots { gap: 7px; }
}

/* Solutions archive and public Solution detail (Theme 1.2.2). */
.solution-archive, .solution-detail { background: var(--paper); }
.solution-archive-wrap, .solution-detail-wrap { max-width: 1120px; }
.solution-archive-header { padding: 22px 0 clamp(38px, 5vw, 58px); border-bottom: 1px solid var(--divider); background: var(--paper); }
.solution-archive-breadcrumbs, .solution-detail-breadcrumbs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: clamp(28px, 4vw, 44px); }
.solution-archive-header .eyebrow { margin-bottom: 10px; }
.solution-archive-header h1 { max-width: 780px; margin-bottom: 16px; font-size: clamp(2.45rem, 4vw, 3.25rem); line-height: 1.08; }
.solution-archive-intro { max-width: 900px; margin: 0; color: var(--ink-muted); font-size: 1rem; line-height: 1.75; }
.solution-archive-results { padding: clamp(36px, 5vw, 64px) 0 clamp(64px, 8vw, 96px); background: #efefec; }
.solution-archive-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; gap: 20px; }
.solution-archive .solution-card { height: 100%; overflow: hidden; background: var(--white); }
.solution-archive .solution-card-media { aspect-ratio: 16 / 10; border-bottom: 1px solid var(--divider); background: #e4e5e1; }
.solution-archive .solution-card-media > a { display: block; width: 100%; height: 100%; }
.solution-archive .solution-card-media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.solution-archive .solution-card-media figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 7px 10px; background: rgba(16,28,48,.78); color: rgba(255,255,255,.88); font-size: .67rem; line-height: 1.35; }
.solution-card-media-fallback { display: grid; width: 100%; height: 100%; place-items: center; background: linear-gradient(135deg, #e6e7e3, #f4f4f1); color: #858b92; }
.solution-card-media-fallback span { font-size: .72rem; font-weight: 700; letter-spacing: .18em; }
.solution-archive .solution-card-body { padding: 22px; }
.solution-archive .solution-card-body .eyebrow { margin-bottom: 9px; font-size: .7rem; }
.solution-archive .solution-card-body h2 { margin: 0 0 10px; font-size: clamp(1.55rem, 2vw, 1.9rem); line-height: 1.08; }
.solution-archive .solution-card-body h2 a { color: var(--navy); text-decoration: none; }
.solution-archive .solution-card-body h2 a:hover { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 4px; }
.solution-card-overview { margin: 0; color: var(--ink-muted); font-size: .91rem; line-height: 1.65; }
.solution-card-surfaces, .solution-product-surfaces { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0 0; padding: 0; list-style: none; }
.solution-card-surfaces li, .solution-product-surfaces li { padding: 4px 8px; border: 1px solid #d7b45d; color: #80601b; font-size: .68rem; line-height: 1.25; }
.solution-card-product { display: flex; min-width: 0; align-items: center; gap: 12px; margin-top: 18px; padding: 11px; border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); }
.solution-card-product-image { display: grid; width: 54px; height: 54px; flex: 0 0 54px; place-items: center; background: #f3f3f0; }
.solution-card-product-image img { width: 100%; height: 100%; padding: 4px; object-fit: contain; }
.solution-card-product p { min-width: 0; margin: 0; line-height: 1.3; }
.solution-card-product p > span { display: block; margin-bottom: 3px; color: var(--ink-muted); font-size: .66rem; }
.solution-card-product p > a { display: block; color: var(--navy); font-size: .82rem; font-weight: 700; text-decoration: none; overflow-wrap: anywhere; }
.solution-card-product p > a:hover { color: var(--gold-dark); text-decoration: underline; }
.solution-card-product small { display: block; margin-top: 3px; color: var(--ink-muted); font-size: .66rem; }
.solution-card-footer { margin-top: auto; padding-top: 20px; }
.solution-card-link { display: inline-flex; align-items: center; gap: 7px; color: var(--gold-dark); font-size: .83rem; font-weight: 700; }
.solution-card-draft-state { margin: 0; color: var(--ink-muted); font-size: .78rem; line-height: 1.45; }
.solution-archive-empty { padding: clamp(28px, 5vw, 50px); border: 1px solid var(--divider); background: var(--white); }
.solution-archive-empty h2 { margin-bottom: 10px; font-size: clamp(1.7rem, 3vw, 2.3rem); }
.solution-archive-empty p { margin: 0; color: var(--ink-muted); }
.solution-archive .navigation.pagination { margin-top: 34px; }

.solution-detail-header { padding: 22px 0 clamp(42px, 6vw, 68px); background: var(--white); }
.solution-detail-header .eyebrow { margin-bottom: 10px; }
.solution-detail-header h1 { max-width: 850px; margin-bottom: 16px; font-size: clamp(2.5rem, 4vw, 3.25rem); line-height: 1.08; overflow-wrap: anywhere; }
.solution-detail-overview { max-width: 880px; margin: 0; color: var(--ink-muted); font-size: clamp(1rem, 1.4vw, 1.13rem); line-height: 1.72; }
.solution-detail-context { padding: clamp(40px, 5vw, 62px) 0; border-block: 1px solid var(--divider); background: #efefec; }
.solution-context-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(34px, 7vw, 90px); }
.solution-context-block { min-width: 0; }
.solution-context-block h2 { margin-bottom: 16px; font-size: clamp(1.65rem, 2.5vw, 2.1rem); }
.solution-context-block > ul:not(.solution-surface-tags) { margin: 0; padding-left: 1.25em; color: var(--ink-muted); }
.solution-context-block > ul:not(.solution-surface-tags) li + li { margin-top: 7px; }
.solution-surface-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.solution-surface-tags li { padding: 7px 11px; border: 1px solid var(--gold); background: #fffaf0; color: var(--navy); font-size: .78rem; }
.solution-detail-guidance { padding: clamp(54px, 7vw, 88px) 0; background: var(--white); }
.solution-guidance-heading { max-width: 720px; margin-bottom: 30px; }
.solution-guidance-heading .eyebrow { margin-bottom: 9px; }
.solution-guidance-heading h2 { margin: 0; font-size: clamp(2rem, 3.6vw, 2.85rem); }
.solution-guidance-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--divider); border-left: 1px solid var(--divider); }
.solution-guidance-item { min-width: 0; padding: clamp(22px, 3vw, 34px); border-right: 1px solid var(--divider); border-bottom: 1px solid var(--divider); }
.solution-guidance-item h3 { margin-bottom: 10px; font-size: clamp(1.4rem, 2vw, 1.75rem); }
.solution-guidance-item p { margin: 0; color: var(--ink-muted); line-height: 1.75; }
.solution-guidance-intro { grid-column: 1 / -1; }
.solution-public-safe-note { margin: 24px 0 0; padding: 15px 18px; border-left: 3px solid var(--gold); background: #fff8e7; color: #4e5661; font-size: .9rem; line-height: 1.65; }
.solution-detail-gallery { padding: clamp(54px, 7vw, 88px) 0; background: var(--navy); color: var(--white); }
.solution-detail-gallery .eyebrow { margin-bottom: 9px; color: #e5be65; }
.solution-detail-gallery h2 { margin-bottom: 28px; font-size: clamp(2rem, 3.6vw, 2.85rem); }
.solution-gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.solution-gallery-grid.solution-gallery-count-1 { grid-template-columns: minmax(0, 820px); }
.solution-gallery-grid figure { min-width: 0; margin: 0; }
.solution-gallery-grid img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: center; }
.solution-gallery-grid figcaption { margin-top: 9px; color: rgba(255,255,255,.72); font-size: .75rem; line-height: 1.5; }
.solution-detail-products { padding: clamp(54px, 7vw, 88px) 0; background: #efefec; }
.solution-products-heading { max-width: 820px; margin-bottom: 30px; }
.solution-products-heading .eyebrow { margin-bottom: 9px; }
.solution-products-heading h2 { margin-bottom: 11px; font-size: clamp(2rem, 3.6vw, 2.85rem); }
.solution-products-heading > p:last-child { margin: 0; color: var(--ink-muted); line-height: 1.7; }
.solution-products-heading .solution-product-roles { max-width: 920px; margin-top: 16px; padding-left: 16px; border-left: 2px solid var(--gold); color: var(--navy); }
.solution-product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.solution-product-card { display: flex; min-width: 0; min-height: 250px; border: 1px solid var(--divider); background: var(--white); }
.solution-product-image { display: grid; width: 38%; min-width: 150px; flex: 0 0 38%; place-items: center; border-right: 1px solid var(--divider); background: #f5f5f2; }
.solution-product-image img { width: 100%; height: 100%; max-height: 250px; padding: 20px; object-fit: contain; }
.solution-product-copy { display: flex; min-width: 0; flex: 1; flex-direction: column; padding: 24px; }
.solution-product-code { margin: 0 0 7px; color: var(--gold-dark); font-size: .72rem; font-weight: 700; letter-spacing: .1em; }
.solution-product-copy h3 { margin-bottom: 9px; font-size: clamp(1.55rem, 2.3vw, 1.95rem); }
.solution-product-copy h3 a { color: var(--navy); text-decoration: none; }
.solution-product-copy h3 a:hover { color: var(--gold-dark); text-decoration: underline; }
.solution-product-summary { margin: 0; color: var(--ink-muted); font-size: .88rem; line-height: 1.62; }
.solution-product-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; margin-top: auto; padding-top: 20px; }
.solution-product-actions .button { min-height: 40px; padding: 9px 13px; font-size: .78rem; }
.solution-product-tds { display: inline-flex; min-height: 40px; align-items: center; gap: 6px; color: var(--gold-dark); font-size: .78rem; font-weight: 700; }
.solution-detail-cta { padding: clamp(48px, 6vw, 72px) 0; background: var(--navy); color: var(--white); }
.solution-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.solution-cta-inner h2 { margin-bottom: 8px; font-size: clamp(1.9rem, 3.4vw, 2.65rem); }
.solution-cta-inner p { margin: 0; color: rgba(255,255,255,.74); }
.solution-cta-actions { display: flex; flex: 0 0 auto; flex-wrap: wrap; gap: 11px; }
.solution-detail-cta .button-secondary { color: var(--white); border-color: rgba(255,255,255,.72); }
.solution-detail-cta .button-secondary:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

@media (max-width: 1023px) {
  .solution-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .solution-product-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .solution-archive-header, .solution-detail-header { padding-top: 18px; }
  .solution-archive-breadcrumbs, .solution-detail-breadcrumbs { margin-bottom: 28px; }
  .solution-context-grid, .solution-guidance-grid { grid-template-columns: 1fr; }
  .solution-guidance-intro { grid-column: auto; }
  .solution-gallery-grid { grid-template-columns: 1fr; }
  .solution-cta-inner { align-items: flex-start; flex-direction: column; }
  .solution-cta-actions { width: 100%; }
}

@media (max-width: 640px) {
	.home-technical-guidance { padding-block: 52px; }
	.home-technical-guidance-actions { width: min(100%, 420px); flex-direction: column; }
	.home-technical-guidance-actions .button { width: 100%; }
  .solution-archive-grid { grid-template-columns: 1fr; }
  .solution-archive-header h1, .solution-detail-header h1 { font-size: clamp(2.2rem, 11vw, 2.65rem); }
  .solution-archive .solution-card-body { padding: 20px; }
  .solution-product-card { min-height: 0; flex-direction: column; }
  .solution-product-image { width: 100%; min-width: 0; height: 190px; flex-basis: auto; border-right: 0; border-bottom: 1px solid var(--divider); }
  .solution-product-image img { max-height: 190px; padding: 16px; }
  .solution-product-copy { padding: 20px; }
  .solution-product-actions { align-items: stretch; flex-direction: column; }
  .solution-product-actions .button, .solution-product-tds { width: 100%; justify-content: center; }
  .solution-cta-actions { flex-direction: column; }
  .solution-cta-actions .button { width: 100%; }
}

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