:root {
  --color-jlr-blue: #3e6ae1;
  --color-pure-white: #ffffff;
  --color-off-white: #eeeeee;
  --color-parchment: #e5e3df;
  --color-light-border: #cccccc;
  --color-subtle-gray: #8e8e8e;
  --color-steel: #5c5e62;
  --color-charcoal: #393c41;
  --color-onyx: #171a20;
  --color-carbon: #000000;
  --shadow-sm: rgba(0, 0, 0, 0.16) 0 4px 16px 0;
  --font-display: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-text: Inter, "SF Pro Text", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --spacing-unit: 4px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-pure-white);
  color: var(--color-charcoal);
  font-family: var(--font-text);
  font-size: 14px;
  line-height: 1.43;
  text-rendering: geometricPrecision;
}

body.drawer-open,
body.search-open,
body.menu-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

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

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.aligncenter {
  margin-right: auto;
  margin-left: auto;
}

.alignleft {
  float: left;
  margin: 0 24px 16px 0;
}

.alignright {
  float: right;
  margin: 0 0 16px 24px;
}

.announcement {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 20px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.6);
  background: var(--color-pure-white);
  color: var(--color-steel);
  font-size: 12px;
  line-height: 1.2;
}

.announcement strong {
  color: var(--color-onyx);
  font-weight: 500;
}

.announcement a {
  color: var(--color-onyx);
  font-weight: 500;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: var(--header-height);
  align-items: center;
  gap: 24px;
  padding: 0 40px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.68);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: var(--color-onyx);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
}

.brand-mark {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-onyx);
  border-radius: var(--radius-md);
  background: var(--color-onyx);
  color: var(--color-pure-white);
}

.brand-word {
  white-space: nowrap;
}

.brand .custom-logo {
  width: auto;
  max-width: 180px;
  max-height: 40px;
}

.admin-bar .site-header {
  top: 32px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--color-charcoal);
  font-size: 14px;
  font-weight: 500;
}

.desktop-nav a {
  padding: 12px 0;
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--color-carbon);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button,
.quote-button {
  display: inline-flex;
  min-width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--color-onyx);
  transition: border-color 160ms ease, background 160ms ease;
}

.icon-button:hover,
.quote-button:hover {
  border-color: var(--color-light-border);
  background: var(--color-off-white);
}

.icon-button svg,
.quote-button svg,
.search-row svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.quote-button {
  gap: 8px;
  padding: 0 10px;
  font-weight: 500;
}

.quote-count {
  display: inline-flex;
  min-width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--color-jlr-blue);
  color: var(--color-pure-white);
  font-size: 11px;
}

.mobile-menu-button {
  display: none;
}

.mobile-nav {
  position: fixed;
  inset: calc(36px + var(--header-height)) 0 auto 0;
  z-index: 35;
  display: none;
  border-bottom: 1px solid var(--color-light-border);
  background: var(--color-pure-white);
  padding: 8px 24px 24px;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-off-white);
  color: var(--color-onyx);
  font-weight: 500;
}

.mobile-nav.is-open {
  display: block;
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: var(--color-onyx);
}

.hero picture,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0.72) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0.08) 56%, rgba(255, 255, 255, 0.02) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 500px;
  max-width: 680px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 56px 24px 132px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-steel);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.67;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-onyx);
  font-family: var(--font-display);
  font-weight: 500;
}

h1 {
  font-size: 48px;
  line-height: 1.17;
}

h2 {
  font-size: 40px;
  line-height: 1.2;
}

h3 {
  font-size: 20px;
  line-height: 1.4;
}

.hero-copy {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--color-charcoal);
  font-size: 17px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  border-color: var(--color-jlr-blue);
  background: var(--color-jlr-blue);
  color: var(--color-pure-white);
}

.button-primary:hover {
  background: #3159c9;
}

.button-secondary {
  border-color: var(--color-onyx);
  background: rgba(255, 255, 255, 0.54);
  color: var(--color-onyx);
}

.button-secondary:hover {
  background: var(--color-pure-white);
}

.hero-metrics {
  position: absolute;
  right: 40px;
  bottom: 32px;
  left: 40px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(204, 204, 204, 0.72);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
}

.hero-metrics span {
  display: flex;
  min-height: 64px;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 12px 20px;
  border-right: 1px solid rgba(204, 204, 204, 0.72);
  color: var(--color-steel);
}

.hero-metrics span:last-child {
  border-right: 0;
}

.hero-metrics strong {
  color: var(--color-onyx);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
}

.section-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.finder {
  border-bottom: 1px solid var(--color-light-border);
  background: var(--color-pure-white);
}

.finder-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1.4fr);
  gap: 32px;
  align-items: center;
  padding: 32px 0;
}

.finder h2 {
  max-width: 420px;
  font-size: 28px;
  line-height: 1.29;
}

.finder-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
}

label {
  display: grid;
  gap: 8px;
}

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

label span {
  color: var(--color-steel);
  font-size: 12px;
  font-weight: 500;
}

select,
input,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-md);
  background: var(--color-pure-white);
  color: var(--color-onyx);
  padding: 10px 12px;
  outline: none;
}

select:focus,
input:focus,
textarea:focus {
  border-color: var(--color-jlr-blue);
  box-shadow: 0 0 0 3px rgba(62, 106, 225, 0.12);
}

.models,
.catalog,
.categories,
.operations,
.contact-band {
  padding: 72px 0;
}

.models,
.categories,
.factory-proof {
  background: var(--color-off-white);
}

.section-heading {
  display: grid;
  max-width: 720px;
  gap: 12px;
  margin-bottom: 32px;
}

.section-heading.compact {
  max-width: 620px;
  margin-bottom: 0;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--color-steel);
  font-size: 14px;
  line-height: 1.6;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.model-tile {
  display: grid;
  min-height: 188px;
  align-content: end;
  gap: 8px;
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.88)),
    var(--color-pure-white);
  padding: 24px;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.model-tile:hover {
  border-color: var(--color-onyx);
  background: var(--color-pure-white);
  transform: translateY(-2px);
}

.model-tile span {
  color: var(--color-jlr-blue);
  font-weight: 500;
}

.model-tile strong {
  color: var(--color-onyx);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.model-tile small {
  color: var(--color-steel);
  font-size: 12px;
}

.catalog-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.segmented {
  display: inline-flex;
  min-height: 44px;
  flex-wrap: wrap;
  gap: 4px;
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-md);
  background: var(--color-pure-white);
  padding: 4px;
}

@media (min-width: 821px) {
  .segmented {
    flex-wrap: nowrap;
  }
}

.segmented button {
  min-height: 34px;
  border: 0;
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--color-steel);
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
}

.segmented button:hover,
.segmented button.is-active {
  background: var(--color-onyx);
  color: var(--color-pure-white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  display: grid;
  min-width: 0;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-lg);
  background: var(--color-pure-white);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.product-card:hover {
  border-color: var(--color-onyx);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.product-card.is-hidden {
  display: none;
}

.filter-empty {
  display: none;
  margin: 20px 0 0;
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-lg);
  background: var(--color-pure-white);
  padding: 18px;
  color: var(--color-steel);
}

.filter-empty.is-visible {
  display: block;
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-off-white);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.025);
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: var(--radius-md);
  background: rgba(23, 26, 32, 0.88);
  color: var(--color-pure-white);
  padding: 4px 8px;
  font-size: 11px;
  line-height: 1.2;
}

.product-body {
  display: grid;
  gap: 10px;
  padding: 18px 18px 16px;
}

.product-kicker {
  margin: 0;
  color: var(--color-steel);
  font-size: 12px;
  font-weight: 500;
}

.product-body h3 {
  min-height: 56px;
  font-size: 20px;
  overflow-wrap: anywhere;
}

.product-body p:not(.product-kicker) {
  margin: 0;
  color: var(--color-steel);
}

.product-body dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 4px 0 0;
}

.product-body dl div {
  display: grid;
  gap: 2px;
  border-top: 1px solid var(--color-off-white);
  padding-top: 8px;
}

.product-body dt {
  color: var(--color-subtle-gray);
  font-size: 11px;
}

.product-body dd {
  margin: 0;
  color: var(--color-onyx);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.card-action {
  min-height: 44px;
  border: 0;
  border-top: 1px solid var(--color-light-border);
  background: var(--color-pure-white);
  color: var(--color-onyx);
  font-weight: 500;
  transition: background 160ms ease, color 160ms ease;
}

.card-action:hover {
  background: var(--color-jlr-blue);
  color: var(--color-pure-white);
}

.category-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.category-matrix a {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-md);
  background: var(--color-pure-white);
  padding: 12px;
  color: var(--color-charcoal);
  font-weight: 500;
}

.category-matrix a:hover {
  border-color: var(--color-onyx);
}

.category-matrix span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--color-off-white);
  color: var(--color-onyx);
}

.operations {
  background: var(--color-pure-white);
}

.operations-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 56px;
  align-items: start;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.process-list div {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--color-light-border);
  padding-top: 18px;
}

.process-list span {
  color: var(--color-jlr-blue);
  font-weight: 500;
}

.process-list strong {
  color: var(--color-onyx);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
}

.process-list p {
  margin: 0;
  color: var(--color-steel);
}

.contact-band {
  border-top: 1px solid var(--color-light-border);
  border-bottom: 1px solid var(--color-light-border);
  background: var(--color-onyx);
  color: var(--color-pure-white);
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.contact-band h2,
.contact-band .eyebrow {
  color: var(--color-pure-white);
}

.contact-band h2 {
  max-width: 720px;
}

.site-footer {
  background: var(--color-pure-white);
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(160px, 0.6fr));
  gap: 32px;
}

.footer-grid p {
  max-width: 420px;
  color: var(--color-steel);
}

.footer-grid div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid strong {
  color: var(--color-onyx);
  font-weight: 500;
}

.footer-grid a:not(.brand) {
  color: var(--color-steel);
}

.drawer,
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  background: rgba(23, 26, 32, 0.42);
}

.drawer.is-open,
.search-overlay.is-open {
  display: block;
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: min(460px, 100%);
  height: 100%;
  grid-template-rows: auto 1fr auto;
  background: var(--color-pure-white);
  box-shadow: rgba(0, 0, 0, 0.22) 0 24px 60px;
}

.drawer-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--color-light-border);
  padding: 24px;
}

.drawer-header h2 {
  font-size: 28px;
  line-height: 1.29;
}

.quote-list {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow-y: auto;
  padding: 18px 24px;
}

.empty-state {
  margin: 0;
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-md);
  background: var(--color-off-white);
  color: var(--color-steel);
  padding: 16px;
}

.quote-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-md);
  padding: 12px;
}

.quote-item strong {
  color: var(--color-onyx);
  font-weight: 500;
}

.quote-item span {
  color: var(--color-steel);
  font-size: 12px;
}

.quote-item button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-md);
  background: var(--color-pure-white);
  color: var(--color-onyx);
}

.quote-form {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--color-light-border);
  padding: 18px 24px 24px;
}

textarea {
  resize: vertical;
}

.search-panel {
  width: min(760px, calc(100% - 32px));
  margin: 84px auto 0;
  border-radius: var(--radius-lg);
  background: var(--color-pure-white);
  padding: 16px;
  box-shadow: rgba(0, 0, 0, 0.22) 0 24px 60px;
}

.search-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.search-row input {
  border: 0;
  min-height: 44px;
  padding: 8px;
}

.search-row input:focus {
  box-shadow: none;
}

.search-row button {
  min-height: 40px;
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-md);
  background: var(--color-pure-white);
  color: var(--color-onyx);
  padding: 8px 12px;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--color-off-white);
  margin-top: 12px;
  padding-top: 12px;
}

.quick-links a {
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  color: var(--color-steel);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: none;
  max-width: 320px;
  border-radius: var(--radius-md);
  background: var(--color-onyx);
  color: var(--color-pure-white);
  padding: 12px 14px;
  box-shadow: var(--shadow-sm);
}

.toast.is-visible {
  display: block;
}

.desktop-nav a[aria-current="page"] {
  color: var(--color-carbon);
}

.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: end;
  overflow: hidden;
}

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

.page-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.2)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.86));
}

.page-hero-dark .page-hero-shade {
  background:
    linear-gradient(90deg, rgba(23, 26, 32, 0.92), rgba(23, 26, 32, 0.62), rgba(23, 26, 32, 0.28)),
    linear-gradient(180deg, rgba(23, 26, 32, 0.22), rgba(23, 26, 32, 0.88));
}

.page-hero-dark,
.page-hero-dark h1,
.page-hero-dark .eyebrow,
.page-hero-dark .breadcrumb,
.page-hero-dark .breadcrumb a {
  color: var(--color-pure-white);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 720px;
  gap: 12px;
  padding: 96px 0 64px;
}

.page-hero-content p:not(.eyebrow, .breadcrumb),
.body-copy {
  max-width: 680px;
  margin: 0;
  color: var(--color-steel);
  font-size: 14px;
  line-height: 1.6;
}

.page-hero-dark .page-hero-content p:not(.eyebrow, .breadcrumb) {
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumb {
  margin: 0 0 6px;
  color: var(--color-steel);
  font-size: 12px;
}

.breadcrumb a {
  color: inherit;
}

.breadcrumb a:hover,
.text-link:hover {
  color: var(--color-carbon);
}

.content-section {
  padding: 72px 0;
}

.content-section.muted,
.muted {
  background: var(--color-off-white);
}

.page-intro h1,
.article-head h1,
.detail-panel h1,
.page-hero h1 {
  font-size: 48px;
  line-height: 1.17;
}

.sidebar-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 16px;
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-lg);
  background: var(--color-pure-white);
  padding: 18px;
}

.mini-stat {
  display: grid;
  gap: 2px;
  border-top: 1px solid var(--color-off-white);
  padding-top: 14px;
}

.mini-stat strong {
  color: var(--color-onyx);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.29;
}

.mini-stat span {
  color: var(--color-steel);
  font-size: 12px;
}

.product-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-lg);
  background: var(--color-pure-white);
}

.sku-table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
}

.sku-table th,
.sku-table td {
  border-bottom: 1px solid var(--color-off-white);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.sku-table th {
  color: var(--color-steel);
  font-size: 12px;
  font-weight: 500;
}

.sku-table td {
  color: var(--color-onyx);
  overflow-wrap: anywhere;
}

.sku-table tr:last-child td {
  border-bottom: 0;
}

.product-detail {
  padding: 64px 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 48px;
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 12px;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  background: var(--color-off-white);
  object-fit: cover;
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.thumb-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-md);
  object-fit: cover;
}

.detail-panel {
  display: grid;
  gap: 18px;
}

.detail-summary {
  margin: 0;
  color: var(--color-steel);
  font-size: 17px;
  line-height: 1.5;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.spec-grid div,
.info-card {
  display: grid;
  gap: 8px;
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-lg);
  background: var(--color-pure-white);
  padding: 18px;
}

.spec-grid dt,
.info-card span {
  color: var(--color-steel);
  font-size: 12px;
}

.spec-grid dd {
  margin: 0;
  color: var(--color-onyx);
  font-weight: 500;
}

.product-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 48px;
  align-items: start;
}

.info-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.info-card-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card strong {
  color: var(--color-onyx);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.info-card p {
  margin: 0;
  color: var(--color-steel);
}

.link-card {
  transition: border-color 160ms ease, transform 160ms ease;
}

.link-card:hover {
  border-color: var(--color-onyx);
  transform: translateY(-2px);
}

.document-list {
  display: grid;
  gap: 10px;
}

.document-list a {
  display: grid;
  grid-template-columns: minmax(160px, 0.48fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-lg);
  background: var(--color-pure-white);
  padding: 16px 18px;
  transition: border-color 160ms ease, transform 160ms ease;
}

.document-list a:hover {
  border-color: var(--color-onyx);
  transform: translateY(-1px);
}

.document-list strong {
  color: var(--color-onyx);
  font-weight: 500;
}

.document-list span {
  color: var(--color-steel);
}

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

.download-card {
  display: grid;
  min-height: 264px;
  align-content: start;
  gap: 12px;
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-lg);
  background: var(--color-pure-white);
  padding: 20px;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.download-card:hover {
  border-color: var(--color-onyx);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.download-card > span {
  width: fit-content;
  border-radius: var(--radius-md);
  background: var(--color-off-white);
  color: var(--color-onyx);
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
}

.download-card strong {
  color: var(--color-onyx);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.download-card p {
  margin: 0;
  color: var(--color-steel);
}

.download-card .button {
  align-self: end;
  margin-top: auto;
}

.status-page {
  display: flex;
  min-height: calc(100vh - 108px);
  align-items: center;
  border-bottom: 1px solid var(--color-light-border);
  background:
    linear-gradient(180deg, rgba(238, 238, 238, 0.42), rgba(255, 255, 255, 0.92)),
    var(--color-pure-white);
  padding: 88px 0;
}

.status-page.not-found {
  background:
    linear-gradient(180deg, rgba(23, 26, 32, 0.06), rgba(255, 255, 255, 0.94)),
    var(--color-pure-white);
}

.status-inner {
  display: grid;
  max-width: 760px;
  gap: 16px;
  justify-items: start;
}

.status-inner h1 {
  font-size: 48px;
  line-height: 1.17;
}

.status-inner p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--color-steel);
  font-size: 17px;
  line-height: 1.55;
}

.status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.model-grid-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.model-feature {
  min-height: 240px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 56px;
  align-items: start;
}

.page-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-lg);
  background: var(--color-pure-white);
  padding: 24px;
}

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

.process-list.single {
  grid-template-columns: 1fr;
  margin-top: 24px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-methods div {
  display: grid;
  gap: 2px;
  border-top: 1px solid var(--color-light-border);
  padding-top: 12px;
}

.contact-methods strong {
  color: var(--color-onyx);
  font-weight: 500;
}

.contact-methods span {
  color: var(--color-steel);
}

.panel-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  margin-top: 20px;
  object-fit: cover;
}

.factory-proof,
.factory-story {
  overflow: hidden;
}

.factory-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.factory-grid img {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.factory-grid img:first-child {
  height: 420px;
  grid-row: span 2;
}

.support-media-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.support-media-grid img {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.blog-grid {
  display: grid;
  gap: 32px;
}

.blog-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 32px;
  align-items: center;
}

.blog-feature img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.blog-feature div {
  display: grid;
  gap: 12px;
}

.blog-feature p:not(.eyebrow),
.resource-card p {
  margin: 0;
  color: var(--color-steel);
}

.text-link {
  color: var(--color-onyx);
  font-weight: 500;
}

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

.resource-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-lg);
  background: var(--color-pure-white);
}

.resource-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.resource-card div {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.resource-card span {
  color: var(--color-steel);
  font-size: 12px;
}

.article-hero {
  display: grid;
  gap: 32px;
  padding: 72px 0 0;
}

.article-head {
  display: grid;
  max-width: 820px;
  gap: 12px;
}

.article-head p:not(.eyebrow, .breadcrumb) {
  margin: 0;
  color: var(--color-steel);
  font-size: 17px;
  line-height: 1.5;
}

.article-hero > img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 56px;
  align-items: start;
}

.article-meta {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--color-light-border);
  padding-top: 16px;
}

.article-meta span {
  color: var(--color-steel);
  font-size: 12px;
}

.article-meta strong {
  color: var(--color-onyx);
  font-weight: 500;
}

.article-body {
  display: grid;
  gap: 18px;
}

.article-body h2 {
  font-size: 28px;
  line-height: 1.29;
}

.article-body p {
  margin: 0 0 12px;
  color: var(--color-charcoal);
  font-size: 17px;
  line-height: 1.65;
}

.navigation.pagination {
  margin-top: 32px;
}

.search-secondary-heading {
  margin-top: 48px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-numbers {
  display: inline-flex;
  min-width: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-md);
  background: var(--color-pure-white);
  color: var(--color-onyx);
  padding: 8px 12px;
}

.page-numbers.current {
  border-color: var(--color-onyx);
  background: var(--color-onyx);
  color: var(--color-pure-white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 48px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-lg);
  background: var(--color-pure-white);
  padding: 16px 18px;
}

.faq-list summary {
  color: var(--color-onyx);
  cursor: pointer;
  font-weight: 500;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--color-steel);
}

@media (max-width: 1100px) {
  .site-header {
    padding: 0 24px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .finder-inner,
  .operations-inner {
    grid-template-columns: 1fr;
  }

  .finder-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .finder-form .button {
    grid-column: 1 / -1;
  }

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

  .sidebar-layout,
  .detail-grid,
  .product-info-grid,
  .contact-layout,
  .blog-feature,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .filter-panel,
  .article-meta {
    position: static;
  }

  .info-card-grid,
  .resource-list,
  .download-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 64px;
  }

  .announcement {
    min-height: 32px;
    gap: 8px;
    padding: 6px 12px;
    font-size: 11px;
  }

  .announcement span:last-child {
    display: none;
  }

  .announcement strong {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 0 16px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .brand-word {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .admin-bar .site-header {
    top: 46px;
  }

  .quote-button span:not(.quote-count) {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .hero img {
    object-position: center top;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.36) 44%, rgba(255, 255, 255, 0.9) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.04));
  }

  .hero-content {
    min-height: 440px;
    padding: 48px 20px 156px;
  }

  h1 {
    font-size: 40px;
    line-height: 1.2;
  }

  h2 {
    font-size: 28px;
    line-height: 1.29;
  }

  .hero-copy {
    font-size: 14px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 160px;
  }

  .hero-metrics {
    right: 16px;
    bottom: 16px;
    left: 16px;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-metrics span {
    min-height: 56px;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(204, 204, 204, 0.72);
    font-size: 12px;
  }

  .hero-metrics span:nth-child(2n) {
    border-right: 0;
  }

  .hero-metrics span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .section-inner {
    width: min(100% - 32px, 680px);
  }

  .finder-inner,
  .models,
  .catalog,
  .categories,
  .operations,
  .contact-band {
    padding: 48px 0;
  }

  .finder-form,
  .model-grid,
  .model-grid-wide,
  .product-grid,
  .product-grid-three,
  .category-matrix,
  .process-list,
  .info-card-grid,
  .resource-list,
  .download-grid,
  .article-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 360px;
  }

  .page-hero-content {
    padding: 72px 0 48px;
  }

  .page-intro h1,
  .article-head h1,
  .detail-panel h1,
  .page-hero h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .content-section,
  .product-detail,
  .article-hero {
    padding: 48px 0;
  }

  .contact-layout,
  .product-info-grid,
  .faq-layout,
  .article-layout,
  .detail-grid {
    gap: 32px;
  }

  .form-row,
  .spec-grid,
  .factory-grid,
  .support-media-grid {
    grid-template-columns: 1fr;
  }

  .document-list a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .download-card {
    min-height: 0;
  }

  .status-page {
    min-height: calc(100vh - 96px);
    padding: 64px 0;
  }

  .status-inner h1 {
    font-size: 40px;
    line-height: 1.2;
  }

  .status-inner p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.6;
  }

  .support-media-grid img {
    height: 180px;
  }

  .factory-grid img,
  .factory-grid img:first-child {
    height: 220px;
    grid-row: auto;
  }

  .catalog-top,
  .contact-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .segmented {
    width: 100%;
  }

  .segmented button {
    flex: 1 1 auto;
  }

  .product-card {
    grid-template-columns: 128px minmax(0, 1fr);
    grid-template-rows: 1fr auto;
  }

  .product-media {
    grid-row: 1 / 3;
    aspect-ratio: auto;
    min-height: 100%;
  }

  .product-body {
    padding: 14px;
  }

  .product-body h3 {
    min-height: auto;
    font-size: 17px;
    line-height: 1.28;
  }

  .product-body p:not(.product-kicker) {
    display: none;
  }

  .product-body dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .card-action {
    grid-column: 2;
    border-left: 1px solid var(--color-light-border);
  }

  .badge {
    top: 8px;
    left: 8px;
    max-width: calc(100% - 16px);
  }
}

@media (max-width: 520px) {
  .header-actions {
    gap: 4px;
  }

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

  .brand-word {
    max-width: 106px;
  }

  .hero {
    min-height: 640px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .page-intro h1,
  .article-head h1,
  .detail-panel h1,
  .page-hero h1 {
    font-size: 32px;
  }

  .hero-content {
    justify-content: start;
    padding-top: 58px;
  }

  .button {
    width: 100%;
  }

  .product-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .product-body dl {
    grid-template-columns: 1fr;
  }

  .product-body dl div {
    display: flex;
    justify-content: space-between;
    gap: 8px;
  }

  .drawer-panel {
    width: 100%;
  }

  .search-panel {
    margin-top: 56px;
  }

  .toast {
    right: 16px;
    bottom: 16px;
    left: 16px;
    max-width: none;
  }
}
