@import url("fonts.css");
@import url("tokens.css");
@import url("styles.css");

/* Full-bleed campaign — no boxed magazine. */

html, body { overflow-x: hidden; }

.site-hotline,
.site-nav,
.bleed,
.hero-full,
.split-bleed,
.band,
.cinema,
.endcard {
  width: 100%;
}

/* --- Hotline + nav sit on the film --- */

.site-hotline {
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-nav {
  position: sticky;
  top: var(--hotline-h);
  z-index: 40;
  padding-inline: clamp(1.25rem, 4vw, 3.5rem);
}

.nav-cta {
  margin-left: 0.5rem;
  min-height: 2.4rem;
  padding: 0.4rem 1rem;
  font-size: 0.88rem;
}

/* --- Hero: 100vw × 100svh --- */

.hero-full {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 6rem 1.25rem 5rem;
  background: var(--creme);
}

.hero-full .bg-still {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.18;
}

.hero-full .hero-orbs { z-index: -1; }

.hero-full .hero-lockup {
  max-width: 54rem;
}

.hero-full .display {
  font-size: clamp(3rem, 4vw + 2.2rem, 7.2rem);
}

.hero-full .wordmark {
  font-size: clamp(0.95rem, 1.6vw, 1.35rem);
}

/* --- 50/50 cinema split, full viewport --- */

.split-bleed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
}

.split-bleed .visual {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
  background: var(--creme-2);
}

.split-bleed .visual img,
.split-bleed .visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.split-bleed .copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 6rem);
  background: var(--creme);
}

.split-bleed .copy .prose { max-width: 36rem; }

.split-bleed.reverse .visual { order: 2; }

@media (max-width: 860px) {
  .split-bleed,
  .split-bleed.reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .split-bleed.reverse .visual { order: 0; }
  .split-bleed .visual { min-height: 70vw; }
}

/* --- Full-width quote band --- */

.quote-bleed {
  padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 8vw, 10rem);
  background: var(--weiss);
}

.quote-bleed .quote {
  font-size: clamp(1.8rem, 1rem + 2.4vw, 3.4rem);
  max-width: 22ch;
}

/* --- Story rows: full width, alternating --- */

.story-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 72svh;
  text-decoration: none;
  color: inherit;
}

.story-row:nth-child(even) { grid-template-columns: 0.9fr 1.1fr; }
.story-row:nth-child(even) .visual { order: 2; }

.story-row .visual {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  background: var(--tinte);
}

.story-row .visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease);
}

.story-row:hover .visual img { transform: scale(1.04); }

.story-row .copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
  background: var(--weiss);
}

@media (max-width: 860px) {
  .story-row,
  .story-row:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .story-row:nth-child(even) .visual { order: 0; }
}

/* --- Cinema / video band --- */

.cinema {
  background: #120e14;
  color: var(--creme);
  padding: clamp(3rem, 8vw, 6rem) 0 0;
}

.cinema .kicker { color: var(--beere-300); }
.cinema h2 { color: var(--creme); padding-inline: clamp(1.25rem, 4vw, 3.5rem); }
.cinema .lead { color: #d8cfc6; padding-inline: clamp(1.25rem, 4vw, 3.5rem); }

.cinema-stage {
  margin-top: 2.5rem;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.cinema-stage img,
.cinema-stage video,
.cinema-stage iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.cinema-stage .play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: #fff;
}

.cinema-stage .play span {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--beere-500);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: 0 16px 40px -12px rgba(192, 0, 104, 0.7);
}

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

.yt-grid a {
  display: block;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}

.yt-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.yt-grid a:hover img { transform: scale(1.05); }

.yt-grid figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.2rem 1.1rem 0.9rem;
  background: linear-gradient(transparent, rgba(18, 14, 20, 0.88));
  font-size: 0.95rem;
  font-weight: 600;
}

@media (max-width: 720px) {
  .yt-grid { grid-template-columns: 1fr; }
}

/* --- Chapter bands --- */

.chapter {
  min-height: 70svh;
  display: grid;
  align-items: center;
  padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 8vw, 12rem);
}

.chapter .n {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.8;
  color: color-mix(in srgb, currentColor 18%, transparent);
  margin: 0 0 0.4rem;
}

.chapter h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  margin: 0 0 1rem;
  max-width: 16ch;
}

.chapter p {
  font-size: var(--fs-lead);
  max-width: 36rem;
  margin: 0;
}

.chapter-lagune { background: var(--lagune-500); color: #fff; }
.chapter-minze  { background: var(--minze-100); color: var(--tinte); }
.chapter-creme  { background: var(--creme); color: var(--tinte); }

/* --- Endcard: huge numbers, like the film --- */

.endcard {
  background: var(--creme);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) clamp(1.25rem, 4vw, 3.5rem);
  text-align: center;
}

.endcard .hero-orbs { opacity: 0.9; }

.endcard .phones {
  font-family: var(--font-ui);
  font-weight: 750;
  font-size: clamp(2.2rem, 8vw, 6.5rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--tinte);
  text-decoration: none;
  display: block;
}

.endcard .phones small {
  display: block;
  font-size: 0.22em;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--minze-500);
  font-weight: 650;
  margin-bottom: 0.35em;
}

.endcard .phones + .phones { margin-top: 1.4rem; }

.pad-inline {
  padding-inline: clamp(1.25rem, 4vw, 3.5rem);
}

.measure { max-width: 40rem; }
