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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  color: var(--bone-dim);
  background: var(--iron);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .18s ease
}

a:hover {
  color: var(--amber)
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer
}

h1,
h2,
h3,
h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: var(--bone);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0 0 .5em;
  line-height: 1.05
}

:root {
  --iron: #1B1A17;
  --charcoal: #2A2622;
  --mesquite: #3B2A20;
  --ember: #D9531E;
  --amber: #E8A23D;
  --rust: #A8471F;
  --turquoise: #3E8E82;
  --bone: #EFE7D6;
  --bone-dim: #E1D5BC;
  --steel-light: #7A7269;
  --steel-mid: #524C45;
  --grid: #35312C;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --maxw: 1120px;
  --section: 88px;
  --shadow-sm: 0 1px 0 rgba(0, 0, 0, .35), 0 8px 20px -12px rgba(0, 0, 0, .6);
  --shadow-lg: 0 20px 60px -20px rgba(0, 0, 0, .75), 0 1px 0 rgba(255, 255, 255, .04) inset;
  --grain: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.85  0 0 0 0 0.65  0 0 0 0 0.45  0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

html,
body {
  background: var(--iron)
}

body {
  background-image:
    repeating-linear-gradient(115deg, rgba(217, 83, 30, .035) 0 2px, transparent 2px 140px),
    radial-gradient(1200px 600px at 50% -200px, rgba(232, 162, 61, .09), transparent 60%),
    linear-gradient(180deg, var(--iron), #141311 70%, #0F0E0D);
  background-attachment: fixed;
  position: relative;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .25;
  background-image: var(--grain);
  mix-blend-mode: overlay;
  z-index: 1
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 20px;
  position: relative;
  z-index: 2
}

@media(min-width:1024px) {
  .wrap {
    padding-inline: 28px
  }
}

.eyebrow {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 12px;
  color: var(--amber);
  margin: 0 0 10px
}

.display {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  line-height: .95;
  letter-spacing: .01em;
  color: var(--bone);
  font-weight: 400
}

.h1 {
  font-size: clamp(40px, 9vw, 92px)
}

.h2 {
  font-size: clamp(32px, 7vw, 68px)
}

.h3 {
  font-size: clamp(22px, 4.5vw, 34px);
  font-family: 'Oswald', sans-serif;
  font-weight: 600
}

.lede {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--bone-dim);
  max-width: 62ch
}

.stamp {
  font-family: 'Rye', serif;
  color: var(--rust);
  letter-spacing: .1em;
  opacity: .9
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
  line-height: 1;
  transition: all .2s ease;
  border: 1px solid transparent;
  min-height: 48px;
  justify-content: center;
  white-space: nowrap
}

.btn .icon {
  width: 18px;
  height: 18px
}

.btn-primary {
  background: var(--ember);
  color: #1B1A17;
  box-shadow: 0 8px 24px -10px rgba(217, 83, 30, .6), inset 0 1px 0 rgba(255, 255, 255, .25)
}

.btn-primary:hover {
  background: var(--amber);
  transform: translateY(-1px);
  color: #1B1A17
}

.btn-ghost {
  background: transparent;
  color: var(--bone);
  border-color: rgba(239, 231, 214, .22)
}

.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-1px)
}

.btn-stroke {
  background: transparent;
  color: var(--bone);
  border-color: var(--ember)
}

.btn-stroke:hover {
  background: var(--ember);
  color: #1B1A17
}

.btn-lg {
  padding: 17px 24px;
  font-size: 14px;
  gap: 12px
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  padding: 8px 14px;
  background: var(--ember);
  color: #1B1A17;
  border-radius: 8px;
  z-index: 1000;
  font-weight: 700
}

.skip-link:focus {
  left: 8px
}

.icon {
  width: 22px;
  height: 22px;
  color: currentColor;
  flex: none
}

/* HEADER / NAV */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 14px;
  position: relative;
  background: rgba(27, 26, 23, .82);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(232, 162, 61, .12)
}

@media(min-width:1024px) {
  .nav-wrap {
    padding-inline: 28px
  }
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  flex: none
}

@media(min-width:768px) {
  .brand-mark {
    width: 52px;
    height: 52px
  }
}

.brand-word {
  display: flex;
  flex-direction: column;
  line-height: 1;
  min-width: 0
}

.brand-1 {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--bone);
  font-size: 20px;
  letter-spacing: .05em;
  white-space: nowrap
}

@media(min-width:768px) {
  .brand-1 {
    font-size: 22px
  }
}

.brand-2 {
  font-family: 'Oswald', sans-serif;
  color: var(--amber);
  font-size: 10px;
  letter-spacing: .22em;
  margin-top: 3px;
  text-transform: uppercase
}

@media(min-width:768px) {
  .brand-2 {
    font-size: 11px
  }
}

.primary-nav {
  display: none;
  align-items: center;
  gap: 6px
}

@media(min-width:1024px) {
  .primary-nav {
    display: flex
  }
}

.primary-ul {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0
}

.primary-ul a {
  display: block;
  padding: 10px 14px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bone-dim);
  border-radius: 8px;
  position: relative
}

.primary-ul a:hover {
  color: var(--bone);
  background: rgba(255, 255, 255, .04)
}

.primary-ul a.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--ember);
  border-radius: 2px
}

.primary-ul a.active {
  color: var(--bone)
}

/* DROPDOWN MENU (Resources) */
.nav-dropdown {
  position: relative
}

.nav-dropdown .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer
}

.nav-dropdown .drop-arrow {
  width: 12px;
  height: 12px;
  transition: transform .22s ease;
  transform: rotate(90deg);
  color: var(--amber)
}

.nav-dropdown:hover .drop-arrow,
.nav-dropdown:focus-within .drop-arrow {
  transform: rotate(270deg)
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--charcoal);
  border: 1px solid var(--grid);
  border-radius: 12px;
  padding: 8px;
  margin-top: 6px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s cubic-bezier(.2, .8, .2, 1);
  z-index: 100;
  list-style: none
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.dropdown-menu li {
  margin: 0
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-family: 'Oswald', sans-serif;
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bone-dim);
  border-radius: 6px;
  transition: all .15s ease
}

.dropdown-menu a:hover {
  color: var(--amber);
  background: rgba(232, 162, 61, .08)
}

.dropdown-menu a.active {
  color: var(--ember);
  background: rgba(217, 83, 30, .1)
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--ember);
  color: #1B1A17;
  border-radius: var(--radius-pill);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  min-height: 40px;
  margin-left: 6px
}

.nav-cta:hover {
  background: var(--amber);
  color: #1B1A17
}

.nav-cta .icon {
  width: 15px;
  height: 15px
}

.mobile-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--grid);
  border-radius: 10px;
  color: var(--bone);
  cursor: pointer;
  position: relative
}

@media(min-width:1024px) {
  .mobile-cart-btn {
    display: none
  }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  color: var(--bone);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08)
}

.nav-toggle .i-close {
  display: none
}

.nav-toggle[aria-expanded="true"] .i-menu {
  display: none
}

.nav-toggle[aria-expanded="true"] .i-close {
  display: block
}

@media(min-width:1024px) {
  .nav-toggle {
    display: none
  }
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 88vw);
  background: var(--charcoal);
  border-left: 1px solid var(--grid);
  z-index: 80;
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.2, .8, .2, 1);
  display: flex;
  flex-direction: column;
  padding: 18px 18px 24px;
  overflow-y: auto
}

body.drawer-open .mobile-drawer {
  transform: translateX(0)
}

.mobile-drawer[aria-hidden="false"] {
  transform: translateX(0)
}

.drawer-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  opacity: 0;
  visibility: hidden;
  transition: all .25s ease;
  z-index: 70;
  backdrop-filter: blur(2px)
}

body.drawer-open .drawer-scrim {
  opacity: 1;
  visibility: visible
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px
}

.drawer-title {
  font-family: 'Oswald', sans-serif;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 13px
}

.drawer-close {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: var(--bone);
  background: rgba(255, 255, 255, .04);
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.drawer-links {
  list-style: none;
  margin: 8px 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px
}

.drawer-links li a {
  display: block;
  padding: 12px 14px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bone-dim);
  border-radius: 8px;
  transition: all .18s ease
}

.drawer-links li a:hover {
  color: var(--bone);
  background: rgba(255, 255, 255, .05);
  padding-left: 18px
}

.drawer-links li a.active {
  color: var(--amber);
  background: rgba(232, 162, 61, .08);
  border-left: 3px solid var(--ember);
  padding-left: 18px
}

.drawer-foot {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--grid)
}

.drawer-foot .big {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: var(--bone);
  font-size: 20px;
  letter-spacing: .05em;
  margin-bottom: 14px
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 56px
}

@media(min-width:768px) {
  .hero {
    padding: 80px 0 72px
  }
}

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center
}

@media(min-width:900px) {
  .hero-grid {
    grid-template-columns: 1.05fr .95fr;
    gap: 56px
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--grid);
  border-radius: var(--radius-pill);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  color: var(--amber);
  letter-spacing: .18em;
  font-size: 11px;
  margin-bottom: 22px;
  background: rgba(232, 162, 61, .04)
}

.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 10px var(--ember)
}

.hero h1 .hero-sub {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(16px, 3.2vw, 26px);
  letter-spacing: .12em;
  color: var(--bone-dim);
  margin-top: 14px;
  font-weight: 500;
  text-transform: uppercase
}

.hero p.lede {
  margin: 22px 0 30px
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--grid)
}

.hero-meta .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 5vw, 44px);
  color: var(--ember);
  line-height: 1
}

.hero-meta .lbl {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  color: var(--steel-light);
  margin-top: 4px
}

.hero-media {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grid);
  background: var(--charcoal)
}

@media(min-width:900px) {
  .hero-media {
    aspect-ratio: 5/4
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(27, 26, 23, .7) 100%),
    radial-gradient(500px 300px at 80% 0%, rgba(232, 162, 61, .12), transparent 60%)
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-media .hero-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(27, 26, 23, .85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--grid);
  border-radius: var(--radius-pill);
  font-family: 'Oswald', sans-serif;
  color: var(--bone);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase
}

.hero-mark {
  position: absolute;
  top: -10px;
  right: -20px;
  width: 280px;
  height: 280px;
  opacity: .18;
  pointer-events: none
}

@media(min-width:600px) {
  .hero-mark {
    width: 420px;
    height: 420px;
    right: -60px;
    top: -80px
  }
}

/* SECTIONS */
section {
  position: relative;
  padding-block: var(--section)
}

@media(max-width:767px) {
  section {
    padding-block: 64px
  }
}

.section-head {
  max-width: 720px;
  margin-bottom: 40px
}

@media(min-width:768px) {
  .section-head {
    margin-bottom: 56px
  }
}

.section-head.centered {
  margin-inline: auto;
  text-align: center
}

.section-head .divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 14px 0 22px
}

.section-head.centered .divider {
  justify-content: center
}

.section-head .divider::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--ember)
}

.section-head .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--grid)
}

.section-head.centered .divider::after {
  max-width: 200px
}

/* PILLARS */
.pillars {
  display: grid;
  gap: 16px
}

@media(min-width:600px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
  }
}

@media(min-width:900px) {
  .pillars {
    grid-template-columns: repeat(4, 1fr)
  }
}

.pillar {
  padding: 26px 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--charcoal), #1F1C19);
  border: 1px solid var(--grid);
  position: relative;
  overflow: hidden;
  min-height: 100%
}

.pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--ember), transparent 70%);
  opacity: .7
}

.pillar .ico {
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 12px;
  background: rgba(232, 162, 61, .08);
  color: var(--amber);
  margin-bottom: 18px;
  border: 1px solid rgba(232, 162, 61, .18)
}

.pillar h3 {
  font-size: 18px;
  margin-bottom: 8px
}

.pillar p {
  margin: 0;
  color: var(--bone-dim);
  font-size: 14px
}

/* REVERSE FLOW EXPLAINER */
.rf-section {
  background: linear-gradient(180deg, transparent, rgba(59, 42, 32, .25), transparent);
  padding-block: var(--section)
}

.rf-steps {
  display: grid;
  gap: 20px
}

@media(min-width:768px) {
  .rf-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px
  }
}

.rf-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 26px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--charcoal), #1F1C19);
  border: 1px solid var(--grid);
  box-shadow: var(--shadow-sm);
  transition: all .22s ease
}

.rf-step:hover {
  border-color: rgba(232, 162, 61, .35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg)
}

.rf-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: #1B1A17;
  background: linear-gradient(145deg, var(--ember), var(--rust));
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3);
  letter-spacing: .02em
}

.rf-body {
  flex: 1;
  min-width: 0
}

.rf-body h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: var(--bone);
  margin: 0 0 8px;
  letter-spacing: .04em;
  line-height: 1.2
}

.rf-body p {
  margin: 0;
  font-size: 14.5px;
  color: var(--bone-dim);
  line-height: 1.6
}

/* FEATURED PRODUCTS */
.prod-grid,
ul.products {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.products li {
  margin: 0;
  padding: 0;
}

@media(min-width:700px) {
  .prod-grid,
  ul.products {
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 22px
  }
}

.prod-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--charcoal), #1F1C19);
  border: 1px solid var(--grid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .2s ease;
  position: relative
}

.prod-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 162, 61, .3);
  box-shadow: var(--shadow-lg)
}

.prod-thumb {
  position: relative;
  aspect-ratio: 4/3;
  background: #221E1B;
  overflow: hidden
}

.prod-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(27, 26, 23, .5));
  pointer-events: none
}

.prod-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease
}

.prod-card:hover .prod-thumb img {
  transform: scale(1.05)
}

.prod-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px
}

.prod-body h3 {
  font-size: 17px;
  margin: 0;
  color: var(--bone)
}

.prod-body .prod-desc {
  font-size: 13.5px;
  color: var(--bone-dim);
  margin: 0;
  flex: 1
}

.prod-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--grid);
  gap: 12px
}

.prod-foot .link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11.5px;
  color: var(--amber)
}

.prod-foot .link:hover {
  color: var(--ember)
}

.prod-foot .link .icon {
  width: 14px;
  height: 14px
}

/* STORY */
.story-grid {
  display: grid;
  gap: 36px;
  align-items: start;
  width: 100%
}

@media(min-width:900px) {
  .story-grid {
    grid-template-columns: .95fr 1.05fr;
    gap: 56px
  }
}

.story-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/10;
  max-height: 380px;
  border: 1px solid var(--grid);
  box-shadow: var(--shadow-lg);
  background: var(--charcoal)
}

@media(min-width:900px) {
  .story-photo {
    aspect-ratio: 4/5;
    max-height: 540px
  }
}

.story-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(27, 26, 23, .75))
}

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

.story-photo .stamp-card {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  padding: 12px 18px;
  background: rgba(27, 26, 23, .88);
  backdrop-filter: blur(4px);
  border: 1px solid var(--grid);
  border-radius: var(--radius);
  color: var(--amber);
  font-family: 'Rye', serif;
  font-size: 12px;
  letter-spacing: .1em;
  text-align: center
}

.story-photo .stamp-card b {
  display: block;
  color: var(--bone);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: .05em;
  margin-bottom: 2px
}

.story p {
  margin: 0 0 18px;
  color: var(--bone-dim);
  font-size: 15.5px
}

.story ul.story-bullets {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px
}

.story ul.story-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid var(--grid);
  border-radius: var(--radius)
}

.story ul.story-bullets .ico {
  width: 22px;
  height: 22px;
  color: var(--ember);
  margin-top: 1px;
  flex: none
}

/* CTA STRIP */
.cta-strip {
  margin: 0;
  padding-block: 40px;
  background:
    radial-gradient(800px 300px at 15% 50%, rgba(217, 83, 30, .2), transparent 60%),
    radial-gradient(600px 250px at 85% 50%, rgba(232, 162, 61, .12), transparent 60%),
    linear-gradient(180deg, var(--mesquite), var(--charcoal));
  border-block: 1px solid var(--grid)
}

.cta-strip-inner {
  display: grid;
  gap: 16px;
  align-items: center;
  text-align: center
}

@media(min-width:800px) {
  .cta-strip-inner {
    grid-template-columns: 1fr 1fr 1fr;
    text-align: left;
    gap: 24px
  }
}

.cta-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px
}

@media(min-width:800px) {
  .cta-item {
    justify-content: flex-start
  }
}

.cta-item .ico {
  width: 34px;
  height: 34px;
  padding: 7px;
  color: var(--ember);
  background: rgba(217, 83, 30, .1);
  border-radius: 10px;
  flex: none
}

.cta-item .txt {
  display: flex;
  flex-direction: column;
  line-height: 1.25
}

.cta-item .txt .lbl {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 10px;
  color: var(--steel-light)
}

.cta-item .txt .val {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: var(--bone);
  font-size: 17px;
  margin-top: 3px;
  letter-spacing: .04em
}

.cta-item a.val:hover {
  color: var(--amber)
}

/* FILTERS (products page) */
.cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  padding: 6px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--grid);
  border-radius: var(--radius-lg)
}

.cat-tabs button {
  flex: 1 1 auto;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bone-dim);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: max-content
}

.cat-tabs button .icon {
  width: 16px;
  height: 16px;
  color: var(--amber)
}

.cat-tabs button:hover {
  background: rgba(255, 255, 255, .04);
  color: var(--bone)
}

.cat-tabs button.active {
  background: linear-gradient(145deg, var(--ember), var(--rust));
  color: #1B1A17;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25)
}

.cat-tabs button.active .icon {
  color: #1B1A17
}

/* TWO-COL PRODUCTS LAYOUT (DESKTOP SIDEBAR) */
.prods-layout {
  display: grid;
  gap: 28px
}

@media(min-width:1100px) {
  .prods-layout {
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: flex-start
  }
}

.cat-side {
  background: var(--charcoal);
  border: 1px solid var(--grid);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: sticky;
  top: 92px
}

.cat-side h3 {
  font-size: 14px;
  letter-spacing: .2em;
  color: var(--amber);
  margin-bottom: 16px
}

.cat-side ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px
}

.cat-side li a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--bone-dim);
  border-left: 2px solid transparent
}

.cat-side li a:hover {
  color: var(--bone);
  background: rgba(255, 255, 255, .03);
  border-left-color: var(--grid)
}

.cat-side li a.active {
  color: var(--amber);
  background: rgba(232, 162, 61, .05);
  border-left-color: var(--ember)
}

.cat-side .group-h {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--steel-light);
  margin: 14px 0 6px;
  padding-left: 12px;
  text-transform: uppercase
}

@media(max-width:1099px) {
  .cat-side {
    display: none
  }
}

/* ACCORDION (FAQS) */
.acc {
  display: grid;
  gap: 12px
}

.acc-item {
  background: linear-gradient(180deg, var(--charcoal), #1F1C19);
  border: 1px solid var(--grid);
  border-radius: var(--radius-lg);
  overflow: hidden
}

.acc-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  user-select: none
}

.acc-item summary::-webkit-details-marker {
  display: none
}

.acc-item h4 {
  font-size: 17px;
  margin: 0;
  color: var(--bone);
  text-transform: none;
  letter-spacing: 0;
  font-family: Inter, sans-serif;
  font-weight: 600
}

.acc-item .ic {
  width: 22px;
  height: 22px;
  color: var(--ember);
  flex: none;
  transition: transform .2s ease
}

.acc-item[open] .ic {
  transform: rotate(180deg)
}

.acc-item .acc-body {
  padding: 0 22px 22px;
  color: var(--bone-dim);
  font-size: 15px;
  border-top: 1px solid var(--grid);
  padding-top: 18px;
  margin-top: 0
}

/* FORMS */
.form-grid {
  display: grid;
  gap: 16px
}

@media(min-width:600px) {
  .form-grid.two {
    grid-template-columns: 1fr 1fr
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box
}

.field label {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  color: var(--amber)
}

.quote-layout .field input,
.quote-layout .field textarea,
.quote-layout .field select,
.field input,
.field textarea,
.field select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--grid);
  border-radius: var(--radius);
  color: var(--bone);
  font: inherit;
  font-size: 15px;
  transition: all .18s ease;
  min-height: 48px
}

.quote-layout .field input::placeholder,
.quote-layout .field textarea::placeholder,
.field input::placeholder,
.field textarea::placeholder {
  color: var(--steel-light)
}

.quote-layout .field input:focus,
.quote-layout .field textarea:focus,
.quote-layout .field select:focus,
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--ember);
  background: rgba(255, 255, 255, .05);
  box-shadow: 0 0 0 3px rgba(217, 83, 30, .15)
}

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

.form-submit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 10px
}

.form-notice {
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(62, 142, 130, .1);
  border: 1px solid rgba(62, 142, 130, .3);
  color: var(--bone);
  font-size: 14px
}

.form-error {
  background: rgba(217, 83, 30, .1);
  border-color: rgba(217, 83, 30, .3);
  color: #FFC9B0
}

.required {
  color: var(--ember)
}

/* MULTI-STEP CHECKOUT WIZARD */
.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 24px;
  padding: 12px 16px;
  background: var(--charcoal);
  border: 1px solid var(--grid);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--steel-light);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap
}

.checkout-step .step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: var(--bone);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex: none
}

.checkout-step.active {
  color: var(--amber)
}

.checkout-step.active .step-num {
  background: linear-gradient(145deg, var(--ember), var(--rust));
  color: #1B1A17
}

.checkout-step.completed .step-num {
  background: var(--amber);
  color: #1B1A17
}

.checkout-step-line {
  flex: 1;
  height: 1px;
  background: var(--grid);
  min-width: 16px
}

.checkout-step-content {
  display: none
}

.checkout-step-content.active {
  display: block
}

.step-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--grid)
}

/* CONTACT INFO CARDS */
.info-cards {
  display: grid;
  gap: 16px;
  margin-bottom: 28px
}

@media(min-width:600px) {
  .info-cards {
    grid-template-columns: repeat(3, 1fr)
  }
}

.info-card {
  padding: 22px;
  background: linear-gradient(180deg, var(--charcoal), #1F1C19);
  border: 1px solid var(--grid);
  border-radius: var(--radius-lg)
}

.info-card .ico {
  width: 34px;
  height: 34px;
  padding: 7px;
  color: var(--ember);
  background: rgba(217, 83, 30, .08);
  border-radius: 10px;
  margin-bottom: 14px
}

.info-card h4 {
  font-size: 13px;
  letter-spacing: .18em;
  color: var(--amber);
  margin-bottom: 6px
}

.info-card p,
.info-card a {
  display: block;
  font-size: 16px;
  color: var(--bone);
  margin: 0;
  line-height: 1.4
}

.info-card a:hover {
  color: var(--amber)
}

/* REVIEWS */
.reviews-grid {
  display: grid;
  gap: 18px
}

@media(min-width:700px) {
  .reviews-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr))
  }
}

.review-card {
  padding: 26px 24px;
  background: linear-gradient(180deg, var(--charcoal), #1F1C19);
  border: 1px solid var(--grid);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden
}

.review-card::before {
  content: "\201C";
  position: absolute;
  top: -14px;
  right: 14px;
  font-family: Georgia, serif;
  font-size: 120px;
  color: var(--ember);
  opacity: .12;
  line-height: 1
}

.review-stars {
  display: flex;
  gap: 3px
}

.review-stars .icon {
  width: 18px;
  height: 18px;
  color: var(--amber)
}

.review-card p {
  margin: 0;
  font-size: 15px;
  color: var(--bone-dim);
  font-style: italic;
  line-height: 1.55
}

.review-by {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--grid)
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--ember), var(--rust));
  color: #1B1A17;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none
}

.review-by .name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: var(--bone);
  font-size: 14px;
  letter-spacing: .06em;
  margin: 0
}

.review-by .loc {
  font-size: 12px;
  color: var(--steel-light);
  margin: 2px 0 0
}

/* VIDEOS */
.video-grid {
  display: grid;
  gap: 18px
}

@media(min-width:600px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1000px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.video-card {
  background: var(--charcoal);
  border: 1px solid var(--grid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .2s ease
}

.video-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 162, 61, .3)
}

.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden
}

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

.video-title {
  padding: 16px 18px 20px
}

.video-title h3 {
  font-size: 15px;
  margin: 0;
  color: var(--bone)
}

.video-title .meta {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  color: var(--steel-light);
  margin-top: 6px
}

/* SINGLE PRODUCT */
.prod-hero {
  display: grid;
  gap: 36px;
  align-items: stretch
}

@media(min-width:900px) {
  .prod-hero {
    grid-template-columns: 1.05fr .95fr;
    gap: 48px
  }
}

.prod-gallery {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--grid);
  background: var(--charcoal);
  box-shadow: var(--shadow-lg)
}

.prod-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.prod-info h1 {
  font-size: clamp(30px, 6vw, 54px)
}

.prod-info .cat {
  display: inline-block;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(232, 162, 61, .08);
  color: var(--amber);
  border: 1px solid rgba(232, 162, 61, .2);
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 16px
}

.prod-info .lede {
  margin: 12px 0 26px
}

.prod-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 0;
  border: 1px solid var(--grid);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, .02)
}

.prod-specs li {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--grid)
}

.prod-specs li:last-child {
  border-bottom: 0
}

.prod-specs .k {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  color: var(--steel-light)
}

.prod-specs .v {
  color: var(--bone);
  font-size: 14px
}

/* QUOTE SECTION RESPONSIVE LAYOUT */
.quote-layout {
  display: grid;
  gap: 28px;
  width: 100%
}

@media(min-width:900px) {
  .quote-layout {
    grid-template-columns: 1fr 340px;
    gap: 36px;
    align-items: start
  }
}

/* CHECKOUT RESPONSIVE */
.checkout-card {
  padding: clamp(16px, 4vw, 24px);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--charcoal), #1F1C19);
  border: 1px solid var(--grid)
}

.checkout-summary-card {
  padding: clamp(16px, 4vw, 24px);
  border-radius: 16px;
  background: var(--charcoal);
  border: 1px solid var(--grid)
}

@media(min-width:900px) {
  .checkout-sidebar {
    position: sticky;
    top: 90px
  }
}

.radio-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: clamp(12px, 3vw, 16px);
  border-radius: 12px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid var(--grid);
  cursor: pointer;
  transition: border-color .18s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden
}

.radio-option:hover {
  border-color: rgba(232, 162, 61, .3)
}

.radio-option input[type="radio"] {
  margin-top: 3px;
  flex: none
}

.radio-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 4px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box
}

.radio-head .title {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  color: var(--bone);
  flex: 1 1 auto;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere
}

.radio-head .tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
  background: rgba(232, 162, 61, .12);
  padding: 2px 8px;
  border-radius: 6px;
  white-space: nowrap;
  flex: none
}

.quote-form {
  padding: 20px 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--charcoal), #1F1C19);
  border: 1px solid var(--grid);
  box-shadow: var(--shadow-sm)
}

@media(min-width:600px) {
  .quote-form {
    padding: 28px
  }
}

/* FOOTER */
.site-footer {
  margin-top: 64px;
  position: relative;
  z-index: 2
}

.footer-cta {
  padding-block: 44px;
  background:
    radial-gradient(500px 260px at 20% 100%, rgba(217, 83, 30, .22), transparent 60%),
    radial-gradient(500px 260px at 80% 0%, rgba(232, 162, 61, .12), transparent 60%),
    linear-gradient(180deg, var(--mesquite), var(--charcoal));
  border-block: 1px solid var(--grid)
}

.fcta-inner {
  display: grid;
  gap: 22px;
  align-items: center
}

@media(min-width:800px) {
  .fcta-inner {
    grid-template-columns: 1.1fr auto;
    text-align: left
  }
}

.fcta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start
}

@media(max-width:799px) {
  .fcta-btns .btn {
    flex: 1 1 auto
  }
}

.footer-cta h3 {
  font-size: clamp(20px, 3.5vw, 28px);
  margin: 0
}

.footer-main {
  padding-block: 56px;
  border-bottom: 1px solid var(--grid)
}

.f-main-grid {
  display: grid;
  gap: 40px
}

@media(min-width:700px) {
  .f-main-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 36px
  }
}

@media(min-width:1024px) {
  .f-main-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
    gap: 44px
  }
}

.footer-main h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--amber);
  margin-bottom: 16px
}

.footer-main ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.footer-main ul a {
  color: var(--bone-dim);
  font-size: 14px
}

.footer-main ul a:hover {
  color: var(--amber)
}

.f-brand .f-badge {
  width: 130px;
  height: 130px;
  margin-bottom: 12px
}

.f-brand .f-tag {
  color: var(--bone-dim);
  font-size: 14px;
  max-width: 30ch;
  margin: 0
}

.f-contact {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.f-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  color: var(--bone-dim);
  font-size: 14px;
  line-height: 1.35
}

.f-row .icon {
  width: 22px;
  height: 22px;
  color: var(--amber)
}

.f-row a:hover {
  color: var(--amber)
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--grid);
  color: var(--bone-dim);
  transition: all .2s ease
}

.socials a:hover {
  color: #1B1A17;
  background: var(--ember);
  border-color: var(--ember);
  transform: translateY(-2px)
}

.socials .icon {
  width: 17px;
  height: 17px
}

.footer-bottom {
  padding-block: 20px
}

.f-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: var(--steel-light)
}

@media(min-width:600px) {
  .f-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px
  }
}

/* PAGINATION */
.prod-result {
  font-family: 'Oswald', sans-serif;
  color: var(--steel-light);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  margin-bottom: 14px
}

/* VIDEO GALLERY EMBED RESPONSIVE */
.video-frame iframe {
  aspect-ratio: 16/9
}

/* PAGE HEADER (sub-pages) */
.page-hero {
  padding: 52px 0 40px;
  position: relative;
  overflow: hidden
}

@media(min-width:768px) {
  .page-hero {
    padding: 72px 0 56px
  }
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 20% 0%, rgba(232, 162, 61, .1), transparent 60%)
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .14em;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-bottom: 20px
}

.crumbs a {
  color: var(--bone-dim)
}

.crumbs a:hover {
  color: var(--amber)
}

.crumbs .sep {
  opacity: .5
}

.page-hero h1 .sub {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(14px, 2.2vw, 18px);
  letter-spacing: .12em;
  color: var(--bone-dim);
  margin-top: 12px;
  text-transform: uppercase;
  font-weight: 500
}

/* ACCESSORIES GRID */
.acc-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr))
}

.acc-card {
  padding: 22px;
  background: linear-gradient(180deg, var(--charcoal), #1F1C19);
  border: 1px solid var(--grid);
  border-radius: var(--radius-lg);
  transition: all .2s ease
}

.acc-card:hover {
  border-color: rgba(232, 162, 61, .3);
  transform: translateY(-3px)
}

.acc-card .icon {
  width: 40px;
  height: 40px;
  padding: 8px;
  color: var(--amber);
  background: rgba(232, 162, 61, .06);
  border-radius: 12px;
  border: 1px solid rgba(232, 162, 61, .2);
  margin-bottom: 16px
}

.acc-card h3 {
  font-size: 17px;
  margin-bottom: 6px
}

.acc-card p {
  font-size: 14px;
  color: var(--bone-dim);
  margin: 0 0 16px
}

.acc-card .price {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--ember);
  font-size: 26px;
  letter-spacing: .04em
}

/* STEPS (custom order, financing) */
.steps {
  display: grid;
  gap: 16px;
  counter-reset: st
}

@media(min-width:700px) {
  .steps {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr))
  }
}

.step {
  position: relative;
  padding: 26px 22px 24px;
  background: linear-gradient(180deg, var(--charcoal), #1F1C19);
  border: 1px solid var(--grid);
  border-radius: var(--radius-lg);
  overflow: hidden
}

.step .ic {
  width: 36px;
  height: 36px;
  padding: 7px;
  color: var(--ember);
  background: rgba(217, 83, 30, .08);
  border-radius: 10px;
  margin-bottom: 18px
}

.step h3 {
  font-size: 17px;
  margin-bottom: 8px;
  position: relative
}

.step p {
  font-size: 14px;
  color: var(--bone-dim);
  margin: 0
}

/* FINANCING CARDS */
.lender-cards {
  display: grid;
  gap: 18px;
  margin-top: 16px
}

@media(min-width:700px) {
  .lender-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr))
  }
}

.lender-card {
  padding: 26px;
  background: linear-gradient(180deg, var(--charcoal), #1F1C19);
  border: 1px solid var(--grid);
  border-radius: var(--radius-lg)
}

.lender-card h3 {
  font-size: 20px;
  margin-bottom: 4px;
  color: var(--amber)
}

.lender-card h4 {
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--steel-light);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 14px
}

.lender-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px
}

.lender-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--bone-dim)
}

.lender-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ember);
  margin-top: 8px;
  flex: none
}

.lender-card .apply {
  margin-top: 18px;
  display: flex
}

/* REDUCED MOTION */
@media(prefers-reduced-motion:reduce) {

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

  .prod-card:hover {
    transform: none
  }

  .btn-primary:hover {
    transform: none
  }
}

/* NO-JS */
.no-js .mobile-drawer {
  position: static;
  transform: none;
  width: 100%
}

.no-js .drawer-scrim {
  display: none
}

/* ── PRODUCTS A–Z SIDEBAR ─────────────────────────────────────────── */
.cat-side {
  position: sticky;
  top: 90px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--grid) transparent
}

.cat-side h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: .24em;
  color: var(--amber);
  text-transform: uppercase;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--grid)
}

.az-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px
}

.az-list li a {
  display: block;
  padding: 7px 10px;
  font-size: 13px;
  color: var(--bone-dim);
  border-radius: 6px;
  line-height: 1.3;
  transition: all .15s ease
}

.az-list li a:hover {
  color: var(--bone);
  background: rgba(255, 255, 255, .04)
}

.az-list li a.active {
  color: var(--amber);
  background: rgba(232, 162, 61, .08)
}

/* ── PRODUCT CARD PRICE BADGE ────────────────────────────────────── */
.prod-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap
}

.prod-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: .04em;
  color: var(--ember);
  line-height: 1
}

.prod-price.por {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  color: var(--steel-light);
  text-transform: uppercase;
  letter-spacing: .12em
}

/* ── GALLERY COLUMN (product detail) ────────────────────────────── */
.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.gallery-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--charcoal);
  aspect-ratio: 4/3;
  cursor: zoom-in
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .2s ease
}

.gallery-zoom-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(27, 26, 23, .72);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--bone);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .18s ease
}

.gallery-zoom-btn:hover {
  background: var(--ember);
  border-color: var(--ember);
  color: #1B1A17
}

/* Thumbnail strip */
.gallery-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.gallery-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .15s ease;
  width: 72px;
  height: 54px;
  flex: none;
  background: var(--charcoal)
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none
}

.gallery-thumb.active {
  border-color: var(--amber)
}

.gallery-thumb:hover:not(.active) {
  border-color: rgba(232, 162, 61, .45)
}

@media(min-width:640px) {
  .gallery-thumb {
    width: 90px;
    height: 68px
  }
}

/* ── PRICE BLOCK ─────────────────────────────────────────────────── */
.price-block {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 20px;
  margin: 20px 0;
  background: linear-gradient(135deg, rgba(217, 83, 30, .12), rgba(232, 162, 61, .06));
  border: 1px solid rgba(217, 83, 30, .28);
  border-radius: var(--radius-lg)
}

.price-label {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber);
  align-self: center
}

.price-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  letter-spacing: .02em;
  color: var(--ember);
  line-height: 1
}

.price-main.por {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  color: var(--steel-light);
  letter-spacing: .14em
}

.price-note {
  font-size: 12px;
  color: var(--steel-light);
  font-style: italic;
  width: 100%
}

/* ── SPEC TABLE ROWS ─────────────────────────────────────────────── */
.prod-specs {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  border: 1px solid var(--grid);
  border-radius: var(--radius-lg);
  overflow: hidden
}

.prod-specs li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  border-bottom: 1px solid var(--grid)
}

.prod-specs li:last-child {
  border-bottom: 0
}

.prod-specs .k {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--steel-light);
  padding: 12px 14px;
  background: rgba(255, 255, 255, .018);
  white-space: nowrap
}

.prod-specs .v {
  font-size: 14px;
  color: var(--bone);
  padding: 12px 14px
}

@media(max-width:519px) {
  .prod-specs li {
    grid-template-columns: 1fr
  }

  .prod-specs .k {
    border-bottom: 1px solid var(--grid);
    padding-bottom: 6px
  }

  .prod-specs .v {
    padding-top: 6px
  }
}

/* ── LIGHTBOX ────────────────────────────────────────────────────── */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 9, 8, .92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease
}

.gallery-lightbox.open {
  opacity: 1;
  pointer-events: auto
}

.gallery-lightbox[aria-hidden="true"] {
  display: none
}

.gallery-lightbox.open[aria-hidden="false"] {
  display: flex
}

.lb-img-wrap {
  max-width: min(1200px, 96vw);
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center
}

.lb-img-wrap img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .8)
}

.lb-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  color: var(--bone);
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 210;
  transition: all .15s ease
}

.lb-close:hover {
  background: var(--ember);
  border-color: var(--ember);
  color: #1B1A17
}

.lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  color: var(--bone);
  font-size: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 210;
  transition: all .15s ease
}

.lb-arrow:hover {
  background: var(--ember);
  border-color: var(--ember);
  color: #1B1A17
}

.lb-prev {
  left: 18px
}

.lb-next {
  right: 18px
}

@media(max-width:600px) {
  .lb-prev {
    left: 8px
  }

  .lb-next {
    right: 8px
  }

  .lb-arrow {
    width: 40px;
    height: 40px;
    font-size: 24px
  }
}

.lb-counter {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: .18em;
  color: var(--steel-light);
  text-transform: uppercase
}

/* ── RESPONSIVE ADJUSTMENTS ──────────────────────────────────────── */
@media(max-width:767px) {
  .gallery-lightbox {
    display: none !important
  }

  /* disable lb on very small screens */
  .gallery-zoom-btn {
    display: none
  }

  .prod-hero {
    grid-template-columns: 1fr !important
  }
}

/* ── CART DRAWER STYLES ─────────────────────────────────────────── */
.cart-drawer-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  backdrop-filter: blur(4px);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease
}

.cart-drawer-scrim.open {
  opacity: 1;
  pointer-events: auto
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, 100vw);
  background: var(--charcoal);
  border-left: 1px solid var(--grid);
  z-index: 910;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.16, 1, .3, 1);
  box-shadow: var(--shadow-lg)
}

.cart-drawer.open {
  transform: translateX(0)
}

.cart-drawer-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid var(--grid);
  border-radius: 12px;
  align-items: center
}