/* ═══════════════════════════════════════════════════════════
   home_1.css — Base + Desktop cinematic styles
   ═══════════════════════════════════════════════════════════ */

/* ── Reset / base ──────────────────────────────────────── */
:root {
  --intro-progress: 0;
  --gold: #b8935a;
  --brown: #0a5c3c;
  --bg: #0f0b06;
  --text: #f6edd7;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 760vh;
  touch-action: manipulation;
}

body.mirror-active {
  min-height: auto;
}

body.mirror-active .scroll-space {
  height: 0 !important;
  opacity: 0;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img, video {
  display: block;
  max-width: 100%;
}

/* ── Progress meter ────────────────────────────────────── */
.meter {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 70;
  width: min(320px, calc(100vw - 36px));
}

.meter-bar {
  width: 100%;
  height: 4px;
  overflow: hidden;
  background: rgba(10, 92, 60, 0.14);
  box-shadow: 0 0 0 1px rgba(10, 92, 60, 0.08);
}

.meter-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--brown) 0%, var(--gold) 100%);
  transition: width 0.08s linear;
}

.meter-label { display: none; }

/* ── Viewport / world ──────────────────────────────────── */
.viewport {
  position: fixed;
  inset: 0;
  overflow: hidden;
  contain: layout style paint;
  background:
    radial-gradient(circle at 12% 18%, rgba(10, 92, 60, 0.1), transparent 24%),
    radial-gradient(circle at 84% 22%, rgba(184, 147, 90, 0.12), transparent 26%),
    linear-gradient(180deg, #17110b 0%, var(--bg) 100%);
}

.viewport.mirror-active {
  position: static;
  height: auto;
  min-height: 100vh;
  overflow: visible;
  contain: none;
}

.viewport.mirror-active .world {
  position: relative;
}

/* ── Intro overlay ─────────────────────────────────────── */
.intro-overlay {
  position: absolute;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: calc(1 - (var(--intro-progress) * 0.82));
  will-change: opacity;
  backface-visibility: hidden;
}

.intro-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(176, 176, 176, 0.92) 0%, rgba(128, 128, 128, 0.88) 44%, rgba(78, 78, 78, 0.94) 100%);
  z-index: 0;
}

.intro-curtain {
  position: absolute;
  top: -6%;
  bottom: -6%;
  width: 52%;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(135deg, rgba(176, 176, 176, 0.9) 0%, rgba(128, 128, 128, 0.86) 44%, rgba(78, 78, 78, 0.92) 100%);
  opacity: calc(1 - (var(--intro-progress) * 0.16));
  will-change: transform, opacity;
  z-index: 1;
}

.intro-curtain::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
}

.intro-curtain-left {
  left: -2%;
  transform: translate3d(calc(-58vw * var(--intro-progress)), 0, 0);
  transform-origin: left center;
}

.intro-curtain-left::after { right: -34px; }

.intro-curtain-right {
  right: -2%;
  transform: translate3d(calc(58vw * var(--intro-progress)), 0, 0);
  transform-origin: right center;
}

.intro-curtain-right::after {
  left: -34px;
  transform: scaleX(-1);
}

.intro-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.4vw, 20px);
  padding: 0 clamp(24px, 5vw, 80px);
  overflow: hidden;
  z-index: 2;
  width: 100%;
}

.intro-word {
  display: inline-block;
  font-size: clamp(26px, 7.1vw, 104px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: #fffaf1;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
  will-change: transform, opacity;
}

.intro-word-theme {
  color: #000;
  text-shadow: 0 0 0.1em #fff, 0 0 0.25em #fff, 0 0 0.35em rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}

.intro-word-left {
  transform: translate3d(calc((-74vw - 140%) * var(--intro-progress)), calc(-3vh * var(--intro-progress)), 0)
    scale(calc(1 + (1.02 * var(--intro-progress))));
  transform-origin: center right;
  opacity: calc(1 - (0.26 * var(--intro-progress)));
}

.intro-word-right {
  transform: translate3d(calc((74vw + 140%) * var(--intro-progress)), calc(3vh * var(--intro-progress)), 0)
    scale(calc(1 + (1.02 * var(--intro-progress))));
  transform-origin: center left;
  opacity: calc(1 - (0.26 * var(--intro-progress)));
}

/* ── World container ───────────────────────────────────── */
.world {
  position: absolute;
  left: 0;
  top: 0;
  width: 3950px;
  height: 4050px;
  transform-origin: top left;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(10, 92, 60, 0.12), transparent 18%),
    radial-gradient(circle at 34% 42%, rgba(255, 245, 220, 0.05), transparent 22%),
    radial-gradient(circle at 76% 24%, rgba(184, 147, 90, 0.18), transparent 22%),
    radial-gradient(circle at 72% 78%, rgba(10, 92, 60, 0.08), transparent 28%),
    linear-gradient(180deg, #18120c 0%, var(--bg) 54%, #090704 100%);
}

.world::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0) 18%),
    radial-gradient(circle at 18% 18%, rgba(255, 244, 216, 0.05), transparent 18%),
    radial-gradient(circle at 88% 68%, rgba(10, 92, 60, 0.08), transparent 18%);
  pointer-events: none;
}

/* ── Ambient orbs ──────────────────────────────────────── */
.ambient-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.6;
}

.ambient-one {
  left: 140px; top: 340px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(10, 92, 60, 0.16), rgba(10, 92, 60, 0));
}

.ambient-two {
  left: 1880px; top: 1060px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255, 245, 220, 0.08), rgba(255, 245, 220, 0));
}

.ambient-three {
  left: 2920px; top: 2380px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(10, 92, 60, 0.12), rgba(10, 92, 60, 0));
}

/* ── Scene containers ──────────────────────────────────── */
.scene {
  position: absolute;
  content-visibility: auto;
  contain-intrinsic-size: 1500px 1000px;
}

.scene-hero {
  left: 180px; top: 130px;
  width: 1500px; height: 860px;
}

.scene-hosts {
  left: 220px; top: 980px;
  width: 1540px; height: 1180px;
}

.scene-podcasts {
  left: 1520px; top: 900px;
  width: 1560px; height: 1160px;
}

.scene-final {
  left: 2230px; top: 2150px;
  width: 1220px; height: 980px;
}

/* ── Shared copy blocks ────────────────────────────────── */
.copy-block {
  position: absolute;
  max-width: 560px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.copy-block::before {
  content: "";
  position: absolute;
  inset: -28px -30px;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 247, 226, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(16, 11, 7, 0.66), rgba(16, 11, 7, 0.18));
  opacity: 0.86;
  z-index: -1;
  pointer-events: none;
}

.mini-list {
  margin-top: 18px;
  display: grid;
  gap: 9px;
  font-size: 14px;
  color: rgba(246, 237, 215, 0.74);
  letter-spacing: 0.02em;
}

.mini-list div::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  background: linear-gradient(135deg, var(--brown), var(--gold));
  vertical-align: middle;
}

.copy-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold);
}

.copy-block h2 {
  margin: 0 0 14px;
  font-size: 42px;
  line-height: 1;
  color: #fff4d5;
  letter-spacing: -0.03em;
}

.copy-block p {
  margin: 0;
  font-size: 18px;
  line-height: 1.62;
  color: rgba(246, 237, 215, 0.86);
  max-width: 44ch;
}

/* ── Hero tile ─────────────────────────────────────────── */
.hero-tile {
  position: absolute;
  left: 0; top: 0;
  width: 1140px; height: 650px;
  padding: 74px 78px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.3);
}

.hero-assembly {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation-fill-mode: both;
}

.hero-assembly.active .hero-layer-bg {
  animation: heroLayerBgIn 1.1s linear 0s both;
}

.hero-assembly.active .hero-layer-man {
  animation: heroLayerManIn 1s cubic-bezier(0.22, 1, 0.36, 1) 1.6s both;
}

.hero-assembly.active .hero-layer-woman {
  animation: heroLayerWomanIn 1s cubic-bezier(0.22, 1, 0.36, 1) 3.1s both;
}

.hero-assembly.active .hero-layer-circle {
  animation: heroLayerCircleIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) 4.6s both;
}

.hero-tile::before,
.hero-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: opacity 0.85s ease, transform 1.1s ease;
  z-index: 0;
  pointer-events: none;
}

.hero-tile::before {
  background-image:
    linear-gradient(100deg, rgba(255, 248, 226, 0.92) 0%, rgba(255, 248, 226, 0.74) 34%, rgba(255, 248, 226, 0.18) 72%),
    linear-gradient(180deg, rgba(255, 248, 226, 0.08), rgba(255, 248, 226, 0)),
    url("../../hero1.png");
  opacity: 1;
  transform: scale(1);
}

.hero-tile::after {
  background-image: url("../../hero3bg.png");
  opacity: 0;
  transform: scale(1.05);
}

.hero-tile > * {
  position: relative;
  z-index: 2;
}

.hero-tile.show-hero3::before { opacity: 0; transform: scale(1.06); }
.hero-tile.show-hero3::after { opacity: 1; transform: scale(1); }

.hero-tile.show-hero4::before,
.hero-tile.show-hero4::after,
.hero-tile.show-hero4 .hero-hosts-layer {
  opacity: 0;
  transform: none;
  transition-delay: 0s;
}

.hero-tile.show-hero4 .hero4-video-layer { opacity: 1; }

.hero-hosts-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: url("../../hero3hosts.png") center bottom / cover no-repeat;
  opacity: 0;
  transform: translateY(56px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-tile.show-hero3 .hero-hosts-layer {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}

.hero4-video-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.8s ease;
}

.hero4-video-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(255, 248, 226, 0.9) 0%, rgba(255, 248, 226, 0.62) 34%, rgba(255, 248, 226, 0.18) 74%),
    linear-gradient(180deg, rgba(255, 248, 226, 0.1), rgba(255, 248, 226, 0));
}

.hero4-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy-wrap { max-width: 580px; }

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brown);
}

.hero-main-copy {
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-main-copy.is-leaving {
  opacity: 0;
  transform: translateY(-10px);
}

.hero-main-copy h1 {
  margin: 0 0 14px;
  font-size: 72px;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #201a10;
  max-width: 10ch;
}

.hero-main-copy p {
  margin: 0;
  font-size: 19px;
  line-height: 1.62;
  color: #3b2f13;
  max-width: 33ch;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: #201a10;
  background: linear-gradient(135deg, #d4b48a, var(--gold));
  box-shadow: 0 6px 18px rgba(184, 147, 90, 0.2);
}

.btn-ghost {
  color: #201a10;
  background: rgba(255, 248, 226, 0.7);
  box-shadow: 0 10px 26px rgba(28, 20, 10, 0.08);
}

/* ── Image panel / social / menu ───────────────────────── */
.image-panel {
  position: absolute;
  left: 970px; top: 74px;
  width: 410px; height: 320px;
  overflow: visible;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.24);
}

.image-panel::before {
  content: "";
  position: absolute;
  inset: -22px;
  background: radial-gradient(circle at 50% 50%, rgba(10, 92, 60, 0.12), rgba(10, 92, 60, 0));
  z-index: -1;
}

.image-panel img,
.host-panel img,
.gallery-panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-panel {
  position: absolute;
  left: 990px; top: 470px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  background: rgba(12, 9, 6, 0.82);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.social-panel a {
  width: 44px; height: 44px;
  display: inline-grid;
  place-items: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.social-panel a:hover {
  transform: translateY(-2px) scale(1.04);
  opacity: 1;
}

.social-panel img { width: 28px; height: 28px; }

.motion-menu {
  position: absolute;
  left: 930px; top: 640px;
  display: flex;
  gap: 14px;
}

.motion-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  background: rgba(10, 8, 6, 0.86);
  border: 1px solid rgba(10, 92, 60, 0.24);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* ── Hosts section ─────────────────────────────────────── */
.host-copy {
  left: 470px; top: 50px;
  max-width: 620px;
}

.host-visual { position: absolute; }

.host-panel {
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 28%, rgba(10, 92, 60, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(18, 13, 8, 0.18), rgba(18, 13, 8, 0.54));
  box-shadow: 0 34px 68px rgba(0, 0, 0, 0.28);
}

.host-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 5, 4, 0) 38%, rgba(6, 5, 4, 0.28) 100%);
  pointer-events: none;
}

.host-one {
  left: 110px; top: 350px;
  width: 385px; height: 560px;
}

.host-two {
  left: 640px; top: 260px;
  width: 385px; height: 560px;
}

.host-name {
  position: absolute;
  left: 0;
  top: calc(100% - 1px);
  width: 100%;
  padding: 14px 18px;
  text-align: center;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--gold);
  background: linear-gradient(180deg, rgba(32, 24, 14, 0.82), rgba(24, 18, 11, 0.92));
  border: 1px solid rgba(255, 248, 226, 0.14);
  border-top: 0;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  text-shadow: none;
  z-index: 3;
}

.host-tag {
  position: absolute;
  left: 1040px; top: 420px;
  width: 360px;
  padding: 20px 24px;
  background: rgba(14, 10, 7, 0.86);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.2);
}

.host-tag strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  color: #fff4d5;
  letter-spacing: -0.03em;
}

.host-tag span {
  color: rgba(246, 237, 215, 0.78);
  font-size: 15px;
  line-height: 1.55;
}

/* ── Podcasts section ──────────────────────────────────── */
.podcast-copy {
  left: 320px; top: 90px;
  max-width: 510px;
}

.more-episodes-cta {
  position: absolute;
  left: 760px; top: 168px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 20px;
  color: #1b150d;
  background: linear-gradient(135deg, #d4b48a, var(--gold));
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 16px 32px rgba(184, 147, 90, 0.2);
}

.podcast-card {
  position: absolute;
  width: 360px; height: 250px;
  overflow: hidden;
  background: #070707;
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.24);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.podcast-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 78px rgba(0, 0, 0, 0.34);
}

.podcast-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.podcast-card:hover img { transform: scale(1.08); }

.podcast-card .overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.68) 100%),
    linear-gradient(120deg, rgba(10, 92, 60, 0.08), rgba(10, 92, 60, 0));
}

.podcast-card .meta {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  z-index: 2;
}

.podcast-card .meta h3 {
  margin: 0 0 4px;
  font-size: 18px;
  color: #fff4d5;
  letter-spacing: -0.03em;
}

.podcast-card .meta p {
  margin: 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.podcast-1 { left: 260px; top: 350px; }
.podcast-2 { left: 700px; top: 500px; }
.podcast-3 { left: 1140px; top: 320px; }
.podcast-4 { left: 200px; top: 700px; }
.podcast-5 { left: 640px; top: 840px; }
.podcast-6 { left: 1080px; top: 680px; }

/* ── Final section ─────────────────────────────────────── */
.final-copy {
  left: 0; top: 450px;
  max-width: 420px;
}

.gallery-panel {
  position: absolute;
  left: 440px; top: 80px;
  width: 520px; height: 360px;
  overflow: hidden;
  box-shadow: 0 34px 72px rgba(0, 0, 0, 0.28);
}

.gallery-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.32));
}

.logo-panel {
  position: absolute;
  left: 930px; top: 160px;
  width: 240px; height: 240px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(10, 92, 60, 0.95), rgba(184, 147, 90, 0.92));
  box-shadow: 0 28px 58px rgba(10, 92, 60, 0.28);
}

.logo-panel img { width: 72%; object-fit: contain; }

.contact-panel {
  position: absolute;
  left: 520px; top: 540px;
  width: 620px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: -24px -28px;
  background:
    radial-gradient(circle at 24% 22%, rgba(10, 92, 60, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(12, 9, 6, 0.58), rgba(12, 9, 6, 0.18));
  z-index: -1;
}

.contact-panel h2 {
  margin: 0 0 14px;
  font-size: 34px;
  letter-spacing: -0.03em;
  color: #fff4d5;
}

.contact-panel p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.62;
  color: rgba(246, 237, 215, 0.82);
  max-width: 34ch;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-list a {
  padding: 11px 16px;
  background: rgba(11, 8, 5, 0.86);
  color: var(--text);
  border: 1px solid rgba(10, 92, 60, 0.2);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  font-weight: 700;
}

/* ── End stack / footer ────────────────────────────────── */
.end-stack {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transform: translateY(36px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.end-stack.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.end-stack.mirror-active {
  position: static;
  bottom: auto;
  z-index: auto;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  min-height: 100vh;
}

.end-stack.mirror-active .end-footer {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding: 64px 24px 80px;
  overflow: visible;
}

.end-footer {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 18%, rgba(10, 92, 60, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(14, 10, 7, 0.98) 0%, rgba(7, 5, 4, 1) 100%);
}

.end-footer-inner {
  width: min(940px, 92vw);
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  min-height: 0;
}

.end-footer-brand {
  display: flex;
  justify-content: center;
  position: relative;
}

.end-footer-brand::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: min(200px, 42vw);
  height: min(200px, 42vw);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(10, 92, 60, 0.22) 0%, rgba(10, 92, 60, 0.1) 34%, rgba(10, 92, 60, 0) 72%);
  animation: logoPulse 2.4s ease-in-out infinite;
}

.end-footer-brand img {
  position: relative;
  z-index: 1;
  width: min(160px, 36vw);
  object-fit: contain;
  animation: logoHeartbeat 2.4s ease-in-out infinite;
}

.end-footer p {
  margin: 0;
  color: rgba(246, 237, 215, 0.84);
  font-size: 1rem;
  line-height: 1.62;
}

.end-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 6px;
}

.end-footer-links a {
  padding: 11px 16px;
  border: 1px solid rgba(10, 92, 60, 0.22);
  background: rgba(10, 92, 60, 0.12);
  color: var(--text);
  font-weight: 700;
}

.mirror-collections {
  display: none;
  width: 100%;
  max-width: 940px;
  margin: 36px auto 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.end-stack.mirror-active .mirror-collections {
  display: block;
}

.mirror-collections-head {
  margin: 0 auto 18px;
  max-width: 720px;
  text-align: center;
}

.mirror-collections-head .copy-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(29, 217, 118, 0.12);
  color: #b9ffd9;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
}

.mirror-collections-head h3 {
  margin: 0 0 8px;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.05;
  color: #f7fde8;
}

.mirror-collections-head p {
  margin: 0;
  max-width: 68ch;
  color: rgba(246, 242, 221, 0.76);
  font-size: 1rem;
}

.mirror-collection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.mirror-collection-card {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(10, 92, 60, 0.16);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  transition: transform 0.32s ease, border-color 0.32s ease;
}

.mirror-collection-card:hover {
  transform: translateY(-6px);
  border-color: rgba(29, 217, 118, 0.38);
}

.mirror-collection-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.mirror-collection-copy {
  padding: 18px 16px 22px;
}

.mirror-collection-copy strong {
  display: block;
  font-size: 1rem;
  color: #ebffec;
  margin-bottom: 6px;
}

.mirror-collection-copy span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.02em;
  font-size: 0.94rem;
}

.mirror-collections-cta {
  display: inline-flex;
  margin: 28px auto 0;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1dd976 0%, #17b566 100%);
  color: #08140b;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.end-stack.mirror-active .end-footer {
  background: radial-gradient(circle at top, rgba(18, 88, 44, 0.22), transparent 22%),
    linear-gradient(180deg, rgba(5, 8, 4, 0.95) 0%, rgba(9, 13, 7, 1) 100%);
}

.end-stack.mirror-active .end-footer p,
.end-stack.mirror-active .end-footer-links,
.end-stack.mirror-active .end-footer-brand,
.end-stack.mirror-active .end-marquee {
  opacity: 0.55;
}

.end-stack.mirror-active .end-footer p {
  color: rgba(246, 242, 221, 0.68);
}

.end-stack.mirror-active .end-footer-links,
.end-stack.mirror-active .end-footer-brand,
.end-stack.mirror-active .end-marquee {
  pointer-events: none;
}

.end-marquee {
  width: 100vw;
  flex: 0 0 auto;
  overflow: hidden;
  padding: 18px 0;
  border-top: 0;
}

.end-marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  will-change: transform;
  animation: slidePartners 28s linear infinite;
}

.end-marquee-item {
  width: 130px; height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 0 6px;
}

.end-marquee-item img {
  width: auto; height: auto;
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  filter: brightness(0.98);
  background: transparent;
  margin: 0 auto;
}

.scroll-space {
  height: 760vh;
  opacity: 0;
  pointer-events: none;
  position: relative;
  z-index: -1;
}

/* ── Keyframes ─────────────────────────────────────────── */
@keyframes slidePartners {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes logoPulse {
  0%, 100% { opacity: 0.45; transform: translate(-50%, -50%) scale(0.92); }
  30% { opacity: 0.78; transform: translate(-50%, -50%) scale(1.06); }
  45% { opacity: 0.58; transform: translate(-50%, -50%) scale(0.98); }
  60% { opacity: 0.82; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes logoHeartbeat {
  0%, 100% { transform: scale(1); }
  30% { transform: scale(1.04); }
  45% { transform: scale(0.99); }
  60% { transform: scale(1.06); }
}

@keyframes heroLayerBgIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes heroLayerManIn {
  from { opacity: 0; transform: translateX(-9%); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes heroLayerWomanIn {
  from { opacity: 0; transform: translateX(9%); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes heroLayerCircleIn {
  from { opacity: 0; transform: translate(-7%, -11%); }
  to { opacity: 1; transform: translate(0, 0); }
}

/* ── Desktop responsive tweaks ─────────────────────────── */
@media (max-width: 1100px) {
  .hero-main-copy h1 { font-size: 64px; }
  .copy-block h2 { font-size: 36px; }
  .podcast-card { width: 330px; height: 230px; }
  .gallery-panel { width: 470px; height: 330px; }
  .logo-panel { width: 220px; height: 220px; }
}

/* ── Reduced motion ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
