:root {
  --red: #85070f;
  --red-deep: #7c0000;
  --red-soft: #841218;
  --black: #000000;
  --charcoal: #201f1e;
  --dark: #2d2c2b;
  --gray: #ededed;
  --gray-2: #e4e4e4;
  --stone: #e7e6e6;
  --white: #ffffff;
  --muted: #555555;
  --money: #e10600;
  --gold-soft: #d4b483;
  --link: #0562c1;
  --pinkish: #c4a4a4;
  --serif: "Cormorant Garamond", Cambria, "Times New Roman", Times, serif;
  --sans: Calibri, "Source Sans 3", Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.45;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.center { text-align: center; }

/* Typography helpers matching slides */
.h-serif {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.h-red { color: var(--red); }
.h-white { color: var(--white); }

.title-box {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.2;
  text-transform: uppercase;
  padding: 0.7rem 1.1rem;
}

.label-box {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 0.8rem;
  margin-bottom: 0.65rem;
}

.label-box--black {
  background: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 1.2rem 0 1.8rem;
  font-size: 0.95rem;
}

/* Top bar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

.topbar__logo {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.topbar__logo span {
  color: var(--red);
  font-style: italic;
  font-weight: 600;
  text-transform: none;
}

.topbar__nav {
  display: flex;
  gap: 1.4rem;
  font-size: 0.95rem;
}

.topbar__nav a:hover { color: var(--red); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn--red {
  background: var(--red);
  color: var(--white);
}

.btn--red:hover { background: var(--red-deep); }

.btn--dark {
  background: var(--charcoal);
  color: var(--white);
}

.btn--dark:hover { background: var(--black); }

.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}

.btn--ghost-white:hover {
  background: rgba(255,255,255,0.1);
}

/* Shared sections */
.section { padding: 0 0 4.5rem; }
.section--white { background: var(--white); padding-top: 0; }
.section--stone { background: var(--stone); padding-top: 0; padding-bottom: 4.5rem; }
.section--black { background: var(--black); color: var(--white); padding: 4.5rem 0; }
.section--dark { background: var(--charcoal); color: var(--white); padding: 4.5rem 0; }
.slide-red { background: var(--red); color: var(--white); }

.banner-red {
  background: var(--red);
  color: var(--white);
  padding: 1.4rem 0;
  margin-bottom: 2.2rem;
}

.banner-red h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  text-transform: uppercase;
  line-height: 1.2;
}

/* ========== SLIDE 1 HERO ========== */
.hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  overflow: hidden;
  background: var(--red);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.hero__eyebrow {
  margin: 0 0 1.2rem;
  font-family: var(--sans);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}

.hero__title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.hero__tag {
  margin: 1rem 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
}

.hero__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 3rem auto 0;
  max-width: 980px;
  text-align: left;
}

.hero-card {
  background: var(--charcoal);
  border-radius: 10px;
  padding: 1.3rem 1.15rem 1.15rem;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-card strong {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-card span {
  margin-top: 0.7rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
}

.hero__cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.live-marquee {
  background: var(--black);
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.85rem 0;
}

.live-marquee__track {
  display: flex;
  width: max-content;
  gap: 1.1rem;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
  padding-inline: 1rem;
}

.live-marquee__track span:nth-child(odd) {
  color: rgba(255,255,255,0.92);
}

.live-marquee__track span:nth-child(even) {
  color: rgba(255,255,255,0.35);
}

/* Vision: sold out from behind */
.vision {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}

.vision__media {
  position: absolute;
  inset: 0;
}

.vision__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1);
  transition: transform 5.5s ease-out;
  will-change: transform;
}

.vision.is-ovation .vision__media img {
  transform: scale(1.08);
  transition-duration: 5.5s;
}

.vision__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 6, 8, 0.88) 0%, rgba(10, 6, 8, 0.45) 48%, rgba(10, 6, 8, 0.2) 100%),
    linear-gradient(180deg, rgba(10, 6, 8, 0.15) 0%, rgba(10, 6, 8, 0.75) 100%);
}

.vision__inner {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4.5rem;
  max-width: 640px;
  margin-left: max(1.25rem, calc((100% - 1120px) / 2));
  margin-right: auto;
  width: min(640px, calc(100% - 2.5rem));
}

.vision__kicker {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: #d4b483;
}

.vision__title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.vision__title em {
  font-style: italic;
  color: #f0d2a0;
  font-weight: 600;
}

.vision__lead {
  margin: 1.1rem 0 1.5rem;
  font-size: 1.12rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
  max-width: 32rem;
}

.vision__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.vision__hint {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 245, 230, 0.88);
  animation: hint-nudge 1.8s ease-in-out infinite;
}

@keyframes hint-nudge {
  0%, 100% { opacity: 0.75; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(3px); }
}

.btn--gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, #f0d2a0 0%, #d4b483 100%);
  color: #1a1008;
  border-color: transparent;
  font-weight: 700;
  text-align: center;
  white-space: normal;
  line-height: 1.35;
  max-width: 22rem;
  box-shadow: 0 0 0 0 rgba(240, 210, 160, 0.45);
  transition: transform 0.25s ease, box-shadow 0.35s ease, background 0.25s ease;
  animation: ovation-idle 2.2s ease-out infinite;
}

.btn--gold .btn__tap {
  flex: 0 0 auto;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  background: rgba(26, 16, 8, 0.12);
  line-height: 1;
}

.btn--gold .btn__label {
  flex: 1 1 auto;
}

.btn--gold:hover {
  background: linear-gradient(135deg, #f7e0b8 0%, #e0c294 100%);
  color: #1a1008;
  transform: translateY(-1px);
}

.btn--gold.is-playing {
  box-shadow: 0 0 0 10px rgba(240, 210, 160, 0);
  animation: ovation-pulse 1.1s ease-out infinite;
}

.btn--gold.is-playing .btn__tap {
  background: rgba(26, 16, 8, 0.2);
}

@keyframes ovation-idle {
  0% { box-shadow: 0 0 0 0 rgba(240, 210, 160, 0.5); transform: scale(1); }
  55% { box-shadow: 0 0 0 14px rgba(240, 210, 160, 0); transform: scale(1.02); }
  100% { box-shadow: 0 0 0 0 rgba(240, 210, 160, 0); transform: scale(1); }
}

@keyframes ovation-pulse {
  0% { box-shadow: 0 0 0 0 rgba(240, 210, 160, 0.55); }
  70% { box-shadow: 0 0 0 18px rgba(240, 210, 160, 0); }
  100% { box-shadow: 0 0 0 0 rgba(240, 210, 160, 0); }
}

.vision__flash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(ellipse at 55% 40%, rgba(240, 210, 160, 0.35), transparent 55%),
    linear-gradient(180deg, transparent 35%, rgba(240, 210, 160, 0.16) 100%);
  transition: opacity 0.35s ease;
}

.vision.is-ovation .vision__flash {
  opacity: 1;
  animation: ovation-glow 0.85s ease-in-out 4;
}

.vision.is-ovation .vision__title em {
  text-shadow: 0 0 32px rgba(240, 210, 160, 0.65);
}

@keyframes ovation-glow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.btn--light {
  background: #fff;
  color: var(--ink, #14171c);
  border-color: #fff;
}

.btn--light:hover {
  background: #f0d2a0;
  border-color: #f0d2a0;
  color: #14171c;
}

/* ========== SLIDE 2 FIT ========== */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.fit-card {
  background: var(--gray);
  border-radius: 10px;
  padding: 1.35rem 1.25rem 1.4rem;
  min-height: 180px;
}

.fit-card__n {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.55rem;
}

.fit-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--sans);
  font-size: 1.12rem;
  font-weight: 700;
}

.fit-card p {
  margin: 0;
  color: #222;
  font-size: 0.95rem;
}

.fit-card--quote .fit-card__quote {
  margin: 0 0 0.85rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--red);
  line-height: 1.25;
}

/* ========== SLIDE 3 FORMATS ========== */
.formats { padding: 0; }
.formats__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 640px;
}

.formats__content {
  padding: 3.5rem clamp(1.25rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.formats__lead {
  margin: 1.2rem 0 1.6rem;
  max-width: 34rem;
  color: rgba(255,255,255,0.86);
  font-size: 1.05rem;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  max-width: 560px;
}

.pill-grid span {
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}

.pill-grid .is-hot {
  background: var(--red);
  border-color: var(--red);
}

.formats__promise {
  margin: 2rem 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.25rem;
  max-width: 28rem;
  color: rgba(255,255,255,0.92);
}

.formats__photo {
  overflow: hidden;
  background: #111;
}

.formats__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
}

/* Gallery */
.gallery {
  background: var(--stone);
  padding: 1rem 0;
  overflow: hidden;
}

.gallery__track {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  animation: marquee 40s linear infinite;
  padding-inline: 0.75rem;
}

.gallery__track img {
  width: 220px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== SLIDE 5 CONCEPT ========== */
.concept-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.concept-card {
  background: var(--gray-2);
  border-radius: 12px;
  padding: 1.35rem 1.25rem 1.5rem;
}

.concept-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
}

.concept-card__icon svg {
  width: 20px;
  height: 20px;
}

.concept-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--red);
  line-height: 1.2;
}

.concept-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #222;
}

#concept { padding-top: 4rem; }

/* ========== SLIDE 6 PRODUCER ========== */
.producer {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  background: var(--stone);
  min-height: 640px;
}

.producer__text {
  padding: 4rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.name-box {
  margin: 0 0 1.3rem;
  display: inline-block;
  align-self: flex-start;
  background: var(--red);
  color: var(--white);
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  padding: 0.45rem 0.95rem;
  line-height: 1.1;
}

.producer__role {
  margin: 0 0 1.4rem;
  font-weight: 700;
  max-width: 34rem;
}

.producer ul {
  display: grid;
  gap: 0.7rem;
}

.producer li {
  position: relative;
  padding-left: 1.1rem;
}

.producer li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--black);
}

.producer__photo {
  overflow: hidden;
  background: #111;
}

.producer__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  min-height: 520px;
}

/* ========== SLIDE 7 SCHEDULE ========== */
.schedule {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  padding-top: 4rem;
  align-items: start;
}

.diploma-block {
  background: var(--gray);
  border-radius: 12px;
  padding: 1.2rem;
}

.diploma-block img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.diploma-block p {
  margin: 0;
  font-size: 0.98rem;
}

.schedule__sub {
  margin: 0.7rem 0 1.6rem;
  color: var(--muted);
}

.meet { display: grid; gap: 0.85rem; }

.meet__item {
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 0.9rem;
  background: var(--gray);
  border-radius: 10px;
  padding: 1.1rem 1.15rem;
}

.meet__day {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--red);
}

.meet__item h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.meet__item p {
  margin: 0;
  color: #333;
  font-size: 0.95rem;
}

/* ========== SLIDE 8 PROGRAM ========== */
#program { padding: 4rem 0 4.5rem; }

.program-sub {
  margin: 0.5rem 0 2rem;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

.weeks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.week-card {
  background: var(--charcoal);
  border-radius: 12px;
  padding: 1.6rem 1.35rem 1.7rem;
  min-height: 360px;
}

.week-card__head {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  color: var(--pinkish);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.week-card__num {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--pinkish);
}

.week-card h3 {
  margin: 0 0 1.1rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
}

.week-card ul { display: grid; gap: 0.55rem; }

.week-card li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}

.week-card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--pinkish);
}

/* ========== SLIDE 9 VENUE ========== */
.venue-head {
  max-width: 42rem;
  margin: 0 0 1.8rem;
  padding-top: 1rem;
}

.venue__lead { margin: 1rem 0 0.6rem; font-size: 1.1rem; }
.venue__addr {
  margin: 1rem 0 1rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--red);
}

.venue-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 220px 220px 240px;
  gap: 0.7rem;
  margin: 0;
}

.venue-mosaic__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #111;
}

.venue-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.venue-mosaic__item:hover img {
  transform: scale(1.05);
}

.venue-mosaic__item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.4rem 0.85rem 0.7rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.venue-mosaic__item--hero {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}

.venue-mosaic__item:nth-child(2) { grid-column: 3; grid-row: 1; }
.venue-mosaic__item:nth-child(3) { grid-column: 3; grid-row: 2; }
.venue-mosaic__item:nth-child(4) { grid-column: 1; grid-row: 3; }
.venue-mosaic__item:nth-child(5) { grid-column: 2 / span 2; grid-row: 3; }

/* ========== SLIDE 10 STUDIO ========== */
.studio {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.studio__lead {
  margin: 1rem 0 1.5rem;
  color: rgba(255,255,255,0.85);
  max-width: 34rem;
}

.studio__list {
  display: grid;
  gap: 0.7rem;
}

.studio__list li {
  padding: 0.7rem 0.9rem;
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--red);
  color: rgba(255,255,255,0.92);
}

.studio__list b {
  color: #fff;
}

.studio__photo {
  border-radius: 12px;
  overflow: hidden;
  min-height: 360px;
}

.studio__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

/* ========== SLIDE 11 VIBE ========== */
.vibe {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  background: var(--red);
  min-height: 620px;
}

.vibe__text {
  padding: 3.5rem clamp(1.4rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}

.vibe-list {
  display: grid;
  gap: 1rem;
}

.vibe-list li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.85rem;
  align-items: start;
  font-size: 1.05rem;
}

.vibe-list span {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.vibe__photo { overflow: hidden; background: #111; }
.vibe__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
}

/* ========== SLIDE 12 CASES ========== */
.cases-head { margin-bottom: 2rem; }

.cases-total {
  margin: 1rem 0 0;
  font-size: 1.15rem;
}

.cases-total strong {
  color: var(--white);
  font-size: 1.4rem;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.case {
  text-align: center;
}

.case img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 0.85rem;
}

.case h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  font-weight: 700;
}

.case__niche {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

.case__money {
  margin: 0.4rem 0 0.25rem;
  color: var(--money);
  font-weight: 700;
  font-size: 1.05rem;
}

.case__note {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

/* ========== SLIDE 13 TARIFFS ========== */
.tariffs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.tariff {
  position: relative;
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 1.6rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.tariff--hit {
  border-color: var(--red);
}

.tariff__badge {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
}

.tariff__name {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #777;
  font-weight: 600;
}

.tariff__price {
  margin: 0.55rem 0 0.25rem;
  font-size: 2.2rem;
  font-weight: 700;
}

.tariff__month {
  margin: 0 0 1.15rem;
  font-size: 0.95rem;
  color: #666;
}

.tariff__month b {
  color: var(--red);
  font-weight: 700;
}

.tariff--hit .tariff__month {
  color: #666;
}

.tariff--hit .tariff__month b {
  color: var(--red);
}

.tariff ul {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.tariff li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.95rem;
}

.tariff li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #999;
}

.tariff li.is-extra {
  color: var(--red);
  font-weight: 700;
}

.tariff .btn { width: 100%; }

/* ========== SLIDE 14 FINAL ========== */
.final {
  padding: 4.5rem 0;
}

.final__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: end;
}

.final__lead {
  margin: 1.3rem 0 1.5rem;
  max-width: 34rem;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.92);
}

.final__tg {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  font-size: 1.15rem;
}

.final__tg:hover { opacity: 0.9; }

.final__tg-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  display: grid;
  place-items: center;
}

.final__tg-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.final__meta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.4rem;
  padding: 0.95rem 1.1rem;
  background: rgba(0,0,0,0.28);
  border-radius: 8px;
  font-size: 0.9rem;
  max-width: 44rem;
}

.final__qr {
  justify-self: end;
  background: var(--white);
  padding: 0.85rem;
  border-radius: 8px;
  width: min(240px, 100%);
}

.final__qr img {
  width: 100%;
  height: auto;
}

/* Footer */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 1.2rem 0;
  font-size: 0.9rem;
}

.footer__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer a:hover { color: var(--white); }

/* Responsive */
@media (max-width: 980px) {
  .topbar__nav { display: none; }

  .hero__cards,
  .fit-grid,
  .concept-grid,
  .weeks,
  .venue-perks,
  .tariffs,
  .cases-grid {
    grid-template-columns: 1fr 1fr;
  }

  .formats__grid,
  .producer,
  .schedule,
  .venue,
  .studio,
  .vibe,
  .final__grid {
    grid-template-columns: 1fr;
  }

  .formats__photo img,
  .producer__photo img,
  .vibe__photo img {
    min-height: 380px;
  }

  .venue-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    auto-rows: 210px;
  }

  .venue-mosaic__item--hero,
  .venue-mosaic__item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .venue-mosaic__item--hero {
    grid-column: 1 / -1;
    min-height: 280px;
  }

  .final__qr { justify-self: start; }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 1.4rem, 1120px); }

  .venue-mosaic {
    grid-template-columns: 1fr;
    auto-rows: 240px;
  }

  .venue-mosaic__item--hero {
    min-height: 260px;
  }

  .hero { padding: 3.2rem 0 2.5rem; }

  .hero__cards,
  .fit-grid,
  .concept-grid,
  .weeks,
  .venue-perks,
  .tariffs,
  .cases-grid {
    grid-template-columns: 1fr;
  }

  .gallery__track img {
    width: 160px;
    height: 220px;
  }

  .footer__row { flex-direction: column; }
}

/* ===== SELLING UPGRADES ===== */
.urgency-bar {
  background: var(--black);
  color: var(--white);
  font-size: 0.88rem;
  padding: 0.55rem 0;
}

.urgency-bar__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.urgency-bar a {
  color: var(--gold-soft, #d4b483);
  font-weight: 700;
  white-space: nowrap;
}

.urgency-bar a:hover { text-decoration: underline; }

.hero__sell {
  margin: 1.2rem auto 0;
  max-width: 40rem;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
}

.hero__micro {
  margin: 1.1rem 0 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}

.countdown {
  margin-top: 1.5rem;
  max-width: 28rem;
  width: 100%;
}

.countdown__label {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  font-weight: 600;
}

.countdown__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.countdown__cell {
  display: grid;
  gap: 0.25rem;
  padding: 0.7rem 0.35rem;
  text-align: center;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.18);
  min-width: 0;
}

.countdown__cell b {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3.5vw, 1.9rem);
  line-height: 1;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.countdown__cell span {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-style: normal;
}

.countdown__cell span i {
  font-style: normal;
  font-weight: inherit;
}

.cd-short { display: none; }

.proof-kicker {
  margin: 0 0 0.6rem;
  color: var(--gold-soft, #d4b483);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
}

.proof-title { margin-bottom: 2rem; }

.proof-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0.9rem;
}

.proof-card {
  background: #151515;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.4rem 1.25rem;
}

.proof-card--big {
  background: var(--red);
  border-color: var(--red);
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proof-card strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.55rem;
}

.proof-card span {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}

.producer__hook {
  margin: 0 0 1.2rem;
  font-size: 1.05rem;
  color: #333;
  max-width: 34rem;
}

.cases-link {
  display: inline-block;
  margin-top: 0.7rem;
  color: #7db7ff;
  font-weight: 600;
  text-decoration: underline;
}

.cases-link:hover { color: #fff; }

.spotlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.spotlight__card {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 280px auto;
}

.spotlight__card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
}

.spotlight__card > div { padding: 1.1rem 1.15rem 1.3rem; }

.spotlight__money {
  margin: 0;
  color: var(--money);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
}

.spotlight__card h3 {
  margin: 0.2rem 0;
  font-size: 1.1rem;
}

.spotlight__story {
  margin: 0.55rem 0 0;
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
}

.cases-grid--rich {
  grid-template-columns: repeat(4, 1fr);
}

.cases-grid--event {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 1.2rem;
}

.cases-grid--event .case img {
  aspect-ratio: 4/5;
  border-radius: 14px;
  object-position: center;
}

/* Offer section */
.section--offer {
  background: linear-gradient(180deg, #5a050a 0%, var(--red) 40%, #4a0408 100%);
  padding: 3.2rem 0;
}

.offer {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.offer--compact {
  max-width: 36rem;
}

.offer--compact .offer__lead {
  margin: 0.85rem auto 1.4rem;
}

.offer-steps {
  list-style: none;
  margin: 1.35rem auto 1.6rem;
  padding: 0;
  max-width: 28rem;
  text-align: left;
  display: grid;
  gap: 0.7rem;
}

.offer-steps li {
  position: relative;
  padding: 0.75rem 0.9rem 0.75rem 2.6rem;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);
  font-size: 0.98rem;
  line-height: 1.4;
}

.offer-steps li::before {
  counter-increment: offer-step;
  content: counter(offer-step);
  position: absolute;
  left: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: #f0d2a0;
  color: #1a1008;
  font-size: 0.78rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.offer-steps {
  counter-reset: offer-step;
}

.offer-steps b {
  color: #fff;
}

.offer__eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
}

.offer .h-serif {
  font-size: clamp(1.85rem, 4.2vw, 2.7rem);
  text-transform: none;
}

.offer__lead {
  margin: 1.1rem auto 0;
  max-width: 40rem;
  font-size: 1.12rem;
  color: rgba(255,255,255,0.9);
}

.offer__gift {
  display: inline-block;
  margin: 1.25rem auto 0;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.28);
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.offer__gift b {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2.4rem 0 2rem;
  text-align: left;
}

.offer-item {
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 1.4rem 1.25rem;
}

.offer-item span {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
}

.offer-item h3 {
  margin: 0.5rem 0 0.45rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--white);
}

.offer-item p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
}

.offer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.offer-cta p {
  margin: 0;
  max-width: 34rem;
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
}

.offer-cta a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.btn--lg {
  padding: 1rem 1.8rem;
  font-size: 1.05rem;
}

.offer-cta .btn--lg {
  text-align: center;
  white-space: normal;
  line-height: 1.35;
  max-width: 28rem;
}

.offer__meta {
  margin: 0.35rem 0 0;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
}

.seats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  align-items: baseline;
  background: var(--white);
  border-left: 4px solid var(--red);
  padding: 1rem 1.2rem;
  margin-bottom: 1.4rem;
  border-radius: 0 8px 8px 0;
}

.seats strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--red);
}

.seats span { color: #444; }
.seats b { color: var(--red); }

.tariff__note {
  margin: -0.5rem 0 1rem;
  font-size: 0.88rem;
  color: var(--red);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(255,255,255,0.96);
  border-top: 1px solid rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
  padding: 0.75rem 0;
  transform: translateY(110%);
  transition: transform 0.35s ease;
}

.sticky-cta.is-on { transform: translateY(0); }

.sticky-cta__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.sticky-cta strong {
  display: block;
  font-size: 0.98rem;
}

.sticky-cta span {
  font-size: 0.82rem;
  color: #666;
}

body { padding-bottom: 0; }
body.has-sticky { padding-bottom: 76px; }

@media (max-width: 980px) {
  .proof-grid,
  .spotlight,
  .offer-grid,
  .cases-grid--rich {
    grid-template-columns: 1fr 1fr;
  }
  .cases-grid--event {
    grid-template-columns: 1fr 1fr;
  }
  .proof-card--big { grid-row: auto; }
  .urgency-bar__row { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
}

@media (max-width: 640px) {
  .proof-grid,
  .spotlight,
  .offer-grid,
  .cases-grid--rich {
    grid-template-columns: 1fr;
  }
  .cases-grid--event {
    grid-template-columns: 1fr;
  }
  .sticky-cta__row { flex-direction: column; align-items: stretch; }
  .sticky-cta .btn { width: 100%; }
}

/* ===== VIDEO / COMPARE / FAQ / PAYBACK ===== */
.kicker-dark {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}

.compare-lead,
.payback-lead {
  margin: 0.8rem 0 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.payback-lead { color: rgba(255,255,255,0.78); }

#compare { padding: 4.5rem 0; }
#objections { padding: 4.5rem 0; }
#payback { padding: 4.5rem 0; }
#video { padding: 4.5rem 0; }

.video-block {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

.video-block__lead {
  margin: 1rem 0 1.3rem;
  color: rgba(255,255,255,0.8);
  font-size: 1.08rem;
}

.video-block__bullets {
  display: grid;
  gap: 0.7rem;
}

.video-block__bullets li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(255,255,255,0.88);
}

.video-block__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--red);
}

.video-player {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  min-height: 360px;
}

.video-player__btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #000;
}

.video-player__btn img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: grayscale(1) brightness(0.72);
  transition: filter 0.35s ease, transform 0.6s ease;
}

.video-player__btn:hover img {
  filter: grayscale(0.3) brightness(0.8);
  transform: scale(1.02);
}

.video-player__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.video-player__play svg { width: 28px; height: 28px; margin-left: 3px; }

.video-player__label {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  padding: 0.45rem 0.8rem;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.video-player__frame {
  position: absolute;
  inset: 0;
  background: #000;
}

.video-player__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-player__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
  padding: 2rem;
  background: linear-gradient(160deg, rgba(20,20,20,0.96), rgba(133,7,15,0.92));
  color: #fff;
}

.video-player__fallback-title {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
}

.video-player__fallback p { margin: 0; color: rgba(255,255,255,0.88); max-width: 28rem; }
.video-player.is-open .video-player__btn { display: none; }

.compare {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.compare__col {
  border-radius: 12px;
  padding: 1.6rem 1.4rem;
}

.compare__col h3 {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: 1.5rem;
}

.compare__col ul { display: grid; gap: 0.7rem; }
.compare__col li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.98rem;
}

.compare__col--bad {
  background: #f3f3f3;
  border: 1px solid #ddd;
}

.compare__col--bad h3 { color: #666; }
.compare__col--bad li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: #999;
  font-weight: 700;
}

.compare__col--good {
  background: var(--red);
  color: #fff;
}

.compare__col--good li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: 700;
}

.faq {
  margin-top: 2rem;
  display: grid;
  gap: 0.7rem;
}

.faq__item {
  background: var(--gray);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.3rem;
  font-weight: 700;
  font-size: 1.05rem;
  position: relative;
  padding-right: 3rem;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 1.4rem;
  font-weight: 400;
}

.faq__item[open] summary::after { content: "−"; }

.faq__item p {
  margin: 0;
  padding: 0 1.3rem 1.25rem;
  color: #333;
  max-width: 52rem;
}

.objections-cta {
  margin-top: 1.8rem;
}

.payback {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
}

.payback__form,
.payback__result {
  border-radius: 14px;
  padding: 1.5rem;
}

.payback__form {
  background: #151515;
  border: 1px solid rgba(255,255,255,0.08);
  display: grid;
  gap: 1rem;
}

.payback__form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

.payback__field-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.55rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.payback__field-title em {
  font-style: normal;
  font-weight: 700;
  font-size: 0.82rem;
  color: #f0d2a0;
}

.payback__field-hint {
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(255,255,255,0.5);
}

.payback__field--edit {
  padding: 0.85rem;
  margin: 0 -0.15rem;
  border-radius: 10px;
  background: rgba(240, 210, 160, 0.08);
  border: 1px solid rgba(240, 210, 160, 0.35);
}

.payback__field--edit input {
  border-color: rgba(240, 210, 160, 0.55);
  box-shadow: 0 0 0 2px rgba(240, 210, 160, 0.12);
}

.payback__field--edit input:focus {
  outline: none;
  border-color: #f0d2a0;
  box-shadow: 0 0 0 3px rgba(240, 210, 160, 0.25);
}

.payback__form input,
.payback__form select {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.18);
  background: #0d0d0d;
  color: #fff;
  border-radius: 8px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
}

.payback__result {
  background: var(--red);
  color: #fff;
}

.payback__label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  opacity: 0.8;
}

.payback__sum {
  margin: 0.5rem 0 0.3rem;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
}

.payback__verdict {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.payback__hint {
  margin: 0.55rem 0 1.2rem;
  color: rgba(255,255,255,0.85);
}

.payback__extras {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.3rem;
}

.payback__extras div {
  background: rgba(0,0,0,0.22);
  border-radius: 10px;
  padding: 0.85rem 1rem;
}

.payback__extras strong {
  display: block;
  margin-bottom: 0.2rem;
}

.payback__extras span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

@media (max-width: 980px) {
  .video-block,
  .compare,
  .payback {
    grid-template-columns: 1fr;
  }
  .video-player__btn img { height: 340px; }
}

@media (max-width: 640px) {
  .vision__inner {
    width: min(100% - 1.5rem, 640px);
    margin-left: 0.75rem;
    padding: 4rem 0 3rem;
  }
  .hero {
    min-height: 100svh;
    align-items: flex-end;
    padding: 6.5rem 0 3rem;
  }
}

.tariff__seats {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #f3e8e8;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  width: fit-content;
}

.tariff__seats b {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1;
}

.tariff__seats--hit {
  background: #85070f;
  color: #fff;
}

.tariff--hit .tariff__seats--hit {
  background: #85070f;
  color: #fff;
}

.tariff__seats--last {
  background: #85070f;
  color: #fff;
}

/* ===== MOBILE POLISH ===== */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
}

img, video, svg {
  max-width: 100%;
}

@media (max-width: 980px) {
  .topbar__row {
    gap: 0.75rem;
  }

  .topbar .btn {
    padding: 0.55rem 0.85rem;
    font-size: 0.85rem;
  }

  .hero__title {
    font-size: clamp(2.2rem, 8vw, 3.4rem);
  }

  .countdown {
    max-width: none;
  }

  .countdown__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.4rem;
  }

  .countdown__cell {
    padding: 0.6rem 0.25rem;
  }

  .countdown__cell b {
    font-size: clamp(1.25rem, 4.2vw, 1.65rem);
  }

  .compare table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .schedule__grid,
  .program__grid {
    grid-template-columns: 1fr;
  }

  .offer-cta .btn--lg {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .urgency-bar {
    font-size: 0.78rem;
    padding: 0.45rem 0;
  }

  .urgency-bar__row {
    align-items: flex-start;
  }

  .urgency-bar a {
    white-space: normal;
  }

  .topbar {
    position: sticky;
    top: 0;
    z-index: 40;
  }

  .topbar__logo {
    font-size: 1rem;
  }

  .topbar .btn {
    flex-shrink: 0;
  }

  .hero {
    min-height: auto;
    padding: 2.2rem 0 2.2rem;
  }

  .hero__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .hero__tag,
  .hero__sell {
    font-size: 1rem;
  }

  .hero__cards {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }

  .hero-card {
    padding: 0.85rem 0.75rem;
  }

  .hero__cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
  }

  .hero__cta .btn,
  .hero .btn {
    width: 100%;
  }

  .countdown {
    margin-top: 1.15rem;
    max-width: none;
  }

  .countdown__label {
    margin-bottom: 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  .countdown__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.3rem;
  }

  .countdown__cell {
    gap: 0.18rem;
    padding: 0.55rem 0.15rem 0.45rem;
  }

  .countdown__cell b {
    font-size: 1.35rem;
  }

  .countdown__cell span {
    font-size: 0.58rem;
    letter-spacing: 0.02em;
  }

  .cd-full { display: none; }
  .cd-short { display: inline; }

  .vision {
    min-height: 88svh;
  }

  .vision__inner {
    width: min(100% - 1.4rem, 640px);
    margin-left: 0.7rem;
    margin-right: 0.7rem;
    padding: 3.2rem 0 2.6rem;
  }

  .vision__title {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .vision__lead {
    margin: 0.9rem 0 1.2rem;
    font-size: 1.02rem;
  }

  .vision__actions {
    width: 100%;
  }

  .vision__hint {
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
  }

  .btn--gold {
    width: 100%;
    max-width: none;
    padding: 1rem 1.05rem;
    font-size: 1.02rem;
  }

  .live-marquee {
    font-size: 0.82rem;
  }

  .h-serif,
  .section .h-serif {
    font-size: clamp(1.7rem, 7.5vw, 2.4rem);
  }

  .formats__photo img,
  .producer__photo img,
  .vibe__photo img {
    min-height: 280px;
  }

  .venue-mosaic {
    auto-rows: 220px;
    gap: 0.55rem;
  }

  .venue-mosaic__item--hero {
    min-height: 240px;
  }

  .venue-mosaic__item figcaption {
    font-size: 0.78rem;
    padding: 1.1rem 0.7rem 0.55rem;
  }

  .tariff {
    padding: 1.25rem 1.05rem 1.25rem;
  }

  .tariff__price {
    font-size: 1.85rem;
  }

  .tariff__badge {
    top: 0.7rem;
    right: 0.7rem;
  }

  .tariff__seats {
    margin-right: 4.5rem;
  }

  .offer {
    text-align: left;
  }

  .offer .h-serif {
    text-align: left;
  }

  .offer-steps {
    max-width: none;
  }

  .offer-steps li {
    font-size: 0.92rem;
    padding: 0.7rem 0.75rem 0.7rem 2.45rem;
  }

  .offer-cta {
    align-items: stretch;
  }

  .offer-cta p {
    text-align: center;
  }

  .spotlight__card {
    grid-template-rows: 220px auto;
  }

  .spotlight__card img {
    height: 220px;
  }

  .faq__item summary {
    font-size: 0.98rem;
  }

  .sticky-cta {
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  .sticky-cta__row {
    gap: 0.55rem;
  }

  .sticky-cta strong {
    font-size: 0.92rem;
  }

  .sticky-cta span {
    font-size: 0.75rem;
  }

  body.has-sticky {
    padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
  }

  .section,
  .section--white,
  .section--stone,
  .section--black,
  .section--offer {
    padding-left: 0;
    padding-right: 0;
  }

  #compare,
  #payback,
  #questions {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }
}

