/* ==========================================================================
   needhealingcos — dark commission site
   Palette + mood from the commission ad: near-black hunter green, lime accent.
   UI principles: same-family gradients, soft shadows, outlines on dark,
   consistent radius/spacing, real hover/interactive feedback, no clutter.
   ========================================================================== */

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url("fonts/oswald.woff2") format("woff2");
}
@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/anton.woff2") format("woff2");
}

:root {
  --max-width: 1120px;
  --gap: 1.5rem;

  /* Dark palette */
  --bg: #0d120c;          /* page */
  --bg-2: #121a10;        /* alt sections */
  --panel: #161f13;       /* cards / inputs */
  --panel-2: #1b2618;     /* lifted */
  --border: #2a3620;      /* hairline */
  --border-soft: rgba(179, 197, 105, 0.16);

  --text: #eef2e8;
  --muted: #97a68b;
  --heading: #f6f8f2;

  --accent: #b3c569;      /* lime */
  --accent-2: #c9dc80;
  --accent-ink: #14200c;  /* text on lime */

  --radius: 12px;
  --radius-sm: 9px;
  --radius-lg: 18px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 8px 22px rgba(0, 0, 0, 0.35);

  --font-display: "Anton", "Oswald", system-ui, sans-serif;
  --font-head: "Oswald", system-ui, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(120% 70% at 50% -8%, #17240f 0%, rgba(23, 36, 15, 0) 55%),
    var(--bg);
  background-attachment: fixed;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-2); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Typography ---------- */

h1, h2, h3 { font-family: var(--font-head); color: var(--heading); font-weight: 600; line-height: 1.12; }
h1 { font-size: clamp(2rem, 5vw, 2.9rem); font-weight: 700; letter-spacing: 0.01em; margin: 0 0 0.75rem; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 1rem; }
h3 { font-size: 1.2rem; margin: 0 0 0.5rem; font-weight: 500; }

p { margin: 0 0 1rem; }
.lead { font-size: 1.15rem; color: #cdd6c3; max-width: 62ch; }
.muted { color: var(--muted); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 0.7rem;
}

/* ---------- Header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(13, 18, 12, 0.72);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding: 0.85rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.nav__brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: var(--heading);
  text-transform: lowercase;
}
.nav__brand:hover { color: var(--accent); }
.nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--muted);
  padding: 0.25rem 0;
  transition: color 0.18s ease;
}
.nav__links a:hover,
.nav__links a[aria-current="page"] { color: var(--heading); }
.nav__links a[aria-current="page"] { color: var(--accent); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.92rem;
  padding: 0.72rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.btn:hover { background: var(--accent-2); border-color: var(--accent-2); color: var(--accent-ink); transform: translateY(-2px); }

.btn--ghost,
.btn--on-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover,
.btn--on-dark:hover {
  background: rgba(179, 197, 105, 0.08);
  border-color: var(--accent);
  color: var(--accent-2);
}
.btn--lime { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.4rem; }
.btn-row--center { justify-content: center; }

/* ---------- Sections ---------- */

section { padding: 4rem 0; }
.section-alt {
  background:
    linear-gradient(180deg, rgba(27, 38, 24, 0.6) 0%, rgba(18, 26, 16, 0.6) 100%);
  border-block: 1px solid var(--border);
}
.section-dark { background: transparent; }

/* ---------- Feature banners with auto-cycling carousel ---------- */

/* Prop bleeds large across its side and the text sits over it — no framing box */
.feature-banner { position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.feature-banner__inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 56vh;
  display: flex;
  align-items: center;
  padding: 3.5rem 1.25rem;
}
.feature-banner__text { position: relative; z-index: 2; max-width: 31rem; }
.feature-banner--reverse .feature-banner__text { margin-left: auto; }
.feature-banner__text .price { color: var(--accent); font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; margin: 0 0 0.6rem; }
.feature-banner__text h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }

/* Media bleeds off the outer edge, overlapping toward the text */
.feature-banner__media { position: absolute; top: 0; bottom: 0; right: -2%; width: 66%; z-index: 1; }
.feature-banner--reverse .feature-banner__media { right: auto; left: -2%; }
/* Scrim keeps the text legible where the prop overlaps */
.feature-banner::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, var(--bg) 6%, rgba(13, 18, 12, 0.55) 32%, rgba(13, 18, 12, 0) 58%);
}
.feature-banner--reverse::after {
  background: linear-gradient(270deg, var(--bg) 6%, rgba(13, 18, 12, 0.55) 32%, rgba(13, 18, 12, 0) 58%);
}
/* Photo backdrop behind a banner (matches each sub-page hero). The overlay
   darkens only the backdrop; the floating props / carousel sit above it. */
.feature-banner--photo { background-size: cover; background-position: center; }
.feature-banner--photo::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: rgba(13, 18, 12, 0.6);
}

/* Subtle prop drift on the cutout banners (skips the photo banner) */
@keyframes prop-drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}
.feature-banner--float .feature-banner__media { animation: prop-drift 7s ease-in-out infinite; }
.feature-banner--float:nth-of-type(even) .feature-banner__media { animation-duration: 8s; animation-delay: -2s; }

.carousel { position: absolute; inset: 0; }
.carousel__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 1.5rem;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity 1s ease;
}
.carousel__img.is-active { opacity: 1; }
/* Weapons whose art sits small in-frame get scaled up to match the others */
.carousel__img--big { transform: scale(1.3); }

/* Energy-sword colour cycle: one prop, hue-shifted copies cross-fading so it
   drifts through the colours it can be ordered in. */
.sword-cycle { position: absolute; inset: 0; }
.sword-showcase {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  background: radial-gradient(closest-side, rgba(150, 172, 100, 0.14) 0%, rgba(150, 172, 100, 0) 74%);
}
.sword-cycle__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; padding: 4%;
  opacity: 0; animation: sword-cycle-fade 20s infinite;
}
.sword-cycle__img:nth-child(1) { animation-delay: 0s;  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.55)); }
.sword-cycle__img:nth-child(2) { animation-delay: 4s;  filter: hue-rotate(60deg)  drop-shadow(0 22px 30px rgba(0, 0, 0, 0.55)); }
.sword-cycle__img:nth-child(3) { animation-delay: 8s;  filter: hue-rotate(130deg) drop-shadow(0 22px 30px rgba(0, 0, 0, 0.55)); }
.sword-cycle__img:nth-child(4) { animation-delay: 12s; filter: hue-rotate(200deg) drop-shadow(0 22px 30px rgba(0, 0, 0, 0.55)); }
.sword-cycle__img:nth-child(5) { animation-delay: 16s; filter: hue-rotate(270deg) drop-shadow(0 22px 30px rgba(0, 0, 0, 0.55)); }
@keyframes sword-cycle-fade {
  0% { opacity: 0; } 4% { opacity: 1; } 16% { opacity: 1; } 20% { opacity: 0; } 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .sword-cycle__img { animation: none; }
  .sword-cycle__img:nth-child(1) { opacity: 1; }
}
/* Photo carousels (real worn-armor shots) fill the media as bleeding photos */
.carousel--photo .carousel__img { object-fit: cover; object-position: center 26%; padding: 0; filter: none; }
.carousel__dots {
  position: absolute;
  left: 0; right: 0; bottom: 0.85rem;
  z-index: 3;
  display: flex; justify-content: center; gap: 0.4rem;
}
.carousel__dot {
  width: 7px; height: 7px; border-radius: 50%;
  border: 0; padding: 0; cursor: pointer;
  background: rgba(238, 242, 232, 0.28);
  transition: background 0.25s ease, width 0.25s ease;
}
.carousel__dot.is-active { background: var(--accent); width: 18px; border-radius: 4px; }

@media (max-width: 800px) {
  .feature-banner__inner { flex-direction: column; align-items: stretch; min-height: 0; gap: 1.25rem; padding: 2.5rem 1.25rem; }
  .feature-banner__media { position: relative; width: 100%; height: 42vh; right: 0; order: -1; }
  .feature-banner--reverse .feature-banner__media { left: 0; }
  .feature-banner--reverse .feature-banner__text { margin-left: 0; }
  .feature-banner__text { max-width: none; }
  .feature-banner::after, .feature-banner--reverse::after {
    background: linear-gradient(0deg, var(--bg) 3%, rgba(13, 18, 12, 0) 38%);
  }
}

/* ---------- Hero banner with full-bleed background video ---------- */

.hero-banner {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(120% 95% at 74% 12%, #22301601 0%, var(--bg) 58%), #0b0f09;
}
.hero-banner__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 22%;
  z-index: 0;
  opacity: 0.92;
}
.hero-banner__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11, 15, 9, 0.96) 0%, rgba(11, 15, 9, 0.72) 40%, rgba(11, 15, 9, 0.12) 74%, rgba(11, 15, 9, 0.55) 100%),
    linear-gradient(0deg, rgba(11, 15, 9, 0.9) 0%, rgba(11, 15, 9, 0) 42%);
}
.hero-banner__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 1.25rem;
  width: 100%;
}
/* Clickable category words behind the transparent hero video — the Spartan
   stands in front of them. Real navigation to the build pages, not filler. */
.hero-banner__backdrop {
  position: absolute; inset: 0; z-index: 0;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-end;
  gap: clamp(0.05rem, 0.6vw, 0.5rem);
  padding: 6vh clamp(1.25rem, 6vw, 5.5rem) 6vh 0;
  text-align: right;
}
.hero-banner__backdrop a {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  line-height: 0.9; letter-spacing: 0.01em;
  font-size: clamp(2.2rem, 8.5vw, 7rem);
  color: rgba(219, 225, 209, 0.13);
  transition: color 0.25s ease;
}
.hero-banner__backdrop a:hover,
.hero-banner__backdrop a:focus-visible { color: rgba(179, 197, 105, 0.9); }
/* Let clicks reach the words behind the (decorative) video + scrim */
.hero-banner__video, .hero-banner__scrim { pointer-events: none; }
.hero-banner__inner { pointer-events: none; }
.hero-banner__content { pointer-events: auto; }

.hero-banner__content { max-width: 36rem; }
.hero-banner h1 { color: #fff; font-family: var(--font-display); font-weight: 400; letter-spacing: 0.005em; line-height: 1.02; font-size: clamp(2.4rem, 6vw, 4.2rem); }
.hero-banner .lead { color: #dbe1d1; }

@media (max-width: 640px) {
  .hero-banner { min-height: 82vh; }
  .hero-banner__video { object-position: 60% 20%; }
  .hero-banner__scrim {
    background:
      linear-gradient(0deg, rgba(11, 15, 9, 0.95) 8%, rgba(11, 15, 9, 0.35) 60%, rgba(11, 15, 9, 0.7) 100%);
  }
}

/* ---------- "Make whatever Spartan you want" band ---------- */

.spartans {
  background: radial-gradient(125% 90% at 50% 5%, #24331a 0%, var(--bg) 62%);
  text-align: center;
  border-block: 1px solid var(--border);
  overflow: hidden;
  min-height: 96vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 3rem;
}
.spartans__head { max-width: 48rem; margin: 0 auto 1rem; }
.spartans h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 6vw, 4rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.98;
  margin-bottom: 0.6rem;
  color: #fff;
}
.spartans__sub {
  color: var(--accent);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  font-size: clamp(0.85rem, 2.2vw, 1.05rem);
}
/* Overlapping full-width squad group, like the ad */
.spartan-group {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 1.5rem auto 0;
  width: 100%;
  max-width: 1180px;
}
.spartan-fig {
  width: auto;
  margin-inline: -2.5%;
  filter: drop-shadow(0 30px 38px rgba(0, 0, 0, 0.62));
}
/* Three figures, scaled so BODIES match (Master Chief's image is a bit taller
   because of the raised RPG, so he gets a small bump so the launcher rises above
   the huddle, like the ad). Sized large to fill the section. They slide in on
   scroll, then sit still — no ambient drift. */
.spartan-fig:nth-child(1) { height: clamp(436px, 75vw, 823px); z-index: 1; }   /* Master Chief + RPG */
.spartan-fig:nth-child(2) { height: clamp(374px, 66vw, 715px); z-index: 3; }   /* Buck (center, front) */
.spartan-fig:nth-child(3) { height: clamp(374px, 66vw, 715px); z-index: 2; }   /* Kelly */

@media (max-width: 540px) {
  .spartan-fig { margin-inline: -5%; height: clamp(209px, 50vw, 286px); }
}

/* ---------- Full-bleed photo band ---------- */

.photo-band {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: #fff;
  border-block: 1px solid var(--border);
}
.photo-band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11, 15, 9, 0.92) 0%, rgba(11, 15, 9, 0.35) 55%, rgba(11, 15, 9, 0.55) 100%);
}
.photo-band__inner {
  position: relative; z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto; width: 100%;
  padding: 3rem 1.25rem;
}
.photo-band h2 { color: #fff; }

/* ---------- Gallery ---------- */

.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.75rem; }
.filter-btn {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.filter-btn:hover { color: var(--text); border-color: var(--accent); }
.filter-btn.is-active { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem 1.5rem; }
.gallery-item {
  margin: 0;
  padding: 0.25rem;
  transition: transform 0.25s ease;
}
.gallery-item:hover { transform: translateY(-6px); }
/* Props float on a soft glow — no frame, no box */
.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 7%;
  background: radial-gradient(54% 54% at 50% 44%, rgba(150, 172, 100, 0.20) 0%, rgba(150, 172, 100, 0) 70%);
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.55));
}
.gallery-item h3 { margin: 0.65rem 0 0.25rem; font-size: 0.95rem; font-weight: 500; text-align: center; }
.tag {
  display: block;
  text-align: center;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.66rem;
  color: var(--accent);
}

/* ---------- Prose (pricing / how-it-works / faq) ---------- */

.prose { max-width: 780px; }
.prose h2 { margin-top: 2.5rem; padding-bottom: 0.4rem; border-bottom: 1px solid var(--border); }
.prose h3 { margin-top: 1.6rem; color: var(--accent-2); }
.prose ul { padding-left: 1.2rem; }
.prose li { margin: 0.4rem 0; }
.prose li::marker { color: var(--accent); }

.price-tag { font-family: var(--font-head); font-weight: 600; color: var(--accent); white-space: nowrap; letter-spacing: 0.02em; }

.note {
  border-left: 2px solid var(--accent);
  padding: 0.35rem 0 0.35rem 1.15rem;
  margin: 1.6rem 0;
  color: #cdd6c3;
}

.steps { counter-reset: step; list-style: none; padding: 0; }
.steps li { position: relative; padding-left: 2.75rem; margin: 1.1rem 0; }
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 1.9rem; height: 1.9rem;
  background: var(--accent); color: var(--accent-ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
}

/* ---------- FAQ ---------- */

.faq { border-top: 1px solid var(--border); margin-top: 1.5rem; }
.faq details { border-bottom: 1px solid var(--border); padding: 0.15rem 0.25rem; }
.faq summary {
  cursor: pointer;
  font-family: var(--font-head); font-weight: 500; font-size: 1.1rem;
  padding: 1.05rem 2rem 1.05rem 0;
  color: var(--heading);
  list-style: none; position: relative;
  transition: color 0.18s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent-2); }
.faq summary::after {
  content: "+"; position: absolute; right: 0.25rem; top: 50%;
  transform: translateY(-50%); color: var(--accent); font-size: 1.5rem; font-weight: 400;
}
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin: 0 0 1.1rem; color: var(--muted); max-width: 72ch; }

/* ---------- Contact form ---------- */

.form { display: grid; gap: 1.1rem; max-width: 580px; }
.form label { font-family: var(--font-head); font-weight: 500; letter-spacing: 0.02em; display: block; margin-bottom: 0.4rem; color: var(--heading); }
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--panel);
  color: var(--text);
  font: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.form input::placeholder, .form textarea::placeholder { color: #6f7d64; }
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(179, 197, 105, 0.18);
}
.form textarea { min-height: 140px; resize: vertical; }
.form__status { margin: 0; min-height: 1.2em; font-family: var(--font-head); font-size: 0.95rem; color: var(--muted); }
.form__status.is-ok { color: var(--accent); }
.form__status.is-err { color: #e0765f; }

.ig-callout {
  border-left: 2px solid var(--accent);
  padding: 0.5rem 0 0.5rem 1.4rem;
  margin-bottom: 2.5rem;
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.25rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.25);
}
.site-footer .container {
  display: flex; flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between; align-items: center;
}
.site-footer__top {
  align-items: flex-start !important;
  gap: 1.5rem 2.5rem !important;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}
.site-footer__brand { max-width: 24rem; }
.site-footer__brand .nav__brand { font-size: 1.05rem; }
.site-footer__tag { margin: 0.5rem 0 0; color: var(--muted); line-height: 1.5; }
.site-footer__nav {
  display: flex; flex-wrap: wrap; gap: 0.4rem 1.4rem;
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.82rem;
}
.site-footer__nav a { color: var(--muted); }
.site-footer__nav a:hover { color: var(--accent); }
.site-footer__legal {
  display: block !important;
  padding-top: 1.5rem;
  color: var(--muted);
}
.site-footer__legal p { margin: 0; }
.site-footer__disc {
  margin-top: 0.7rem !important;
  font-size: 0.78rem;
  line-height: 1.55;
  opacity: 0.72;
  max-width: 62rem;
}

/* ---------- Category detail pages ---------- */

.detail-hero {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.detail-hero--plain { background: radial-gradient(120% 95% at 78% 10%, #24331a 0%, var(--bg) 58%), #0b0f09; }
/* Shorter hero for content pages (gallery, pricing, process) */
.detail-hero--short { min-height: 46vh; }
.detail-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11,15,9,0.96) 0%, rgba(11,15,9,0.35) 55%, rgba(11,15,9,0.6) 100%),
              linear-gradient(90deg, rgba(11,15,9,0.85) 0%, rgba(11,15,9,0.1) 60%);
}
.detail-hero--plain::after { background: linear-gradient(0deg, rgba(11,15,9,0.7) 0%, rgba(11,15,9,0) 60%); }
.detail-hero__inner { position: relative; z-index: 2; max-width: var(--max-width); margin: 0 auto; width: 100%; padding: 4rem 1.25rem; }
.detail-hero__content { max-width: 42rem; }
.detail-title { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; color: #fff; font-size: clamp(2.6rem, 7.5vw, 5rem); line-height: 0.94; margin: 0; }
.price-big { font-family: var(--font-display); color: var(--accent); font-size: clamp(2rem, 5vw, 3.2rem); margin: 0.35rem 0 0.9rem; line-height: 1; }
.price-big .ship { font-family: var(--font-head); font-weight: 500; font-size: 0.95rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-left: 0.6rem; vertical-align: middle; }
.no-ai { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem; color: var(--muted); }

/* Hero video slot — drop a <video class="detail-hero__video"> in place of the
   placeholder when the clip is ready (see the commented stub in each subpage). */
.detail-hero__video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}
/* Oversized ghost word behind a hero video — decorative flare, shows through
   the transparent Spartan. Not navigation, just atmosphere. */
.detail-hero__flare {
  position: absolute; z-index: 0; pointer-events: none; user-select: none;
  right: -1.5%; top: 46%; transform: translateY(-50%);
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(4.5rem, 19vw, 16rem); line-height: 0.8; letter-spacing: 0.01em;
  color: rgba(179, 197, 105, 0.09); white-space: nowrap;
}
.detail-hero--video {
  background: radial-gradient(125% 105% at 70% 0%, #1b2712 0%, var(--bg) 60%), #0b0f09;
  min-height: 52vh;   /* about half height — these clips aren't full-hero material */
}
.detail-hero__ph {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  display: grid; place-items: center;
  background: radial-gradient(58% 70% at 68% 26%, rgba(150,172,100,0.10) 0%, rgba(150,172,100,0) 72%);
}
.detail-hero__ph i {
  width: clamp(58px, 8vw, 92px); height: clamp(58px, 8vw, 92px);
  border-radius: 50%; border: 2px solid rgba(179,197,105,0.42);
  display: grid; place-items: center;
}
.detail-hero__ph i::after {
  content: ""; margin-left: 22%;
  border-style: solid; border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent rgba(179,197,105,0.6);
}
.detail-hero__ph b {
  position: absolute; bottom: 13%; left: 0; right: 0; text-align: center;
  font-family: var(--font-head); font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.24em; font-size: 0.7rem; color: var(--muted); opacity: 0.62;
}

/* A photo moved out of a hero, used as a full-bleed section background with a
   readability scrim. */
.section-photo { position: relative; background-size: cover; background-position: center; }
.section-photo::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(0deg, var(--bg) 1%, rgba(11,15,9,0.9) 42%, rgba(11,15,9,0.86) 100%);
}
.section-photo > .container { position: relative; z-index: 1; }

.spec-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.spec-split--reverse .spec-split__media { order: -1; }
.spec-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.spec-list li { position: relative; padding-left: 1.7rem; margin: 0.65rem 0; }
.spec-list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 0.5rem; height: 0.5rem; background: var(--accent); border-radius: 50%; }
.cutout-panel {
  width: 100%; aspect-ratio: 4 / 3; object-fit: contain; padding: 4%;
  background: radial-gradient(52% 56% at 50% 46%, rgba(150, 172, 100, 0.18) 0%, rgba(150, 172, 100, 0) 70%);
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.6));
}
/* Portrait figures (full armor) read bigger */
.cutout-panel--portrait { aspect-ratio: 3 / 4; padding: 2%; }
/* Tall layouts (raw-kit piece spread) fill the frame instead of shrinking */
.cutout-panel--tall { aspect-ratio: 3 / 5; padding: 0; }
/* Wide layouts (raw weapon kit spread) */
.cutout-panel--wide { aspect-ratio: 16 / 10; padding: 0; }

/* Tap/click to flip between front and back photos */
.flip-fig { position: relative; margin: 0; }
.flip-fig__btn {
  display: block; width: 100%; padding: 0; margin: 0;
  border: 0; background: none; cursor: pointer; position: relative;
}
.flip-fig__img { display: block; transition: opacity 0.45s ease; }
.flip-fig__img--back { position: absolute; inset: 0; opacity: 0; }
.flip-fig.is-back .flip-fig__img--front { opacity: 0; }
.flip-fig.is-back .flip-fig__img--back { opacity: 1; }
.flip-fig__note {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin-top: 0.4rem; text-align: center;
  font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.72rem; color: var(--muted);
}
.flip-fig__note::before {
  content: ""; width: 1rem; height: 1rem; flex: none;
  background: var(--accent);
  -webkit-mask: no-repeat center / contain; mask: no-repeat center / contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 2v6h-6'/%3E%3Cpath d='M3 12a9 9 0 0 1 15-6.7L21 8'/%3E%3Cpath d='M3 22v-6h6'/%3E%3Cpath d='M21 12a9 9 0 0 1-15 6.7L3 16'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 2v6h-6'/%3E%3Cpath d='M3 12a9 9 0 0 1 15-6.7L21 8'/%3E%3Cpath d='M3 22v-6h6'/%3E%3Cpath d='M21 12a9 9 0 0 1-15 6.7L3 16'/%3E%3C/svg%3E");
}
/* Realistic-fit mobility showcase: kneeling figure + knee zoom-in + arrow,
   plus a dynamic bend pose (mirrors the ad's "Realistic Fit" page). */
.mobility__head { max-width: 46rem; }
.mobility { position: relative; display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 1.5rem 2rem; align-items: center; margin-top: 1.5rem; }
.mobility__fig { display: block; width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 26px 32px rgba(0, 0, 0, 0.6)); }
.mobility__hero { position: relative; }
.mobility__hero .mobility__fig { max-height: 94vh; margin: 0 auto; }
/* Circular zoom magnifier trained on the knee */
.mobility__zoom {
  position: absolute; top: 1%; right: -2%; margin: 0; z-index: 3;
  width: clamp(128px, 20vw, 236px); aspect-ratio: 1;
  border-radius: 50%; overflow: hidden;
  border: 2px solid var(--accent); background: #0b0f09;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.55);
}
.mobility__zoom-img { position: absolute; inset: 0; background-repeat: no-repeat; background-size: 300%; background-position: 63% 77%; }
.mobility__zoom figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.1rem 0.3rem 0.4rem;
  text-align: center; font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.62rem; color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent);
}
/* Curved arrow from the zoom circle down to the knee */
.mobility__arrow { position: absolute; z-index: 2; pointer-events: none; top: 3%; right: 1%; width: 58%; height: 74%; }
.mobility__arrow-path { stroke: var(--accent); stroke-width: 3.5; fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 360; stroke-dashoffset: 360; }
.mobility__arrow marker path { fill: var(--accent); stroke: none; }
.mobility__hero.is-visible .mobility__arrow-path { animation: draw-arrow 0.9s 0.35s ease forwards; }
@keyframes draw-arrow { to { stroke-dashoffset: 0; } }
/* Dynamic bend pose + bullets */
.mobility__aside { display: flex; flex-direction: column; gap: 1.25rem; }
.mobility__fig--move { max-height: 72vh; align-self: center; }
.mobility__aside .spec-list { margin: 0; }

@media (max-width: 760px) {
  .mobility { grid-template-columns: 1fr; gap: 2rem; }
  .mobility__hero .mobility__fig { max-height: 56vh; }
  .mobility__zoom { width: 33%; top: 0; right: 0; }
  .mobility__fig--move { max-height: 40vh; }
}

.float-pair { display: flex; gap: 0.5rem; align-items: flex-end; justify-content: center; }
.float-pair img {
  height: clamp(280px, 36vw, 480px); width: auto;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.6));
}
.float-pair img:first-child { margin-right: -5%; }

/* Build strip: props float on shared glow, no frames */
.strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 1.75rem; }
.strip img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: contain; padding: 8%;
  background: radial-gradient(52% 54% at 50% 46%, rgba(150, 172, 100, 0.18) 0%, rgba(150, 172, 100, 0) 70%);
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.5));
  transition: transform 0.2s ease;
}
.strip img:hover { transform: translateY(-5px); }

/* Curated floating collection (helmets) — varied sizes, glows, not a grid */
.prop-collection { display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-end; gap: 0.75rem 0; margin-top: 2.25rem; }
.prop-collection img {
  height: clamp(132px, 15.5vw, 205px);   /* uniform so every helmet reads equal */
  width: auto; object-fit: contain;
  margin-inline: 0.4rem;
  background: radial-gradient(closest-side, rgba(150, 172, 100, 0.17) 0%, rgba(150, 172, 100, 0) 72%);
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.55));
  transition: transform 0.25s ease;
}
.prop-collection img:hover { transform: translateY(-7px); }

/* Price sheet: text + price on the left, the weapon floats large on the right
   and slides in from the right as each row scrolls into view. No boxes. */
.price-list { margin-top: 1.75rem; border-top: 1px solid var(--border); overflow: hidden; }
.price-row {
  display: flex; align-items: center; gap: 2rem;
  padding: 1.6rem 0.25rem; border-bottom: 1px solid var(--border);
}
.price-row__main { flex: 0 1 430px; position: relative; z-index: 2; }
.price-row__main h3 { margin: 0 0 0.1rem; font-size: 1.4rem; }
.price-row__main .price-row__price { font-family: var(--font-display); color: var(--accent); font-size: clamp(1.5rem, 3.4vw, 2rem); line-height: 1; margin: 0 0 0.55rem; }
.price-row__main > p { margin: 0; color: var(--muted); font-size: 0.94rem; }
.price-row__main .examples { font-style: italic; font-size: 0.82rem; margin-top: 0.3rem; }
/* Weapon fills the remaining space and grows big — allowed to bleed vertically
   into neighbouring rows (overlap is fine, just not over the text). */
.price-row__fig {
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
  height: clamp(260px, 36vw, 540px);
  background: radial-gradient(closest-side, rgba(150, 172, 100, 0.16) 0%, rgba(150, 172, 100, 0) 76%);
  overflow: visible;   /* let the scaled-up props bleed past the row edges */
}
/* Each weapon slides + fades on its own (see reveal.js) so the two in a tier
   read as separate objects. The transition gives the motion its ease-in-out. */
.price-row__fig img {
  position: absolute; object-fit: contain;
  transform: translateX(var(--px, 0px));
  will-change: transform, opacity;
  transition: transform 0.18s ease-out, opacity 0.18s ease-out;
}
/* Two weapons cascade: offset diagonally so BOTH silhouettes read — secondary
   upper-left (behind), primary lower-right (front). Original spacing kept, but
   each prop is ~30% bigger and allowed to bleed out of the row rather than
   being crushed together. */
.price-row__fig .w1 { z-index: 2; right: -3%; bottom: -20%; width: 107%; height: 96%; filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.62)); }
.price-row__fig .w2 { z-index: 1; left: -3%; top: -20%; width: 107%; height: 96%; opacity: 0.9; filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.5)); }
/* single weapon centered big (energy sword / throwables) */
.price-row__fig .w-solo { z-index: 2; inset: 0; width: 130%; height: 143%; margin: auto; filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.6)); }
/* bulky needler + ravager: keep both a touch smaller so the row stays balanced */
.price-row__fig--sm .w1 { width: 83%; height: 99%; }
.price-row__fig--sm .w2 { width: 83%; height: 91%; }
/* heavy weapons render ~20% bigger to emphasise their real-world scale */
.price-row__fig--lg .w1 { width: 128%; height: 115%; }
.price-row__fig--lg .w2 { width: 128%; height: 115%; }

@media (max-width: 700px) {
  .price-row { flex-wrap: wrap; gap: 0.5rem 1rem; }
  .price-row__main { flex: 1 1 100%; order: 2; }
  .price-row__fig { flex: 1 1 100%; height: clamp(190px, 52vw, 300px); order: 1; }
  .price-row__fig img { transform: none !important; opacity: 1 !important; transition: none; }
}

/* Divided columns for "includes / good for" — hairlines, not boxes */
.feature-list { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 1.5rem; border-top: 1px solid var(--border); }
.feature-list__item { padding: 1.4rem 1.6rem; border-left: 1px solid var(--border); }
.feature-list__item:first-child { border-left: 0; padding-left: 0.25rem; }
.feature-list__item h3 { margin: 0 0 0.35rem; font-size: 1.05rem; }
.feature-list__item p { margin: 0; color: var(--muted); font-size: 0.9rem; }

@media (max-width: 800px) {
  .spec-split { grid-template-columns: 1fr; gap: 1.75rem; }
  .spec-split--reverse .spec-split__media { order: 0; }
  .strip { grid-template-columns: repeat(3, 1fr); }
  .feature-list { grid-template-columns: 1fr; }
  .feature-list__item { border-left: 0; border-top: 1px solid var(--border); padding: 1.1rem 0.25rem; }
  .feature-list__item:first-child { border-top: 0; }
}

/* ---------- Scroll reveal (fade / slide in) ---------- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.reveal--left { transform: translateX(-26px); }
.reveal--right { transform: translateX(26px); }
.reveal--pop { transform: translateY(26px) scale(0.92); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ---------- Scroll hint (subtle "there's more below" cue) ---------- */
.scroll-hint {
  position: fixed; left: 50%; bottom: 1.1rem; transform: translateX(-50%);
  z-index: 30; pointer-events: none;
  display: flex; flex-direction: column; align-items: center; gap: 0.1rem;
  color: rgba(219, 225, 209, 0.72);
  font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: 0.2em; font-size: 0.6rem;
  transition: opacity 0.5s ease;
  animation: scroll-hint-bob 1.9s ease-in-out infinite;
}
.scroll-hint svg { display: block; opacity: 0.9; }
.scroll-hint.is-hidden { opacity: 0; animation: none; }
@keyframes scroll-hint-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(4px); }
}
@media (prefers-reduced-motion: reduce) { .scroll-hint { animation: none; } }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .spartan-fig, .feature-banner__media { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */

@media (max-width: 820px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  section { padding: 3rem 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .nav { justify-content: center; }
}
