/* ================================================
   VISHWOKARMA LABS — Paper Minimal Theme
   ================================================ */

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

:root {
  --paper:      #f2ede3;
  --paper-mid:  #e8e3d8;
  --paper-deep: #ddd8cc;
  --ink:        #111111;
  --ink-muted:  #555555;
  --ink-faint:  #999999;
  --white:      #ffffff;
  --rule:       rgba(17,17,17,0.10);

  --mono: 'Space Mono', 'Courier New', monospace;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-h: 60px;
  --max-w: 1180px;
  --t: 0.22s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  font-size: 16px;
}

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: var(--mono); font-weight: 700; line-height: 1.05; letter-spacing: -0.025em; }
p { color: var(--ink-muted); line-height: 1.75; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── PAPER GRAIN ─── */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── LAYOUT ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 13px 28px; border: 1.5px solid;
  cursor: pointer; transition: background var(--t), color var(--t), border-color var(--t);
  white-space: nowrap;
}

.btn--ink   { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--ink:hover { background: transparent; color: var(--ink); }

.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--paper); }

.btn--light { background: transparent; color: var(--paper); border-color: var(--paper); }
.btn--light:hover { background: var(--paper); color: var(--ink); }

.btn--sm { padding: 9px 18px; font-size: 10px; }
.btn--block { width: 100%; }

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════
   NAVIGATION
════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--paper);
  border-bottom: 1px solid transparent;
  z-index: 800;
  transition: border-color var(--t), box-shadow var(--t);
}
.nav.scrolled { border-color: var(--rule); }

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* LOGO IMAGE */
.logo-mark {
  width: 36px;
  height: 36px;

}

.nav__logo:hover .logo-mark {
  transform: scale(1.05);
}
/* TEXT NEXT TO LOGO */
.logo-name {
  white-space: nowrap;
}

.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav__links a {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-muted);
  position: relative; transition: color var(--t);
}

.nav__links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--ink);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}

.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.icon-btn, .cart-toggle {
  background: none; border: none; cursor: pointer;
  padding: 6px; color: var(--ink); display: flex;
  align-items: center; justify-content: center;
  position: relative;
}

.cart-badge {
  position: absolute; top: 3px; right: 3px;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--ink); color: var(--paper);
  font-family: var(--mono); font-size: 8px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--t);
}
.cart-badge.show { opacity: 1; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 20px; height: 1.5px; background: var(--ink); transition: all 0.25s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ════════════════════════════════════
   CART DRAWER
════════════════════════════════════ */
.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 850; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.overlay.show { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 360px; background: var(--paper);
  border-left: 1px solid var(--rule);
  z-index: 860;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer__head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-drawer__head h3 { font-size: 13px; letter-spacing: 0.12em; }

.cart-drawer__body {
  flex: 1; overflow-y: auto;
  padding: 20px 24px;
}

.cart-empty {
  font-family: var(--mono); font-size: 12px;
  color: var(--ink-faint); text-align: center;
  margin-top: 60px; letter-spacing: 0.05em;
}

.cart-item {
  display: flex; gap: 12px; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--rule);
}

.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name { font-family: var(--mono); font-size: 12px; font-weight: 700; margin-bottom: 3px; }
.cart-item__price { font-family: var(--mono); font-size: 11px; color: var(--ink-muted); }

.cart-item__qty { display: flex; align-items: center; gap: 6px; }
.qty-btn {
  width: 22px; height: 22px; border: 1px solid var(--ink);
  background: none; cursor: pointer;
  font-family: var(--mono); font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t), color var(--t);
}
.qty-btn:hover { background: var(--ink); color: var(--paper); }
.qty-num { font-family: var(--mono); font-size: 12px; width: 20px; text-align: center; }

.cart-item__del { background: none; border: none; cursor: pointer; color: var(--ink-faint); font-size: 13px; padding: 4px; transition: color var(--t); }
.cart-item__del:hover { color: var(--ink); }

.cart-drawer__foot {
  padding: 20px 24px;
  border-top: 1px solid var(--rule);
  display: none;
}
.cart-row {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 14px; font-weight: 700;
  margin-bottom: 14px;
}

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  border-bottom: 1px solid var(--rule);
  position: relative;
}

.hero__eyebrow {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(68px, 12.5vw, 190px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}

.hero__slogan {
  font-family: var(--mono); font-style: italic;
  font-size: clamp(16px, 2.2vw, 26px);
  color: var(--ink-muted);
  margin-bottom: 28px;
}

.hero__desc {
  max-width: 420px; font-size: 15px;
  margin-bottom: 36px;
}

.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__scroll-hint {
  position: absolute; bottom: 28px; right: 32px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em;
  color: var(--ink-faint); text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--ink-faint), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* ─── TICKER ─── */
.ticker {
  background: var(--ink); overflow: hidden;
  padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ticker__track {
  display: flex; gap: 40px; align-items: center;
  width: max-content;
  animation: ticker 40s linear infinite;
}
.ticker__track span {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(242,237,227,0.65); white-space: nowrap; flex-shrink: 0;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ════════════════════════════════════
   SECTIONS — shared
════════════════════════════════════ */
.section { padding: 100px 0; }

.section--dark { background: var(--ink); }
.section--dark p { color: rgba(242,237,227,0.5); }

.section--ruled {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.section__tag {
  display: block;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 14px;
}
.section__tag--light { color: rgba(242,237,227,0.3); }

.section__title { font-size: clamp(32px, 4.5vw, 52px); margin-bottom: 20px; }
.section__title--light { color: var(--paper); }

.section__sub {
  max-width: 560px; font-size: 15px;
  margin-bottom: 52px;
}

/* ════════════════════════════════════
   ABOUT
════════════════════════════════════ */
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}

.about__left h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 24px; }
.about__left h2 em { font-style: italic; }
.about__left p { margin-bottom: 16px; font-size: 15px; }
.about__links { display: flex; gap: 24px; margin-top: 28px; }
.text-link {
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-bottom: 1px solid var(--ink); padding-bottom: 2px;
  transition: opacity var(--t);
}
.text-link:hover { opacity: 0.55; }

.about__pillars {
  border-top: 1px solid var(--rule);
}
.pillar {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px 0; border-bottom: 1px solid var(--rule);
}
.pillar__n {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.08em; color: var(--ink-faint);
  flex-shrink: 0; padding-top: 2px;
}
.pillar__text {
  font-family: var(--mono); font-size: 15px;
  color: var(--ink); line-height: 1.5;
}

/* ════════════════════════════════════
   SERVICES
════════════════════════════════════ */
.services__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(242,237,227,0.08);
  gap: 0;
}

.service-card {
  padding: 48px 40px;
  border-right: 1px solid rgba(242,237,227,0.08);
  border-bottom: 1px solid rgba(242,237,227,0.08);
  transition: background var(--t);
}
.service-card:nth-child(2n) { border-right: none; }
.service-card:nth-child(3),
.service-card:nth-child(4) { border-bottom: none; }
.service-card:hover { background: rgba(255,255,255,0.03); }

.service-card__icon { margin-bottom: 20px; color: rgba(242,237,227,0.5); }
.service-card__label {
  display: block; font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(242,237,227,0.25); margin-bottom: 10px;
}
.service-card h3 { font-size: 22px; color: var(--paper); margin-bottom: 14px; line-height: 1.2; }
.service-card p { font-size: 14px; line-height: 1.7; }

/* ════════════════════════════════════
   EVENTS
════════════════════════════════════ */
.events__grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 16px; margin-bottom: 32px;
}
.events__side { display: flex; flex-direction: column; gap: 16px; }

.event-card { border: 1px solid var(--rule); overflow: hidden; }

.event-card__media {
  background: var(--paper-mid);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.event-card__media--lg { height: 340px; }
.event-card__media--sm { height: 100px; }

.media-placeholder {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; text-align: center; padding: 12px;
}
.mp__label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; color: var(--ink-faint);
  text-transform: uppercase;
}
.mp__title {
  font-family: var(--mono); font-size: 16px; font-weight: 700;
  color: var(--ink); line-height: 1.2;
}

.event-card__overlay {
  position: absolute; inset: 0;
  background: rgba(17,17,17,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.25s ease;
}
.event-card--featured:hover .event-card__overlay { opacity: 1; }

.event-card__info { padding: 14px 16px; }
.event-tag {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink-faint); display: block; margin-bottom: 5px;
}
.event-card__info h4 { font-size: 14px; line-height: 1.3; }

.events__footer {
  display: flex; align-items: center;
  gap: 20px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid var(--rule);
}
.events__footer p { font-family: var(--mono); font-size: 13px; color: var(--ink-muted); margin: 0; }
.events__social { display: flex; gap: 10px; }

.social-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  border: 1.5px solid var(--ink); padding: 8px 14px;
  transition: background var(--t), color var(--t);
}
.social-pill:hover { background: var(--ink); color: var(--paper); }

/* ════════════════════════════════════
   PODCAST
════════════════════════════════════ */
.podcast__list { border-top: 1px solid var(--rule); margin-bottom: 32px; }

.ep {
  display: grid; grid-template-columns: 64px 1fr auto;
  gap: 20px; align-items: center;
  padding: 22px 0; border-bottom: 1px solid var(--rule);
  transition: background var(--t);
}
.ep:hover {
  background: var(--paper-mid);
  padding-left: 12px; padding-right: 12px;
  margin: 0 -12px; width: calc(100% + 24px);
}

.ep__num {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.10em; color: var(--ink-faint); text-align: center;
}
.ep__body h4 { font-size: 16px; margin-bottom: 5px; }
.ep__body p { font-size: 13px; }

.ep__meta { display: flex; align-items: center; gap: 12px; }
.ep__dur { font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; color: var(--ink-faint); }

.play-btn {
  width: 36px; height: 36px; border: 1.5px solid var(--ink);
  background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t), color var(--t);
  flex-shrink: 0;
}
.play-btn:hover,
.play-btn.playing { background: var(--ink); color: var(--paper); }
.play-icon { font-size: 10px; margin-left: 2px; }
.play-btn.playing .play-icon { margin-left: 0; font-size: 9px; }

.podcast__foot { display: flex; gap: 16px; flex-wrap: wrap; }

/* ════════════════════════════════════
   SHOP
════════════════════════════════════ */
.shop__filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 36px; padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}

.filter-btn {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 8px 16px; border: 1px solid var(--rule);
  background: none; color: var(--ink-muted); cursor: pointer;
  transition: all var(--t);
}
.filter-btn:hover,
.filter-btn.active { border-color: var(--ink); color: var(--ink); background: var(--paper-mid); }

.shop__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--rule); gap: 1px;
}

.product-card {
  background: var(--paper); padding: 20px;
  display: flex; flex-direction: column;
  transition: background var(--t);
}
.product-card:hover { background: var(--paper-mid); }

.product-thumb {
  aspect-ratio: 1; background: var(--paper-mid);
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.product-thumb span {
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; color: var(--ink-faint);
}

.prod-cat {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 5px;
}
.prod-name {
  font-family: var(--mono); font-size: 13px; font-weight: 700;
  line-height: 1.35; margin-bottom: 8px;
}
.prod-price {
  font-family: var(--mono); font-size: 17px; font-weight: 700;
  margin-bottom: 14px; margin-top: auto;
}

.prod-add {
  width: 100%; font-family: var(--mono); font-size: 10px;
  font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase;
  padding: 10px; border: 1.5px solid var(--ink);
  background: none; cursor: pointer;
  transition: background var(--t), color var(--t);
}
.prod-add:hover,
.prod-add.added { background: var(--ink); color: var(--paper); }

/* ════════════════════════════════════
   CONTACT
════════════════════════════════════ */
.contact__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}

.contact__tagline {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--paper); font-style: italic;
  margin-bottom: 40px; line-height: 1.2;
}

.contact__meta { display: flex; flex-direction: column; gap: 20px; }
.contact__row { display: flex; flex-direction: column; gap: 4px; }
.clabel {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(242,237,227,0.3);
}
.contact__row span:not(.clabel) { font-size: 15px; color: rgba(242,237,227,0.65); }
.contact__row a { font-size: 15px; color: var(--paper); border-bottom: 1px solid rgba(242,237,227,0.2); display: inline; transition: border-color var(--t); }
.contact__row a:hover { border-color: var(--paper); }

.contact__form { display: flex; flex-direction: column; gap: 18px; }

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(242,237,227,0.3);
}
.form-field input,
.form-field textarea {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(242,237,227,0.12);
  padding: 12px 14px; font-family: var(--sans); font-size: 14px;
  color: var(--paper); outline: none; resize: vertical;
  transition: border-color var(--t);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(242,237,227,0.2); }
.form-field input:focus,
.form-field textarea:focus { border-color: rgba(242,237,227,0.35); }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(242,237,227,0.07);
  padding: 24px 0;
}
.footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.footer__logo {
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.10em; color: var(--paper);
}
.footer__slogan {
  font-family: var(--mono); font-size: 12px; font-style: italic;
  color: rgba(242,237,227,0.35);
}
.footer__copy {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em;
  color: rgba(242,237,227,0.25);
}

/* ─── TOAST ─── */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--ink); color: var(--paper);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em;
  padding: 12px 24px; opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none; z-index: 1000; white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1024px) {
  .shop__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .services__grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; }
  .service-card:nth-child(3),
  .service-card:nth-child(4) { border-bottom: 1px solid rgba(242,237,227,0.08); }
  .service-card:last-child { border-bottom: none; }
  .events__grid { grid-template-columns: 1fr; }
  .event-card__media--lg { height: 220px; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .shop__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 56px; }
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }

  .nav__links {
    display: none;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--rule);
    flex-direction: column; padding: 20px 24px;
    gap: 18px; align-items: flex-start;
  }
  .nav__links.open { display: flex; }
  .hamburger { display: flex; }
  .logo-name { display: none; }

  .hero__title { font-size: clamp(52px, 16vw, 100px); }

  .ep { grid-template-columns: 50px 1fr auto; gap: 12px; }

  .cart-drawer { width: 100%; border-left: none; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .shop__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { text-align: center; }
  .podcast__foot .btn { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker__track { animation: none; }
  .scroll-line { animation: none; }
}
