/* ==========================================================================
   NeSmith Decals — Premium Design System  ·  BLACK + CHROME DARK MODE
   Bruce Wayne / luxury-garage aesthetic: deep black, chrome/silver accents,
   blood-red highlights, metallic-gold star pops.
   ========================================================================== */

:root {
  /* surfaces */
  --black:     #0c0d0f;   /* base background */
  --charcoal:  #131418;   /* alternating sections */
  --surface:   #191b20;   /* cards */
  --surface-2: #20242b;   /* elevated / hover */
  --footer:    #08090a;

  /* text */
  --heading:   #ffffff;
  --text:      #e4e6ea;
  --body:      #b7bcc4;
  --muted:     #8b9099;

  /* metals + accents */
  --chrome:    #cdd2da;
  --chrome-2:  #8f96a1;
  --chrome-grad: linear-gradient(180deg,#f6f8fa 0%,#c4cad3 42%,#9aa1ac 58%,#e8ebef 100%);
  --red:       #c8102e;   /* blood red — primary action */
  --red-deep:  #9b0c23;
  --gold:      #c2a15a;   /* metallic gold — used sparingly (stars) */

  /* lines */
  --line:      rgba(255,255,255,0.12);
  --line-soft: rgba(255,255,255,0.06);

  /* type */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* spacing + motion */
  --container: 1200px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,.45);
  --shadow-md: 0 16px 44px rgba(0,0,0,.55);
  --shadow-lg: 0 30px 80px rgba(0,0,0,.65);
  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 76px;
}

/* ---- reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--black);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
::selection { background: var(--red); color: #fff; }

/* ---- typography ---- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; color: var(--heading); }
.h-display { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p { color: var(--body); }
.lead { font-size: 1.18rem; color: var(--text); }

.eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--chrome);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--chrome); display: inline-block; }
.eyebrow.center::after { content: ""; width: 28px; height: 2px; background: var(--chrome); display: inline-block; }
.eyebrow.center { justify-content: center; }

.script { font-family: var(--font-display); font-style: italic; color: var(--chrome); }

/* chrome metallic text accent */
.chrome-text {
  background: var(--chrome-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---- layout ---- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head p { margin-top: 1rem; color: var(--muted); }
.bg-cream-2 { background: var(--charcoal); }
.bg-paper { background: var(--charcoal); }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.7rem; border-radius: 6px;
  font-weight: 600; font-size: .95rem; letter-spacing: .02em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--chrome-grad); color: #14161a; box-shadow: 0 8px 22px rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.35); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,.6); filter: brightness(1.06); }
/* metallic chrome button (class kept as --gold for markup compatibility) */
.btn--gold { background: var(--chrome-grad); color: #14161a; box-shadow: 0 8px 22px rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.35); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,.6); filter: brightness(1.05); }
.btn--ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn--ghost:hover { border-color: var(--chrome); color: #fff; transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(4px); }
.btn--light:hover { background: rgba(255,255,255,.16); border-color: var(--chrome); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--sm { padding: .7rem 1.2rem; font-size: .85rem; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h); display: flex; align-items: center;
  background: rgba(12,13,15,.72); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: background .3s, border-color .3s, box-shadow .3s;
}
.site-header.scrolled { background: rgba(12,13,15,.94); border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(0,0,0,.5); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.brand img { height: 40px; width: auto; }
.brand-mark { display: inline-flex; flex: none; }
/* chrome "N" logo image — screen blend dissolves the solid-black background
   so only the metallic N reads against the dark header/footer (seamless, no box) */
.n-mark { display: block; object-fit: contain; mix-blend-mode: screen; }
.brand-mark .n-mark { width: 40px; height: 40px; }
.foot-brand { display: flex; align-items: center; gap: .6rem; }
.foot-brand .brand-mark--foot .n-mark { width: 36px; height: 36px; }
.brand .brand-word {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; letter-spacing: .02em;
  white-space: nowrap;
  background: var(--chrome-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.brand .brand-word .dot { color: #ffffff; -webkit-text-fill-color: #ffffff; }
.nav { display: flex; align-items: center; gap: 1rem; }
.nav a { font-size: .88rem; font-weight: 500; color: var(--text); position: relative; padding: .3rem 0; transition: color .25s; white-space: nowrap; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--chrome); transition: width .3s var(--ease); }
.nav a:hover, .nav a[aria-current="page"] { color: #fff; }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: .6rem; }
.header-phone { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem .9rem; border: 1px solid var(--line); border-radius: 100px; font-size: .9rem; font-weight: 600; letter-spacing: .01em; color: var(--text); white-space: nowrap; transition: border-color .25s, color .25s, background .25s; }
.header-phone svg { width: 16px; height: 16px; color: var(--chrome); }
.header-phone:hover { border-color: var(--chrome); color: #fff; background: rgba(255,255,255,.04); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--chrome); transition: transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1200px) {
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--charcoal); border-bottom: 1px solid var(--line);
    padding: .5rem 0; box-shadow: var(--shadow-md);
    transform: translateY(-120%); transition: transform .4s var(--ease); pointer-events: none;
  }
  .nav.open { transform: translateY(0); pointer-events: auto; }
  .nav a { padding: 1rem clamp(20px,5vw,40px); border-bottom: 1px solid var(--line-soft); }
  .nav a::after { display: none; }
  .header-cta .btn:not(.nav-toggle) { display: none; }
  .nav-toggle { display: flex; }
}

.page-pad { padding-top: var(--header-h); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; padding-top: calc(var(--header-h) + clamp(40px,7vw,90px));
  padding-bottom: clamp(60px, 9vw, 120px);
  background: radial-gradient(120% 120% at 82% 0%, #20242b 0%, #101216 42%, #08090b 100%);
  color: var(--text); overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .45; pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; right: -10%; top: -20%; width: 50%; height: 140%;
  background: radial-gradient(circle, rgba(205,212,222,.12), transparent 60%); pointer-events: none;
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px,5vw,72px); align-items: stretch; }
.hero h1 { color: #fff; margin: 1.2rem 0 1.3rem; }
.hero h1 em { font-style: italic; background: var(--chrome-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.hero p { color: var(--body); font-size: 1.15rem; max-width: 30em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-meta { display: flex; gap: 2.4rem; margin-top: 2.6rem; padding-top: 1.8rem; border-top: 1px solid var(--line); }
.hero-meta .num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: #fff; }
.hero-meta .lbl { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

.hero-figure { position: relative; display: flex; }
/* Image fills the full grid-row height so its top/bottom edges align with the
   text column — balanced premium split-hero, never distorted (object-fit:cover).
   min-height is a floor so it can't collapse if the copy is ever short. */
.hero-figure img { width: 100%; height: 100%; min-height: clamp(420px,44vw,600px); object-fit: cover; object-position: center; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.hero-figure::before { content: ""; position: absolute; inset: -14px -14px auto auto; width: 70px; height: 70px; border-top: 2px solid var(--chrome); border-right: 2px solid var(--chrome); border-radius: 0 var(--radius-lg) 0 0; }
.hero-figure::after { content: ""; position: absolute; inset: auto auto -14px -14px; width: 70px; height: 70px; border-bottom: 2px solid var(--chrome); border-left: 2px solid var(--chrome); border-radius: 0 0 0 var(--radius-lg); }
.hero-badge { position: absolute; left: -22px; bottom: 32px; background: var(--surface); color: var(--text); padding: .9rem 1.2rem; border-radius: 10px; box-shadow: var(--shadow-md); display: flex; gap: .7rem; align-items: center; max-width: 240px; border: 1px solid var(--line); }
.hero-badge .stars { color: var(--gold); font-size: .9rem; letter-spacing: 2px; }
.hero-badge small { display: block; color: var(--muted); font-size: .76rem; }
.hero-badge strong { font-size: .92rem; color: #fff; }

@media (max-width: 920px) {
  .hero .container { grid-template-columns: 1fr; align-items: center; }
  .hero-figure { order: -1; max-width: 520px; }
  /* mobile keeps its own tuned height — reset the desktop floor so it isn't forced taller */
  .hero-figure img { height: clamp(300px,70vw,440px); min-height: 0; }
}

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.trust { background: #000; border-block: 1px solid var(--line-soft); color: var(--text); }
.trust .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 2.6rem; padding-block: 1.1rem; text-align: center; }
.trust span { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); display: inline-flex; align-items: center; gap: .7rem; }
.trust span::before { content: "◆"; color: var(--chrome); font-size: .6rem; }

/* ==========================================================================
   PRODUCT CARDS
   ========================================================================== */
.grid { display: grid; gap: clamp(20px,2.5vw,32px); }
.grid--3 { grid-template-columns: repeat(3,1fr); }
.grid--4 { grid-template-columns: repeat(4,1fr); }
.grid--2 { grid-template-columns: repeat(2,1fr); }

.card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line); }
.card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--charcoal); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }
.card-tag { position: absolute; top: 12px; left: 12px; background: rgba(12,13,15,.78); color: var(--chrome); border: 1px solid rgba(255,255,255,.25); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; padding: .35rem .7rem; border-radius: 4px; backdrop-filter: blur(4px); }
.card-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.28rem; margin-bottom: .4rem; }
.card-body .desc { color: var(--muted); font-size: .92rem; flex: 1; }
.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.3rem; }
.price { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: #fff; }
.price small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

/* ==========================================================================
   SPLIT FEATURE
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,6vw,90px); align-items: center; }
.split--reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; height: clamp(360px,46vw,540px); object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.split-media .frame-accent { position: absolute; inset: 18px 18px auto auto; width: 100%; height: 100%; border: 1px solid var(--chrome); border-radius: var(--radius-lg); z-index: -1; }
.split-body h2 { margin: 1rem 0 1.2rem; }
.split-body p + p { margin-top: 1rem; }
.signature { margin-top: 1.6rem; font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--chrome); }
.stat-row { display: flex; gap: 2.4rem; margin: 2rem 0; flex-wrap: wrap; }
.stat-row .num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: #fff; }
.stat-row .lbl { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2,1fr); }
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
/* Uniform grid — every tile the same 4:3 height, images cropped clean with
   object-fit:cover so the gallery reads balanced and premium (no masonry). */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px,2vw,22px); }
.gallery .shot { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); cursor: zoom-in; border: 1px solid var(--line-soft); background: var(--charcoal); }
.gallery .shot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s var(--ease); }
.gallery .shot:hover img { transform: scale(1.05); }
.gallery .shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.5), transparent 45%); opacity: 0; transition: opacity .4s; pointer-events: none; }
.gallery .shot:hover::after { opacity: 1; }
/* auto-gallery "fresh drop" caption overlay (title/blurb/date) */
.gallery .shot--fresh .shot-meta { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: .9rem .9rem .85rem; display: flex; flex-direction: column; gap: .12rem; background: linear-gradient(to top, rgba(8,9,11,.92), rgba(8,9,11,.55) 55%, transparent); opacity: 0; transform: translateY(8px); transition: opacity .4s var(--ease), transform .4s var(--ease); pointer-events: none; }
.gallery .shot--fresh:hover .shot-meta { opacity: 1; transform: none; }
.gallery .shot-title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: #fff; line-height: 1.2; }
.gallery .shot-blurb { font-size: .8rem; color: var(--body); line-height: 1.35; }
.gallery .shot-date { font-size: .7rem; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-top: .1rem; }
.filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2.4rem; }
.filter-bar button { padding: .55rem 1.2rem; border-radius: 100px; border: 1px solid var(--line); font-size: .85rem; font-weight: 500; color: var(--muted); transition: all .25s; background: transparent; }
.filter-bar button:hover { border-color: var(--chrome); color: #fff; }
.filter-bar button.active { background: var(--chrome-grad); color: #14161a; border-color: transparent; font-weight: 600; }

@media (max-width: 820px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
/* keep 2 columns on phones — balanced, premium, no awkward single column */
@media (max-width: 520px) { .gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.94); display: none; align-items: center; justify-content: center; padding: 4vw; backdrop-filter: blur(6px); }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox .lb-close { position: absolute; top: 24px; right: 28px; color: #fff; font-size: 2rem; line-height: 1; opacity: .8; }
.lightbox .lb-close:hover { opacity: 1; color: var(--chrome); }

/* ==========================================================================
   STEPS
   ========================================================================== */
.steps { counter-reset: step; }
.step { position: relative; padding: 2rem 1.8rem; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); transition: transform .35s var(--ease), box-shadow .35s, border-color .3s; }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: var(--line); }
.step .step-num { counter-increment: step; font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; line-height: 1; background: var(--chrome-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.step .step-num::before { content: "0" counter(step); }
.step h3 { font-size: 1.25rem; margin: .8rem 0 .5rem; }
.step p { color: var(--muted); font-size: .95rem; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band { position: relative; background: radial-gradient(120% 140% at 20% 0%, #20242b, #101216 45%, #08090b); color: var(--text); overflow: hidden; text-align: center; border-block: 1px solid var(--line-soft); }
.cta-band::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 22px 22px; opacity: .45; }
.cta-band::after { content: ""; position: absolute; left: -8%; bottom: -40%; width: 45%; height: 130%; background: radial-gradient(circle, rgba(205,212,222,.10), transparent 60%); pointer-events: none; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; max-width: 16em; margin-inline: auto; }
.cta-band h2 em { font-style: italic; background: var(--chrome-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.cta-band p { color: var(--body); max-width: 36em; margin: 1.2rem auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(24px,4vw,48px); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 1.4rem; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.field label .req { color: var(--chrome); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--text);
  padding: .85rem 1rem; border: 1px solid var(--line); border-radius: 6px; background: #0f1115; transition: border-color .25s, box-shadow .25s;
}
.field select option { background: #0f1115; color: var(--text); }
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: #6b7079; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--chrome); box-shadow: 0 0 0 3px rgba(205,212,222,.20); }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 1.2rem; }
.form-success { display: none; padding: 2.5rem 1.5rem; text-align: center; }
.form-success.show { display: block; }
.form-success .check { width: 56px; height: 56px; margin: 0 auto 1rem; border-radius: 50%; background: var(--chrome-grad); color: #14161a; display: grid; place-items: center; font-size: 1.6rem; }

@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* contact info */
.info-list { display: flex; flex-direction: column; gap: 1.6rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-item .ico { flex: none; width: 44px; height: 44px; border-radius: 10px; background: var(--surface-2); color: var(--chrome); display: grid; place-items: center; border: 1px solid var(--line-soft); }
.info-item .ico svg { width: 20px; height: 20px; }
.info-item h4 { font-family: var(--font-body); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.info-item a, .info-item p { font-size: 1.05rem; color: var(--text); }

/* pricing table */
.price-table { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); }
.price-table th, .price-table td { padding: 1rem 1.4rem; text-align: left; border-bottom: 1px solid var(--line-soft); }
.price-table thead th { background: var(--chrome-grad); color: #14161a; font-family: var(--font-body); font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover { background: var(--surface-2); }
.price-table td { color: var(--text); }
.price-table td:first-child { font-weight: 600; color: #fff; }
.price-note { margin-top: 1.2rem; font-size: .9rem; color: var(--muted); }

/* page hero */
.page-hero { background: radial-gradient(120% 140% at 80% 0%, #20242b, #101216 45%, #08090b); color: var(--text); padding-top: calc(var(--header-h) + clamp(48px,7vw,80px)); padding-bottom: clamp(48px,7vw,80px); position: relative; overflow: hidden; border-bottom: 1px solid var(--line-soft); }
.page-hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 22px 22px; opacity: .45; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin: 1rem 0 .8rem; font-size: clamp(2.4rem,5vw,3.6rem); }
.page-hero p { color: var(--body); max-width: 42em; font-size: 1.12rem; }
.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: .4rem; }
.breadcrumb a:hover { color: var(--chrome); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--footer); color: var(--muted); padding-top: clamp(56px,7vw,84px); border-top: 1px solid var(--line-soft); }
.site-footer .foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.site-footer .brand-word { color: #fff; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.site-footer .foot-about { margin-top: 1rem; font-size: .95rem; color: var(--muted); max-width: 30ch; }
.site-footer h5 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.2rem; }
.site-footer .foot-links a { display: block; padding: .35rem 0; color: var(--muted); font-size: .95rem; transition: color .25s, padding-left .25s; }
.site-footer .foot-links a:hover { color: var(--chrome); padding-left: 4px; }
.site-footer .foot-contact a, .site-footer .foot-contact p { color: var(--muted); font-size: .95rem; display: block; margin-bottom: .6rem; }
.site-footer .foot-contact a:hover { color: var(--chrome); }
.socials { display: flex; gap: .7rem; margin-top: 1.2rem; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--text); transition: all .25s; }
.socials a:hover { background: var(--chrome); border-color: var(--chrome); color: #14161a; transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }
.foot-bottom { border-top: 1px solid var(--line-soft); padding-block: 1.6rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; font-size: .82rem; color: #6b7079; }
.foot-bottom a:hover { color: var(--chrome); }

@media (max-width: 820px) { .site-footer .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .site-footer .foot-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   REVEAL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---- helpers ---- */
.text-center { text-align: center; }
.mt-2 { margin-top: 1.4rem; }
.mt-3 { margin-top: 2rem; }
.muted { color: var(--muted); }
.divider { height: 1px; background: var(--line); border: none; margin: 0; }

/* ==========================================================================
   SHOP — swatches · sticky category nav · quick-view modal
   ========================================================================== */
.swatches { display: flex; flex-wrap: wrap; gap: .45rem; align-items: center; }
.swatches--mini { margin: .3rem 0 1.1rem; }
.swatch { width: 22px; height: 22px; border-radius: 50%; border: 1px solid rgba(255,255,255,.32); cursor: pointer; transition: transform .2s; }
.swatch:hover { transform: scale(1.14); }
.swatch--dot { width: 15px; height: 15px; cursor: default; }
.swatch.sel { box-shadow: 0 0 0 2px var(--surface), 0 0 0 4px var(--chrome); }
.swatch-more { font-size: .72rem; color: var(--muted); align-self: center; padding-left: .15rem; }

.card-media--mono { display: grid; place-items: center; background: radial-gradient(120% 120% at 70% 10%, #20242b, #0c0d0f); cursor: zoom-in; }
.card-media--mono img { width: 42%; height: auto; border-radius: 8px; opacity: .92; }
.card-media { cursor: zoom-in; }
.price--text { font-size: 1.05rem; }
.card .desc { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.cat-nav { position: sticky; top: var(--header-h); z-index: 40; display: flex; gap: .5rem; overflow-x: auto; padding: .9rem 0; margin-bottom: .4rem; background: rgba(12,13,15,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.cat-nav::-webkit-scrollbar { height: 0; }
.cat-nav a { white-space: nowrap; padding: .5rem 1.05rem; border: 1px solid var(--line); border-radius: 100px; font-size: .85rem; font-weight: 500; color: var(--muted); transition: all .25s; }
.cat-nav a:hover { color: var(--text); border-color: var(--chrome-2); }
.cat-nav a.active { background: var(--chrome-grad); color: #14161a; border-color: transparent; font-weight: 600; }
.cat-section { padding-top: 2.6rem; scroll-margin-top: calc(var(--header-h) + 74px); }
.cat-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.3rem; border-bottom: 1px solid var(--line-soft); padding-bottom: .6rem; }
.cat-count { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
/* category section note (e.g. Truck Club — "upload your own image…") */
.cat-note { margin: -.55rem 0 1.7rem; padding: .35rem 0 .35rem 14px; border-left: 2px solid #c9a14a; color: #c2c7d0; font-size: .96rem; line-height: 1.6; max-width: 720px; }
@media (max-width: 560px){ .cat-note { font-size: .92rem; margin: -.35rem 0 1.4rem; } }

.qv-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(8,9,11,.86); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 4vw; }
.qv-overlay.open { display: flex; }
.qv { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); width: 100%; max-width: 900px; max-height: 90vh; overflow: auto; display: grid; grid-template-columns: 1fr 1fr; box-shadow: var(--shadow-lg); }
.qv-media { background: var(--charcoal); }
.qv-media img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }
.qv-mono { height: 100%; min-height: 340px; display: grid; place-items: center; background: radial-gradient(120% 120% at 70% 10%, #20242b, #0c0d0f); }
.qv-mono img { width: 45%; min-height: 0; }
.qv-body { padding: clamp(1.4rem, 3vw, 2.3rem); }
.qv-body h3 { font-size: 1.7rem; margin-bottom: .5rem; }
.qv-blurb { color: var(--body); margin-bottom: 1rem; }
.qv-price { margin-bottom: 1.1rem; }
.qv-field { margin: 1.1rem 0; }
.qv-field > label { display: block; font-size: .8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; }
.qv-field select { font-family: inherit; font-size: 1rem; color: var(--text); padding: .7rem .9rem; border: 1px solid var(--line); border-radius: 6px; background: var(--black); width: 100%; }
.qv-table { margin: .8rem 0; }
.qv-table th, .qv-table td { padding: .55rem .9rem; }
.qv-field input[type="number"], .qv-field input[type="text"] { font-family: inherit; font-size: 1rem; color: var(--text); padding: .7rem .9rem; border: 1px solid var(--line); border-radius: 6px; background: var(--black); width: 100%; }
.qv-field input[type="number"]:focus, .qv-field input[type="text"]:focus, .qv-field select:focus { outline: none; border-color: var(--chrome); box-shadow: 0 0 0 3px rgba(205,212,222,.18); }
.qv-live { display: flex; align-items: center; justify-content: space-between; gap: .6rem; flex-wrap: wrap; margin: .55rem 0 .2rem; padding: .65rem .9rem; border: 1px solid var(--line); border-radius: 8px; background: var(--surface-2); font-size: .9rem; color: var(--muted); }
.qv-live .qv-live-price { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; background: var(--chrome-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

/* coming-soon category panel (e.g. Apparel) — premium teaser, NOT a placeholder */
.coming-soon-panel {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(2.8rem,7vw,5rem) clamp(1.4rem,5vw,3rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(135% 150% at 50% -30%, rgba(205,210,218,.10), transparent 55%),
    linear-gradient(180deg, #16171c 0%, #0e0f13 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,.06) inset, 0 26px 64px rgba(0,0,0,.45);
}
/* thin chrome hairline across the top edge — quiet luxury detail */
.coming-soon-panel::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(62%,440px); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(205,210,218,.55), transparent);
}
.coming-soon-panel .cs-badge {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: #dfe3ea;
  padding: .42rem .95rem; border-radius: 999px;
  border: 1px solid rgba(205,210,218,.28); background: rgba(205,210,218,.07);
  margin-bottom: 1.15rem;
}
.coming-soon-panel .cs-title {
  font-family: var(--font-display); font-weight: 700; line-height: 1.06; margin: 0;
  font-size: clamp(1.9rem,5.5vw,3.05rem); letter-spacing: .01em;
  background: var(--chrome-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.coming-soon-panel .cs-sub {
  max-width: 30rem; margin: .95rem auto 0; color: #c2c7d0;
  font-size: clamp(.95rem,2.2vw,1.06rem); line-height: 1.65;
}
.coming-soon-panel .cs-cta { margin-top: 1.6rem; }
@media (max-width: 560px) {
  .coming-soon-panel { padding: 2.6rem 1.2rem; border-radius: 16px; }
  .coming-soon-panel .cs-badge { letter-spacing: .16em; }
}
.qv-note { font-size: .82rem; color: var(--muted); margin-top: .6rem; }
.qv-actions { margin-top: 1.4rem; }
.qv-close { position: absolute; top: 12px; right: 16px; z-index: 2; color: #fff; font-size: 1.9rem; line-height: 38px; text-align: center; background: rgba(0,0,0,.45); width: 40px; height: 40px; border-radius: 50%; }
.qv-close:hover { color: var(--chrome); }
@media (max-width: 680px) { .qv { grid-template-columns: 1fr; } .qv-media img, .qv-mono { min-height: 240px; } }

/* sold out / coming soon */
.card-tag--out { background: rgba(20,22,27,.92); color: var(--muted); border: 1px solid rgba(255,255,255,.2); }
.card--out .card-media img, .card--out .card-media--mono img { opacity: .55; filter: grayscale(.4); }

/* ways to save */
.ways-to-save { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.ways-to-save span { font-size: .82rem; color: var(--body); border: 1px solid var(--line); border-radius: 100px; padding: .45rem .9rem; }
.ways-to-save b { color: var(--chrome); font-weight: 600; }

/* ==========================================================================
   CART — header button + slide-out drawer
   ========================================================================== */
.cart-btn { position: relative; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); color: var(--text); transition: all .25s; }
.cart-btn:hover { border-color: var(--chrome-2); color: #fff; }
.cart-btn svg { width: 20px; height: 20px; }
.cart-count { position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; padding: 0 4px; border-radius: 9px; background: var(--chrome-grad); color: #14161a; font-size: .68rem; font-weight: 700; display: none; align-items: center; justify-content: center; }
.cart-overlay { position: fixed; inset: 0; z-index: 150; background: rgba(8,9,11,.7); backdrop-filter: blur(3px); opacity: 0; pointer-events: none; transition: opacity .3s; }
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 92vw); z-index: 160; background: var(--surface); border-left: 1px solid var(--line); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .35s var(--ease); box-shadow: var(--shadow-lg); }
.cart-drawer.open { transform: none; }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 1.3rem 1.4rem; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-size: 1.3rem; }
.cart-x { font-size: 1.7rem; line-height: 1; color: var(--muted); }
.cart-x:hover { color: #fff; }
.cart-items { flex: 1; overflow-y: auto; padding: .6rem 1.4rem; }
.cart-empty { color: var(--muted); text-align: center; padding: 3rem 1rem; }
.cart-empty span { font-size: .88rem; }
.cart-item { display: flex; gap: .9rem; padding: .95rem 0; border-bottom: 1px solid var(--line-soft); }
.cart-thumb { width: 60px; height: 60px; border-radius: 8px; overflow: hidden; background: var(--charcoal); flex: none; }
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-it-body { flex: 1; min-width: 0; }
.cart-it-top { display: flex; justify-content: space-between; gap: .5rem; }
.cart-it-top strong { font-size: .96rem; }
.cart-rm { font-size: 1.3rem; line-height: 1; color: var(--muted); flex: none; }
.cart-rm:hover { color: #fff; }
.cart-meta { font-size: .8rem; color: var(--muted); margin: .15rem 0; }
.cart-it-foot { display: flex; align-items: center; justify-content: space-between; margin-top: .45rem; }
.qty { display: inline-flex; align-items: center; gap: .8rem; border: 1px solid var(--line); border-radius: 6px; padding: .15rem .55rem; }
.qty button { color: var(--text); font-size: 1.1rem; width: 18px; }
.cart-line { font-weight: 600; }
.cart-foot { padding: 1.2rem 1.4rem; border-top: 1px solid var(--line); }
.cart-sub { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1rem; }
.cart-sub strong { font-family: var(--font-display); font-size: 1.35rem; }
.qv-row { display: flex; gap: 1rem; }
.qv-row .qv-field { flex: 1; }
.card-tag--quote { background: rgba(20,22,27,.9); color: var(--chrome); border: 1px solid rgba(255,255,255,.2); }

/* ==========================================================================
   MOBILE OPTIMIZATION LAYER
   Phone-first polish layered over the system above: sticky bottom tab bar,
   big touch targets, bottom-sheet quick view, iOS safe-area handling.
   ========================================================================== */

/* tab bar is hidden on desktop; shown ≤920px */
.tabbar { display: none; }

@media (max-width: 920px) {
  /* slimmer header reclaims screen on phones — cascades to every offset */
  :root { --header-h: 64px; }

  * { -webkit-tap-highlight-color: transparent; }

  /* clear the fixed bottom bar so footer content is never hidden */
  body { padding-bottom: calc(66px + env(safe-area-inset-bottom)); }

  /* the bottom bar owns cart + actions on phones — declutter the top bar */
  .site-header .cart-btn { display: none; }
  .nav-toggle { padding: 10px; }
  .brand .brand-word { font-size: 1.3rem; }

  /* keep the click-to-call number prominent + thumb-friendly on phones */
  .site-header .container { gap: .6rem; }
  .header-cta { gap: .55rem; }
  .header-phone { padding: .5rem .8rem; min-height: 40px; font-size: .88rem; }

  /* thumb-friendly buttons */
  .btn { min-height: 50px; }
  .btn--sm { min-height: 44px; padding: .78rem 1.1rem; }
  .hero-actions, .cta-actions { gap: .7rem; width: 100%; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }

  /* nav dropdown: cap height + scroll, sit above page content */
  .nav { z-index: 110; max-height: calc(100dvh - var(--header-h) - 70px); overflow-y: auto; }
  .nav a { padding: 1.05rem clamp(20px,5vw,40px); }

  /* category scroller: bigger pills + momentum + snap */
  .cat-nav { padding: .7rem 0; -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity; }
  .cat-nav a { padding: .62rem 1.15rem; font-size: .9rem; scroll-snap-align: start; }
}

/* ---- STICKY BOTTOM TAB BAR ---- */
@media (max-width: 920px) {
  .tabbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
    display: grid; grid-template-columns: repeat(5,1fr); align-items: end;
    background: rgba(11,12,14,.94); backdrop-filter: blur(16px);
    border-top: 1px solid var(--line);
    padding: .3rem .2rem calc(.3rem + env(safe-area-inset-bottom));
    box-shadow: 0 -10px 34px rgba(0,0,0,.55);
  }
  .tabbar .tab {
    display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 4px;
    min-height: 54px; padding: .4rem 0; position: relative;
    color: var(--muted); font-size: .64rem; font-weight: 600; letter-spacing: .02em;
    transition: color .2s;
  }
  .tabbar .tab svg { width: 22px; height: 22px; }
  .tabbar .tab.active, .tabbar .tab:active { color: #fff; }
  .tabbar .tab.active svg { stroke: var(--chrome); }

  /* prominent center Custom action — Bruce-Wayne red raised button */
  .tabbar .tab-center { color: #fff; }
  .tabbar .tab-center .tab-ico {
    width: 56px; height: 56px; margin-top: -28px; margin-bottom: 2px; border-radius: 50%;
    background: linear-gradient(180deg, var(--red), var(--red-deep));
    display: grid; place-items: center; border: 1px solid rgba(255,255,255,.28);
    box-shadow: 0 10px 24px rgba(200,16,46,.45), 0 0 0 5px var(--black);
    transition: transform .15s var(--ease);
  }
  .tabbar .tab-center svg { width: 26px; height: 26px; stroke: #fff; }
  .tabbar .tab-center:active .tab-ico { transform: translateY(2px) scale(.97); }

  /* live cart badge on the cart tab */
  .tabbar .tab-cart .cart-count {
    position: absolute; top: 2px; left: 50%; right: auto; margin-left: 4px;
    min-width: 17px; height: 17px;
  }
}

/* ---- QUICK VIEW → slide-up bottom sheet on phones ---- */
@media (max-width: 680px) {
  .qv-overlay { align-items: flex-end; padding: 0; }
  .qv {
    grid-template-columns: 1fr; width: 100%; max-width: 100%;
    max-height: 90vh; border-radius: 20px 20px 0 0;
    animation: qv-up .34s var(--ease);
  }
  .qv-media img { min-height: 0; height: auto; max-height: 32vh; aspect-ratio: 16/10; object-fit: cover; }
  .qv-mono { min-height: 0; height: 26vh; }
  .qv-body { padding: 1.3rem 1.2rem calc(1.4rem + env(safe-area-inset-bottom)); }
  .qv-close { top: 10px; right: 12px; background: rgba(0,0,0,.55); }

  /* big tap targets for size / color / qty */
  .qv-field select, .qv-field input[type="number"] { min-height: 50px; font-size: 16px; }
  .qv-body .swatches { gap: .6rem; }
  .qv-body .swatch { width: 42px; height: 42px; }
  .qv-actions .btn { min-height: 54px; font-size: 1rem; }
}
@keyframes qv-up { from { transform: translateY(100%); } to { transform: none; } }

/* ---- CART DRAWER on phones ---- */
@media (max-width: 920px) {
  .cart-drawer { z-index: 160; padding-bottom: env(safe-area-inset-bottom); }
  .qty { padding: .3rem .7rem; }
  .qty button { width: 30px; height: 30px; font-size: 1.3rem; }
  .cart-foot .btn { min-height: 54px; }
}
@media (max-width: 520px) { .cart-drawer { width: 100%; } }

/* ---- PRODUCT CARDS: stacked foot = full-width tap target ---- */
@media (max-width: 560px) {
  .card-body { padding: 1.1rem 1.1rem 1.25rem; }
  .card-body h3 { font-size: 1.16rem; }
  .card-foot { flex-direction: column; align-items: stretch; gap: .7rem; margin-top: 1rem; }
  .card-foot .btn { width: 100%; }
  .card-foot .price { display: flex; align-items: baseline; gap: .4rem; }
  .card-foot .price small { display: inline; }

  /* tight phones: the chrome N logo carries the brand so the click-to-call
     number stays fully visible next to the menu button */
  .brand .brand-word { display: none; }
  .brand-mark .n-mark { width: 42px; height: 42px; }
}

/* ---- hero / stat / spacing polish on small screens ---- */
@media (max-width: 520px) {
  .hero-meta { gap: 1.3rem 1.8rem; flex-wrap: wrap; margin-top: 2rem; padding-top: 1.4rem; }
  .hero-meta .num { font-size: 1.55rem; }
  .stat-row { gap: 1.4rem 1.8rem; }
  .stat-row .num { font-size: 1.8rem; }
  .hero-badge { left: 0; bottom: 12px; max-width: 200px; padding: .7rem .9rem; }
  .section-head { margin-bottom: 2rem; }
}

/* ==========================================================================
   QUICK-VIEW: install-photo thumbnails + live color label
   ========================================================================== */
.qv-field-head { display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; margin-bottom: .5rem; }
.qv-field-head label { margin-bottom: 0; }
.qv-color-label { font-size: .9rem; font-weight: 600; color: #fff; }
.qv-thumbs { display: flex; gap: .55rem; flex-wrap: wrap; margin: 0 0 .4rem; }
.qv-thumb { width: 64px; height: 64px; padding: 0; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); cursor: pointer; opacity: .6; transition: opacity .2s, border-color .2s, box-shadow .2s; }
.qv-thumb img { width: 100%; height: 100%; object-fit: cover; }
.qv-thumb:hover { opacity: .9; }
.qv-thumb.sel { opacity: 1; border-color: var(--chrome); box-shadow: 0 0 0 2px rgba(205,212,222,.32); }

/* ==========================================================================
   REVIEWS / SOCIAL PROOF
   ========================================================================== */
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,2.4vw,28px); }
.review-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 1.9rem 1.8rem; display: flex; flex-direction: column; gap: .85rem; transition: transform .35s var(--ease), border-color .3s; }
.review-card:hover { transform: translateY(-5px); border-color: var(--line); }
.review-card .stars { color: var(--gold); letter-spacing: 2px; font-size: .95rem; }
.review-card .quote { color: var(--text); font-size: 1.04rem; line-height: 1.6; flex: 1; }
.review-card .who { display: flex; align-items: center; gap: .75rem; margin-top: .3rem; }
.review-card .avatar { width: 42px; height: 42px; flex: none; border-radius: 50%; background: var(--chrome-grad); color: #14161a; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; }
.review-card .name { font-weight: 600; color: #fff; font-size: .96rem; }
.review-card .src { font-size: .8rem; color: var(--muted); }
.reviews-proof { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.4rem 2.8rem; margin-top: 2.8rem; padding-top: 2.2rem; border-top: 1px solid var(--line-soft); }
.reviews-proof div { text-align: center; }
.reviews-proof .num { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; color: #fff; line-height: 1; }
.reviews-proof .num .stars { color: var(--gold); }
.reviews-proof .lbl { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: .3rem; }
@media (max-width: 900px) { .review-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .review-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   MOBILE FIX: category pills (Shop sticky cat-nav + Catalog filter-bar)
   — bigger touch targets, no clipping, smooth scroll with right-edge fade
   ========================================================================== */
@media (max-width: 700px) {
  /* shared pill sizing across both bars — thumb-friendly + readable */
  .cat-nav a,
  .filter-bar button {
    padding: .8rem 1.25rem;
    min-height: 44px;
    font-size: .92rem;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    line-height: 1.15;
  }

  /* Shop sticky category nav: smooth horizontal scroll that bleeds to the
     viewport edge with a fade hint on the right — "more to swipe" is obvious */
  .cat-nav {
    gap: .55rem;
    padding-block: .9rem;
    padding-inline: clamp(20px, 5vw, 40px);
    margin-inline: calc(-1 * clamp(20px, 5vw, 40px));
    scroll-behavior: smooth;
    scroll-padding-inline: clamp(20px, 5vw, 40px);
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 38px), transparent);
            mask-image: linear-gradient(to right, #000 calc(100% - 38px), transparent);
  }
  .cat-nav a { scroll-snap-align: start; }
  .cat-nav::-webkit-scrollbar { display: none; }

  /* Catalog filter-bar: stay wrapped so customers see every category at a
     glance — just bigger pills + cleaner spacing */
  .filter-bar {
    gap: .55rem;
    justify-content: center;
    padding-inline: 4px;
    margin-bottom: 2rem;
  }
}

/* ==========================================================================
   LIVE QUEUE & TURNAROUND PAGE
   ========================================================================== */
.nav-gold {
  background: var(--chrome-grad);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 700 !important;
}
.nav-gold::after { background: var(--chrome) !important; }

.queue-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.queue-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 120% at 90% 0%, rgba(205,212,222,.08), transparent 55%);
  pointer-events: none;
}
.queue-headline { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 1.8rem); flex: 1; min-width: 240px; position: relative; }
.queue-count {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 5rem);
  line-height: .9;
  background: var(--chrome-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-weight: 700; flex: none;
}
.queue-context strong { display: block; color: #fff; font-size: 1.05rem; font-weight: 600; line-height: 1.3; }
.queue-context small { display: block; color: var(--muted); font-size: .82rem; margin-top: .45rem; line-height: 1.5; }
.queue-context #queue-turnaround { color: var(--chrome); font-weight: 600; }
.queue-actions { display: flex; gap: .6rem; flex-wrap: wrap; position: relative; }

.queue-h { margin: .4rem 0 .4rem; color: #fff; }
.queue-sub { color: var(--body); max-width: 42em; margin-bottom: 2rem; }

.rush-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.5vw, 30px); margin-bottom: 3.5rem; }
.rush-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 1.9rem;
  position: relative;
  transition: transform .35s var(--ease), border-color .3s, box-shadow .35s;
}
.rush-card:hover { transform: translateY(-5px); border-color: var(--line); box-shadow: var(--shadow-md); }
.rush-card .rush-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--chrome-grad); color: #14161a;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .65rem; border-radius: 4px;
}
.rush-card .rush-price {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; line-height: 1;
  background: var(--chrome-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.rush-card .rush-tier { font-weight: 600; color: #fff; font-size: 1.12rem; margin: .35rem 0 .8rem; }
.rush-card p { font-size: .94rem; color: var(--body); line-height: 1.6; margin-bottom: 1rem; }
.rush-card p strong { color: #fff; }
.rush-bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .45rem; }
.rush-bullets li { font-size: .88rem; color: var(--muted); padding-left: 1.2rem; position: relative; }
.rush-bullets li::before { content: "✓"; position: absolute; left: 0; color: var(--chrome); font-weight: 700; }

.how-queue-works {
  background: var(--charcoal);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}
.how-queue-works h3 { color: #fff; margin-bottom: 1.2rem; }
.how-queue-works ol { list-style: none; padding: 0; margin: 0; counter-reset: q-step; }
.how-queue-works li {
  counter-increment: q-step;
  padding: .8rem 0 .8rem 2.4rem;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text);
  position: relative;
  font-size: .96rem; line-height: 1.55;
}
.how-queue-works li::before {
  content: counter(q-step, decimal-leading-zero);
  position: absolute; left: 0; top: .9rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  background: var(--chrome-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.how-queue-works li:last-child { border-bottom: none; }
.how-queue-works li strong { color: #fff; }
.how-queue-works > p.muted { margin-top: 1.4rem; font-size: .92rem; padding-top: 1rem; border-top: 1px solid var(--line-soft); }
.how-queue-works > p.muted strong { color: var(--chrome); }

@media (max-width: 700px) {
  .queue-card { padding: 1.4rem; gap: 1.2rem; margin-bottom: 2.5rem; }
  .queue-headline { gap: 1rem; min-width: 100%; }
  .queue-count { font-size: 3.4rem; }
  .queue-actions { width: 100%; }
  .queue-actions .btn { flex: 1; }
  .rush-grid { grid-template-columns: 1fr; gap: 14px; margin-bottom: 2.5rem; }
  .rush-card { padding: 1.4rem; }
  .rush-card .rush-price { font-size: 2.05rem; }
  .how-queue-works li { padding-left: 2.1rem; font-size: .92rem; }
}

/* ==========================================================================
   HOME LANDING — premium flow polish (hero stats · trust band · tab bar · FAB)
   ========================================================================== */
/* hero stats: even 3-up with chrome dividers + gold rating star */
.hero-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; align-items: start; }
.hero-meta > div { padding: 0 clamp(.85rem, 2vw, 1.5rem); }
.hero-meta > div:first-child { padding-left: 0; }
.hero-meta > div + div { border-left: 1px solid var(--line-soft); }
.hero-meta .num { display: flex; align-items: baseline; gap: .1em; }
.hero-meta .num-star { font-size: .6em; color: var(--gold); -webkit-text-fill-color: var(--gold); line-height: 1; }
.hero-meta .lbl { margin-top: .4rem; }

/* trust band: tighter, more intentional, premium spacing */
.trust .container { gap: .55rem 1.9rem; padding-block: 1rem; }
.trust span { font-size: .76rem; letter-spacing: .16em; }

/* tab bar: cleaner, crisper labels + a more crafted red FAB that sits in the chrome theme */
@media (max-width: 920px) {
  .tabbar { background: rgba(10,11,13,.96); border-top-color: rgba(255,255,255,.10); }
  .tabbar .tab { font-size: .62rem; letter-spacing: .015em; gap: 3px; color: #9aa0a6; }
  .tabbar .tab.active { color: #fff; }
  .tabbar .tab svg { width: 21px; height: 21px; }
  .tabbar .tab-center .tab-ico {
    width: 54px; height: 54px; margin-top: -26px;
    border: 1px solid rgba(255,255,255,.32);
    box-shadow: 0 8px 22px rgba(200,16,46,.5), 0 0 0 4px #0a0b0d, inset 0 1px 0 rgba(255,255,255,.28);
  }
  .tabbar .tab-center span:last-child { color: #fff; font-weight: 700; }
}

@media (max-width: 520px) {
  .hero-meta { gap: 0; margin-top: 2rem; padding-top: 1.4rem; }
  .hero-meta > div { padding: 0 .7rem; }
  .hero-meta .num { font-size: 1.42rem; }
  .hero-meta .lbl { font-size: .64rem; letter-spacing: .05em; line-height: 1.25; margin-top: .3rem; }
  .trust .container { gap: .45rem 1.2rem; }
  .trust span { font-size: .68rem; letter-spacing: .12em; }
}

/* ==========================================================================
   LOW-STOCK COLOR SWATCHES (⚠) — shop quick-view + mini dots + admin
   Driven by config.js → lowStockColors. Amber ring + corner dot.
   ========================================================================== */
.swatch, .swatch--dot { position: relative; }
.swatch.low { box-shadow: 0 0 0 2px #e8a13a, 0 0 0 4px rgba(232,161,58,.25); }
.swatch.low::after { content: ""; position: absolute; top: -3px; right: -3px; width: 10px; height: 10px; border-radius: 50%; background: #e8a13a; border: 1.5px solid var(--surface, #191b20); }
.swatch--dot.low { box-shadow: 0 0 0 1.5px #e8a13a; }

/* ==========================================================================
   BROKEN-IMAGE FALLBACK — when an <img> fails to load, components.js swaps it
   to a clean placeholder and adds .img-fallback. Show it whole (contain) on a
   neutral surface so a missing photo never appears as a black box + red-X.
   ========================================================================== */
.img-fallback { object-fit: contain !important; background: #15161a !important; padding: 8px; }
