/* =========================================================================
   Lock & Load — Cinematic Editorial Tactical
   ========================================================================= */

/* Fonts loaded via <link> in the HTML head with preconnect for parallel
   discovery — keeps Google Fonts off main.css's critical chain. */

:root {
  /* Color Palette — Tactical Noir */
  --ink: #0d0d0d;
  --ink-deep: #050505;
  --char: #1a1a1a;
  --green: #26a653;
  --green-glow: rgba(38, 166, 83, 0.4);
  --cream: #f2f4c3;

  /* Typography */
  --font-sans: 'IBM Plex Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-heading: 'Outfit', sans-serif;

  --ink-warm: #0e1e17;
  --line: #1f3d2e;
  --bone: #ebe3d0;
  --bone-deep: #d4c9aa;
  --bone-line: #c8bd9c;
  --ink-on-bone: #1c1f1c;
  --muted: #9aa099;
  --muted-bone: #6b6753;
  --brass: #a77c2e;
  --brass-glow: #c89540;
  --green: rgb(38, 105, 60);
  --green-up: rgb(49, 130, 73);
  --green-deep: rgb(26, 75, 45);
  --crimson: #9E2A2B;
  --cream: #f2f4c3;
  --paper-grain: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1  0 0 0 0 0.08  0 0 0 0 0.06  0 0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--ink);
  color: #f5f5f5;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--green);
  color: var(--ink);
}

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

a:hover {
  color: var(--cream);
}

h1,
h2,
h3,
h4 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  line-height: 0.96;
  margin: 0 0 0.6em;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--cream);
  color: var(--ink);
  padding: 8px 14px;
  font-family: 'Special Elite', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
}

/* ========================================================================
   LETTERBOX TOP STRIP
   ======================================================================== */
.ll-letterbox {
  background: #040a07;
  color: var(--muted);
  padding: 7px max(32px, calc((100% - 1280px) / 2 + 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: 'Special Elite', 'Courier New', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid #11241b;
}

.ll-letterbox .coords {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ll-letterbox .coords span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ll-letterbox .coords .marker {
  width: 5px;
  height: 5px;
  background: var(--green-up);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green-up);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(49, 130, 73, 0.6);
  }

  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 8px rgba(49, 130, 73, 0);
  }
}

/* ========================================================================
   NAV
   ======================================================================== */
.ll-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 18px max(32px, calc((100% - 1280px) / 2 + 32px));
  background: rgba(10, 24, 18, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(242, 244, 195, 0.18);
}

.ll-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.ll-brand .logo {
  width: 100px;
  height: 100px;
  background: url('../img/logo.svg') center/contain no-repeat;
  filter: drop-shadow(0 0 12px rgba(242, 244, 195, 0.32));
  animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {

  0%,
  100% {
    filter: drop-shadow(0 0 10px rgba(242, 244, 195, 0.30));
  }

  50% {
    filter: drop-shadow(0 0 22px rgba(242, 244, 195, 0.55));
  }
}

.ll-brand .wordmark {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.ll-brand .wordmark .amp {
  color: var(--green-up);
  margin: 0 2px;
}

.ll-brand .tagline {
  display: block;
  margin-top: 2px;
  font-family: 'Special Elite', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.32em;
  color: var(--cream);
  text-transform: uppercase;
}

.ll-menu {
  display: flex;
  gap: 26px;
  justify-content: center;
  align-items: center;
  font-family: 'Manrope', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.ll-menu a {
  padding: 8px 0;
  position: relative;
  transition: color .2s;
  cursor: pointer;
}

.ll-menu a:hover {
  color: #fff;
}

.ll-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--cream);
  transform: scaleX(0);
  opacity: 0;
  transition: transform .25s ease, opacity .2s;
  transform-origin: center;
}

.ll-menu a:hover::after,
.ll-menu a.active::after {
  transform: scaleX(1);
  opacity: 1;
}

.ll-menu a.active {
  color: #fff;
}

.ll-lang {
  display: inline-flex;
  gap: 4px;
}

.ll-lang a {
  padding: 4px 8px;
  border: 1px solid #2a302a;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-family: 'Special Elite', monospace;
}

.ll-lang a.active {
  color: #fff;
  border-color: var(--cream);
  background: rgba(242, 244, 195, 0.14);
}

/* The drawer-only language switch — hidden on desktop, shown only on mobile. */
.ll-menu .mobile-lang {
  display: none;
}

.ll-cta,
.ll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 1px solid var(--cream);
  padding: 11px 20px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.ll-cta::before,
.ll-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream), var(--cream));
  transform: translateX(-101%);
  transition: transform .35s cubic-bezier(.7, 0, .3, 1);
  z-index: -1;
}

.ll-cta:hover,
.ll-btn:hover {
  color: var(--ink);
  border-color: var(--cream);
}

.ll-cta:hover::before,
.ll-btn:hover::before {
  transform: translateX(0);
}

.ll-cta.primary,
.ll-btn.primary {
  background: var(--green);
  border-color: var(--green);
  color: var(--ink);
  box-shadow: 0 4px 15px rgba(38, 105, 60, 0.3);
}

.ll-cta.primary::before,
.ll-btn.primary::before {
  background: var(--green-up);
}

.ll-cta.primary:hover,
.ll-btn.primary:hover {
  box-shadow: 0 0 25px var(--green-glow);
  transform: translateY(-2px);
}

.ll-cta.full,
.ll-btn.full {
  width: 100%;
}

.ll-cta.large,
.ll-btn.large {
  padding: 16px 32px;
  font-size: 0.85rem;
}

.ll-cta.ghost {
  border-color: rgba(255, 255, 255, 0.4);
}

.ll-cta.ghost::before {
  background: #fff;
}

.ll-cta.ghost:hover {
  color: var(--ink);
  border-color: #fff;
}

/* ========================================================================
   FOOTER
   ======================================================================== */
.ll-footer {
  background: #040a07;
  padding: 56px 32px 36px;
  border-top: 1px solid rgba(242, 244, 195, 0.15);
  color: var(--muted);
}

.ll-footer .footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}

.ll-footer h4 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: #fff;
  margin-bottom: 14px;
}

.ll-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ll-footer li {
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.ll-footer a:hover {
  color: var(--cream);
}

.ll-footer .brand-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 320px;
}

.ll-footer .brand-block .logo {
  width: 56px;
  height: 50px;
  background: url('../img/logo.svg') center/contain no-repeat;
}

.ll-footer .brand-block p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.ll-footer .signoff {
  max-width: 1280px;
  margin: 36px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-family: 'Special Elite', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ========================================================================
   COOKIE BANNER
   ======================================================================== */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  background: var(--ink-warm);
  border: 1px solid var(--cream);
  padding: 16px 22px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 880px;
  margin: 0 auto;
  font-size: 0.9rem;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner button {
  background: var(--cream);
  color: var(--ink);
  border: none;
  padding: 10px 18px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-banner button.ghost {
  background: transparent;
  color: #fff;
  border: 1px solid var(--line);
}

/* ========================================================================
   HERO — full-bleed GIF with editorial overlay
   ======================================================================== */
.hero {
  position: relative;
  min-height: 720px;
  background: #000;
  overflow: hidden;
  isolation: isolate;
}

/* LCP image: real <img> element so fetchpriority=high applies and the
   browser discovers it during HTML parse (before CSS is parsed). */
.hero > .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(49, 130, 73, 0.10) 0%, transparent 55%),
    linear-gradient(105deg, rgba(6, 17, 13, 0.92) 0%, rgba(6, 17, 13, 0.62) 36%, rgba(6, 17, 13, 0.30) 60%, rgba(6, 17, 13, 0.78) 100%),
    linear-gradient(180deg, rgba(6, 17, 13, 0.45) 0%, transparent 30%, transparent 65%, rgba(6, 17, 13, 0.92) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: var(--paper-grain);
  mix-blend-mode: overlay;
  opacity: 0.6;
}

.hero-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 110px 64px 120px;
  min-height: 720px;
  align-items: end;
  max-width: 1440px;
  margin: 0 auto;
}

.hero-eyebrow {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Special Elite', monospace;
  font-size: 0.7rem;
  color: var(--cream);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: -40px;
  align-self: start;
  animation: fade-in 0.9s ease both;
}

.hero-eyebrow .rule {
  flex: 0 0 80px;
  height: 1px;
  background: var(--cream);
}

.hero-eyebrow .blink {
  color: var(--green-up);
  animation: blink 1.6s steps(2) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes draw-line {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.hero-title-wrap {
  animation: fade-up 1s 0.15s ease both;
}

.hero h1 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(3.4rem, 7.8vw, 6.6rem);
  line-height: 0.86;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero h1 .accent {
  color: var(--green-up);
  position: relative;
  display: inline-block;
}

.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 8px;
  background: var(--cream);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: draw-line 1.1s 1s cubic-bezier(.2, .7, .1, 1) forwards;
}

.hero h1 .light {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

.hero h1 .hero-bullet {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1.4em;
  height: 0.22em;
  transform: rotate(180deg);
  pointer-events: none;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 12px rgba(38, 166, 83, 0.22));
  animation: bullet-ride 1.1s 1s cubic-bezier(.2, .7, .1, 1) both;
  transform-origin: center;
  z-index: 1;

}

@keyframes bullet-ride {
  from {
    left: 0;
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  to {
    left: calc(100% - 1em);
    opacity: 1;
  }
}

.hero-deck {
  margin-top: 22px;
  max-width: 480px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(232, 225, 208, 0.82);
  border-left: 2px solid var(--cream);
  padding-left: 18px;
  animation: fade-up 1s 0.4s ease both;
}

.hero-deck::first-letter {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 2.4em;
  float: left;
  line-height: 0.85;
  padding: 4px 10px 0 0;
  color: var(--green-up);
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  animation: fade-up 1s 0.6s ease both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: 1px solid;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .25s, border-color .25s;
  isolation: isolate;
}

.hero-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-101%);
  transition: transform .4s cubic-bezier(.7, 0, .3, 1);
}

.hero-cta.primary {
  background: var(--green);
  border-color: var(--green);
  color: var(--ink);
  box-shadow: 0 4px 15px rgba(38, 105, 60, 0.4);
}

.hero-cta.primary::before {
  background: var(--green-up);
}

.hero-cta.primary:hover {
  box-shadow: 0 0 30px var(--green-glow);
  transform: translateY(-2px);
}

.hero-cta.primary:hover::before {
  transform: translateX(0);
}

.hero-cta.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.hero-cta.ghost::before {
  background: #fff;
}

.hero-cta.ghost:hover {
  color: var(--ink);
  border-color: #fff;
}

.hero-cta.ghost:hover::before {
  transform: translateX(0);
}

.hero-cta.ghost::after,
.ll-cta:not(.primary)::after,
.hero-cta.voucher-cta::after {
  filter: invert(1);
}

.hero-cta.voucher-cta {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--green-deep);
}

.hero-cta.voucher-cta::before {
  background: #fff;
}

.hero-cta.voucher-cta:hover {
  color: var(--green-deep);
  border-color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(242, 244, 195, 0.35);
}

.hero-cta.voucher-cta:hover::before {
  transform: translateX(0);
}

@keyframes bullet-fly {
  0% {
    left: -120px;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    left: 120%;
    opacity: 1;
  }
}

.ll-cta::after,
.hero-cta::after,
.form-card button[type=submit]::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -120px;
  width: 120px;
  height: 20px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 20'><defs><linearGradient id='t' x1='0%25' y1='0%25' x2='100%25' y2='0%25'><stop offset='0%25' stop-color='rgba(242,244,195,0)'/><stop offset='100%25' stop-color='rgba(242,244,195,0.8)'/></linearGradient></defs><rect x='0' y='8' width='80' height='4' fill='url(%23t)'/><rect x='30' y='5' width='50' height='1' fill='url(%23t)' opacity='0.5'/><rect x='30' y='14' width='50' height='1' fill='url(%23t)' opacity='0.5'/><path d='M80,6 L82,4 L100,4 C112,4 120,10 120,10 C120,10 112,16 100,16 L82,16 L80,14 Z' fill='%23f2f4c3'/><path d='M82,5 L100,5 C108,5 113,7.5 116,8.5 C113,6.5 106,6 100,6 L82,6 Z' fill='%23ffffff' opacity='0.7'/></svg>") center/contain no-repeat;
  z-index: 50;
  pointer-events: none;
}

.ll-cta:hover::after,
.ll-btn:hover::after,
.hero-cta:hover::after,
.form-card button[type=submit]:hover::after {
  animation: bullet-fly 0.65s ease-in-out forwards;
}

@keyframes target-pop {
  0% {
    transform: translateX(80px) rotate(35deg);
    opacity: 0;
  }

  100% {
    transform: translateX(0) rotate(-12deg);
    opacity: 1;
  }
}

@keyframes bullet-smoke {
  0% {
    transform: scale(0.5);
    opacity: 0;
    filter: blur(5px);
  }

  20% {
    opacity: 0.4;
  }

  100% {
    transform: scale(2);
    opacity: 0;
    filter: blur(15px);
  }
}

@keyframes bullet-smoke {
  0% {
    transform: scale(0.5);
    opacity: 0;
    filter: blur(5px);
  }

  20% {
    opacity: 0.4;
  }

  100% {
    transform: scale(2);
    opacity: 0;
    filter: blur(15px);
  }
}

.pkg::before,
.weapon-card::before,
.course-card::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle at 50% 50%, rgba(38, 166, 83, 0.15) 0%, transparent 60%);
  z-index: 19;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: screen;
}

.pkg::after,
.weapon-card::after,
.course-card::after {
  content: "";
  position: absolute;
  top: 15px;
  right: -30px;
  width: 100px;
  height: 130px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 120'><path d='M50,5 C58,5 62,12 62,25 C62,35 57,42 55,45 C75,48 88,55 88,80 L88,115 L12,115 L12,80 C12,55 25,48 45,45 C43,42 38,35 38,25 C38,12 42,5 50,5 Z' fill='rgba(255,255,255,0.05)' stroke='white' stroke-width='2.5'/><ellipse cx='50' cy='75' rx='30' ry='35' stroke='white' stroke-width='1' fill='none' opacity='0.3'/><ellipse cx='50' cy='75' rx='20' ry='24' stroke='white' stroke-width='1' fill='none' opacity='0.5'/><ellipse cx='50' cy='75' rx='10' ry='12' stroke='white' stroke-width='1' fill='none' opacity='0.7'/><circle cx='50' cy='75' r='3' fill='white'/></svg>") center/contain no-repeat;
  z-index: 20;
  pointer-events: none;
  opacity: 0;
  transform-origin: bottom right;
}

.pkg:hover::before,
.weapon-card:hover::before,
.course-card:hover::before {
  animation: bullet-smoke 1s ease-out forwards;
}

.pkg:hover::after,
.weapon-card:hover::after,
.course-card:hover::after {
  animation: target-pop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.hero-side {
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
  animation: fade-up 1s 0.5s ease both;
}

.stamp {
  transform: rotate(7deg);
  border: 2px solid var(--crimson);
  color: var(--crimson);
  padding: 10px 18px;
  font-family: 'Special Elite', monospace;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  background: rgba(158, 42, 43, 0.06);
  box-shadow: inset 0 0 0 1px rgba(158, 42, 43, 0.5);
  text-align: center;
  line-height: 1.3;
}

.stamp .small {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  opacity: 0.7;
  margin-top: 2px;
}

.spec-card {
  background: rgba(6, 17, 13, 0.62);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(242, 244, 195, 0.4);
  padding: 22px 26px;
  min-width: 260px;
}

.spec-card .label {
  font-family: 'Special Elite', monospace;
  font-size: 0.62rem;
  color: var(--cream);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.spec-card .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(242, 244, 195, 0.22);
}

.spec-card .row:last-child {
  border-bottom: none;
}

.spec-card .row .k {
  font-family: 'Special Elite', monospace;
  font-size: 0.7rem;
  color: rgba(232, 225, 208, 0.65);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.spec-card .row .v {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
}

.spec-card .row .v .u {
  color: var(--green-up);
  font-size: 0.7em;
  margin-left: 2px;
}

.filing-tag {
  position: absolute;
  left: 64px;
  bottom: 32px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Special Elite', monospace;
  color: rgba(232, 225, 208, 0.55);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-left: 3px solid var(--cream);
  padding-left: 14px;
  animation: fade-in 1.4s 0.8s ease both;
}

.filing-tag .key {
  color: var(--cream);
  margin-right: 4px;
}

/* ========================================================================
   CHAPTER SECTION (numbered editorial)
   ======================================================================== */
.chapter {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding: 110px 32px 120px;
  overflow: hidden;
}

.chapter.alt {
  background: var(--char);
}

.chapter::before {
  content: "";
  position: absolute;
  left: -15%;
  top: -15%;
  width: 85%;
  height: 85%;
  background: radial-gradient(circle at center, rgba(242, 244, 195, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

.chapter::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -15%;
  width: 70%;
  height: 85%;
  background: radial-gradient(circle at center, rgba(38, 105, 60, 0.20) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

.chapter-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  z-index: 5;
}

.chapter.packages-bg {
  background: #000 url('../img/packages-bg.jpg') center/cover no-repeat;
  isolation: isolate;
}

.chapter.events-bg {
  background: #000 url('../img/events-bg.jpg') center/cover no-repeat;
  isolation: isolate;
}

.chapter.packages-bg::before,
.chapter.events-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at center, rgba(16, 38, 28, 0.6) 0%, rgba(6, 15, 11, 0.95) 45%, rgba(0, 0, 0, 1) 75%),
    linear-gradient(105deg, rgba(10, 32, 24, 0.85) 0%, transparent 40%, rgba(10, 32, 24, 0.7) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(49, 130, 73, 0.6) 0%, transparent 70%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  filter: none;
}

.chapter.packages-bg::after,
.chapter.events-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: var(--paper-grain);
  mix-blend-mode: overlay;
  opacity: 0.1;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  filter: none;
}

.chapter-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 48px;
  margin-bottom: 56px;
  border-bottom: 1px solid rgba(242, 244, 195, 0.3);
  padding-bottom: 28px;
}

.chapter-num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(6rem, 13vw, 11rem);
  line-height: 0.78;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cream);
  letter-spacing: -0.02em;
  user-select: none;
}

.chapter-title-block .kicker {
  font-family: 'Special Elite', monospace;
  font-size: 0.74rem;
  color: var(--cream);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.chapter-title-block .kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--cream);
}

.chapter-title-block h2 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  line-height: 0.96;
  margin: 0;
  text-transform: uppercase;
}

.chapter-title-block h2 .green {
  color: var(--green-up);
}

.chapter-link {
  font-family: 'Manrope', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--cream);
  padding-bottom: 4px;
  transition: color .2s, gap .25s;
}

.chapter-link:hover {
  color: var(--cream);
  gap: 16px;
}

/* ========================================================================
   PACKAGE CARDS
   ======================================================================== */
.package-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
}

.package-grid>.right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.package-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 18px;
}

@media (max-width: 900px) {
  .package-row {
    grid-template-columns: 1fr;
  }
}

.pkg {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--char);
  border: 1px solid var(--line);
  transition: transform .35s cubic-bezier(.2, .7, .1, 1), border-color .25s, box-shadow .35s;
  text-decoration: none;
  color: inherit;
  display: block;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.pkg .pkg-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  text-indent: -9999px;
  overflow: hidden;
}

.pkg .info {
  z-index: 2;
  pointer-events: none;
}

.pkg .badge {
  z-index: 3;
  pointer-events: none;
}

.pkg .pkg-cta {
  position: relative;
  z-index: 3;
  text-decoration: none;
  pointer-events: auto;
}

.pkg:hover {
  transform: translateY(-8px) rotateX(4deg) rotateY(-2deg);
  border-color: var(--cream);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(242, 244, 195, 0.25);
}

.pkg .photo {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(49, 130, 73, 0.15) 0%, transparent 60%),
    linear-gradient(135deg, #162e23 0%, #06110d 100%);
}

.pkg .photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--paper-grain);
  mix-blend-mode: overlay;
  opacity: 0.5;
  pointer-events: none;
}

.pkg .photo>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pkg .photo .weapon-single {
  object-fit: contain;
  padding: 6% 8% 38%;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.55)) contrast(1.15) saturate(1.2) brightness(1.1);
  transition: transform .5s cubic-bezier(.2, .7, .1, 1);
}

.pkg.featured .photo .weapon-single {
  padding: 10% 10% 32%;
}

.pkg:hover .photo .weapon-single {
  transform: scale(1.04) rotate(-1deg);
}

.pkg.featured:has(.weapon-single) .silhouette,
.pkg.small:has(.weapon-single) .silhouette,
.pkg.featured:has(.weapon-stack) .silhouette,
.pkg.small:has(.weapon-stack) .silhouette {
  opacity: 0.12;
}

.pkg .photo .weapon-stack {
  position: absolute;
  inset: 0;
}

.pkg .photo .weapon-stack>img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78%;
  height: 56%;
  object-fit: contain;
  transform-origin: 50% 60%;
  mix-blend-mode: lighten;
  transform:
    translate(calc(-50% + (var(--i) - (var(--last, 0) / 2)) * 26%),
      calc(-60% + (var(--i) - (var(--last, 0) / 2)) * 10%)) rotate(calc((var(--i) - (var(--last, 0) / 2)) * 9deg));
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.55)) contrast(1.15) saturate(1.2) brightness(1.1);
  transition: transform .55s cubic-bezier(.2, .7, .1, 1);
}

.pkg .photo .weapon-stack[data-count="2"] {
  --last: 1;
}

.pkg .photo .weapon-stack[data-count="3"] {
  --last: 2;
}

.pkg .photo .weapon-stack[data-count="4"] {
  --last: 3;
}

.pkg:hover .photo .weapon-stack>img {
  transform:
    translate(calc(-50% + (var(--i) - (var(--last, 0) / 2)) * 34%),
      calc(-60% + (var(--i) - (var(--last, 0) / 2)) * 12%)) rotate(calc((var(--i) - (var(--last, 0) / 2)) * 11deg));
}

.pkg .silhouette {
  position: absolute;
  bottom: 24%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 28%;
  background: linear-gradient(180deg, var(--bone-deep) 0%, rgba(232, 225, 208, 0.4) 100%);
  -webkit-mask: url('../img/logo.svg') center/contain no-repeat;
  mask: url('../img/logo.svg') center/contain no-repeat;
  opacity: 0.35;
  transition: transform .4s ease, opacity .25s;
}

.pkg:hover .silhouette {
  transform: translateX(calc(-50% - 8px)) scale(1.05);
  opacity: 0.85;
}

.pkg .info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 30px;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 17, 13, 0.85) 60%);
}

.pkg .meta-line {
  font-family: 'Special Elite', monospace;
  font-size: 0.7rem;
  color: var(--cream);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pkg .meta-line .pin {
  width: 6px;
  height: 6px;
  background: var(--green-up);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green-up);
}

.pkg-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.pkg-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  color: rgba(232, 225, 208, 0.7);
  margin-bottom: 18px;
}

.pkg-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(242, 244, 195, 0.3);
}

.pkg-price {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #fff;
  line-height: 1;
}

.pkg-price .cur {
  color: var(--cream);
  font-size: 0.6em;
  margin-left: 4px;
  letter-spacing: 0.06em;
}

.pkg-price-old {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1;
  color: rgba(232, 225, 208, 0.5);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255, 90, 90, 0.7);
  margin-bottom: 4px;
}
.pkg-price-old .cur {
  font-size: 0.6em;
  margin-left: 4px;
  letter-spacing: 0.06em;
}

.price-block.has-discount .pkg-price {
  color: var(--green, #26a653);
}

.price-savings {
  font-family: 'Special Elite', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green, #26a653);
  margin-top: 6px;
}

.dossier-foot .pkg-price-old {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.pkg-cta {
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--ink);
  background: var(--green);
  padding: 8px 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.pkg:hover .pkg-cta {
  background: var(--green-up);
  gap: 16px;
  box-shadow: 0 0 20px var(--green-glow);
}

.pkg-cta::after {
  content: "→";
}

.pkg .badge {
  position: absolute;
  top: 22px;
  left: 22px;
  background: var(--bone);
  color: var(--ink-on-bone);
  padding: 6px 12px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(-2deg);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.pkg .badge.hot {
  background: var(--crimson);
  color: #fff;
}

.pkg.featured {
  aspect-ratio: 1.05/1;
}

.pkg.small {
  aspect-ratio: 1.65/1;
}

/* ========================================================================
   INSTRUCTORS — STICKY-STACK PARALLAX · "DOSSIER FILES"
   Each instructor pins to the viewport as a declassified personnel file.
   The next file slides up and covers the previous.
   ======================================================================== */
/* Critical: the default .chapter has `overflow: hidden` which kills
   `position: sticky` on its descendants. Override for this chapter only. */
.chapter.instructors-chapter {
  overflow: visible;
}
.chapter.instructors-chapter::before,
.chapter.instructors-chapter::after {
  display: none;
}

.instructor-grid {
  --hair: 1px;
  --paper: #0c1813;
  --brass-line: rgba(167, 124, 46, 0.55);
  --bone-soft: rgba(232, 225, 208, 0.18);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 8px;
}

.instructor-card {
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(20, 36, 28, 0.55) 0%, rgba(6, 14, 11, 0.92) 100%),
    linear-gradient(#0c1813, #0c1813);
  border: 1px solid rgba(242, 244, 195, 0.22);
  box-shadow:
    0 1px 0 rgba(232, 225, 208, 0.04) inset,
    0 30px 60px -40px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}

@media (max-width: 1024px) {
  .instructor-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

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


/* ----- Dossier top bar --------------------------------------------------- */
.dossier-bar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 36px 0 36px;
  font-family: 'Special Elite', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
}

.dossier-tag {
  color: var(--brass-glow);
  background: rgba(167, 124, 46, 0.08);
  border: var(--hair) solid var(--brass-line);
  padding: 7px 12px;
  white-space: nowrap;
}

.dossier-rule {
  flex: 1;
  height: 1px;
  background:
    linear-gradient(90deg,
      transparent 0,
      var(--bone-soft) 8px,
      var(--bone-soft) calc(100% - 8px),
      transparent 100%);
  position: relative;
}
.dossier-rule::before,
.dossier-rule::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--bone-soft);
  transform: rotate(45deg);
  background: var(--paper);
}
.dossier-rule::before { left: 16px; }
.dossier-rule::after  { right: 16px; }

.dossier-class {
  color: rgba(232, 225, 208, 0.55);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  white-space: nowrap;
}

.instructor-card .instructor-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(49, 130, 73, 0.20) 0%, transparent 65%),
    linear-gradient(135deg, #142b21 0%, #050d09 100%);
  border-bottom: 1px solid rgba(242, 244, 195, 0.18);
}

.instructor-card .instructor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-missing {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  color: rgba(232, 225, 208, 0.06);
  letter-spacing: -0.02em;
}

/* Crosshair reticle — four hairline marks framing the subject */
.reticle {
  position: absolute;
  inset: 14px;
  pointer-events: none;
  z-index: 4;
}
.reticle > span {
  position: absolute;
  background: rgba(242, 244, 195, 0.55);
  box-shadow: 0 0 6px rgba(242, 244, 195, 0.3);
}
.reticle > span:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); width: 1px; height: 14px; }
.reticle > span:nth-child(2) { bottom: 0; left: 50%; transform: translateX(-50%); width: 1px; height: 14px; }
.reticle > span:nth-child(3) { left: 0; top: 50%; transform: translateY(-50%); height: 1px; width: 14px; }
.reticle > span:nth-child(4) { right: 0; top: 50%; transform: translateY(-50%); height: 1px; width: 14px; }
/* Center dot */
.reticle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  border: 1px solid rgba(242, 244, 195, 0.7);
  border-radius: 50%;
}

.exif {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 4;
  font-family: 'Special Elite', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  color: rgba(232, 225, 208, 0.78);
  background: rgba(6, 17, 13, 0.72);
  border: 1px solid rgba(242, 244, 195, 0.16);
  padding: 6px 10px;
  text-transform: uppercase;
}

/* ----- Oversized stencil dossier number, between photo and info -------- */
.dossier-num {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(14rem, 28vw, 26rem);
  line-height: 0.78;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(232, 225, 208, 0.14);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: 4;
  white-space: nowrap;
}

.instructor-card .instructor-info {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.instructor-card .instructor-info .meta-line {
  font-family: 'Special Elite', monospace;
  font-size: 0.72rem;
  color: var(--cream);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin: 0;
}

.instructor-card .instructor-info h3 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  line-height: 1;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

.instructor-bio {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.96rem;
  color: rgba(232, 225, 208, 0.82);
  line-height: 1.6;
}
.instructor-bio p { margin: 0 0 10px; }
.instructor-bio p:last-child { margin-bottom: 0; }

/* ----- Dossier footer (REF / ID / STATUS / FILED) ----------------------- */
.dossier-foot {
  margin-top: 28px;
  padding-top: 16px;
  border-top: var(--hair) dashed rgba(232, 225, 208, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-family: 'Special Elite', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: rgba(232, 225, 208, 0.7);
  text-transform: uppercase;
}
.dossier-foot .k {
  display: inline-block;
  color: var(--brass-glow);
  margin-right: 8px;
  opacity: 0.9;
}
.dossier-foot em {
  font-style: normal;
  color: var(--green-up);
  text-shadow: 0 0 8px rgba(49, 130, 73, 0.4);
}
.dossier-foot em::before {
  content: "● ";
  font-size: 0.6em;
  vertical-align: 2px;
}

/* ----- Rotated "AUTORIZAT" stamp --------------------------------------- */
.auth-stamp {
  position: absolute;
  right: -8px;
  bottom: 64px;
  transform: rotate(-9deg);
  border: 2px solid var(--crimson);
  color: var(--crimson);
  background: rgba(158, 42, 43, 0.06);
  font-family: 'Special Elite', monospace;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.36em;
  padding: 8px 16px;
  text-transform: uppercase;
  opacity: 0.85;
  box-shadow:
    inset 0 0 0 1px rgba(158, 42, 43, 0.25),
    0 0 0 1px rgba(158, 42, 43, 0.08);
  pointer-events: none;
}
.auth-stamp::before,
.auth-stamp::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px dashed rgba(158, 42, 43, 0.35);
}
.auth-stamp::after {
  inset: -8px;
  border-style: dotted;
  opacity: 0.5;
}


/* ========================================================================
   PACKAGE DETAIL PAGE
   ======================================================================== */
.pkg-detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

.weapon-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.weapon-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  background: var(--char);
  border: 1px solid var(--line);
}

.weapon-row .weapon-icon-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.weapon-row .weapon-icon {
  width: 80px;
  height: 40px;
  background: rgba(242, 244, 195, 0.1);
  clip-path: polygon(0% 60%, 18% 60%, 18% 38%, 32% 30%, 60% 30%, 60% 60%, 100% 60%, 100% 70%, 0% 70%);
}

.weapon-row .weapon-text .label {
  margin: 0;
}

.weapon-row .weapon-text .value {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  margin: 4px 0 0;
  color: #fff;
  line-height: 1.05;
}

.weapon-row .shot-count {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: right;
}

.weapon-row .shot-count .ammo {
  width: 36px;
  height: auto;
}

.weapon-row .shot-count .num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.weapon-row .shot-count .lbl {
  font-family: 'Special Elite', monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(242, 244, 195, 0.5);
  margin-top: 4px;
}

.pkg-vitals {
  margin-top: 32px;
  padding: 26px;
  border: 1px dashed rgba(242, 244, 195, 0.2);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pkg-summary-card {
  position: sticky;
  top: 100px;
  padding: 36px;
  background: rgba(13, 13, 13, 0.9);
  border: 1px solid var(--green);
  box-shadow: 0 0 40px rgba(38, 166, 83, 0.15);
}

.pkg-summary-card h3 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  margin: 0 0 24px;
  color: #fff;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.pkg-summary-card .price-block {
  margin-bottom: 28px;
}

.pkg-summary-card .pkg-price {
  font-size: 3rem;
}

.pkg-summary-card .book-cta {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 24px;
}

.pkg-summary-card .secure-note {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(242, 244, 195, 0.4);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
  .pkg-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pkg-summary-card {
    position: static;
  }
}

@media (max-width: 700px) {
  .pkg-detail-grid {
    gap: 32px;
  }

  .weapon-row {
    grid-template-columns: 72px 1fr;
    grid-template-areas: "icon text" "shots shots";
    gap: 14px 18px;
    padding: 18px 18px;
  }

  .weapon-row .weapon-icon-wrap {
    grid-area: icon;
  }

  .weapon-row .weapon-text {
    grid-area: text;
    min-width: 0;
  }

  .weapon-row .shot-count {
    grid-area: shots;
    justify-content: flex-start;
    border-top: 1px solid var(--line);
    padding-top: 14px;
    text-align: left;
  }

  .weapon-row .weapon-text .value {
    font-size: 1.25rem;
    overflow-wrap: anywhere;
  }

  .pkg-vitals {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 18px;
  }

  .pkg-summary-card {
    padding: 26px 22px;
  }

  .pkg-summary-card h3 {
    font-size: 1.6rem;
  }

  .pkg-summary-card .pkg-price {
    font-size: 2.4rem;
  }
}

/* ========================================================================
   SECTION PAGE HEADER (used on /pachete-tragere, /cursuri, etc.)
   ======================================================================== */
.page-header {
  position: relative;
  padding: 90px 32px 60px;
  background: var(--ink-deep);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(38, 105, 60, 0.12), transparent 60%);
  pointer-events: none;
}

.page-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.page-header .kicker {
  font-family: 'Special Elite', monospace;
  font-size: 0.74rem;
  color: var(--cream);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.page-header .kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--cream);
}

.page-header h1 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.92;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.page-header h1 .green {
  color: var(--green-up);
}

.page-header .deck {
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(232, 225, 208, 0.78);
  border-left: 2px solid var(--cream);
  padding-left: 18px;
}

/* ========================================================================
   FORMS (events, contact)
   ======================================================================== */
.form-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--char);
  border: 1px solid var(--line);
  padding: 40px 44px;
}

.form-card h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.form-card label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 18px 0 6px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
}

.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  padding: 12px 14px;
  background: var(--ink);
  border: 1px solid var(--line);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  transition: border-color .2s;
}

.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus {
  outline: none;
  border-color: var(--cream);
}

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

.form-card .grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-card .consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 22px;
  font-size: 0.85rem;
  color: var(--muted);
}

.form-card .consent input[type=checkbox] {
  width: auto;
  margin-top: 4px;
  flex-shrink: 0;
}

.form-card button[type=submit] {
  margin-top: 28px;
  padding: 16px 36px;
  background: var(--green);
  color: var(--ink);
  border: none;
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
  position: relative;
  overflow: hidden;
}

.form-card button[type=submit]:hover {
  background: var(--green-up);
}

.form-flash {
  padding: 14px 18px;
  margin-bottom: 18px;
  border: 1px solid;
}

.form-flash.ok {
  border-color: var(--green);
  background: rgba(38, 105, 60, 0.08);
  color: var(--green-up);
}

.form-flash.err {
  border-color: var(--crimson);
  background: rgba(158, 42, 43, 0.08);
  color: var(--crimson);
}

/* ========================================================================
   CONTACT / EVENT INFO TILES
   ======================================================================== */
.info-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
}

.info-tile {
  background: var(--char);
  border: 1px solid var(--line);
  padding: 28px 26px;
  position: relative;
}

.info-tile .label {
  font-family: 'Special Elite', monospace;
  font-size: 0.7rem;
  color: var(--cream);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.info-tile .value {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
}

.info-tile p {
  font-size: 0.9rem;
  color: rgba(232, 225, 208, 0.72);
  line-height: 1.5;
}

/* ========================================================================
   COURSE CARDS
   ======================================================================== */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}

.course-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(20, 36, 28, 0.55) 0%, rgba(6, 14, 11, 0.92) 100%),
    radial-gradient(ellipse at 12% 0%, rgba(49, 130, 73, 0.18) 0%, transparent 55%),
    var(--paper-grain);
  background-blend-mode: normal, screen, overlay;
  border: 1px solid rgba(242, 244, 195, 0.22);
  padding: 24px 24px 22px;
  isolation: isolate;
  transition: transform .35s cubic-bezier(.2, .7, .1, 1), border-color .25s, box-shadow .35s;
}

.course-card::before {
  /* faint scanline texture (re-purposes the shared ::before slot) */
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 3px);
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 0;
  opacity: 1;
  /* override the shared smoke effect from .course-card::before above */
  width: auto; height: auto; top: 0; right: 0;
}
.course-card::after { display: none; }
.course-card:hover::before { animation: none; }
.course-card:hover::after { animation: none; }

.course-card > * { position: relative; z-index: 1; }

.course-card .tick {
  position: absolute;
  width: 14px; height: 14px;
  border: 1.5px solid var(--cream);
  z-index: 2;
  pointer-events: none;
}
.course-card .tick.tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.course-card .tick.tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.course-card .tick.bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.course-card .tick.br { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.course-card:hover {
  transform: translateY(-6px);
  border-color: var(--cream);
  box-shadow: 0 28px 50px -18px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(242, 244, 195, 0.22);
}

.course-card .meta-line {
  font-family: 'Special Elite', monospace;
  font-size: 0.7rem;
  color: var(--cream);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.course-card .meta-line .pin {
  width: 6px; height: 6px;
  background: var(--green-up);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green-glow);
}

.course-card h3 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: #fff;
}

.course-card .desc {
  font-size: 0.95rem;
  color: rgba(232, 225, 208, 0.72);
  line-height: 1.55;
  margin-bottom: 18px;
}

.course-card .foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(242, 244, 195, 0.3);
}

.course-card .price {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: #fff;
  line-height: 1;
}

.course-card .price .cur {
  color: var(--cream);
  font-size: 0.55em;
  margin-left: 4px;
  letter-spacing: 0.08em;
}

.course-card .pkg-cta {
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--green);
  color: #fff;
  padding: 9px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: gap .25s ease, background .25s ease, box-shadow .25s ease;
}
.course-card .pkg-cta::after { content: "→"; }
.course-card:hover .pkg-cta { background: var(--green-up); gap: 14px; box-shadow: 0 0 20px var(--green-glow); }

/* ========================================================================
   WEAPON CARDS (catalog grid)
   ======================================================================== */
.weapon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.weapon-card {
  position: relative;
  aspect-ratio: 1/1.1;
  background: var(--char);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2, .7, .1, 1), border-color .25s, box-shadow .35s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  perspective: 1000px;
}

.weapon-card:hover {
  transform: translateY(-6px) rotateX(2deg) rotateY(-1deg);
  border-color: var(--cream);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.7);
}

.weapon-card .photo {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(49, 130, 73, 0.18), transparent 60%),
    linear-gradient(160deg, #162e23 0%, #06110d 100%);
}

.weapon-card .photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--paper-grain);
  mix-blend-mode: overlay;
  opacity: 0.45;
}

.weapon-card .silhouette {
  position: absolute;
  bottom: 38%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 24%;
  background: linear-gradient(180deg, var(--bone-deep), rgba(232, 225, 208, 0.4));
  -webkit-mask: url('../img/logo.svg') center/contain no-repeat;
  mask: url('../img/logo.svg') center/contain no-repeat;
  opacity: 0.3;
  transition: transform .4s, opacity .25s;
}

.weapon-card:hover .silhouette {
  transform: translateX(calc(-50% - 6px)) scale(1.05);
  opacity: 0.85;
}

.silhouette-placeholder {
  width: 240px;
  height: 180px;
  background: rgba(242, 244, 195, 0.1);
  -webkit-mask: url('../img/logo.svg') center/contain no-repeat;
  mask: url('../img/logo.svg') center/contain no-repeat;
  opacity: 0.2;
}

.weapon-card .body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 17, 13, 0.88) 55%);
}

.weapon-card .caliber {
  font-family: 'Special Elite', monospace;
  font-size: 0.66rem;
  color: var(--cream);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.weapon-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.weapon-card .price {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--green-up);
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.weapon-card .price .cur {
  color: var(--cream);
  font-size: 0.56em;
}

/* ========================================================================
   STATS BAND (used on home, about, etc.)
   ======================================================================== */
.stats-band {
  position: relative;
  background:
    linear-gradient(180deg, var(--ink), #040a07),
    var(--paper-grain);
  background-blend-mode: normal, overlay;
  padding: 44px 32px;
  border-top: 1px solid rgba(242, 244, 195, 0.22);
  border-bottom: 1px solid rgba(242, 244, 195, 0.22);
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.stats-grid {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat {
  position: relative;
  padding: 22px 28px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px dashed rgba(242, 244, 195, 0.22);
  transition: background .25s ease;
}

.stat:last-child {
  border-right: none;
}

/* top accent line — same green-up glow as .rack-card */
.stat::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 22px; height: 1px;
  background: var(--green-up);
  box-shadow: 0 0 8px var(--green-glow);
  transition: width .35s cubic-bezier(.2,.7,.1,1);
}

.stat:hover { background: linear-gradient(180deg, rgba(49,130,73,0.04), transparent); }
.stat:hover::before { width: 80%; }

.stat .num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.01em;
}

.stat .num .green {
  color: var(--green-up);
}

.stat .lbl {
  font-family: 'Special Elite', monospace;
  font-size: 0.66rem;
  color: rgba(232, 225, 208, 0.6);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ========================================================================
   SECONDARY NAV (Arme & Muniție tabs)
   ======================================================================== */
.subnav {
  background: var(--ink-warm);
  border-bottom: 1px solid var(--line);
  padding: 14px 32px;
  display: flex;
  justify-content: center;
  gap: 28px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  position: sticky;
  top: 136px;
  z-index: 40;
}

.subnav a {
  padding: 6px 0;
  position: relative;
  transition: color .2s;
}

.subnav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -2px;
  height: 2px;
  background: var(--green);
  transition: all .2s;
}

.subnav a:hover,
.subnav a.active {
  color: #fff;
}

.subnav a:hover::after,
.subnav a.active::after {
  left: 0;
  right: 0;
}

/* ========================================================================
   ADMIN LOGIN CARD (only used inside admin/login)
   ======================================================================== */
.placeholder-hero {
  padding: 120px 32px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.placeholder-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.placeholder-hero p {
  font-size: 1.1rem;
  color: rgba(232, 225, 208, 0.78);
}

/* ========================================================================
   MOBILE
   ======================================================================== */
.ll-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: #fff;
  padding: 9px 12px;
  cursor: pointer;
  font-family: 'Special Elite', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  min-height: 44px;
  min-width: 44px;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 80px 32px 90px;
    min-height: auto;
  }

  .hero-side {
    align-items: flex-start;
    margin-top: 24px;
  }

  .filing-tag {
    left: 32px;
    bottom: 18px;
    flex-wrap: wrap;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .pkg.featured {
    aspect-ratio: 1.6/1;
  }

  .pkg.small {
    aspect-ratio: 1.6/1;
  }

  .ll-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-grid {
    grid-template-columns: 1fr;
    padding: 50px 22px;
  }

  .chapter-head {
    grid-template-columns: auto 1fr;
    row-gap: 16px;
  }

  .chapter-link {
    grid-column: 1 / -1;
    justify-self: end;
  }
}

@media (max-width: 900px) {
  .ll-nav {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 18px;
  }

  .ll-brand .logo {
    width: 50px;
    height: 50px;
  }

  .ll-brand .wordmark {
    font-size: 1.15rem;
  }

  .ll-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .ll-lang {
    display: none;
  }

  .ll-cta {
    display: none;
  }

  .ll-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 60;
    flex-direction: column;
    gap: 0;
    background: rgba(6, 17, 13, 0.98);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 12px 18px 22px;
  }

  .ll-menu.open {
    display: flex;
  }

  .ll-menu a {
    padding: 16px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .ll-menu a::after {
    display: none;
  }

  .ll-menu .mobile-lang {
    display: flex;
    gap: 6px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    margin-top: 8px;
  }

  .ll-menu .mobile-lang a {
    padding: 10px 14px;
    border: 1px solid var(--line);
  }

  .ll-menu .mobile-lang a.active {
    border-color: var(--cream);
  }

  .ll-letterbox .coords span:nth-child(n+2) {
    display: none;
  }

  .subnav {
    top: 78px;
    gap: 18px;
    padding: 12px 18px;
    flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  .container {
    padding: 0 18px;
  }

  .chapter {
    padding: 60px 18px 70px;
  }

  .page-header {
    padding: 70px 18px 50px;
  }

  .form-card {
    padding: 28px 22px;
  }

  .form-card .grid-2 {
    grid-template-columns: 1fr;
  }

  .ll-letterbox {
    padding: 6px 18px;
    gap: 12px;
  }

  .ll-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat {
    padding: 14px 18px;
  }

  .pkg-title {
    font-size: 1.5rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .chapter-head {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 32px;
    padding-bottom: 18px;
  }

  .chapter-num {
    font-size: clamp(3.5rem, 16vw, 5.5rem);
  }

  .chapter-title-block {
    min-width: 0;
  }

  .chapter-title-block h2 {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }

  .chapter-link {
    grid-column: auto;
    justify-self: start;
    margin-top: 8px;
  }

  .pkg.featured,
  .pkg.small {
    aspect-ratio: 1/1.2;
  }

  .pkg-title {
    font-size: 1.3rem;
  }

  .pkg .info {
    padding: 20px 22px;
  }

  .pkg-sub {
    font-size: 0.88rem;
    margin-bottom: 14px;
  }

  .pkg .photo .weapon-single {
    padding: 10% 10% 45%;
  }

  .pkg .photo .weapon-stack > img {
    width: 85%;
    height: 60%;
    transform:
      translate(calc(-50% + (var(--i) - (var(--last, 0) / 2)) * 30%),
        calc(-70% + (var(--i) - (var(--last, 0) / 2)) * 12%)) rotate(calc((var(--i) - (var(--last, 0) / 2)) * 10deg));
  }

  .instructor-photo {
    aspect-ratio: 1/1;
  }

  .instructor-info {
    padding: 18px 20px 22px;
  }

  .instructor-info h3 {
    font-size: 1.35rem;
  }

  .course-grid {
    grid-template-columns: 1fr !important;
  }

  .course-card {
    padding: 22px !important;
  }

  .hero-grid {
    text-align: center;
    padding: 60px 18px 100px;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-deck {
    margin-left: auto;
    margin-right: auto;
    border-left: none;
    padding-left: 0;
  }

  .hero-deck::first-letter {
    float: none;
    display: inline-block;
    padding: 0 6px 0 0;
    line-height: 1;
  }

  .hero-side {
    align-items: center;
    width: 100%;
    margin-top: 40px;
  }

  .filing-tag {
    left: 0;
    right: 0;
    bottom: 18px;
    width: 100%;
    justify-content: center;
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px;
  }

  .cookie-banner button {
    width: 100%;
  }

  .placeholder-hero {
    padding: 70px 18px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta {
    width: 100%;
    padding: 16px;
    justify-content: space-between;
  }
}

button,
[role="button"] {
  min-height: 44px;
}

@media (prefers-reduced-data: reduce) {
  .hero {
    background-image: none !important;
    background-color: var(--ink-deep) !important;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Booking Engine */
.booking-container {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  max-width: 1280px;
  margin: 40px auto;
  padding: 0 40px 100px;
}

.booking-step {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
}

.booking-step::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 60px;
  bottom: -30px;
  width: 1px;
  background: rgba(242, 244, 195, 0.1);
}

.booking-step:last-child::before {
  display: none;
}

.step-num {
  width: 50px;
  height: 50px;
  border: 1px solid var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--cream);
  flex-shrink: 0;
  background: var(--char);
  z-index: 2;
}

.step-content {
  flex: 1;
  padding-top: 10px;
}

.step-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 25px;
  color: #fff;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
}

.slot-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(242, 244, 195, 0.1);
  padding: 13px 15px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.slot-btn .slot-time { font-size: 1rem; line-height: 1; }

.slot-btn .slot-seats {
  font-family: 'Special Elite', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-up);
  min-height: 0.7em;
}

.slot-btn:hover:not(:disabled) {
  border-color: var(--green);
  background: rgba(38, 105, 60, 0.1);
}

.slot-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--ink);
}
.slot-btn.active .slot-seats { color: rgba(13, 13, 13, 0.7); }

.slot-btn.full,
.slot-btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  background: rgba(255, 255, 255, 0.02);
  border-style: dashed;
}
.slot-btn.full .slot-seats { color: var(--crimson); }
.slot-btn.full .slot-time { text-decoration: line-through; }

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
}

.form-row.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(242, 244, 195, 0.6);
  font-weight: 600;
}

body {
  background-color: var(--ink-deep);
  color: var(--bone-deep);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--bone);
  line-height: 1.1;
}

.kicker,
.label,
.meta,
.price,
.caliber,
.num {
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ll-input {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(242, 244, 195, 0.1);
  padding: 14px 18px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all .2s;
}

.ll-input:focus {
  outline: none;
  border-color: var(--green);
  background: rgba(0, 0, 0, 0.5);
}

.booking-summary {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.summary-card {
  padding: 30px;
  border-radius: 4px;
}

.summary-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
  color: var(--green);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.summary-item .label {
  color: rgba(242, 244, 195, 0.5);
}

.summary-item .val {
  color: #fff;
  font-weight: 600;
  text-align: right;
}

.summary-item .val.highlight {
  color: var(--cream);
  font-size: 1.2rem;
}

.summary-card hr {
  border: 0;
  border-top: 1px solid rgba(242, 244, 195, 0.1);
  margin: 20px 0;
}

@media (max-width: 1024px) {
  .booking-container {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    position: static;
    order: -1;
  }
}

@media (max-width: 700px) {
  .booking-container {
    padding: 0 18px 60px;
    gap: 24px;
    margin: 24px auto;
  }

  .booking-step {
    gap: 16px;
    margin-bottom: 36px;
  }

  .booking-step::before {
    left: 19px;
    top: 50px;
    bottom: -22px;
  }

  .step-num {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .step-content {
    padding-top: 4px;
  }

  .step-content h3 {
    font-size: 1.15rem;
    margin-bottom: 16px;
  }

  .slots-grid {
    grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
    gap: 8px;
  }

  .slot-btn {
    padding: 12px 10px;
    font-size: 0.95rem;
  }

  .booking-form {
    gap: 14px;
    max-width: none;
  }

  .form-row.split {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ll-input {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .summary-card {
    padding: 22px 20px;
  }

  .summary-card h4 {
    font-size: 1rem;
    margin-bottom: 18px;
  }

  .summary-item {
    font-size: 0.9rem;
    margin-bottom: 12px;
    gap: 12px;
  }

  .summary-item .val.highlight {
    font-size: 1.05rem;
  }

  .form-footer .ll-btn {
    width: 100%;
    justify-content: space-between;
  }
}

/* Tactical assets with black background for transparency */
.tactical-asset {
  mix-blend-mode: screen;
  filter: brightness(1.1) contrast(1.1);
  pointer-events: none;
  user-select: none;
}

.weapon-thumb {
  max-width: 120px;
  height: auto;
  object-fit: contain;
}

/* ========================================================================
   CHAPTER 05 — LOCATION / MAP (range dossier card)
   ======================================================================== */
.location-chapter .map-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(320px, 1fr);
  gap: 22px;
  align-items: stretch;
}

/* ---- Map frame, with corner ticks ---- */
.location-chapter .map-frame {
  position: relative;
  border: 1px solid rgba(242, 244, 195, 0.22);
  background: #000;
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  isolation: isolate;
}
.location-chapter .map-frame::before,
.location-chapter .map-frame::after {
  content: "";
  position: absolute;
  z-index: 3;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--cream);
  pointer-events: none;
}
.location-chapter .map-frame::before {
  top: -1px; left: -1px;
  border-right: none; border-bottom: none;
}
.location-chapter .map-frame::after {
  bottom: -1px; right: -1px;
  border-left: none; border-top: none;
}
.location-chapter .map-frame iframe {
  filter: grayscale(0.35) contrast(1.08) saturate(0.9);
  transition: filter 0.5s ease;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
}
.location-chapter .map-frame:hover iframe {
  filter: grayscale(0) contrast(1.02) saturate(1);
}

/* ---- Info panel: tactical dossier ---- */
.location-chapter .map-info {
  position: relative;
  background:
    linear-gradient(180deg, rgba(20, 36, 28, 0.55) 0%, rgba(6, 14, 11, 0.92) 100%),
    radial-gradient(ellipse at 12% 0%, rgba(49, 130, 73, 0.18) 0%, transparent 55%),
    var(--paper-grain);
  background-blend-mode: normal, screen, overlay;
  border: 1px solid rgba(242, 244, 195, 0.22);
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  isolation: isolate;
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(0, 0, 0, 0.5);
}
/* faint scanline atmosphere (matches .dossier) */
.location-chapter .map-info::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
.location-chapter .map-info::after { display: none; }
.location-chapter .map-info > * { position: relative; z-index: 1; }

/* corner ticks (L-brackets) — cream to match dossier system */
.location-chapter .map-info .tick {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--cream);
  z-index: 2;
  pointer-events: none;
}
.location-chapter .map-info .tick.tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.location-chapter .map-info .tick.tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.location-chapter .map-info .tick.bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.location-chapter .map-info .tick.br { bottom: -1px; right: -1px; border-left: none; border-top: none; }

/* head: classification + status */
.location-chapter .map-info-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(242, 244, 195, 0.24);
}
.location-chapter .class-chip {
  font-family: 'Special Elite', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(232, 225, 208, 0.82);
}
.location-chapter .status-chip {
  font-family: 'Special Elite', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green-up);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(49, 130, 73, 0.55);
  padding: 4px 8px;
  background: rgba(49, 130, 73, 0.08);
}
.location-chapter .status-chip .blink {
  color: var(--green-up);
  font-size: 0.7rem;
  line-height: 1;
  animation: ll-blink 1.6s ease-in-out infinite;
}
@keyframes ll-blink {
  0%, 60%, 100% { opacity: 1; }
  70%, 90%     { opacity: 0.25; }
}

/* label row */
.location-chapter .map-info-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Special Elite', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 2px;
}
.location-chapter .map-info-label .pin {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brass-glow);
  box-shadow: 0 0 0 3px rgba(200, 149, 64, 0.18);
  display: inline-block;
}

/* big stencil address */
.location-chapter .map-address-title {
  margin: 4px 0 2px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  line-height: 0.98;
  color: #fff;
  letter-spacing: 0.01em;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.location-chapter .map-address-title .line1 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff 0%, #d9d3b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.location-chapter .map-address-title .line2 {
  font-family: 'Special Elite', monospace;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-glow);
}

/* GPS coords row */
.location-chapter .coords-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: 'Special Elite', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  border-left: 2px solid var(--brass);
  padding: 4px 10px;
  background: rgba(168, 124, 46, 0.06);
}
.location-chapter .coords-row .coords-key {
  color: var(--cream);
  font-weight: 700;
}
.location-chapter .coords-row .coords-val {
  color: rgba(232, 225, 208, 0.78);
}

/* spec rows (parking / metro / hours) */
.location-chapter .map-specs {
  list-style: none;
  margin: 6px 0 4px;
  padding: 0;
  border-top: 1px dashed rgba(242, 244, 195, 0.22);
}
.location-chapter .map-specs li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(242, 244, 195, 0.22);
}
.location-chapter .map-specs .k {
  font-family: 'Special Elite', monospace;
  font-size: 0.7rem;
  color: rgba(232, 225, 208, 0.68);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.location-chapter .map-specs .v {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.02em;
}
.location-chapter .map-specs .v .u {
  color: var(--green-up);
  font-size: 0.65em;
  margin-left: 2px;
}

/* CTAs */
.location-chapter .map-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 10px;
}
.location-chapter .map-actions .hero-cta {
  text-align: center;
  justify-content: center;
}

/* filing-tag footer */
.location-chapter .map-info-foot {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px dashed rgba(242, 244, 195, 0.22);
  font-family: 'Special Elite', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232, 225, 208, 0.5);
}
.location-chapter .map-info-foot .key {
  color: var(--cream);
  margin-right: 4px;
}

@media (max-width: 880px) {
  .location-chapter .map-wrap {
    grid-template-columns: 1fr;
  }
  .location-chapter .map-frame iframe {
    height: 320px;
  }
  .location-chapter .map-address-title .line1 {
    font-size: 1.6rem;
  }
}

/* =========================================================================
   PACKAGES · MISSION DOSSIER LOADOUT
   Each featured package is a full-width "dossier file" — left column carries
   the title, vitals & CTA; right column is a tactical rack showing every
   weapon included with caliber + type + round count. Scoped under
   .packages-dossier so legacy .pkg styles elsewhere are untouched.
   ========================================================================= */

.packages-dossier .chapter-head { margin-bottom: 36px; }

.packages-dossier .dossier-marquee {
  position: relative;
  display: flex;
  gap: 48px;
  overflow: hidden;
  margin: 0 0 36px;
  padding: 10px 0;
  border-top: 1px solid rgba(242, 244, 195, 0.18);
  border-bottom: 1px solid rgba(242, 244, 195, 0.18);
  font-family: 'Special Elite', 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(232, 225, 208, 0.55);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.packages-dossier .dossier-marquee > span {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  animation: dossierMarquee 38s linear infinite;
}
.packages-dossier .dossier-marquee > span:nth-child(odd) { color: rgba(242, 244, 195, 0.75); }
@keyframes dossierMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

.packages-dossier .dossier-stack {
  display: grid;
  gap: 28px;
}

.dossier {
  position: relative;
  display: block;
  background:
    linear-gradient(180deg, rgba(20, 36, 28, 0.55) 0%, rgba(6, 14, 11, 0.92) 100%),
    radial-gradient(ellipse at 12% 0%, rgba(49, 130, 73, 0.18) 0%, transparent 55%),
    var(--paper-grain);
  background-blend-mode: normal, screen, overlay;
  border: 1px solid rgba(242, 244, 195, 0.22);
  padding: 28px clamp(20px, 3.2vw, 44px) 32px;
  isolation: isolate;
  overflow: hidden;
  animation: dossierIn .65s cubic-bezier(.2,.7,.1,1) backwards;
  animation-delay: calc(var(--rank, 0) * 80ms);
}
@keyframes dossierIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.dossier::before { display: none; }
.dossier::after {
  /* faint scanline texture */
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 3px);
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 0;
}

.dossier .tick {
  position: absolute;
  width: 14px; height: 14px;
  border: 1.5px solid var(--cream);
  z-index: 2;
}
.dossier .tick.tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.dossier .tick.tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.dossier .tick.bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.dossier .tick.br { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.dossier-strip {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Special Elite', 'JetBrains Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(242, 244, 195, 0.22);
  z-index: 1;
}
.dossier-strip .strip-rank { color: #fff; }
.dossier-strip .strip-ref { color: rgba(232, 225, 208, 0.7); }
.dossier-strip .strip-class { color: var(--green-up); }
.dossier-strip .strip-rule {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 244, 195, 0.32), transparent);
}

.dossier-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.4fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  z-index: 1;
}

/* ------- LEFT COLUMN -------- */
.dossier-left {
  position: relative;
  padding: 6px 0 4px;
}
.dossier-left .rank-numeral {
  position: absolute;
  top: -22px;
  right: -8px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(7rem, 12vw, 13rem);
  line-height: 0.78;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(242, 244, 195, 0.18);
  letter-spacing: -0.02em;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.dossier-left .left-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.dossier-left .meta-line {
  font-family: 'Special Elite', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
  display: inline-flex; align-items: center; gap: 8px;
}
.dossier-left .meta-line .pin {
  width: 6px; height: 6px; background: var(--green-up);
  border-radius: 50%; box-shadow: 0 0 10px var(--green-glow);
}
.dossier-left .badge {
  display: inline-block;
  background: var(--bone);
  color: var(--ink-on-bone);
  padding: 4px 10px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(-2deg);
  box-shadow: 0 4px 14px rgba(0,0,0,0.45);
}
.dossier-left .badge.hot { background: var(--crimson); color: #fff; }

.dossier-title {
  position: relative;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  line-height: 0.94;
  letter-spacing: -0.005em;
  margin: 6px 0 12px;
  text-transform: uppercase;
  color: #fff;
}
.dossier-title a { color: inherit; text-decoration: none; background-image: linear-gradient(var(--green-up), var(--green-up)); background-repeat: no-repeat; background-size: 0% 4px; background-position: 0 100%; transition: background-size .35s cubic-bezier(.2,.7,.1,1); padding-bottom: 2px; }
.dossier-title a:hover { background-size: 100% 4px; color: #fff; }

.dossier-sub {
  position: relative;
  font-family: 'Manrope', sans-serif;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(232, 225, 208, 0.78);
  margin: 0 0 22px;
  max-width: 38ch;
}

.dossier-vitals {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(242, 244, 195, 0.18);
  border-left: 1px solid rgba(242, 244, 195, 0.18);
}
.dossier-vitals li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px 14px;
  border-right: 1px solid rgba(242, 244, 195, 0.18);
  border-bottom: 1px solid rgba(242, 244, 195, 0.18);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}
.dossier-vitals .k {
  font-family: 'Special Elite', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232, 225, 208, 0.6);
}
.dossier-vitals .v {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
}
.dossier-vitals .v .u {
  font-size: 0.55em;
  color: var(--cream);
  margin-left: 3px;
  letter-spacing: 0.06em;
}

.dossier-foot {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(242, 244, 195, 0.28);
  flex-wrap: wrap;
}
.dossier-foot .price-block { display: flex; flex-direction: column; gap: 2px; }
.dossier-foot .price-key {
  font-family: 'Special Elite', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(232, 225, 208, 0.55);
}
.dossier-foot .pkg-price {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  line-height: 1;
  color: #fff;
}
.dossier-foot .pkg-price .cur {
  font-size: 0.55em;
  margin-left: 6px;
  color: var(--cream);
  letter-spacing: 0.08em;
}
.dossier-foot .cta-stack { display: inline-flex; gap: 10px; flex-wrap: wrap; }
.dossier-foot .pkg-cta {
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 11px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  border: 1px solid transparent;
}
.dossier-foot .pkg-cta.primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}
.dossier-foot .pkg-cta.primary:hover {
  background: var(--green-up);
  gap: 16px;
  box-shadow: 0 0 24px var(--green-glow);
}
.dossier-foot .pkg-cta.primary::after { content: "→"; }
.dossier-foot .pkg-cta.ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(242, 244, 195, 0.4);
}
.dossier-foot .pkg-cta.ghost:hover { border-color: var(--cream); color: #fff; gap: 16px; }
.dossier-foot .pkg-cta.ghost::after { content: "›"; }
.dossier-foot .pkg-cta.voucher {
  background: var(--cream);
  color: var(--green-deep);
  border-color: var(--cream);
}
.dossier-foot .pkg-cta.voucher:hover { gap: 16px; box-shadow: 0 0 20px rgba(242, 244, 195, 0.35); }

.dossier .auth-stamp {
  position: absolute;
  right: -6px;
  bottom: -2px;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  color: rgba(212, 90, 60, 0.55);
  border: 2px solid rgba(212, 90, 60, 0.55);
  padding: 4px 9px;
  transform: rotate(-8deg);
  pointer-events: none;
  mix-blend-mode: screen;
}

/* ------- RIGHT COLUMN · ARSENAL RACK -------- */
.dossier-right { position: relative; min-width: 0; }

.rack-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-family: 'Special Elite', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.rack-head .rack-key { color: var(--cream); }
.rack-head .rack-count {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: rgba(232, 225, 208, 0.7);
}
.rack-head .rack-count strong {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--green-up);
  letter-spacing: 0.02em;
  line-height: 1;
}
.rack-head .rack-rule {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 244, 195, 0.4), transparent);
}

.rack-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}
/* When few weapons, let cards breathe wider */
.rack-list[data-count="1"] { grid-template-columns: minmax(220px, 360px); }
.rack-list[data-count="2"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.rack-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(28, 50, 38, 0.6) 0%, rgba(6, 14, 11, 0.9) 100%);
  border: 1px solid rgba(242, 244, 195, 0.18);
  padding: 12px 12px 10px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.1,1), border-color .25s, box-shadow .35s;
  animation: rackCardIn .55s cubic-bezier(.2,.7,.1,1) backwards;
  animation-delay: calc(var(--wi, 0) * 60ms + 120ms);
}
@keyframes rackCardIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.rack-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 22px; height: 1px;
  background: var(--green-up);
  box-shadow: 0 0 8px var(--green-glow);
}
.rack-card-link {
  position: absolute; inset: 0;
  z-index: 3;
  text-indent: -9999px;
  overflow: hidden;
}
.rack-card-rank {
  position: absolute;
  top: 8px; right: 10px;
  font-family: 'Special Elite', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: rgba(232, 225, 208, 0.6);
  z-index: 2;
}
.rack-card-photo {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 4px -4px 8px;
  background:
    radial-gradient(ellipse at 50% 70%, rgba(49,130,73,0.22) 0%, transparent 65%),
    linear-gradient(135deg, #16291f 0%, #050a07 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.rack-card-photo img {
  position: relative;
  z-index: 1;
  max-width: 92%;
  max-height: 88%;
  object-fit: contain;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.55)) contrast(1.12) saturate(1.15) brightness(1.08);
  transition: transform .55s cubic-bezier(.2,.7,.1,1);
}
.rack-card-photo .rack-card-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(242,244,195,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,244,195,0.06) 1px, transparent 1px);
  background-size: 14px 14px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
  pointer-events: none;
}
.rack-card-mono {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: rgba(242, 244, 195, 0.32);
  letter-spacing: 0.04em;
}
.rack-card-label {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.rack-card-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.rack-card-meta {
  font-family: 'Special Elite', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 225, 208, 0.62);
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.rack-card-meta .cal { color: var(--brass-glow); }
.rack-card-meta .dot { opacity: 0.5; }
.rack-card-ammo {
  display: inline-block;
  align-self: flex-start;
  margin-top: 4px;
  font-family: 'Special Elite', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 2px 6px;
  border: 1px dashed rgba(242, 244, 195, 0.4);
}
.rack-card:hover {
  transform: translateY(-4px);
  border-color: var(--cream);
  box-shadow: 0 22px 40px -18px rgba(0,0,0,0.85), 0 0 0 1px rgba(242,244,195,0.22);
}
.rack-card:hover .rack-card-photo img { transform: scale(1.06) rotate(-1deg); }

.rack-empty {
  border: 1px dashed rgba(242, 244, 195, 0.3);
  padding: 28px;
  text-align: center;
  font-family: 'Special Elite', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 225, 208, 0.6);
}

/* Responsive */
@media (max-width: 1080px) {
  .dossier-grid { grid-template-columns: 1fr; gap: 28px; }
  .dossier::before { display: none; }
  .dossier-left .rank-numeral { top: -10px; right: -4px; font-size: 8.5rem; }
}
@media (max-width: 640px) {
  .dossier { padding: 22px 18px 26px; }
  .dossier-strip { font-size: 0.6rem; letter-spacing: 0.18em; flex-wrap: wrap; gap: 8px; }
  .dossier-strip .strip-rule { display: none; }
  .dossier-vitals { grid-template-columns: 1fr 1fr; }
  .dossier-foot { flex-direction: column; align-items: stretch; }
  .dossier-foot .cta-stack .pkg-cta { flex: 1 1 auto; justify-content: center; }
  .rack-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rack-list[data-count="1"] { grid-template-columns: 1fr; }
  .dossier-left .rank-numeral { font-size: 6rem; }
}

/* =========================================================================
   UNIFIED DOSSIER CHASSIS · cross-page consistency layer
   Retunes the legacy card primitives so every page reads as part of the
   same tactical dossier system established on the homepage.

   Shared signature applied below:
     · 1px rgba(242, 244, 195, 0.22) cream-alpha border
     · layered green-tinted gradient + paper-grain background
     · faint scanline overlay
     · cream L-bracket corner ticks at all four corners (drawn via 8 background
       layers on a ::before pseudo so we don't need HTML changes)
     · clean lift-on-hover (no 3D rotate or "bullet smoke" pseudo flair)
   ========================================================================= */

/* ----- Background + border applied to every card-shaped container -------- */
.weapon-card,
.info-tile,
.form-card,
.pkg-vitals,
.pkg-summary-card,
.summary-card.card,
.spec-list.card,
.weapon-image-large.card,
.booking-cta-box,
.weapon-row,
.topic-box,
.admin-card.booking-card,
.mt-card {
  background:
    linear-gradient(180deg, rgba(20, 36, 28, 0.55) 0%, rgba(6, 14, 11, 0.92) 100%),
    radial-gradient(ellipse at 12% 0%, rgba(49, 130, 73, 0.18) 0%, transparent 55%),
    var(--paper-grain) !important;
  background-blend-mode: normal, screen, overlay;
  border: 1px solid rgba(242, 244, 195, 0.22) !important;
  position: relative;
  isolation: isolate;
}

/* ----- .pkg (used on /pachete-tragere) — image-heavy, keep .photo bg ---- */
.pkg {
  border: 1px solid rgba(242, 244, 195, 0.22) !important;
}

/* ----- Kill the legacy "bullet-smoke / target-pop" hover flair --------- */
.pkg::before,
.pkg::after,
.weapon-card::before,
.weapon-card::after {
  display: none !important;
  animation: none !important;
}
.pkg:hover::before,
.pkg:hover::after,
.weapon-card:hover::before,
.weapon-card:hover::after {
  animation: none !important;
}

/* ----- Hover: clean lift, cream border, green-glow shadow --------------- */
.pkg,
.weapon-card,
.info-tile,
.form-card,
.pkg-summary-card,
.summary-card.card,
.spec-list.card,
.weapon-image-large.card,
.booking-cta-box,
.weapon-row,
.topic-box,
.admin-card.booking-card,
.mt-card {
  transition: transform .35s cubic-bezier(.2,.7,.1,1), border-color .25s, box-shadow .35s !important;
}

.pkg:hover,
.weapon-card:hover,
.info-tile:hover {
  transform: translateY(-6px) !important;
  border-color: var(--cream) !important;
  box-shadow: 0 28px 50px -18px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(242, 244, 195, 0.22) !important;
}

/* ----- Corner-tick treatment via single pseudo on a wrapper class ------- */
.weapon-card,
.info-tile,
.form-card,
.pkg-summary-card,
.summary-card.card,
.spec-list.card,
.weapon-image-large.card,
.booking-cta-box,
.topic-box,
.admin-card.booking-card,
.mt-card,
.pkg.featured,
.pkg.small {
  overflow: hidden;
}

/* Use a stand-alone pseudo for corner ticks — drawn as 8 thin background
   slabs (one horizontal + one vertical at each of the 4 corners). This
   adds the dossier "L-bracket" look without touching markup. */
.info-tile::after,
.form-card::after,
.pkg-summary-card::after,
.summary-card.card::after,
.spec-list.card::after,
.weapon-image-large.card::after,
.booking-cta-box::after,
.topic-box::after,
.admin-card.booking-card::after,
.mt-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    /* top-left horizontal */
    linear-gradient(var(--cream), var(--cream)) top    left  / 14px 1.5px no-repeat,
    /* top-left vertical   */
    linear-gradient(var(--cream), var(--cream)) top    left  / 1.5px 14px no-repeat,
    /* top-right horizontal */
    linear-gradient(var(--cream), var(--cream)) top    right / 14px 1.5px no-repeat,
    linear-gradient(var(--cream), var(--cream)) top    right / 1.5px 14px no-repeat,
    /* bottom-left */
    linear-gradient(var(--cream), var(--cream)) bottom left  / 14px 1.5px no-repeat,
    linear-gradient(var(--cream), var(--cream)) bottom left  / 1.5px 14px no-repeat,
    /* bottom-right */
    linear-gradient(var(--cream), var(--cream)) bottom right / 14px 1.5px no-repeat,
    linear-gradient(var(--cream), var(--cream)) bottom right / 1.5px 14px no-repeat;
}

/* Make sure inner content sits above the tick pseudo */
.info-tile > *,
.form-card > *,
.pkg-summary-card > *,
.summary-card.card > *,
.spec-list.card > *,
.weapon-image-large.card > *,
.booking-cta-box > *,
.topic-box > *,
.admin-card.booking-card > *,
.mt-card > * {
  position: relative;
  z-index: 1;
}

/* ----- Faint scanline atmosphere on the major cards -------------------- */
.info-tile::before,
.form-card::before,
.pkg-summary-card::before,
.summary-card.card::before,
.spec-list.card::before,
.weapon-image-large.card::before,
.booking-cta-box::before,
.topic-box::before,
.admin-card.booking-card::before,
.mt-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}

/* ----- pkg-summary-card lost its green border ring + glow shadow that
   previously made it stand out as a sticky CTA panel. Re-add a softer
   green accent that fits the dossier vocabulary. */
.pkg-summary-card {
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(0, 0, 0, 0.4) !important;
}
.pkg-summary-card::before {
  /* top-left brass-green accent slab (matches .rack-card) */
  background:
    repeating-linear-gradient(180deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 3px),
    linear-gradient(var(--green-up), var(--green-up)) top left / 28px 1px no-repeat !important;
  filter: drop-shadow(0 0 6px var(--green-glow));
}

/* ----- Form inputs · unify with dossier dividers ------------------------ */
.form-card input,
.form-card textarea,
.form-card select,
.ll-input {
  background: rgba(6, 14, 11, 0.6) !important;
  border: 1px solid rgba(242, 244, 195, 0.22) !important;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  transition: border-color .2s, background .2s !important;
}
.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus,
.ll-input:focus {
  outline: none !important;
  border-color: var(--cream) !important;
  background: rgba(6, 14, 11, 0.85) !important;
  box-shadow: 0 0 0 1px rgba(242, 244, 195, 0.18) !important;
}
.form-card label,
.form-group label {
  font-family: 'Special Elite', monospace !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase;
  color: var(--cream) !important;
}

/* ----- .weapon-row gets a left brass-green accent line ---------------- */
.weapon-row::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 22px; height: 1px;
  background: var(--green-up);
  box-shadow: 0 0 8px var(--green-glow);
}

/* ----- .pkg-vitals · cream-alpha dashed border instead of solid ------- */
.pkg-vitals {
  border-style: dashed !important;
  border-color: rgba(242, 244, 195, 0.28) !important;
}

/* ----- .subnav (Arme/Muniție tabs) — softer cream dividers ------------ */
.subnav {
  border-bottom-color: rgba(242, 244, 195, 0.22) !important;
}

/* ----- Page header · add scanline + paper-grain hint ------------------ */
.page-header {
  background:
    linear-gradient(180deg, var(--ink-deep), #040a07),
    var(--paper-grain) !important;
  background-blend-mode: normal, overlay;
  border-bottom-color: rgba(242, 244, 195, 0.22) !important;
}
.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}

/* ----- Stats band's `.stats-band::before` should not extend over content -- */
.stats-band > * { position: relative; z-index: 1; }

/* ----- Summary-card kicker · readable dossier-style label ------------- */
.summary-kicker {
  font-family: 'Special Elite', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.summary-kicker::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--green-up);
  box-shadow: 0 0 8px var(--green-glow);
}

.pkg-summary-card .price-foot,
.admin-card.booking-card .price-foot {
  font-family: 'Special Elite', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232, 225, 208, 0.6);
  margin-top: 6px;
}

/* =========================================================================
   STORE CATALOG
   ========================================================================= */
.store-header::before {
  width: 520px;
  height: 520px;
  right: -3%;
  background:
    linear-gradient(rgba(242, 244, 195, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 244, 195, 0.05) 1px, transparent 1px),
    radial-gradient(circle, rgba(49, 130, 73, 0.22), transparent 64%);
  background-size: 34px 34px, 34px 34px, auto;
  transform: translateY(-50%) rotate(-8deg);
}

.store-category-nav {
  position: sticky;
  top: 137px;
  z-index: 35;
  background: rgba(4, 10, 7, 0.94);
  border-bottom: 1px solid rgba(242, 244, 195, 0.2);
  backdrop-filter: blur(14px);
}

.store-category-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.store-category-nav a {
  min-height: 64px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-left: 1px solid rgba(242, 244, 195, 0.12);
  color: rgba(255, 255, 255, 0.64);
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background .25s, color .25s;
}

.store-category-nav a:last-child {
  border-right: 1px solid rgba(242, 244, 195, 0.12);
}

.store-category-nav a:hover,
.store-category-nav a.active {
  color: #fff;
  background: rgba(49, 130, 73, 0.13);
}

.store-category-nav a.active {
  box-shadow: inset 0 -2px 0 var(--green-up);
}

.store-section-code {
  color: var(--brass-glow);
  font-family: 'Special Elite', monospace;
  font-size: 0.64rem;
  letter-spacing: 0.18em;
}

.store-catalog {
  background: #06100c;
}

.store-section {
  padding: 76px 32px 90px;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(49, 130, 73, 0.08), transparent 48%),
    #07130e;
}

.store-section.alt {
  background:
    radial-gradient(ellipse at 10% 10%, rgba(167, 124, 46, 0.07), transparent 45%),
    #040a07;
}

.store-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.store-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(242, 244, 195, 0.2);
}

.store-section-head h2 {
  margin: 8px 0 10px;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  color: #fff;
}

.store-section-head p {
  max-width: 650px;
  margin: 0;
  color: rgba(232, 225, 208, 0.68);
  line-height: 1.65;
}

.store-section-count {
  min-width: 110px;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 8px;
  color: rgba(232, 225, 208, 0.5);
  font-family: 'Special Elite', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.store-section-count strong {
  color: var(--green-up);
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 3rem;
  line-height: 1;
}

.store-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.store-product-card {
  position: relative;
  min-width: 0;
  color: inherit;
  background:
    linear-gradient(180deg, rgba(20, 36, 28, 0.65), rgba(5, 12, 9, 0.96)),
    var(--paper-grain);
  border: 1px solid rgba(242, 244, 195, 0.2);
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s cubic-bezier(.2, .7, .1, 1), border-color .25s, box-shadow .35s;
}

.store-product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(var(--cream), var(--cream)) top left / 16px 1px no-repeat,
    linear-gradient(var(--cream), var(--cream)) top left / 1px 16px no-repeat,
    linear-gradient(var(--cream), var(--cream)) bottom right / 16px 1px no-repeat,
    linear-gradient(var(--cream), var(--cream)) bottom right / 1px 16px no-repeat;
  opacity: 0.7;
}

.store-product-card:hover {
  color: inherit;
  transform: translateY(-7px);
  border-color: var(--cream);
  box-shadow: 0 28px 52px -20px rgba(0, 0, 0, 0.95), 0 0 25px rgba(49, 130, 73, 0.09);
}

.store-product-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(242, 244, 195, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 244, 195, 0.035) 1px, transparent 1px),
    radial-gradient(ellipse at center, rgba(49, 130, 73, 0.2), transparent 68%),
    #06100c;
  background-size: 24px 24px, 24px 24px, auto, auto;
  border-bottom: 1px solid rgba(242, 244, 195, 0.14);
}

.store-product-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.55));
  transition: transform .5s cubic-bezier(.2, .7, .1, 1);
}

.store-product-card:hover .store-product-photo img {
  transform: scale(1.045);
}

.store-product-rank {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 2;
  color: rgba(242, 244, 195, 0.62);
  font-family: 'Special Elite', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
}

.store-product-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(242, 244, 195, 0.46);
  text-transform: uppercase;
}

.store-product-placeholder span {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  line-height: .8;
  color: rgba(242, 244, 195, 0.16);
  text-shadow: 0 0 28px rgba(49, 130, 73, 0.24);
}

.store-product-placeholder small {
  font-family: 'Special Elite', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
}

.store-product-placeholder.large span {
  font-size: clamp(8rem, 20vw, 15rem);
}

.store-product-body {
  padding: 22px 22px 24px;
}

.store-product-meta {
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(232, 225, 208, 0.48);
  font-family: 'Special Elite', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.store-product-meta .stock {
  white-space: nowrap;
}

.store-product-meta .stock.available {
  color: var(--green-up);
}

.store-product-meta .stock.unavailable {
  color: var(--brass-glow);
}

.store-product-body h3 {
  min-height: 2em;
  margin: 14px 0 20px;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.store-product-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(242, 244, 195, 0.14);
}

.store-price {
  color: #fff;
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.store-view {
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform .25s;
}

.store-product-card:hover .store-view {
  transform: translateX(5px);
}

.store-empty {
  position: relative;
  min-height: 190px;
  padding: 32px 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  background:
    repeating-linear-gradient(135deg, rgba(242, 244, 195, 0.018) 0 2px, transparent 2px 8px),
    rgba(5, 12, 9, 0.68);
  border: 1px dashed rgba(242, 244, 195, 0.24);
}

.store-empty h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.9rem;
}

.store-empty p {
  margin: 0;
  color: rgba(232, 225, 208, 0.58);
}

.store-note {
  padding: 70px 32px;
  background:
    linear-gradient(110deg, rgba(49, 130, 73, 0.17), transparent 52%),
    #040a07;
  border-top: 1px solid rgba(242, 244, 195, 0.18);
}

.store-note-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.2fr auto;
  align-items: center;
  gap: 48px;
}

.store-note h2 {
  margin: 7px 0 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.store-note p {
  margin: 0;
  color: rgba(232, 225, 208, 0.68);
  line-height: 1.7;
}

/* Store product detail */
.store-detail {
  padding: 54px 32px 90px;
  background:
    radial-gradient(ellipse at 12% 18%, rgba(49, 130, 73, 0.11), transparent 42%),
    #06100c;
}

.store-detail-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.store-breadcrumb {
  display: flex;
  gap: 9px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
  color: rgba(232, 225, 208, 0.52);
  font-family: 'Special Elite', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.store-breadcrumb a {
  color: var(--cream);
}

.store-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  gap: 58px;
  align-items: start;
}

.store-detail-photo {
  position: sticky;
  top: 168px;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(242, 244, 195, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 244, 195, 0.035) 1px, transparent 1px),
    radial-gradient(ellipse at center, rgba(49, 130, 73, 0.22), transparent 67%),
    #040a07;
  background-size: 32px 32px, 32px 32px, auto, auto;
  border: 1px solid rgba(242, 244, 195, 0.22);
}

.store-detail-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(var(--cream), var(--cream)) top left / 22px 1px no-repeat,
    linear-gradient(var(--cream), var(--cream)) top left / 1px 22px no-repeat,
    linear-gradient(var(--cream), var(--cream)) bottom right / 22px 1px no-repeat,
    linear-gradient(var(--cream), var(--cream)) bottom right / 1px 22px no-repeat;
}

.store-detail-photo img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  padding: 50px;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.62));
}

.store-detail-stamp {
  position: absolute;
  top: 20px;
  left: 22px;
  z-index: 2;
  color: var(--cream);
  font-family: 'Special Elite', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
}

.store-detail-copy {
  padding-top: 28px;
}

.store-detail-category {
  color: var(--brass-glow);
  font-family: 'Special Elite', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.store-detail-copy h1 {
  margin: 15px 0 22px;
  color: #fff;
  font-size: clamp(3.2rem, 6vw, 5.4rem);
}

.store-detail-price {
  color: #fff;
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
}

.store-detail-status {
  margin: 18px 0 28px;
  padding: 13px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(232, 225, 208, 0.68);
  border-top: 1px solid rgba(242, 244, 195, 0.14);
  border-bottom: 1px solid rgba(242, 244, 195, 0.14);
  font-family: 'Special Elite', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--green-up);
  box-shadow: 0 0 10px var(--green-up);
}

.status-dot.muted {
  background: var(--brass-glow);
  box-shadow: 0 0 10px rgba(200, 149, 64, 0.5);
}

.store-detail-description {
  color: rgba(232, 225, 208, 0.76);
  font-size: 1rem;
  line-height: 1.75;
}

.store-detail-description h2,
.store-detail-description h3 {
  margin: 1.2em 0 .5em;
  color: #fff;
}

.store-detail-description ul {
  padding-left: 20px;
}

.store-variant-list {
  margin-top: 30px;
  border: 1px solid rgba(242, 244, 195, 0.2);
}

.store-variant-title {
  padding: 12px 16px;
  color: var(--cream);
  background: rgba(242, 244, 195, 0.04);
  border-bottom: 1px solid rgba(242, 244, 195, 0.16);
  font-family: 'Special Elite', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.store-variant {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(242, 244, 195, 0.1);
}

.store-variant:last-child {
  border-bottom: 0;
}

.store-variant > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.store-variant > div:last-child {
  text-align: right;
}

.store-variant strong,
.store-variant > div:last-child > span {
  color: #fff;
}

.store-variant span,
.store-variant small {
  color: rgba(232, 225, 208, 0.5);
  font-family: 'Special Elite', monospace;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
}

.store-detail-actions {
  margin-top: 34px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-detail-legal {
  margin-top: 24px;
  padding-left: 14px;
  color: rgba(232, 225, 208, 0.46);
  border-left: 2px solid var(--brass);
  font-family: 'Special Elite', monospace;
  font-size: 0.64rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .store-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-note-inner {
    grid-template-columns: 1fr 1.3fr;
  }

  .store-note-inner .ll-btn {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .store-detail-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .store-detail-photo {
    min-height: 500px;
  }
}

@media (max-width: 900px) {
  .store-category-nav {
    top: 78px;
  }

  .store-category-nav-inner {
    padding: 0;
    overflow-x: auto;
    grid-template-columns: repeat(4, minmax(170px, 1fr));
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .store-category-nav-inner::-webkit-scrollbar {
    display: none;
  }

  .store-category-nav a {
    min-height: 56px;
  }

  .store-detail-grid {
    grid-template-columns: 1fr;
  }

  .store-detail-photo {
    position: relative;
    top: auto;
    min-height: 470px;
  }

  .store-detail-copy {
    padding-top: 0;
  }
}

@media (max-width: 700px) {
  .store-section {
    padding: 56px 18px 66px;
  }

  .store-section-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .store-section-count {
    justify-content: flex-start;
  }

  .store-product-grid {
    grid-template-columns: 1fr;
  }

  .store-empty {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .store-empty > * {
    position: relative;
    z-index: 1;
  }

  .store-empty .ll-btn {
    justify-self: start;
  }

  .store-note {
    padding: 56px 18px;
  }

  .store-note-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .store-note-inner .ll-btn {
    grid-column: auto;
  }

  .store-detail {
    padding: 34px 18px 66px;
  }

  .store-detail-photo {
    min-height: 360px;
  }

  .store-detail-photo img {
    padding: 28px;
  }

  .store-detail-actions {
    flex-direction: column;
  }

  .store-detail-actions .ll-btn {
    width: 100%;
  }
}

/* =========================================================================
   Draft preview banner — shown to signed-in admins viewing unpublished
   pages / store items / courses via ?preview. Never reaches the public.
   ========================================================================= */
.preview-banner {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 20px;
  background: var(--brass, #a77c2e);
  color: #0d0d0d;
  font-family: var(--font-mono, monospace);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-align: center;
  border-bottom: 2px solid #0d0d0d;
}

.preview-banner strong {
  letter-spacing: 0.18em;
  font-weight: 700;
}

/* =========================================================================
   SERVICES (Servicii) — public /servicii page. Full-width rows building on
   .info-tile (dossier ticks + scanlines + hover come from the shared
   treatment); pricing reuses the packages classes (.price-block/.pkg-price).
   ========================================================================= */
.svc-stack {
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.svc-row {
  display: flex;
  align-items: center;
  gap: 32px;
}

.svc-row.featured {
  border-color: var(--green-up) !important;
}

.svc-photo {
  flex: 0 0 220px;
  align-self: stretch;
  min-height: 140px;
  margin: -28px 0 -28px -26px;
  overflow: hidden;
  border-right: 1px solid rgba(242, 244, 195, 0.14);
}

.svc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}

.svc-body {
  flex: 1;
  min-width: 0;
  padding: 6px 0;
}

.svc-row .value {
  font-size: 1.9rem;
  margin-bottom: 14px;
}

.svc-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 10px;
  background: rgba(49, 130, 73, 0.18);
  border: 1px solid var(--green-up);
  color: var(--cream);
  font-family: 'Special Elite', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.svc-badge.hot {
  background: var(--crimson);
  border-color: var(--crimson);
  color: #fff;
}

/* Rich-text body (Quill): tame headings into mono kickers, style lists
   as tactical markers so long descriptions read as a dossier, not a wall. */
.svc-desc {
  max-width: 72ch;
  font-size: 0.92rem;
  color: rgba(232, 225, 208, 0.72);
  line-height: 1.65;
}

.svc-desc p {
  margin: 0 0 12px;
}

.svc-desc > :first-child {
  margin-top: 0;
}

.svc-desc > :last-child {
  margin-bottom: 0;
}

.svc-desc h1,
.svc-desc h2,
.svc-desc h3,
.svc-desc h4 {
  margin: 24px 0 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(242, 244, 195, 0.12);
  color: var(--brass-glow);
  font-family: 'Special Elite', monospace;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  line-height: 1.5;
}

.svc-desc strong {
  color: #fff;
  font-weight: 600;
}

.svc-desc ul,
.svc-desc ol {
  margin: 10px 0 14px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.svc-desc ul li {
  position: relative;
  padding-left: 18px;
}

.svc-desc ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--green-up);
}

.svc-desc ol {
  counter-reset: svc;
}

.svc-desc ol li {
  position: relative;
  padding-left: 28px;
  counter-increment: svc;
}

.svc-desc ol li::before {
  content: counter(svc, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--green-up);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

/* Price "ticket stub": full-height right panel behind a dashed tear line. */
.svc-price-col {
  flex: none;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  margin: -28px -26px -28px 0;
  padding: 28px 32px;
  border-left: 1px dashed rgba(242, 244, 195, 0.24);
  background: rgba(0, 0, 0, 0.28);
}

.svc-price-col .price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.svc-price-key {
  margin-bottom: 8px;
  color: rgba(232, 225, 208, 0.55);
  font-family: 'Special Elite', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.svc-price-col .pkg-price {
  font-size: 2.4rem;
}

.svc-price-note {
  color: rgba(232, 225, 208, 0.55);
  font-family: 'Special Elite', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
}

@media (max-width: 700px) {
  .svc-stack {
    padding: 56px 18px;
  }

  .svc-row {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .svc-photo {
    flex: none;
    margin: -28px -26px 0;
    min-height: 0;
    height: 160px;
    border-right: 0;
    border-bottom: 1px solid rgba(242, 244, 195, 0.14);
  }

  .svc-body {
    padding: 0;
  }

  .svc-price-col {
    align-self: auto;
    margin: 0 -26px -28px;
    padding: 20px 26px;
    border-left: 0;
    border-top: 1px dashed rgba(242, 244, 195, 0.24);
    justify-content: flex-start;
  }

  .svc-price-col .price-block {
    align-items: flex-start;
    text-align: left;
  }
}
