:root {
  --yellow: #ffc400;
  --yellow-dark: #d9a800;
  --ink: #10100f;
  --ink-2: #181817;
  --ink-3: #242421;
  --steel: #a8a8a1;
  --muted: #62625d;
  --line: #d8d8d2;
  --paper: #f5f5f0;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.material-symbols-outlined {
  font-size: 24px;
  line-height: 1;
  vertical-align: middle;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

main [id],
.site-footer[id] {
  scroll-margin-top: 172px;
}

.header-main {
  display: grid;
  grid-template-columns: 260px minmax(260px, 1fr) auto auto;
  align-items: center;
  gap: 28px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 28px 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  width: max-content;
}

.brand-logo {
  display: block;
  width: 230px;
  height: 85px;
  object-fit: contain;
}

.brand-mark {
  width: 68px;
  height: 68px;
}

.brand-text {
  color: var(--white);
  font-family: Oswald, Impact, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 0.84;
  letter-spacing: 0;
  text-transform: uppercase;
}

.access-banner {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #171716;
}

.access-banner .material-symbols-outlined {
  color: var(--yellow);
}

.access-banner strong {
  display: block;
  font-size: 14px;
  line-height: 1.15;
}

.access-banner span:not(.material-symbols-outlined) {
  display: block;
  color: #c8c8c0;
  font-size: 12px;
  line-height: 1.35;
}

.access-banner a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 16px;
  background: var(--yellow);
  color: var(--ink);
  font-family: Oswald, Impact, sans-serif;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  border: 0;
  background: var(--yellow);
  color: var(--ink);
  cursor: pointer;
}

.contact-cluster {
  display: flex;
  gap: 24px;
  align-items: center;
}

.contact-item {
  display: grid;
  grid-template-columns: 32px auto;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}

.contact-item .material-symbols-outlined {
  color: var(--yellow);
}

.contact-item strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
}

.contact-item small {
  color: #d4d4ce;
  font-size: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.primary-nav a {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  color: #eeeeea;
  font-family: Oswald, Impact, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  background: #20201e;
  color: var(--yellow);
}

.primary-nav a.is-current {
  color: var(--yellow);
  box-shadow: inset 0 -4px 0 var(--yellow);
}

.shop-link {
  padding-left: 0 !important;
}

.shop-link .material-symbols-outlined {
  color: var(--yellow);
}

.nav-action {
  margin-left: auto;
  color: var(--ink) !important;
  background: var(--yellow);
}

.hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #050505;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.62) 30%, rgba(0, 0, 0, 0.08) 66%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.32) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 56px 48px 48px;
  color: var(--white);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: Oswald, Impact, sans-serif;
  font-size: clamp(46px, 5vw, 64px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.hero h1::after {
  display: block;
  width: 56px;
  height: 6px;
  margin: 24px 0 22px;
  background: var(--yellow);
  content: "";
}

.hero p {
  max-width: 440px;
  margin: 0;
  color: #f4f4ee;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--yellow);
  color: var(--ink);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(0, 0, 0, 0.2);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.button-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

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

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1440px;
  margin: 0 auto;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 16px 26px;
  border-right: 1px solid var(--line);
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.service-item:last-child {
  border-right: 0;
}

.service-item:hover,
.service-item:focus-visible {
  background: #fff8cf;
  outline: none;
}

.service-item .material-symbols-outlined {
  font-size: 34px;
  color: var(--ink);
}

.service-item strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
}

.service-item span:not(.material-symbols-outlined) {
  display: block;
  color: #5b5b56;
  font-size: 13px;
  line-height: 1.3;
}

.category-rail {
  background: var(--ink-2);
  color: var(--white);
  padding: 28px 46px 30px;
}

.section-kicker {
  max-width: 1440px;
  margin: 0 auto 20px;
  color: var(--yellow);
  font-family: Oswald, Impact, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr)) 160px;
  max-width: 1440px;
  margin: 0 auto;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.category-grid.is-product-grid {
  grid-template-columns: repeat(4, minmax(160px, 1fr)) 180px;
}

.category-card,
.category-all {
  min-height: 146px;
  padding: 16px 20px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: var(--white);
  text-align: left;
  cursor: default;
  text-decoration: none;
}

.category-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}

.category-card .material-symbols-outlined {
  color: var(--yellow);
  font-size: 44px;
  margin-bottom: auto;
}

.category-card strong {
  font-family: Oswald, Impact, sans-serif;
  font-size: 19px;
  line-height: 1;
  text-transform: uppercase;
}

.category-card small {
  color: #c8c8c0;
  font-size: 13px;
  line-height: 1.25;
}

.category-card:hover,
.category-card:focus-visible,
.category-card.is-active {
  background: #22221f;
  outline: none;
}

.category-card.is-active {
  box-shadow: inset 0 -4px 0 var(--yellow);
}

.category-all {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  color: var(--yellow);
  font-family: Oswald, Impact, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.category-status {
  max-width: 1440px;
  margin: 18px auto 0;
  color: #cfcfc8;
  font-size: 14px;
}

.action-panels {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.35fr;
  max-width: 1440px;
  margin: 0 auto;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.action-panels article {
  min-height: 300px;
  padding: 34px 32px;
  border-right: 1px solid var(--line);
}

.action-panels article:last-child {
  border-right: 0;
}

.panel-label {
  margin-bottom: 10px;
  color: var(--ink);
  font-family: Oswald, Impact, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.action-panels h2 {
  margin: 0 0 18px;
  font-family: Oswald, Impact, sans-serif;
  font-size: 34px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0;
}

.action-panels p {
  margin: 0 0 22px;
  color: #3f3f3a;
  max-width: 360px;
}

.check-list {
  display: grid;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #34342f;
  font-size: 15px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  content: "";
}

.check-list li::after {
  position: absolute;
  left: 6px;
  top: 5px;
  width: 4px;
  height: 8px;
  border: solid var(--ink);
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.panel-action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.text-link {
  color: var(--ink);
  font-weight: 800;
}

.price-panel {
  position: relative;
  overflow: hidden;
}

.price-panel .button {
  position: relative;
  z-index: 1;
}

.price-book {
  position: absolute;
  right: 28px;
  bottom: 24px;
  display: grid;
  width: 148px;
  min-height: 198px;
  padding: 22px 18px 18px;
  background: linear-gradient(145deg, #252521, #0d0d0c);
  color: var(--white);
  box-shadow: var(--shadow);
  border-bottom: 5px solid var(--yellow);
}

.price-book img {
  width: 42px;
  margin-bottom: 8px;
}

.price-book strong {
  font-family: Oswald, Impact, sans-serif;
  font-size: 24px;
  line-height: 0.95;
  text-transform: uppercase;
}

.price-book span {
  align-self: end;
  color: var(--yellow);
  font-family: Oswald, Impact, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.price-book small {
  color: #e8e8df;
  font-family: Oswald, Impact, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.surplus-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 240px;
  gap: 28px;
  background: linear-gradient(90deg, #ededeb 0%, #ffffff 100%);
}

.surplus-panel img {
  width: 100%;
  height: 214px;
  object-fit: cover;
  align-self: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.proof-section {
  display: grid;
  grid-template-columns: 0.95fr 1.4fr;
  gap: 42px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 54px 46px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.proof-section .section-kicker {
  margin: 0 0 14px;
}

.proof-section h2,
.specials-section h2 {
  margin: 0 0 16px;
  font-family: Oswald, Impact, sans-serif;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: 0;
}

.proof-section p,
.specials-section p {
  margin: 0;
  color: #3f3f3a;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.proof-grid article {
  min-height: 220px;
  padding: 28px;
  background: var(--white);
}

.proof-grid .material-symbols-outlined {
  color: var(--yellow);
  font-size: 42px;
  margin-bottom: 26px;
}

.proof-grid h3 {
  margin: 0 0 10px;
  font-family: Oswald, Impact, sans-serif;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.specials-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1440px;
  margin: 0 auto;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.specials-section article {
  padding: 40px 46px;
  border-right: 1px solid var(--line);
}

.specials-section article:last-child {
  border-right: 0;
}

.specials-section .text-link {
  display: inline-block;
  margin-top: 18px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.page-hero-compact {
  min-height: 330px;
  background:
    linear-gradient(90deg, rgba(16, 16, 15, 0.96), rgba(16, 16, 15, 0.76)),
    url("/assets/hero-trade-counter-clean.png") center / cover;
}

.page-hero-form {
  min-height: 300px;
  background:
    linear-gradient(90deg, rgba(16, 16, 15, 0.94), rgba(16, 16, 15, 0.72)),
    url("/assets/hero-trade-counter-clean.png") center / cover;
}

.page-hero-image {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.8fr);
  min-height: 360px;
}

.page-hero-image img {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-image .page-hero-copy {
  grid-column: 1;
  grid-row: 1;
}

.page-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 66px 46px;
}

.page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: Oswald, Impact, sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.page-hero h1::after {
  display: block;
  width: 56px;
  height: 6px;
  margin: 24px 0 20px;
  background: var(--yellow);
  content: "";
}

.page-hero p {
  max-width: 620px;
  margin: 0;
  color: #f1f1eb;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.38;
}

.content-band {
  padding: 56px 46px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.content-band-white {
  background: var(--white);
}

.content-grid {
  max-width: 1440px;
  margin: 0 auto;
}

.content-grid-two {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: 44px;
  align-items: start;
}

.content-grid h2,
.form-intro h2,
.cta-band h2,
.lane-panel h2,
.contact-card h2 {
  margin: 0 0 16px;
  font-family: Oswald, Impact, sans-serif;
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: 0;
}

.content-grid p,
.form-intro p,
.lane-panel p,
.cta-band p,
.contact-card p {
  margin: 0;
  color: #3f3f3a;
}

.step-list,
.detail-list {
  display: grid;
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.step-list li,
.detail-list li {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) 1fr;
  gap: 20px;
  padding: 24px;
  background: var(--white);
}

.step-list strong,
.detail-list strong {
  font-family: Oswald, Impact, sans-serif;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.step-list span,
.detail-list span {
  color: #3f3f3a;
}

.callout-panel {
  padding: 30px;
  background: var(--ink);
  color: var(--white);
  border-left: 6px solid var(--yellow);
}

.callout-panel strong {
  display: block;
  margin-bottom: 12px;
  color: var(--yellow);
  font-family: Oswald, Impact, sans-serif;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.callout-panel p {
  color: #eeeeea;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: 42px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 56px 46px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.form-section-wide {
  align-items: start;
}

.form-intro {
  max-width: 470px;
}

.form-intro .check-list {
  margin-top: 24px;
}

.form-panel {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.compact-form {
  align-self: start;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #c9c9c1;
  border-radius: 4px;
  padding: 12px 14px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

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

.field input:focus,
.field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(255, 196, 0, 0.36);
}

.form-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.lane-panel {
  min-height: 280px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
}

.lane-panel .material-symbols-outlined,
.contact-card .material-symbols-outlined {
  display: block;
  margin-bottom: 22px;
  color: var(--yellow);
  font-size: 46px;
}

.lane-panel .button {
  margin-top: 24px;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-row li {
  min-height: 230px;
  padding: 28px;
  background: var(--white);
}

.process-row span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  background: var(--yellow);
  color: var(--ink);
  font-family: Oswald, Impact, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.process-row strong {
  display: block;
  margin-bottom: 10px;
  font-family: Oswald, Impact, sans-serif;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.process-row p {
  margin: 0;
  color: #3f3f3a;
}

.address-band {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 34px 46px;
  background: var(--yellow);
  color: var(--ink);
}

.address-band .material-symbols-outlined {
  font-size: 46px;
}

.address-band strong {
  display: block;
  font-family: Oswald, Impact, sans-serif;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.address-band p {
  margin: 8px 0 0;
  font-weight: 800;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-card {
  min-height: 240px;
  padding: 28px;
  background: var(--white);
}

.contact-card h2 {
  font-size: 27px;
}

.contact-card a {
  display: block;
  width: fit-content;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.8;
  text-decoration-color: rgba(255, 196, 0, 0.9);
  text-underline-offset: 4px;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 42px 46px;
  background: var(--ink);
  color: var(--white);
}

.cta-band h2 {
  margin-bottom: 10px;
  color: var(--white);
}

.cta-band p {
  color: #deded6;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.4fr 1fr 1.15fr;
  gap: 32px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 38px 46px;
}

.footer-grid > div,
.footer-grid form {
  min-width: 0;
}

.warehouse-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
}

.warehouse-card .material-symbols-outlined {
  color: var(--yellow);
  font-size: 38px;
}

.site-footer h3,
.warehouse-card strong {
  display: block;
  margin: 0 0 10px;
  color: var(--white);
  font-family: Oswald, Impact, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0 0 12px;
  color: #d6d6cf;
  font-size: 14px;
}

.site-footer a {
  display: block;
  width: fit-content;
  color: #eeeeea;
  font-size: 14px;
  line-height: 1.7;
  text-decoration-color: rgba(255, 196, 0, 0.65);
  text-underline-offset: 3px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--yellow);
}

.email-row {
  display: grid;
  grid-template-columns: 1fr 52px;
  height: 46px;
}

.email-row input {
  min-width: 0;
  border: 0;
  padding: 0 14px;
  outline: none;
}

.email-row button {
  border: 0;
  background: var(--yellow);
  color: var(--ink);
  cursor: pointer;
}

.form-status {
  display: block;
  min-height: 20px;
  margin-top: 8px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
}

.form-status-inline {
  min-height: 0;
  margin: 4px 0 16px;
  color: #8a6100;
}

.footer-note p {
  max-width: 270px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 46px 18px;
  color: #a5a59c;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom nav {
  display: flex;
  gap: 18px;
}

.footer-bottom a {
  color: #d7d7d0;
}

@media (max-width: 1180px) {
  .header-main {
    grid-template-columns: 240px minmax(220px, 1fr) auto;
  }

  .contact-cluster {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .primary-nav {
    display: none;
    flex-wrap: wrap;
    padding-bottom: 16px;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .nav-action {
    margin-left: 0;
  }

  .service-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-all {
    min-height: 120px;
  }

  .action-panels {
    grid-template-columns: 1fr;
  }

  .action-panels article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .page-hero-image {
    grid-template-columns: 1fr;
  }

  .page-hero-image img {
    position: absolute;
    inset: 0;
    opacity: 0.28;
  }

  .content-grid-two,
  .form-section {
    grid-template-columns: 1fr;
  }

  .process-row,
  .contact-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-intro {
    max-width: 720px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .header-main {
    position: relative;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 16px;
  }

  .menu-toggle {
    display: inline-grid !important;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 80;
    width: 48px;
    height: 48px;
    background: var(--yellow);
    color: var(--ink);
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .brand-logo {
    width: 172px;
    height: auto;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-text {
    font-size: 26px;
  }

  .access-banner {
    grid-column: 1 / -1;
    grid-row: 2;
    order: 0;
    min-width: 0;
  }

  .primary-nav {
    padding: 0 16px 16px;
  }

  .primary-nav a {
    flex: 1 1 100%;
    min-height: 44px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .primary-nav a.is-current {
    box-shadow: inset 4px 0 0 var(--yellow);
  }

  .hero {
    min-height: 560px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.78) 52%, rgba(0, 0, 0, 0.38) 100%);
  }

  .hero-content {
    padding: 48px 22px 54px;
  }

  .hero h1 {
    font-size: clamp(42px, 15vw, 62px);
  }

  .hero p {
    font-size: 19px;
  }

  .hero-actions,
  .panel-action-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .service-strip {
    grid-template-columns: 1fr;
  }

  .category-grid.is-product-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    min-height: 74px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .category-rail {
    padding: 26px 18px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-all {
    min-height: 112px;
  }

  .action-panels article {
    padding: 30px 22px;
  }

  .price-book {
    position: static;
    margin-top: 28px;
  }

  .surplus-panel {
    grid-template-columns: 1fr;
  }

  .surplus-panel img {
    height: 240px;
  }

  .proof-section,
  .specials-section {
    grid-template-columns: 1fr;
  }

  .proof-section {
    padding: 36px 22px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .specials-section article {
    padding: 32px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .page-hero-compact,
  .page-hero-form,
  .page-hero-image {
    min-height: 360px;
  }

  .page-hero-copy,
  .content-band,
  .form-section,
  .cta-band,
  .address-band {
    padding: 36px 22px;
  }

  .page-hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .page-hero p {
    font-size: 18px;
  }

  .step-list li,
  .detail-list li {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px;
  }

  .form-panel {
    padding: 22px;
  }

  .field-grid,
  .process-row,
  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .lane-panel,
  .contact-card,
  .process-row li {
    min-height: auto;
    padding: 24px;
  }

  .process-row span {
    margin-bottom: 22px;
  }

  .address-band {
    grid-template-columns: 44px 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 34px 22px;
  }

  .footer-bottom {
    flex-direction: column;
    padding: 14px 22px 20px;
  }
}

/* Yellow Supply design system refresh */
:root {
  --yellow: #ffd20a;
  --yellow-dark: #e8b900;
  --yellow-hover: #ffe04b;
  --ink: #171918;
  --ink-2: #292d2b;
  --ink-3: #59605c;
  --steel: #59605c;
  --muted: #59605c;
  --line: #d7dad5;
  --paper: #fafaf7;
  --concrete: #f1f2ef;
  --white: #ffffff;
  --shadow: 0 2px 8px rgba(23, 25, 24, 0.08);
  --font-sans: "Archivo", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", Consolas, monospace;
  --max-width: 1240px;
}

html {
  scroll-behavior: smooth;
}

body,
button,
input,
textarea,
select {
  font-family: var(--font-sans);
}

body {
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

h1,
h2,
h3,
.hero h1,
.page-hero h1,
.proof-section h2,
.specials-section h2,
.content-grid h2,
.form-intro h2,
.cta-band h2,
.lane-panel h2,
.contact-card h2,
.action-panels h2,
.category-card strong,
.category-all,
.step-list strong,
.detail-list strong,
.callout-panel strong,
.process-row strong,
.address-band strong,
.site-footer h3,
.warehouse-card strong,
.brand-text,
.price-book strong,
.price-book span,
.price-book small,
.access-banner a,
.primary-nav a,
.button {
  font-family: var(--font-sans);
  letter-spacing: 0;
}

.section-kicker,
.panel-label,
.category-status,
.form-note,
.field span,
.form-status,
.footer-bottom,
.contact-item small,
.access-banner span:not(.material-symbols-outlined),
.process-row span {
  font-family: var(--font-mono);
  letter-spacing: 0;
}

.material-symbols-outlined {
  display: none !important;
}

.site-header {
  background: var(--white);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

main [id],
.site-footer[id] {
  scroll-margin-top: 146px;
}

.header-main {
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  padding: 18px 24px;
}

.brand-logo {
  width: 220px;
  height: auto;
}

.access-banner {
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 64px;
  padding: 12px 14px 12px 18px;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
  border-radius: 6px;
}

.access-banner strong {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.access-banner span:not(.material-symbols-outlined) {
  color: #cdd3cf;
  font-size: 11px;
  line-height: 1.45;
}

.access-banner a {
  min-height: 38px;
  padding: 0 16px;
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--yellow);
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
}

.access-banner a:hover,
.access-banner a:focus-visible {
  background: var(--yellow-hover);
  border-color: var(--yellow-hover);
}

.contact-cluster {
  gap: 18px;
  justify-self: end;
}

.contact-item {
  grid-template-columns: 1fr;
  gap: 2px;
  color: var(--ink);
}

.contact-item strong {
  font-size: 14px;
  font-weight: 700;
}

.contact-item small {
  color: var(--steel);
  font-size: 11px;
}

.icon-button,
.menu-toggle {
  justify-self: end;
  min-width: 74px;
  width: auto;
  height: 42px;
  padding: 0 14px;
  border: 2px solid var(--ink);
  border-radius: 2px;
  background: var(--yellow);
  color: var(--ink);
}

.menu-toggle::after {
  content: "Menu";
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
}

.primary-nav {
  max-width: var(--max-width);
  padding: 0 24px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.primary-nav a {
  min-height: 54px;
  padding: 0 14px;
  color: var(--ink);
  border-right: 0;
  border-bottom: 3px solid transparent;
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
}

.shop-link {
  padding-left: 14px !important;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  background: var(--concrete);
  color: var(--ink);
  border-bottom-color: var(--yellow);
  outline: none;
}

.primary-nav a.is-current {
  background: #fffbe8;
  color: var(--ink);
  box-shadow: none;
  border-bottom-color: var(--yellow);
}

.nav-action {
  min-height: 42px !important;
  margin: 6px 0 6px auto;
  background: var(--yellow);
  color: var(--ink) !important;
  border: 2px solid var(--ink) !important;
  border-radius: 2px;
}

.nav-action:hover,
.nav-action:focus-visible {
  background: var(--yellow-hover) !important;
  border-color: var(--ink) !important;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  min-height: 560px;
  background: var(--yellow);
  border-bottom: 1px solid var(--line);
}

.hero::after {
  display: none;
}

.hero-image {
  position: relative;
  inset: auto;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.04);
}

.hero-content {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  max-width: none;
  margin: 0;
  padding: 72px 48px 72px max(24px, calc((100vw - 1240px) / 2 + 24px));
  background:
    linear-gradient(rgba(23, 25, 24, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 25, 24, 0.05) 1px, transparent 1px),
    var(--yellow);
  background-size: 64px 64px;
  color: var(--ink);
}

.hero h1 {
  max-width: 720px;
  font-size: 72px;
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1::after,
.page-hero h1::after {
  width: 64px;
  height: 5px;
  margin: 24px 0 22px;
  background: var(--ink);
}

.hero p {
  max-width: 560px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.hero-actions {
  gap: 12px;
}

.button {
  min-height: 48px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  background: var(--yellow);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--yellow-hover);
}

.button-secondary,
.button-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-outline:hover,
.button-outline:focus-visible {
  background: var(--ink);
  color: var(--white);
}

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

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--ink-2);
}

.service-strip {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--max-width);
  padding: 24px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.service-item {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 10px;
  min-height: 118px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.service-item:last-child {
  border-right: 1px solid var(--line);
}

.service-item::before,
.category-card::before,
.lane-panel::before,
.contact-card::before,
.proof-grid article::before {
  display: block;
  width: 7px;
  height: 7px;
  margin-bottom: 12px;
  background: var(--yellow);
  border-radius: 50%;
  content: "";
}

.service-item:hover,
.service-item:focus-visible {
  background: #fffbe8;
  border-color: var(--ink);
}

.service-item strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.service-item span:not(.material-symbols-outlined) {
  color: var(--steel);
  font-size: 13px;
}

.category-rail {
  padding: 72px 24px;
  background: var(--concrete);
  color: var(--ink);
}

.section-kicker {
  max-width: var(--max-width);
  color: var(--steel);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.category-grid,
.category-grid.is-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) 180px;
  gap: 16px;
  max-width: var(--max-width);
  border-left: 0;
}

.category-card,
.category-all {
  min-height: 190px;
  padding: 22px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.category-card {
  justify-content: flex-start;
  gap: 10px;
}

.category-card strong {
  font-size: 21px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: none;
}

.category-card small {
  color: var(--steel);
  font-size: 14px;
  line-height: 1.45;
}

.category-card:hover,
.category-card:focus-visible,
.category-card.is-active {
  background: var(--white);
  border-color: var(--ink);
  box-shadow: inset 0 -5px 0 var(--yellow);
}

.category-all {
  justify-content: space-between;
  background: var(--ink);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
}

.category-all::after {
  color: var(--yellow);
  content: "->";
  font-family: var(--font-mono);
}

.category-status {
  max-width: var(--max-width);
  color: var(--steel);
  font-size: 12px;
}

.action-panels {
  grid-template-columns: 1fr 0.95fr 1.3fr;
  gap: 16px;
  max-width: var(--max-width);
  margin: 64px auto;
  padding: 0 24px;
  background: transparent;
  border-bottom: 0;
}

.action-panels article {
  min-height: 0;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.action-panels article:last-child {
  border-right: 1px solid var(--line);
}

.panel-label {
  color: var(--steel);
  font-size: 12px;
  font-weight: 600;
}

.action-panels h2,
.content-grid h2,
.form-intro h2,
.cta-band h2,
.lane-panel h2,
.contact-card h2 {
  font-size: 32px;
  line-height: 1.12;
  font-weight: 700;
}

.action-panels p,
.content-grid p,
.form-intro p,
.lane-panel p,
.cta-band p,
.contact-card p,
.proof-section p,
.specials-section p {
  color: var(--steel);
}

.check-list li {
  padding-left: 18px;
  color: var(--ink-2);
}

.check-list li::before {
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}

.check-list li::after {
  display: none;
}

.price-book {
  background: var(--ink);
  color: var(--white);
  border: 1px solid #3f4642;
  border-bottom: 6px solid var(--yellow);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.price-book span {
  color: var(--white);
}

.surplus-panel {
  background: var(--concrete);
}

.surplus-panel img,
.page-hero-image img {
  border: 1px solid rgba(23, 25, 24, 0.14);
  filter: saturate(0.9) contrast(1.03);
}

.proof-section {
  grid-template-columns: 0.9fr 1.35fr;
  gap: 40px;
  max-width: var(--max-width);
  padding: 72px 24px;
  background: var(--paper);
}

.proof-section h2,
.specials-section h2 {
  font-size: 40px;
  line-height: 1.05;
  font-weight: 700;
}

.proof-grid,
.contact-card-grid,
.process-row {
  gap: 16px;
  background: transparent;
  border: 0;
}

.proof-grid article,
.contact-card,
.lane-panel,
.process-row li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.proof-grid h3 {
  font-family: var(--font-sans);
  font-size: 22px;
  line-height: 1.1;
  text-transform: none;
}

.page-hero {
  background: var(--yellow);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.page-hero-compact,
.page-hero-form {
  min-height: 320px;
  background:
    linear-gradient(rgba(23, 25, 24, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 25, 24, 0.05) 1px, transparent 1px),
    var(--yellow);
  background-size: 64px 64px;
}

.page-hero-image {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
  background: var(--yellow);
}

.page-hero-image .page-hero-copy {
  max-width: none;
  margin: 0;
  padding-left: max(24px, calc((100vw - 1240px) / 2 + 24px));
}

.page-hero h1 {
  max-width: 780px;
  color: var(--ink);
  font-size: 56px;
  line-height: 0.98;
  font-weight: 800;
}

.page-hero p {
  max-width: 620px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.content-band {
  padding: 72px 24px;
  background: var(--concrete);
}

.content-band-white {
  background: var(--white);
}

.content-grid,
.form-section,
.cta-band,
.address-band,
.footer-grid,
.footer-bottom {
  max-width: var(--max-width);
}

.content-grid-two {
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: 32px;
}

.step-list,
.detail-list {
  gap: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.step-list li,
.detail-list li {
  background: var(--white);
}

.step-list strong,
.detail-list strong {
  font-size: 20px;
  line-height: 1.1;
  text-transform: none;
}

.callout-panel {
  padding: 32px;
  background: var(--ink);
  color: var(--white);
  border-left: 0;
  border-radius: 12px;
}

.callout-panel strong {
  color: var(--yellow);
  font-size: 26px;
  text-transform: none;
}

.callout-panel p {
  color: #d8ddd8;
}

.form-section {
  padding: 72px 24px;
  background: var(--paper);
}

.form-panel {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: none;
}

.field span {
  color: var(--steel);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.field input,
.field textarea {
  min-height: 48px;
  border: 1px solid #c8cec8;
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(255, 210, 10, 0.42);
}

.form-note {
  color: var(--steel);
  font-size: 12px;
}

.process-row span {
  border-radius: 2px;
  background: var(--yellow);
  color: var(--ink);
}

.address-band {
  display: block;
  margin: 0 auto;
  padding: 30px 46px;
  background: var(--ink);
  color: var(--white);
  border: 1px solid #3f4642;
}

.address-band strong {
  color: var(--white);
  font-size: 28px;
  text-transform: none;
}

.address-band p {
  color: #d8ddd8;
  font-size: 18px;
  font-weight: 600;
}

.site-footer {
  background: var(--ink);
}

.footer-grid {
  grid-template-columns: 1.1fr 1fr 1.3fr 1fr 1.1fr;
  padding: 40px 24px;
}

.warehouse-card {
  grid-template-columns: 1fr;
  padding-left: 18px;
  border-left: 4px solid var(--yellow);
}

.site-footer h3,
.warehouse-card strong {
  font-size: 15px;
  font-weight: 700;
  text-transform: none;
}

.site-footer a {
  color: #eef2ee;
  text-decoration-color: var(--yellow);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--yellow);
}

.footer-bottom {
  color: #aeb7b1;
}

@media (max-width: 1180px) {
  .header-main {
    grid-template-columns: auto minmax(0, 1fr);
    max-width: var(--max-width);
  }

  .primary-nav {
    max-width: var(--max-width);
  }

  .service-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid,
  .category-grid.is-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-all {
    min-height: 132px;
  }

  .action-panels {
    grid-template-columns: 1fr;
    margin: 32px auto 56px;
  }

  .page-hero-image {
    grid-template-columns: 1fr;
  }

  .page-hero-image img {
    position: relative;
    inset: auto;
    grid-column: 1;
    grid-row: 2;
    height: 320px;
    opacity: 1;
  }

  .page-hero-image .page-hero-copy {
    grid-column: 1;
    grid-row: 1;
    padding-left: 24px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-content {
    grid-column: 1;
    grid-row: 1;
    padding: 56px 24px;
  }

  .hero-image {
    grid-column: 1;
    grid-row: 2;
    min-height: 300px;
    height: 300px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .proof-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    position: static;
  }

  main [id],
  .site-footer[id] {
    scroll-margin-top: 24px;
  }

  .header-main {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    padding: 14px 16px;
  }

  .brand-logo {
    width: 164px;
  }

  .menu-toggle {
    position: static;
    top: auto;
    right: auto;
    z-index: auto;
    min-width: 74px;
    width: auto;
    height: 42px;
    background: var(--yellow);
    color: var(--ink);
  }

  .access-banner {
    grid-template-columns: 1fr;
    padding: 12px;
    border-radius: 6px;
  }

  .access-banner strong {
    font-size: 13px;
  }

  .access-banner span:not(.material-symbols-outlined) {
    font-size: 10px;
  }

  .access-banner a {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }

  .primary-nav {
    padding: 0 16px 16px;
    background: var(--white);
  }

  .primary-nav a {
    min-height: 44px;
    color: var(--ink);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav a.is-current {
    background: #fffbe8;
    box-shadow: none;
    border-left: 0;
    border-bottom-color: var(--yellow);
  }

  .nav-action {
    margin: 10px 0 0;
  }

  .hero-content {
    padding: 42px 22px 46px;
  }

  .hero-image {
    min-height: 250px;
    height: 250px;
    object-position: center;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.02;
  }

  .hero p {
    max-width: 100%;
    font-size: 17px;
  }

  .button {
    min-height: 48px;
  }

  .service-strip {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .service-item {
    min-height: 100px;
  }

  .category-rail,
  .content-band,
  .form-section,
  .proof-section {
    padding: 44px 22px;
  }

  .category-grid,
  .category-grid.is-product-grid,
  .proof-grid,
  .process-row,
  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-all {
    min-height: 126px;
  }

  .action-panels {
    padding: 0 22px;
  }

  .action-panels article,
  .form-panel,
  .lane-panel,
  .contact-card,
  .process-row li {
    padding: 24px;
  }

  .proof-section h2,
  .page-hero h1 {
    font-size: 40px;
  }

  .page-hero p {
    font-size: 17px;
  }

  .page-hero-copy,
  .cta-band,
  .address-band {
    padding: 44px 22px;
  }

  .page-hero-image img {
    height: 240px;
  }

  .content-grid-two,
  .form-section {
    grid-template-columns: 1fr;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 34px 22px;
  }
}
