/*
 * Exit Five — /executive/booked page styles.
 * Clone of cmo-council-booked.css for the "Exit Five Executive" rebrand
 * (see project_cmo_council_executive_rebrand memory — clone, don't rename).
 * Scoped under .executive-booked-page.
 *
 * Typography intentionally limited to two font families, leaning serif:
 * Instrument Serif is listed first in --exb-sans (not just --exb-serif),
 * so body copy, labels, and eyebrows render serif by default; Manrope only
 * shows up as the web-safe fallback if Instrument Serif fails to load.
 */

@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital,wght@0,400;1,400&display=swap");

.executive-booked-page {
  --exb-bg:         #f5f2eb;
  --exb-card:       #ffffff;
  --exb-text:       #1a1f1a;
  --exb-muted:      #6b6f6a;
  --exb-border:     #e5e1d6;
  --exb-blue:       #5a89c3;
  --exb-blue-dark:  #3f6298;
  --exb-tan:        #efe9d8;
  --exb-dark-bg:    #1a2419;
  --exb-dark-card:  #2a352a;
  --exb-dark-text:  #f5f2eb;
  --exb-quote:      #565952;

  --exb-serif: "Instrument Serif", "Manrope", serif;
  --exb-sans:  "Instrument Serif", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, serif;
  --exb-wrap:  1060px;
  --exb-pad-y: clamp(4rem, 8vw, 7rem);

  font-family: var(--exb-sans);
  color: var(--exb-text);
  background: var(--exb-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.executive-booked-page * { box-sizing: border-box; }
.executive-booked-page a { color: inherit; }
.executive-booked-page img { display: block; max-width: 100%; }

.exb-wrap {
  width: 100%;
  max-width: var(--exb-wrap);
  margin: 0 auto;
  padding-left: clamp(1.25rem, 5vw, 2.5rem);
  padding-right: clamp(1.25rem, 5vw, 2.5rem);
}

.exb-eyebrow {
  font-family: var(--exb-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--exb-blue-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.exb-eyebrow svg { width: 15px; height: 15px; flex-shrink: 0; }

.executive-booked-page h1,
.executive-booked-page h2,
.executive-booked-page h3 {
  font-family: var(--exb-serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.executive-booked-page h1 { font-size: clamp(2.6rem, 6vw, 4.3rem); }
.executive-booked-page h2 { font-size: clamp(2rem, 4vw, 3rem); }
.executive-booked-page p { font-size: 1.05rem; }

/* ---------- top wordmark ---------- */
.exb-topbar {
  padding: 1.6rem 0;
  text-align: center;
  border-bottom: 1px solid var(--exb-border);
}
.exb-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.exb-brand__logo { width: 104px; color: var(--exb-text); }
.exb-brand__logo svg { width: 100%; height: auto; display: block; }
.exb-brand__sep { width: 1px; height: 18px; background: var(--exb-border); }
.exb-brand__label {
  font-family: var(--exb-sans);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--exb-text);
  /* Instrument Serif's line-box leading sits well above the logo SVG's
     baseline-flush artwork, so flex align-items:center visibly misaligns
     them; nudge down to match the logo's true baseline. */
  transform: translateY(6.64px);
}

/* ---------- hero + video ---------- */
.exb-hero {
  padding-top: clamp(2rem, 4vw, 3.25rem);
  padding-bottom: clamp(2.75rem, 5vw, 4rem);
  text-align: center;
}
.exb-hero .exb-eyebrow { margin-bottom: 1rem; }
.exb-hero h1 { max-width: 16ch; margin: 0 auto 0.9rem; }
.exb-hero__sub {
  font-size: clamp(1.35rem, 2.6vw, 1.65rem);
  color: var(--exb-muted);
  max-width: 50ch;
  margin: 0 auto 1.75rem;
  font-family: var(--exb-serif);
}
.exb-hero__fineprint {
  font-size: 0.9rem;
  color: var(--exb-muted);
  max-width: 46ch;
  margin: 1.15rem auto 0;
}

.exb-video-frame {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: var(--exb-dark-bg);
  box-shadow: 0 22px 55px -26px rgba(26, 36, 25, 0.45);
}
.exb-video-frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

/* ---------- what to expect (dark) ---------- */
.exb-expect {
  background: var(--exb-dark-bg);
  color: var(--exb-dark-text);
  padding-top: var(--exb-pad-y);
  padding-bottom: var(--exb-pad-y);
}
.exb-section-head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.exb-section-head .exb-eyebrow { margin-bottom: 1.1rem; }
.exb-expect .exb-eyebrow { color: var(--exb-blue); }
.exb-expect h2 { color: var(--exb-dark-text); }
.exb-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.exb-card {
  background: var(--exb-dark-card);
  border-radius: 16px;
  padding: 2rem 1.75rem;
}
.exb-card__marker { width: 34px; height: 2px; background: var(--exb-blue); margin-bottom: 1.4rem; }
.exb-card h3 { font-size: 1.4rem; color: var(--exb-dark-text); margin-bottom: 0.7rem; }
.exb-card p { font-size: 0.98rem; color: rgba(245, 242, 235, 0.72); }

/* ---------- social proof ---------- */
.exb-proof {
  background: var(--exb-bg);
  padding-top: var(--exb-pad-y);
  padding-bottom: var(--exb-pad-y);
}
.exb-proof .exb-section-head p { color: var(--exb-muted); font-family: var(--exb-serif); font-size: 1.2rem; margin-top: 0.75rem; }
.exb-testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
.exb-testimonial {
  background: var(--exb-card);
  border: 1px solid var(--exb-border);
  border-radius: 16px;
  padding: clamp(1rem, 2vw, 1.5rem);
}
.exb-testimonial .exb-video-frame { max-width: none; margin: 0 0 1.1rem; border-radius: 10px; box-shadow: none; }
.exb-testimonial__name { font-size: 1.2rem; color: var(--exb-text); margin: 0 0.25rem 0.9rem; }
.exb-testimonial__quote {
  background: var(--exb-tan);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  font-family: var(--exb-sans);
  font-style: normal;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--exb-quote);
  margin: 0;
}

/* ---------- prep ---------- */
.exb-prep { padding-top: var(--exb-pad-y); padding-bottom: var(--exb-pad-y); }
.exb-prep__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.exb-prep__inner .exb-eyebrow { margin-bottom: 1.1rem; }
.exb-prep__inner h2 { margin-bottom: 2.25rem; }
.exb-prep__list { list-style: none; text-align: left; display: grid; gap: 1.1rem; margin: 0; padding: 0; }
.exb-prep__item {
  display: flex; gap: 0.9rem; align-items: flex-start;
  font-size: 1.05rem; color: var(--exb-text);
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--exb-border);
}
.exb-prep__item:last-child { border-bottom: 0; padding-bottom: 0; }
.exb-prep__tick { flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px; color: var(--exb-blue-dark); }
.exb-prep__item a { color: var(--exb-blue-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- footer ---------- */
.exb-footer {
  background: var(--exb-dark-bg);
  color: rgba(245, 242, 235, 0.7);
  text-align: center;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.exb-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
}
.exb-footer__logo { width: 96px; color: var(--exb-dark-text); }
.exb-footer__logo svg { width: 100%; height: auto; display: block; }
.exb-footer__sep { width: 1px; height: 17px; background: rgba(245, 242, 235, 0.28); }
.exb-footer__label {
  font-family: var(--exb-sans); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--exb-dark-text);
  transform: translateY(6.64px);
}
.exb-footer p { font-size: 0.95rem; max-width: 48ch; margin: 0 auto 0.5rem; }
.exb-footer a { color: var(--exb-blue); text-decoration: none; font-weight: 500; }
.exb-footer a:hover { text-decoration: underline; }
.exb-footer__copyright { font-size: 0.8rem; margin-top: 1.75rem; color: rgba(245, 242, 235, 0.4); }

/* ---------- focus + motion ---------- */
.executive-booked-page a:focus-visible { outline: 2px solid var(--exb-blue-dark); outline-offset: 3px; }

.exb-reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.exb-reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .exb-reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .exb-cards { grid-template-columns: 1fr; }
  .exb-testimonials { grid-template-columns: 1fr; }
}
