/* ═══════════════════════════════════════════════════════
   TruckBedShop — Raw American Industrial Design System
   Fonts: Oswald (display) + Source Serif 4 (body)
   Palette: Deep charcoal · Burnt copper · Warm white
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;1,8..60,400&display=swap');

/* ── TOKENS ───────────────────────────────────────────── */
:root {
  /* Palette */
  --ink:        #0e0e0f;
  --ink-90:     #161618;
  --ink-80:     #1e1e21;
  --ink-70:     #28282c;
  --ink-60:     #353539;
  --mid:        #5a5a62;
  --ash:        #8a8a94;
  --fog:        #b8b8c0;
  --chalk:      #e8e8ec;
  --white:      #f5f4f0;

  /* Brand */
  --copper:     #c8622a;
  --copper-lt:  #e07840;
  --copper-dk:  #9e4a1e;
  --copper-bg:  rgba(200,98,42,0.10);
  --copper-bdr: rgba(200,98,42,0.30);
  --rust:       #8b3a1a;
  --gold:       #c49a3c;

  /* Semantic */
  --success:    #2d7d52;
  --danger:     #b83232;

  /* Type */
  --f-display:  'Oswald', sans-serif;
  --f-body:     'Source Serif 4', Georgia, serif;

  /* Spacing scale */
  --sp-1: 4px;  --sp-2: 8px;   --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px;  --sp-8: 32px;  --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px; --sp-20: 80px;

  /* Radius */
  --r-sm: 3px;
  --r-md: 6px;
  --r-lg: 10px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0,0,0,.5), 0 0 0 1px rgba(0,0,0,.2);
  --shadow-md: 0 4px 20px rgba(0,0,0,.6);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.7);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  background: var(--ink);
  color: var(--chalk);
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ── LAYOUT ───────────────────────────────────────────── */
.wrap      { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 var(--sp-5); }
.wrap--sm  { max-width: 720px; }
.wrap--lg  { max-width: 1400px; }
.section   { padding: var(--sp-16) 0; }
.section--sm { padding: var(--sp-10) 0; }

/* ── ACCESSIBILITY ────────────────────────────────────── */
.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; }
.skip-link { position:absolute; top:-100%; left:var(--sp-5); z-index:9999; background:var(--copper); color:var(--white); font-family:var(--f-display); font-weight:600; font-size:14px; padding:10px 18px; border-radius:var(--r-md); }
.skip-link:focus { top:var(--sp-3); }

/* ── ANNOUNCEMENT ─────────────────────────────────────── */
.annbar {
  background: var(--copper-dk);
  color: var(--white);
  text-align: center;
  padding: 9px var(--sp-5);
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 200;
}
.annbar__close {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: rgba(255,255,255,.6);
  font-size: 18px; cursor: pointer;
  padding: 4px;
  line-height: 1;
}
.annbar__close:hover { color: white; }

/* ── NAVIGATION ───────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0; z-index: 100;
  background: var(--ink-90);
  border-bottom: 1px solid var(--ink-60);
  transition: box-shadow .3s;
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.8);
  border-bottom-color: var(--copper-bdr);
}
.nav__inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: var(--sp-4);
}
.nav__logo {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
  line-height: 1;
}
.nav__logo mark {
  background: var(--copper);
  color: var(--ink);
  padding: 1px 5px 2px;
  border-radius: 2px;
}
.nav__links {
  display: none;
  align-items: center;
  gap: var(--sp-6);
  margin-left: auto;
  margin-right: var(--sp-4);
}
.nav__links a {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fog);
  transition: color .2s;
  position: relative;
  padding-bottom: 2px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--copper);
  transition: width .25s var(--ease);
}
.nav__links a:hover,
.nav__links a[aria-current] { color: var(--white); }
.nav__links a:hover::after,
.nav__links a[aria-current]::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: var(--sp-2); margin-left: auto; }
.nav__cart {
  position: relative;
  background: none;
  color: var(--chalk);
  font-size: 22px;
  padding: var(--sp-2);
  border-radius: var(--r-md);
  transition: color .2s;
}
.nav__cart:hover { color: var(--copper-lt); }
.nav__cart-count {
  position: absolute;
  top: 2px; right: 2px;
  width: 16px; height: 16px;
  background: var(--copper);
  color: var(--ink);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 9px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.nav__ham {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  border: 1px solid var(--ink-60);
  padding: 0 9px;
  transition: border-color .2s;
  flex-shrink: 0;
}
.nav__ham:hover { border-color: var(--copper); }
.nav__ham span {
  display: block;
  height: 1.5px;
  background: var(--chalk);
  border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
  transform-origin: center;
}
.nav__ham[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__ham[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.nav__ham[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__cta {
  display: none;
  background: var(--copper);
  color: var(--ink);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: var(--r-sm);
  transition: background .2s, transform .15s;
}
.nav__cta:hover { background: var(--copper-lt); transform: translateY(-1px); }

/* Mobile drawer */
.nav__drawer {
  display: none;
  flex-direction: column;
  background: var(--ink-80);
  border-top: 1px solid var(--ink-60);
  padding: var(--sp-4) var(--sp-5) var(--sp-6);
}
.nav__drawer.open { display: flex; }
.nav__drawer a {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fog);
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-60);
  display: flex; align-items: center; justify-content: space-between;
  transition: color .2s;
}
.nav__drawer a::after { content: '→'; font-size: 16px; opacity: .4; transition: opacity .2s, transform .2s; }
.nav__drawer a:hover { color: var(--copper-lt); }
.nav__drawer a:hover::after { opacity: 1; transform: translateX(4px); }
.nav__drawer a:last-child { border-bottom: none; }
.nav__drawer-cta {
  margin-top: var(--sp-5);
  background: var(--copper);
  color: var(--ink);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px;
  border-radius: var(--r-sm);
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
  width: 100%;
  transition: background .2s;
}
.nav__drawer-cta:hover { background: var(--copper-lt); }

@media (min-width: 900px) {
  .nav__links  { display: flex; }
  .nav__cta    { display: block; }
  .nav__ham    { display: none; }
  .nav__actions { margin-left: 0; }
}

/* ── TYPOGRAPHY UTILS ─────────────────────────────────── */
.eyebrow {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--copper);
  flex-shrink: 0;
}
.h-display {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.h-display--xl { font-size: clamp(52px, 13vw, 110px); }
.h-display--lg { font-size: clamp(38px, 8vw, 72px); }
.h-display--md { font-size: clamp(28px, 5vw, 48px); }
.h-display--sm { font-size: clamp(22px, 4vw, 32px); }

.text-copper { color: var(--copper); }
.text-ash    { color: var(--ash); }
.text-fog    { color: var(--fog); }

/* ── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn:active { transform: scale(0.98); }
.btn--primary { background: var(--copper); color: var(--ink); }
.btn--primary:hover { background: var(--copper-lt); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(200,98,42,.35); }
.btn--ghost {
  background: transparent;
  color: var(--chalk);
  border: 1px solid var(--ink-60);
}
.btn--ghost:hover { border-color: var(--copper); color: var(--copper-lt); }
.btn--sm { font-size: 12px; padding: 10px 18px; }
.btn--lg { font-size: 15px; padding: 17px 32px; }
.btn--full { width: 100%; }
.btn--dark { background: var(--ink-70); color: var(--chalk); }
.btn--dark:hover { background: var(--ink-60); }

/* ── PRODUCT CARDS ────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 480px)  { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

.pcard {
  background: var(--ink-80);
  border: 1px solid var(--ink-60);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s;
  position: relative;
}
.pcard:hover { border-color: var(--copper-bdr); transform: translateY(-3px); }

.pcard__img {
  aspect-ratio: 4/3;
  background: var(--ink-70);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  position: relative;
  overflow: hidden;
}
.pcard__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(14,14,15,.5));
}
.pcard__badge {
  position: absolute;
  top: var(--sp-3); left: var(--sp-3);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 1;
}
.pcard__badge--gold { background: var(--gold); color: var(--ink); }
.pcard__badge--copper { background: var(--copper); color: var(--ink); }
.pcard__badge--teal { background: #1d7c70; color: white; }
.pcard__badge--usa { background: #2a4a8a; color: white; }

.pcard__body { padding: var(--sp-4); flex: 1; display: flex; flex-direction: column; }
.pcard__brand {
  font-family: var(--f-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: var(--sp-1);
}
.pcard__name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--sp-2);
}
.pcard__desc { font-size: 13px; color: var(--ash); line-height: 1.55; flex: 1; margin-bottom: var(--sp-3); }
.pcard__stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; margin-bottom: var(--sp-3); }
.pcard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--ink-60);
}
.pcard__price {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  line-height: 1;
}
.pcard__price sup { font-size: 12px; vertical-align: super; }
.pcard__price-range { font-size: 11px; color: var(--ash); font-family: var(--f-display); }
.pcard__add {
  background: var(--copper);
  color: var(--ink);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  flex-shrink: 0;
}
.pcard__add:hover { background: var(--copper-lt); }
.pcard__add.added { background: var(--success); color: white; }

/* ── CATEGORY CARDS ───────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}
@media (min-width: 600px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .cat-grid { grid-template-columns: repeat(5, 1fr); } }

.cat-card {
  background: var(--ink-80);
  border: 1px solid var(--ink-60);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-4);
  text-align: center;
  cursor: pointer;
  transition: border-color .25s, background .25s, transform .25s;
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.cat-card:hover { border-color: var(--copper-bdr); background: var(--ink-70); transform: translateY(-2px); }
.cat-card:hover::before { transform: scaleX(1); }

.cat-card__icon {
  font-size: 36px;
  margin-bottom: var(--sp-3);
  display: block;
}
.cat-card__name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--chalk);
  margin-bottom: var(--sp-1);
  line-height: 1.2;
}
.cat-card__sub { font-size: 11px; color: var(--ash); font-family: var(--f-display); letter-spacing: 0.04em; }
.cat-card--featured { border-color: var(--copper-bdr); background: var(--copper-bg); }
.cat-card--featured .cat-card__name { color: var(--copper-lt); }

/* ── YMM FINDER ───────────────────────────────────────── */
.ymm {
  background: var(--ink-80);
  border: 1px solid var(--ink-60);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  position: relative;
  overflow: hidden;
}
.ymm::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--copper-lt), var(--copper));
}
.ymm__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: var(--sp-5);
}
.ymm__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}
@media (min-width: 600px) {
  .ymm__grid { grid-template-columns: 1fr 1fr 1fr auto; align-items: end; }
}
.field { display: flex; flex-direction: column; gap: var(--sp-2); }
.field label {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ash);
}
.field select,
.field input {
  width: 100%;
  background: var(--ink-70);
  border: 1px solid var(--ink-60);
  border-radius: var(--r-sm);
  color: var(--chalk);
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 14px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%235a5a62'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color .2s;
}
.field select:focus,
.field input:focus { outline: none; border-color: var(--copper); }
.field select:disabled { opacity: .4; cursor: not-allowed; }
.field select option { background: var(--ink-70); }
.ymm__btn {
  background: var(--copper);
  color: var(--ink);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
  width: 100%;
  margin-top: var(--sp-1);
}
.ymm__btn:hover { background: var(--copper-lt); transform: translateY(-1px); }
@media (min-width: 600px) {
  .ymm__btn { margin-top: 0; width: auto; align-self: flex-end; padding: 13px 24px; }
}
.ymm__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}
.ymm__chip {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fog);
  background: var(--ink-70);
  border: 1px solid var(--ink-60);
  padding: 6px 14px;
  border-radius: 100px;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
}
.ymm__chip:hover { background: var(--copper-bg); border-color: var(--copper-bdr); color: var(--copper-lt); }

/* ── FILTER TABS ──────────────────────────────────────── */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}
.tab {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--ink-60);
  color: var(--ash);
  background: transparent;
  cursor: pointer;
  transition: all .2s;
}
.tab:hover { border-color: var(--copper-bdr); color: var(--fog); }
.tab.active { background: var(--copper); border-color: var(--copper); color: var(--ink); }

/* ── STAT BLOCKS ──────────────────────────────────────── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--ink-60);
  border: 1px solid var(--ink-60);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (min-width: 600px) { .stats-strip { grid-template-columns: repeat(4, 1fr); } }

.stat-block {
  background: var(--ink-80);
  padding: var(--sp-6) var(--sp-5);
  text-align: center;
}
.stat-block__num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(26px, 5vw, 40px);
  color: var(--copper);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat-block__label { font-size: 12px; color: var(--ash); line-height: 1.4; }

/* ── BRAND CARDS ──────────────────────────────────────── */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
@media (min-width: 600px)  { .brands-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 900px)  { .brands-grid { grid-template-columns: repeat(6, 1fr); } }
@media (min-width: 1200px) { .brands-grid { grid-template-columns: repeat(8, 1fr); } }

.brand-card {
  background: var(--ink-80);
  border: 1px solid var(--ink-60);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-3);
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, transform .2s;
  text-decoration: none;
  display: block;
}
.brand-card:hover { border-color: var(--copper-bdr); transform: translateY(-2px); }
.brand-card__init {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: var(--copper-bg);
  border: 1px solid var(--copper-bdr);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--copper);
  margin: 0 auto var(--sp-2);
}
.brand-card__name {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--chalk);
  margin-bottom: 2px;
  line-height: 1.2;
}
.brand-card__type { font-size: 10px; color: var(--mid); }

/* ── BLOG / GUIDE CARDS ───────────────────────────────── */
.guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 640px) { .guide-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .guide-grid { grid-template-columns: repeat(3, 1fr); } }

.guide-card {
  background: var(--ink-80);
  border: 1px solid var(--ink-60);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .25s, transform .2s;
  text-decoration: none; color: inherit;
}
.guide-card:hover { border-color: var(--copper-bdr); transform: translateY(-2px); }
.guide-card__thumb {
  height: 120px;
  background: var(--ink-70);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
  border-bottom: 1px solid var(--ink-60);
}
.guide-card__body { padding: var(--sp-5); flex: 1; display: flex; flex-direction: column; }
.guide-card__tag {
  font-family: var(--f-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  background: var(--copper-bg);
  padding: 3px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: var(--sp-3);
  width: fit-content;
}
.guide-card__kd {
  font-family: var(--f-display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: rgba(45,125,82,.2);
  color: #4caf7f;
  padding: 2px 7px;
  border-radius: 2px;
  margin-left: var(--sp-2);
}
.guide-card__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--chalk);
  line-height: 1.25;
  margin-bottom: var(--sp-2);
  flex: 1;
}
.guide-card__excerpt { font-size: 13px; color: var(--ash); line-height: 1.6; margin-bottom: var(--sp-4); }
.guide-card__read {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  display: flex; align-items: center; gap: var(--sp-2);
  transition: gap .2s;
}
.guide-card:hover .guide-card__read { gap: var(--sp-3); }

/* ── WHY CARDS ────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 600px)  { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

.why-card {
  background: var(--ink-80);
  border: 1px solid var(--ink-60);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-5);
  position: relative;
  overflow: hidden;
}
.why-card__icon { font-size: 30px; margin-bottom: var(--sp-4); display: block; }
.why-card__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-2);
}
.why-card__desc { font-size: 14px; color: var(--ash); line-height: 1.65; }

/* ── TICKER ───────────────────────────────────────────── */
.ticker {
  background: var(--copper);
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
}
.ticker__track {
  display: flex;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
}
.ticker__track:hover { animation-play-state: paused; }
.ticker__item {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 var(--sp-8);
  flex-shrink: 0;
}
.ticker__sep { opacity: .5; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── DIAGONAL DIVIDERS ────────────────────────────────── */
.diag-top {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 32px), 0 100%);
  padding-bottom: var(--sp-8);
}
.diag-btm {
  clip-path: polygon(0 32px, 100% 0, 100% 100%, 0 100%);
  padding-top: var(--sp-8);
  margin-top: -32px;
}

/* ── SEARCH ───────────────────────────────────────────── */
.search-wrap {
  position: relative;
  max-width: 560px;
}
.search-input {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--ink-60);
  border-radius: var(--r-sm);
  color: var(--chalk);
  font-family: var(--f-body);
  font-size: 15px;
  padding: 14px 52px 14px 18px;
  transition: border-color .2s, background .2s;
}
.search-input::placeholder { color: var(--mid); }
.search-input:focus { outline: none; border-color: var(--copper); background: rgba(255,255,255,.09); }
.search-btn {
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  background: var(--copper);
  border: none;
  border-radius: 4px;
  color: var(--ink);
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 17px;
  transition: background .2s;
}
.search-btn:hover { background: var(--copper-lt); }
.search-dropdown {
  position: absolute;
  top: calc(100% + 4px); left: 0; right: 0;
  background: var(--ink-70);
  border: 1px solid var(--ink-60);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  z-index: 50;
  display: none;
}
.search-dropdown.open { display: block; }
.search-suggestion {
  padding: 11px 16px;
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--chalk);
  cursor: pointer;
  border-bottom: 1px solid var(--ink-60);
  transition: background .15s;
}
.search-suggestion:last-child { border-bottom: none; }
.search-suggestion:hover { background: var(--ink-60); color: var(--copper-lt); }

/* ── TOAST ────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: var(--sp-6); left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 24px));
  background: var(--ink-70);
  border: 1px solid var(--copper-bdr);
  border-left: 3px solid var(--copper);
  color: var(--chalk);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 14px 22px;
  border-radius: var(--r-md);
  z-index: 9999;
  transition: transform .35s var(--ease);
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
  pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── SCROLL REVEAL ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

/* ── BACK TO TOP ──────────────────────────────────────── */
.btt {
  position: fixed;
  bottom: var(--sp-6); right: var(--sp-5);
  width: 44px; height: 44px;
  background: var(--ink-70);
  border: 1px solid var(--copper-bdr);
  border-radius: 50%;
  color: var(--copper);
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: opacity .3s, background .2s;
  z-index: 500;
}
.btt.show { opacity: 1; pointer-events: all; }
.btt:hover { background: var(--ink-60); }

/* ── DIVIDER ──────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--ink-60);
  margin: var(--sp-10) 0;
}

/* ── TABLE ────────────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.data-table th {
  background: var(--ink-70);
  color: var(--copper);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 14px;
  text-align: left;
  border-bottom: 2px solid var(--copper-bdr);
  white-space: nowrap;
}
.data-table td { padding: 11px 14px; border-bottom: 1px solid var(--ink-60); color: var(--fog); vertical-align: top; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: rgba(255,255,255,.02); }
.data-table td strong { color: var(--chalk); }
.kd-lo { color: #4caf7f; font-weight: 700; font-family: var(--f-display); }
.kd-md { color: var(--gold); font-weight: 700; font-family: var(--f-display); }
.kd-hi { color: #e87070; font-weight: 700; font-family: var(--f-display); }
.intent-buy  { background: rgba(45,125,82,.2); color: #4caf7f; padding: 2px 8px; border-radius: 2px; font-family: var(--f-display); font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.intent-info { background: rgba(50,100,200,.2); color: #7faff0; padding: 2px 8px; border-radius: 2px; font-family: var(--f-display); font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }

/* ── COST TABLE ───────────────────────────────────────── */
.cost-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--ink-60);
  gap: var(--sp-4);
}
.cost-row:last-child { border-bottom: none; }
.cost-label { font-family: var(--f-display); font-weight: 600; font-size: 15px; color: var(--chalk); }
.cost-note { font-size: 12px; color: var(--ash); margin-top: 3px; }
.cost-price { font-family: var(--f-display); font-weight: 700; font-size: 20px; color: var(--copper); flex-shrink: 0; }

/* ── BREADCRUMB ───────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: var(--sp-5);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--copper); transition: color .2s; }
.breadcrumb a:hover { color: var(--copper-lt); }
.breadcrumb span { opacity: .4; }

/* ── FAQ ──────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--ink-60); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--sp-5) 0;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--chalk);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: var(--sp-4);
  transition: color .2s;
  letter-spacing: 0.02em;
}
.faq-q:hover { color: var(--copper-lt); }
.faq-q__icon { font-size: 22px; color: var(--copper); flex-shrink: 0; transition: transform .3s; font-style: normal; font-family: monospace; }
.faq-item.open .faq-q__icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), padding .35s;
  font-size: 14px;
  color: var(--ash);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: var(--sp-5); }

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--ink-90);
  border-top: 1px solid var(--ink-60);
  padding: var(--sp-16) 0 var(--sp-6);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}
@media (min-width: 640px)  { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 2.5fr 1fr 1fr 1fr; } }

.footer__logo {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
  display: block;
}
.footer__logo mark { background: var(--copper); color: var(--ink); padding: 1px 5px 2px; border-radius: 2px; }
.footer__desc { font-size: 14px; color: var(--ash); line-height: 1.7; max-width: 280px; }
.footer__tag { margin-top: var(--sp-3); font-family: var(--f-display); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); }

.footer__col-head {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--chalk);
  margin-bottom: var(--sp-5);
  border-bottom: 1px solid var(--ink-60);
  padding-bottom: var(--sp-3);
}
.footer__links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__links a { font-size: 14px; color: var(--ash); transition: color .2s; }
.footer__links a:hover { color: var(--copper-lt); }

.footer__bottom {
  border-top: 1px solid var(--ink-60);
  padding-top: var(--sp-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer__copy { font-size: 12px; color: var(--mid); font-family: var(--f-display); letter-spacing: 0.04em; }
.footer__legal { display: flex; gap: var(--sp-5); }
.footer__legal a { font-size: 12px; color: var(--mid); font-family: var(--f-display); letter-spacing: 0.04em; transition: color .2s; }
.footer__legal a:hover { color: var(--ash); }

/* ── SEASONAL BANNER ──────────────────────────────────── */
.seasonal {
  background: linear-gradient(135deg, var(--copper-dk) 0%, var(--copper) 60%, var(--copper-lt) 100%);
  padding: var(--sp-12) 0;
}
.seasonal__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-6); flex-wrap: wrap; }
.seasonal h2 { font-family: var(--f-display); font-weight: 700; font-size: clamp(28px,6vw,52px); text-transform: uppercase; color: var(--ink); line-height: 1; }
.seasonal p { font-family: var(--f-body); font-size: 15px; color: rgba(0,0,0,.65); margin-top: var(--sp-2); }

/* ── INLINE DATA HIGHLIGHT ────────────────────────────── */
.data-highlight {
  background: var(--copper-bg);
  border: 1px solid var(--copper-bdr);
  border-left: 3px solid var(--copper);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  font-size: 14px;
  color: var(--fog);
  line-height: 1.65;
}
.data-highlight strong { color: var(--copper-lt); }

/* ── MOBILE NAV CART BADGE TEXT ───────────────────────── */
@media (max-width: 380px) {
  .nav__logo { font-size: 17px; }
  .h-display--xl { font-size: 44px; }
}
