:root {
  --ink: #0f1f2e;
  --muted: #5d6876;
  --line: #d7e0ea;
  --panel: #f7fbff;
  --panel-strong: #edf5fd;
  --brand: #1d63a7;
  --brand-dark: #164a7d;
  --accent: #d9a441;
  --accent-soft: #fff4d8;
  --danger: #9f2d2d;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(15, 31, 46, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(237, 245, 253, 0.8) 0, rgba(255, 255, 255, 0) 360px),
    var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(29, 99, 167, 0.35);
  outline-offset: 3px;
}

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 8px;
  background: var(--brand-dark);
  color: var(--white);
  font-weight: 800;
  padding: 0.65rem 0.85rem;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(15, 31, 46, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 184px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.links a,
.nav-button {
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 650;
  padding: 0.65rem 0.8rem;
}

.links a:hover,
.nav-button:hover {
  background: var(--panel-strong);
  color: var(--ink);
}

.links a[aria-current="page"] {
  background: var(--panel-strong);
  color: var(--brand-dark);
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.65rem;
  height: 1.65rem;
  margin-left: 0.25rem;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.78rem;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 0.6rem;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
}

.page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 2rem;
  align-items: stretch;
  padding: 3.4rem 0 2.4rem;
}

.hero-solo {
  grid-template-columns: minmax(0, 900px);
}

.hero-main {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 750;
  padding: 0.42rem 0.72rem;
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 4.15rem;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.5rem;
  font-size: 2.25rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
}

.home-hero {
  align-items: center;
  padding-top: 3rem;
}

.home-hero h1 {
  max-width: 820px;
  font-size: 3.65rem;
}

.search-panel,
.side-panel,
.section-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.search-panel {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.92);
}

.search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.7rem;
}

.search-input,
.select,
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 0.82rem 0.9rem;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.button,
.button-secondary,
.button-ghost,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 760;
  padding: 0.72rem 0.95rem;
}

.button {
  background: var(--brand);
  color: var(--white);
}

.button:hover {
  background: var(--brand-dark);
}

.button-secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--panel-strong);
}

.button-ghost {
  background: transparent;
  color: var(--brand-dark);
  padding-inline: 0;
}

.icon-button {
  width: 42px;
  padding: 0;
  border-color: var(--line);
  background: var(--white);
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.side-panel {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  background:
    linear-gradient(135deg, rgba(29, 99, 167, 0.15), rgba(217, 164, 65, 0.11) 58%, transparent),
    var(--panel);
}

.hero-checklist {
  align-self: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(29, 99, 167, 0.13), rgba(217, 164, 65, 0.1) 58%, transparent),
    var(--panel);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.hero-checklist h2 {
  margin-bottom: 0.85rem;
  font-size: 1.35rem;
}

.hero-checklist ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-checklist li {
  position: relative;
  min-height: 28px;
  padding-left: 2rem;
  color: var(--ink);
}

.hero-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, var(--accent) 0 32%, transparent 34%),
    var(--white);
  border: 1px solid var(--line);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.metric {
  border: 1px solid rgba(15, 31, 46, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 0.85rem;
}

.metric strong {
  display: block;
  font-size: 1.35rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.83rem;
}

.vault-visual {
  overflow: hidden;
  border: 1px solid rgba(15, 31, 46, 0.12);
  border-radius: 8px;
  background: var(--brand-dark);
  color: var(--white);
}

.vault-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.8rem 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
}

.vault-shelves {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
}

.shelf {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 0.7rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.7rem;
}

.shelf-code {
  border-radius: 6px;
  background: var(--accent);
  color: #2a210d;
  font-weight: 850;
  padding: 0.4rem;
  text-align: center;
}

.shelf small {
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: 2rem 0;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0.3rem 0 1.2rem;
}

.trust-row div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  padding: 0.85rem;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  font-size: 0.92rem;
}

.trust-row span {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.muted {
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.two-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 1rem;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.card:hover {
  border-color: rgba(29, 99, 167, 0.34);
  box-shadow: 0 12px 28px rgba(15, 31, 46, 0.09);
  transform: translateY(-1px);
}

.card:focus-visible {
  box-shadow: 0 12px 28px rgba(15, 31, 46, 0.12);
}

.feature-grid .card {
  min-height: 205px;
}

.feature-grid .badge {
  margin-bottom: 0.7rem;
}

.content-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0.5rem 0 2rem;
  padding: 1.2rem 0;
}

.content-band div {
  max-width: 870px;
}

.content-band p {
  color: var(--muted);
  font-size: 1.02rem;
}

.service-hero {
  padding-bottom: 1.4rem;
}

.support-band,
.brand-support,
.service-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 1.1rem;
}

.support-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(29, 99, 167, 0.1), rgba(217, 164, 65, 0.08)),
    var(--white);
}

.support-band h2,
.brand-support h2,
.service-note h2 {
  font-size: 1.45rem;
}

.brand-support {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 1.2rem;
  align-items: center;
  background: var(--panel);
}

.brand-support img {
  display: block;
  width: 100%;
  max-width: 230px;
  height: auto;
  object-fit: contain;
}

.brand-support .quick-actions {
  margin-top: 0.7rem;
}

.brand-bullets,
.helper-list {
  display: grid;
  gap: 0.35rem;
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.service-category {
  display: grid;
  gap: 1rem;
  padding: 1.8rem 0;
  border-top: 1px solid var(--line);
}

.service-category:first-of-type {
  border-top: 0;
}

.service-card {
  display: grid;
  gap: 0.65rem;
  min-height: 210px;
}

.service-card p {
  color: var(--muted);
}

.service-card .button-secondary,
.service-card .button {
  width: fit-content;
  margin-top: auto;
}

.checklist-card {
  background: var(--panel);
}

.catalog-notice {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.catalog-notice img {
  width: 100%;
  max-width: 190px;
  height: auto;
  object-fit: contain;
}

.form-helper-panel {
  margin-top: 1rem;
}

.footer-note {
  margin-top: 0.5rem;
  color: var(--muted);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(29, 99, 167, 0.12), rgba(217, 164, 65, 0.08)),
    var(--panel);
  padding: 1.2rem;
}

.final-cta h2 {
  margin-bottom: 0.35rem;
  font-size: 1.55rem;
}

.final-cta p {
  margin-bottom: 0;
  color: var(--muted);
}

.catalog-intro {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.chip-row a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--brand-dark);
  font-size: 0.88rem;
  font-weight: 750;
  padding: 0.48rem 0.7rem;
}

.chip-row a:hover {
  background: var(--panel-strong);
}

.process-grid .card {
  min-height: 190px;
}

.badge {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: var(--panel-strong);
  color: var(--brand-dark);
  font-size: 0.76rem;
  font-weight: 780;
  padding: 0.24rem 0.55rem;
}

.programming-badge {
  background: var(--accent-soft);
  color: #5b4108;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 1.2rem;
  padding: 1.5rem 0 2.5rem;
}

.filters {
  position: sticky;
  top: 92px;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 1rem;
}

.filter-list {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.7rem;
}

.filter-list button,
.filter-list a {
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  padding: 0.5rem 0.6rem;
  text-align: left;
  text-decoration: none;
}

.filter-list button.active,
.filter-list button:hover,
.filter-list a:hover {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.path-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.path-nav button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--brand-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 760;
  padding: 0.45rem 0.6rem;
}

.path-nav button:hover {
  background: var(--panel-strong);
}

.breadcrumb-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb-links a {
  color: var(--brand-dark);
  font-weight: 750;
}

.breadcrumb-links a:hover {
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.legal-layout {
  display: grid;
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(15, 31, 46, 0.08);
  padding: 1.4rem;
}

.legal-card section {
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}

.legal-card section:first-of-type {
  border-top: 0;
  padding-top: 0.4rem;
}

.legal-card h2 {
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
}

.legal-card h3 {
  margin: 1rem 0 0.35rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card ul {
  margin: 0.35rem 0 0.8rem;
  padding-left: 1.25rem;
}

.legal-meta {
  color: var(--muted);
  font-weight: 750;
}

.catalog-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.product-card {
  display: grid;
  gap: 0.75rem;
  min-height: 235px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 0.95rem;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

a.product-card,
button.product-card {
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  text-decoration: none;
}

.product-card:hover {
  border-color: rgba(29, 99, 167, 0.36);
  box-shadow: 0 12px 30px rgba(15, 31, 46, 0.1);
  transform: translateY(-1px);
}

.product-top {
  min-width: 0;
}

.sku {
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.product-card h3 {
  display: -webkit-box;
  overflow: hidden;
  min-height: 2.95em;
  margin: 0.15rem 0 0;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-title-button {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 760;
  line-height: 1.25;
  padding: 0;
  text-align: left;
}

.product-title-button:hover {
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.product-card p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 4.5em;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.product-meta span {
  border-radius: 999px;
  background: var(--panel);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  padding: 0.2rem 0.45rem;
}

.review-note {
  color: var(--muted);
  font-size: 0.78rem;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}

.price {
  font-size: 1.05rem;
  font-weight: 850;
}

.add-controls {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
}

.qty-input {
  width: 66px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 0.45rem 0.55rem;
}

.qty-label {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 760;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.quote {
  color: var(--danger);
  font-weight: 800;
}

.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 760;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.responsive-table {
  overflow-x: auto;
}

.cart-table th,
.cart-table td {
  border-bottom: 1px solid var(--line);
  padding: 0.8rem 0.6rem;
  text-align: left;
  vertical-align: top;
}

.cart-table th {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.qty-control input {
  width: 66px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.55rem;
}

.summary-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 1rem;
}

.cart-summary {
  position: sticky;
  top: 92px;
  align-self: start;
}

.summary-box .field {
  margin: 0.75rem 0;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding: 0.65rem 0;
}

.summary-line:last-child {
  border-bottom: 0;
  font-size: 1.15rem;
  font-weight: 850;
}

.notice {
  border: 1px solid #efd58f;
  border-radius: 8px;
  background: var(--accent-soft);
  color: #4f3a0c;
  padding: 0.9rem;
}

.notice ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
}

.empty-cart-actions {
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: var(--panel);
  margin-top: 1rem;
  padding: 1rem;
}

.empty-cart-actions p {
  margin-bottom: 0.8rem;
  color: var(--muted);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 31, 46, 0.48);
  padding: 1rem;
}

.modal-backdrop.open {
  display: flex;
}

.modal-panel {
  width: min(720px, 100%);
  max-height: min(760px, calc(100vh - 2rem));
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.modal-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding: 1.1rem;
}

.modal-head h2 {
  margin: 0.2rem 0 0;
  font-size: 1.55rem;
  line-height: 1.15;
}

.modal-body {
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
}

.modal-body p {
  margin: 0;
  color: var(--ink);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.detail-grid div {
  display: grid;
  gap: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 0.75rem;
}

.detail-grid strong {
  overflow-wrap: anywhere;
}

.modal-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  border-top: 1px solid var(--line);
  padding: 1rem 1.1rem;
}

.footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background: var(--panel);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 1.2rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-inner strong {
  color: var(--ink);
}

.footer-inner p {
  max-width: 520px;
  margin: 0.35rem 0 0;
}

.footer-grid {
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem 0.9rem;
}

.footer-links a {
  color: var(--brand-dark);
  font-weight: 750;
}

.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.hidden {
  display: none !important;
}

@media (max-width: 940px) {
  .hero,
  .catalog-layout,
  .two-grid {
    grid-template-columns: 1fr;
  }

  .home-hero h1 {
    font-size: 3rem;
  }

  .filters {
    position: static;
  }

  .cart-summary {
    position: static;
  }

  .grid,
  .product-grid,
  .trust-row,
  .brand-support,
  .catalog-notice,
  .support-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav {
    min-height: 66px;
  }

  .nav-toggle {
    display: block;
  }

  .brand img {
    width: 154px;
  }

  .links {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    padding: 0.75rem 1rem 1rem;
  }

  .links.open {
    display: flex;
  }

  .links a,
  .nav-button {
    justify-content: flex-start;
    width: 100%;
    text-align: left;
  }

  h1 {
    font-size: 2.45rem;
  }

  .home-hero h1 {
    font-size: 2.35rem;
  }

  .search-row,
  .catalog-tools,
  .form-grid,
  .grid,
  .product-grid,
  .metric-grid,
  .detail-grid,
  .trust-row,
  .brand-support,
  .catalog-notice,
  .support-band {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding-top: 2rem;
  }

  .hero-checklist,
  .final-cta {
    padding: 1rem;
  }

  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .final-cta .button {
    width: 100%;
  }

  .service-card .button-secondary,
  .service-card .button,
  .support-band .button,
  .support-band .button-secondary {
    width: 100%;
  }

  .product-bottom,
  .modal-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .add-controls {
    justify-content: stretch;
  }

  .add-controls .button-secondary,
  .modal-actions .button {
    flex: 1;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
