/* ==========================================================================
   Enchantiya — Landing pages
   Brand palette derived from enchantiya.com
   ========================================================================== */
:root {
  --c-terracotta: #d35400;
  --c-terracotta-dark: #a8321c;
  --c-terracotta-deep: #7d2415;
  --c-red: #c0392b;
  --c-gold: #d4b06a;
  --c-gold-light: #f5d087;
  --c-gold-soft: #fff2dc;
  --c-teal: #108474;
  --c-teal-dark: #0c6558;
  --c-ink: #2b1a12;
  --c-ink-soft: #5a4a40;
  --c-cream: #fbf7f0;
  --c-cream-2: #f6ede0;
  --c-white: #ffffff;
  --c-line: rgba(43, 26, 18, 0.12);

  --font: "Oswald", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --maxw: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 45px -20px rgba(125, 36, 21, 0.45);
  --shadow-sm: 0 8px 24px -12px rgba(43, 26, 18, 0.35);

  --grad-warm: radial-gradient(120% 120% at 15% 10%, #e0632a 0%, #c0392b 45%, #8f2417 100%);
  --grad-warm-soft: linear-gradient(135deg, #fff7ec 0%, #fdeede 100%);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--c-ink);
  background: var(--c-cream);
  line-height: 1.6;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-terracotta); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-terracotta-dark); }
h1, h2, h3, h4 { font-weight: 600; line-height: 1.12; margin: 0 0 .5em; color: var(--c-ink); letter-spacing: .3px; }
h1 { font-size: clamp(2rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }

.container { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }
.narrow { max-width: 820px; margin-inline: auto; }
.center { text-align: center; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--c-ink); color: #fff; padding: .6rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.eyebrow {
  display: inline-block;
  font-size: .82rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--c-teal);
  background: rgba(16, 132, 116, 0.1);
  padding: .35rem .8rem; border-radius: 100px; margin-bottom: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--c-terracotta);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font); font-weight: 600; font-size: 1rem; letter-spacing: .5px;
  padding: .8rem 1.5rem; border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; line-height: 1;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(180deg, #e0632a, var(--c-terracotta));
  color: #fff; box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: linear-gradient(180deg, #e97236, var(--c-terracotta-dark)); color: #fff; }
.btn--ghost { background: transparent; color: var(--c-ink); border-color: var(--c-ink); }
.btn--ghost:hover { background: var(--c-ink); color: #fff; }
.btn--light { background: #fff; color: var(--c-terracotta-dark); box-shadow: var(--shadow-sm); }
.btn--light:hover { color: var(--c-terracotta-deep); }
.btn--phone { background: var(--c-teal); color: #fff; padding: .6rem 1.1rem; }
.btn--phone:hover { background: var(--c-teal-dark); color: #fff; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.08rem; }
.btn--xl { padding: 1.15rem 2.6rem; font-size: 1.3rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.topbar { background: var(--c-ink); color: #f3e7db; font-size: .82rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .45rem 0; }
.topbar a { color: var(--c-gold-light); }
.topbar__item:last-child { margin-left: auto; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(251, 247, 240, 0.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--c-line); }
.header__inner { display: flex; align-items: center; gap: 1.5rem; padding: .7rem 0; }
.header__logo img { height: 52px; width: auto; }
.header__nav { margin-left: auto; }
.nav-list { display: flex; gap: 1.4rem; list-style: none; }
.nav-list__item a {
  color: var(--c-ink); font-weight: 500; font-size: .98rem; letter-spacing: .4px;
  padding: .3rem 0; position: relative;
}
.nav-list__item a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--c-terracotta); transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.nav-list__item a:hover::after, .nav-list__item a.is-active::after { transform: scaleX(1); }
.nav-list__item a.is-active { color: var(--c-terracotta); }
.header__actions { display: flex; align-items: center; gap: .6rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 40px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { height: 3px; width: 100%; background: var(--c-ink); border-radius: 3px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav { background: var(--c-cream); border-bottom: 1px solid var(--c-line); }
.mobile-nav ul { list-style: none; padding: .5rem 1.2rem 1.2rem; }
.mobile-nav li a { display: block; padding: .85rem .2rem; color: var(--c-ink); font-weight: 500; font-size: 1.1rem; border-bottom: 1px solid var(--c-line); }
.mobile-nav__cta { margin-top: 1rem; }
.mobile-nav__cta a { border: 0 !important; padding: .95rem 1.4rem !important; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--grad-warm); color: #fff; overflow: hidden; padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background-image: radial-gradient(circle at 80% 20%, rgba(255,220,150,.25), transparent 40%),
                    radial-gradient(circle at 10% 90%, rgba(255,180,120,.2), transparent 45%);
  pointer-events: none;
}

/* Full-bleed background-image hero (dark key-art: subjects sit in the right half) */
.hero--bg { min-height: min(86vh, 720px); display: flex; align-items: center; background: #000; }
.hero--bg::before { display: none; } /* no warm glow over the black key-art */
.hero__bg { position: absolute; inset: 0; z-index: 0; margin: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: right center; display: block; }
/* Readability scrim — dark on the left (where text sits), fading out over the figurines */
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.9) 28%, rgba(0,0,0,.55) 48%, rgba(0,0,0,0) 72%),
    linear-gradient(0deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 30%);
}

/* Mobile-only image below the hero text (hidden on desktop) */
.hero__mobile-media { display: none; }

.hero__inner { position: relative; z-index: 2; }
.hero__content { max-width: 600px; }
.hero .eyebrow { color: #fff; background: rgba(255,255,255,.18); }
.hero__title { color: #fff; text-shadow: 0 4px 26px rgba(70,18,8,.55); }
.hero__title .hl { color: var(--c-gold-light); }
.hero__lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); font-weight: 300; color: #fff2e6; max-width: 42ch; text-shadow: 0 2px 14px rgba(70,18,8,.5); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.6rem 0 1.4rem; }
.hero__cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); }
.hero__cta .btn--ghost:hover { background: #fff; color: var(--c-terracotta-dark); }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.2rem; list-style: none; font-size: .92rem; font-weight: 300; color: #ffe9d6; text-shadow: 0 2px 12px rgba(70,18,8,.5); }
.hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; height: 60px; background: var(--c-cream); clip-path: ellipse(75% 100% at 50% 100%); z-index: 2; }

/* ---------- Sections ---------- */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section__head { max-width: 720px; margin: 0 auto 2.6rem; }
.section__head.center { margin-inline: auto; }
.section__sub { color: var(--c-ink-soft); font-weight: 300; font-size: 1.1rem; }
.section--intro { background: var(--c-white); }
.section--intro p { font-size: 1.18rem; font-weight: 300; color: var(--c-ink-soft); }

/* ---------- Process steps ---------- */
.section--process { background: var(--grad-warm-soft); }
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-bottom: 2.5rem; counter-reset: step; }
.step { background: #fff; border-radius: var(--radius); padding: 2rem 1.4rem 1.6rem; box-shadow: var(--shadow-sm); position: relative; border: 1px solid var(--c-line); }
.step__num {
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%;
  background: linear-gradient(180deg, #e0632a, var(--c-terracotta)); color: #fff;
  font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 1.15rem; }
.step p { color: var(--c-ink-soft); font-weight: 300; font-size: .98rem; margin: 0; }
/* Horizontal-scroll hint (shown only on mobile, see media query) */
.scroll-hint { display: none; }

/* ---------- Gallery — full-width horizontal scroller ---------- */
.section--gallery { background: var(--grad-warm-soft); overflow: hidden; }
.gallery-scroller { position: relative; margin-top: .5rem; }

.gallery-track {
  list-style: none; display: flex; gap: 1.1rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  /* gutter so the first/last card lines up with the page content */
  padding: .4rem clamp(1.2rem, calc((100vw - var(--maxw)) / 2 + 1.2rem), 22vw) 1.2rem;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  scroll-behavior: smooth;
}
.gallery-track::-webkit-scrollbar { display: none; }

.gallery-card {
  position: relative; flex: 0 0 auto; width: clamp(220px, 24vw, 300px);
  aspect-ratio: 2 / 3; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); scroll-snap-align: center; background: #1c0f0a;
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
@media (hover: hover) { .gallery-card:hover img { transform: scale(1.05); } }
.gallery-card__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.7rem .9rem .8rem;
  display: flex; flex-direction: column; gap: .05rem; line-height: 1.25;
  background: linear-gradient(transparent, rgba(35,12,6,.92));
}
.gallery-card__artist { color: #fff; font-weight: 600; font-size: 1.02rem; }
.gallery-card__song { color: var(--c-gold-light); font-weight: 300; font-size: .82rem; }

/* Prev / next navigation buttons (desktop) */
.gallery-nav {
  position: absolute; top: calc(50% - .6rem); transform: translateY(-50%); z-index: 5;
  width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer;
  background: #fff; color: var(--c-terracotta); box-shadow: var(--shadow);
  font-size: 1.9rem; line-height: 1; display: grid; place-items: center;
  transition: transform .15s ease, background .2s ease, color .2s ease, opacity .2s ease;
}
.gallery-nav:hover { background: var(--c-terracotta); color: #fff; }
.gallery-nav:active { transform: translateY(-50%) scale(.94); }
.gallery-nav--prev { left: clamp(.6rem, 3vw, 2rem); }
.gallery-nav--next { right: clamp(.6rem, 3vw, 2rem); }
.gallery-nav[hidden] { opacity: 0; pointer-events: none; }
.gallery-nav span { margin-top: -4px; }
@media (hover: none) { .gallery-nav { display: none; } }

.gallery-hint { justify-content: center !important; margin-top: .4rem !important; }

/* ---------- Product cards ---------- */
.section--products { background: var(--c-white); }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.card { background: var(--c-cream); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--c-line); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__media { aspect-ratio: 4 / 5; overflow: hidden; background: var(--c-cream-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.card__body { padding: 1.4rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.card__body p { color: var(--c-ink-soft); font-weight: 300; font-size: .98rem; }
.card__price { font-weight: 700; color: var(--c-terracotta); font-size: 1.25rem; margin: .2rem 0 .6rem; }
.card__body .btn { margin-top: auto; }

/* ---------- FAQ ---------- */
.section--faq { background: var(--grad-warm-soft); }
.faq { display: flex; flex-direction: column; gap: .8rem; }
.faq__item { background: #fff; border-radius: var(--radius-sm); border: 1px solid var(--c-line); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 1.1rem 3rem 1.1rem 1.3rem; font-weight: 500; font-size: 1.1rem;
  position: relative; color: var(--c-ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--c-terracotta); font-weight: 300; transition: transform .2s ease;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__answer { padding: 0 1.3rem 1.2rem; }
.faq__answer p { margin: 0; color: var(--c-ink-soft); font-weight: 300; }

/* ---------- CTA ---------- */
.section--cta { background: var(--grad-warm); color: #fff; }
.cta__title { color: #fff; }
.cta__lead { color: #ffe9d6; font-weight: 300; font-size: 1.2rem; max-width: 40ch; margin: 0 auto 1.8rem; }
.section--cta .btn--light { animation: pulse 2.4s ease-in-out infinite; }
.cta__note { margin-top: 1.2rem; color: #ffdcc0; font-weight: 300; font-size: .95rem; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.04); } }

/* ---------- Footer ---------- */
.site-footer { background: var(--c-ink); color: #d9c9bb; font-weight: 300; }
.footer__badges { background: var(--c-teal); }
.footer__badges-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.4rem 2.2rem; padding: 1rem 0; }
.footer__badge { color: #fff; font-weight: 500; font-size: .95rem; }
.footer__main { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; padding: 3rem 0 2.5rem; }
.footer__brand img { height: 58px; width: auto; margin-bottom: 1rem; }
.footer__tagline { max-width: 40ch; color: #c9b8a9; }
.footer__contact { display: flex; flex-direction: column; gap: .4rem; margin: 1.1rem 0; }
.footer__contact a, .footer__contact span { color: #ecdfd3; }
.footer__social { display: flex; gap: .7rem; }
.footer__social a { border: 1px solid rgba(255,255,255,.25); padding: .4rem 1rem; border-radius: 100px; color: #ecdfd3; font-size: .9rem; }
.footer__social a:hover { background: rgba(255,255,255,.1); }
.footer__col-title { color: #fff; font-size: 1.05rem; margin-bottom: .9rem; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer__col a { color: #cbbaac; }
.footer__col a:hover { color: var(--c-gold-light); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer__bottom-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; padding: 1.2rem 0; font-size: .88rem; color: #b0a093; }
.footer__legal { display: flex; gap: 1.2rem; list-style: none; }
.footer__legal a { color: #b0a093; }
.footer__legal a:hover { color: var(--c-gold-light); }

/* ---------- Quality / tech ---------- */
.section--quality { background: var(--c-white); }
.quality__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.quality__media img,
.quality__media video {
  display: block; width: 100%; height: auto;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1.4rem; }
.feature-list li { display: flex; gap: 1rem; align-items: flex-start; }
.feature-list__ic { font-size: 1.6rem; line-height: 1; flex: none; width: 48px; height: 48px; display: grid; place-items: center; background: var(--c-gold-soft); border-radius: 12px; }
.feature-list h3 { font-size: 1.12rem; margin: 0 0 .2rem; }
.feature-list p { margin: 0; color: var(--c-ink-soft); font-weight: 300; font-size: .98rem; }

/* ---------- Before / After compare slider ---------- */
.section--compare { background: var(--grad-warm-soft); }
.compare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.compare {
  position: relative; margin: 0; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); aspect-ratio: 1 / 1; background: #2a1712; isolation: isolate;
  user-select: none; touch-action: pan-y;
}
.compare__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.compare__reveal { position: absolute; inset: 0; width: 50%; overflow: hidden; will-change: width; }
.compare__reveal .compare__img { width: 100%; height: 100%; }
/* keep the "before" image sized to the full frame, not the clipped wrapper */
.compare__img--before { width: 100%; }
.compare__reveal { border-right: 3px solid #fff; }
.compare__handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 44px; transform: translateX(-50%);
  display: grid; place-items: center; pointer-events: none; z-index: 3;
}
.compare__handle::before { content: ""; position: absolute; top: 0; bottom: 0; width: 3px; background: #fff; box-shadow: 0 0 12px rgba(0,0,0,.4); }
.compare__handle::after {
  content: "⇆"; position: relative; width: 40px; height: 40px; border-radius: 50%;
  background: #fff; color: var(--c-terracotta); display: grid; place-items: center;
  font-size: 1.1rem; font-weight: 700; box-shadow: var(--shadow-sm);
}
.compare__range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; z-index: 4; }
.compare:focus-visible { outline: 3px solid var(--c-teal); outline-offset: 3px; }
.compare__tag {
  position: absolute; top: .7rem; z-index: 3; font-size: .75rem; font-weight: 600; letter-spacing: .5px;
  text-transform: uppercase; color: #fff; padding: .28rem .6rem; border-radius: 100px; backdrop-filter: blur(2px);
}
.compare__tag--before { left: .7rem; background: rgba(43,26,18,.7); }
.compare__tag--after { right: .7rem; background: rgba(16,132,116,.8); }
.compare__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 1.6rem .9rem .85rem;
  color: #fff; background: linear-gradient(transparent, rgba(40,15,8,.9));
  display: flex; flex-direction: column; gap: .1rem; line-height: 1.25;
}
.compare__artist { font-weight: 600; font-size: 1.05rem; }
.compare__song { font-weight: 300; font-size: .85rem; color: var(--c-gold-light); }

/* ---------- Collector boxes ---------- */
.section--boxes { background: var(--c-white); }
.boxes__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.boxes__media { order: 2; }
.boxes__media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.boxes__media--stack { display: flex; flex-direction: column; gap: 1rem; }
.feature-list--compact li { align-items: center; }
.feature-list--compact .feature-list__ic { width: 42px; height: 42px; font-size: 1.35rem; }
.boxes__content .btn { margin-top: 1.6rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .quality__inner, .boxes__inner { grid-template-columns: 1fr; }
  .quality__media { order: -1; max-width: 520px; margin-inline: auto; }
  .boxes__media { order: -1; max-width: 520px; margin-inline: auto; }
  .compare-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .header__nav { display: none; }
  .header__actions { margin-left: auto; }
  .nav-toggle { display: flex; }
  .btn--phone .btn__label { display: none; }
  .btn--phone { padding: .6rem .8rem; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); max-width: 620px; margin-inline: auto; }
  .footer__main { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .compare-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  /* Gallery cards edge-to-edge on phones, snapping through the collection. */
  .gallery-track { padding-inline: 1.1rem; gap: .9rem; scroll-padding-inline: 1.1rem; }
  .gallery-card { width: min(74vw, 320px); }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .topbar__item:first-child { display: none; }
  .cards { grid-template-columns: 1fr; max-width: 420px; }
  .footer__main { grid-template-columns: 1fr; }
  .footer__badges-inner { gap: .6rem 1.4rem; }
  .btn--xl { padding: 1rem 1.8rem; font-size: 1.1rem; }
}
/* Process steps: centered horizontal scroller with a swipe hint on mobile. */
@media (max-width: 760px) {
  .steps {
    display: grid; grid-auto-flow: column;
    grid-template-columns: none; grid-template-rows: none;
    grid-auto-columns: 82%; gap: 1rem;
    overflow-x: auto; scroll-snap-type: x mandatory;
    scroll-padding-inline: 9%; padding: .4rem 9% 1rem;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .steps::-webkit-scrollbar { display: none; }
  .step { scroll-snap-align: center; }
  .scroll-hint {
    display: flex; align-items: center; justify-content: flex-end; gap: .5rem;
    margin: 0 0 .7rem; color: var(--c-ink-soft);
    font-size: .82rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  }
  .scroll-hint__arrow {
    display: inline-flex; width: 28px; height: 28px; align-items: center; justify-content: center;
    background: var(--c-terracotta); color: #fff; border-radius: 50%; font-size: 1rem;
    box-shadow: var(--shadow-sm); animation: hintSlide 1.4s ease-in-out infinite;
  }
}
@keyframes hintSlide { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(6px); } }

/* Mobile hero: no background image — the key art is shown below the text instead. */
@media (max-width: 760px) {
  .hero--bg { min-height: 0; align-items: flex-start; padding-top: clamp(1.5rem, 7vw, 2.6rem); }
  .hero__bg, .hero__scrim { display: none; }
  .hero__content { max-width: 100%; }
  .hero__lead { max-width: none; }
  .hero__mobile-media {
    display: block; margin: 1.8rem 0 0;
    border-radius: var(--radius); overflow: hidden;
    box-shadow: 0 20px 44px -22px rgba(0,0,0,.8);
  }
  /* Crop to the right side so the figurines stay in view. */
  .hero__mobile-media img {
    width: 100%; height: auto; aspect-ratio: 4 / 3;
    object-fit: cover; object-position: right center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}
