/* ============================================================
   DESIGN TOKENS - shared with the rest of dealion.net
   ============================================================ */
:root {
  --navy:        #2c1c62;
  --navy-mid:    #1f1448;
  --navy-deep:   #161033;
  --gold:        #ba9823;
  --gold-bright: #d4ae37;
  --violet:      #6B5CDB;
  --violet-dim:  rgba(107,92,219,0.15);
  --cream:       #F5F2EA;
  --cream-dark:  #EDE8DC;
  --warm-grey:   #6B645A;
  --rule:        #D8D3C8;
  --rule-dark:   rgba(245,242,234,0.1);

  --serif: 'Cormorant Infant', Georgia, 'Times New Roman', serif;
  --sans:  'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max:    1180px;
  --text:   720px;

  --lion-mask: url("/lion-mark.svg");
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--serif);
  font-size-adjust: 0.49;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; }
p, li, blockquote, figcaption { text-wrap: pretty; }
em { font-style: normal; }
.br-desktop { display: none; }
.br-mobile  { display: inline; }
@media (min-width: 760px) {
  .br-desktop { display: inline; }
  .br-mobile  { display: none; }
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
              transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.10s; }
.reveal[data-delay="2"] { transition-delay: 0.20s; }
.reveal[data-delay="3"] { transition-delay: 0.32s; }

/* ============================================================
   MASTHEAD - scroll-hide pattern
   ============================================================ */
.masthead {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  padding: 22px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s ease, padding 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
  border-bottom: 1px solid transparent;
  will-change: transform;
}
.masthead.is-scrolled {
  background: var(--cream);
  border-bottom-color: var(--rule);
  padding: 14px 56px;
}
.masthead.is-hidden { transform: translateY(-100%); }
.masthead__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  overflow: hidden;
}
.masthead__lion-mark {
  width: 64px; height: 64px; flex-shrink: 0;
  background-color: var(--navy);
  -webkit-mask: var(--lion-mask) no-repeat center / contain;
          mask: var(--lion-mask) no-repeat center / contain;
}
.masthead__wordmark { display: block; height: 22px; width: auto; background: transparent; }
@media (hover: hover) {
  .masthead__wordmark {
    max-width: 0; opacity: 0; transform: translateX(-10px);
    clip-path: inset(0 100% 0 0);
    transition: max-width 0.55s cubic-bezier(0.65,0,0.2,1),
                opacity 0.35s ease 0.08s,
                clip-path 0.6s cubic-bezier(0.65,0,0.2,1) 0.05s,
                transform 0.55s cubic-bezier(0.65,0,0.2,1) 0.05s;
  }
  .masthead__logo:hover .masthead__wordmark,
  .masthead__logo:focus-visible .masthead__wordmark {
    max-width: 220px; opacity: 1; transform: translateX(0); clip-path: inset(0 0 0 0);
  }
}
@media (max-width: 560px) {
  .speaker { grid-template-columns: 1fr; gap: 22px; padding: 28px; justify-items: start; }
}

@media (prefers-reduced-motion: reduce) {
  .masthead__lion-mark, .masthead__wordmark { transition: none !important; }
}
.masthead__cta {
  font-family: var(--sans); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; text-decoration: none;
  color: var(--navy); padding: 10px 22px; border: 1px solid var(--navy);
  transition: background 0.2s ease, color 0.2s ease;
}
.masthead__cta:hover { background: var(--navy); color: var(--cream); }

/* ============================================================
   SHARED PRIMITIVES
   ============================================================ */
.btn-apply {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  background: var(--gold);
  padding: 18px 44px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-apply:hover { background: var(--gold-bright); transform: translateY(-2px); }
.btn-apply:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.btn-quiet {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  padding: 18px 0;
  border-bottom: 1px solid var(--navy);
  transition: color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
  display: inline-flex;
  gap: 10px;
}
.btn-quiet:hover { color: var(--violet); border-color: var(--violet); gap: 18px; }

/* ============================================================
   EVENT HERO - title carries the hierarchy; metadata sits
   under it as one quiet sans line (hero__next treatment)
   ============================================================ */
.event-hero { padding: 170px 0 0; }
.event-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--warm-grey);
  margin-bottom: 36px;
  transition: color 0.2s ease, gap 0.2s ease;
}
.event-hero__back:hover { color: var(--violet); gap: 16px; }
.event-hero__inner { max-width: var(--max); margin: 0 auto; padding: 0 56px; }
.event-hero__title {
  font-family: var(--serif);
  font-size-adjust: 0.49;
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 30px;
  max-width: 18ch;
}
.event-hero__title em { font-style: normal; color: var(--violet); }
.event-hero__byline {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-grey);
  line-height: 1.9;
  margin-bottom: 64px;
}
.event-hero__byline::before {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
}
.event-hero__byline .sep { opacity: 0.45; margin: 0 2px; }
/* ============================================================
   SPEAKER - who led the session (member-card pattern from
   /members/), with company marks and a door to the profile
   ============================================================ */
.speakers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 780px;
}
.speakers--two { grid-template-columns: 1fr 1fr; max-width: 100%; }
.speaker {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 28px;
  align-items: start;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
a.speaker:hover { border-color: var(--violet); transform: translateY(-2px); }
.speaker__portrait {
  width: 116px; height: 116px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.speaker__portrait::after {
  content: ""; position: absolute; inset: 0;
  background-color: var(--navy); opacity: 0.06;
  -webkit-mask: var(--lion-mask) no-repeat center / 72%;
          mask: var(--lion-mask) no-repeat center / 72%;
}
.speaker__portrait img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top; filter: grayscale(0.1);
}
.speaker__portrait.is-empty { background: var(--cream-dark); }
.speaker__portrait.is-empty::after { opacity: 0.22; }
.speaker__name {
  font-family: var(--serif);
  font-size-adjust: 0.49;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.speaker__li {
  display: inline-flex;
  line-height: 0;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.speaker__li:hover { opacity: 1; transform: translateY(-1px); }
.speaker__role {
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-grey);
  line-height: 1.5;
  margin-bottom: 16px;
}
.speaker__pull {
  font-family: var(--serif);
  font-size-adjust: 0.49;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--navy-mid);
  margin-bottom: 20px;
}
.speakers__label {
  font-family: var(--serif);
  font-size-adjust: 0.49;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.005em;
  color: var(--navy);
  margin-bottom: 20px;
}
.speaker__logos {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.speaker__logos img { height: 34px; width: auto; display: block; }
.speaker__logos-sep {
  width: 1px;
  height: 30px;
  background: var(--rule);
  flex-shrink: 0;
}
.speaker__cta {
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  gap: 12px;
  align-items: center;
  transition: gap 0.2s ease, color 0.2s ease;
}
a.speaker:hover .speaker__cta { gap: 20px; color: var(--violet); }

/* ============================================================
   INTRO - one oversized serif lead, nothing else
   ============================================================ */
.event-intro { padding: 96px 0 0; }
.event-intro__inner { max-width: var(--max); margin: 0 auto; padding: 0 56px; }
.event-intro__lead {
  font-family: var(--serif);
  font-size-adjust: 0.49;
  font-size: clamp(1.35rem, 2.3vw, 1.7rem);
  line-height: 1.55;
  color: var(--navy-mid);
  max-width: 58ch;
}

/* ============================================================
   ON THE TABLE - big serif label left, numbered questions
   right (manifesto grid + trade folio numerals)
   ============================================================ */
.table-section { padding: 120px 0 130px; }
.table-section__inner { max-width: var(--max); margin: 0 auto; padding: 0 56px; }
.table-section__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
}
.table-section__label {
  font-family: var(--serif);
  font-size-adjust: 0.49;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--navy);
  align-self: start;
}
.table-item {
  display: grid;
  grid-template-columns: minmax(72px, auto) 1fr;
  gap: 36px;
  padding: 34px 0;
  border-top: 1px solid var(--rule);
  align-items: center;
}
.table-item:first-child { padding-top: 0; border-top: none; }
.table-item:last-child { border-bottom: 1px solid var(--rule); padding-bottom: 40px; }
.table-item__num {
  font-family: var(--serif);
  font-size-adjust: 0.49;
  font-style: normal;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  color: var(--violet);
  line-height: 0.9;
}
.table-item__q {
  font-family: var(--serif);
  font-size-adjust: 0.49;
  font-weight: 700;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -0.005em;
  max-width: 32ch;
}
/* The answers, redacted - one quiet row under the questions. The
   punchline of the section, not a gimmick. */
.table-redacted {
  display: grid;
  grid-template-columns: minmax(72px, auto) 1fr;
  gap: 36px;
  padding: 34px 0 0;
  align-items: start;
}
.table-redacted__num {
  width: 46px;
  height: 18px;
  margin-top: 4px;
  background: var(--navy);
  opacity: 0.78;
  border-radius: 1px;
}
.table-redacted .bar {
  display: inline-block;
  height: 13px;
  background: var(--navy);
  opacity: 0.78;
  border-radius: 1px;
  margin: 0 10px 9px 0;
}
.table-redacted__caption {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-top: 8px;
}

/* One speaker line under the questions - one person speaking, hung off
   a gold rule (member-voice treatment from the home page). */
.table-section__voice {
  margin: 56px 0 0;
  padding-left: 30px;
  border-left: 2px solid var(--gold-bright);
  max-width: 54ch;
}
.table-section__voice p {
  font-family: var(--serif);
  font-size-adjust: 0.49;
  font-size: 1.22rem;
  line-height: 1.6;
  color: var(--navy-mid);
}

/* ============================================================
   WHAT STAYED IN THE ROOM - full-bleed dark band
   ============================================================ */
.stayed {
  position: relative;
  background: var(--navy-deep);
  color: var(--cream);
  padding: 150px 56px;
  overflow: hidden;
}
.stayed__watermark {
  position: absolute;
  top: 50%;
  right: -14%;
  transform: translateY(-50%);
  width: 760px;
  height: 760px;
  background-color: var(--violet);
  opacity: 0.07;
  -webkit-mask: var(--lion-mask) no-repeat center / contain;
          mask: var(--lion-mask) no-repeat center / contain;
  pointer-events: none;
}
.stayed__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.stayed__headline {
  font-family: var(--serif);
  font-size-adjust: 0.49;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 30px;
}
.stayed__line {
  font-family: var(--serif);
  font-size-adjust: 0.49;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.55;
  color: rgba(245,242,234,0.82);
  max-width: 46ch;
  margin: 0 auto;
}

/* ============================================================
   CTA - quiet door on cream (tiers__cta treatment)
   ============================================================ */
.door { padding: 130px 56px 110px; text-align: center; }
.door__line {
  font-family: var(--serif);
  font-size-adjust: 0.49;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.3;
  color: var(--navy);
  max-width: 30ch;
  margin: 0 auto 36px;
}

/* ============================================================
   PREV / NEXT - quiet session navigation
   ============================================================ */
.session-nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 56px 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.session-nav__spacer { flex: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.page-footer {
  background: var(--navy);
  border-top: 1px solid rgba(247,244,236,0.08);
  padding: 36px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-footer__copy {
  font-family: var(--sans); font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.12em; color: rgba(247,244,236,0.25);
}
.page-footer__nav { display: flex; gap: 32px; }
.page-footer__nav a {
  font-family: var(--sans); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none;
  color: rgba(247,244,236,0.35); transition: color 0.2s;
}
.page-footer__nav a:hover { color: var(--gold-bright); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .masthead { padding: 18px 28px; }
  .masthead.is-scrolled { padding: 12px 28px; }
  .event-hero { padding-top: 145px; }
  .event-hero__inner, .event-intro__inner, .table-section__inner { padding-left: 28px; padding-right: 28px; }
  .event-hero__byline { margin-bottom: 44px; }
  .speakers--two { grid-template-columns: 1fr; }
  .event-intro { padding-top: 64px; }
  .table-section { padding: 84px 0 96px; }
  .table-section__grid { grid-template-columns: 1fr; gap: 40px; }
  .table-item { grid-template-columns: minmax(56px, auto) 1fr; gap: 22px; padding: 28px 0; }
  .stayed { padding: 110px 28px; }
  .door { padding: 100px 28px 84px; }
  .session-nav { padding: 0 28px 64px; }
  .page-footer { flex-direction: column; gap: 18px; padding: 28px; text-align: center; }
  .page-footer__nav { flex-wrap: wrap; justify-content: center; gap: 18px; }
}

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