/* ════════════════════════════════════════════════════════════════
   Glade Studio — Prospect Pitch Pages
   Layout only. Brand tokens come from /styles.css.
   ════════════════════════════════════════════════════════════════ */

/* ── Page shell ─────────────────────────────────────────────── */
body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

/* ── Ambient bloom (CSS-only, no JS) ────────────────────────── */
.pitch-bloom {
  pointer-events: none;
  position: fixed;
  top: -20vh;
  left: 50%;
  translate: -50% 0;
  width: min(80vw, 640px);
  height: min(80vw, 640px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 152, 58, 0.07) 0%, transparent 70%);
  z-index: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .pitch-bloom {
    animation: bloom-breathe 8s ease-in-out infinite;
  }
}
@keyframes bloom-breathe {
  0%, 100% { opacity: 0.7; scale: 1; }
  50%       { opacity: 1;   scale: 1.08; }
}
@media (prefers-reduced-motion: reduce) {
  .pitch-bloom { display: none; }
}

/* ── Header ─────────────────────────────────────────────────── */
.pitch-header {
  position: relative;
  z-index: 1;
  padding: 1.8rem var(--gutter);
  border-bottom: 1px solid rgba(249, 245, 238, 0.06);
}

/* ── Main content ────────────────────────────────────────────── */
.pitch-main {
  flex: 1;
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vh, 6rem) var(--gutter) clamp(4rem, 10vh, 8rem);
}

.pitch-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 7vh, 5rem);
}

/* ── Personalised intro ──────────────────────────────────────── */
.pitch-intro {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pitch-for {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: var(--text-3xl);
  line-height: 1.1;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.pitch-intro__line {
  font-size: var(--text-base);
  font-weight: 300;
  color: rgba(249, 245, 238, 0.72);
  max-width: 52ch;
  line-height: 1.65;
}

/* ── Section label ───────────────────────────────────────────── */
.pitch-section-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

/* ── Video embed ─────────────────────────────────────────────── */
.pitch-video-section {
  display: flex;
  flex-direction: column;
}

.pitch-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: var(--deep-2);
  box-shadow:
    0 0 0 1px rgba(196, 152, 58, 0.12),
    0 24px 64px rgba(0, 0, 0, 0.5);
}

.pitch-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Diagnosis list ──────────────────────────────────────────── */
.pitch-diagnosis {
  display: flex;
  flex-direction: column;
}

.pitch-diagnosis__list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  list-style: none;
  padding: 0;
}

.pitch-diagnosis__list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: var(--text-base);
  font-weight: 300;
  color: rgba(249, 245, 238, 0.82);
  line-height: 1.6;
  padding: 1.1rem 1.4rem;
  background: rgba(249, 245, 238, 0.03);
  border: 1px solid rgba(249, 245, 238, 0.07);
  border-radius: 8px;
}

.pitch-diagnosis__list li::before {
  content: '→';
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.95em;
  margin-top: 0.1em;
}

/* ── Booking section ─────────────────────────────────────────── */
.pitch-booking {
  display: flex;
  flex-direction: column;
}

.pitch-booking__sub {
  font-size: var(--text-sm);
  font-weight: 300;
  color: rgba(249, 245, 238, 0.6);
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

#pitch-cal-inline {
  width: 100%;
  min-height: 500px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(249, 245, 238, 0.03);
  border: 1px solid rgba(249, 245, 238, 0.07);
}

.pitch-booking__fallback {
  margin-top: 1rem;
  font-size: var(--text-xs);
  color: rgba(249, 245, 238, 0.45);
  text-align: center;
}

.pitch-fallback-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.pitch-fallback-link:hover { color: var(--glow); }

/* ── Footer ──────────────────────────────────────────────────── */
.pitch-footer {
  position: relative;
  z-index: 1;
  padding: 2rem var(--gutter);
  border-top: 1px solid rgba(249, 245, 238, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}

.pitch-footer__line {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(249, 245, 238, 0.38);
}

.pitch-footer__email {
  font-size: var(--text-xs);
  color: rgba(249, 245, 238, 0.38);
  transition: color 0.2s ease;
  text-underline-offset: 3px;
}
.pitch-footer__email:hover { color: var(--gold); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 480px) {
  .pitch-diagnosis__list li {
    padding: 0.9rem 1rem;
    gap: 0.75rem;
  }
}
