:root {
  color-scheme: dark;
  --bg: #07080a;
  --bg-2: #0a0b0e;
  --panel: rgba(10, 12, 15, 0.78);
  --panel-strong: rgba(9, 10, 13, 0.92);
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --line-red: rgba(224, 47, 47, 0.55);
  --text: #f7f3ef;
  --muted: #c9c0b8;
  --soft: #918981;
  --red: #e52d2d;
  --red-bright: #ff3b3b;
  --red-dark: #8c1111;
  --gold: #e3b76e;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.48);
  --ease: cubic-bezier(0.21, 1, 0.21, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* accent variants (Tweaks) */
:root[data-accent="crimson"] {
  --red: #d61f3a;
  --red-bright: #ff2d50;
  --red-dark: #7c0f23;
}
:root[data-accent="ember"] {
  --red: #f0531f;
  --red-bright: #ff7a3c;
  --red-dark: #9a3410;
  --gold: #f0c178;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 68% 14%, rgba(176, 108, 47, 0.16), transparent 30rem),
    radial-gradient(circle at 12% 60%, rgba(217, 36, 36, 0.13), transparent 26rem),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  color: inherit;
  font: inherit;
}

img {
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- cursor glow + scroll progress ---------- */
.cursor-glow {
  display: none;
}
.page-progress {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 60;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--gold));
  pointer-events: none;
}

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  min-height: 78px;
  padding: 0 clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 6, 8, 0.62);
  backdrop-filter: blur(16px);
  transition: min-height 360ms var(--ease), background 360ms ease, box-shadow 360ms ease, border-color 360ms ease;
}
.site-header.is-scrolled {
  min-height: 62px;
  background: rgba(5, 6, 8, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}
.brand-mark {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(229, 45, 45, 0.26);
  border-radius: 50%;
  color: var(--red);
  background: rgba(229, 45, 45, 0.06);
  overflow: hidden;
}
.brand-mark i {
  position: relative;
  z-index: 1;
}
.brand-mark svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.65;
  animation: flameFlicker 2.6s ease-in-out infinite;
  transform-origin: 50% 80%;
}
.brand-copy {
  display: grid;
  line-height: 0.9;
}
.brand-copy span {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.12em;
}
.brand-copy small {
  margin-top: 4px;
  color: #e63a3a;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.34em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 54px);
  justify-self: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
}
.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.88);
  transition: color 220ms ease;
}
.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 240ms ease, transform 240ms var(--ease);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--red);
}
.main-nav a:hover::after,
.main-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}
.main-nav svg {
  width: 14px;
  height: 14px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}
.header-actions a,
.header-actions button,
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 36px;
  background: transparent;
  cursor: pointer;
  transition: color 220ms ease, transform 220ms ease;
}
.header-phone {
  gap: 9px;
  padding: 8px 14px;
  border: 1px solid rgba(229, 45, 45, 0.4);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  background: rgba(229, 45, 45, 0.06);
}
.header-phone svg {
  color: var(--red);
}
.header-actions svg,
.nav-toggle svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.8;
}
.header-actions a:hover,
.header-actions button:hover,
.nav-toggle:hover {
  color: var(--red);
  transform: translateY(-1px);
}
.header-phone:hover {
  border-color: var(--red);
}
.cart-button {
  position: relative;
}
.cart-button span {
  position: absolute;
  top: -1px;
  right: -2px;
  display: grid;
  min-width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.63rem;
  font-weight: 800;
}
.nav-toggle {
  display: none;
  justify-self: end;
}

/* ---------- hero (shared) ---------- */
.hero {
  position: relative;
  min-height: 788px;
  padding: 138px clamp(18px, 4vw, 64px) 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 78px 0 0;
  z-index: -3;
  pointer-events: none;
}
.hero-media,
.hero-vignette,
.smoke-layer,
.ember-canvas,
.hero-spotlight,
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-media {
  display: block;
  overflow: hidden;
  transform: scale(1.04);
  animation: imageSettle 1800ms var(--ease) forwards;
  will-change: transform;
}
.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  filter: saturate(0.98) contrast(1.06) brightness(0.72);
}
.hero-spotlight {
  z-index: 1;
  opacity: 0;
  background: radial-gradient(ellipse 60% 70% at 30% 42%, rgba(229, 45, 45, 0.22), transparent 60%);
  mix-blend-mode: screen;
}
.hero-vignette {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.99) 0%, rgba(6, 7, 9, 0.92) 30%, rgba(6, 7, 9, 0.42) 60%, rgba(5, 6, 8, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.16), rgba(5, 6, 8, 0.34) 58%, #07080a 100%);
}
.ember-canvas {
  z-index: 3;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}
:root[data-embers="off"] .ember-canvas {
  display: none;
}
.smoke-layer {
  z-index: 3;
  opacity: 0.5;
  background:
    radial-gradient(ellipse at 15% 36%, rgba(255, 255, 255, 0.12), transparent 17rem),
    radial-gradient(ellipse at 24% 26%, rgba(255, 255, 255, 0.08), transparent 13rem);
  filter: blur(24px);
  animation: smokeDrift 14s ease-in-out infinite alternate;
}
.hero-grain {
  z-index: 4;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.hero-content {
  width: min(580px, 100%);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(229, 45, 45, 0.6);
  animation: pulseDot 2.4s ease-out infinite;
}
.hero h1 {
  max-width: 640px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 6vw, 6.9rem);
  font-weight: 700;
  line-height: 0.88;
}
.hero h1 span {
  position: relative;
  display: inline-block;
  color: var(--red);
}
.hero h1 span::after {
  position: absolute;
  left: 3px;
  bottom: -14px;
  width: 70px;
  height: 4px;
  content: "";
  border-radius: 999px;
  background: currentColor;
  transform-origin: left;
  animation: underlineGrow 1100ms 600ms var(--ease) backwards;
}
.hero-text {
  width: min(470px, 100%);
  margin: 34px 0 26px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.5vw, 1.46rem);
  line-height: 1.36;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 238px;
  min-height: 50px;
  padding: 13px 24px;
  border: 1px solid rgba(229, 45, 45, 0.62);
  border-radius: 10px;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 700;
  overflow: hidden;
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms var(--ease);
}
.btn svg {
  width: 18px;
  height: 18px;
  margin-right: 12px;
}
.btn-primary {
  background: linear-gradient(180deg, #d72d2d, #861010);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}
.btn-ghost {
  background: rgba(5, 6, 8, 0.45);
  backdrop-filter: blur(6px);
}
.btn::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.32), transparent 80%);
  transform: translateX(-120%);
  transition: transform 620ms ease;
}
.btn:hover {
  border-color: rgba(255, 255, 255, 0.44);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
  transform: translateY(-2px);
}
.btn:hover::before {
  transform: translateX(120%);
}

.law-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  width: min(478px, 100%);
  margin-top: 26px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(9, 11, 14, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transition: transform 200ms var(--ease), border-color 240ms ease;
  transform-style: preserve-3d;
}
.law-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
}
.law-card > svg {
  width: 48px;
  height: 48px;
  color: #fff;
  stroke-width: 1.6;
}
.law-card h2 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.08;
}
.law-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  line-height: 1.42;
}

.hero-badge {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 2px;
  width: 132px;
  height: 132px;
  padding: 18px;
  border: 1px solid rgba(229, 45, 45, 0.4);
  border-radius: 50%;
  background: rgba(9, 11, 14, 0.6);
  backdrop-filter: blur(8px);
  text-align: center;
  align-content: center;
  flex-shrink: 0;
}
.hero-badge-ring {
  display: none;
}
.hero-badge i,
.hero-badge strong,
.hero-badge small {
  position: relative;
  z-index: 1;
}
.hero-badge i {
  color: var(--red);
}
.hero-badge svg {
  width: 22px;
  height: 22px;
}
.hero-badge strong {
  font-family: var(--serif);
  font-size: 1.9rem;
  line-height: 1;
}
.hero-badge small {
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

/* ---------- quick info ---------- */
.quick-info {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(7, 8, 10, 0.92), rgba(18, 14, 10, 0.7), rgba(7, 8, 10, 0.92));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  scroll-margin-top: 92px;
  overflow: hidden;
}
.quick-info article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  min-height: 92px;
  padding: 20px 30px;
  align-items: center;
  transition: background 260ms ease;
}
.quick-info article:hover {
  background: rgba(229, 45, 45, 0.05);
}
.quick-info article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.quick-info svg {
  width: 40px;
  height: 40px;
  color: var(--red);
  stroke-width: 1.55;
}
.quick-info p {
  display: grid;
  gap: 1px;
  margin: 0;
}
.quick-info strong {
  font-family: var(--serif);
  font-size: 1.24rem;
}
.quick-info span,
.quick-info a {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.38;
}
.quick-info a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: max-content;
  margin-top: 4px;
  color: var(--red);
  font-weight: 600;
}
.quick-info a svg {
  width: 13px;
  height: 13px;
  filter: none;
}
.quick-info a:hover {
  text-decoration: underline;
}

/* ---------- ticker ---------- */
.ticker {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(90deg, rgba(140, 17, 17, 0.16), rgba(7, 8, 10, 0.4), rgba(140, 17, 17, 0.16));
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  padding: 13px 0;
  white-space: nowrap;
  animation: tickerScroll 32s linear infinite;
}
.ticker:hover .ticker-track {
  animation-play-state: paused;
}
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.04rem;
  color: rgba(255, 255, 255, 0.82);
}
.ticker-track svg {
  width: 16px;
  height: 16px;
  color: var(--red);
}

/* ---------- categories ---------- */
.categories-section {
  padding: 44px clamp(18px, 4vw, 64px) 36px;
  scroll-margin-top: 92px;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.section-eyebrow {
  margin: 0 0 6px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.section-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 2.4vw, 2.5rem);
  line-height: 1;
}
.section-head > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 700;
  transition: gap 220ms ease;
}
.section-head > a:hover {
  gap: 12px;
}
.section-head > a svg {
  width: 15px;
  height: 15px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #090b0d;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.3);
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms var(--ease);
  will-change: transform;
}
.category-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #050607;
  background-image: var(--image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.02);
  transition: transform 700ms var(--ease), filter 400ms ease;
}
.category-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, rgba(7, 8, 10, 0) 0%, rgba(7, 8, 10, 0.32) 38%, rgba(7, 8, 10, 0.94) 82%);
  pointer-events: none;
  transition: opacity 320ms ease;
}
.card-glow {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}
.card-icon,
.category-card h3,
.category-card p,
.card-cta {
  position: relative;
  z-index: 3;
}
.card-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border: 1px solid rgba(229, 45, 45, 0.4);
  border-radius: 11px;
  color: var(--red);
  background: rgba(9, 11, 14, 0.6);
  backdrop-filter: blur(6px);
  transition: transform 300ms var(--ease), background 300ms ease, color 300ms ease;
}
.card-icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.75;
}
.category-card h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.4vw, 1.55rem);
  line-height: 1.04;
}
.category-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  line-height: 1.4;
}
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-height: 0;
  margin-top: 0;
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  overflow: hidden;
  transition: opacity 300ms ease, transform 300ms var(--ease), max-height 300ms ease, margin-top 300ms ease;
}
.card-arrow {
  width: 16px;
  height: 16px;
  transition: transform 280ms var(--ease);
}

.category-card:hover {
  border-color: rgba(229, 45, 45, 0.7);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.42);
  transform: translateY(-8px);
}
.category-card:hover .category-image {
  transform: scale(1.08);
  filter: saturate(1.08) brightness(1.06);
}
.category-card:hover .card-glow {
  opacity: 1;
}
.category-card:hover .card-icon {
  transform: translateY(-2px);
  background: var(--red);
  color: #fff;
}
.category-card:hover .card-cta {
  max-height: 30px;
  margin-top: 12px;
  opacity: 1;
  transform: translateY(0);
}
.category-card:hover .card-arrow {
  transform: translateX(6px);
}

/* ---------- card style: framed (contained product on black) ---------- */
:root[data-cards="framed"] .category-card {
  justify-content: flex-end;
  padding: 148px 20px 18px;
}
:root[data-cards="framed"] .category-image {
  inset: 0 0 auto;
  height: 132px;
  background-size: contain;
  transform: none;
}
:root[data-cards="framed"] .category-card::before {
  background: linear-gradient(180deg, rgba(7, 8, 10, 0) 0%, rgba(7, 8, 10, 0.2) 44%, rgba(7, 8, 10, 0.96) 64%);
}
:root[data-cards="framed"] .category-card:hover .category-image {
  transform: scale(1.04);
}

/* ---------- card style: reveal (dim → brighten on hover) ---------- */
:root[data-cards="reveal"] .category-image {
  filter: grayscale(0.35) brightness(0.5);
  transform: scale(1.04);
}
:root[data-cards="reveal"] .category-card::before {
  background: linear-gradient(180deg, rgba(7, 8, 10, 0.55) 0%, rgba(7, 8, 10, 0.62) 40%, rgba(7, 8, 10, 0.95) 86%);
}
:root[data-cards="reveal"] .category-card:hover .category-image {
  filter: grayscale(0) brightness(1.04) saturate(1.1);
  transform: scale(1.1);
}
:root[data-cards="reveal"] .category-card:hover::before {
  opacity: 0.7;
}

/* ---------- hero direction: editorial ---------- */
:root[data-hero="editorial"] .hero {
  padding-top: 124px;
}
:root[data-hero="editorial"] .hero-bg {
  inset: 78px 0 0 auto;
  width: 52%;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  border-left: 1px solid rgba(229, 45, 45, 0.3);
}
:root[data-hero="editorial"] .hero-vignette {
  background:
    linear-gradient(90deg, #07080a 0%, rgba(7, 8, 10, 0.55) 30%, rgba(7, 8, 10, 0.18) 100%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.2), rgba(5, 6, 8, 0.3) 60%, #07080a 100%);
}
:root[data-hero="editorial"] .hero-content {
  width: min(560px, 100%);
  padding-left: 22px;
  border-left: 2px solid var(--red);
}
:root[data-hero="editorial"] .hero-badge {
  display: none;
}

/* ---------- hero direction: spotlight ---------- */
:root[data-hero="spotlight"] .hero {
  text-align: center;
  padding-top: 150px;
}
:root[data-hero="spotlight"] .hero-media img {
  filter: saturate(0.9) contrast(1.08) brightness(0.42);
  object-position: 56% 46%;
}
:root[data-hero="spotlight"] .hero-spotlight {
  opacity: 1;
  background: radial-gradient(ellipse 52% 60% at 50% 40%, rgba(229, 45, 45, 0.28), transparent 62%);
}
:root[data-hero="spotlight"] .hero-vignette {
  background:
    radial-gradient(ellipse 80% 80% at 50% 36%, transparent 30%, rgba(5, 6, 8, 0.7) 78%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.4), rgba(5, 6, 8, 0.5) 58%, #07080a 100%);
}
:root[data-hero="spotlight"] .hero-inner {
  flex-direction: column;
  align-items: center;
}
:root[data-hero="spotlight"] .hero-content {
  width: min(820px, 100%);
}
:root[data-hero="spotlight"] .eyebrow {
  justify-content: center;
}
:root[data-hero="spotlight"] .hero h1 {
  max-width: none;
  font-size: clamp(4.2rem, 7vw, 7.6rem);
}
:root[data-hero="spotlight"] .hero h1 span::after {
  left: 50%;
  transform: translateX(-50%);
}
:root[data-hero="spotlight"] .hero-text {
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
}
:root[data-hero="spotlight"] .hero-actions {
  justify-content: center;
}
:root[data-hero="spotlight"] .law-card {
  margin-inline: auto;
  text-align: left;
}
:root[data-hero="spotlight"] .hero-badge {
  display: none;
}

/* ---------- footer ---------- */
.site-footer {
  position: relative;
  margin-top: 40px;
  padding: 64px clamp(18px, 4vw, 64px) 28px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #08090c, #050607);
  overflow: hidden;
  scroll-margin-top: 92px;
}
.footer-glow {
  display: none;
}
.footer-top {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-soft);
}
.footer-brand > p {
  max-width: 320px;
  margin: 18px 0 20px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--text);
  transition: border-color 220ms ease, color 220ms ease, transform 220ms ease, background 220ms ease;
}
.footer-social a:hover {
  border-color: var(--red);
  color: #fff;
  background: rgba(229, 45, 45, 0.12);
  transform: translateY(-3px);
}
.footer-social svg {
  width: 19px;
  height: 19px;
}
.footer-col h4 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 600;
}
.footer-col a {
  display: block;
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 200ms ease, transform 200ms ease;
}
.footer-col a:hover {
  color: var(--red);
  transform: translateX(4px);
}
.footer-contact p {
  display: flex;
  gap: 11px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.footer-contact svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--red);
}
.footer-contact a {
  color: var(--muted);
}
.footer-contact a:hover {
  color: var(--red);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  color: var(--soft);
  font-size: 0.82rem;
}
.footer-legal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.footer-bottom p {
  margin: 0;
}
.age-pill {
  display: inline-grid;
  place-items: center;
  padding: 3px 9px;
  border: 1px solid var(--red);
  border-radius: 999px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
}

/* ---------- scroll-to-top ---------- */
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(229, 45, 45, 0.5);
  border-radius: 50%;
  background: rgba(9, 11, 14, 0.8);
  color: var(--red);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(16px) scale(0.85);
  pointer-events: none;
  transition: opacity 300ms ease, transform 300ms var(--ease), background 220ms ease, color 220ms ease;
}
.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--red);
  color: #fff;
}
.scroll-top svg {
  width: 21px;
  height: 21px;
}

/* ---------- scroll reveal animations ---------- */
[data-anim] {
  opacity: 0;
  will-change: transform, opacity;
}
[data-anim].in-view {
  opacity: 1;
}
[data-anim="up"].in-view {
  animation: revealUp 720ms var(--ease-out) both;
}
[data-anim="card"].in-view {
  animation: revealCard 700ms var(--ease-out) both;
}
[data-anim="hero-title"].in-view {
  animation: revealTitle 900ms var(--ease-out) both;
}

/* motion off (Tweaks) */
:root[data-motion="off"] [data-anim] {
  opacity: 1 !important;
  transform: none !important;
}
:root[data-motion="off"] .ember-canvas,
:root[data-motion="off"] .smoke-layer,
:root[data-motion="off"] .brand-mark::after,
:root[data-motion="off"] .hero-badge-ring,
:root[data-motion="off"] .ticker-track {
  animation: none !important;
}
:root[data-motion="off"] .ember-canvas {
  display: none;
}

/* ---------- keyframes ---------- */
:root[data-anim-frozen] [data-anim] {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

@keyframes revealUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
@keyframes revealCard {
  from { opacity: 0; transform: translateY(34px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
@keyframes revealTitle {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}
@keyframes imageSettle {
  from { transform: scale(1.1) translateX(20px); }
  to { transform: scale(1.04) translateX(0); }
}
@keyframes smokeDrift {
  from { transform: translate3d(-16px, 4px, 0) scale(1); }
  to { transform: translate3d(18px, -16px, 0) scale(1.08); }
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(229, 45, 45, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(229, 45, 45, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 45, 45, 0); }
}
@keyframes underlineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes ringSpin {
  to { transform: rotate(360deg); }
}
@keyframes flameFlicker {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  45% { transform: scale(1.08) rotate(-3deg); opacity: 0.88; }
  70% { transform: scale(0.96) rotate(2deg); opacity: 1; }
}

/* ---------- responsive ---------- */
@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }
  .hero-inner {
    flex-direction: column;
  }
  .hero-badge {
    display: none;
  }
  :root[data-hero="editorial"] .hero-bg {
    width: 46%;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .cursor-glow {
    display: none;
  }
  .site-header {
    min-height: 66px;
    grid-template-columns: 1fr auto auto;
  }
  .nav-toggle {
    display: inline-flex;
    order: 1;
  }
  .main-nav {
    position: fixed;
    top: 66px;
    right: 12px;
    left: 12px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(7, 8, 10, 0.97);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 240ms ease, transform 240ms var(--ease);
  }
  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .main-nav a {
    justify-content: space-between;
    padding: 15px 12px;
    border-radius: 10px;
  }
  .main-nav a:active {
    background: rgba(229, 45, 45, 0.1);
  }
  .main-nav a::after {
    display: none;
  }
  .header-actions {
    gap: 8px;
  }
  .hero {
    min-height: auto;
    padding-top: 108px;
  }
  .hero-bg {
    inset: 66px 0 0;
  }
  :root[data-hero="editorial"] .hero-bg,
  :root[data-hero="editorial"] .hero {
    inset: 66px 0 0;
    width: auto;
    border: 0;
    padding-top: 108px;
  }
  :root[data-hero="editorial"] .hero-bg {
    width: 100%;
    border-radius: 0;
  }
  :root[data-hero="editorial"] .hero-content {
    border-left: 0;
    padding-left: 0;
  }
  :root[data-hero="editorial"] .hero-vignette,
  .hero-vignette {
    background:
      linear-gradient(90deg, rgba(5, 6, 8, 0.99), rgba(5, 6, 8, 0.78), rgba(5, 6, 8, 0.46)),
      linear-gradient(180deg, rgba(5, 6, 8, 0.95) 0%, rgba(5, 6, 8, 0.5) 14%, rgba(5, 6, 8, 0.72) 65%, #07080a 100%);
  }
  .quick-info {
    grid-template-columns: 1fr;
  }
  .quick-info article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .brand-mark {
    width: 40px;
    height: 40px;
  }
  .brand-copy span {
    font-size: 1.5rem;
  }
  .brand-copy small {
    font-size: 0.6rem;
  }
  .hero {
    padding-right: 16px;
    padding-left: 16px;
  }
  .hero-media img {
    object-position: 56% 50%;
    filter: saturate(0.96) contrast(1.05) brightness(0.62);
  }
  .hero h1 {
    font-size: clamp(3.2rem, 14vw, 4.6rem);
  }
  :root[data-hero="spotlight"] .hero h1 {
    font-size: clamp(3.2rem, 14vw, 4.6rem);
  }
  .hero-actions,
  .btn {
    width: 100%;
  }
  .law-card {
    grid-template-columns: 40px 1fr;
    padding: 18px;
  }
  .law-card > svg {
    width: 36px;
    height: 36px;
  }
  .quick-info article {
    grid-template-columns: 46px 1fr;
    padding: 16px 18px;
  }
  .quick-info svg {
    width: 34px;
    height: 34px;
  }
  .categories-section {
    padding: 32px 16px 28px;
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .category-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .category-card {
    min-height: 230px;
  }
  :root[data-cards="framed"] .category-card {
    min-height: 280px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .scroll-top {
    right: 16px;
    bottom: 16px;
  }
}

/* ---------- age gate ---------- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.age-gate.is-hidden {
  display: none;
}
.age-gate-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 5, 7, 0.94);
  backdrop-filter: blur(12px);
}
.age-gate-card {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  padding: 44px 36px 36px;
  border: 1px solid rgba(229, 45, 45, 0.35);
  border-radius: 20px;
  background: linear-gradient(180deg, #0d0f13, #09090d);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255,255,255,0.05) inset;
  text-align: center;
  animation: ageGateIn 420ms var(--ease-out) both;
}
@keyframes ageGateIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}
.age-gate-badge {
  display: inline-grid;
  place-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border: 2px solid var(--red);
  border-radius: 50%;
  background: rgba(229,45,45,0.08);
}
.age-gate-badge span {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.age-gate-card h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  line-height: 1.12;
}
.age-gate-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}
.age-gate-sub {
  font-size: 0.82rem !important;
  color: var(--soft) !important;
}
.age-gate-accept {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  margin-top: 24px;
  padding: 14px 24px;
  border: 1px solid rgba(229, 45, 45, 0.5);
  border-radius: 12px;
  background: linear-gradient(180deg, #d72d2d, #861010);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  transition: transform 220ms var(--ease), box-shadow 220ms ease;
}
.age-gate-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.5);
}
.age-gate-accept svg {
  width: 20px;
  height: 20px;
}
.age-gate-decline {
  display: block;
  margin-top: 16px;
  color: var(--soft);
  font-size: 0.84rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 200ms ease;
}
.age-gate-decline:hover {
  color: var(--muted);
}

/* ---------- mobile optimizations ---------- */
@media (max-width: 640px) {
  .age-gate-card {
    padding: 32px 22px 28px;
  }
  .age-gate-badge {
    width: 66px;
    height: 66px;
    margin-bottom: 18px;
  }
  .age-gate-badge span {
    font-size: 1.5rem;
  }
  .hero {
    padding-top: 96px;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
    line-height: 0.92;
  }
  .hero-text {
    font-size: 1.1rem;
    margin: 22px 0 20px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .btn {
    min-width: unset;
    width: 100%;
    font-size: 1rem;
  }
  .law-card {
    grid-template-columns: 36px 1fr;
    gap: 14px;
    padding: 16px;
  }
  .law-card h2 {
    font-size: 1.1rem;
  }
  .quick-info article {
    min-height: auto;
    padding: 14px 16px;
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }
  .quick-info svg {
    width: 28px;
    height: 28px;
  }
  .quick-info strong {
    font-size: 1.05rem;
  }
  .ticker-track span {
    font-size: 0.92rem;
  }
  .site-footer {
    padding-top: 44px;
    padding-bottom: 20px;
  }
  .header-phone {
    gap: 6px;
    padding: 7px 12px;
    font-size: 0.95rem;
  }
  .header-phone span {
    display: inline;
  }
  .header-phone svg {
    width: 17px;
    height: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
  [data-anim] {
    opacity: 1 !important;
    transform: none !important;
  }
  .ember-canvas {
    display: none;
  }
}

/* ---------- mobile intro splash (scroll-to-reveal) ---------- */
.mobile-intro,
.mobile-intro-spacer {
  display: none;
}

@media (max-width: 760px) {
  .mobile-intro {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 200;
    overflow: hidden;
    background: #050607;
    /* stay opaque through most of the scroll, then dissolve in the final
       stretch — right as the hero reaches the top — so the empty scroll
       runway behind never shows as a black gap */
    opacity: clamp(0, calc((1 - var(--intro-progress, 0)) * 3), 1);
    will-change: opacity;
  }
  /* scroll runway behind the fixed splash */
  .mobile-intro-spacer {
    display: block;
    height: 100vh;
    height: 100svh;
  }

  /* image now sits as a flex item BETWEEN the top and bottom text blocks,
     so it can never overlap the logo or status — even on short viewports
     (iPhone with the Safari toolbars shown) */
  .mobile-intro-media {
    position: relative;
    flex: 1 1 0;
    align-self: stretch;
    min-height: 0;
    margin: 16px 0;
    overflow: hidden;
  }
  .mobile-intro-media-img {
    position: absolute;
    inset: 0;
    background: #050607 url("./assets/hero-storefront-1448.jpg") 50% 50% / contain no-repeat;
    transform: scale(calc(1 + var(--intro-progress, 0) * 0.16));
    transform-origin: 50% 50%;
    filter: brightness(calc(0.92 - var(--intro-progress, 0) * 0.28))
      saturate(1.02) contrast(1.04);
    animation: introMediaSettle 1600ms var(--ease) both;
    will-change: transform, filter;
  }
  /* soft-fade the image edges into the dark zones */
  .mobile-intro-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, #050607 0%, transparent 14%, transparent 86%, #050607 100%);
  }
  .mobile-intro-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: max(38px, env(safe-area-inset-top)) 22px max(28px, env(safe-area-inset-bottom)) 22px;
    text-align: center;
  }
  /* text blocks leave faster than the image */
  .mobile-intro-top,
  .mobile-intro-bottom {
    opacity: calc(1 - var(--intro-progress, 0) * 1.7);
    will-change: opacity, transform;
  }
  .mobile-intro-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transform: translateY(calc(var(--intro-progress, 0) * -18px));
  }
  .mobile-intro-logo {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    margin-top: 6px;
    border: 1px solid rgba(229, 45, 45, 0.4);
    border-radius: 50%;
    color: var(--red);
    background: rgba(9, 11, 14, 0.55);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    animation: introFadeUp 1000ms 420ms var(--ease-out) both;
  }
  .mobile-intro-logo svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.6;
    transform-origin: 50% 80%;
    animation: flameFlicker 2.6s ease-in-out infinite;
  }
  .mobile-intro-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transform: translateY(calc(var(--intro-progress, 0) * 18px));
  }
  .mobile-intro-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(7, 8, 10, 0.55);
    backdrop-filter: blur(8px);
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    animation: introFadeUp 1000ms 420ms var(--ease-out) both;
  }
  .mobile-intro-status .mio-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--soft);
    flex-shrink: 0;
  }
  .mobile-intro-status.is-open {
    color: #6ef0ac;
    border-color: rgba(61, 220, 132, 0.45);
  }
  .mobile-intro-status.is-open .mio-dot {
    background: #3ddc84;
    animation: statusPulse 2.2s ease-out infinite;
  }
  .mobile-intro-status.is-closed {
    color: #ff8585;
    border-color: rgba(229, 45, 45, 0.45);
  }
  .mobile-intro-status.is-closed .mio-dot {
    background: var(--red);
  }
  .mobile-intro-tag {
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    animation: introFadeDown 900ms 200ms var(--ease-out) both;
  }
  .mobile-intro-brand {
    display: grid;
    line-height: 0.94;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
    animation: introFadeUp 1000ms 320ms var(--ease-out) both;
  }
  .mobile-intro-brand > span {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 14vw, 4.4rem);
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  .mobile-intro-brand small {
    margin-top: 7px;
    color: #ff4a4a;
    font-size: clamp(0.7rem, 3.2vw, 0.9rem);
    font-weight: 800;
    letter-spacing: 0.34em;
  }
  .mobile-intro-hours {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(7, 8, 10, 0.55);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    line-height: 1.35;
    animation: introFadeUp 1000ms 460ms var(--ease-out) both;
  }
  .mobile-intro-hours svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--red);
  }
  .mobile-intro-scroll {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.86);
    font-family: var(--serif);
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
    animation: introFadeUp 1000ms 600ms var(--ease-out) both;
  }
  .mobile-intro-scroll svg {
    width: 26px;
    height: 26px;
    color: var(--red);
    animation: introBounce 1.8s ease-in-out infinite;
  }

  /* hide the fixed header while the splash is covering the screen */
  :root.intro-active .site-header {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    transition: opacity 280ms ease, transform 360ms var(--ease);
  }
  /* once revealed, let the splash ignore touches */
  :root:not(.intro-active) .mobile-intro {
    pointer-events: none;
  }

  /* accessibility / reduced-motion: skip the splash entirely */
  :root.intro-skip .mobile-intro,
  :root.intro-skip .mobile-intro-spacer {
    display: none;
  }
}

@keyframes introMediaSettle {
  from { transform: scale(1.16); }
  to   { transform: scale(1); }
}
@keyframes introFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes introFadeDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: none; }
}
@keyframes introBounce {
  0%, 100% { transform: translateY(0); opacity: 0.65; }
  50% { transform: translateY(7px); opacity: 1; }
}
@keyframes statusPulse {
  0% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(61, 220, 132, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0); }
}
