@font-face {
  font-family: "Source Sans 3";
  src: url("assets/fonts/source-sans-3-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  color-scheme: light dark;
  --brand: oklch(0.56 0.22 27);
  --brand-hover: oklch(0.49 0.22 27);
  --on-brand: oklch(0.985 0.003 265);
  --canvas: oklch(0.968 0.01 72);
  --surface: oklch(0.944 0.012 72);
  --surface-strong: oklch(0.918 0.013 72);
  --ink: oklch(0.19 0.015 265);
  --muted: oklch(0.46 0.018 265);
  --line: oklch(0.842 0.012 72);
  --image-surface: oklch(0.992 0.002 265);
  --ember: oklch(0.72 0.16 55);
  --scrim: oklch(0.08 0.01 265 / 0.58);
  --focus: oklch(0.62 0.22 27);
  --shadow-dialog: 0 24px 64px oklch(0.12 0.02 265 / 0.24);
  --radius-control: 8px;
  --radius-frame: 12px;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --page-gutter: clamp(1rem, 3.6vw, 4.5rem);
  --max-width: 1600px;
  --header-height: 72px;
  --z-sticky: 20;
  --z-scrim: 40;
  --z-sheet: 50;
  --z-modal: 70;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100dvh;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Source Sans 3", "Aptos", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.filter-is-open {
  overflow: hidden;
}

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

button,
a,
select,
input {
  touch-action: manipulation;
}

button,
a,
select {
  cursor: pointer;
}

button {
  border: 0;
}

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

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

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 600;
  line-height: 0.98;
  text-wrap: balance;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: var(--space-4);
  top: var(--space-4);
  z-index: calc(var(--z-modal) + 10);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-control);
  background: var(--ink);
  color: var(--canvas);
  transform: translateY(-180%);
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  height: var(--header-height);
  border-bottom: 1px solid rgb(255 255 255 / 0.11);
  background: #0a0b0e;
  color: #f4f5f7;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.5rem);
  width: min(calc(100% - 2 * var(--page-gutter)), var(--max-width));
  height: 100%;
  margin-inline: auto;
}

.brand-link {
  flex: 0 0 auto;
  width: 114px;
  border-radius: 2px;
  overflow: hidden;
}

.brand-link img {
  width: 100%;
  height: auto;
}

.primary-nav,
.social-nav,
.site-footer nav {
  display: flex;
  align-items: center;
}

.primary-nav {
  gap: clamp(1rem, 2.2vw, 2.25rem);
  margin-right: auto;
}

.primary-nav a {
  position: relative;
  min-height: 44px;
  padding-block: 11px;
  color: rgb(244 245 247 / 0.62);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: #ffffff;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.social-nav {
  gap: var(--space-2);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 44px;
  padding: 0 var(--space-3);
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 999px;
  color: rgb(244 245 247 / 0.68);
  font-size: 0.875rem;
  font-weight: 600;
  transition: border-color 180ms ease-out, color 180ms ease-out, background-color 180ms ease-out;
}

.social-link:hover {
  border-color: #ed1c24;
  background: rgb(237 28 36 / 0.12);
  color: #ffffff;
}

.social-link img,
.icon-button img,
.filter-open img,
.search-input-wrap > img,
.quick-navigation img,
.quick-quote img,
.empty-state > img,
.image-missing > img {
  width: 20px;
  height: 20px;
}

.site-header .social-link img {
  filter: invert(1);
}

.intro {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(850px, calc(100dvh - var(--header-height)));
  border-bottom: 1px solid #25272e;
  background: #0a0b0e;
  color: #f4f5f7;
}

.intro::before,
.intro::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.intro::before {
  top: 0;
  bottom: 0;
  left: max(var(--page-gutter), calc((100% - 1600px) / 2));
  width: 1px;
  background: rgb(255 255 255 / 0.08);
}

.intro::after {
  top: 18%;
  right: 0;
  width: clamp(120px, 15vw, 260px);
  height: 1px;
  background: #ed1c24;
}

.intro-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
  width: min(calc(100% - 2 * var(--page-gutter)), 1500px);
  min-height: inherit;
  margin-inline: auto;
  padding-block: clamp(4rem, 7vw, 7rem);
}

.intro-copy {
  max-width: 800px;
  padding-left: clamp(1.5rem, 4vw, 4.5rem);
}

.intro-kicker {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  color: rgb(244 245 247 / 0.68);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.intro-edition {
  margin-left: auto;
  padding-left: var(--space-3);
  border-left: 1px solid rgb(255 255 255 / 0.18);
  color: rgb(244 245 247 / 0.42);
  white-space: nowrap;
}

.signal-dot {
  display: inline-block;
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ed1c24;
  box-shadow: 0 0 0 5px rgb(237 28 36 / 0.12);
}

.intro h1 {
  max-width: 8.5ch;
  color: #ffffff;
  font-size: clamp(4.8rem, 8.3vw, 8.5rem);
  letter-spacing: -0.035em;
  line-height: 0.78;
}

.intro h1 span {
  color: #ed1c24;
}

.intro-copy > p {
  max-width: 54ch;
  margin-top: clamp(2rem, 4vw, 3rem);
  color: rgb(244 245 247 / 0.66);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.intro-actions {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.intro-data {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  border-block: 1px solid rgb(255 255 255 / 0.12);
}

.intro-data span {
  position: relative;
  padding: 0.8rem 1.15rem 0.8rem 0;
  color: rgb(244 245 247 / 0.48);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-data span + span {
  padding-left: 1.15rem;
}

.intro-data span + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 3px;
  background: #ed1c24;
  transform: translateY(-50%);
}

.primary-action,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 var(--space-6);
  border-radius: var(--radius-control);
  background: var(--brand);
  color: var(--on-brand);
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 180ms ease-out, transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.intro .primary-action {
  margin-top: 0;
  border: 1px solid #ed1c24;
  background: #ed1c24;
  color: #ffffff;
}

.primary-action:hover,
.primary-button:hover {
  background: var(--brand-hover);
  transform: translateY(-1px);
}

.primary-action:active,
.primary-button:active {
  transform: translateY(1px);
}

.intro-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 650px);
}

.visual-rail,
.intro-visual figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  color: rgb(244 245 247 / 0.46);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-rail {
  margin-bottom: var(--space-3);
  padding-left: var(--space-4);
  border-left: 24px solid #ed1c24;
}

.visual-stage {
  position: relative;
  aspect-ratio: 1;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgb(255 255 255 / 0.2);
  background: #060709;
}

.visual-stage::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 3;
  border: 1px solid rgb(255 255 255 / 0.08);
  pointer-events: none;
}

.intro-frame {
  overflow: hidden;
  background: #0a0b0e;
}

.intro-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-frame-main {
  width: 100%;
  height: 100%;
}

.intro-frame-detail {
  position: absolute;
  right: clamp(1.5rem, 4vw, 3rem);
  bottom: clamp(1.5rem, 4vw, 3rem);
  z-index: 5;
  width: 34%;
  aspect-ratio: 1;
  border: 5px solid #0a0b0e;
  box-shadow: 0 16px 36px rgb(0 0 0 / 0.34);
}

.visual-status {
  position: absolute;
  top: clamp(1.5rem, 4vw, 3rem);
  left: clamp(1.5rem, 4vw, 3rem);
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-3);
  min-width: 168px;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgb(255 255 255 / 0.18);
  background: rgb(5 6 8 / 0.88);
  color: rgb(244 245 247 / 0.72);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-status span:last-child {
  color: #ed1c24;
  font-variant-numeric: tabular-nums;
}

.visual-axis,
.corner-mark {
  position: absolute;
  z-index: 4;
  pointer-events: none;
}

.visual-axis {
  background: rgb(255 255 255 / 0.16);
}

.visual-axis-x {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
}

.visual-axis-y {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.corner-mark {
  width: 18px;
  height: 18px;
  border-color: #ed1c24;
}

.corner-mark-nw {
  top: -1px;
  left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.corner-mark-ne {
  top: -1px;
  right: -1px;
  border-top: 2px solid;
  border-right: 2px solid;
}

.corner-mark-sw {
  bottom: -1px;
  left: -1px;
  border-bottom: 2px solid;
  border-left: 2px solid;
}

.corner-mark-se {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.intro-visual figcaption {
  margin-top: var(--space-3);
  padding-right: var(--space-4);
}

.intro-visual figcaption span:first-child {
  color: #ffffff;
  font-size: 1rem;
}

.catalog-section {
  width: min(calc(100% - 2 * var(--page-gutter)), var(--max-width));
  margin-inline: auto;
  padding-block: clamp(4rem, 8vw, 7rem) var(--space-24);
  border-top: 0;
}

.catalog-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.catalog-heading h2 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  letter-spacing: -0.02em;
}

.catalog-heading p {
  margin-top: var(--space-3);
  color: var(--muted);
  font-size: 1.0625rem;
}

.filter-open {
  display: none;
  align-items: center;
  gap: var(--space-2);
  min-height: 48px;
  padding: 0 var(--space-4);
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--surface);
  font-weight: 700;
}

.filter-count {
  min-width: 22px;
  padding-inline: 6px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--on-brand);
  font-size: 0.75rem;
  line-height: 22px;
  text-align: center;
}

.category-nav {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  overflow-x: auto;
  padding-bottom: var(--space-2);
  scrollbar-width: thin;
}

.category-button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 var(--space-4);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 650;
  white-space: nowrap;
  transition: border-color 180ms ease-out, background-color 180ms ease-out, color 180ms ease-out;
}

.category-button:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.category-button[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--canvas);
  box-shadow: inset 0 -2px 0 var(--ember);
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 220px;
  gap: var(--space-4);
  padding: var(--space-4);
  border-block: 1px solid var(--line);
}

.search-control,
.sort-control {
  display: grid;
  gap: var(--space-2);
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 650;
}

.search-input-wrap {
  position: relative;
  display: block;
}

.search-input-wrap > img {
  position: absolute;
  left: var(--space-4);
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  opacity: 0.72;
  pointer-events: none;
}

.search-control input,
.sort-control select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--canvas);
  color: var(--ink);
  font-size: 1rem;
}

.search-control input {
  padding: 0 var(--space-4) 0 48px;
}

.sort-control select {
  padding: 0 42px 0 var(--space-4);
}

.search-control input::placeholder {
  color: color-mix(in oklch, var(--muted) 92%, var(--ink));
}

.search-control input:hover,
.sort-control select:hover {
  border-color: var(--muted);
}

.search-control input:focus,
.sort-control select:focus {
  border-color: var(--brand);
}

.catalog-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  padding-top: var(--space-8);
}

.filter-panel {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + var(--space-6));
  max-height: calc(100dvh - var(--header-height) - 48px);
  overflow-y: auto;
  scrollbar-width: thin;
}

.filter-panel-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--line);
}

.filter-panel-header h3,
.results-header h3 {
  font-size: 1.55rem;
  line-height: 1.1;
}

.filter-panel-header p,
.results-header p {
  margin-top: var(--space-1);
  color: var(--muted);
  font-size: 0.875rem;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-control);
  background: transparent;
  transition: background-color 160ms ease-out;
}

.icon-button:hover {
  background: var(--surface-strong);
}

.filter-close {
  display: none;
}

.filter-group {
  min-inline-size: 0;
  margin: 0;
  padding-block: var(--space-6);
  border: 0;
  border-bottom: 1px solid var(--line);
}

.filter-group h4,
.filter-group legend {
  margin: 0 0 var(--space-3);
  padding: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.05rem;
}

.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;
}

.filter-options {
  display: grid;
  gap: var(--space-2);
}

.filter-option {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-2);
  min-height: 40px;
  color: var(--muted);
  cursor: pointer;
}

.filter-option:hover {
  color: var(--ink);
}

.filter-option input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--brand);
}

.filter-option-count {
  color: var(--muted);
  font-size: 0.8125rem;
  font-variant-numeric: tabular-nums;
}

.price-fields {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: var(--space-2);
}

.price-fields label {
  display: grid;
  gap: var(--space-1);
  color: var(--muted);
  font-size: 0.8125rem;
}

.price-fields input {
  width: 100%;
  min-height: 44px;
  padding: 0 var(--space-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--canvas);
}

.price-separator {
  padding-bottom: 10px;
  color: var(--muted);
}

.filter-actions {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: var(--space-6);
}

.text-button {
  min-height: 44px;
  padding-inline: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 160ms ease-out, text-decoration-color 160ms ease-out;
}

.text-button:hover {
  color: var(--ink);
  text-decoration-color: currentColor;
}

.apply-filters {
  display: none;
}

.filter-scrim {
  display: none;
}

.results {
  min-width: 0;
}

.results-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.results-header p {
  font-variant-numeric: tabular-nums;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.75rem, 3vw, 3.5rem) clamp(1rem, 2vw, 2rem);
}

.product-card {
  position: relative;
  z-index: 0;
  min-width: 0;
  --category-tint: oklch(0.965 0.006 265);
  transform-origin: center center;
}

.product-card-shadow {
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: auto;
  left: 8px;
  z-index: -1;
  aspect-ratio: 1;
  border-radius: var(--radius-frame);
  box-shadow: 0 22px 46px rgb(15 18 26 / 0.2);
  opacity: 0;
  pointer-events: none;
}

.product-card-surface {
  position: relative;
  z-index: 1;
  transform-origin: center center;
}

.product-card[data-group="Electronic"] {
  --category-tint: oklch(0.965 0.012 250);
}

.product-card[data-group="Disposable"] {
  --category-tint: oklch(0.97 0.012 95);
}

.product-card[data-group="Torch & Windproof"] {
  --category-tint: oklch(0.96 0.012 35);
}

.product-card[data-group="Creative & Gift"] {
  --category-tint: oklch(0.965 0.012 330);
}

.product-card[data-group="Oil"] {
  --category-tint: oklch(0.96 0.01 150);
}

.product-image-button {
  display: block;
  width: 100%;
  padding: 0;
  border-radius: var(--radius-frame);
  background: transparent;
  text-align: inherit;
  transform-origin: center center;
}

.product-image-frame,
.quick-image-frame {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid color-mix(in oklch, var(--line) 80%, var(--category-tint));
  border-radius: var(--radius-frame);
  background: color-mix(in oklch, var(--image-surface) 92%, var(--category-tint));
}

.product-image-frame {
  transition: border-color 220ms ease-out, background-color 220ms ease-out;
}

.product-image-button:hover .product-image-frame,
.product-image-button:focus-visible .product-image-frame {
  border-color: color-mix(in oklch, var(--brand) 56%, var(--line));
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease-out, transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-image.is-swapping {
  opacity: 0.78;
}

.image-missing {
  display: grid;
  place-items: center;
  align-content: center;
  gap: var(--space-3);
  width: 100%;
  height: 100%;
  padding: var(--space-6);
  color: var(--muted);
  text-align: center;
}

.image-missing[hidden] {
  display: none;
}

.product-meta {
  padding-top: var(--space-4);
}

.product-category,
.quick-category {
  margin-bottom: var(--space-2);
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 650;
}

.product-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: var(--space-3);
}

.product-name {
  overflow-wrap: anywhere;
  font-family: "Source Sans 3", "Aptos", sans-serif;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.25;
}

.product-model {
  margin-top: var(--space-1);
  color: var(--muted);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 0.9375rem;
  font-variant-numeric: tabular-nums;
}

.product-price {
  max-width: 12ch;
  color: var(--ink);
  font-size: 0.9375rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1.25;
  text-align: right;
  overflow-wrap: anywhere;
}

.quick-button {
  min-height: 44px;
  margin-top: var(--space-3);
  padding: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 4px;
  transition: color 160ms ease-out, text-decoration-color 160ms ease-out;
}

.quick-button:hover {
  color: var(--brand);
  text-decoration-color: currentColor;
}

.empty-state {
  display: grid;
  place-items: center;
  gap: var(--space-3);
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius-frame);
  padding: var(--space-8);
  text-align: center;
}

.empty-state[hidden] {
  display: none;
}

.empty-state > img {
  width: 30px;
  height: 30px;
  opacity: 0.68;
}

.empty-state h3 {
  font-size: 2rem;
}

.empty-state p {
  max-width: 42ch;
  color: var(--muted);
}

.empty-state .primary-button {
  margin-top: var(--space-3);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: clamp(3rem, 6vw, 6rem);
}

.page-button,
.page-ellipsis {
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  border-radius: var(--radius-control);
  font-variant-numeric: tabular-nums;
}

.page-button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  transition: border-color 160ms ease-out, background-color 160ms ease-out, color 160ms ease-out;
}

.page-button:hover:not(:disabled) {
  border-color: var(--ink);
  color: var(--ink);
}

.page-button[aria-current="page"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--canvas);
}

.page-button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.site-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-8);
  width: min(calc(100% - 2 * var(--page-gutter)), var(--max-width));
  margin-inline: auto;
  padding-block: var(--space-16);
  border-top: 1px solid var(--line);
}

.site-footer > div > img {
  width: 126px;
  height: auto;
}

.site-footer p {
  max-width: 42ch;
  margin-top: var(--space-4);
  color: var(--muted);
}

.site-footer nav {
  flex-wrap: wrap;
  justify-content: end;
  gap: var(--space-4) var(--space-6);
}

.site-footer a {
  min-height: 44px;
  padding-block: 11px;
  color: var(--muted);
  font-weight: 650;
}

.site-footer a:hover {
  color: var(--brand);
}

.quick-view {
  width: min(1180px, calc(100% - 2rem));
  max-width: none;
  max-height: min(880px, calc(100dvh - 2rem));
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background: var(--canvas);
  color: var(--ink);
  box-shadow: var(--shadow-dialog);
}

.quick-view::backdrop {
  background: var(--scrim);
}

.quick-view[open] {
  animation: dialog-enter 260ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes dialog-enter {
  from {
    opacity: 0.85;
    transform: translateY(10px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.quick-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  max-height: inherit;
  overflow: auto;
}

.quick-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  z-index: 2;
  background: color-mix(in oklch, var(--canvas) 92%, transparent);
}

.quick-media {
  padding: clamp(1rem, 3vw, 2.5rem);
  background: var(--surface);
}

.quick-image-frame {
  border: 0;
  background: var(--image-surface);
}

.quick-image-frame > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-thumbnails {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.quick-thumbnail {
  width: 76px;
  height: 76px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: var(--radius-control);
  background: var(--image-surface);
}

.quick-thumbnail[aria-pressed="true"] {
  border-color: var(--brand);
}

.quick-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-details {
  display: flex;
  flex-direction: column;
  padding: clamp(3.5rem, 6vw, 6rem) clamp(1.5rem, 4vw, 4.5rem) var(--space-8);
}

.quick-category {
  color: var(--brand);
}

.quick-details h2 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  letter-spacing: -0.02em;
}

.quick-model {
  margin-top: var(--space-2);
  color: var(--muted);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.25rem;
}

.quick-price {
  margin-top: var(--space-6);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}

.quick-price.is-tiered {
  font-size: 1rem;
  font-weight: 500;
}

.quick-price-label {
  display: block;
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 650;
}

.quick-price-list {
  display: grid;
  margin-top: var(--space-3);
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.quick-price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-2);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.35;
}

.quick-price-list strong {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 750;
  white-space: nowrap;
}

.quick-price-list li > span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.quick-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6) var(--space-8);
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--line);
}

.quick-specs dt {
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 650;
}

.quick-specs dd {
  margin-top: var(--space-1);
  font-weight: 650;
  overflow-wrap: anywhere;
}

#quick-size {
  overflow-wrap: normal;
  word-break: keep-all;
  white-space: nowrap;
}

.quick-quote {
  align-self: flex-start;
  gap: var(--space-2);
  margin-top: var(--space-8);
}

.quick-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: auto;
  padding-top: var(--space-8);
}

.quick-navigation button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-height: 44px;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 650;
}

.quick-navigation button:hover:not(:disabled) {
  color: var(--ink);
}

.quick-navigation button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

@media (max-width: 1279px) {
  .social-link span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .social-link {
    width: 44px;
    padding: 0;
  }

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

@media (max-width: 1023px) {
  .intro-shell {
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
    gap: var(--space-8);
  }

  .intro-copy {
    padding-left: var(--space-6);
  }

  .intro h1 {
    font-size: clamp(4.4rem, 8vw, 6.4rem);
  }

  .intro-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .intro-data span {
    flex: 1 0 50%;
  }

  .intro-data span:nth-child(3) {
    padding-left: 0;
  }

  .intro-data span:nth-child(3)::before {
    display: none;
  }

  .catalog-layout {
    display: block;
  }

  .filter-open {
    display: inline-flex;
  }

  .filter-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: var(--z-sheet);
    width: min(420px, calc(100% - 1.5rem));
    height: 100dvh;
    max-height: none;
    padding: var(--space-6);
    background: var(--canvas);
    box-shadow: -8px 0 30px oklch(0.08 0.01 265 / 0.18);
    visibility: hidden;
    transform: translateX(104%);
    transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 260ms;
  }

  .filter-panel.is-open {
    visibility: visible;
    transform: translateX(0);
    transition-delay: 0s;
  }

  .filter-close,
  .apply-filters {
    display: inline-grid;
  }

  .apply-filters {
    display: inline-flex;
  }

  .filter-scrim {
    position: fixed;
    inset: 0;
    z-index: var(--z-scrim);
    display: block;
    width: 100%;
    height: 100%;
    background: var(--scrim);
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease-out, visibility 0s linear 180ms;
  }

  .filter-scrim.is-visible {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }

  .quick-shell {
    grid-template-columns: 1fr 0.88fr;
  }
}

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

  body {
    font-size: 1rem;
  }

  .header-inner {
    gap: var(--space-3);
  }

  .brand-link {
    width: 96px;
    margin-right: auto;
  }

  .primary-nav {
    display: none;
  }

  .social-nav {
    gap: var(--space-1);
  }

  .intro {
    min-height: 0;
  }

  .intro-shell {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    padding-block: var(--space-12) var(--space-16);
  }

  .intro-copy {
    max-width: none;
    padding-left: 0;
  }

  .intro-kicker {
    margin-bottom: var(--space-8);
  }

  .intro h1 {
    max-width: 8.5ch;
    font-size: clamp(4.1rem, 19vw, 6.4rem);
  }

  .intro-data {
    display: none;
  }

  .intro-visual {
    justify-self: stretch;
    width: 100%;
    max-width: 650px;
    margin-left: auto;
  }

  .intro-frame-detail {
    right: var(--space-6);
    bottom: var(--space-6);
    width: 32%;
  }

  .intro-visual figcaption {
    font-size: 0.72rem;
  }

  .catalog-section {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }

  .catalog-heading {
    align-items: center;
  }

  .catalog-heading h2 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
    padding-inline: 0;
  }

  .sort-control {
    grid-template-columns: 54px 1fr;
    align-items: center;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-8) var(--space-3);
  }

  .product-category,
  .quick-category {
    font-size: 0.875rem;
  }

  .product-title-row {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .product-price {
    max-width: none;
    text-align: left;
  }

  .site-footer {
    display: grid;
    align-items: start;
    padding-block: var(--space-12);
  }

  .site-footer nav {
    justify-content: start;
  }

  .quick-view {
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
  }

  .quick-shell {
    grid-template-columns: 1fr;
  }

  .quick-media {
    padding: var(--space-4);
  }

  .quick-details {
    padding: var(--space-8) var(--space-4) var(--space-6);
  }

  .quick-details h2 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }
}

@media (max-width: 479px) {
  .catalog-heading {
    align-items: end;
  }

  .catalog-heading p {
    max-width: 24ch;
  }

  .filter-open {
    width: 48px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }

  .filter-open .filter-count {
    position: absolute;
    margin: -34px 0 0 34px;
    font-size: 0.75rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .product-title-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .product-price {
    max-width: 13ch;
    text-align: right;
  }

  .quick-specs {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .quick-quote {
    width: 100%;
  }

  .page-button.page-number:not([aria-current="page"]):nth-of-type(n + 7) {
    display: none;
  }
}

@media (min-width: 360px) and (max-width: 479px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-10) var(--space-3);
  }

  .product-title-row {
    grid-template-columns: 1fr;
    gap: var(--space-1);
  }

  .product-price {
    max-width: none;
    text-align: left;
  }

  .product-category {
    min-height: 2.6em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .product-image-button:hover .product-image,
  .primary-action:hover,
  .primary-button:hover {
    transform: none;
  }
}

/* Ignition hero v2 — layered for GSAP entrance and scroll storytelling */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-sticky);
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
  background: rgb(5 5 5 / 0.9);
  color: #f4f5f7;
  backdrop-filter: blur(12px) saturate(0.8);
}

.site-header .header-inner {
  width: min(calc(100% - 2 * var(--page-gutter)), 1600px);
}

.site-header .brand-link,
.site-header .primary-nav,
.site-header .social-nav {
  will-change: transform, opacity;
}

.ignition-intro {
  position: relative;
  min-height: 175svh;
  overflow: visible;
  border-bottom: 0;
  background: #000000;
  color: #f7f3eb;
}

.ignition-intro::before,
.ignition-intro::after {
  display: none;
}

.ignition-scene {
  position: sticky;
  top: 0;
  isolation: isolate;
  width: 100%;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: #000000;
}

.ignition-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgb(0 0 0 / 0.38) 0%, rgb(0 0 0 / 0.06) 48%, transparent 70%),
    linear-gradient(0deg, rgb(0 0 0 / 0.32) 0%, transparent 35%);
}

.ignition-artboard,
.ignition-plate,
.intro-ambient,
.intro-darkness,
.intro-light-bloom {
  position: absolute;
  inset: 0;
}

.ignition-artboard {
  z-index: 0;
  overflow: hidden;
  transform-origin: 62% 42%;
  will-change: transform;
}

.ignition-plate {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.intro-ambient {
  z-index: 1;
  background:
    radial-gradient(circle at 62% 34%, rgb(255 157 72 / 0.2), transparent 23%),
    radial-gradient(circle at 83% 18%, rgb(255 225 183 / 0.2), transparent 34%);
  opacity: 0.92;
  pointer-events: none;
}

.intro-darkness {
  z-index: 3;
  background: #000000;
  opacity: 0.18;
  pointer-events: none;
  will-change: opacity;
}

.intro-light-bloom {
  inset: -20%;
  z-index: 4;
  background: radial-gradient(circle at 46% 28%, rgb(255 224 174 / 0.28), rgb(255 157 67 / 0.14) 19%, rgb(255 112 33 / 0.045) 38%, transparent 54%);
  mix-blend-mode: screen;
  opacity: 0.88;
  pointer-events: none;
  will-change: transform, opacity;
}

.hero-flame-wrap {
  position: absolute;
  top: 0.8%;
  left: 44.5%;
  z-index: 6;
  width: clamp(120px, 7.8vw, 150px);
  height: clamp(375px, 48vh, 465px);
  transform-origin: 50% 96%;
  pointer-events: none;
  will-change: transform, opacity;
}

.hero-flame-filter-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.hero-flame-media {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50% 50% 42% 42% / 18% 18% 12% 12%;
  filter: drop-shadow(0 0 9px rgb(255 154 65 / 0.34));
}

.hero-flame-video {
  position: absolute;
  top: -40%;
  left: 50%;
  width: auto;
  max-width: none;
  height: 165%;
  object-fit: contain;
  opacity: 0.92;
  filter: url("#flame-black-to-alpha") contrast(1.08) saturate(1.25) brightness(0.82);
  transform: translateX(-56%) scaleX(0.58);
  transform-origin: 56% 58%;
  will-change: opacity;
}

.hero-flame-glow {
  position: absolute;
  top: 42%;
  left: 50%;
  z-index: 1;
  width: 260%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(255 238 207 / 0.2), rgb(255 164 77 / 0.1) 28%, rgb(255 106 29 / 0.03) 48%, transparent 70%);
  opacity: 0.56;
  transform: translate(-50%, -50%);
  transform-origin: center;
  will-change: transform, opacity;
}

.intro-rail {
  position: absolute;
  top: 19%;
  bottom: 18%;
  left: clamp(1.25rem, 2.7vw, 3rem);
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  color: rgb(247 243 235 / 0.58);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  will-change: transform, opacity;
}

.intro-rail-line {
  flex: 1;
  width: 1px;
  min-height: 5rem;
  background: linear-gradient(#ed1c24 0 18%, rgb(255 255 255 / 0.44) 18% 100%);
}

.ignition-intro .intro-copy {
  position: absolute;
  bottom: clamp(4.25rem, 8.2vh, 7.5rem);
  left: clamp(4.5rem, 5.2vw, 6rem);
  z-index: 10;
  width: min(55vw, 880px);
  max-width: none;
  padding: 0;
  pointer-events: none;
}

.ignition-intro .intro-copy a {
  pointer-events: auto;
}

.ignition-intro .intro-kicker {
  justify-content: flex-start;
  max-width: 43rem;
  margin-bottom: clamp(1.4rem, 2.6vw, 2.5rem);
  color: rgb(247 243 235 / 0.62);
}

.ignition-intro .intro-edition {
  margin-left: 0;
}

.ignition-intro h1 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.12em;
  max-width: none;
  color: #f4eee5;
  font-size: clamp(5rem, 7.55vw, 8rem);
  letter-spacing: -0.035em;
  line-height: 0.82;
  text-transform: uppercase;
  white-space: nowrap;
}

.intro-title-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}

.intro-title-accent {
  overflow: visible;
}

.ignition-intro h1 .intro-title-line > span {
  display: block;
  color: #f4eee5;
  will-change: transform, opacity;
}

.ignition-intro h1 .intro-title-accent > span {
  position: relative;
  color: #ed1c24;
}

.headline-sparks {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.headline-sparks i {
  position: absolute;
  inset: 0 auto auto 0;
  width: 0.028em;
  height: 0.22em;
  border-radius: 999px;
  background: linear-gradient(to top, transparent 0%, #ff6825 18%, #ffc36c 58%, #fffbe9 100%);
  box-shadow: 0 0 0.06em rgb(255 205 123 / 0.95), 0 0 0.16em rgb(255 83 22 / 0.7);
  opacity: 0;
  transform-origin: 50% 100%;
  will-change: transform, opacity;
}

.headline-sparks i:nth-child(2n) {
  width: 0.02em;
  height: 0.14em;
}

.headline-sparks i:nth-child(3n) { height: 0.28em; }
.headline-sparks i:nth-child(4n) { width: 0.036em; height: 0.17em; }

.ignition-intro .intro-copy > p {
  max-width: 49ch;
  margin-top: clamp(1.5rem, 2.5vw, 2.25rem);
  color: rgb(247 243 235 / 0.66);
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.5;
}

.ignition-intro .intro-actions {
  margin-top: clamp(1.5rem, 2.4vw, 2.25rem);
}

.ignition-intro .primary-action {
  min-height: 50px;
  padding-inline: 1.75rem;
  border-radius: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 0.94rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ignition-intro .intro-data {
  width: min(100%, 46rem);
  margin-top: clamp(1.8rem, 3vw, 3rem);
}

.intro-scroll-cue {
  position: absolute;
  right: clamp(1.25rem, 3vw, 3.25rem);
  bottom: clamp(1.5rem, 3vw, 3rem);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: rgb(247 243 235 / 0.58);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  will-change: transform, opacity;
}

.intro-scroll-cue i {
  position: relative;
  display: block;
  width: 42px;
  height: 1px;
  overflow: hidden;
  background: rgb(255 255 255 / 0.22);
}

.intro-scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #ed1c24;
  transform: translateX(-78%);
  animation: scroll-cue-pulse 1.8s ease-in-out infinite;
}

@keyframes scroll-cue-pulse {
  0%, 20% { transform: translateX(-100%); }
  65%, 100% { transform: translateX(100%); }
}

html.js:not(.hero-mounted) .site-header .brand-link,
html.js:not(.hero-mounted) .site-header .primary-nav,
html.js:not(.hero-mounted) .site-header .social-nav,
html.js:not(.hero-mounted) .hero-flame-wrap,
html.js:not(.hero-mounted) .intro-rail,
html.js:not(.hero-mounted) .intro-scroll-cue,
html.js:not(.hero-mounted) .ignition-intro .intro-copy > * {
  opacity: 0;
}

html.js:not(.hero-mounted) .intro-darkness {
  opacity: 1;
}

html.motion-fallback .ignition-intro {
  min-height: 100svh;
}

html.motion-fallback .ignition-scene {
  position: relative;
}

.catalog-transition {
  position: relative;
  z-index: 1;
  isolation: isolate;
  display: grid;
  align-items: end;
  min-height: clamp(230px, 34svh, 360px);
  margin-top: -1px;
  overflow: clip;
  background:
    linear-gradient(
      180deg,
      #000000 0%,
      #15100c 12%,
      oklch(0.68 0.026 64) 42%,
      oklch(0.88 0.014 70) 68%,
      var(--canvas) 100%
    );
}

.catalog-transition-light,
.catalog-transition-ember {
  position: absolute;
  inset: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.catalog-transition-light {
  z-index: 0;
  background: linear-gradient(180deg, transparent 10%, rgb(246 241 232 / 0.08) 45%, var(--canvas) 100%);
  transform-origin: 50% 100%;
}

.catalog-transition-ember {
  inset: -35% -10% 25%;
  z-index: 1;
  background: radial-gradient(ellipse at 50% 8%, rgb(255 173 91 / 0.3), rgb(229 101 39 / 0.1) 28%, transparent 64%);
  mix-blend-mode: screen;
  opacity: 0.44;
  transform-origin: 50% 15%;
}

.catalog-transition-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(2rem, 7vw, 8rem);
  width: min(calc(100% - 2 * var(--page-gutter)), var(--max-width));
  margin-inline: auto;
  padding-bottom: clamp(2.75rem, 5vw, 5rem);
  color: var(--ink);
  will-change: transform, opacity;
}

.catalog-transition-content > div {
  min-width: 0;
}

.catalog-transition-rule {
  display: block;
  width: clamp(3.5rem, 8vw, 8rem);
  height: 2px;
  margin-bottom: clamp(1rem, 2vw, 1.75rem);
  background: var(--ember);
  transform-origin: left center;
}

.catalog-transition h2 {
  max-width: none;
  font-size: clamp(3.25rem, 5.9vw, 4.8rem);
  letter-spacing: -0.03em;
  line-height: 0.88;
  text-transform: uppercase;
  white-space: nowrap;
}

.catalog-transition p {
  max-width: 38ch;
  padding-bottom: 0.35rem;
  color: color-mix(in oklch, var(--muted) 90%, var(--ink));
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.catalog-section {
  position: relative;
  z-index: 2;
  background: var(--canvas);
}

@media (max-width: 1023px) {
  .ignition-intro {
    min-height: 165svh;
  }

  .ignition-plate {
    object-position: 58% center;
  }

  .hero-flame-wrap {
    top: 0.3%;
    left: 40.1%;
    width: clamp(120px, 15vw, 144px);
    height: clamp(368px, 48svh, 480px);
  }

  .ignition-intro .intro-copy {
    width: min(66vw, 760px);
  }

  .ignition-intro h1 {
    font-size: clamp(4.7rem, 9.8vw, 7rem);
  }

  .catalog-transition {
    min-height: clamp(280px, 40svh, 350px);
    background:
      linear-gradient(
        180deg,
        #000000 0%,
        #17110c 8%,
        oklch(0.74 0.024 66) 36%,
        oklch(0.9 0.012 70) 66%,
        var(--canvas) 100%
      );
  }

  .catalog-transition-content {
    display: grid;
    gap: 1.35rem;
  }

  .catalog-transition h2 {
    max-width: 9ch;
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .site-header {
    height: var(--header-height);
    backdrop-filter: blur(8px);
  }

  .ignition-intro {
    min-height: 155svh;
  }

  .ignition-scene {
    min-height: 560px;
  }

  .ignition-scene::after {
    background:
      linear-gradient(0deg, rgb(0 0 0 / 0.88) 0%, rgb(0 0 0 / 0.25) 48%, transparent 76%),
      linear-gradient(90deg, rgb(0 0 0 / 0.18), transparent 70%);
  }

  .ignition-plate {
    object-position: 61% center;
  }

  .intro-light-bloom {
    background: radial-gradient(circle at 46% 29%, rgb(255 224 174 / 0.25), rgb(255 157 67 / 0.11) 20%, transparent 54%);
  }

  .hero-flame-wrap {
    top: 0;
    left: 36.5%;
    width: clamp(114px, 21vw, 138px);
    height: clamp(338px, 48svh, 420px);
  }

  .hero-flame-video {
    top: -40%;
    height: 165%;
    transform: translateX(-56%) scaleX(0.58);
  }

  .intro-rail {
    top: 18%;
    bottom: 34%;
    left: 1rem;
    font-size: 0.62rem;
  }

  .ignition-intro .intro-copy {
    bottom: clamp(3.75rem, 8svh, 5.25rem);
    left: 1.25rem;
    width: calc(100% - 2.5rem);
  }

  .ignition-intro .intro-kicker {
    gap: 0.6rem;
    margin-bottom: 1.1rem;
    font-size: 0.66rem;
  }

  .ignition-intro .intro-edition {
    margin-left: auto;
  }

  .ignition-intro h1 {
    display: block;
    font-size: clamp(4rem, 19vw, 6.2rem);
    line-height: 0.78;
    white-space: normal;
  }

  .ignition-intro .intro-copy > p {
    max-width: 35ch;
    margin-top: 1.25rem;
    font-size: 0.96rem;
  }

  .ignition-intro .intro-actions {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-top: 1.35rem;
  }

  .ignition-intro .primary-action {
    min-height: 46px;
    padding-inline: 1.2rem;
  }

  .intro-scroll-cue {
    right: 1rem;
    bottom: 1.1rem;
  }

  .intro-scroll-cue span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }

  .catalog-transition {
    min-height: clamp(250px, 38svh, 330px);
  }

  .catalog-transition-content {
    display: grid;
    gap: 1.25rem;
    padding-bottom: 2.75rem;
  }

  .catalog-transition h2 {
    max-width: 9ch;
    font-size: clamp(3.35rem, 15vw, 5rem);
  }

  .catalog-transition p {
    max-width: 32ch;
    padding-bottom: 0;
  }
}

@media (max-width: 479px) {
  .site-header .brand-link {
    width: 92px;
  }

  .ignition-plate {
    object-position: 63% center;
  }

  .hero-flame-wrap {
    top: 0;
    left: 33%;
    width: clamp(108px, 30vw, 129px);
    height: clamp(330px, 46.5svh, 413px);
  }

  .hero-flame-video {
    top: -30%;
    height: 150%;
    transform: translateX(-56%) scaleX(0.65);
  }

  .intro-rail {
    display: none;
  }

  .ignition-intro .intro-copy {
    left: 1rem;
    width: calc(100% - 2rem);
  }

  .ignition-intro h1 {
    font-size: clamp(3.65rem, 18.4vw, 5.25rem);
  }

  .ignition-intro .intro-copy > p {
    max-width: 31ch;
  }

}

@media (prefers-reduced-motion: reduce) {
  .ignition-intro {
    min-height: 100svh;
  }

  .ignition-scene {
    position: relative;
  }

  .intro-scroll-cue i::after {
    animation: none;
    transform: none;
  }

  .catalog-transition-light,
  .catalog-transition-ember,
  .catalog-transition-content {
    opacity: 1;
    transform: none;
  }
}
