/* =========================================================
   Dollar Variety Mart — Brand Portfolio
   Palette: black / red / yellow / white (logo-matched)
   ========================================================= */

:root {
  --red: #e30613;
  --red-deep: #b5040f;
  --yellow: #ffe600;
  --yellow-soft: #fff59a;
  --black: #0a0a0a;
  --ink: #111111;
  --charcoal: #1a1a1a;
  --smoke: #f5f5f5;
  --white: #ffffff;
  --muted: #9a9a9a;
  --line: rgba(255, 255, 255, 0.12);
  --font-display: "Archivo Black", Impact, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 4px;
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.scanlines {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.035;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(0, 0, 0, 0.4) 3px
  );
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand-logo {
  height: 52px;
  width: auto;
  transition: transform 0.35s var(--ease);
}

.brand:hover .brand-logo {
  transform: scale(1.04);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.25s, background 0.25s, transform 0.25s;
}

.site-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.site-nav a.active {
  color: var(--black);
  background: var(--yellow);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header-barcode {
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0 3px,
    transparent 3px 6px,
    var(--red) 6px 8px,
    transparent 8px 14px,
    var(--yellow) 14px 16px,
    transparent 16px 20px
  );
}

/* ---------- Layout helpers ---------- */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--red);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.section-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 58ch;
}

.section-lead.centered,
.section-title.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.text-red {
  color: var(--red);
}
.text-yellow {
  color: var(--yellow);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(227, 6, 19, 0.35);
}

.btn-primary:hover {
  background: var(--red-deep);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 10px 28px rgba(255, 230, 0, 0.28);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: heroZoom 18s var(--ease) infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.12);
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0.55) 40%, rgba(10, 10, 10, 0.92) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.2) 55%, rgba(10, 10, 10, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}

.hero-brand {
  height: clamp(72px, 12vw, 110px);
  width: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.55));
  animation: riseIn 0.9s var(--ease) both;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  line-height: 0.95;
  text-transform: uppercase;
  max-width: 12ch;
  margin-bottom: 1rem;
  animation: riseIn 0.9s 0.08s var(--ease) both;
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 42ch;
  animation: riseIn 0.9s 0.16s var(--ease) both;
}

.hero .btn-row {
  animation: riseIn 0.9s 0.24s var(--ease) both;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-price-strip {
  position: absolute;
  right: 1.5rem;
  bottom: 5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  animation: riseIn 1s 0.35s var(--ease) both;
}

.price-chip {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.35rem;
  padding: 0.7rem 1.1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transform: rotate(-2deg);
}

.price-chip:nth-child(2) {
  background: var(--red);
  color: var(--white);
  transform: rotate(2deg);
  align-self: flex-end;
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--red);
  color: var(--white);
  overflow: hidden;
  border-top: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  padding: 0.85rem 0;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.marquee-track span::after {
  content: "◆";
  margin-left: 2.5rem;
  color: var(--yellow);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Stats ---------- */
.stats-band {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(227, 6, 19, 0.22), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(255, 230, 0, 0.12), transparent 45%),
    var(--charcoal);
  border-block: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.stat {
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.45rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ---------- Reveal motion ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Feature / about split ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  height: min(520px, 70vh);
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.08);
}

.split-media::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 3px solid var(--red);
  z-index: -1;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.pillar {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.pillar:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}

.pillar strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
  color: var(--yellow);
}

.pillar span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ---------- Price concept ---------- */
.price-section {
  background:
    linear-gradient(135deg, rgba(227, 6, 19, 0.18), transparent 40%),
    linear-gradient(315deg, rgba(255, 230, 0, 0.08), transparent 35%),
    var(--ink);
}

.price-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.price-panel {
  position: relative;
  padding: 2.5rem 2rem;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.price-panel.red {
  background: var(--red);
}

.price-panel.yellow {
  background: var(--yellow);
  color: var(--black);
}

.price-panel .amount {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1;
}

.price-panel .caption {
  font-weight: 600;
  margin-top: 0.5rem;
  opacity: 0.9;
}

.price-panel .barcode-corner {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 54px;
  height: 28px;
  background: repeating-linear-gradient(
    90deg,
    currentColor 0 2px,
    transparent 2px 5px
  );
  opacity: 0.35;
}

/* ---------- Product categories ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.cat-card {
  position: relative;
  padding: 2rem 1.6rem;
  background: var(--charcoal);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s;
}

.cat-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--red);
  transition: width 0.35s var(--ease), background 0.35s;
}

.cat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 230, 0, 0.45);
}

.cat-card:hover::before {
  width: 8px;
  background: var(--yellow);
}

.cat-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.cat-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
}

.cat-card .tag {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
}

/* ---------- Strengths ---------- */
.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 2.5rem;
}

.strength {
  padding: 1.6rem 1.4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  transition: border-color 0.3s, background 0.3s;
}

.strength:hover {
  border-top-color: var(--yellow);
  background: rgba(255, 230, 0, 0.04);
}

.strength h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.strength p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

/* ---------- Experience / sourcing lists ---------- */
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.5rem;
  margin-top: 1.75rem;
}

.check-grid li {
  position: relative;
  padding-left: 1.6rem;
  color: rgba(255, 255, 255, 0.78);
}

.check-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 230, 0, 0.2);
}

.panel-dark {
  background: var(--charcoal);
  border: 1px solid var(--line);
  padding: 2rem;
}

.panel-dark h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

/* ---------- Page hero (inner) ---------- */
.page-hero {
  position: relative;
  padding: 5rem 0 3.5rem;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(227, 6, 19, 0.35), transparent 45%),
    radial-gradient(ellipse at 90% 80%, rgba(255, 230, 0, 0.12), transparent 40%),
    var(--black);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -20px;
  width: 220px;
  height: 90px;
  opacity: 0.15;
  background: repeating-linear-gradient(
    90deg,
    var(--white) 0 4px,
    transparent 4px 10px
  );
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.85rem;
}

.page-hero p {
  max-width: 55ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

/* ---------- Contact form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-info .info-block {
  margin-bottom: 1.5rem;
}

.contact-info h3 {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.4rem;
}

.contact-info a {
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}

.contact-info a:hover {
  color: var(--yellow);
}

.form {
  background: var(--charcoal);
  border: 1px solid var(--line);
  padding: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.7);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 230, 0, 0.15);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.alert {
  padding: 1rem 1.15rem;
  margin-bottom: 1.25rem;
  border-left: 4px solid var(--yellow);
  background: rgba(255, 230, 0, 0.08);
}

.alert.error {
  border-left-color: var(--red);
  background: rgba(227, 6, 19, 0.12);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--red);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(0, 0, 0, 0.06) 12px 24px
  );
}

.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  text-transform: uppercase;
  line-height: 1.05;
  max-width: 16ch;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: #050505;
  border-top: 1px solid var(--line);
  padding-top: 3.5rem;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), var(--yellow), transparent);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1.1fr 1.5fr;
  gap: 2.5rem;
}

.footer-logo {
  height: 58px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.footer-slogan {
  color: rgba(255, 255, 255, 0.6);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.footer-cols h4 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.85rem;
}

.footer-cols a,
.footer-cols p {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}

.footer-cols a:hover {
  color: var(--yellow);
}

.footer-cols .muted {
  color: rgba(255, 255, 255, 0.4);
}

.footer-bar {
  border-top: 1px solid var(--line);
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
}

.barcode-mini {
  width: 72px;
  height: 16px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.45) 0 2px,
    transparent 2px 5px
  );
}

/* ---------- Map / store list ---------- */
.store-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.store-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 1.4rem;
  background: var(--charcoal);
  border: 1px solid var(--line);
}

.store-item .num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--yellow);
  min-width: 2.2ch;
}

.store-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.store-item p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 0.4rem 0.7rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat:nth-child(2) {
    border-right: none;
  }
  .split,
  .contact-grid,
  .two-col,
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .strength-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-price-strip {
    position: static;
    flex-direction: row;
    margin-top: 2rem;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: calc(var(--header-h) + 4px) 0 auto 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
  }

  .site-nav.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    width: 100%;
    padding: 0.9rem 1rem;
  }

  .cat-grid,
  .price-duo,
  .pillars,
  .strength-grid,
  .check-grid,
  .form-row,
  .footer-cols {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .store-item {
    grid-template-columns: auto 1fr;
  }

  .store-item .badge {
    grid-column: 2;
    justify-self: start;
  }

  .section {
    padding: 4rem 0;
  }
}
