/* ============================================
   DUSKYR — AGGRESSIVE REBELLIOUS REDESIGN
   Mobile-First (base = mobile, min-width = desktop)
   Palette: Jet Black · Dark Gold · Raw White · Ultra Luxury
   Fonts: Bebas Neue · Barlow Condensed · Inter
   ============================================ */

/* --- RESET --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

:root {
  --black: #050505;
  --dark: #090909;
  --dark2: #101010;
  --dark3: #1a1917;
  --red: #c9a84c;
  /* gold is the ONLY accent */
  --red-dark: #8b6f2e;
  --red-glow: rgba(201, 168, 76, 0.20);
  --white: #f0ede8;
  --white2: rgba(240, 237, 232, 0.7);
  --white3: rgba(240, 237, 232, 0.28);
  --gold: #c9a84c;
  --ff-display: 'Bebas Neue', sans-serif;
  --ff-cond: 'Barlow Condensed', sans-serif;
  --ff-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--ff-body);
  overflow-x: hidden;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ============================================
   STRIKE BAR — perpetual marquee
   ============================================ */
.strike-bar {
  background: #0e0d0b;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  overflow: hidden;
  padding: 9px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
}

.strike-track {
  display: flex;
  gap: 0;
  animation: strike-run 20s linear infinite;
  width: max-content;
}

.strike-track span {
  font-family: var(--ff-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.strike-track .sep {
  color: rgba(255, 255, 255, 0.5);
  padding: 0 4px;
}

@keyframes strike-run {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 30px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: transparent;
  transition: background 0.3s, border-color 0.3s;
}

.nav.stuck {
  background: rgba(6, 6, 6, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(204, 0, 0, 0.25);
}

.nav-logo {
  font-family: var(--ff-display);
  font-size: 28px;
  letter-spacing: 6px;
  color: var(--white);
  position: relative;
  cursor: default;
}

/* Glitch on hover */
.nav-logo::before,
.nav-logo::after {
  content: attr(data-glitch);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--ff-display);
  font-size: 28px;
  letter-spacing: 6px;
  opacity: 0;
  transition: opacity 0.1s;
}

.nav-logo::before {
  color: var(--red);
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.nav-logo::after {
  color: #00eeff;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

.nav-logo:hover::before {
  opacity: 1;
  animation: glitch-a 0.3s steps(2) infinite;
}

.nav-logo:hover::after {
  opacity: 1;
  animation: glitch-b 0.3s steps(2) infinite 0.1s;
}

@keyframes glitch-a {
  0% {
    transform: translate(-1px, -1px);
  }

  50% {
    transform: translate(1px, 0);
  }

  100% {
    transform: translate(-1px, 1px);
  }
}

@keyframes glitch-b {
  0% {
    transform: translate(1px, 1px);
  }

  50% {
    transform: translate(-1px, 0);
  }

  100% {
    transform: translate(1px, -1px);
  }
}

.nav-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.nav-menu-btn.open span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.nav-menu-btn.open span:last-child {
  transform: translateY(-0px) rotate(-45deg);
}

.nav-right {
  display: none;
}

.nav-cta {
  font-family: var(--ff-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 22px;
  border: 2px solid var(--red);
  color: var(--red);
  transition: all 0.25s;
}

.nav-cta:hover {
  background: var(--red);
  color: #fff;
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  max-width: 320px;
  height: 100vh;
  background: var(--dark);
  border-left: 2px solid var(--red-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 40px;
  gap: 24px;
  z-index: 999;
  transition: right 0.4s var(--ease);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  font-family: var(--ff-cond);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white2);
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--red);
}

.mobile-cta {
  margin-top: 20px !important;
  font-size: 18px !important;
  color: var(--red) !important;
  border-top: 1px solid rgba(204, 0, 0, 0.3);
  padding-top: 20px !important;
  width: 100%;
}

#nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 998;
}

#nav-overlay.show {
  display: block;
}

/* ============================================
   BUTTONS (global)
   ============================================ */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--black);
  font-family: var(--ff-cond);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 2px solid var(--red);
  transition: all 0.25s;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}

.btn-red:hover {
  background: transparent;
  color: var(--red);
}

.btn-red.large {
  font-size: 17px;
  padding: 20px 40px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--ff-cond);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 2px solid rgba(240, 237, 232, 0.35);
  width: 100%;
  transition: all 0.25s;
}

.btn-outline:hover {
  border-color: var(--white);
}

.btn-amazon-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #FF9900;
  color: #000;
  font-family: var(--ff-cond);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 17px 24px;
  width: 100%;
  transition: all 0.25s;
}

.btn-amazon-full:hover {
  background: #ffb020;
}

.btn-amazon-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FF9900;
  color: #000;
  font-family: var(--ff-cond);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 20px;
  width: 100%;
  margin-top: 16px;
  transition: background 0.25s;
}

.btn-amazon-card:hover {
  background: #ffb020;
}

.btn-bundle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-cond);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 11px 24px;
  border: 2px solid var(--red);
  color: var(--red);
  transition: all 0.25s;
}

.btn-bundle:hover {
  background: var(--red);
  color: #fff;
}

/* ============================================
   HERO — FULL BLEED, AGGRESSIVE
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding-top: 90px;
  /* strike bar (~30px) + nav (~60px) */
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg,
      rgba(6, 6, 6, 0.2) 0%,
      rgba(6, 6, 6, 0.5) 40%,
      rgba(6, 6, 6, 0.97) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px 0;
}

.hero-label {
  font-family: var(--ff-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--red);
}

.hero-title {
  display: block;
  font-family: var(--ff-display);
  line-height: 0.88;
  margin-bottom: 20px;
  overflow: visible;
}

.title-line {
  display: block;
  font-size: clamp(88px, 24vw, 200px);
  color: var(--white);
  letter-spacing: -2px;
}

.line3 {
  color: var(--red);
  -webkit-text-stroke: 1px var(--red);
}

.hero-sub {
  font-family: var(--ff-cond);
  font-size: 18px;
  font-weight: 400;
  color: var(--white2);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

/* Hero strip — numbers */
.hero-strip {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--dark2);
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  padding: 16px 24px;
  margin-top: 0;
  gap: 0;
}

.hs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hs-num {
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: #fff;
}

.hs-label {
  font-family: var(--ff-cond);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hs-div {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

/* ============================================
   MANIFESTO
   ============================================ */
.manifesto {
  padding: 64px 20px;
  background: var(--black);
  border-top: 1px solid var(--dark3);
}

.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}

.manifesto-tag {
  font-family: var(--ff-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.manifesto-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
}

.manifesto-text {
  font-family: var(--ff-display);
  font-size: clamp(36px, 11vw, 80px);
  line-height: 0.95;
  letter-spacing: 1px;
  margin-bottom: 28px;
  color: var(--white);
}

.manifesto-accent {
  color: var(--red);
}

.manifesto-sub {
  font-size: 15px;
  color: var(--white2);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 40px;
}

.manifesto-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 40px;
}

.manifesto-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--dark3);
}

.ms {
  flex: 1;
  padding: 24px 16px;
  border-right: 1px solid var(--dark3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

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

.ms strong {
  font-family: var(--ff-display);
  font-size: 40px;
  line-height: 1;
  color: var(--red);
}

.ms span {
  font-family: var(--ff-display);
  font-size: 22px;
  color: var(--red);
}

.ms p {
  font-family: var(--ff-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white3);
}

/* ============================================
   TRUST STRIP — horizontal scroll on mobile
   ============================================ */
.trust-strip {
  border-top: 1px solid var(--dark3);
  border-bottom: 1px solid var(--dark3);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0;
  background: var(--dark);
}

.trust-strip::-webkit-scrollbar {
  display: none;
}

.trust-scroll {
  display: flex;
  gap: 0;
  width: max-content;
  min-width: 100%;
}

.trust-pill {
  font-family: var(--ff-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 24px;
  white-space: nowrap;
  border-right: 1px solid var(--dark3);
  color: var(--white2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-pill:last-child {
  border-right: none;
}

/* ============================================
   KIT SECTION
   ============================================ */
.kit-section {
  padding: 64px 20px;
  background: var(--dark);
  position: relative;
}

.kit-tag-wrap {
  margin-bottom: 8px;
}

.kit-tag {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--gold);
  font-family: var(--ff-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 14px;
  color: var(--gold);
  animation: flash-badge 2.5s ease infinite;
}

@keyframes flash-badge {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

.kit-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.35);
  padding-bottom: 16px;
}

.kit-number {
  font-family: var(--ff-display);
  font-size: 52px;
  color: var(--dark3);
  line-height: 1;
  -webkit-text-stroke: 1px rgba(201, 168, 76, 0.4);
}



.kit-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 10vw, 72px);
  letter-spacing: 2px;
  color: var(--white);
  line-height: 0.9;
}

.kit-subtitle {
  font-family: var(--ff-cond);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 6px;
}

/* Kit body */
.kit-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 100%;
}

/* Bottle grid */
.kit-bottles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.kb-item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  background: var(--dark2);
  border: 1px solid transparent;
  padding: 12px;
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.kb-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.kb-img-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.kb-img-wrap img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  transition: transform 0.35s;
}

.kb-item:hover .kb-img-wrap img {
  transform: scale(1.06);
}

.kb-hover-tag {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  background: var(--red);
  text-align: center;
  font-family: var(--ff-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px;
  color: #fff;
  transition: bottom 0.3s;
}

.kb-item:hover .kb-hover-tag {
  bottom: 0;
}

.kb-label {
  font-family: var(--ff-display);
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--white);
  line-height: 1;
}

.kb-notes {
  font-family: var(--ff-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--white3);
  text-transform: uppercase;
  margin-top: 4px;
}

/* Offer card */
.kit-offer-card {
  background: var(--dark2);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-left: 2px solid var(--gold);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.kit-offer-badge {
  font-family: var(--ff-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(204, 0, 0, 0.35);
  display: inline-block;
  padding: 4px 12px;
}

.kit-price-block {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
}

.kit-mrp {
  font-family: var(--ff-cond);
  font-size: 18px;
  font-weight: 700;
  color: var(--white3);
  text-decoration: line-through;
}

.kit-price {
  font-family: var(--ff-display);
  font-size: 56px;
  line-height: 1;
  color: var(--white);
  letter-spacing: 2px;
}

.kit-save {
  font-family: var(--ff-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 4px 10px;
}

.kit-includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ki-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-cond);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white2);
}

.ki-check {
  color: var(--gold);
  font-weight: 900;
  font-size: 14px;
}

.kit-note {
  font-size: 11px;
  color: var(--white3);
  letter-spacing: 0.5px;
  text-align: center;
}

/* How it works */
.kit-how {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--dark3);
  margin-top: 20px;
}

.kh-step {
  padding: 20px 0;
  border-bottom: 1px solid var(--dark3);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.kh-step:last-child {
  border-bottom: none;
}

.kh-num {
  font-family: var(--ff-display);
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.kh-step p {
  font-family: var(--ff-cond);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--white2);
  line-height: 1.6;
  padding-top: 6px;
}

.kh-arrow {
  display: none;
}

/* ============================================
   PRODUCTS — stacked aggressive cards
   ============================================ */
.products {
  padding: 64px 0;
  background: var(--black);
}

.products-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 0 20px 24px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  margin-bottom: 0;
}

.ph-num {
  font-family: var(--ff-display);
  font-size: 52px;
  color: var(--dark3);
  -webkit-text-stroke: 1px rgba(201, 168, 76, 0.4);
  line-height: 1;
}

.ph-title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 9vw, 72px);
  letter-spacing: 2px;
  color: var(--white);
}

/* Product card — full-width stacked layout */
.pcard {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--dark3);
  position: relative;
  transition: background 0.3s;
}

.pcard:hover {
  background: var(--dark2);
}

.pcard-img {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.pcard-img img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  object-position: center;
  background: var(--dark2);
  transition: transform 0.5s var(--ease);
}

.pcard:hover .pcard-img img {
  transform: scale(1.04);
}

.pcard-body {
  padding: 24px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pcard-featured-tag {
  position: absolute;
  top: 16px;
  right: 0;
  background: var(--gold);
  color: #000;
  font-family: var(--ff-cond);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
}

.pcard-tier {
  font-family: var(--ff-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white3);
}

.gold-tier {
  color: var(--gold) !important;
}

.pcard-name {
  font-family: var(--ff-display);
  font-size: clamp(52px, 14vw, 100px);
  letter-spacing: 3px;
  line-height: 0.9;
  color: var(--white);
}

.pcard-char {
  font-family: var(--ff-cond);
  font-size: 14px;
  font-style: italic;
  color: var(--white3);
  letter-spacing: 1px;
}

.pcard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.pcard-tags span {
  font-family: var(--ff-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold);
}

.pcard-desc {
  font-size: 14px;
  color: var(--white2);
  line-height: 1.7;
  margin-top: 4px;
}

.pcard-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 8px;
}

.pcard-price {
  font-family: var(--ff-display);
  font-size: 40px;
  color: var(--white);
  line-height: 1;
}

.pcard-mrp {
  font-size: 13px;
  color: var(--white3);
  text-decoration: line-through;
}

.pcard-tag-pill {
  font-family: var(--ff-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  background: var(--dark3);
  padding: 3px 10px;
  color: var(--white2);
  text-transform: uppercase;
  margin-left: auto;
}

/* Featured card accent */
.pcard-featured {
  border-left: 3px solid var(--gold);
}

/* Bundle bar */
.bundle-bar {
  margin: 0 20px;
  padding: 20px;
  background: var(--dark2);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-left: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

.bundle-bar p {
  font-family: var(--ff-cond);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white2);
  line-height: 1.5;
}

.bundle-bar strong {
  color: var(--white);
  font-size: 20px;
}

.bundle-bar s {
  opacity: 0.4;
}

/* ============================================
   STORY — diagonal cut
   ============================================ */
.story {
  padding: 64px 20px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}

.story-number {
  font-family: var(--ff-display);
  font-size: 120px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(204, 0, 0, 0.15);
  position: absolute;
  top: -20px;
  right: -10px;
  line-height: 1;
  pointer-events: none;
}

.story-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.story-img {
  position: relative;
  overflow: hidden;
}

.story-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.6) saturate(0.8);
}

.story-img-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--ff-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 5px 12px;
}

.story-label {
  font-family: var(--ff-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.story-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--red);
}

.story-heading {
  font-family: var(--ff-display);
  font-size: clamp(52px, 14vw, 100px);
  line-height: 0.9;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: var(--white);
}

.story-heading span {
  color: var(--red);
}

.story-text>p {
  font-size: 15px;
  color: var(--white2);
  line-height: 1.8;
  margin-bottom: 16px;
}

.story-text>p em {
  color: var(--red);
  font-style: italic;
}

.story-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--dark3);
}

.sv {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.sv-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.sv strong {
  display: block;
  font-family: var(--ff-cond);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 4px;
  color: var(--white);
}

.sv p {
  font-size: 13px;
  color: var(--white2);
  line-height: 1.6;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  padding: 64px 20px;
  background: var(--black);
  border-top: 1px solid var(--dark3);
}

.reviews-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding-bottom: 16px;
}

.rh-num {
  font-family: var(--ff-display);
  font-size: 52px;
  color: var(--dark3);
  -webkit-text-stroke: 1px rgba(201, 168, 76, 0.4);
  line-height: 1;
}

.rh-title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 9vw, 72px);
  letter-spacing: 2px;
  color: var(--white);
}

.rh-rating {
  display: none;
  /* shows on desktop */
  font-family: var(--ff-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white3);
  margin-left: auto;
  text-transform: uppercase;
}

/* Swipeable on mobile */
.reviews-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.reviews-scroll::-webkit-scrollbar {
  display: none;
}

.rv {
  flex-shrink: 0;
  width: 84vw;
  max-width: 360px;
  padding: 24px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-top: 2px solid var(--gold);
  background: var(--dark2);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rv-stars {
  color: #FF9900;
  font-size: 13px;
  letter-spacing: 2px;
}

.rv-quote {
  font-family: var(--ff-cond);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: var(--white);
}

.rv-by {
  font-size: 12px;
  color: var(--white3);
  font-family: var(--ff-cond);
  letter-spacing: 1px;
  margin-top: auto;
  border-top: 1px solid var(--dark3);
  padding-top: 12px;
}

.rv-by span {
  display: block;
  color: var(--red);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 64px 20px;
  background: var(--dark);
  border-top: 1px solid var(--dark3);
}

.faq-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding-bottom: 16px;
}

.fq-num {
  font-family: var(--ff-display);
  font-size: 52px;
  color: var(--dark3);
  -webkit-text-stroke: 1px rgba(201, 168, 76, 0.4);
  line-height: 1;
}

.fq-title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 9vw, 72px);
  letter-spacing: 2px;
  color: var(--white);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fq-item {
  border-bottom: 1px solid var(--dark3);
}

.fq-btn {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--ff-cond);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 20px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
}

.fq-btn:hover {
  color: var(--red);
}

.fq-icon {
  font-size: 24px;
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 300;
  transition: transform 0.3s;
  line-height: 1;
}

.fq-btn.open .fq-icon {
  transform: rotate(45deg);
}

.fq-ans {
  display: none;
  font-size: 14px;
  color: var(--white2);
  line-height: 1.9;
  padding: 0 0 20px;
  border-left: 1px solid rgba(201, 168, 76, 0.4);
  padding-left: 16px;
}

.fq-ans.visible {
  display: block;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
}

.fc-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fc-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(6, 6, 6, 0.88), rgba(6, 6, 6, 0.96));
}

.fc-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.fc-label {
  font-family: var(--ff-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
}

.fc-title {
  font-family: var(--ff-display);
  font-size: clamp(48px, 14vw, 110px);
  line-height: 0.9;
  letter-spacing: 2px;
  color: var(--white);
}

.fc-sub {
  font-family: var(--ff-cond);
  font-size: 18px;
  font-weight: 600;
  color: var(--white2);
  letter-spacing: 0.5px;
}

.fc-content .btn-red {
  max-width: 400px;
  font-size: 18px;
}

.fc-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 4px;
}

.fc-trust span {
  font-family: var(--ff-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white3);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(201, 168, 76, 0.25);
}

.footer-top {
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-logo {
  font-family: var(--ff-display);
  font-size: 40px;
  letter-spacing: 8px;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-tag {
  font-family: var(--ff-cond);
  font-size: 14px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-info {
  font-size: 13px;
  color: var(--white3);
  line-height: 1.8;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col h4 {
  font-family: var(--ff-cond);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.footer-links-col a {
  font-family: var(--ff-cond);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white3);
  transition: color 0.2s;
}

.footer-links-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--dark3);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom p {
  font-size: 11px;
  color: rgba(240, 237, 232, 0.2);
  letter-spacing: 0.5px;
}

.footer-scam {
  color: rgba(204, 0, 0, 0.5) !important;
}

/* ============================================
   DESKTOP (min-width: 768px)
   ============================================ */
@media (min-width: 768px) {

  .nav {
    padding: 16px 48px;
  }

  .nav-menu-btn {
    display: none;
  }

  .nav-right {
    display: flex;
    align-items: center;
  }

  .mobile-nav {
    display: none;
  }

  .hero-img {
    object-position: 55% 20%;
  }

  .hero-content {
    padding: 0 60px 0;
  }
}

@media (min-width: 900px) {

  .hero-actions {
    flex-direction: row;
  }

  .btn-red,
  .btn-outline {
    width: auto;
  }

  .kit-body {
    flex-direction: row;
    align-items: flex-start;
  }

  .kit-bottles-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: auto;
  }

  .kit-offer-card {
    width: 360px;
    flex-shrink: 0;
  }

  .kit-how {
    flex-direction: row;
    align-items: center;
  }

  .kh-step {
    flex: 1;
    border-bottom: none;
    border-right: 1px solid var(--dark3);
    flex-direction: column;
    padding: 0 24px;
  }

  .kh-step:last-child {
    border-right: none;
  }

  .kh-arrow {
    display: block;
    color: var(--red);
    font-size: 24px;
    flex-shrink: 0;
  }

  /* Horizontal product cards */
  .pcard {
    flex-direction: row;
    align-items: stretch;
  }

  .pcard-img {
    width: 320px;
    flex-shrink: 0;
  }

  .pcard-img img {
    height: 100%;
  }

  .pcard-body {
    padding: 40px 48px;
  }

  .reviews-scroll {
    overflow-x: visible;
    flex-wrap: wrap;
  }

  .rv {
    width: auto;
    flex: 1;
    min-width: 260px;
  }

  .rh-rating {
    display: block;
  }

  .story-inner {
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
  }

  .story-img {
    flex: 1;
    flex-shrink: 0;
  }

  .story-img img {
    height: 480px;
  }

  .story-text {
    flex: 1;
  }

  .footer-top {
    padding: 64px 60px;
    flex-direction: row;
    gap: 60px;
  }

  .footer-brand-block {
    flex: 2;
  }

  .footer-bottom {
    padding: 20px 60px;
    flex-direction: row;
    justify-content: space-between;
  }

  .bundle-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 4px 0;
  }

  .fc-content .btn-red {
    font-size: 20px;
    padding: 22px 56px;
  }
}

@media (min-width: 1200px) {
  .hero-content {
    max-width: 900px;
  }

  .kit-section {
    padding: 100px 60px;
  }

  .manifesto {
    padding: 100px 60px;
  }

  .products {
    padding: 100px 0;
  }

  .story {
    padding: 100px 60px;
  }

  .reviews {
    padding: 100px 60px;
  }

  .faq {
    padding: 100px 60px;
  }

  .kit-bottles-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .kb-img-wrap img {
    height: 180px;
  }
}

/* ============================================
   POST-REVIEWS CTA STRIP
   ============================================ */
.post-reviews-cta {
  background: var(--dark2);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.prc-text {
  font-family: var(--ff-cond);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white2);
  max-width: 320px;
}

.prc-btn {
  width: 100%;
  max-width: 360px;
  justify-content: center;
  font-size: 15px !important;
}

.prc-trust {
  font-family: var(--ff-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white3);
}

@media (min-width: 768px) {
  .post-reviews-cta {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    padding: 32px 60px;
  }

  .prc-btn {
    width: auto;
    min-width: 280px;
    flex-shrink: 0;
  }

  .prc-text {
    text-align: left;
    max-width: 280px;
  }
}

/* ============================================
   STICKY MOBILE BOTTOM CTA BAR
   Hidden on desktop, slides up on mobile after scroll
   ============================================ */
.sticky-cta {
  display: none;
  /* hidden by default, JS shows on mobile */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background: var(--dark);
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  padding: 12px 20px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.sticky-cta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sticky-cta-name {
  font-family: var(--ff-display);
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
}

.sticky-cta-price {
  font-family: var(--ff-cond);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.sticky-cta-btn {
  background: var(--gold);
  color: #000;
  font-family: var(--ff-cond);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 22px;
  flex-shrink: 0;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.sticky-cta-btn:hover,
.sticky-cta-btn:active {
  background: #e0be60;
  transform: scale(0.98);
}

/* ============================================
   WORN WORLDWIDE — International Brand Section
   ============================================ */
.worldwide {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--dark);
}

.ww-model {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ww-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.4);
}

.ww-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(6, 6, 6, 0.3) 0%,
      rgba(6, 6, 6, 0.6) 50%,
      rgba(6, 6, 6, 0.95) 100%);
}

.ww-inner {
  position: relative;
  z-index: 2;
  padding: 80px 24px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
}

.ww-label {
  font-family: var(--ff-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ww-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.ww-title {
  font-family: var(--ff-display);
  font-size: clamp(52px, 16vw, 120px);
  line-height: 0.88;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.ww-title span {
  color: var(--gold);
}

.ww-sub {
  font-family: var(--ff-cond);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--white2);
  line-height: 1.6;
  max-width: 340px;
  margin-bottom: 32px;
}

.ww-cities {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white3);
}

.ww-sep {
  color: var(--gold);
  font-size: 10px;
}

@media (min-width: 768px) {
  .worldwide {
    flex-direction: row;
    min-height: 80vh;
  }

  .ww-model {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: 40%;
  }

  .ww-overlay {
    background: linear-gradient(to right,
        rgba(6, 6, 6, 1) 0%,
        rgba(6, 6, 6, 0.7) 50%,
        rgba(6, 6, 6, 0.1) 100%);
  }

  .ww-img {
    filter: brightness(0.7);
    object-position: center;
  }

  .ww-inner {
    width: 55%;
    min-height: 80vh;
    padding: 100px 60px;
    justify-content: center;
  }
}
