/* ============================================================
   DUMPY DEFENSE — "REDESIGN" PREVIEW DESIGN SYSTEM
   Self-contained. Does not touch /assets/css/main.css.
   Keeps the brand's black + gold tactical identity (same core
   hex values as the live site) and pushes it further: cinematic
   depth, foil-gold display type, reticle/viewfinder framing
   details, and refined motion.
   ============================================================ */

/* ── 0. FONTS ─────────────────────────────────────────────────
   Loaded via <link> in each page's <head> (fonts.googleapis.com).
   Oswald = condensed display face for headlines/kickers (the
   "cinematic tactical" voice). Inter = the brand's body face.
   Both fall back hard to system-ui/Helvetica/Arial if the Google
   Fonts request is blocked, so the page still looks intentional. */

:root {
  --font-display: 'Oswald', 'Inter', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

/* ── 1. DESIGN TOKENS ─────────────────────────────────────── */

:root {
  /* Background layers — identical to the live brand palette */
  --bg:        #07070a;
  --surface:   #0f0f14;
  --surface-2: #161620;
  --surface-3: #1e1e2a;
  --surface-4: #26263400;
  --surface-4: #262636;

  /* Borders */
  --border:     #252530;
  --border-sub: #1a1a24;
  --border-hi:  #33333f;

  /* Text */
  --text-1: #f5f5fa;
  --text-2: #9a9ab2;
  --text-3: #5c5c72;

  /* Accent — the same precision-bronze gold, plus foil gradient stops */
  --accent:      #c49a3c;
  --accent-hi:   #d4aa52;
  --accent-lo:   rgba(196,154,60,.10);
  --accent-bd:   rgba(196,154,60,.30);
  --gold-1:      #f3dd9a;
  --gold-2:      #d4aa52;
  --gold-3:      #c49a3c;
  --gold-4:      #8a6a24;

  /* Status */
  --ok:   #2d9e6b;
  --warn: #e09b2d;
  --err:  #e05252;

  /* Spacing */
  --s1: 0.5rem;
  --s2: 1rem;
  --s3: 1.5rem;
  --s4: 2rem;
  --s5: 3rem;
  --s6: 5rem;
  --s7: 8rem;

  /* Radius */
  --r1: 3px;
  --r2: 6px;
  --r3: 10px;
  --r4: 16px;

  /* Motion */
  --ease:  cubic-bezier(.4,0,.2,1);
  --ease2: cubic-bezier(.16,.8,.24,1);
  --t1: 140ms;
  --t2: 260ms;
  --t3: 460ms;

  /* Layout */
  --max:    1320px;
  --gutter: clamp(1.25rem, 5vw, 3rem);

  /* Elevation */
  --shadow-card:     0 18px 44px -18px rgba(0,0,0,.55);
  --shadow-elevated: 0 30px 80px -24px rgba(0,0,0,.65), 0 2px 0 0 rgba(255,255,255,.03) inset;
  --glow-gold:        0 0 0 1px var(--accent-bd), 0 10px 44px -10px rgba(196,154,60,.38);

  /* Z-index */
  --z-nav:   100;
  --z-mnav:  110;
  --z-toast: 300;
}

/* ── 2. RESET ─────────────────────────────────────────────── */

.dd-redesign, .dd-redesign *, .dd-redesign *::before, .dd-redesign *::after {
  box-sizing: border-box;
}
.dd-redesign {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
.dd-redesign img, .dd-redesign video, .dd-redesign svg { display: block; max-width: 100%; }
.dd-redesign a { color: inherit; text-decoration: none; }
.dd-redesign button, .dd-redesign input, .dd-redesign select, .dd-redesign textarea { font: inherit; color: inherit; }
.dd-redesign ul, .dd-redesign ol { list-style: none; margin: 0; padding: 0; }
.dd-redesign h1, .dd-redesign h2, .dd-redesign h3, .dd-redesign h4 {
  margin: 0; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em;
}
.dd-redesign p { margin: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: auto;
  background: var(--accent); color: #100c02; padding: .75em 1.25em;
  font-weight: 700; z-index: 1000; border-radius: var(--r2);
}
.skip-link:focus {
  left: var(--s2); top: var(--s2);
}

/* Focus visibility everywhere */
.dd-redesign :focus-visible {
  outline: 2px solid var(--accent-hi);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── 3. TYPOGRAPHY ────────────────────────────────────────── */

.kicker {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.65em;
}
.kicker::before {
  content: '';
  width: 1.6em; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.display-xl {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(2.9rem, 9vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
}
.display-lg {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.005em;
}
.display-md {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.005em;
  line-height: 1.15;
}
.body-lg { font-size: clamp(1rem, 1.4vw, 1.15rem); line-height: 1.75; color: var(--text-2); }
.body-md { font-size: 0.95rem; line-height: 1.7; color: var(--text-2); }
.body-sm { font-size: 0.84rem; line-height: 1.6; color: var(--text-2); }

/* Gold foil text treatment for the hero + key headline accents */
.foil {
  background: linear-gradient(115deg, var(--gold-1) 0%, var(--gold-2) 28%, var(--gold-3) 48%, var(--gold-4) 64%, var(--gold-2) 84%, var(--gold-1) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: foilShift 9s ease-in-out infinite;
}
@keyframes foilShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .foil { animation: none; background-position: 35% 50%; }
}

/* ── 4. LAYOUT ────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--s6); position: relative; }
.section-tight { padding-block: var(--s5); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s4);
  margin-bottom: var(--s5);
  flex-wrap: wrap;
}
.section-head.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}
.section-head h2 { margin-top: 0.5em; }
.section-head p { margin-top: 0.85em; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ── 5. BUTTONS ───────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95em 1.9em;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--r1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
  transition: background var(--t1) var(--ease), border-color var(--t1) var(--ease),
              color var(--t1) var(--ease), transform var(--t1) var(--ease),
              box-shadow var(--t1) var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  border-color: var(--gold-3);
  color: #17110300;
  color: #170f02;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.55) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform var(--t3) var(--ease2);
}
.btn-primary:hover {
  box-shadow: var(--glow-gold);
  border-color: var(--gold-1);
}
.btn-primary:hover::before { transform: translateX(120%); }

.btn-outline {
  background: transparent;
  border-color: var(--accent-bd);
  color: var(--accent);
}
.btn-outline:hover { background: var(--accent-lo); border-color: var(--accent); }

.btn-ghost {
  background: transparent;
  border-color: var(--border-hi);
  color: var(--text-1);
}
.btn-ghost:hover { background: var(--surface-2); border-color: var(--text-2); }

.btn-lg { padding: 1.15em 2.5em; font-size: 0.88rem; }
.btn-sm { padding: 0.6em 1.3em; font-size: 0.72rem; }
.btn-full { width: 100%; }
.btn:disabled { opacity: .45; cursor: not-allowed; }

/* ── 6. MOTION / REVEAL ──────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--t3) var(--ease2), transform var(--t3) var(--ease2);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 270ms; }
.reveal-delay-4 { transition-delay: 360ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: opacity .25s linear; transform: none !important; }
  .foil, .btn-primary::before { animation: none !important; }
}

/* Corner "reticle" frame — appears on hover/focus, or permanently via .always-framed */
.frame-ticks { position: relative; }
.frame-ticks::after {
  content: '';
  position: absolute;
  inset: 10px;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t2) var(--ease);
  background:
    linear-gradient(to right,  var(--accent-hi) 2px, transparent 2px) top    left     / 18px 2px no-repeat,
    linear-gradient(to bottom, var(--accent-hi) 2px, transparent 2px) top    left     / 2px 18px no-repeat,
    linear-gradient(to left,   var(--accent-hi) 2px, transparent 2px) top    right    / 18px 2px no-repeat,
    linear-gradient(to bottom, var(--accent-hi) 2px, transparent 2px) top    right    / 2px 18px no-repeat,
    linear-gradient(to right,  var(--accent-hi) 2px, transparent 2px) bottom left     / 18px 2px no-repeat,
    linear-gradient(to top,    var(--accent-hi) 2px, transparent 2px) bottom left     / 2px 18px no-repeat,
    linear-gradient(to left,   var(--accent-hi) 2px, transparent 2px) bottom right    / 18px 2px no-repeat,
    linear-gradient(to top,    var(--accent-hi) 2px, transparent 2px) bottom right    / 2px 18px no-repeat;
}
.frame-ticks:hover::after,
.frame-ticks:focus-within::after,
.frame-ticks.always-framed::after { opacity: 1; }

/* Fine grain texture, used as an overlay layer on dark hero/media surfaces */
.grain {
  position: absolute; inset: 0; pointer-events: none;
  opacity: .35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Blueprint grid overlay */
.blueprint-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(196,154,60,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,154,60,.09) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 0%, transparent 75%);
}

/* Marquee ticker */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border-sub);
  border-bottom: 1px solid var(--border-sub);
  background: var(--surface);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 3.5rem;
  padding-block: 0.85rem;
  animation: marqueeScroll 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group {
  display: flex;
  gap: 3.5rem;
  flex-shrink: 0;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.marquee-item .dot { color: var(--accent); }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ── 7. NAVIGATION ────────────────────────────────────────── */

.dd-header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: rgba(7,7,10,.72);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid var(--border-sub);
  transition: background var(--t2) var(--ease), border-color var(--t2) var(--ease), box-shadow var(--t2) var(--ease);
}
.dd-header.is-scrolled {
  background: rgba(7,7,10,.94);
  border-color: var(--border);
  box-shadow: 0 12px 32px -16px rgba(0,0,0,.6);
}
.dd-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  gap: var(--s3);
}
.dd-logo { display: flex; align-items: center; justify-content: center; gap: .6rem; }
.dd-logo img { height: 34px; width: auto; }
.dd-logo-word {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--text-1);
  white-space: nowrap;
}
.dd-logo-word em { font-style: normal; color: var(--accent); }

.dd-links {
  display: flex;
  align-items: center;
  gap: .15rem;
  order: -1;
}
.dd-links a {
  position: relative;
  padding: 0.6rem 0.85rem;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-2);
  border-radius: var(--r2);
  transition: color var(--t1) var(--ease);
  white-space: nowrap;
}
.dd-links a::after {
  content: '';
  position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.35rem;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t2) var(--ease);
}
.dd-links a:hover { color: var(--text-1); }
.dd-links a:hover::after { transform: scaleX(1); }

.dd-actions { display: flex; align-items: center; gap: .2rem; justify-content: flex-end; }
.dd-action-btn {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--r2);
  color: var(--text-2);
  border: none; background: transparent; cursor: pointer;
  position: relative;
  transition: color var(--t1) var(--ease), background var(--t1) var(--ease);
}
.dd-action-btn:hover { color: var(--text-1); background: var(--surface-2); }
.dd-action-btn svg { width: 18px; height: 18px; }
.dd-cart-count {
  position: absolute; top: 3px; right: 3px;
  min-width: 15px; height: 15px; padding: 0 3px;
  background: var(--accent); color: #100c02;
  font-size: .58rem; font-weight: 800;
  border-radius: 100px;
  display: none; align-items: center; justify-content: center;
  line-height: 1;
}
.dd-cart-count.has-items { display: flex; }

.dd-menu-btn {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  background: transparent; border: none; color: var(--text-1);
  cursor: pointer; border-radius: var(--r2);
}
.dd-menu-btn:hover { background: var(--surface-2); }

/* Mobile nav overlay */
.dd-mnav {
  display: none;
  position: fixed; inset: 0;
  background: rgba(7,7,10,.98);
  backdrop-filter: blur(6px);
  z-index: var(--z-mnav);
  flex-direction: column;
  padding: var(--s3) var(--gutter) var(--s4);
  overflow-y: auto;
}
.dd-mnav.open { display: flex; }
.dd-mnav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--s5); }
.dd-mnav-head img { height: 30px; }
.dd-mnav-close {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r2);
  color: var(--text-1); cursor: pointer;
}
.dd-mnav-links { display: flex; flex-direction: column; gap: 0; flex: 1; }
.dd-mnav-links a {
  padding: var(--s2) 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--text-2);
  border-bottom: 1px solid var(--border-sub);
  transition: color var(--t1) var(--ease);
}
.dd-mnav-links a:hover { color: var(--accent); }
.dd-mnav-foot { display: flex; flex-direction: column; gap: var(--s2); padding-top: var(--s4); }

@media (max-width: 900px) {
  .dd-links { display: none; }
  .dd-menu-btn { display: flex; }
  /* Only 2 grid items remain visible (logo, actions) once .dd-links is
     display:none — 2 explicit tracks keeps actions pinned to the right
     edge instead of collapsing into an empty middle "1fr" track. */
  .dd-nav { grid-template-columns: 1fr auto; }
  .dd-logo { justify-content: flex-start; }
}

@media (max-width: 480px) {
  /* Show a compact wordmark next to the emblem even on phones. */
  .dd-logo-word { font-size: .82rem; letter-spacing: .02em; }
  .dd-action-btn { width: 34px; height: 34px; }
  .dd-actions { gap: 0; }
  /* Contact is also in the menu — drop its header icon on tiny screens so
     the "Dumpy Defense" wordmark has room. */
  .dd-actions .dd-action-btn[aria-label="Contact us"] { display: none; }
}

/* ── 8. HERO ──────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding-top: var(--s6);
  padding-bottom: var(--s5);
}
.hero-bg {
  position: absolute; inset: 0; z-index: -3;
  background:
    radial-gradient(ellipse 55% 50% at 12% -8%, rgba(196,154,60,.20) 0%, transparent 62%),
    radial-gradient(ellipse 65% 55% at 108% 12%, rgba(196,154,60,.12) 0%, transparent 65%),
    radial-gradient(ellipse 90% 70% at 50% 118%, rgba(30,30,42,.9) 0%, transparent 60%),
    linear-gradient(180deg, #07070a 0%, #0a0a11 55%, #07070a 100%);
}
.hero-bg::after {
  /* vignette */
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 80% at 50% 45%, transparent 45%, rgba(0,0,0,.55) 100%);
}
.hero .blueprint-grid { z-index: -2; }
.hero .grain { z-index: -1; }

.hero-crosshair {
  position: absolute;
  top: 50%; right: 6%;
  width: min(46vw, 560px); height: min(46vw, 560px);
  transform: translateY(-50%);
  z-index: -1;
  opacity: .5;
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-crosshair { animation: crosshairSpin 90s linear infinite; }
}
@keyframes crosshairSpin { to { transform: translateY(-50%) rotate(360deg); } }

.hero-inner { position: relative; max-width: 760px; }
.hero-eyebrow-row { margin-bottom: var(--s3); }
.hero h1 { margin: 0.35em 0 0; }
.hero h1 .foil { display: inline; }
.hero-sub {
  margin-top: var(--s3);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--text-2);
  max-width: 540px;
  line-height: 1.75;
}
.hero-actions {
  margin-top: var(--s4);
  display: flex;
  align-items: center;
  gap: var(--s2);
  flex-wrap: wrap;
}
.hero-scroll-cue {
  position: absolute;
  left: 0; bottom: -1.5rem;
  display: flex; align-items: center; gap: .75rem;
  color: var(--text-3);
  font-family: var(--font-display);
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
}
.hero-scroll-line { width: 30px; height: 1px; background: var(--text-3); position: relative; overflow: hidden; }
@media (prefers-reduced-motion: no-preference) {
  .hero-scroll-line::after {
    content: ''; position: absolute; inset: 0; background: var(--accent);
    animation: scrollPulse 2.2s ease-in-out infinite;
  }
}
@keyframes scrollPulse { 0%{transform:translateX(-100%)} 50%{transform:translateX(0)} 100%{transform:translateX(100%)} }

@media (max-width: 900px) {
  .hero { min-height: auto; padding-top: var(--s5); padding-bottom: var(--s6); }
  .hero-crosshair { opacity: .3; width: 80vw; height: 80vw; right: -10%; top: 62%; }
  .hero-scroll-cue { display: none; }
}

/* ── 9. TRUST / COMPLIANCE STRIP ──────────────────────────── */

.trust-strip {
  border-bottom: 1px solid var(--border-sub);
  background: var(--surface);
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s3);
  padding-block: var(--s3);
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--text-2);
}
.trust-chip svg {
  width: 20px; height: 20px; flex-shrink: 0; color: var(--accent);
}
.trust-chip span {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--text-1);
}
@media (max-width: 900px) {
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .trust-strip .container { grid-template-columns: 1fr; gap: var(--s2); }
}

/* ── 10. STATEMENT / METRICS ──────────────────────────────── */

.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s3);
  margin-top: var(--s5);
  padding-top: var(--s5);
  border-top: 1px solid var(--border-sub);
}
.metric-item { display: flex; flex-direction: column; gap: .35rem; }
.metric-val {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 600;
  color: var(--text-1);
}
.metric-key {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
}
@media (max-width: 700px) {
  .metrics-row { grid-template-columns: repeat(2, 1fr); }
}

/* ── 11. PRODUCT CARDS / GRID ─────────────────────────────── */

.pgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
  gap: var(--s3);
}

.pcard {
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, var(--surface) 0%, var(--surface) 60%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r3);
  overflow: hidden;
  transition: border-color var(--t2) var(--ease), transform var(--t2) var(--ease), box-shadow var(--t2) var(--ease);
}
.pcard:hover {
  border-color: var(--accent-bd);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 0 1px var(--accent-bd);
}
.pcard-frame {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  background: radial-gradient(ellipse 80% 80% at 50% 20%, rgba(196,154,60,.08), transparent 70%), var(--surface-2);
  overflow: hidden;
}
.pcard-frame img {
  width: 100%; height: 100%; object-fit: contain;
  padding: var(--s3);
  opacity: .95;
  transition: transform var(--t3) var(--ease2), opacity var(--t2) var(--ease);
}
.pcard:hover .pcard-frame img { transform: scale(1.045); }
.pcard-badge {
  position: absolute; top: var(--s2); left: var(--s2);
  font-family: var(--font-display);
  font-size: .62rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: .4em .7em;
  border-radius: var(--r1);
  background: var(--accent-lo);
  border: 1px solid var(--accent-bd);
  color: var(--accent-hi);
}
.pcard-body {
  padding: var(--s3);
  display: flex;
  flex-direction: column;
  gap: .4rem;
  border-top: 1px solid var(--border-sub);
}
.pcard-eyebrow {
  font-family: var(--font-display);
  font-size: .64rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
}
.pcard-name {
  font-family: var(--font-body);
  font-size: .98rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1.35;
  color: var(--text-1);
}
.pcard-name a:hover { color: var(--accent-hi); }
.pcard-foot {
  margin-top: .5rem;
  display: flex; align-items: center; justify-content: space-between; gap: var(--s2);
  padding-top: var(--s2);
  border-top: 1px solid var(--border-sub);
}
.pcard-price { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--text-1); }

/* ── 12. HOW-IT-WORKS STEPS ───────────────────────────────── */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
}
.step-card {
  padding: var(--s4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r3);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  transition: border-color var(--t2) var(--ease), background var(--t2) var(--ease), transform var(--t2) var(--ease);
}
.step-card:hover { border-color: var(--accent-bd); background: var(--surface-2); transform: translateY(-3px); }
.step-num {
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 600; letter-spacing: .16em; color: var(--accent);
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 500; text-transform: uppercase; letter-spacing: .01em;
  color: var(--text-1);
}
.step-card p { font-size: .88rem; color: var(--text-2); line-height: 1.7; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr; } }

/* ── 13. MEDIA / INSTALLATIONS TEASER ─────────────────────── */

.media-teaser {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--s6);
  align-items: center;
}
.media-frame {
  display: block;
  position: relative;
  aspect-ratio: 16/11;
  border-radius: var(--r3);
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(155deg, var(--surface-2), var(--surface));
}
.media-frame img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(35%) contrast(1.08) brightness(.75);
  transition: transform var(--t3) var(--ease2), filter var(--t2) var(--ease);
}
.media-frame:hover img { transform: scale(1.03); filter: grayscale(15%) contrast(1.1) brightness(.82); }
.media-frame::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,7,10,0) 40%, rgba(7,7,10,.85) 100%);
  z-index: 1;
}
.media-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.media-play-btn {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: rgba(7,7,10,.55);
  border: 1px solid var(--accent-bd);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-hi);
  transition: transform var(--t2) var(--ease), background var(--t2) var(--ease), box-shadow var(--t2) var(--ease);
}
.media-frame:hover .media-play-btn { transform: scale(1.08); box-shadow: var(--glow-gold); background: rgba(7,7,10,.75); }
.media-play-btn svg { width: 26px; height: 26px; }
.media-caption {
  position: absolute; left: var(--s3); bottom: var(--s3); right: var(--s3); z-index: 2;
  font-family: var(--font-display);
  font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-1);
}
@media (max-width: 900px) {
  .media-teaser { grid-template-columns: 1fr; gap: var(--s4); }
}

/* ── 14. AFFILIATE CTA BANNER ──────────────────────────────── */

.affiliate-cta {
  position: relative;
  border-radius: var(--r4);
  border: 1px solid var(--accent-bd);
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface) 70%);
  padding: var(--s5) var(--s5);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  flex-wrap: wrap;
}
.affiliate-cta::before {
  content: '';
  position: absolute; top: -30%; right: -10%;
  width: 60%; height: 160%;
  background: radial-gradient(ellipse closest-side, rgba(196,154,60,.16), transparent 70%);
  pointer-events: none;
}
.affiliate-cta-copy { max-width: 560px; position: relative; z-index: 1; }
.affiliate-cta-actions { position: relative; z-index: 1; flex-shrink: 0; }

/* ── 15. FOOTER ───────────────────────────────────────────── */

.dd-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-top: var(--s6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s5);
  padding-bottom: var(--s5);
  border-bottom: 1px solid var(--border-sub);
}
.footer-brand { display: flex; flex-direction: column; gap: var(--s2); }
.footer-logo { display: flex; align-items: center; gap: .6rem; }
.footer-logo img { height: 30px; filter: brightness(.85); }
.footer-tagline { font-size: .84rem; color: var(--text-3); line-height: 1.7; max-width: 300px; }
.footer-contact { display: flex; flex-direction: column; gap: .5rem; }
.footer-contact a {
  font-size: .84rem; color: var(--text-2); display: flex; align-items: center; gap: .5rem;
  transition: color var(--t1) var(--ease);
}
.footer-contact a:hover { color: var(--accent); }
.footer-contact svg { width: 13px; height: 13px; flex-shrink: 0; }
.footer-social { display: flex; gap: var(--s1); margin-top: .25rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--r2);
  background: var(--surface-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--text-2);
  transition: all var(--t1) var(--ease);
}
.footer-social a:hover { background: var(--accent-lo); border-color: var(--accent-bd); color: var(--accent); }
.footer-social svg { width: 15px; height: 15px; }
.footer-col-title {
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-1); margin-bottom: var(--s2);
}
.footer-col-links { display: flex; flex-direction: column; gap: .65rem; }
.footer-col-links a { font-size: .84rem; color: var(--text-3); transition: color var(--t1) var(--ease); }
.footer-col-links a:hover { color: var(--text-1); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: var(--s3); flex-wrap: wrap; gap: var(--s2);
}
.footer-copy { font-size: .76rem; color: var(--text-3); }
.footer-compliance {
  font-size: .72rem; color: var(--text-3); line-height: 1.7; max-width: 900px;
  padding-block: var(--s3); border-top: 1px solid var(--border-sub);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── 16. TOAST ────────────────────────────────────────────── */

.toast-stack {
  position: fixed; bottom: var(--s3); right: var(--s3); left: var(--s3);
  display: flex; flex-direction: column; align-items: flex-end; gap: .6rem;
  z-index: var(--z-toast); pointer-events: none;
}
.toast {
  pointer-events: auto;
  max-width: 360px;
  background: var(--surface-3);
  border: 1px solid var(--accent-bd);
  border-radius: var(--r2);
  padding: .9em 1.2em;
  font-size: .84rem;
  color: var(--text-1);
  box-shadow: var(--shadow-elevated);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t2) var(--ease), transform var(--t2) var(--ease);
}
.toast.show { opacity: 1; transform: translateY(0); }
@media (max-width: 480px) {
  .toast-stack { left: var(--s2); right: var(--s2); bottom: var(--s2); align-items: stretch; }
  .toast { max-width: none; }
}

/* ── 17. PAGE HERO (product page breadcrumb band) ─────────── */

.page-band {
  border-bottom: 1px solid var(--border-sub);
  background: var(--surface);
}
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  padding-block: var(--s2);
  font-size: .74rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--text-3);
}
.breadcrumb a { transition: color var(--t1) var(--ease); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span[aria-current] { color: var(--text-1); }

/* ── 18. PRODUCT DETAIL PAGE ──────────────────────────────── */

.pd-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--s6);
  align-items: start;
  padding-block: var(--s5);
}

.pd-gallery { display: flex; flex-direction: column; gap: var(--s2); position: relative; }
.pd-main-frame {
  position: relative;
  aspect-ratio: 1/1;
  background: radial-gradient(ellipse 80% 80% at 50% 15%, rgba(196,154,60,.09), transparent 70%), var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r3);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.pd-main-frame img {
  width: 100%; height: 100%; object-fit: contain; padding: var(--s4);
  transition: opacity var(--t2) var(--ease);
}
.pd-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border); background: rgba(10,10,14,.7);
  color: var(--text-1); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--t1) var(--ease); z-index: 2;
}
.pd-arrow:hover { border-color: var(--accent-bd); color: var(--accent-hi); background: rgba(10,10,14,.9); }
.pd-arrow-prev { left: var(--s2); }
.pd-arrow-next { right: var(--s2); }
.pd-arrow svg { width: 18px; height: 18px; }

.pd-thumbs { display: flex; gap: var(--s1); overflow-x: auto; scrollbar-width: none; }
.pd-thumbs::-webkit-scrollbar { display: none; }
.pd-thumb {
  width: 76px; height: 76px; flex: 0 0 auto;
  border-radius: var(--r2); border: 1px solid var(--border);
  background: var(--surface); padding: 6px; cursor: pointer;
  opacity: .6; transition: all var(--t1) var(--ease);
}
.pd-thumb img { width: 100%; height: 100%; object-fit: contain; }
.pd-thumb:hover { opacity: .9; border-color: var(--border-hi); }
.pd-thumb.active { opacity: 1; border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent-bd); }

.pd-info { display: flex; flex-direction: column; gap: var(--s3); }
.pd-eyebrow-row { display: flex; align-items: center; gap: var(--s2); flex-wrap: wrap; }
.pd-tag {
  display: inline-flex; align-items: center; gap: .4em;
  padding: .35em .8em; border-radius: var(--r1);
  font-family: var(--font-display);
  font-size: .66rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  background: var(--accent-lo); border: 1px solid var(--accent-bd); color: var(--accent-hi);
}
.pd-info h1 {
  font-family: var(--font-display);
  font-weight: 600; text-transform: uppercase;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  letter-spacing: -0.005em;
  line-height: 1.08;
}
.pd-price-row { display: flex; align-items: baseline; gap: .75rem; flex-wrap: wrap; }
.pd-price {
  font-family: var(--font-display);
  font-size: 2.1rem; font-weight: 600; color: var(--text-1);
}
.pd-price-note { font-size: .8rem; color: var(--text-2); }
.pd-desc { font-size: .96rem; color: var(--text-2); line-height: 1.8; border-top: 1px solid var(--border-sub); padding-top: var(--s3); }

.pd-swatches { display: flex; flex-direction: column; gap: .6rem; }
.pd-swatches-label, .pd-qty-label {
  font-family: var(--font-display);
  font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-2);
}
.swatch-row { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; }
.swatch {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--border-hi);
  cursor: pointer; position: relative;
  transition: transform var(--t1) var(--ease), border-color var(--t1) var(--ease), box-shadow var(--t1) var(--ease);
}
.swatch:hover { transform: translateY(-2px); }
.swatch.selected { border-color: var(--accent-hi); box-shadow: 0 0 0 3px var(--accent-lo); }
.swatch.selected::after {
  content: ''; position: absolute; inset: -6px; border: 1px solid var(--accent-bd); border-radius: 50%;
}
.swatch-name { font-size: .82rem; color: var(--text-1); font-weight: 600; }

.qty-row { display: flex; align-items: center; gap: var(--s2); }
.qty-control {
  display: flex; align-items: center;
  border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden;
  background: var(--surface-2);
}
.qty-btn {
  width: 40px; height: 40px; background: transparent; border: none; color: var(--text-2);
  font-size: 1.15rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all var(--t1) var(--ease);
}
.qty-btn:hover { background: var(--surface-3); color: var(--text-1); }
.qty-val { width: 48px; text-align: center; font-weight: 700; color: var(--text-1); }

.pd-actions { display: flex; gap: var(--s2); flex-wrap: wrap; }
.pd-actions .btn { flex: 1; min-width: 220px; }

.pd-trust-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s2);
  padding-top: var(--s3); border-top: 1px solid var(--border-sub);
}
.pd-trust-item { display: flex; align-items: center; gap: .6rem; font-size: .78rem; color: var(--text-2); }
.pd-trust-item svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; }

.pd-specs { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; }
.pd-spec-row { display: flex; gap: var(--s3); padding: .75rem var(--s3); border-bottom: 1px solid var(--border-sub); }
.pd-spec-row:last-child { border-bottom: none; }
.pd-spec-key { flex: 0 0 130px; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); }
.pd-spec-val { font-size: .86rem; color: var(--text-1); }

.pd-features { display: flex; flex-direction: column; gap: .6rem; }
.pd-features li { display: flex; gap: .7rem; font-size: .88rem; color: var(--text-2); line-height: 1.6; }
.pd-features li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
  margin-top: .6em; flex-shrink: 0;
}

.pd-compliance {
  background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--accent-bd);
  border-radius: var(--r2); padding: var(--s2) var(--s3);
  font-size: .78rem; color: var(--text-3); line-height: 1.7;
}

.pd-lower { padding-block: var(--s5); border-top: 1px solid var(--border-sub); display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); }

@media (max-width: 900px) {
  .pd-grid { grid-template-columns: 1fr; gap: var(--s4); padding-block: var(--s4); }
  .pd-lower { grid-template-columns: 1fr; gap: var(--s4); padding-block: var(--s4); }
  .pd-trust-row { grid-template-columns: 1fr; }
}

/* ── 19. RESPONSIVE — SECTION-LEVEL ───────────────────────── */

@media (max-width: 700px) {
  .section { padding-block: var(--s5); }
  .affiliate-cta { flex-direction: column; align-items: flex-start; padding: var(--s4); }
  .affiliate-cta .btn { width: 100%; justify-content: center; }
}

@media (max-width: 420px) {
  .pd-actions .btn { min-width: 100%; }
  .btn-lg { padding: 1em 1.6em; }
}

/* ── 20. METALLIC ANNOUNCEMENT BAR ────────────────────────────
   Shiny, dimensional gold strip above the header — brushed-metal
   gradient (top highlight → deep gold → shadow) for a 3D bevel,
   with a slow specular sweep. */
.ann-bar {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 7px 16px;
  background: linear-gradient(180deg, #f7e6ad 0%, #e6c56d 15%, #d3a83f 40%, #b8862c 55%, #d3a83f 78%, #9c7626 100%);
  border-bottom: 1px solid rgba(0,0,0,.42);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.6),
    inset 0 -3px 6px rgba(92,62,10,.42),
    0 2px 10px rgba(0,0,0,.5);
  z-index: calc(var(--z-nav) + 1);
}
.ann-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.62) 47%, rgba(255,255,255,.16) 54%, transparent 70%);
  transform: translateX(-130%);
  animation: annSheen 6.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes annSheen { 0% { transform: translateX(-130%); } 55%, 100% { transform: translateX(130%); } }
.ann-bar-text {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #3a2907;
  text-shadow: 0 1px 0 rgba(255,255,255,.5);
}
@media (prefers-reduced-motion: reduce) {
  .ann-bar::before { animation: none; opacity: .3; transform: translateX(0); }
}
@media (max-width: 480px) {
  .ann-bar-text { font-size: .62rem; letter-spacing: .1em; }
}
