/* Inspired by glastender.com palette & type (navy header, blue-gray links, orange accent, Avenir). */
@font-face {
  font-family: "Avenir";
  src: url("../fonts/Avenir/Avenir Light/Avenir Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Avenir";
  src: url("../fonts/Avenir/Avenir Book/Avenir Book.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Avenir";
  src: url("../fonts/Avenir/Avenir Regular/Avenir Regular.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Avenir";
  src: url("../fonts/Avenir/Avenir Heavy/Avenir Heavy.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Avenir";
  src: url("../fonts/Avenir/Avenir Heavy/Avenir Heavy.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Avenir";
  src: url("../fonts/Avenir/Avenir Black/Avenir Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #061630;
  --navy-mid: #0a2249;
  --link-blue: rgb(118, 141, 175);
  --accent-orange: #f27b13;
  --accent-orange-hover: #e06d0c;

  --bg: #f8f8f8;
  --surface: #f8f8f8;
  /* Full-bleed section banding (Dispensing, Built to belong): page canvas vs white only. */
  --page-band-default: var(--bg);
  --page-band-alt: #dde2ea;
  --border: #9eabb8;
  --text: #1a1f2e;
  --muted: #5f6368;

  --header-bg: var(--navy);
  --footer-bg: var(--navy);

  --radius: 0;
  --shadow-card: 2px 3px 26px rgba(6, 22, 48, 0.12);
  --shadow-soft: 0 2px 12px rgba(6, 22, 48, 0.08);

  --font: "Avenir", "Avenir Next", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;

  --card-border: var(--border);
  --card-media-bg: #dde2ea;

  /* In-page section h2s (home gallery, category, static prose, related, etc.); on-dark blocks override color. */
  --section-heading-size: clamp(1.35rem, 3vw, 1.85rem);
  --section-heading-weight: 600;
  --section-heading-track: 0.02em;
  --section-heading-color: var(--navy);
}

* {
  box-sizing: border-box;
}

html {
  /* Offset sticky header when jumping to in-page anchors (e.g. team search #team-…) */
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}

/* Site policy: images and embedded video never use rounded corners */
img,
video {
  border-radius: 0 !important;
}

/* Links: no underline by default; orange + underline on hover (see exceptions below). */
a {
  color: var(--link-blue);
  text-decoration: none;
}

a:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}

.page-band--default {
  background: var(--page-band-default);
}

.page-band--alt {
  background: var(--page-band-alt);
}

.wrap {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

.main {
  flex: 1;
  padding: 0;
  width: 100%;
}

.page-inner {
  width: min(1100px, 92vw);
  margin-inline: auto;
  padding-block: 2rem 3rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-card);
}

/* One continuous bar: no seam between trigger row and mega panel */
.site-header.site-header--mega-open {
  border-bottom-color: transparent;
  box-shadow: none;
}

/* Logo | nav (even spread) | compact search — mega panel .wrap must not get this flex row */
.site-header .site-header__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem 1rem;
  padding-block: 0.95rem;
  position: relative;
  z-index: 2;
}

.site-header .site-header__row .logo {
  flex: 0 0 auto;
}

.site-header .site-header__row .site-nav-mega-triggers {
  flex: 1 1 auto;
  justify-content: space-evenly;
  min-width: 0;
  gap: 0.25rem 0.5rem;
}

.site-header .site-header__row .site-search {
  flex: 0 0 auto;
  width: min(10.5rem, 28vw);
  min-width: 7.5rem;
  max-width: 10.5rem;
}

.site-header__row a {
  color: #fff;
  text-decoration: none;
}

.site-header__row a:hover {
  color: var(--accent-orange);
  text-decoration: none;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.logo img {
  display: block;
  height: 2.5rem;
  width: auto;
}

.site-header .logo:hover img {
  opacity: 0.88;
}

.site-nav-mega-triggers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.1rem;
}

.site-nav-mega__trigger {
  margin: 0;
  padding: 0.35rem 0;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.site-nav-mega__trigger:hover,
.site-header--mega-open .site-nav-mega__trigger[aria-expanded="true"] {
  color: var(--accent-orange);
}

.site-header--mega-open .site-nav-mega__trigger[aria-expanded="true"] {
  border-bottom-color: var(--accent-orange);
}

.site-nav-mega-panels {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  z-index: 250;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  pointer-events: none;
}

.site-header--mega-open .site-nav-mega-panels {
  pointer-events: auto;
}

.site-nav-mega__panel {
  grid-area: 1 / 1;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-0.5rem);
  pointer-events: none;
  visibility: hidden;
  /* Same fill as .site-header so the menu reads as one continuous bar */
  border-top: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--header-bg);
  color: #fff;
  box-shadow: none;
  transition:
    grid-template-rows 0.32s cubic-bezier(0.32, 0.72, 0, 1),
    opacity 0.22s ease-out,
    transform 0.32s cubic-bezier(0.32, 0.72, 0, 1),
    visibility 0s linear 0.28s;
}

.site-nav-mega__panel--open {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
  /* Carry the header’s depth to the bottom of the open menu */
  box-shadow: var(--shadow-card);
  transition:
    grid-template-rows 0.32s cubic-bezier(0.32, 0.72, 0, 1),
    opacity 0.24s ease-out,
    transform 0.32s cubic-bezier(0.32, 0.72, 0, 1),
    visibility 0s linear 0s;
}

.site-nav-mega__panel > .wrap {
  min-height: 0;
  overflow: hidden;
}

/* Wider than default .wrap (1100px): products + IA mega grids need room for more columns. */
.site-nav-mega__panel > .wrap.site-nav-mega__panel-inner--products,
.site-nav-mega__panel > .wrap.site-nav-mega__panel-inner--multi {
  width: min(1400px, 96vw);
}

.site-nav-mega__panel a {
  color: #fff;
  text-decoration: none;
}

.site-nav-mega__panel a:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}

.external-site-link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
}

.external-site-link__icon {
  display: inline-flex;
  flex-shrink: 0;
  opacity: 0.88;
}

.external-site-link__icon svg {
  display: block;
  width: 0.82em;
  height: 0.82em;
}

.site-nav-mega__panel-inner {
  padding-block: 1rem 1.25rem;
}

.site-nav-mega__panel-inner--products,
.site-nav-mega__panel-inner--multi {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, max-content));
  justify-content: center;
  column-gap: clamp(1.35rem, 2.75vw, 3.25rem);
  row-gap: 0.75rem;
}

.site-nav-mega__col-head {
  display: block;
  font-weight: 700;
  font-size: 1.02rem;
  margin-bottom: 0.45rem;
  color: #fff;
}

.site-nav-mega__col-head:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}

.site-nav-mega__col-head--text {
  cursor: default;
}

.site-nav-mega__col-head--text:hover {
  color: #fff;
  text-decoration: none;
}

.site-nav-mega__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav-mega__list li {
  margin: 0.35rem 0 0;
}

.site-nav-mega__list li:first-child {
  margin-top: 0;
}

.site-nav-mega__list a {
  font-weight: 300;
  font-size: 0.95rem;
}

.site-nav-mega__list--flat a {
  font-weight: 600;
}

.site-nav-mega__stub {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.52);
  cursor: default;
}

.site-nav-mega__empty {
  margin: 0;
  font-size: 0.98rem;
}

.site-nav-mega__panel .muted {
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 640px) {
  .site-nav-mega__panel-inner--products,
  .site-nav-mega__panel-inner--multi {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}

/* Narrow viewports: long mega menus exceed the screen; scroll inside the panel (not the page). */
@media (max-width: 52rem) {
  .site-header--mega-open .site-nav-mega__panel > .wrap {
    max-height: min(80dvh, calc(100dvh - 4.5rem));
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
  }

  /* Set by nav-mega.js with .site-header--mega-open; keeps touch from scrolling the page behind. */
  body.site-mega-menu-open {
    overflow: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav-mega__panel {
    transition-duration: 0.01ms !important;
  }
}

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

.site-search {
  position: relative;
  flex: 1 1 12rem;
  min-width: min(100%, 11rem);
  max-width: 24rem;
}

.site-header .site-search__input {
  padding: 0.32rem 0.5rem;
  font-size: 0.8rem;
  border-radius: 6px;
}

.site-search__input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.45rem 0.75rem;
  font: inherit;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  outline: none;
}

.site-search__input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.site-search__input:focus {
  border-color: rgba(242, 123, 19, 0.85);
  background: rgba(255, 255, 255, 0.14);
}

.site-search__panel {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  right: 0;
  z-index: 300;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--navy);
  box-shadow: 0 12px 40px rgba(6, 22, 48, 0.45);
  max-height: min(70vh, 22rem);
  overflow: auto;
}

/* Narrow input but wide results — match pre-compact ~24rem default */
.site-header .site-search__panel {
  left: auto;
  right: 0;
  width: max(100%, min(24rem, calc(100vw - 2rem)));
}

.site-search__list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
}

.site-search__section {
  list-style: none;
  padding: 0.4rem 0.85rem 0.2rem;
  margin: 0;
}

.site-search__section:first-child {
  padding-top: 0.25rem;
}

.site-search__section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.site-search__kind {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-search__empty {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.site-search__hit {
  padding: 0.5rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-search__hit:last-child {
  border-bottom: none;
}

.site-search__hit-title a {
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
}

.site-search__hit-title a:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}

.site-search__hit-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.75rem;
  margin-top: 0.35rem;
  font-size: 0.82rem;
}

.site-search__sku {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.site-search__role {
  color: rgba(255, 255, 255, 0.55);
}

.site-search__doc {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  text-decoration: none;
}

.site-search__doc:hover {
  color: var(--accent-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-search__show-all {
  list-style: none;
  padding: 0.55rem 0.85rem 0.65rem;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-search__show-all-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-orange);
  text-decoration: none;
}

.site-search__show-all-link:hover {
  color: var(--accent-orange-hover);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.search-results-page .search-results-page__summary {
  margin: 0.35rem 0 0;
  font-size: 1rem;
}

.search-results-page__mount {
  margin-top: 1.25rem;
}

.search-results-page__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.35rem;
  align-items: flex-end;
  border-bottom: 1px solid var(--border);
}

.search-results-page__tab {
  font: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.45rem 0.75rem 0.55rem;
  margin-bottom: -1px;
  border: 1px solid transparent;
  border-radius: 8px 8px 0 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  position: relative;
  z-index: 0;
}

.search-results-page__tab:hover {
  color: var(--text);
}

.search-results-page__tab[aria-selected="true"] {
  color: var(--text);
  background: var(--surface);
  border-color: var(--border);
  border-bottom-color: var(--surface);
  z-index: 1;
}

.search-results-page__tab-count {
  font-weight: 500;
  color: var(--muted);
}

.search-results-page__tab[aria-selected="true"] .search-results-page__tab-count {
  color: var(--muted);
}

.search-results-page__tabpanels {
  margin-top: 0;
}

.search-results-page__tabpanel[hidden] {
  display: none !important;
}

.search-results-page .site-search__list--page {
  margin-top: 0;
  padding: 0.35rem 0;
  list-style: none;
  border: 1px solid var(--border);
  border-radius: 0 0 10px 10px;
  border-top: none;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  max-width: 100%;
}

.search-results-page__mount > .site-search__list--page {
  border-radius: 10px;
  border-top: 1px solid var(--border);
}

.search-results-page .site-search__hit {
  border-bottom-color: var(--border);
}

.search-results-page .site-search__hit:last-child {
  border-bottom: none;
}

.search-results-page .site-search__hit-title a {
  color: var(--link-blue);
  text-decoration: none;
}

.search-results-page .site-search__hit-title a:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}

.search-results-page .site-search__kind {
  color: var(--muted);
}

.search-results-page .site-search__sku {
  color: var(--muted);
}

.search-results-page .site-search__role {
  color: var(--muted);
}

.search-results-page .site-search__doc {
  color: var(--link-blue);
  text-decoration: none;
}

.search-results-page .site-search__doc:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}

.search-results-page .site-search__empty,
.search-results-page .search-results-page__error {
  padding: 1rem 1.15rem;
  color: var(--muted);
}

.search-results-page .search-results-page__error {
  color: #b42318;
}

.site-footer {
  background: var(--footer-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 1.75rem 1.5rem;
  margin-top: auto;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.site-footer__top {
  display: grid;
  gap: 1.1rem 2rem;
  align-items: start;
  text-align: center;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.1rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.site-footer__links a:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}

.site-footer__contact {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__company {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.96);
}

.site-footer__contact-line {
  margin: 0;
  max-width: 36rem;
  margin-inline: auto;
}

.site-footer__contact-line .site-footer__phone {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  white-space: nowrap;
}

.site-footer__contact-line .site-footer__phone:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}

.site-footer__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.site-footer__newsletter {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer__newsletter a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
}

.site-footer__newsletter a:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}

.site-footer__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  font-size: 0.88rem;
}

.site-footer__social a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.site-footer__social a:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}

@media (min-width: 52rem) {
  .site-footer__top {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.6fr) minmax(0, 1fr);
    text-align: left;
    align-items: start;
  }

  .site-footer__links {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0.35rem;
    justify-content: flex-start;
  }

  .site-footer__contact {
    text-align: center;
  }

  .site-footer__contact-line {
    margin-inline: 0;
    max-width: none;
  }

  .site-footer__aside {
    align-items: flex-end;
    text-align: right;
  }

  .site-footer__social {
    justify-content: flex-end;
  }
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__copyright {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 51.99rem) {
  .site-footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.site-footer .muted {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.muted {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero {
  margin-bottom: 2rem;
}

.hero--after-carousel {
  margin-top: 0.25rem;
  padding-top: 0.5rem;
}

.hero--after-carousel h1 {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 0.5rem;
  color: var(--navy);
}

.lede {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

.breadcrumbs {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.breadcrumbs a {
  color: var(--link-blue);
}

.breadcrumbs a:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}

.breadcrumbs .sep {
  margin-inline: 0.35rem;
  opacity: 0.55;
}

.breadcrumbs--on-dark,
.breadcrumbs--on-dark .sep {
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumbs--on-dark a {
  color: rgba(255, 255, 255, 0.92);
}

.breadcrumbs--on-dark a:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}

.breadcrumbs--on-dark span[aria-current="page"] {
  color: #fff;
  font-weight: 500;
}

.card-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.card-grid.tight {
  grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
  gap: 1rem;
}

.card {
  --card-media-ratio: 8 / 5; /* 320×200: shared image band for category + product cards */
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.card:hover {
  border-color: var(--accent-orange);
  box-shadow: var(--shadow-card);
}

.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: none;
}

/* Fixed image band; photo uses contain so mixed aspect ratios share one top alignment. */
.card__media {
  aspect-ratio: var(--card-media-ratio);
  width: 100%;
  background: var(--card-media-bg);
  position: relative;
  overflow: hidden;
}

.card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.1rem 1.15rem;
}

.card-title {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
}

.card-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Category cards (home + subcategories): kicker + flex row (chevron ::before | title text); product cards omit .card--category */
.card--category .card-kicker {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.2;
  margin: 0;
}

.card--category .card-title {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.35em;
}

.card--category .card-title__text {
  min-width: 0;
  flex: 1 1 auto;
}

.card--category .card-title::before {
  content: "\203A";
  flex-shrink: 0;
  font-size: 1.45em;
  font-weight: 700;
  line-height: 1.2;
  color: var(--accent-orange);
}

.category-masthead {
  position: relative;
  width: 100%;
  min-height: min(58vh, 640px);
  max-height: min(78vh, 880px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 0;
  color: #fff;
}

.category-masthead__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.category-masthead__img,
.category-masthead__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.category-masthead__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 22, 48, 0.25) 0%,
    rgba(6, 22, 48, 0.35) 40%,
    rgba(6, 22, 48, 0.88) 78%,
    rgba(6, 22, 48, 0.95) 100%
  );
  pointer-events: none;
}

.category-masthead__inner {
  position: relative;
  z-index: 1;
  width: min(1100px, 92vw);
  margin-inline: auto;
  padding: 3rem 0 2.75rem;
}

.category-masthead .breadcrumbs {
  margin-bottom: 1rem;
}

.category-masthead__title {
  margin: 0 0 0.65rem;
  font-size: clamp(2.1rem, 5.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 24px rgba(6, 22, 48, 0.45);
}

.category-masthead__lede {
  margin: 0;
  max-width: 52ch;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.65;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 12px rgba(6, 22, 48, 0.35);
}

/* Leaf category pages (no subcategories): no hero visual — inner band only (navy, matches header) */
.category-masthead--simple {
  min-height: 0;
  max-height: none;
  justify-content: flex-start;
  margin-bottom: 0;
  color: #fff;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.category-masthead--simple .category-masthead__inner {
  padding: 1.75rem 0 2rem;
}

.category-masthead--simple .category-masthead__title {
  font-size: clamp(1.45rem, 3.6vw, 2.15rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.2);
}

.category-masthead--simple .category-masthead__lede {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: none;
}

.category-intro {
  margin: 0 auto 2.25rem;
  padding-top: 0.15rem;
}

/* Use the full .page-inner column; avoid a separate narrow measure (e.g. 70ch) inside a wide shell. */
.category-intro .static-prose {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}

/* Leading intro (moved from masthead; workbook hero_lede). Inherits body size from .static-prose. */
.category-intro .static-prose > p.static-page__lede {
  margin: 0 0 1.35rem;
  font-weight: 400;
  color: var(--navy);
}

.category-intro .static-prose img {
  max-width: 100%;
  height: auto;
}

.category-intro .static-prose h2 {
  margin-top: 1.75rem;
}

.category-intro .static-prose > h2:first-of-type {
  margin-top: 0;
}

/* Narrower than `.static-prose h2` so warranty callout title is not given 1.75rem top margin. */
.category-intro .static-prose .warranty-page__callout h2.warranty-page__callout-title {
  margin: 0 0 0.85rem;
}

/* Bar Fabrication “solutions” intro: four product-line tiles (see categories.intro_html). */
.category-intro .static-prose:has(.solutions-lines) {
  max-width: min(1100px, 94vw);
}

/* Dispensing / Proper Pour landing (split image + text rows). */
.category-intro .static-prose:has(.proper-pour-intro) {
  max-width: min(1100px, 94vw);
}

.proper-pour-intro {
  --p-intro-band-gap: clamp(1.5rem, 3.5vw, 2.25rem);
}

/* Uniform gap between opening block, stripe sections, and prose `<section>`. */
.proper-pour-intro > * + * {
  margin-top: var(--p-intro-band-gap);
}

/* Full-bleed bands: only sections with brochure / towers / steps layout (not `.proper-pour-intro__prose-section`).
   Add `.page-band--default` or `.page-band--alt` per section. Adjacent band sections: margin-top 0 (override `* + *`). */
.proper-pour-intro > .proper-pour-intro__seven-steps,
.proper-pour-intro > .proper-pour-intro__pdf-section,
.proper-pour-intro > .proper-pour-intro__draft-towers {
  margin-bottom: 0;
  padding-block: clamp(1.25rem, 3vw, 1.85rem);
  padding-inline: max(1rem, calc((100vw - min(1100px, 92vw)) / 2));
  width: 100vw;
  max-width: none;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.proper-pour-intro > .proper-pour-intro__pdf-section + .proper-pour-intro__seven-steps,
.proper-pour-intro > .proper-pour-intro__seven-steps + .proper-pour-intro__pdf-section,
.proper-pour-intro > .proper-pour-intro__draft-towers + .proper-pour-intro__pdf-section {
  margin-top: 0;
}

.proper-pour-intro__block > :first-child,
.proper-pour-intro__prose-section > :first-child {
  margin-top: 0;
}

.proper-pour-intro__block {
  margin-bottom: 0;
}

.proper-pour-intro__seven-steps > .proper-pour-intro__split {
  margin-top: 0;
  margin-bottom: 0;
}

.proper-pour-intro__split {
  display: grid;
  gap: 1.25rem 2rem;
  align-items: center;
  margin: 2rem 0;
}

.proper-pour-intro > section > .proper-pour-intro__split:first-child {
  margin-top: 0;
}

.proper-pour-intro > section > .proper-pour-intro__split:last-child {
  margin-bottom: 0;
}

/* Text first in DOM for screen readers; media/video column left on wide viewports.
   Add .proper-pour-intro__split--media-end to place media on the right instead. */
@media (min-width: 52rem) {
  .proper-pour-intro__split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  }

  .proper-pour-intro__split-text {
    grid-column: 2;
    grid-row: 1;
  }

  .proper-pour-intro__split-media,
  .proper-pour-intro__split-video {
    grid-column: 1;
    grid-row: 1;
  }

  .proper-pour-intro__split--media-end .proper-pour-intro__split-text {
    grid-column: 1;
  }

  .proper-pour-intro__split--media-end .proper-pour-intro__split-media,
  .proper-pour-intro__split--media-end .proper-pour-intro__split-video {
    grid-column: 2;
  }
}

.proper-pour-intro__split-text > h2 {
  margin-top: 0;
}

.proper-pour-intro__split-text > h3 {
  margin-top: 1.35rem;
}

.proper-pour-intro__split-text > :last-child {
  margin-bottom: 0;
}

.proper-pour-intro__split-media,
.proper-pour-intro__split-video {
  margin: 0;
}

.proper-pour-intro__split-media img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--border);
}

.proper-pour-intro__seven-steps .proper-pour-intro__split-media img {
  border: 0;
}

/* Gen 3 / BLC brochure row: tall cover image, no radius, stronger edge-to-edge feel. */
.proper-pour-intro__split--cover-media {
  align-items: stretch;
  margin-inline: clamp(-0.5rem, -2.5vw, 0px);
  min-height: min(52vh, 520px);
}

.proper-pour-intro__split--cover-media .proper-pour-intro__split-media {
  margin: 0;
  min-height: min(52vh, 520px);
  align-self: stretch;
}

.proper-pour-intro__split--cover-media .proper-pour-intro__split-media img {
  width: 100%;
  height: 100%;
  min-height: min(52vh, 520px);
  object-fit: cover;
  object-position: center;
  border: 0;
}

.proper-pour-intro__pdf-link {
  font-weight: 600;
}

.proper-pour-intro__pdf-section > .proper-pour-intro__split {
  margin-top: 0;
}

@media (max-width: 51.99rem) {
  .proper-pour-intro__split--cover-media {
    min-height: 0;
  }

  .proper-pour-intro__split--cover-media .proper-pour-intro__split-media,
  .proper-pour-intro__split--cover-media .proper-pour-intro__split-media img {
    min-height: 240px;
  }
}

.proper-pour-intro__split-video video {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--border);
  background: #0a1628;
}

@media (max-width: 51.99rem) {
  .proper-pour-intro__split .proper-pour-intro__split-media,
  .proper-pour-intro__split .proper-pour-intro__split-video {
    order: -1;
  }
}

.proper-pour-intro__draft-towers > .proper-pour-intro__split {
  margin-top: 0;
  margin-bottom: 0;
}

/* Draft towers: video fills its grid column with object-fit cover (section stays within intro margins). */
.proper-pour-intro__split--draft-towers {
  align-items: stretch;
}

.proper-pour-intro__split--draft-towers .proper-pour-intro__split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  min-width: 0;
}

.category-intro .static-prose .proper-pour-intro__split--draft-towers .proper-pour-intro__split-text > h2 {
  margin-top: 0;
  margin-bottom: 0;
}

.proper-pour-intro__split--draft-towers .proper-pour-intro__split-text > p {
  margin: 0;
}

/* Widescreen frame: width of the grid column sets height via 16∶9 (wider than tall). */
.proper-pour-intro__draft-towers-video-cover {
  margin: 0;
  min-width: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  align-self: center;
  overflow: hidden;
  background: #0a1628;
}

.proper-pour-intro__draft-towers-video-cover video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 0;
  border-radius: 0;
}

@media (max-width: 51.99rem) {
  .proper-pour-intro__draft-towers-video-cover {
    align-self: stretch;
  }
}

.proper-pour-intro__draft-towers-cards {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 52rem) {
  .proper-pour-intro__draft-towers-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.proper-pour-intro__draft-tower-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0;
}

.proper-pour-intro__draft-tower-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
}

.proper-pour-intro__draft-tower-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

.proper-pour-intro__draft-tower-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 1px solid var(--border);
}

.solutions-lines {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.35rem;
  margin-top: 1.75rem;
}

.solutions-lines__item {
  margin: 0;
  padding: 0 0 1.15rem;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.solutions-lines__media {
  display: block;
  margin: 0 0 0.85rem;
  border-radius: 0;
  overflow: hidden;
  border: 0;
}

.solutions-lines__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.solutions-lines__title {
  margin: 0 0 0.2rem;
  padding-inline: 1.05rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.solutions-lines__kicker {
  margin: 0 0 0.75rem;
  padding-inline: 1.05rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--link-blue);
}

.solutions-lines__item > p:not(.solutions-lines__cta):not(.solutions-lines__kicker) {
  margin: 0 0 0.85rem;
  padding-inline: 1.05rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.solutions-lines__cta {
  margin: 0;
  padding-inline: 1.05rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.solutions-lines__cta a {
  color: var(--link-blue);
  text-decoration: none;
}

.solutions-lines__cta a:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}

.category-page h2 {
  font-size: var(--section-heading-size);
  font-weight: var(--section-heading-weight);
  letter-spacing: var(--section-heading-track);
  margin: 2rem 0 0.75rem;
  color: var(--section-heading-color);
}

.subcategories .card-grid {
  margin-top: 0.35rem;
}

.category-docs-nav {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.category-docs-nav h2 {
  font-size: var(--section-heading-size);
  font-weight: var(--section-heading-weight);
  letter-spacing: var(--section-heading-track);
  margin: 0 0 0.35rem;
  color: var(--section-heading-color);
}

.category-docs-nav__intro {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}

.category-docs-nav__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.category-docs-nav__card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  min-height: 6.5rem;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

/* Hover matches .card:hover — orange border + stronger shadow */
.category-docs-nav__card:hover {
  text-decoration: none;
  border-color: var(--accent-orange);
  box-shadow: var(--shadow-card);
}

.category-docs-nav__card-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--link-blue);
  font-weight: 600;
}

.category-docs-nav__card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
}

.pdf-gallery-page__header {
  margin-bottom: 1.75rem;
}

.pdf-gallery-page__header h1 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--navy);
}

.pdf-gallery-page__header .lede a {
  font-weight: 500;
}

.pdf-gallery-page__filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin: 0 0 1.25rem;
}

.pdf-gallery-page__filters label {
  font-weight: 600;
  color: var(--navy);
}

.pdf-gallery-page__filters select {
  min-width: min(18rem, 100%);
  padding: 0.45rem 0.6rem;
  font: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.pdf-gallery-page__filter-status {
  flex: 1 1 12rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.pdf-gallery-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.75rem 1.25rem;
  align-items: start;
}

.pdf-gallery-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.pdf-gallery-item.pdf-gallery-item--hidden {
  display: none;
}

.pdf-gallery-item__doc-link {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.pdf-gallery-item__doc-link:hover {
  text-decoration: none;
}

.pdf-gallery-item__doc-link:hover .pdf-gallery-item__figure {
  border-color: var(--accent-orange);
  box-shadow: var(--shadow-card);
}

.pdf-gallery-item__doc-link:hover .pdf-gallery-item__title,
.pdf-gallery-item__doc-link:focus-visible .pdf-gallery-item__title {
  color: var(--accent-orange);
}

.pdf-gallery-item__doc-link:focus-visible {
  outline: 2px solid var(--link-blue);
  outline-offset: 3px;
}

/* Fixed preview frame (matches 200×260 hints on <img>) so layout does not jump while thumbs load. */
.pdf-gallery-item__figure {
  position: relative;
  margin: 0;
  display: block;
  width: 100%;
  aspect-ratio: 200 / 260;
  background: #e8ecf2;
  border: 1px solid var(--border);
  overflow: hidden;
  line-height: 0;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.pdf-gallery-item__loading {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(95, 99, 104, 0.72);
  line-height: 1.3;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.pdf-gallery-item__figure--thumb-ready .pdf-gallery-item__loading {
  opacity: 0;
  visibility: hidden;
}

.pdf-gallery-item__figure img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.pdf-gallery-item__badge {
  position: absolute;
  z-index: 2;
  top: 0.4rem;
  right: 0.4rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.18rem 0.38rem;
  border-radius: 3px;
  /* Lighter than solid navy: reads as a hint, not a second focal point */
  background: rgba(6, 22, 48, 0.52);
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.22);
  line-height: 1.2;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 1px 2px rgba(6, 22, 48, 0.15);
}

.pdf-gallery-item__caption {
  padding: 0 0.1rem;
  text-align: center;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pdf-gallery-item__title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.3;
  transition: color 0.15s ease;
}

/* Product page — compact document gallery (reuses pdf-gallery-item) */
.product-docs {
  margin-top: 1.5rem;
}

.product-docs__heading {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.85rem;
  color: var(--navy);
}

.product-docs .pdf-gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 1rem 0.9rem;
}

.product-docs .pdf-gallery-item__title {
  font-size: 0.88rem;
}

.product-heading {
  margin: 0;
}

.product-page .product-heading--sku {
  font-size: clamp(1.4rem, 3.8vw, 2.1rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.product-page .product-heading--name {
  font-size: clamp(1.08rem, 2.3vw, 1.4rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 0.65rem;
}

.product-page .product-heading--sku + .product-summary.lede,
.product-page .product-heading--name + .product-summary.lede {
  margin-top: 0.1rem;
}

.product-page .product-summary.lede {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.65;
}

.product-detail + .product-facts {
  margin-top: 1rem;
}

.product-facts {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  display: grid;
  gap: 0.5rem 1.5rem;
}

@media (min-width: 520px) {
  .product-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.product-facts dt {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.product-facts dd {
  margin: 0.15rem 0 0;
  font-size: 0.95rem;
  color: var(--text);
}

@media (min-width: 520px) {
  .product-facts__row--full {
    grid-column: 1 / -1;
  }
}

.product-detail {
  margin-top: 1rem;
}

.product-detail > * + * {
  margin-top: 0.75rem;
}

.product-detail ul,
.product-detail ol {
  margin: 0;
  padding-left: 1.25rem;
}

.product-detail li {
  margin: 0.35rem 0;
}

.product-layout {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 720px) {
  .product-layout {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
  }
}

.product-media {
  margin: 0;
}

.product-figure {
  margin: 0;
}

.product-figure img,
.product-media__main {
  display: block;
  width: 100%;
  height: auto;
}

/* Stable main + thumb heights when swapping gallery images */
.product-media--has-gallery {
  /* Don't let scroll anchoring adjust the viewport when the <img> src/load updates. */
  overflow-anchor: none;
  /* Fixed hero slot: same value for height/min/max so the column never reflows on src swap */
  --product-hero-h: clamp(16rem, 52vh, 28rem);
  /* Hero + gap + one thumbnail row (button outer height matches .product-media__thumb) */
  min-height: calc(var(--product-hero-h) + 0.65rem + 3rem + 8px);
}

.product-media--has-gallery .product-figure {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--product-hero-h);
  min-height: var(--product-hero-h);
  max-height: var(--product-hero-h);
  overflow: hidden;
}

.product-media--has-gallery .product-media__main {
  width: auto;
  max-width: 100%;
  max-height: var(--product-hero-h);
  height: auto;
  object-fit: contain;
}

.product-media__thumbs {
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  min-height: calc(3rem + 8px);
}

.product-media__thumbs li {
  margin: 0;
  flex: 0 0 auto;
}

.product-media__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  margin: 0;
  border: 2px solid transparent;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  line-height: 0;
  width: calc(4.75rem + 4px);
  height: calc(3rem + 8px);
  box-sizing: border-box;
}

.product-media__thumb:hover {
  border-color: rgba(0, 86, 179, 0.35);
}

.product-media__thumb.is-selected {
  border-color: var(--link-blue, #0056b3);
  box-shadow: 0 0 0 1px rgba(0, 86, 179, 0.2);
}

.product-media__thumb img {
  display: block;
  width: 4.75rem;
  height: 3rem;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}

.product-media__thumb:focus {
  outline: 2px solid var(--accent-orange, #e85d04);
  outline-offset: 2px;
}

.product-media__thumb:focus:not(:focus-visible) {
  outline: none;
}

.doc-links {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-block;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  font-family: inherit;
}

.btn-secondary {
  background: var(--surface);
  border: 1px solid var(--link-blue);
  color: var(--link-blue);
}

.btn-secondary:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  text-decoration: none;
}

.related h2 {
  font-size: var(--section-heading-size);
  font-weight: var(--section-heading-weight);
  letter-spacing: var(--section-heading-track);
  margin-bottom: 0.75rem;
  color: var(--section-heading-color);
}

/* Direct child only: masthead titles live under .category-masthead and must use .category-masthead__title. */
.static-page > h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--navy);
}

/* Newsletter — iframe loads hosted Mailchimp embed (same document as glastender.com). */
.static-prose .newsletter-page__tagline {
  margin: 0 0 1.25rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
}

.newsletter-page__embed {
  width: 100%;
  max-width: 61rem;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  background: var(--surface);
}

/* Tall enough that the hosted Mailchimp page fits without an inner scrollbar (cross-origin: we cannot style inside the iframe). */
.newsletter-page__iframe {
  display: block;
  width: 100%;
  min-height: 78rem;
  border: 0;
}

@media (min-width: 52rem) {
  .newsletter-page__iframe {
    min-height: 80rem;
  }
}

/* Support → Media → Video: multi-column grid, thumbnail opens dialog player (see video-library-lightbox.js) */
.video-library {
  margin: 1.5rem 0 0;
}

.video-library__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 11.5rem), 1fr));
  gap: 1.1rem 1rem;
}

@media (min-width: 28rem) {
  .video-library__grid {
    grid-template-columns: repeat(auto-fill, minmax(14.5rem, 1fr));
  }
}

@media (min-width: 48rem) {
  .video-library__grid {
    grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
    gap: 1.25rem 1.1rem;
  }
}

.video-library__item {
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.video-library__card {
  /* <button> UA stylesheet font (e.g. Adwaita on Linux); match site body (Avenir stack). */
  font-family: var(--font);
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border, rgba(6, 22, 48, 0.12));
  border-radius: var(--radius, 8px);
  background: var(--surface, #fff);
  box-shadow: var(--shadow-soft, 0 1px 3px rgba(6, 22, 48, 0.08));
  text-align: left;
  cursor: pointer;
  align-items: stretch;
  overflow: hidden;
  transition:
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}

@media (hover: hover) and (pointer: fine) {
  .video-library__card:hover {
    box-shadow: var(--shadow-card, 0 4px 20px rgba(6, 22, 48, 0.12));
    border-color: color-mix(in srgb, var(--accent-orange) 42%, transparent);
  }
}

.video-library__card:focus-visible {
  outline: 2px solid var(--accent-orange, #f27b13);
  outline-offset: 2px;
}

.video-library__thumb-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0f0f0f;
}

.video-library__thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Play affordance (home gallery is image-only; here we signal video) */
.video-library__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
  transition: background 0.15s ease;
}

.video-library__play::before {
  content: "";
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.video-library__play::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin-left: 0.2rem;
  border-style: solid;
  border-width: 0.5rem 0 0.5rem 0.85rem;
  border-color: transparent transparent transparent #1a1a1a;
}

@media (hover: hover) and (pointer: fine) {
  .video-library__card:hover .video-library__play {
    background: linear-gradient(
      180deg,
      color-mix(in srgb, var(--accent-orange) 12%, transparent) 0%,
      rgba(0, 0, 0, 0.42) 100%
    );
  }
}

/* Grows to match the tallest title in the row; short titles leave space below the text. */
.video-library__label {
  flex: 1 1 auto;
  min-height: 0;
  margin: 0;
  padding: 0.5rem 0.65rem 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--navy, #061630);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  align-self: stretch;
  text-align: left;
  overflow: hidden;
}

/* Video lightbox: reuses .home-gallery-lightbox — no “card” surface (see through to ::backdrop);
   no max-height/overflow trap on the shell (avoids inner scrollbars with a tall 16:9 frame + caption). */
.video-library-lightbox .home-gallery-lightbox__shell {
  width: min(98vw, 100rem);
  max-width: min(98vw, 100rem);
  max-height: none;
  padding: 0.5rem 0.75rem 0.85rem;
  box-sizing: border-box;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

/* Caption under the video: readable on the dimmed page (shell is transparent). */
.video-library-lightbox .home-gallery-lightbox__caption {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45) !important;
}

/* As large as will fit: never wider than 96vw, never taller than ~88vh once 16:9 height is applied. */
.video-library-lightbox__frame {
  position: relative;
  margin: 0 auto;
  width: min(96vw, calc(88vh * 16 / 9), 100%);
  max-width: 100%;
  aspect-ratio: 16 / 9;
  background: #0f0f0f;
  border-radius: 4px;
  overflow: hidden;
}

.video-library-lightbox__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Support → Media → Project gallery: photo grid, opens image lightbox (see project-gallery-lightbox.js) */
.project-gallery {
  margin: 1.5rem 0 0;
}

.project-gallery__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 11.5rem), 1fr));
  gap: 1.1rem 1rem;
}

@media (min-width: 28rem) {
  .project-gallery__grid {
    grid-template-columns: repeat(auto-fill, minmax(14.5rem, 1fr));
  }
}

@media (min-width: 48rem) {
  .project-gallery__grid {
    grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
    gap: 1.25rem 1.1rem;
  }
}

.project-gallery__item {
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.project-gallery__card {
  /* <button> UA stylesheet font; match site body (Avenir stack), see .video-library__card */
  font-family: var(--font);
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border, rgba(6, 22, 48, 0.12));
  border-radius: var(--radius, 8px);
  background: var(--surface, #fff);
  box-shadow: var(--shadow-soft, 0 1px 3px rgba(6, 22, 48, 0.08));
  text-align: left;
  cursor: pointer;
  align-items: stretch;
  overflow: hidden;
  transition:
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}

@media (hover: hover) and (pointer: fine) {
  .project-gallery__card:hover {
    box-shadow: var(--shadow-card, 0 4px 20px rgba(6, 22, 48, 0.12));
    border-color: color-mix(in srgb, var(--accent-orange) 42%, transparent);
  }
}

.project-gallery__card:focus-visible {
  outline: 2px solid var(--accent-orange, #f27b13);
  outline-offset: 2px;
}

.project-gallery__thumb-wrap {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8eaee;
}

.project-gallery__thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.project-gallery__label {
  flex: 1 1 auto;
  min-height: 0;
  margin: 0;
  padding: 0.5rem 0.65rem 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--navy, #061630);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  align-self: stretch;
  text-align: left;
  overflow: hidden;
}

/* Support → Media → News: Mailchimp generate-js campaign archive (injects .display_archive, .campaign, links). */
.mailchimp-campaign-archive {
  width: 100%;
}

.mailchimp-campaign-archive__loading[hidden] {
  display: none;
}

.mailchimp-campaign-archive__loading {
  font-style: italic;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

.static-prose .mailchimp-campaign-archive p:first-child,
.mailchimp-campaign-archive > p {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.mailchimp-campaign-archive .display_archive {
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
}

.mailchimp-campaign-archive .campaign {
  line-height: 1.45;
  margin: 0.35rem 0 0.75rem;
  padding: 0;
  border: none;
  background: transparent;
}

.mailchimp-campaign-archive .campaign a {
  color: var(--link-blue);
  text-decoration: none;
  font-weight: 500;
}

.mailchimp-campaign-archive .campaign a:hover {
  color: var(--accent-orange);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

/* Full width of the article shell (.page-inner); line length is capped by that column, not a second 65ch rail. */
.static-prose {
  width: 100%;
  max-width: 100%;
  color: var(--text);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.static-prose p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.static-prose a {
  color: var(--link-blue);
}

.static-prose a:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}

.static-prose ul,
.static-prose ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--muted);
}

.static-prose h2 {
  font-size: var(--section-heading-size);
  font-weight: var(--section-heading-weight);
  letter-spacing: var(--section-heading-track);
  color: var(--section-heading-color);
  margin: 1.75rem 0 0.5rem;
}

/* Cocktail Life Cycle page body (masthead hero comes from static_page + pages.hero_image). */
.cocktail-life-page {
  --cocktail-split-bleed: clamp(1rem, 5vw, 2.75rem);
}

.cocktail-life-page h2 {
  font-size: var(--section-heading-size);
  font-weight: var(--section-heading-weight);
  letter-spacing: var(--section-heading-track);
  color: var(--section-heading-color);
  margin: 1.75rem 0 0.5rem;
}

.cocktail-life-page h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.75rem;
}

.cocktail-life-page__split {
  display: flex;
  flex-direction: column-reverse;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  margin: 0.5rem 0 2.25rem;
  align-items: start;
  box-sizing: border-box;
}

.cocktail-life-page__split-visual {
  margin: 0;
  width: 100%;
}

.cocktail-life-page__split-visual img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
}

.cocktail-life-page__split-copy > h2:first-child {
  margin-top: 0;
}

.cocktail-life-page__split-copy h2 + h3 {
  margin-top: 0.35rem;
}

.cocktail-life-page__split-copy {
  width: 100%;
}

@media (min-width: 640px) {
  .cocktail-life-page__split {
    display: grid;
    flex-direction: unset;
    grid-template-columns: minmax(0, 1.48fr) minmax(0, 1fr);
    column-gap: clamp(1.5rem, 4vw, 2.75rem);
    align-items: start;
    width: calc(100% + var(--cocktail-split-bleed));
    max-width: none;
    margin-left: calc(-1 * var(--cocktail-split-bleed));
  }
}

/* Same bleed distance as the split martini column, left and right (desktop only). */
.cocktail-life-page__lifecycle-diagram {
  margin: 2rem 0 1.75rem;
  padding: 0;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0 1px 0 rgba(6, 22, 48, 0.06);
}

@media (min-width: 640px) {
  .cocktail-life-page__lifecycle-diagram {
    width: calc(100% + 2 * var(--cocktail-split-bleed));
    margin-left: calc(-1 * var(--cocktail-split-bleed));
    margin-right: calc(-1 * var(--cocktail-split-bleed));
  }
}

.cocktail-life-page__lifecycle-diagram img {
  display: block;
  width: 100%;
  height: auto;
}

.cocktail-life-page__video {
  position: relative;
  margin: 2rem 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #0a1628;
}

.cocktail-life-page__video video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  cursor: pointer;
}

.cocktail-life-page__video-playbtn {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.cocktail-life-page__video--playing .cocktail-life-page__video-playbtn {
  opacity: 0;
  pointer-events: none;
}

.cocktail-life-page__video-playbtn__disc {
  display: grid;
  place-items: center;
  width: clamp(3.5rem, 11vw, 5rem);
  height: clamp(3.5rem, 11vw, 5rem);
  border-radius: 50%;
  background: rgba(6, 22, 48, 0.52);
  color: #fff;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
  transform: scale(1);
  transition: transform 0.25s ease, background 0.25s ease;
}

.cocktail-life-page__video-playbtn:hover .cocktail-life-page__video-playbtn__disc {
  background: rgba(6, 22, 48, 0.68);
  transform: scale(1.12);
}

.cocktail-life-page__video-playbtn__icon {
  margin-left: 3px;
}

.cocktail-life-page__steps li {
  margin-bottom: 0.5rem;
}

/* About — Team (data-driven roster under static-prose). */
.team-page-intro {
  margin-bottom: 0.25rem;
}

.team-page-intro p:last-child {
  margin-bottom: 0;
}

.team-page {
  margin-top: 2rem;
}

.team-page__section {
  --team-page-gutter: max(1rem, calc((100vw - min(1100px, 92vw)) / 2));
  width: 100vw;
  max-width: none;
  margin-inline: calc((100vw - 100%) / -2);
  box-sizing: border-box;
  margin-top: 2.25rem;
  padding-block: 1.35rem;
  padding-inline: var(--team-page-gutter);
  border-radius: 0;
}

.team-page__section:first-child {
  margin-top: 1.5rem;
}

.team-page__section:nth-child(odd) {
  background: var(--bg);
}

.team-page__section:nth-child(even) {
  background: var(--navy);
}

.team-page__section-title {
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 1.1rem;
  padding: 0;
  border: none;
  text-align: center;
  text-wrap: balance;
}

.team-page__section:nth-child(even) .team-page__section-title {
  color: #fff;
}

.category-intro .static-prose h2.team-page__section-title {
  margin-top: 0;
}

.team-page__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 520px) {
  .team-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .team-page__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.team-card {
  --team-card-radius: 0;
  display: flex;
  flex-direction: column;
  width: min(300px, 100%);
  margin-inline: auto;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--team-card-radius);
  box-shadow: 0 2px 14px rgba(6, 22, 48, 0.35);
  overflow: hidden;
}

.team-card__media {
  width: 100%;
  aspect-ratio: 300 / 325;
  height: auto;
  margin: 0;
  background: var(--navy-mid);
  overflow: hidden;
}

.team-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-card__body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Override .static-prose p (margin + muted color): caption lines are white. */
.team-card__body > p {
  margin: 0;
  color: #fff;
}

.team-card__body > p.team-card__role {
  margin-bottom: 0.85rem;
}

.team-card__name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.25;
}

.team-card__role {
  font-size: 0.95rem;
  line-height: 1.35;
}

.team-card__phone,
.team-card__email {
  font-size: 0.9rem;
  line-height: 1.3;
  word-break: break-word;
}

.team-card__email a {
  color: #fff;
  text-decoration: none;
}

.team-card__email a:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}

.team-card__email a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Navy-band sections: light caption strip with navy type (photo block unchanged). */
.team-page__section:nth-child(even) .team-card {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.28);
}

.team-page__section:nth-child(even) .team-card__body {
  background: #fff;
  color: var(--navy);
}

.team-page__section:nth-child(even) .team-card__name {
  color: var(--navy);
}

.team-page__section:nth-child(even) .team-card__body > p {
  color: var(--navy);
}

.team-page__section:nth-child(even) .team-card__email a {
  color: var(--navy);
  text-decoration: none;
}

.team-page__section:nth-child(even) .team-card__email a:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}

.team-page__section:nth-child(even) .team-card__email a:focus-visible {
  outline: 2px solid rgba(6, 22, 48, 0.45);
  outline-offset: 2px;
}

.category-intro .static-prose .team-card__img {
  margin: 0;
}

/* Contact Service / Contact Sales intros: two-column callout (shell matches warranty; split + 2nd column differ). */
.contact-service-intro-callout .warranty-page__callout-title,
.contact-sales-intro-callout .warranty-page__callout-title {
  text-wrap: balance;
}

.contact-service-intro-callout .warranty-page__callout-sidebar > p,
.contact-sales-intro-callout .warranty-page__callout-sidebar > p:not(.contact-sales-intro-callout__tagline) {
  margin: 0;
  color: var(--navy);
}

.contact-sales-intro-callout .contact-sales-intro-callout__tagline {
  margin: 1.1rem 0 0;
  font-weight: 600;
  color: var(--navy);
}

.contact-service-intro-callout .warranty-page__callout-split,
.contact-sales-intro-callout .warranty-page__callout-split {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .contact-service-intro-callout .warranty-page__callout-split,
  .contact-sales-intro-callout .warranty-page__callout-split {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: clamp(1rem, 3vw, 1.75rem);
  }
}

.contact-service-intro-callout .warranty-page__callout-sidebar,
.contact-sales-intro-callout .warranty-page__callout-sidebar {
  flex: 1 1 auto;
  min-width: 0;
}

/* Second column: no table-wrap panel; width = content (flex: 0 0 auto). */
.contact-service-intro-callout.warranty-page__callout .contact-service-intro-callout__links.warranty-page__table-wrap,
.contact-sales-intro-callout.warranty-page__callout .contact-sales-intro-callout__links.warranty-page__table-wrap {
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

/* Support — Contact Service (band after roster; mirrors .warranty-page__band). */
.contact-service-page__band {
  --contact-service-band-bleed: clamp(1rem, 5vw, 2.75rem);
  margin: 2.5rem 0 0;
  padding: 0;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0 1px 0 rgba(6, 22, 48, 0.06);
}

.contact-service-page__band-img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 640px) {
  .contact-service-page__band {
    width: calc(100% + 2 * var(--contact-service-band-bleed));
    margin-left: calc(-1 * var(--contact-service-band-bleed));
    margin-right: calc(-1 * var(--contact-service-band-bleed));
  }
}

/* About — Contact Us (static page body). */
.contact-us-page {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4vw, 2.5rem);
}

.contact-us-page__facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .contact-us-page__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 3vw, 1.75rem);
  }
}

.contact-us-page__fact {
  padding: clamp(1rem, 2.5vw, 1.25rem);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.contact-us-page__fact-title {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-us-page__fact p {
  margin: 0 0 0.5rem;
  line-height: 1.5;
  color: var(--text);
}

.contact-us-page__fact p:last-child {
  margin-bottom: 0;
}

.contact-us-page__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgb(6, 22, 48);
  margin-bottom: 0.15rem;
}

.contact-us-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .contact-us-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 1.5rem);
  }
}

.contact-us-page__panel {
  padding: clamp(1rem, 2.5vw, 1.35rem);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  min-width: 0;
}

.contact-us-page__panel-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* In masthead static pages, `.static-prose h2` (section tokens) is more specific
   than single-class fact/panel titles; re-assert the smaller local sizes. */
.static-prose .contact-us-page h2.contact-us-page__fact-title,
.category-intro .static-prose .contact-us-page h2.contact-us-page__fact-title {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.static-prose .contact-us-page h2.contact-us-page__panel-title,
.category-intro .static-prose .contact-us-page h2.contact-us-page__panel-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--navy);
}

.contact-us-page__panel-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-us-page__panel-list li {
  margin: 0;
  padding-left: 1rem;
  position: relative;
  line-height: 1.45;
  color: var(--text);
}

.contact-us-page__panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--accent-orange);
}

.contact-us-page__panel-list a {
  color: var(--link-blue);
  text-decoration: none;
}

.contact-us-page__panel-list a:hover {
  color: var(--accent-orange);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

/* About — Our History (static page body). */
.history-page {
  --history-gutter: max(1rem, calc((100vw - min(1100px, 92vw)) / 2));
  /* Match cocktail-life-page first split: slight horizontal bleed on wide viewports. */
  --history-split-bleed: clamp(1rem, 5vw, 2.75rem);
}

/* First two-column block: parallel layout to .cocktail-life-page__split (stack order, grid, bleed). */
.history-page__split {
  display: flex;
  flex-direction: column-reverse;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  margin: 0.5rem 0 2.25rem;
  align-items: start;
  box-sizing: border-box;
}

.history-page__split-media {
  margin: 0;
  width: 100%;
}

.history-page__split-media img {
  display: block;
  width: 100%;
  height: auto;
}

/* Stacked layout only: cap portrait height so the block doesn’t read as one giant image. */
@media (max-width: 639.98px) {
  .history-page__split-media img {
    max-height: min(52vh, 420px);
    margin-inline: auto;
    object-fit: contain;
    object-position: center top;
  }
}

.history-page__split-text {
  width: 100%;
  min-width: 0;
}

@media (min-width: 640px) {
  .history-page__split {
    display: grid;
    flex-direction: unset;
    /* Image column only as wide as the capped portrait; text uses the rest (vs equal fr columns). */
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: clamp(1.5rem, 4vw, 2.75rem);
    align-items: start;
    width: calc(100% + var(--history-split-bleed));
    max-width: none;
    margin-left: calc(-1 * var(--history-split-bleed));
  }

  /* Cap column width like the pre-grid split (~380px); fit-content so `auto` track doesn’t span the row. */
  .history-page__split-media {
    width: fit-content;
    max-width: min(380px, 100%);
    min-width: 0;
    justify-self: start;
  }

  .history-page__split-media img {
    max-height: min(56vh, 500px);
    object-fit: cover;
    object-position: center 15%;
  }
}

/* Section h2s: match in-page heading rhythm (e.g. cocktail-life-page h2), not uppercase/tracked display type. */
.history-page__split-title {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  text-align: left;
  margin: 0 0 0.75rem;
  color: var(--navy);
}

.category-intro .static-prose h2.history-page__split-title {
  margin-top: 0;
}

.history-page__split-text > p {
  margin: 0 0 1rem;
}

.history-page__split-text > p:last-child {
  margin-bottom: 0;
}

.history-page__band {
  margin: 2.5rem 0;
  padding: 2rem var(--history-gutter);
  border-radius: var(--radius);
}

.history-page__band--navy {
  width: 100vw;
  margin-inline: calc((100vw - 100%) / -2);
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  padding-inline: var(--history-gutter);
  box-sizing: border-box;
  background: var(--navy);
  color: #fff;
  border-radius: 0;
}

.history-page__band-title {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  text-align: center;
  margin: 0 0 0.75rem;
  color: #fff;
}

.category-intro .static-prose .history-page__band--navy h2.history-page__band-title {
  margin-top: 0;
}

.history-page__band-lede {
  text-align: center;
  /* Full band width like .category-intro .static-prose — avoid a second narrow measure inside the shell. */
  max-width: none;
  width: 100%;
  margin: 0 0 1.75rem;
  color: #fff;
  font-size: 1rem;
  line-height: 1.55;
}

/* Beats `.static-prose p { color: var(--muted) }` on this paragraph */
.static-prose p.history-page__band-lede {
  color: #fff;
}

/* Beats `.static-prose ul` (margin / padding) so the grid can center */
.static-prose ul.history-page__logo-grid {
  list-style: none;
  margin: 0 auto 1rem;
  padding: 0;
  padding-left: 0;
  display: grid;
  max-width: 56rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
  color: inherit;
}

@media (min-width: 900px) {
  .static-prose ul.history-page__logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

.static-prose ul.history-page__logo-grid li {
  margin: 0;
  text-align: center;
}

.history-page__logo-year {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  color: #fff;
}

.history-page__logo-grid img {
  width: 100%;
  max-width: 220px;
  height: auto;
  margin-inline: auto;
  display: block;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 0;
  box-sizing: border-box;
  background: transparent;
}

.history-page__timeline-title {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  text-align: center;
  margin: 0 0 0.65rem;
  color: var(--navy);
}

.category-intro .static-prose h2.history-page__timeline-title {
  margin-top: 0;
}

.history-page__timeline-lede {
  text-align: center;
  max-width: none;
  width: 100%;
  margin: 0 0 1.5rem;
}

/* Timeline: same horizontal marquee + lightbox pattern as the home gallery. */
.history-page__marquee-bleed {
  width: 100vw;
  margin-inline: calc((100vw - 100%) / -2);
  margin-bottom: 2rem;
}

.history-page .history-page__photo-marquee.home-gallery {
  margin-bottom: 0;
}

.history-page__marquee-actions {
  margin-top: 0.65rem;
  text-align: center;
}

.history-page__marquee-restart {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  margin: 0;
  padding: 0.2rem 0.4rem;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
  background: transparent;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
}

.history-page__marquee-restart__icon {
  flex-shrink: 0;
  opacity: 0.85;
}

.history-page__marquee-restart__label {
  text-decoration: underline;
  text-decoration-color: rgba(95, 99, 104, 0.4);
  text-underline-offset: 0.18em;
}

.history-page__marquee-restart:hover {
  color: var(--text);
}

.history-page__marquee-restart:hover .history-page__marquee-restart__label {
  text-decoration-color: rgba(26, 31, 46, 0.45);
}

.history-page__marquee-restart:hover .history-page__marquee-restart__icon {
  opacity: 1;
}

.history-page__marquee-restart:focus-visible {
  outline: 2px solid var(--link-blue);
  outline-offset: 2px;
}

.history-page .history-page__photo-marquee .home-gallery__track {
  animation-duration: 210s;
}

.history-page .history-page__photo-marquee .home-masonry__item {
  background: #fff;
  /* Taller tile: image + scrolling caption strip. */
  height: clamp(220px, 38vw, 320px);
}

/* Empty strip before slides (template); both segments include one for loop alignment. */
.history-page .history-page__photo-marquee .home-masonry__item.home-masonry__item--marquee-spacer {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: clamp(5.25rem, 22vw, 9rem);
  flex: 0 0 clamp(5.25rem, 22vw, 9rem);
  height: auto;
  min-height: 0;
  align-self: stretch;
  padding: 0.4rem 0.55rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
  pointer-events: none;
  overflow: hidden;
  margin-left: 50px;
}

.history-page .history-page__photo-marquee .home-masonry__item--marquee-spacer__label {
  margin: 0;
  max-width: 100%;
  font-size: clamp(0.68rem, 1.55vw, 0.82rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.03em;
  text-align: center;
  text-wrap: balance;
  color: var(--navy);
}

.history-page .history-page__photo-marquee .home-masonry__item.home-masonry__item--marquee-spacer:hover {
  box-shadow: none;
}

.history-page .history-page__photo-marquee .home-masonry__trigger.home-masonry__trigger--history-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  background: #fff;
}

.history-page .history-page__photo-marquee .home-masonry__visual {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Year pill parsed from each caption; sits on the image area only. */
.history-page .history-page__photo-marquee .home-masonry__visual .home-masonry__year {
  position: absolute;
  left: 0.45rem;
  bottom: 0.45rem;
  padding: 0.2rem 0.45rem;
  font-size: clamp(0.72rem, 2vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: #fff;
  background: rgba(6, 22, 48, 0.9);
  border-radius: 4px;
  pointer-events: none;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.28);
}

.history-page .history-page__photo-marquee .home-masonry__marquee-caption {
  flex: 0 0 auto;
  margin: 0;
  padding: 0.35rem 0.5rem 0.45rem;
  font-size: 0.72rem;
  line-height: 1.35;
  font-weight: 400;
  color: var(--muted);
  text-align: left;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
}

/* About — Built to Belong (static page body). Full-bleed bands use `.page-band--default` / `.page-band--alt`. */
.built-to-belong-page {
  --b2b-gutter: max(1.1rem, calc((100vw - min(1100px, 92vw)) / 2));
}

.built-to-belong-page__cta-row {
  display: grid;
  gap: 1.25rem 1.75rem;
  align-items: center;
  margin: 0 0 1.75rem;
}

@media (min-width: 640px) {
  .built-to-belong-page__cta-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

.static-prose .built-to-belong-page__cta-text {
  margin: 0;
}

.built-to-belong-page__cta-actions {
  flex-shrink: 0;
}

@media (max-width: 639.98px) {
  .built-to-belong-page__cta-actions {
    justify-self: start;
  }
}

.built-to-belong-page__cta-btn {
  display: inline-block;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  background: var(--accent-orange);
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(242, 123, 19, 0.35);
}

/* Beat `.static-prose a` (link blue) — same specificity as prose links on the anchor. */
.static-prose a.built-to-belong-page__cta-btn,
.static-prose a.built-to-belong-page__cta-btn:visited {
  color: #fff;
}

.static-prose a.built-to-belong-page__cta-btn:hover {
  color: #fff;
}

.built-to-belong-page__cta-btn:hover {
  color: #fff;
  background: var(--accent-orange-hover);
  text-decoration: none;
}

.built-to-belong-page__cta-btn:focus-visible {
  outline: 2px solid var(--link-blue);
  outline-offset: 3px;
}

.built-to-belong-page__section {
  width: 100vw;
  max-width: none;
  margin-inline: calc((100vw - 100%) / -2);
  margin-bottom: 0;
  padding: 1.5rem var(--b2b-gutter) 1.65rem;
  border-radius: 0;
  box-sizing: border-box;
}

/* HR + closing image: contacts | image; image covers second column (tall as row). */
.built-to-belong-page__contacts-split {
  display: grid;
  gap: 1.5rem 2rem;
  align-items: start;
}

@media (min-width: 52rem) {
  /* Center the text column vertically next to the image; figure keeps align-self: stretch so the
     image still fills row height (override for this item — see below). */
  .built-to-belong-page__contacts-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    align-items: center;
  }

  .built-to-belong-page__contacts-split .built-to-belong-page__figure--contact-aside {
    min-height: 0;
    align-self: stretch;
    display: grid;
    grid-template: 1fr / 1fr;
    overflow: hidden;
  }

  .built-to-belong-page__contacts-split .built-to-belong-page__figure--contact-aside img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
  }
}

.built-to-belong-page__contacts-split .built-to-belong-page__figure {
  margin: 0;
}

.built-to-belong-page__contacts-split .built-to-belong-page__contacts {
  margin-bottom: 0;
}

.built-to-belong-page__figure {
  margin: 0 0 1.25rem;
}

.built-to-belong-page__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.built-to-belong-page__section-body + .built-to-belong-page__figure {
  margin-top: 0.35rem;
}

@media (max-width: 51.98rem) {
  .built-to-belong-page__contacts-split .built-to-belong-page__figure--contact-aside {
    display: grid;
    grid-template: 1fr / 1fr;
    height: clamp(12rem, 42vh, 22rem);
    overflow: hidden;
  }

  .built-to-belong-page__contacts-split .built-to-belong-page__figure--contact-aside img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
  }
}

.built-to-belong-page__h2 {
  font-size: var(--section-heading-size);
  font-weight: var(--section-heading-weight);
  letter-spacing: var(--section-heading-track);
  color: var(--section-heading-color);
  margin: 0 0 0.75rem;
  text-transform: none;
}

.category-intro .static-prose h2.built-to-belong-page__h2 {
  margin-top: 0;
}

.built-to-belong-page__h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 1.25rem 0 0.5rem;
}

.built-to-belong-page__lede {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.75rem;
}

.built-to-belong-page__section-body > p {
  margin: 0 0 1rem;
}

.built-to-belong-page__section-body > p:last-child {
  margin-bottom: 0;
}

.built-to-belong-page__list {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
}

.built-to-belong-page__list li {
  margin-bottom: 0.4rem;
}

.built-to-belong-page__hr-intro {
  margin: 0 0 1.25rem;
}

.built-to-belong-page__contacts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.static-prose .built-to-belong-page__contacts {
  margin-bottom: 0;
  color: inherit;
}

.built-to-belong-page__contact-role {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Support — General policies (static page body). */
.policy-page > h2:first-child {
  margin-top: 0;
}

.policy-page h2 {
  font-size: var(--section-heading-size);
  font-weight: var(--section-heading-weight);
  letter-spacing: var(--section-heading-track);
  color: var(--section-heading-color);
  margin: 1.75rem 0 0.5rem;
}

.policy-page h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 1.25rem 0 0.5rem;
}

.policy-page__doc-label {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--navy);
}

.policy-page__caps-notice {
  font-size: 0.8125rem;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.static-prose .policy-page ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
  color: var(--muted);
}

/* Freight policy: accent band first in <main> (full width of .main, above .page-inner). */
.policy-page__accent-band--page-top {
  width: 100%;
  margin: 0;
  padding-block: clamp(1.05rem, 2.8vw, 1.5rem);
  padding-inline: max(1rem, calc((100vw - min(1100px, 92vw)) / 2));
  box-sizing: border-box;
  background: var(--accent-orange);
  color: #fff;
  text-align: center;
}

.policy-page__accent-band--page-top .policy-page__accent-band-heading {
  margin: 0;
  max-width: 56rem;
  margin-inline: auto;
  font-size: clamp(1.1rem, 2.6vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: #fff;
  text-wrap: balance;
}

/* About — Patents & Trademarks (static page body, no masthead). */
.patents-page p,
.patents-page .patents-page__tm-list {
  font-size: clamp(0.95rem, 1.65vw, 1.05rem);
  line-height: 1.55;
}

.patents-page__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 51.98rem) {
  .patents-page__columns > .patents-page__section:first-child {
    padding-bottom: 0.25rem;
    border-bottom: 1px solid var(--border);
  }
}

@media (min-width: 52rem) {
  .patents-page__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.75rem, 4vw, 3rem);
  }

  .patents-page__columns > .patents-page__section:first-child {
    padding-right: clamp(0.75rem, 2.5vw, 1.5rem);
    border-right: 1px solid var(--border);
  }
}

.patents-page h2 {
  font-size: var(--section-heading-size);
  font-weight: var(--section-heading-weight);
  letter-spacing: var(--section-heading-track);
  color: var(--section-heading-color);
  margin: 0 0 1.15rem;
}

.patents-page__section:first-of-type h2 {
  margin-top: 0;
}

.patents-page h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.5rem;
}

.patents-page__entry {
  margin: 0 0 1.5rem;
}

.patents-page__entry:last-child {
  margin-bottom: 0;
}

.patents-page__entry p {
  margin: 0 0 0.45rem;
}

.patents-page__patent-no {
  margin-bottom: 0.35rem !important;
}

.patents-page__tm-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.patents-page__tm-list li {
  margin-bottom: 0.35rem;
}

/* Site map (build-generated; mirrors mega menus + full category tree; template site_map.html). */
.site-map-page__section {
  margin-top: 2.25rem;
}

.site-map-page__section:first-of-type {
  margin-top: 0.75rem;
}

.site-map-page__section-title {
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.85rem;
}

.site-map-page__mega-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(12.5rem, 1fr));
  gap: 1rem 1.25rem;
  align-items: start;
}

.site-map-page__mega-grid--products {
  margin-bottom: 0.5rem;
}

.site-map-page__col {
  min-width: 0;
}

.site-map-page__col-head {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.site-map-page__col-head--link {
  text-decoration: none;
  color: var(--navy);
}

.site-map-page__col-head--link:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}

.site-map-page__col-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.95rem;
  line-height: 1.45;
}

.site-map-page__col-list li {
  margin: 0 0 0.35rem;
  padding: 0;
}

.site-map-page__col-list li:last-child {
  margin-bottom: 0;
}

.site-map-page__col-list a {
  text-decoration: none;
}

.site-map-page__col-list a:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}

.site-map-page__stub {
  color: var(--muted);
  font-style: italic;
}

.site-map-page__subhead {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin: 1.5rem 0 0.35rem;
}

.site-map-page__product-families {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.site-map-page__family {
  padding: 0.15rem 0;
}

.site-map-page__family-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
  color: var(--navy);
}

.site-map-page__family-title a {
  text-decoration: none;
  color: inherit;
}

.site-map-page__family-title a:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}

/* Indentation only (no bullets); beats .static-prose ul padding. */
.static-prose .site-map-page__tree {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.static-prose .site-map-page__tree .site-map-page__tree {
  margin-top: 0.35rem;
  margin-bottom: 0.35rem;
  padding-left: 1.25rem;
}

/* Two columns on the root list only: each top-level <li> (and its nested sublists) stays in one column unit. */
.site-map-page__tree--two-col-root {
  column-count: 2;
  column-gap: 1.75rem;
  column-fill: balance;
}

.site-map-page__tree--two-col-root > li {
  break-inside: avoid;
  page-break-inside: avoid;
}

.site-map-page__tree li {
  margin-bottom: 0.25rem;
}

.site-map-page__tree a {
  text-decoration: none;
}

.site-map-page__tree a:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}

@media (max-width: 639px) {
  .site-map-page__tree--two-col-root {
    column-count: 1;
  }
}

.site-map-page__pages-columns {
  margin: 0;
  padding: 0;
  list-style: none;
  column-count: 1;
  column-gap: 2rem;
  column-fill: balance;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--muted);
}

.site-map-page__pages-columns li {
  margin-bottom: 0.4rem;
  break-inside: avoid;
  page-break-inside: avoid;
}

.site-map-page__pages-columns a {
  text-decoration: none;
}

.site-map-page__pages-columns a:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}

@media (min-width: 640px) {
  .site-map-page__pages-columns {
    column-count: 2;
  }
}

/* Support — Warranty (static page body). */
.warranty-page {
  --warranty-bleed: clamp(1rem, 5vw, 2.75rem);
}

.warranty-page > h2:first-child {
  margin-top: 0;
}

.warranty-page__headline {
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 1rem;
  line-height: 1.35;
}

.warranty-page h2 {
  font-size: var(--section-heading-size);
  font-weight: var(--section-heading-weight);
  letter-spacing: var(--section-heading-track);
  color: var(--section-heading-color);
  margin: 1.75rem 0 0.5rem;
}

.warranty-page h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

.warranty-page__callout {
  --warranty-callout-pad: clamp(1rem, 2.5vw, 1.25rem);
  --warranty-table-inset: clamp(0.65rem, 1.75vw, 1.05rem);
  margin-block: 1.75rem 2rem;
  margin-inline: clamp(0.5rem, 2.25vw, 1.5rem);
  padding: var(--warranty-callout-pad);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: var(--shadow-soft);
}

.warranty-page__callout .warranty-page__callout-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
}

.warranty-page__callout-sidebar > .warranty-page__callout-title {
  margin-top: 0;
}

.warranty-page__callout-split {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .warranty-page__callout-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.28fr);
    gap: clamp(1rem, 3vw, 1.75rem);
    align-items: start;
  }
}

.warranty-page__callout-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  min-width: 0;
}

.warranty-page__callout-subhead {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}

.warranty-page__callout-stack p {
  margin: 0;
}

.warranty-page__callout .warranty-page__table-wrap {
  margin: var(--warranty-table-inset);
  min-width: 0;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 0;
  background: color-mix(in srgb, var(--navy) 3%, var(--surface));
}

@media (min-width: 720px) {
  .warranty-page__callout .warranty-page__table-wrap {
    margin: var(--warranty-table-inset) var(--warranty-table-inset) var(--warranty-table-inset) 0;
  }
}

.warranty-page__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.warranty-page__table th,
.warranty-page__table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.warranty-page__table th {
  font-weight: 600;
  color: var(--navy);
  background: color-mix(in srgb, var(--navy) 6%, var(--surface));
}

.warranty-page__table tbody tr:last-child td {
  border-bottom: none;
}

.warranty-page__band {
  margin: 2.5rem 0 0;
  padding: 0;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0 1px 0 rgba(6, 22, 48, 0.06);
}

.warranty-page__band img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 640px) {
  .warranty-page__band {
    width: calc(100% + 2 * var(--warranty-bleed));
    margin-left: calc(-1 * var(--warranty-bleed));
    margin-right: calc(-1 * var(--warranty-bleed));
  }
}

.carousel {
  margin-bottom: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.carousel:focus-visible {
  outline: 2px solid var(--link-blue);
  outline-offset: 3px;
}

.carousel__viewport {
  position: relative;
  aspect-ratio: 21 / 10;
  max-height: min(52vh, 520px);
  background: #dce0e8;
}

.carousel__slide {
  margin: 0;
  height: 100%;
}

.carousel__slide[hidden] {
  display: none;
}

.carousel__frame {
  position: relative;
  height: 100%;
}

.carousel__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: top;
  background: #0a1628;
  /* Chrome/Safari: suppress any stray native control chrome when `controls` is off */
  -webkit-appearance: none;
  appearance: none;
}

.carousel__video::-webkit-media-controls {
  display: none !important;
}

.carousel__video::-webkit-media-controls-enclosure {
  display: none !important;
}

.carousel__link {
  display: block;
  height: 100%;
  color: inherit;
}

.carousel__link:hover img {
  opacity: 0.95;
}

.carousel__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0.85rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 500;
  background: linear-gradient(transparent, rgba(6, 22, 48, 0.92));
  color: #fff;
}

.carousel__toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.65rem 1rem;
  border-top: 1px solid var(--border);
  background: #fafbfc;
}

.carousel__btn {
  font: inherit;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--navy);
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
  line-height: 1;
}

.carousel__btn:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.carousel__status {
  margin: 0;
  min-width: 4rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Full-bleed immersive carousel (home) */
.carousel--immersive {
  margin: 0 0 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  max-width: none;
}

.carousel--immersive:focus-visible {
  outline-offset: -2px;
}

.carousel--immersive .carousel__viewport {
  aspect-ratio: auto;
  min-height: min(72vh, 820px);
  max-height: min(88vh, 960px);
  background: #0a1628;
}

.carousel--immersive .carousel__caption {
  padding: 1.25rem min(1100px, 92vw);
  padding-bottom: 1.5rem;
  margin-inline: auto;
  max-width: 100%;
  box-sizing: border-box;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 500;
  background: linear-gradient(transparent, rgba(6, 22, 48, 0.55) 30%, rgba(6, 22, 48, 0.92) 100%);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

@media (min-width: 900px) {
  .carousel--immersive .carousel__caption {
    padding-left: max(1rem, calc((100vw - min(1100px, 92vw)) / 2));
    padding-right: max(1rem, calc((100vw - min(1100px, 92vw)) / 2));
  }
}

.carousel__toolbar--overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  border: none;
  background: linear-gradient(transparent, rgba(6, 22, 48, 0.75));
  padding: 3.5rem 1rem 1.1rem;
  justify-content: center;
  gap: 1.25rem;
}

.carousel--immersive .carousel__toolbar--overlay .carousel__btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  backdrop-filter: blur(6px);
}

.carousel--immersive .carousel__toolbar--overlay .carousel__btn:hover {
  background: rgba(242, 123, 19, 0.95);
  border-color: var(--accent-orange);
  color: #fff;
}

.carousel--immersive .carousel__toolbar--overlay .carousel__status {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  font-size: 0.95rem;
}

.carousel--immersive:has(.carousel__toolbar--overlay) .carousel__caption {
  bottom: 4.5rem;
  padding-bottom: 0.65rem;
}

/* Home hero: layered type over video (Glastender-style) */
.home-hero .carousel__frame {
  isolation: isolate;
}

.home-hero .carousel__video {
  position: relative;
  z-index: 0;
}

.home-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 78% 68% at 50% 44%,
      rgba(6, 22, 48, 0.42) 0%,
      rgba(6, 22, 48, 0.2) 45%,
      transparent 72%
    ),
    linear-gradient(
      to bottom,
      rgba(6, 22, 48, 0.48) 0%,
      transparent 38%,
      transparent 58%,
      rgba(6, 22, 48, 0.68) 100%
    );
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.25rem, 4vw, 2.75rem);
  pointer-events: none;
}

.home-hero__overlay-inner {
  text-align: center;
  max-width: min(52rem, 94vw);
  --home-hero-band: clamp(0.5rem, 1.35vw, 0.85rem);
}

.home-hero__line {
  margin: 0;
  font-family: var(--font);
  color: #fff;
}

.home-hero__line--kicker {
  font-size: clamp(0.62rem, 1.35vw, 0.84rem);
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.45),
    0 2px 22px rgba(0, 0, 0, 0.55);
  -webkit-text-stroke: 0.45px rgba(255, 255, 255, 0.55);
  margin-bottom: var(--home-hero-band);
}

@supports not (-webkit-text-stroke: 0.45px white) {
  .home-hero__line--kicker {
    -webkit-text-stroke: 0;
    text-shadow:
      0 1px 0 rgba(255, 255, 255, 0.3),
      0 2px 22px rgba(0, 0, 0, 0.55);
  }
}

.home-hero__line--headline {
  font-size: clamp(2.25rem, 10.5vw, 5.75rem);
  font-weight: 700;
  /* Tight line box: all-caps has no descenders but fonts still reserve space below the baseline. */
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-shadow: 0 4px 36px rgba(0, 0, 0, 0.5);
}

/* Trim phantom leading above/below glyphs so spacing matches visual caps + baseline (Chrome 133+, Safari 18.2+, Edge 132+). */
@supports (text-box-trim: trim-both) {
  .home-hero__line--headline {
    text-box-edge: cap alphabetic;
    text-box-trim: trim-both;
  }
}

/* Firefox: no text-box-trim yet — negative margin closes the faux “descender” gap under all-caps (tune em if font stack changes). */
@supports not (text-box-trim: trim-both) {
  .home-hero__line--headline {
    margin-bottom: -0.1em;
  }
}

.home-hero__line--tagline {
  font-size: clamp(0.68rem, 1.6vw, 0.94rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
  margin-top: var(--home-hero-band);
}

.home-hero__tagline-sep {
  display: inline-block;
  margin: 0 0.45em;
  font-weight: 400;
  opacity: 0.88;
}

.home-hero .carousel__caption {
  z-index: 3;
}

/* Home: “Solutions for every venue” — h1 + lede in a local navy scrim, centered on in-flow image; extra top gap after immersive hero */
.home-venue--inset {
  width: 100%;
  max-width: 100%;
  margin: 0 0 2.5rem;
  box-sizing: border-box;
}

.home-venue--inset.home-venue--after-hero {
  margin-top: clamp(1.5rem, 3.5vw, 2.5rem);
}

.home-venue__title {
  margin: 0;
  max-width: 32ch;
  width: 100%;
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  text-transform: uppercase;
}

.home-venue--after-hero .home-venue__title {
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
}

.home-venue__frame {
  position: relative;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.home-venue__media {
  display: block;
  line-height: 0;
  pointer-events: none;
  box-sizing: border-box;
}

.home-venue__media-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
}

.home-venue__overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.25rem;
  box-sizing: border-box;
  pointer-events: none;
}

.home-venue__text-scrim {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  max-width: min(70ch, 100%);
  width: 100%;
  margin: 0;
  padding: 0.85rem 1.1rem 1.05rem;
  box-sizing: border-box;
  text-align: center;
  /* Solid fallback, then color-mix when supported (tracks --navy) */
  background: rgba(6, 22, 48, 0.7);
  background: color-mix(in srgb, var(--navy) 70%, transparent);
  pointer-events: auto;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
}

.home-venue__text-scrim .home-venue__lede {
  margin: 0;
  max-width: 100%;
  text-align: center;
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.55;
  font-weight: 500;
}

/* Home: Designer — full-bleed navy band; inner row still aligns with page column via gutter */
.home-designer {
  --home-designer-gutter: max(1rem, calc((100vw - min(1100px, 92vw)) / 2));
  width: 100vw;
  max-width: none;
  margin-inline: calc((100vw - 100%) / -2);
  margin-top: 0;
  margin-bottom: 2.5rem;
  padding: clamp(2rem, 4vw, 2.75rem) var(--home-designer-gutter);
  background: var(--navy);
  color: #fff;
  box-sizing: border-box;
  border: none;
  box-shadow: none;
}

.home-designer__row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
  margin: 0;
  box-sizing: border-box;
}

@media (min-width: 52rem) {
  .home-designer__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.14fr);
    column-gap: clamp(1.35rem, 3.5vw, 2.25rem);
    align-items: center;
  }
}

.home-designer__logo {
  display: block;
  width: auto;
  max-width: min(14rem, 100%);
  height: auto;
  margin: 0 0 0.85rem;
}

.home-designer__figure {
  margin: 0;
  min-width: 0;
}

.home-designer__photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  vertical-align: top;
}

.home-designer__copy h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 600;
  color: #fff;
}

.home-designer__copy p {
  margin: 0;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
}

.home-designer__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  margin-top: 1.1rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  background: var(--accent-orange);
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(242, 123, 19, 0.35);
}

.home-designer__cta:hover {
  color: #fff;
  background: var(--accent-orange-hover);
  text-decoration: none;
}

.home-designer__cta:focus-visible {
  outline: 2px solid var(--link-blue);
  outline-offset: 3px;
}

.home-gallery {
  margin-bottom: 2.75rem;
}

.home-gallery__title {
  margin: 0 0 0.5rem;
  font-size: var(--section-heading-size);
  font-weight: var(--section-heading-weight);
  letter-spacing: var(--section-heading-track);
  color: var(--section-heading-color);
}

/* Horizontal masonry-style marquee (duplicated strip, CSS transform loop) */
@keyframes home-gallery-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.home-gallery__marquee {
  position: relative;
  margin-inline: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
}

.home-gallery__marquee:focus {
  outline: none;
}

.home-gallery__marquee:focus-visible {
  outline: 2px solid var(--link-blue);
  outline-offset: 4px;
}

.home-gallery__viewport {
  overflow: hidden;
  padding-block: 0.25rem 0.5rem;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 5%,
    #000 95%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 5%,
    #000 95%,
    transparent
  );
}

.home-gallery__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: max-content;
  animation: home-gallery-scroll 95s linear infinite;
}

.home-gallery__marquee:hover .home-gallery__track,
.home-gallery__marquee:focus .home-gallery__track,
.home-gallery__viewport:hover .home-gallery__track,
.home-gallery__track:hover {
  animation-play-state: paused;
}

.home-gallery__marquee.home-gallery__marquee--lightbox-open .home-gallery__track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .home-gallery__track {
    animation: none;
    transform: none;
  }
}

.home-gallery__segment {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.65rem;
  padding-inline-end: 0.65rem;
}

.home-masonry__item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  width: clamp(200px, 32vw, 360px);
  height: clamp(160px, 26vw, 260px);
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .home-masonry__item:hover {
    box-shadow:
      var(--shadow-card),
      0 0 0 2px var(--accent-orange, #f27b13);
  }
}

.home-masonry__trigger {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
  min-height: 0;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  line-height: 0;
  font: inherit;
  color: inherit;
  text-align: start;
}

.home-masonry__trigger:focus {
  outline: none;
}

.home-masonry__trigger:focus-visible {
  outline: 2px solid var(--accent-orange, #f27b13);
  outline-offset: 2px;
}

.home-masonry__trigger img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Our History timeline: mixed aspect ratios — fill the image area without cropping. */
.history-page .history-page__photo-marquee .home-masonry__visual img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

/*
 * Closed <dialog> relies on the UA `display: none`. Do not set display/size on the
 * base selector — that overrides the closed state and leaves a full-viewport hit
 * target that steals hover and clicks from the page beneath.
 */
.home-gallery-lightbox:not([open]) {
  display: none;
}

.home-gallery-lightbox[open] {
  padding: 0;
  border: none;
  background: transparent;
  max-width: none;
  max-height: none;
  width: 100vw;
  height: 100vh;
  margin: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.home-gallery-lightbox::backdrop {
  background: rgba(6, 22, 48, 0.88);
  cursor: zoom-out;
}

.home-gallery-lightbox__dim {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: transparent;
  cursor: zoom-out;
}

.home-gallery-lightbox__shell {
  position: relative;
  z-index: 1;
  max-width: min(96vw, 1100px);
  max-height: min(92vh, 900px);
  padding: 1rem 1.35rem 1rem;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  overflow: auto;
}

.home-gallery-lightbox__img {
  display: block;
  max-width: min(90vw, 1040px);
  max-height: min(72vh, 780px);
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

/* !important: beat `.static-prose p` (lightbox <p> sits inside prose on static pages). */
.home-gallery-lightbox__caption {
  margin: 0.85rem 0 0 !important;
  padding: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy) !important;
  text-align: center;
  line-height: 1.45;
}

.home-gallery-lightbox__close {
  position: fixed;
  top: max(0.75rem, env(safe-area-inset-top, 0px));
  right: max(0.75rem, env(safe-area-inset-right, 0px));
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0.15rem;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 1.85rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.8),
    0 1px 4px rgba(0, 0, 0, 0.5);
}

.home-gallery-lightbox__close:hover {
  color: var(--accent-orange);
}

.home-gallery-lightbox__close:focus-visible {
  outline: 2px solid var(--link-blue);
  outline-offset: 3px;
}

.home-catalog__intro {
  margin-bottom: 1.25rem;
}

.home-catalog__intro h2 {
  font-size: var(--section-heading-size);
  font-weight: var(--section-heading-weight);
  letter-spacing: var(--section-heading-track);
  margin: 0 0 0.5rem;
  color: var(--section-heading-color);
}

/* Policy consent banner (first visit / effective-date bump; see policy-consent-banner.js). */
body.has-policy-consent-banner {
  padding-bottom: clamp(7rem, 22vh, 11rem);
}

.policy-consent-banner {
  position: fixed;
  z-index: 400;
  left: 0;
  right: 0;
  bottom: 0;
  box-sizing: border-box;
  padding: clamp(0.85rem, 2.2vw, 1.15rem) 0;
  background: var(--navy);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 -6px 28px rgba(6, 22, 48, 0.35);
}

.policy-consent-banner__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
  align-items: stretch;
}

@media (min-width: 720px) {
  .policy-consent-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
  }
}

.policy-consent-banner__main {
  flex: 1 1 auto;
  min-width: 0;
}

.policy-consent-banner__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
}

.policy-consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  align-items: center;
  flex: 0 0 auto;
}

.policy-consent-banner__link {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}

.policy-consent-banner__link:hover {
  color: var(--accent-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-consent-banner__accept {
  cursor: pointer;
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  background: var(--accent-orange);
  color: #fff;
}

.policy-consent-banner__accept:hover {
  filter: brightness(1.06);
}

.policy-consent-banner__accept:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
