/* ============================================================
   BUTTSNORKELERS.COM — cinema.css (v3)
   Scenes, video component system, product-card personality,
   running gags, share loop. Loads AFTER style.css and extends it.
   ============================================================ */

:root {
  --scene-dark: #120B05;
  --scene-ink: #0B1C24;          /* the lab */
  --scene-archive: #1C110A;      /* the archive */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --nav-h: 68px;
}
html { scroll-padding-top: 80px; }
body { -webkit-font-smoothing: antialiased; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---- NAV v3 ---- */
.nav { transition: box-shadow .3s, background .3s; }
.nav.is-scrolled { box-shadow: 0 4px 24px rgba(61,28,2,.45); }
.nav__inner { gap: 14px; }
.nav__links { gap: 22px; }
.nav__chapter {
  display: none; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); padding: 6px 12px; border: 1px solid rgba(255,186,8,.35); border-radius: 50px; white-space: nowrap;
}
@media (min-width: 1100px) { .nav__chapter { display: inline-block; } }
.nav__tools { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.sound-toggle {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.06);
  color: var(--sand); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: all .2s;
}
.sound-toggle svg { width: 18px; height: 18px; fill: currentColor; }
.sound-toggle .on { display: none; }
.sound-toggle.is-on { background: var(--orange-deep); border-color: var(--orange-deep); color: #fff; }
.sound-toggle.is-on .on { display: block; } .sound-toggle.is-on .off { display: none; }
.nav__burger {
  display: none; width: 44px; height: 44px; border: 0; background: transparent; color: var(--sand); cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav__burger span { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__menu { display: none; }
@media (max-width: 900px) {
  .nav__links, .btn--nav { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__menu {
    position: fixed; top: 56px; left: 0; right: 0; bottom: 0; background: rgba(61,28,2,.98); z-index: 99; padding: 24px;
    flex-direction: column; gap: 6px; overflow-y: auto;
  }
  .nav__menu.is-open { display: flex; }
  .nav__menu a { display: block; font-family: var(--font-bold); font-size: 34px; letter-spacing: 2px; color: var(--sand); padding: 12px 8px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav__menu a em { font-style: normal; color: var(--yellow); }
  .nav__menu a:hover { color: var(--yellow); }
  .nav__menu .btn { margin-top: 18px; font-size: 16px; }
  body.nav-open { overflow: hidden; }
}
/* the cart button injected by cart.js sits in the tools cluster on mobile too */
.bs-cart-btn { flex-shrink: 0; }

/* ---- SCENE SHELLS ---- */
.scene { position: relative; overflow: clip; }
.scene__label {
  display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 18px;
}
.scene__label::before { content: ''; width: 28px; height: 2px; background: var(--yellow); }
.scene--dark { background: var(--scene-dark); color: #fff; }
.scene--ink { background: var(--scene-ink); color: #fff; }
.scene--archive { background: var(--scene-archive); color: var(--sand); }
.scene--dark .section-title, .scene--ink .section-title, .scene--archive .section-title { color: #fff; }
.scene--dark .section-sub, .scene--ink .section-sub, .scene--archive .section-sub { color: rgba(255,255,255,.78); }
.scene__grain { position: absolute; inset: 0; pointer-events: none; opacity: .35; mix-blend-mode: overlay; background-size: 220px 220px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E"); }
.scene__grid { position: absolute; inset: 0; opacity: .22; pointer-events: none;
  background-image: linear-gradient(rgba(0,229,255,.25) 1px, transparent 1px), linear-gradient(90deg, rgba(0,229,255,.25) 1px, transparent 1px); background-size: 56px 56px; }
.scene__edge { position: absolute; left: 0; right: 0; height: 120px; pointer-events: none; z-index: 2; }
.scene__edge--top { top: 0; background: linear-gradient(180deg, var(--page-bg), transparent); }
.scene__edge--bottom { bottom: 0; background: linear-gradient(0deg, var(--page-bg), transparent); }
.scene--dark .scene__edge--top { background: linear-gradient(180deg, rgba(18,11,5,0), rgba(18,11,5,0)); }

/* two-column story layouts */
.story { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 48px; align-items: center; }
.story--flip { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.story--flip .story__copy { order: 2; }
.story__copy h2 { font-family: var(--font-display); font-size: clamp(34px, 3.6vw, 52px); line-height: 1.12; margin-bottom: 16px; }
.story__copy h2 em { font-style: normal; color: var(--yellow); }
.story__copy p { font-size: 17px; line-height: 1.7; margin-bottom: 14px; color: rgba(255,255,255,.86); }
.scene--page .story__copy p { color: var(--text-mid); }
.story__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.story__meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.pill { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 12px; border-radius: 50px; border: 1px solid rgba(255,255,255,.28); color: #fff; background: rgba(0,0,0,.35); }
.pill--gold { background: var(--yellow); color: var(--brown-deep); border-color: var(--yellow); }
.pill--neon { color: #00E5FF; border-color: rgba(0,229,255,.6); background: rgba(0,229,255,.08); }
.pill--red { background: #c1121f; border-color: #ff5c5c; }
@media (max-width: 900px) {
  .story, .story--flip { grid-template-columns: 1fr; gap: 24px; }
  .story--flip .story__copy { order: 0; }
}

/* ---- HERO v3 (the hook) ---- */
.hero { min-height: min(100vh, 900px); }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; background: rgba(61,28,2,.35); padding: 8px 14px; border-radius: 50px; backdrop-filter: blur(6px); }
.hero__eyebrow::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #ff3b3b; box-shadow: 0 0 0 4px rgba(255,59,59,.25); }
.hero__kicker { font-family: var(--font-bold); font-size: clamp(18px, 2vw, 26px); letter-spacing: 3px; color: var(--brown-deep); margin-bottom: 14px; }
.hero__kicker span { background: var(--yellow); padding: 2px 10px; border-radius: 6px; }
.hero__cta-group .btn { min-height: 52px; font-family: var(--font-bold); letter-spacing: 2px; font-size: 18px; }
/* hero CTAs sit on the sunset stripes, so the primary goes gold-on-brown (8.99:1) instead of orange-on-orange */
.hero .btn--primary { background: var(--yellow); color: var(--brown-deep); border-color: var(--yellow); }
.hero .btn--primary:hover { background: var(--gold); border-color: var(--gold); color: var(--brown-deep); }
.btn--dark { background: var(--brown-deep); color: var(--yellow); border-color: var(--brown-deep); }
.btn--dark:hover { background: #000; border-color: #000; transform: translateY(-2px); }
.hero__scroll {
  position: absolute; left: 50%; bottom: 96px; transform: translateX(-50%); z-index: 4;
  display: inline-flex; align-items: center; gap: 12px; white-space: nowrap;
  font-family: var(--font-bold); font-size: 18px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--yellow); background: rgba(30,13,1,.85); border: 1.5px solid rgba(255,186,8,.6);
  padding: 10px 22px 10px 24px; border-radius: 50px; box-shadow: 0 8px 24px rgba(61,28,2,.35);
}
.hero__scroll span {
  display: inline-block; width: 10px; height: 10px; margin: -4px 0 0; border-right: 2.5px solid var(--yellow); border-bottom: 2.5px solid var(--yellow);
  transform: rotate(45deg); animation: scroll-hint 1.4s ease-in-out infinite;
}
@keyframes scroll-hint { 0%, 100% { transform: translateY(-3px) rotate(45deg); opacity: .55 } 50% { transform: translateY(3px) rotate(45deg); opacity: 1 } } 100% { transform: scaleY(1); opacity: 0 } }
.hero__badge {
  position: absolute; right: -8px; top: -8px; z-index: 3; background: var(--brown-deep); color: var(--yellow); font-family: var(--font-bold); font-size: 15px; letter-spacing: 2px;
  padding: 8px 14px; border-radius: 50px; transform: rotate(8deg); box-shadow: 0 6px 18px rgba(0,0,0,.3);
}
@media (max-width: 900px), (max-height: 820px) { .hero__scroll { display: none; } }
@media (max-width: 900px) { .hero { min-height: auto; } .hero__inner { padding: 96px 20px 100px; } }

/* ---- BS VIDEO COMPONENT ---- */
.bs-video {
  position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000 center / cover no-repeat; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.45); isolation: isolate;
}
.bs-video--portrait { aspect-ratio: 9 / 16; max-height: 82vh; margin: 0 auto; }
.bs-video--edge { border-radius: 0; box-shadow: none; }
.bs-video__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }
.bs-video__ui { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; }
.bs-video__big {
  position: absolute; left: 50%; top: 50%; width: 84px; height: 84px; margin: -42px 0 0 -42px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(192,57,10,.94); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(0,0,0,.4); transition: transform .2s, opacity .25s;
}
.bs-video__big svg { width: 34px; height: 34px; margin-left: 4px; }
.bs-video__big:hover { transform: scale(1.06); }
.bs-video.is-playing .bs-video__big { opacity: 0; pointer-events: none; }
.bs-video:not(.is-playing) .bs-video__media { filter: brightness(.85); }
.bs-video__bar {
  display: flex; align-items: center; gap: 8px; padding: 12px 14px; background: linear-gradient(0deg, rgba(0,0,0,.7), rgba(0,0,0,0)); position: relative;
}
.bs-video__btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); background: rgba(0,0,0,.5); color: #fff; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; backdrop-filter: blur(6px); transition: background .2s, transform .15s; flex-shrink: 0;
}
.bs-video__btn svg { width: 18px; height: 18px; }
.bs-video__btn:hover { background: rgba(232,93,4,.9); transform: scale(1.06); }
.bs-video__btn:focus-visible, .bs-video__big:focus-visible, .sound-toggle:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }
.bs-video__sound[aria-pressed="true"] { background: var(--orange-deep); border-color: var(--orange-deep); }
.bs-video__progress { flex: 1; height: 4px; background: rgba(255,255,255,.25); border-radius: 4px; overflow: hidden; min-width: 40px; }
.bs-video__fill { display: block; width: 100%; height: 100%; background: var(--yellow); transform: scaleX(0); transform-origin: left; }
.bs-video__title { display: none; font-family: var(--font-bold); font-size: 15px; letter-spacing: 1.5px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 30%; }
@media (min-width: 760px) { .bs-video__title { display: block; } }
.bs-video__share { width: auto; border-radius: 50px; padding: 0 14px 0 10px; gap: 8px; font-family: var(--font-bold); letter-spacing: 1.5px; font-size: 14px; }
.bs-video__share span { display: none; }
@media (min-width: 560px) { .bs-video__share span { display: inline; } }
.bs-video__rail { position: absolute; left: 12px; top: 12px; z-index: 3; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; max-width: calc(100% - 24px); }
.bs-video__rail-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); background: rgba(0,0,0,.55); padding: 6px 10px; border-radius: 50px; }
.bs-video__product {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: #fff; background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.28);
  padding: 6px 12px; border-radius: 50px; backdrop-filter: blur(6px); transition: background .2s; white-space: nowrap;
}
.bs-video__product:hover { background: var(--orange-deep); border-color: var(--orange-deep); }
.bs-video__caption { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 12px; text-align: center; font-style: italic; }
/* no-JS fallback: plain poster + link */
.bs-video:not(.bs-video--ready) .bs-video__product { position: relative; margin: 8px; }
.bs-video__noscript { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; }
.bs-video--ready .bs-video__noscript { display: none; }

/* ---- PROMO SCENE (the existing video, now a component) ---- */
.scene--promo { background: var(--brown-deep); padding: 0 0 72px; }
.scene--promo .bs-video { border-radius: 0 0 var(--radius-xl) var(--radius-xl); max-width: 1200px; margin: 0 auto; }
@media (max-width: 900px) { .scene--promo .bs-video { border-radius: 0; } }
.scene--promo .bs-video__caption { color: rgba(255,255,255,.8); }

/* ---- MANIFESTO / TICKER ---- */
.ticker { overflow: hidden; border-top: 2px solid var(--orange-deep); border-bottom: 2px solid var(--orange-deep); background: var(--yellow); color: var(--brown-deep); }
.ticker__track { display: flex; gap: 0; width: max-content; animation: ticker 32s linear infinite; }
.ticker__item { font-family: var(--font-bold); font-size: 22px; letter-spacing: 3px; padding: 12px 28px; white-space: nowrap; }
.ticker__item::after { content: '◆'; margin-left: 28px; color: var(--orange-deep); font-size: 12px; vertical-align: middle; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.manifesto { text-align: center; max-width: 900px; margin: 0 auto; }
.manifesto h2 { font-family: var(--font-bold); font-size: clamp(44px, 8vw, 132px); line-height: .92; letter-spacing: 1px; color: var(--headline); }
.manifesto h2 em { font-style: normal; color: var(--accent); }
.manifesto p { font-size: 18px; color: var(--text-mid); margin: 22px auto 0; max-width: 620px; line-height: 1.7; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-top: 48px; }
.stat { background: var(--card-bg); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 22px 18px; text-align: center; box-shadow: var(--shadow-card); }
.stat b { display: block; font-family: var(--font-bold); font-size: 44px; line-height: 1; color: var(--accent); letter-spacing: 1px; }
.stat span { display: block; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-mid); margin-top: 8px; }
.stat small { display: block; font-size: 11px; color: var(--text-mid); opacity: .7; margin-top: 6px; font-style: italic; }

/* ---- PRODUCT CARD PERSONALITY ---- */
.product-card { position: relative; }
.product-card__spec { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-mid); opacity: .75; margin: -10px 0 16px; }
.product-card__spec::before { content: '⚗ '; }
.product-card__footer { gap: 10px; flex-wrap: wrap; }
.btn--quick { background: var(--brown-deep); color: var(--yellow); border-color: var(--brown-deep); font-family: var(--font-bold); letter-spacing: 1.5px; font-size: 14px; }
.btn--quick:hover { background: var(--btn-bg-hover); border-color: var(--btn-bg-hover); color: var(--btn-fg); transform: translateY(-2px); }
.btn--quick:disabled { opacity: .7; transform: none; }
.product-card.is-filtered-out { display: none; }
.product-card__img { aspect-ratio: 4 / 3; }
.product-card__img img { height: 100%; }
.product-card__hover {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 16px; background: linear-gradient(0deg, rgba(61,28,2,.85), transparent 60%);
  opacity: 0; transition: opacity .25s; pointer-events: none;
}
.product-card__hover span { font-family: var(--font-display); color: var(--yellow); font-size: 20px; text-shadow: 0 2px 0 rgba(0,0,0,.4); }
.product-card:hover .product-card__hover, .product-card:focus-within .product-card__hover { opacity: 1; }
@media (hover: none) { .product-card__hover { display: none; } }
.products-grid--featured { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.shop-filters { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin: -32px 0 40px; }
.shop-filters button {
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 10px 16px; border-radius: 50px; cursor: pointer;
  border: 2px solid var(--border); background: var(--card-bg); color: var(--text-mid); transition: all .2s;
}
.shop-filters button:hover { border-color: var(--accent); color: var(--accent); }
.shop-filters button.is-active { background: var(--btn-bg); border-color: var(--btn-bg); color: var(--btn-fg); }
.trust-row { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; margin-top: 40px; font-size: 13px; font-weight: 600; color: var(--text-mid); }
.trust-row span::before { content: '✓ '; color: var(--accent); }

/* ---- FAKE SCIENCE ---- */
.fake-chart { background: rgba(0,0,0,.35); border: 1px solid rgba(0,229,255,.35); border-radius: var(--radius-lg); padding: 22px 22px 16px; }
.fake-chart__title { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #00E5FF; margin-bottom: 18px; }
.fake-chart__bars { display: flex; align-items: flex-end; gap: 18px; height: 160px; }
.fake-chart__bar { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; height: 100%; }
.fake-chart__bar i { display: block; width: 100%; background: linear-gradient(180deg, #00E5FF, #1B7A8C); border-radius: 6px 6px 0 0; transform: scaleY(0); transform-origin: bottom; transition: transform .9s var(--ease-out); height: var(--h, 40%); }
.fake-chart__bar--hot i { background: linear-gradient(180deg, var(--yellow), var(--orange)); }
.fake-chart__bar.is-on i { transform: scaleY(1); }
.fake-chart__bar span { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #fff; margin-top: 8px; }
.fake-chart__note { font-size: 11px; color: rgba(255,255,255,.55); margin-top: 12px; font-style: italic; }
.trial-list { list-style: none; margin: 18px 0 0; display: grid; gap: 8px; }
.trial-list li { display: grid; grid-template-columns: 64px 1fr; gap: 12px; align-items: center; padding: 10px 14px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; font-size: 14px; }
.trial-list b { font-family: var(--font-bold); font-size: 22px; letter-spacing: 1px; color: #00E5FF; }
.trial-list li.cancelled b { color: #FF4D4D; }

/* ---- WATCH / THE LAB ---- */
.watch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.watch-card { display: block; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); overflow: hidden; color: #fff; transition: transform .25s, border-color .25s; }
.watch-card:hover { transform: translateY(-6px); border-color: var(--yellow); }
.watch-card__thumb { position: relative; aspect-ratio: 16 / 9; background: #000 center / cover no-repeat; }
.watch-card__thumb::after { content: '▶'; position: absolute; left: 50%; top: 50%; width: 52px; height: 52px; margin: -26px 0 0 -26px; border-radius: 50%; background: rgba(192,57,10,.94); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; padding-left: 4px; }
.watch-card__body { padding: 16px 18px 18px; }
.watch-card__series { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); }
.watch-card__title { font-family: var(--font-bold); font-size: 22px; letter-spacing: 1px; margin: 6px 0 6px; line-height: 1.05; }
.watch-card__desc { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.5; }
.watch-card__meta { display: flex; gap: 10px; margin-top: 12px; font-size: 11px; color: rgba(255,255,255,.55); letter-spacing: 1px; text-transform: uppercase; }
.social-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 28px; }
.social-row a { display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; border-radius: 50px; border: 1px solid rgba(255,255,255,.25); color: #fff; font-weight: 700; font-size: 13px; letter-spacing: 1px; transition: all .2s; }
.social-row a:hover { background: var(--orange-deep); border-color: var(--orange-deep); }
.brad-card { display: grid; grid-template-columns: 120px 1fr; gap: 20px; align-items: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 40px; }
.brad-card img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 4px solid var(--yellow); }
.brad-card h3 { font-family: var(--font-display); font-size: 26px; color: var(--yellow); margin-bottom: 4px; }
.brad-card p { font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.6; }
@media (max-width: 560px) { .brad-card { grid-template-columns: 1fr; text-align: center; justify-items: center; } }

/* ---- LIFESTYLE SCENE ---- */
.scene--lifestyle { background: #000; color: #fff; padding: 0; }
.scene--lifestyle .bs-video { border-radius: 0; box-shadow: none; aspect-ratio: 16 / 9; max-height: 92vh; }
.scene--lifestyle .bs-video__media { object-fit: cover; }
.lifestyle__copy { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 64px 24px 88px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: end; }
.lifestyle__copy h2 { font-family: var(--font-bold); font-size: clamp(48px, 7vw, 120px); line-height: .9; letter-spacing: 1px; }
.lifestyle__copy h2 em { font-style: normal; color: var(--yellow); }
.lifestyle__copy p { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.85); }
.lifestyle__list { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 24px; }
.lifestyle__list span { font-family: var(--font-bold); font-size: 16px; letter-spacing: 2px; padding: 8px 14px; border: 1px solid rgba(255,255,255,.3); border-radius: 50px; }
@media (max-width: 900px) { .lifestyle__copy { grid-template-columns: 1fr; padding: 40px 20px 64px; } }

/* ---- SHARE / VIRAL LOOP ---- */
.share-strip { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.btn--share { background: transparent; color: inherit; border-color: currentColor; font-family: var(--font-bold); letter-spacing: 2px; font-size: 15px; }
.btn--share:hover { background: var(--yellow); color: var(--brown-deep); border-color: var(--yellow); transform: translateY(-2px); }
.bs-toast {
  position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 20px); z-index: 500; background: var(--brown-deep); color: var(--yellow); font-weight: 700; font-size: 14px;
  padding: 12px 20px; border-radius: 50px; box-shadow: 0 10px 30px rgba(0,0,0,.4); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; max-width: 92vw; text-align: center;
}
.bs-toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* ---- RUNNING GAGS ---- */
.gag {
  position: fixed; right: 16px; bottom: 16px; z-index: 450; width: min(360px, calc(100vw - 32px)); background: #fff; color: var(--brown-deep); border-radius: 16px; padding: 16px 44px 16px 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,.35); border-left: 6px solid var(--orange); transform: translateY(20px); opacity: 0; transition: transform .35s var(--ease-out), opacity .3s;
}
.gag.is-on { transform: translateY(0); opacity: 1; }
.gag__badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #fff; background: var(--orange-deep); padding: 4px 8px; border-radius: 50px; margin-bottom: 8px; }
.gag--cso { border-left-color: #c1121f; } .gag--cso .gag__badge { background: #c1121f; }
.gag--gary { border-left-color: var(--teal); } .gag--gary .gag__badge { background: var(--teal); }
.gag p { font-size: 14px; line-height: 1.5; margin: 0; }
.gag small { display: block; margin-top: 8px; font-size: 11px; color: var(--text-mid); font-style: italic; }
.gag__close { position: absolute; right: 8px; top: 8px; width: 30px; height: 30px; border: 0; background: transparent; font-size: 22px; cursor: pointer; color: var(--text-mid); }
.memo { background: #fff; color: var(--brown-deep); border-radius: 12px; padding: 22px 24px; box-shadow: var(--shadow-card); position: relative; transform: rotate(-1.5deg); font-size: 14px; line-height: 1.6; max-width: 420px; }
.memo::before { content: 'MEMO'; position: absolute; top: -12px; left: 18px; background: #c1121f; color: #fff; font-family: var(--font-bold); letter-spacing: 3px; font-size: 12px; padding: 4px 10px; border-radius: 4px; }
.memo b { display: block; font-family: var(--font-bold); font-size: 20px; letter-spacing: 1px; margin-bottom: 6px; }
.memo small { display: block; margin-top: 10px; font-style: italic; color: var(--text-mid); }
.footer__disclaimer { font-size: 12px; color: rgba(255,255,255,.55); font-style: italic; margin-top: 10px; }

/* ---- REVEAL (overrides style.css — reduced motion aware) ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__sticker-wrap, .ticker__track, .hero__scroll span { animation: none !important; }
  html { scroll-behavior: auto; }
  .product-card, .watch-card, .btn { transition: none; }
}

/* ---- MOBILE: thumb-first ---- */
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }
  .products-grid { gap: 16px; }
  .product-card__body { padding: 18px; }
  .product-card__footer .btn { min-height: 46px; flex: 1; justify-content: center; }
  .story__ctas .btn { flex: 1; justify-content: center; min-height: 50px; }
  .bs-video { border-radius: var(--radius); }
  .bs-video__bar { padding: 10px; }
  .manifesto h2 { font-size: clamp(40px, 13vw, 72px); }
  .shop-filters { margin-top: -12px; overflow-x: auto; justify-content: flex-start; flex-wrap: nowrap; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
  .shop-filters button { flex-shrink: 0; }
  .lifestyle__copy h2 { font-size: clamp(44px, 14vw, 72px); }
}
