/* =============================================
   Bespoke Leadership Experience Page
   ============================================= */

/* ── HERO ─────────────────────────────────── */

.bespoke-hero {
  background: linear-gradient(150deg, #4a2a41 0%, #6b3d5e 50%, #4a2a41 100%);
  padding: 6rem 2rem 5rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.bespoke-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/onstage2.jpeg') center 20% / cover no-repeat;
  opacity: 0.18;
}

.bespoke-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(74,42,65,0.88) 0%, rgba(107,61,94,0.82) 50%, rgba(74,42,65,0.92) 100%);
}

.bespoke-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.bespoke-eyebrow {
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(221,164,78,0.4);
  padding: 0.35rem 1.1rem;
  border-radius: 20px;
}

.bespoke-hero h1 {
  font-family: 'Georgia', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.15;
  color: #fff;
  margin: 0;
}

.bespoke-hero-sub {
  font-family: 'Arial', sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  line-height: 1.7;
  margin: 0;
}

.bespoke-price-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 1rem 2rem;
  margin-top: 0.5rem;
}

.price-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.price-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  font-family: 'Arial', sans-serif;
}

.price-amount {
  font-family: 'Georgia', serif;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--gold-light);
}

.price-secondary {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
}

.price-divider {
  color: rgba(255,255,255,0.2);
  font-size: 1.5rem;
}

.bespoke-cta {
  margin-top: 0.5rem;
  padding: 0.9rem 2.5rem;
  font-size: 1rem;
}

/* ── SHARED SECTION STYLES ────────────────── */

.bespoke-section {
  padding: 5rem 2rem;
}

.bespoke-inner {
  max-width: 860px;
  margin: 0 auto;
}

.bespoke-section h2 {
  font-family: 'Georgia', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.bespoke-lead {
  font-family: 'Arial', sans-serif;
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 680px;
}

/* ── WHAT THIS IS ─────────────────────────── */

.bespoke-what {
  background: var(--off-white);
}

.integrates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.integrates-item {
  background: #fff;
  border: 1px solid #e8e0f0;
  border-radius: 10px;
  padding: 1.25rem 1rem;
  text-align: center;
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.integrates-icon {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.bespoke-callout {
  background: var(--navy);
  border-radius: 10px;
  padding: 1.75rem 2rem;
  color: rgba(255,255,255,0.9);
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  margin-top: 1rem;
}

.bespoke-callout strong { color: var(--gold-light); }

/* ── DARK SECTIONS ────────────────────────── */

.bespoke-dark {
  background: var(--navy);
}

.bespoke-dark h2 {
  color: #fff;
}

.bespoke-dark .bespoke-lead {
  color: rgba(255,255,255,0.8);
}

.bespoke-dark p {
  color: rgba(255,255,255,0.75);
  font-family: 'Arial', sans-serif;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.bespoke-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.bespoke-list li {
  font-family: 'Arial', sans-serif;
  padding-left: 1.5rem;
  position: relative;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.bespoke-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.bespoke-list--light li {
  color: var(--text-mid);
}

.bespoke-emphasis {
  font-family: 'Georgia', serif;
  font-size: 1.05rem;
  color: var(--gold-light);
  font-style: italic;
  margin-top: 1.25rem;
}

.bespoke-emphasis-light {
  font-family: 'Georgia', serif;
  font-size: 1.05rem;
  color: var(--navy);
  font-style: italic;
  margin-top: 1.25rem;
}

/* ── SPACE SECTION ────────────────────────── */

.bespoke-space {
  background: #fff;
}

.bespoke-space h2 { color: var(--navy); }

.bespoke-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.bespoke-space-text p {
  font-family: 'Arial', sans-serif;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.bespoke-space-quote {
  display: flex;
  align-items: center;
}

.bespoke-space-quote blockquote {
  background: var(--navy);
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 2rem 1.75rem;
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin: 0;
}

.bespoke-space-quote blockquote em {
  color: var(--gold-light);
  font-style: normal;
}

.bespoke-space-quote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-style: normal;
  color: rgba(255,255,255,0.5);
  font-family: 'Arial', sans-serif;
}

/* ── DELIVERABLES ─────────────────────────── */

.deliverables-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}

.deliverable-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid #ede8f4;
  align-items: start;
}

.deliverable-item:last-child { border-bottom: none; }

.deliverable-item--featured {
  background: #fdf8ff;
  border-radius: 12px;
  padding: 2rem;
  margin: 0.5rem -1rem;
  border: 1px solid #e0d0f0;
  border-bottom: 1px solid #e0d0f0;
}

.deliverable-num {
  font-family: 'Georgia', serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: #dde0e8;
  line-height: 1;
  padding-top: 0.2rem;
}

.deliverable-item--featured .deliverable-num {
  color: var(--gold);
}

.deliverable-content h3 {
  font-family: 'Georgia', serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.deliverable-content p {
  font-family: 'Arial', sans-serif;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.deliverable-sub-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.deliverable-sub-list li {
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  color: var(--text-mid);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.deliverable-sub-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.deliverable-note {
  font-style: italic;
  color: var(--navy) !important;
  font-size: 0.88rem !important;
  border-left: 3px solid var(--gold);
  padding-left: 0.75rem;
  margin-top: 0.75rem;
}

.tag-inline {
  font-family: 'Arial', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #ede8f4;
  color: var(--navy);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  vertical-align: middle;
}

.tag-inline--gold {
  background: var(--gold);
  color: #fff;
}

.install-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.6rem;
  margin: 1rem 0;
}

.install-item {
  font-family: 'Arial', sans-serif;
  font-size: 0.88rem;
  background: #fff;
  border: 1px solid #e0d0f0;
  border-radius: 6px;
  padding: 0.6rem 0.85rem;
  color: var(--navy);
  font-weight: 500;
}

/* ── TIMELINE ─────────────────────────────── */

.bespoke-timeline-section {
  background: var(--off-white);
}

.bespoke-timeline-section h2 { color: var(--navy); }

.timeline-grid {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.timeline-item {
  background: #fff;
  border: 1px solid #e0d0f0;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  flex: 1;
  min-width: 160px;
}

.timeline-item--span {
  flex: 1.5;
}

.timeline-week {
  font-family: 'Georgia', serif;
  font-size: 1rem;
  font-weight: bold;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.timeline-desc {
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  color: var(--text-mid);
}

.timeline-connector {
  color: var(--gold);
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* ── WHAT CHANGES ─────────────────────────── */

.changes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.change-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 1.1rem;
}

.change-icon {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.change-item p {
  font-family: 'Arial', sans-serif;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin: 0;
}

/* ── CLOSING CTA ──────────────────────────── */

.bespoke-cta-section {
  background: linear-gradient(135deg, #4a2a41 0%, #6b3d5e 100%);
  padding: 5rem 2rem;
  text-align: center;
  color: #fff;
}

.bespoke-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.bespoke-cta-section h2 {
  font-family: 'Georgia', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
}

.bespoke-cta-section p {
  font-family: 'Arial', sans-serif;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.7;
}

.bespoke-cta-section strong { color: var(--gold-light); }

.cta-price-block {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 0.75rem 2rem;
}

.cta-investment {
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.cta-investment strong {
  color: var(--gold-light);
  font-size: 1.2rem;
}

.cta-note {
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.45) !important;
  font-style: italic;
}

/* ── RESPONSIVE ───────────────────────────── */

@media (max-width: 768px) {
  .bespoke-price-row {
    flex-direction: column;
    gap: 0.75rem;
  }
  .price-divider { display: none; }
  .bespoke-two-col {
    grid-template-columns: 1fr;
  }
  .deliverable-item {
    grid-template-columns: 40px 1fr;
    gap: 1rem;
  }
  .deliverable-item--featured {
    margin: 0.5rem 0;
  }
  .timeline-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .timeline-connector {
    transform: rotate(90deg);
    text-align: center;
  }
  .install-grid {
    grid-template-columns: 1fr;
  }
}
