/* ============================================================
   BERLI MEDIA — Design System (Light / White Edition)
   Palette: paper white / ink black / signal red (#E8041C)
   Type: Inter — display, body and labels
   ============================================================ */

:root {
  --paper: #ffffff;
  --surface: #f6f6f7;
  --surface-2: #eeeef0;
  --ink: #0a0a0c;
  --ink-soft: #26262b;
  --line: rgba(10, 10, 12, 0.1);
  --line-strong: rgba(10, 10, 12, 0.18);
  --white: #ffffff;
  --grey: #55555e;
  --grey-2: #8b8b94;
  --red: #e8041c;
  --red-dark: #b50315;
  --font-display: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --font-sans: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --font-label: 'Inter', -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--red); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: #c9c9cf; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container-x {
  width: min(1360px, 100% - 48px);
  margin-inline: auto;
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--red);
}
.eyebrow--plain::before { display: none; }

.display-1 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.serif { font-family: var(--font-display); }
.label-font { font-family: var(--font-label); }

/* ============================================================
   LOADING SCREEN
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}
.loader.done { transform: translateY(-100%); }
.loader-mark {
  width: min(320px, 60vw);
  position: relative;
  overflow: hidden;
}
.loader-mark img {
  width: 100%;
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  animation: markIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}
@keyframes markIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.loader-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(232, 4, 28, 0.18) 50%, transparent 80%);
  transform: translateX(-100%);
  animation: sweep 2.2s ease-in-out 0.4s infinite;
}
@keyframes sweep {
  60%, 100% { transform: translateX(100%); }
}
.loader-bar {
  width: min(320px, 60vw);
  height: 1px;
  background: var(--line-strong);
  position: relative;
  overflow: hidden;
}
.loader-bar span {
  position: absolute;
  inset: 0;
  background: var(--red);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.loader-meta {
  display: flex;
  justify-content: space-between;
  width: min(320px, 60vw);
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-2);
}
.loader-count { color: var(--red); font-size: 11px; }

/* ============================================================
   HEADER
   ============================================================ */
.topbar {
  border-bottom: 1px solid var(--line);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
}
.topbar a { transition: color 0.25s; }
.topbar-right { display: flex; gap: 22px; }
.topbar a:hover { color: var(--red); }
.topbar-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 4, 28, 0.5); }
  50% { box-shadow: 0 0 0 7px rgba(232, 4, 28, 0); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition: transform 0.4s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 32px;
  transition: height 0.35s ease;
}
.site-header.scrolled .header-inner { height: 64px; }
.brand-logo {
  height: 34px;
  width: auto;
  transition: height 0.35s ease;
}
.site-header.scrolled .brand-logo { height: 28px; }

.main-nav { display: flex; gap: 30px; }
.nav-link {
  position: relative;
  font-family: var(--font-label);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 8px 0;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions { display: flex; align-items: center; gap: 18px; }
.icon-btn {
  background: none;
  border: none;
  color: var(--grey);
  display: grid;
  place-items: center;
  transition: color 0.25s, transform 0.25s;
}
.icon-btn:hover { color: var(--ink); transform: translateY(-1px); }

.btn-sub {
  font-family: var(--font-label);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  padding: 11px 22px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.35s, border-color 0.35s;
}
.btn-sub::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red);
  z-index: -1;
  transform: translateY(101%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-sub:hover { color: #fff; border-color: var(--red); }
.btn-sub:hover::before { transform: translateY(0); }
.btn-sub--red { background: var(--red); border-color: var(--red); color: #fff; }
.btn-sub--red::before { background: var(--ink); }
.btn-sub--red:hover { border-color: var(--ink); }

/* Category bar (below main header) */
.catbar {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
}
.catbar-inner {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.catbar-inner::-webkit-scrollbar { display: none; }
.catbar-link {
  position: relative;
  font-family: var(--font-label);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 14px 14px 12px;
  white-space: nowrap;
  transition: color 0.3s;
}
.catbar-link::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -1px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.catbar-link:hover, .catbar-link.active { color: var(--ink); }
.catbar-link:hover::after, .catbar-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.catbar-link.live-link { color: var(--red); display: inline-flex; align-items: center; gap: 7px; }
.catbar-link.live-link::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.6s ease-in-out infinite;
}

/* Mobile menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.35s, opacity 0.35s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 8vw;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  overflow-y: auto;
}
.mobile-menu.open { clip-path: inset(0 0 0 0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(24px, 5.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, color 0.3s;
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu a:hover { color: var(--red); }
.mobile-menu a .label-font { font-size: 12px; font-weight: 600; color: var(--grey-2); letter-spacing: 0.2em; }

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  height: 46px;
}
.ticker-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0 20px;
}
.ticker-track-wrap { overflow: hidden; flex: 1; display: flex; align-items: center; }
.ticker-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey);
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span { display: inline-flex; align-items: center; gap: 14px; }
.ticker-track span::before { content: ''; width: 5px; height: 5px; background: var(--red); transform: rotate(45deg); flex-shrink: 0; }
@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* ============================================================
   HERO SLIDER  (imagery stays dark for contrast)
   ============================================================ */
.hero {
  position: relative;
  height: min(88vh, 860px);
  min-height: 560px;
  overflow: hidden;
  background: var(--ink);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}
.hero-slide.active img { animation: kenburns 7.5s ease-out forwards; }
@keyframes kenburns {
  to { transform: scale(1); }
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,12,0.55) 0%, rgba(10,10,12,0.1) 35%, rgba(10,10,12,0.92) 100%),
    linear-gradient(90deg, rgba(10,10,12,0.75) 0%, transparent 65%);
}
.hero-content {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 0;
  padding-bottom: 96px;
  color: #fff;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 14px;
  margin-bottom: 22px;
}
.hero-tag--dark { background: var(--ink); }
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 5.4vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin: 0 0 22px;
  color: #fff;
}
.hero-title a {
  background-image: linear-gradient(var(--red), var(--red));
  background-size: 0% 3px;
  background-repeat: no-repeat;
  background-position: 0 96%;
  transition: background-size 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-slide.active .hero-title a:hover { background-size: 100% 3px; }
.hero-excerpt {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 26px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-label);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--red); }
.hero-read {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
}
.hero-read .arrow-circle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.35s, border-color 0.35s, transform 0.35s;
}
.hero-read:hover .arrow-circle {
  background: var(--red);
  border-color: var(--red);
  transform: translateX(6px);
}

/* hero entrance animation per slide */
.hero-slide .hero-anim { opacity: 0; transform: translateY(34px); }
.hero-slide.active .hero-anim {
  animation: heroUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-slide.active .hero-anim:nth-child(1) { animation-delay: 0.15s; }
.hero-slide.active .hero-anim:nth-child(2) { animation-delay: 0.3s; }
.hero-slide.active .hero-anim:nth-child(3) { animation-delay: 0.45s; }
.hero-slide.active .hero-anim:nth-child(4) { animation-delay: 0.6s; }
@keyframes heroUp {
  to { opacity: 1; transform: translateY(0); }
}

/* hero controls */
.hero-nav {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: 0;
  left: 0;
}
.hero-nav-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 34px;
}
.hero-dots { display: flex; gap: 14px; }
.hero-dot {
  background: none;
  border: none;
  padding: 6px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 64px;
}
.hero-dot .num {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}
.hero-dot .bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.hero-dot .bar i {
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  display: block;
}
.hero-dot.active .num { color: #fff; }
.hero-dot.active .bar i { animation: dotProgress 7.5s linear forwards; }
.hero:hover .hero-dot.active .bar i { animation-play-state: running; }
@keyframes dotProgress {
  to { transform: scaleX(1); }
}
.hero-arrows { display: flex; gap: 10px; }
.hero-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(10, 10, 12, 0.4);
  backdrop-filter: blur(8px);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.hero-arrow:hover { background: var(--red); border-color: var(--red); transform: scale(1.06); }

/* ============================================================
   SECTIONS / HEADERS
   ============================================================ */
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--surface { background: var(--surface); }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 14px 0 0;
}
.section-link {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-strong);
  transition: color 0.3s, border-color 0.3s, gap 0.3s;
  white-space: nowrap;
}
.section-link:hover { color: var(--red); border-color: var(--red); gap: 16px; }
.section-link--onimage { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.4); }
.section-link--onimage:hover { color: #fff; border-color: var(--red); }

/* ============================================================
   ARTICLE CARDS
   ============================================================ */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.4s, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s;
}
.card:hover {
  border-color: var(--line-strong);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -28px rgba(10, 10, 12, 0.25);
}
.card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--surface-2);
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s;
}
.card:hover .card-media img { transform: scale(1.07); }
.card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 10, 12, 0.4));
  opacity: 0;
  transition: opacity 0.45s;
}
.card:hover .card-media::after { opacity: 1; }
.card-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--red);
  color: #fff;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 11px;
}
.card-cat--static { position: static; display: inline-block; }
.badge-breaking {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 11px;
}
.badge-breaking::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.6s ease-in-out infinite;
}
.card-media .badge-breaking { position: absolute; top: 14px; right: 14px; z-index: 2; }
.card-body { padding: 0 24px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0;
}
.card-title a {
  background-image: linear-gradient(var(--red), var(--red));
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: 0 98%;
  transition: background-size 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.card:hover .card-title a { background-size: 100% 2px; }
.card-excerpt {
  color: var(--grey);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}
.card-meta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-label);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-2);
}
.card-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--red); }

/* horizontal mini card */
.mini-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s;
}
.mini-card:hover { padding-left: 8px; }
.mini-card .thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-2);
}
.mini-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.mini-card:hover .thumb img { transform: scale(1.08); }
.mini-card h4 {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin: 4px 0 8px;
  transition: color 0.3s;
}
.mini-card:hover h4 { color: var(--red); }
.mini-card .m-meta {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-2);
}

/* big feature card (editors pick) */
.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--line);
  background: var(--ink);
}
.feature-card img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.feature-card:hover img.bg { transform: scale(1.05); }
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,0.05) 30%, rgba(10,10,12,0.94) 100%);
}
.feature-body {
  position: relative;
  z-index: 2;
  padding: 40px;
  color: #fff;
}
.feature-body h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 14px 0 14px;
  max-width: 640px;
  color: #fff;
}
.feature-body p { color: rgba(255,255,255,0.78); max-width: 520px; line-height: 1.65; margin: 0 0 18px; font-size: 14.5px; }
.feature-body .hero-meta { color: rgba(255,255,255,0.72); }

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  overflow: hidden;
  background: var(--paper);
}
.marquee-inner {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.marquee-inner span {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(10, 10, 12, 0.3);
  transition: color 0.4s;
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.marquee-inner span:hover { color: var(--red); -webkit-text-stroke-color: var(--red); }
.marquee-inner span::after { content: '◆'; font-size: 12px; -webkit-text-stroke: 0; color: var(--red); }

/* ============================================================
   CATEGORY TILES
   ============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.cat-tile {
  position: relative;
  background: var(--paper);
  padding: 40px 32px;
  overflow: hidden;
  isolation: isolate;
  transition: background 0.4s;
  display: block;
}
.cat-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: translateY(101%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}
.cat-tile:hover::before { transform: translateY(0); }
.cat-tile .cat-num {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--grey-2);
  transition: color 0.4s;
}
.cat-tile h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 16px 0 10px;
  transition: transform 0.4s, color 0.4s;
}
.cat-tile p {
  color: var(--grey);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
  transition: color 0.4s;
}
.cat-tile .cat-arrow {
  position: absolute;
  top: 36px;
  right: 30px;
  color: var(--grey-2);
  transition: color 0.4s, transform 0.4s;
}
.cat-tile:hover .cat-num { color: rgba(255, 255, 255, 0.8); }
.cat-tile:hover p { color: rgba(255, 255, 255, 0.88); }
.cat-tile:hover h3 { color: #fff; transform: translateX(6px); }
.cat-tile:hover .cat-arrow { color: #fff; transform: translate(4px, -4px); }

/* ============================================================
   PREMIUM / MEMBERSHIP BAND
   ============================================================ */
.premium-band {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.premium-band .glow-red {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 4, 28, 0.28), transparent 70%);
  top: -260px;
  right: -160px;
  pointer-events: none;
}
.premium-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  padding: clamp(56px, 7vw, 100px) 0;
}
.premium-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 58px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.03;
  margin: 16px 0 20px;
  color: #fff;
}
.premium-inner p { color: rgba(255,255,255,0.72); line-height: 1.7; max-width: 520px; margin: 0 0 30px; }
.premium-points { display: flex; flex-direction: column; gap: 14px; margin: 0 0 34px; padding: 0; list-style: none; }
.premium-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: rgba(255,255,255,0.88);
}
.premium-points li svg { flex-shrink: 0; margin-top: 2px; color: var(--red); }
.premium-side {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
  padding: 36px;
}
.premium-side h3 { font-family: var(--font-display); font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 10px; color: #fff; }
.premium-side p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.65; margin: 0 0 22px; }
.premium-side .news-form { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.06); }
.premium-side .news-form input { color: #fff; }
.premium-side .news-form input::placeholder { color: rgba(255,255,255,0.45); }
.premium-flag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 16px;
}

/* ============================================================
   NEWSLETTER / CTA
   ============================================================ */
.newsletter {
  position: relative;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 90% at 85% 20%, rgba(232, 4, 28, 0.08), transparent),
    var(--surface);
  padding: clamp(48px, 7vw, 96px);
  overflow: hidden;
}
.newsletter h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 16px 0 18px;
  max-width: 640px;
}
.newsletter p { color: var(--grey); max-width: 480px; line-height: 1.7; margin: 0 0 34px; }
.news-form { display: flex; max-width: 520px; border: 1px solid var(--line-strong); background: var(--paper); }
.news-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--ink);
  padding: 18px 22px;
  font-size: 14px;
  font-family: var(--font-sans);
}
.news-form input::placeholder { color: var(--grey-2); }
.news-form button {
  background: var(--red);
  color: #fff;
  border: none;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0 30px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.news-form button:hover { background: var(--red-dark); }
.news-ok { color: #12805c; font-size: 14px; font-weight: 600; margin-top: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding: 80px 0 64px;
}
.footer-brand img { height: 38px; margin-bottom: 24px; }
.footer-brand p { color: var(--grey); font-size: 14px; line-height: 1.75; max-width: 340px; margin: 0 0 26px; }
.socials { display: flex; gap: 10px; flex-wrap: wrap; }
.socials a {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: all 0.3s;
}
.socials a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-3px); }
.footer-col h5 {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 24px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.footer-col a, .footer-col li {
  color: var(--grey);
  font-size: 14px;
  transition: color 0.25s, padding-left 0.25s;
}
.footer-col a:hover { color: var(--red); padding-left: 6px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-2);
}
.footer-bottom .tagline-red { color: var(--red); }

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--red);
  z-index: 500;
  width: 0;
}
.article-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.article-hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,0.6) 0%, rgba(10,10,12,0.15) 40%, rgba(10,10,12,0.96) 100%);
}
.article-hero-inner { position: relative; z-index: 2; padding: 140px 0 72px; }
.article-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.6vw, 62px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin: 20px 0 28px;
  color: #fff;
}
.article-byline {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.byline-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  font-family: var(--font-label);
  font-weight: 800;
  font-size: 14px;
  color: #fff;
}
.byline-name { font-weight: 700; font-size: 14.5px; color: #fff; }
.byline-role { color: rgba(255,255,255,0.65); font-size: 12.5px; }
.byline-meta {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 12px;
}
.article-body-wrap {
  display: grid;
  grid-template-columns: 1fr 720px 1fr;
  padding: 72px 0;
}
.article-body { grid-column: 2; }
.article-body p {
  font-size: 18px;
  line-height: 1.85;
  color: rgba(10, 10, 12, 0.88);
  margin: 0 0 32px;
}
.article-body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 84px;
  font-weight: 800;
  line-height: 0.8;
  float: left;
  padding: 8px 16px 0 0;
  color: var(--red);
}
/* Panels inside the article body (premium lock / premium cta) never get a drop cap */
.article-body .premium-lock p::first-letter,
.article-body .premium-cta p::first-letter {
  font-family: inherit; font-size: inherit; font-weight: inherit;
  line-height: inherit; float: none; padding: 0; color: inherit;
}
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.4;
  border-left: 3px solid var(--red);
  padding-left: 32px;
  margin: 48px 0;
  color: var(--ink);
}
.share-rail { display: flex; gap: 10px; margin: 44px 0; flex-wrap: wrap; }
.share-rail span {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-2);
  align-self: center;
  margin-right: 8px;
}
.share-rail a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: all 0.3s;
}
.share-rail a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-3px); }

/* video embed */
.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border: 1px solid var(--line);
  overflow: hidden;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   PAGE HEADERS (section / about / contact)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero .glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 4, 28, 0.09), transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 92px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin: 18px 0 0;
}
.page-title .accent { color: var(--red); }
.page-sub { color: var(--grey); font-size: 17px; line-height: 1.7; max-width: 560px; margin-top: 24px; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start; }
.contact-card {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 34px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
}
.contact-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: 0 20px 40px -24px rgba(10,10,12,0.18); }
.contact-card .c-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--red);
}
.contact-card h4 { font-family: var(--font-label); font-size: 12px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey-2); margin: 0 0 10px; }
.contact-card p { margin: 0; font-size: 15.5px; line-height: 1.7; color: var(--ink); }
.contact-card p small { color: var(--grey); display: block; font-size: 13px; }
.contact-card p a { color: inherit; transition: color 0.25s; }
.contact-card p a:hover { color: var(--red); }
.form-field { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.form-field label { font-family: var(--font-label); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey); }
.form-field input, .form-field textarea {
  background: var(--paper);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  padding: 15px 18px;
  font-size: 14.5px;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: vertical;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(232,4,28,0.12); }
.btn-solid {
  background: var(--red);
  color: #fff;
  border: none;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 17px 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s, color 0.3s;
}
.btn-solid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  z-index: -1;
  transform: translateX(-101%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-solid:hover { color: #fff; transform: translateY(-2px); }
.btn-solid:hover::before { transform: translateX(0); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

/* about stats */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat-cell { background: var(--paper); padding: 44px 34px; transition: background 0.4s; }
.stat-cell:hover { background: var(--surface); }
.stat-cell .num {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--red);
  line-height: 1;
}
.stat-cell .lbl { font-family: var(--font-label); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey); margin-top: 14px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-l { opacity: 0; transform: translateX(-48px); transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1); }
.reveal-l.visible { opacity: 1; transform: translateX(0); }
.reveal-r { opacity: 0; transform: translateX(48px); transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1); }
.reveal-r.visible { opacity: 1; transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-l, .reveal-r, .hero-slide .hero-anim {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  .ticker-track, .marquee-inner, .hero-slide.active img { animation: none !important; }
}

/* ============================================================
   GRIDS
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.home-layout { display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: start; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .burger { display: flex; }
  .home-layout { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .cat-grid, .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 44px; }
  .article-body-wrap { grid-template-columns: 1fr min(720px, 100%) 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .topbar-right { display: none; }
  .premium-inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .topbar-inner > span:nth-child(2) { display: none; }
  .topbar-inner { justify-content: center; }
  .topbar-live { white-space: nowrap; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .cat-grid, .stat-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { height: 68vh; min-height: 480px; }
  .hero-content { padding-bottom: 120px; }
  .hero-arrows { display: none; }
  .btn-sub.hide-mobile { display: none; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .news-form { flex-direction: column; }
  .news-form button { padding: 16px; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding: 80px 0 56px; }
}

/* ============================================================
   WORDPRESS SPECIFICS
   ============================================================ */
body.admin-bar .site-header { top: 32px; }
body.admin-bar .mobile-menu { padding-top: 46px; }
body.admin-bar .read-progress { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
  body.admin-bar .read-progress { top: 46px; }
}

/* WP content elements inside article bodies */
.article-body img { max-width: 100%; height: auto; }
.article-body .aligncenter { margin-inline: auto; }
.article-body .alignleft { float: left; margin-right: 24px; }
.article-body .alignright { float: right; margin-left: 24px; }
.article-body h2, .article-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 44px 0 20px;
}
.article-body h2 { font-size: 32px; }
.article-body h3 { font-size: 25px; }
.article-body blockquote { margin: 40px 0; }
.article-body ul, .article-body ol { color: rgba(10,10,12,0.88); font-size: 17px; line-height: 1.8; margin: 0 0 32px; padding-left: 24px; }
.article-body p a:not(.btn-solid):not(.btn-ghost), .article-body li a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.article-body a.btn-solid, .article-body a.btn-ghost { text-decoration: none; }
.article-body .wp-block-embed { margin: 0 0 32px; }
.article-body .wp-block-embed__wrapper,
.article-body iframe { max-width: 100%; }
.wp-caption-text, .gallery-caption { color: var(--grey-2); font-size: 13px; margin-top: 10px; }

/* Pagination */
.nav-links { display: flex; gap: 10px; justify-content: center; }
.nav-links .page-numbers {
  min-width: 46px; height: 46px; display: inline-grid; place-items: center;
  border: 1px solid var(--line-strong); color: var(--grey);
  font-family: var(--font-label); font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  transition: all 0.3s;
}
.nav-links .page-numbers:hover { border-color: var(--red); color: var(--ink); }
.nav-links .page-numbers.current { background: var(--red); border-color: var(--red); color: #fff; }

/* Screen reader text */
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal;
}

/* ============================== SHOP / MERCH ============================== */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.catbar-link--shop { color: var(--red); font-weight: 700; }

.merch-card {
  display: block; background: var(--paper); border: 1px solid var(--line);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.merch-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(10, 10, 20, 0.10); }
.merch-media { aspect-ratio: 4 / 4.4; overflow: hidden; background: #0a0a0c; }
.merch-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.merch-card:hover .merch-media img { transform: scale(1.04); }
.merch-meta { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 16px 18px; }
.merch-meta h3 { font-family: var(--font-label); font-size: 13px; font-weight: 700; letter-spacing: 0.02em; margin: 0; color: var(--ink); }
.merch-meta span { font-family: var(--font-label); font-size: 12px; font-weight: 700; color: var(--red); white-space: nowrap; }

.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.product-card {
  background: var(--paper); border: 1px solid var(--line); display: flex; flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 20px 46px rgba(10, 10, 20, 0.10); }
.product-media { position: relative; aspect-ratio: 4 / 4.6; overflow: hidden; background: #0a0a0c; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-media img { transform: scale(1.04); }
.product-badge {
  position: absolute; top: 14px; left: 14px; background: var(--red); color: #fff;
  font-family: var(--font-label); font-size: 10px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 6px 10px;
}
.product-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-body h3 { font-size: 19px; margin: 0; letter-spacing: -0.01em; }
.product-body p { color: var(--grey-2); font-size: 13.5px; line-height: 1.55; margin: 0; flex: 1; }
.product-foot { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-top: 12px; flex-wrap: wrap; }
.product-price { font-family: var(--font-label); font-size: 15px; font-weight: 800; letter-spacing: 0.02em; }
.product-foot .btn-solid { padding: 11px 18px; font-size: 12px; }

.shop-notes {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 64px;
  border-top: 1px solid var(--line); padding-top: 40px;
}
.shop-notes > div { display: flex; gap: 16px; align-items: flex-start; }
.shop-notes svg { color: var(--red); flex-shrink: 0; margin-top: 3px; }
.shop-notes h4 { font-size: 15px; margin: 0 0 6px; }
.shop-notes p { color: var(--grey-2); font-size: 13px; line-height: 1.6; margin: 0; }

.order-panel {
  border: 1px solid var(--line); background: var(--paper);
  padding: 48px clamp(24px, 5vw, 64px); max-width: 900px; margin: 0 auto;
}
.order-panel-head { max-width: 560px; margin-bottom: 34px; }
.order-panel-head p { color: var(--grey-2); font-size: 14.5px; line-height: 1.65; }
.order-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.order-note { grid-column: 1 / -1; }
.order-form select {
  width: 100%; background: var(--paper); border: 1px solid var(--line-strong); color: var(--ink);
  font: inherit; font-size: 14px; padding: 12px 14px; outline: none;
}
.order-form select:focus { border-color: var(--red); }
.order-fineprint { color: var(--grey-2); font-size: 12px; margin: 14px 0 0; }

@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-notes { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .grid-4, .shop-grid { grid-template-columns: 1fr; }
  .order-fields { grid-template-columns: 1fr; }
  .order-panel { padding: 30px 20px; }
}

/* ============================== SEARCH & FILTERS ============================== */
.search-bar {
  display: flex; align-items: center; gap: 12px; margin-top: 34px; max-width: 680px;
  background: var(--paper); border: 1px solid var(--line-strong); padding: 8px 8px 8px 18px;
}
.search-bar svg { color: var(--grey-2); flex-shrink: 0; }
.search-bar input {
  flex: 1; border: none; outline: none; background: none; color: var(--ink);
  font: inherit; font-size: 15px; padding: 10px 0;
}
.search-bar .btn-sub { flex-shrink: 0; }

.filter-bar {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 22px;
  flex-wrap: wrap; border-bottom: 1px solid var(--line); padding-bottom: 22px; margin-bottom: 40px;
}
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip {
  display: inline-block; font-family: var(--font-label); font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 8px 15px;
  border: 1px solid var(--line-strong); background: var(--paper); color: var(--ink);
  text-decoration: none; cursor: pointer; transition: all 0.25s;
}
.filter-chip:hover { border-color: var(--red); color: var(--red); }
.filter-chip.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.filter-sort {
  display: flex; align-items: center; gap: 10px; color: var(--grey-2); flex-shrink: 0;
}
.filter-sort select {
  font-family: var(--font-label); font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  padding: 9px 12px; border: 1px solid var(--line-strong); background: var(--paper);
  color: var(--ink); outline: none; cursor: pointer;
}
.filter-sort select:focus { border-color: var(--red); }

@media (max-width: 640px) {
  .search-bar { flex-wrap: wrap; padding: 12px 14px; }
  .search-bar input { width: 100%; flex: 1 1 100%; }
  .filter-bar { flex-direction: column; }
}

/* ============================== PREMIUM GATING ============================== */
.badge-premium {
  display: inline-flex; align-items: center; gap: 6px; background: var(--ink); color: #fff;
  font-family: var(--font-label); font-size: 10px; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 6px 11px;
}
.card-media .badge-premium { position: absolute; top: 14px; right: 14px; z-index: 2; }
.card-media .badge-breaking ~ .badge-premium { top: 44px; }
.hero-tag--premium { background: var(--ink); color: #fff; }

.premium-lock {
  border: 1px solid var(--line); background: var(--ink); color: #fff;
  padding: 44px 40px; margin: 48px 0; text-align: center;
}
.premium-lock-icon { color: var(--red); display: flex; justify-content: center; margin-bottom: 18px; }
.premium-lock h3 {
  font-family: var(--font-display); font-size: 26px; font-weight: 800; letter-spacing: -0.02em;
  margin: 0 0 12px; color: #fff;
}
.premium-lock p { margin: 0 auto 26px; color: rgba(255, 255, 255, 0.72); font-size: 15px; line-height: 1.65; max-width: 460px; }
.premium-lock-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.premium-lock .btn-ghost { border-color: rgba(255, 255, 255, 0.35); color: #fff; }
.premium-lock .btn-ghost:hover { border-color: #fff; }
@media (max-width: 640px) {
  .premium-lock { padding: 34px 22px; }
  .premium-lock h3 { font-size: 21px; }
}
