/* We Need to Talk — page-specific styles layered on magazine.css.
   Uses the same tokens (--ink, --cream, --accent, --line, fonts) so the page
   reads as part of the LoveJAAM magazine system. */

.wnt-hero { padding-bottom: 8px; }

/* Section nav: jump-links with an active-section highlight (scroll-spy).
   Builds on magazine.css's .nav-links / .nav-mobile so it matches the rest of
   the site; only the active state is added here. */
.nav-links a { position: relative; }
.nav-links a.is-active { color: var(--accent); }
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}
.nav-mobile a:not(.btn).is-active { color: var(--accent); }

/* Smooth-scroll targets clear the sticky nav so headings aren't hidden. */
#games,
#how-it-works,
#what-you-get,
#apply,
#faq { scroll-margin-top: 84px; }

/* ---------- Hero layout ---------- */
.wnt-hero-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 56px;
}
.wnt-hero-left { display: flex; flex-direction: column; }
/* Hero kicker: keep the two eyebrow labels grouped together so the secondary
   label ("Relationship Game Show") never dangles on its own line behind a
   stretched rule. The shared .hero-kicker .rule (flex:1) is reordered to trail
   the labels, so it reads as a clean divider after them and fills the row's
   trailing space (becoming a full-width underline if it wraps). Each label is
   kept on one piece. Scoped to .wnt-hero so the home hero's label–rule–label
   kicker is unchanged. */
.wnt-hero .hero-kicker .eyebrow { white-space: nowrap; }
.wnt-hero .hero-kicker .rule { order: 1; }
/* Tighten the gap under the headline — the default home-hero spacing leaves
   too much dead space between the title and the sub copy on this page. */
/* Headline/lede/CTA type + spacing mirror the Love & Money hero
   (.ev-hero-title / .ev-hero-sub / .ev-hero-actions in loveandmoney.css). */
.wnt-hero .hero-headline { font-size: clamp(52px, 7vw, 108px); line-height: 0.92; margin: 22px 0 0; }
.wnt-hero .hero-sub { margin: 22px 0 0; font-size: clamp(19px, 1.7vw, 24px); line-height: 1.35; max-width: 540px; }
.wnt-hero .hero-actions { margin-top: 30px; }
/* Centre the 16:9 trailer in the right column so it aligns with the left
   column's content rather than floating with dead space above and below. */
.wnt-hero-right { display: flex; flex-direction: column; justify-content: center; }
.wnt-hero-right .wnt-hero-media { flex: 0 0 auto; }
.wnt-hero-reassure {
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.wnt-hero-media {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 80% 10%, color-mix(in srgb, var(--accent) 42%, transparent) 0%, transparent 55%),
    var(--ink-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}
/* Trailer facade is a real <button>: reset native chrome, keep the frame. */
.wnt-hero-media--facade {
  width: 100%;
  padding: 0;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
}
.wnt-hero-media--facade:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
/* Poster fills the frame; gradient overlay keeps tag/caption legible. */
.wnt-hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.wnt-hero-media--facade::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(120% 120% at 80% 10%, color-mix(in srgb, var(--accent) 30%, transparent) 0%, transparent 55%),
    linear-gradient(180deg, rgba(8,8,10,0.18) 0%, rgba(8,8,10,0.55) 100%);
}
.wnt-hero-media--facade .wnt-hero-media-tag,
.wnt-hero-media--facade .wnt-hero-play,
.wnt-hero-media--facade .wnt-hero-media-cap {
  position: relative;
  z-index: 2;
}
.wnt-hero-media--facade .wnt-hero-media-tag,
.wnt-hero-media--facade .wnt-hero-media-cap {
  position: absolute;
}
.wnt-hero-media--facade .wnt-hero-play {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.wnt-hero-media--facade:hover .wnt-hero-play,
.wnt-hero-media--facade:focus-visible .wnt-hero-play {
  transform: scale(1.06);
  box-shadow: 0 12px 48px rgba(200,16,46,0.55);
}
/* Playing state: 16:9 video filling the rounded frame. */
.wnt-hero-media--playing {
  background: #000;
  aspect-ratio: 16 / 9;
  min-height: 0;
}
.wnt-hero-video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.wnt-hero-media-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
}
.wnt-hero-play {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  padding-left: 6px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 40px rgba(200,16,46,0.45);
}
.wnt-hero-media-cap {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 22px;
  line-height: 1.05;
}

.wnt-section-head { margin-bottom: 40px; }
.wnt-section-title {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.028em;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 0.96;
  margin: 12px 0 0; /* zero the default h2 bottom margin — .wnt-section-lead owns the 18px gap */
}
.wnt-section-title .em { color: var(--accent); }
.wnt-section-lead {
  max-width: 540px;
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-3);
}
.section.dark .wnt-section-lead { color: var(--muted-2); }
.wnt-muted { color: var(--muted); font-size: 16px; }

/* ---------- How it works ---------- */
.wnt-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.wnt-step {
  background: var(--cream);
  padding: 34px 30px 38px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wnt-step-num {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 48px;
  line-height: 1;
  color: var(--accent);
}
.wnt-step-title {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 24px;
  margin: 0;
}
.wnt-step-body { color: var(--ink-3); font-size: 15px; line-height: 1.55; margin: 0; }

/* ---------- What you get (dark) ---------- */
.wnt-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.wnt-benefit {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wnt-benefit-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
}
.wnt-benefit-title {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.025em;
  font-size: 22px;
  margin: 6px 0 0;
  color: var(--cream);
}
.wnt-benefit-body { color: var(--muted-2); font-size: 15px; line-height: 1.55; margin: 0; }

/* ---------- Apply prompt (no format chosen) ---------- */
.wnt-apply-empty { max-width: 620px; }
.wnt-apply-empty .hero-actions { margin-top: 26px; }

/* ---------- FAQ ---------- */
.wnt-faq-list {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  max-width: 900px;
}
.wnt-faq-item {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  background: var(--cream-2);
  transition: background .2s ease;
}
.wnt-faq-item:last-child { border-bottom: 0; }
.wnt-faq-item:hover,
.wnt-faq-item.is-open { background: var(--cream); }
.wnt-faq-q { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; }
.wnt-faq-q-text {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.025em;
  font-size: 21px;
}
.wnt-faq-q-icon { font-family: var(--mono); font-size: 18px; color: var(--accent); }
.wnt-faq-a {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-3);
  margin: 14px 0 0;
  max-width: 720px;
}

/* ---------- Format picker ---------- */
.wnt-formats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.wnt-format {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.wnt-format-title {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 30px;
  line-height: 1;
}
.wnt-format-desc { color: var(--ink-3); font-size: 15px; line-height: 1.5; }
.wnt-format-eps {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.wnt-formats-cta { margin-top: 26px; }
.wnt-field-hint {
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
}

/* ---------- Form ---------- */
.wnt-form { max-width: 760px; }
.wnt-form-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.wnt-form-title {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.028em;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.96;
  margin-top: 6px;
}
.wnt-link {
  align-self: flex-start;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.wnt-link:hover { color: var(--accent); }

.wnt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}
.wnt-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.wnt-field > span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.wnt-field input,
.wnt-field textarea,
.wnt-field select {
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.wnt-field input:focus,
.wnt-field textarea:focus,
.wnt-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.12);
}
.wnt-field textarea { resize: vertical; }

/* ---------- Episode preferences ---------- */
.wnt-episodes { display: flex; flex-direction: column; gap: 10px; }
.wnt-episode {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-size: 15px;
}
.wnt-episode.is-checked { border-color: var(--accent); }
.wnt-episode em { color: var(--muted); font-style: normal; }
.wnt-episode input { width: 18px; height: 18px; accent-color: var(--accent); }

/* ---------- Show selector ---------- */

/* ---------- Partner (couples shows) ---------- */
.wnt-partner-toggle {
  margin: 4px 0 18px;
  font-size: 15px;
}
.wnt-partner {
  margin: 4px 0 18px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.wnt-partner-head { margin-bottom: 16px; }
.wnt-partner-title {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.1;
  margin-top: 6px;
}
.wnt-partner .wnt-grid { margin-bottom: 0; }
.wnt-partner .wnt-field:last-child { margin-bottom: 0; }

/* ---------- Consent ---------- */
.wnt-consents {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 8px 0 24px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.wnt-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.45;
  cursor: pointer;
}
.wnt-check input { margin-top: 2px; width: 18px; height: 18px; accent-color: var(--accent); flex: 0 0 auto; }

.wnt-error {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 16px;
}
.wnt-field input.wnt-invalid {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.12);
}
.wnt-field-err {
  color: var(--accent);
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--body);
}

.wnt-submit { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.wnt-fineprint {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Confirmation ---------- */
.wnt-done { max-width: 620px; }
.wnt-done-title {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.028em;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.96;
  margin: 12px 0 18px;
}
.wnt-done-sub { font-size: 18px; line-height: 1.55; color: var(--ink-3); margin-bottom: 28px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .wnt-hero-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
  .wnt-steps { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .wnt-formats { grid-template-columns: 1fr; }
  .wnt-grid { grid-template-columns: 1fr; }
  .wnt-benefits { grid-template-columns: 1fr; }
}
