/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #0b0605;
  --bg-2:      #150908;
  --bg-3:      #1e1210;
  --card:      #1a1110;
  --cream:     #f2e8da;
  --cream-2:   #d9c9b6;
  --cream-3:   #94816f;
  --accent:    #c81e2c;
  --accent-2:  #8a1420;
  --pink:      #ff2d78;
  --sage:      #7f9575;
  --gold:      #d4a24c;
  --gold-soft: #e8c27f;
  --line:      rgba(242,232,218,.14);
  --line-2:    rgba(242,232,218,.08);

  --display: "Anton", "Georgia", serif;
  --script: "Alex Brush", cursive;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1180px;
  --radius: 14px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
  background-image:
    radial-gradient(ellipse 60% 40% at 15% 0%, rgba(200,30,44,.12), transparent 60%),
    radial-gradient(ellipse 50% 35% at 90% 10%, rgba(127,149,117,.08), transparent 60%);
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; font-family: var(--display); font-weight: 400; color: var(--cream); }
input { font: inherit; color: inherit; }
::selection { background: var(--accent); color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.2rem; background: var(--gold); color: #1a1110;
  z-index: 9999; border-radius: 8px; font-weight: 600;
  transition: top .25s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 720px) { .container { padding-inline: 2rem; } }

.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;
}

.kicker {
  font-family: var(--sans);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold-soft);
  letter-spacing: .14em;
  font-size: clamp(.72rem, 1.4vw, .82rem);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.kicker::before, .kicker::after {
  content: "";
  width: 22px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section { position: relative; padding: clamp(3.5rem, 8vw, 7rem) 0; }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section-head h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-top: .6rem; }
.section-head p { color: var(--cream-3); margin-top: .9rem; font-size: 1.05rem; }
.section-head.center { margin-inline: auto; text-align: center; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   4. Buttons & badges
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  font-weight: 600; font-size: .96rem;
  letter-spacing: .01em;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s var(--ease-out), border-color .3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--cream);
  box-shadow: 0 10px 30px -8px rgba(200,30,44,.55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -8px rgba(200,30,44,.7); }
.btn-ghost {
  background: transparent; color: var(--cream-2);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); transform: translateY(-3px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #1a1110;
  box-shadow: 0 10px 26px -8px rgba(212,162,76,.5);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -8px rgba(212,162,76,.65); }
.btn-block { width: 100%; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
.btn-icon {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  transition: border-color .3s var(--ease-out), background .3s var(--ease-out), transform .3s var(--ease-out);
}
.btn-icon:hover { border-color: var(--gold); background: rgba(212,162,76,.08); }
.btn-icon svg { width: 19px; height: 19px; }

.badge {
  display: inline-flex; align-items: center;
  padding: .3rem .7rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  border-radius: 999px;
  background: rgba(255,45,120,.14);
  color: var(--pink);
  border: 1px solid rgba(255,45,120,.35);
}
.badge-sage { background: rgba(127,149,117,.16); color: #b7c9ab; border-color: rgba(127,149,117,.4); }
.badge-gold { background: rgba(212,162,76,.14); color: var(--gold-soft); border-color: rgba(212,162,76,.4); }

/* =============================================================
   5. Curtain intro
   ============================================================= */
.curtain {
  position: fixed; inset: 0; z-index: 500;
  display: flex;
  background: #050202;
  animation: curtainSafety 3.4s linear forwards;
}
.curtain-panel {
  width: 50%; height: 100%; position: relative;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.5), transparent 35%, transparent 65%, rgba(0,0,0,.55)),
    repeating-linear-gradient(100deg, rgba(0,0,0,.35) 0 18px, transparent 18px 42px),
    url('assets/img/texture-velvet.jpg');
  background-size: cover, cover, cover;
  background-position: center;
  box-shadow: inset 0 0 120px rgba(0,0,0,.65);
}
.curtain-panel.left {
  animation: curtainOpenLeft 3.4s cubic-bezier(.65,0,.35,1) forwards;
  border-right: 3px solid rgba(212,162,76,.85);
  box-shadow: inset 0 0 120px rgba(0,0,0,.65), 8px 0 24px -6px rgba(212,162,76,.35);
}
.curtain-panel.right {
  animation: curtainOpenRight 3.4s cubic-bezier(.65,0,.35,1) forwards;
  border-left: 3px solid rgba(212,162,76,.85);
  box-shadow: inset 0 0 120px rgba(0,0,0,.65), -8px 0 24px -6px rgba(212,162,76,.35);
  transform: scaleX(-1);
}
.curtain-fringe {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 22px;
  background-image: radial-gradient(circle at 11px 0, transparent 10px, var(--gold) 11px);
  background-size: 22px 22px;
  opacity: .9;
}
.curtain-enter {
  position: absolute; left: 50%; top: 50%; z-index: 5;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
  color: var(--gold-soft);
  animation: curtainEnterFade 3.4s linear forwards;
  cursor: pointer;
}
.curtain-enter .curtain-enter-ring {
  width: 64px; height: 64px; border-radius: 50%;
  border: 1px solid rgba(212,162,76,.55);
  display: flex; align-items: center; justify-content: center;
  animation: curtainPulse 1.8s var(--ease-soft) infinite;
}
.curtain-enter span { font-family: var(--kicker-font); letter-spacing: .12em; font-size: .82rem; text-transform: uppercase; }

@keyframes curtainOpenLeft {
  0%, 26% { transform: translateX(0); }
  100% { transform: translateX(-101%); }
}
@keyframes curtainOpenRight {
  0%, 26% { transform: scaleX(-1) translateX(0); }
  100% { transform: scaleX(-1) translateX(-101%); }
}
@keyframes curtainSafety {
  0%, 82% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}
@keyframes curtainEnterFade {
  0%, 20% { opacity: 1; }
  32%, 100% { opacity: 0; }
}
@keyframes curtainPulse {
  0%, 100% { transform: scale(1); opacity: .8; }
  50% { transform: scale(1.12); opacity: 1; }
}

.curtain.is-skipping { animation: curtainSafety .5s linear forwards; }
.curtain.is-skipping .curtain-panel.left { animation: curtainOpenLeft .55s cubic-bezier(.65,0,.35,1) forwards; }
.curtain.is-skipping .curtain-panel.right { animation: curtainOpenRight .55s cubic-bezier(.65,0,.35,1) forwards; }
.curtain.is-skipping .curtain-enter { animation: curtainEnterFade .4s linear forwards; }

@media (prefers-reduced-motion: reduce) {
  .curtain, .curtain-panel.left, .curtain-panel.right, .curtain-enter { animation-duration: 1.1s !important; }
}

/* =============================================================
   6. Header / Nav
   ============================================================= */
.site-header {
  position: sticky; top: 0; z-index: 300;
  padding: .9rem 0;
  background: rgba(11,6,5,.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line-2);
}
@supports not (backdrop-filter: blur(1px)) {
  .site-header { background: rgba(11,6,5,.94); }
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand-mark { display: inline-flex; align-items: center; gap: .6rem; }
.brand-mark img { width: 38px; height: 38px; }
.brand-mark strong {
  font-family: var(--script); font-weight: 400; font-size: 1.9rem; letter-spacing: .01em; color: var(--cream);
}

.main-nav { display: none; align-items: center; gap: 2rem; }
.main-nav a {
  font-size: .92rem; color: var(--cream-3); position: relative; padding-block: .3rem;
  transition: color .3s var(--ease-out);
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1px;
  background: var(--gold); transition: right .35s var(--ease-out);
}
.main-nav a:hover { color: var(--cream); }
.main-nav a:hover::after { right: 0; }

@media (min-width: 960px) { .main-nav { display: flex; } }

.header-actions { display: flex; align-items: center; gap: .7rem; }
.cart-btn { position: relative; }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--accent); color: var(--cream);
  font-size: .68rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg);
  transform: scale(0); transition: transform .3s var(--ease-bounce);
}
.cart-count.is-active { transform: scale(1); }

.hamburger { display: inline-flex; }
@media (min-width: 960px) { .hamburger { display: none; } }
.hamburger svg .l2 { transition: opacity .2s var(--ease-out); }
.hamburger svg .l1, .hamburger svg .l3 { transition: transform .3s var(--ease-out); transform-origin: center; }
.hamburger.is-open svg .l1 { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open svg .l3 { transform: translateY(-6px) rotate(-45deg); }
.hamburger.is-open svg .l2 { opacity: 0; }

.mobile-nav {
  position: fixed; inset: 0; top: 66px; z-index: 250;
  background: rgba(11,6,5,.98);
  padding: 2rem 1.5rem;
  display: flex; flex-direction: column; gap: 1.4rem;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
}
.mobile-nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-nav a { font-family: var(--display); font-size: 1.6rem; color: var(--cream); }
@media (min-width: 960px) { .mobile-nav { display: none; } }

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: clip;
  padding-top: 5rem;
}
.hero-stripes {
  position: absolute; inset: 0; z-index: 0;
  background:
    repeating-conic-gradient(from 0deg at 50% -40%,
      rgba(200,30,44,.16) 0deg 10deg, transparent 10deg 20deg);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 78%);
}
.hero-lights {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(212,162,76,.9) 0 2px, transparent 3px);
  background-size: 64px 64px;
  background-position: 0 6%;
  mask-image: radial-gradient(ellipse 70% 30% at 50% 8%, black 50%, transparent 90%);
  animation: lightsTwinkle 3.6s ease-in-out infinite;
}
@keyframes lightsTwinkle { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }

.hero-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 1.4rem; padding: 1rem; }
.hero-emblem { width: clamp(96px, 16vw, 150px); height: auto; filter: drop-shadow(0 18px 34px rgba(0,0,0,.55)); }
.hero-title {
  font-family: var(--script);
  font-weight: 400;
  font-size: clamp(4.2rem, 16vw, 9.5rem);
  color: var(--cream);
  letter-spacing: .01em;
  text-shadow: 0 0 40px rgba(200,30,44,.45), 0 4px 0 rgba(0,0,0,.35);
}
.hero-sub {
  max-width: 46ch; font-size: clamp(1rem, 2vw, 1.2rem); color: var(--cream-2);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: .6rem; }
.hero-note { margin-top: 1.6rem; font-size: .82rem; color: var(--cream-3); letter-spacing: .04em; }

.hero-scroll {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--cream-3); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
}
.hero-scroll .line { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* =============================================================
   8. Manifesto
   ============================================================= */
.manifesto-grid {
  display: grid; gap: 2.4rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 960px) { .manifesto-grid { grid-template-columns: .95fr 1.05fr; gap: 4rem; } }

.manifesto-figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
}
.manifesto-figure img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) sepia(.5) hue-rotate(310deg) saturate(3) brightness(.55) contrast(1.15);
}
.manifesto-figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,6,5,.15), rgba(11,6,5,.85));
}
.manifesto-figure .figure-tag {
  position: absolute; left: 1.2rem; bottom: 1.2rem; z-index: 2;
}

.manifesto-text p { margin-top: 1.1rem; font-size: 1.05rem; }
.manifesto-text p:first-of-type { margin-top: 1.4rem; }
.manifesto-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.2rem; }
.pillar { border-top: 1px solid var(--line); padding-top: .8rem; }
.pillar strong { display: block; font-family: var(--display); font-size: 1.3rem; color: var(--gold-soft); }
.pillar span { font-size: .84rem; color: var(--cream-3); }

/* =============================================================
   9. Shop / products
   ============================================================= */
#tienda {
  --accent: #ff1a6b;
  --accent-2: #c8125a;
  --gold-soft: #ff5c96;
  position: relative;
  background: #060303;
  overflow: clip;
}
#tienda::before {
  content: "";
  position: absolute; top: 0; left: 0; width: 55%; height: 55%; z-index: 0;
  background-image: radial-gradient(circle, rgba(255,26,107,.6) 0 2px, transparent 2.6px);
  background-size: 15px 15px;
  mask-image: radial-gradient(ellipse 75% 75% at 0% 0%, black 35%, transparent 85%);
  opacity: .55;
  pointer-events: none;
}
#tienda::after {
  content: "";
  position: absolute; right: -6%; bottom: -8%; width: 56%; height: 78%; z-index: 0;
  background-image: url('assets/img/pink-flames.svg');
  background-repeat: no-repeat; background-position: bottom right; background-size: contain;
  opacity: .85;
  pointer-events: none;
}
#tienda .container { position: relative; z-index: 1; }

.product-card {
  position: relative;
  background: linear-gradient(180deg, var(--card), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease-out), border-color .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,26,107,.5);
  box-shadow: 0 24px 48px -20px rgba(0,0,0,.6);
}
.product-visual {
  position: relative; aspect-ratio: 1; border-radius: 10px;
  background: radial-gradient(circle at 50% 30%, rgba(255,26,107,.22), transparent 65%), var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem; overflow: hidden;
}
.product-visual img.tee { width: 56%; }
.product-visual .print-badge {
  position: absolute; width: 34%; top: 30%; left: 50%; transform: translateX(-50%);
  border-radius: 50%; overflow: hidden; border: 2px solid rgba(242,232,218,.15);
}
.product-visual .design-patch {
  position: absolute; width: 32%; aspect-ratio: 1; top: 34%; left: 50%; transform: translateX(-50%);
  border: 2px dashed rgba(242,232,218,.4); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-3);
}
.product-visual .design-patch svg { width: 42%; }
.product-card .badge { position: absolute; top: 1.2rem; left: 1.2rem; }
.product-card h3 { font-size: 1.6rem; margin-top: .2rem; }
.product-card .desc { font-size: .92rem; color: var(--cream-3); margin-top: .6rem; flex-grow: 1; }

.product-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 1.2rem; }
.product-price { font-size: 1.4rem; font-weight: 700; color: var(--cream); }
.product-price small { display: block; font-size: .68rem; font-weight: 500; color: var(--cream-3); text-transform: uppercase; letter-spacing: .06em; }
.size-pill {
  font-size: .74rem; font-weight: 600; padding: .3rem .6rem;
  border: 1px solid var(--line); border-radius: 999px; color: var(--cream-3);
}

.customize-row {
  margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px dashed var(--line);
}
.customize-row label { font-size: .84rem; color: var(--cream-2); display: block; margin-bottom: .5rem; }
.customize-input {
  width: 100%; padding: .7rem .9rem;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 8px;
  color: var(--cream); font-size: .92rem;
}
.customize-input::placeholder { color: var(--cream-3); }

.qty-row { display: flex; align-items: center; gap: 1rem; margin-top: 1.3rem; }
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; }
.qty-stepper button { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.qty-stepper button:hover { color: var(--pink); }
.qty-stepper .qty-value { min-width: 26px; text-align: center; font-weight: 600; color: var(--cream); }
.add-to-cart { flex-grow: 1; }

.shop-spotlight { max-width: 940px; margin-inline: auto; display: flex; flex-direction: column; gap: 1.8rem; }
.shop-spotlight .product-card { padding: 1.8rem; }
.shop-spotlight .product-visual.photo { background: var(--bg-3); }
.shop-spotlight .product-visual.photo img.mockup { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
@media (min-width: 720px) {
  .shop-spotlight .product-card {
    display: grid; grid-template-columns: 1fr 1.1fr; align-items: center; gap: 2.8rem;
    padding: 2.4rem;
  }
  .shop-spotlight .product-visual { margin-bottom: 0; }
}
.product-info { display: flex; flex-direction: column; }

/* =============================================================
   10. Comic strip
   ============================================================= */
.comic-grid {
  display: grid; gap: 1.4rem;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 720px) { .comic-grid { grid-template-columns: repeat(3, 1fr); } }

.comic-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 3/4;
  background-image: linear-gradient(180deg, rgba(11,6,5,.35), rgba(11,6,5,.92)), url('assets/img/texture-grunge.jpg');
  background-size: cover; background-position: center;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.4rem;
}
.comic-card::before {
  content: "";
  position: absolute; inset: 10px;
  border: 1px dashed rgba(242,232,218,.22);
  pointer-events: none;
}
.comic-card .episode-num {
  font-family: var(--display); font-size: 3.4rem; color: rgba(242,232,218,.14);
  position: absolute; top: .6rem; right: 1rem;
}
.comic-card h3 { font-size: 1.2rem; }
.comic-card .status { font-size: .78rem; color: var(--gold-soft); margin-top: .35rem; display: block; }
.comic-card.is-live .status { color: var(--pink); }
.comic-card .stamp {
  position: absolute; top: 1.2rem; left: 1.2rem;
  border: 2px solid var(--gold); color: var(--gold-soft);
  padding: .25rem .6rem; border-radius: 6px; font-size: .68rem;
  letter-spacing: .08em; text-transform: uppercase; transform: rotate(-6deg);
  font-weight: 700;
}

.comic-follow {
  margin-top: 2.4rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.2rem; padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-2);
}

.comic-comments {
  margin-top: 1.6rem; max-width: 640px;
  padding: 1.8rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-2);
}
.comic-comments h3 { font-size: 1.3rem; }
.comic-comments > p { color: var(--cream-3); margin-top: .4rem; font-size: .92rem; }
.comment-form { margin-top: 1.3rem; display: flex; flex-direction: column; gap: 1rem; }
.form-row label { display: block; font-size: .84rem; color: var(--cream-2); margin-bottom: .5rem; }
.form-row input, .form-row textarea {
  width: 100%; padding: .7rem .9rem;
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 8px;
  color: var(--cream); font-size: .92rem; font-family: var(--sans);
  resize: vertical;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--cream-3); }
.comment-form .hint { font-size: .76rem; color: var(--cream-3); }
.comic-follow p { color: var(--cream-2); max-width: 42ch; }

/* =============================================================
   11. Contact band
   ============================================================= */
.contact-band {
  position: relative; text-align: center;
  border-radius: 24px;
  padding: clamp(2.5rem, 7vw, 4.5rem) 1.5rem;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(200,30,44,.22), transparent 70%), var(--bg-2);
  border: 1px solid var(--line);
}
.contact-band h2 { font-size: clamp(2rem, 5vw, 3rem); }
.contact-band p { max-width: 50ch; margin: 1rem auto 1.8rem; color: var(--cream-2); }

/* =============================================================
   12. Footer
   ============================================================= */
.site-footer { border-top: 1px solid var(--line-2); padding: 2.6rem 0 2rem; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 1.4rem; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: .6rem; }
.footer-brand img { width: 30px; height: 30px; }
.footer-brand strong { font-family: var(--script); font-weight: 400; font-size: 1.5rem; }
.footer-links { display: flex; gap: 1.4rem; flex-wrap: wrap; font-size: .85rem; color: var(--cream-3); }
.footer-links a:hover { color: var(--gold-soft); }
.footer-bottom {
  margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line-2);
  display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between;
  font-size: .78rem; color: var(--cream-3);
}
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* =============================================================
   13. Cart drawer
   ============================================================= */
.cart-overlay {
  position: fixed; inset: 0; z-index: 380;
  background: rgba(5,2,2,.66);
  opacity: 0; pointer-events: none; transition: opacity .35s var(--ease-out);
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 390;
  width: min(420px, 100vw);
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .45s var(--ease-out);
}
.cart-drawer.is-open { transform: none; }

.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 1.4rem 1rem; border-bottom: 1px solid var(--line); }
.cart-head h2 { font-size: 1.4rem; }
.cart-items { flex-grow: 1; overflow-y: auto; padding: 1rem 1.4rem; display: flex; flex-direction: column; gap: 1rem; }
.cart-item { display: flex; gap: .9rem; border-bottom: 1px solid var(--line-2); padding-bottom: 1rem; }
.cart-item .tee-thumb { width: 52px; height: 52px; border-radius: 8px; background: var(--bg-3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cart-item .tee-thumb img { width: 60%; }
.cart-item-body { flex-grow: 1; min-width: 0; }
.cart-item-body h4 { font-family: var(--sans); font-weight: 600; font-size: .92rem; color: var(--cream); }
.cart-item-body .meta { font-size: .76rem; color: var(--cream-3); margin-top: .15rem; }
.cart-item-row { display: flex; align-items: center; justify-content: space-between; margin-top: .5rem; }
.cart-item-remove { font-size: .76rem; color: var(--cream-3); text-decoration: underline; text-underline-offset: 2px; }
.cart-item-remove:hover { color: var(--accent); }
.cart-empty { text-align: center; color: var(--cream-3); padding: 3rem 1rem; }
.cart-empty svg { width: 44px; height: 44px; margin: 0 auto 1rem; opacity: .4; }

.cart-foot { padding: 1.2rem 1.4rem 1.5rem; border-top: 1px solid var(--line); }
.cart-total-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; font-size: 1.1rem; color: var(--cream); font-weight: 700; }
.cart-foot p.hint { font-size: .76rem; color: var(--cream-3); margin-top: .7rem; text-align: center; }

/* =============================================================
   14. Responsive breakpoints (extra section-level tuning)
   ============================================================= */
@media (min-width: 540px) {
  .hero-actions { gap: 1.2rem; }
}
@media (min-width: 1280px) {
  .container { padding-inline: 2.5rem; }
}

/* =============================================================
   15. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-lights { animation: none; opacity: .75; }
  .hero-scroll .line { animation: none; transform: scaleY(1); }
  .curtain-enter .curtain-enter-ring { animation: none; }
}
