/* =========================================================
   Dental Wisdom — Shared Stylesheet
   Design tokens, base styles, shared components (header,
   footer, nav, Join modal, buttons, cards, gallery, reveal).
   Vibe: calm luxury, warm Jewish community, premium but
   approachable. Mobile-first.
   ========================================================= */

/* -----------------------------
   1. Design tokens
   ----------------------------- */
:root {
  /* Colors */
  --color-ivory: #FBF9F4;
  --color-sand: #F1ECE2;
  --color-ink: #1E2A38;
  --color-gold: #B8892A;      /* warm gold (was #D9A441) */
  --color-gold-warm: #B8892A; /* canonical warm gold token */
  --color-gold-dark: #9e7523; /* darkened gold — button hover backgrounds */
  --color-gold-text: #8C6A1A; /* darkened gold for text — passes WCAG AA (4.65:1 on white) */
  --color-parchment: #EDE8DE; /* warm section band */
  --color-slate: #5C6670;
  --color-white: #FFFFFF;

  /* Semantic aliases */
  --color-bg: var(--color-ivory);
  --color-bg-alt: var(--color-sand);
  --color-text: var(--color-ink);
  --color-text-muted: var(--color-slate);
  --color-accent: var(--color-gold-warm); /* was seaglass — now warm gold */
  --color-cta: var(--color-gold-warm);    /* was coral — now warm gold */
  --color-highlight: var(--color-gold-warm);
  --color-border: rgba(30, 42, 56, 0.12);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Type scale — fixed per breakpoint, no vw-based scaling
     (vw-based clamp caused sizes to vary across pages in Safari
     depending on content overflow width) */
  --fs-h1: 2.25rem;
  --fs-h2: 1.75rem;
  --fs-h3: 1.25rem;
  --fs-lg: 1.25rem;
  --fs-body: 1rem;
  --fs-small: 0.9rem;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 3.25rem;
  --space-2xl: 4rem;

  /* Layout */
  --container-max: 1200px;
  --container-pad: 1.25rem;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;

  /* Effects */
  --shadow-card: 0 8px 30px rgba(30, 42, 56, 0.08);
  --shadow-card-hover: 0 14px 40px rgba(30, 42, 56, 0.14);
  --transition-base: 220ms ease;
  --transition-slow: 500ms ease;

  /* Header height (used for sticky offsets / scroll anchors) */
  --header-height: 76px;
  --subnav-height: 52px;

  /* z-index scale */
  --z-header: 100;
  --z-overlay-menu: 200;
  --z-modal: 300;
  --z-floating-button: 150;
}

@media (min-width: 768px) {
  :root {
    --container-pad: 2rem;
    --fs-h1: 3rem;
    --fs-h2: 2.25rem;
    --fs-h3: 1.5rem;
    --fs-body: 1.0625rem;
  }
}

@media (min-width: 1280px) {
  :root {
    --fs-h1: 4rem;
    --fs-h2: 2.75rem;
    --fs-h3: 1.75rem;
    --fs-body: 1.125rem;
  }
}

/* -----------------------------
   2. Reset & base
   ----------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip; /* prevents horizontal scroll at the viewport level (iOS Safari fix) */
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-ink);
  text-decoration: underline;
  text-decoration-color: rgba(30,42,56,0.25);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--color-gold-warm);
  text-decoration-color: var(--color-gold-warm);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 var(--space-md);
  color: var(--color-ink);
  letter-spacing: 0.01em;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p {
  margin: 0 0 var(--space-md);
}

ul {
  margin: 0 0 var(--space-md);
  padding-left: 1.25rem;
}

/* Visible, accessible focus state everywhere */
:focus-visible {
  outline: 3px solid var(--color-gold-warm);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* -----------------------------
   3. Utilities
   ----------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-ink);
  color: var(--color-ivory);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
}

/* Section bands */
.section {
  padding: var(--space-xl) 0;
}

.section--compact {
  padding: var(--space-lg) 0;
}

.section--sand {
  background-color: var(--color-bg-alt);
}

.section--ivory {
  background-color: var(--color-bg);
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.section-heading h1 {
  font-size: var(--fs-h2);
}

.section-heading p {
  color: var(--color-text-muted);
}

.text-center { text-align: center; }

/* Keep in-page anchor targets (e.g. #upcoming-sessions) clear of the
   sticky header when jumped/scrolled to. */
[id] {
  scroll-margin-top: var(--header-height);
}

/* On pages with the sticky conference sub-nav, anchors need extra offset */
body.has-subnav [id] {
  scroll-margin-top: calc(var(--header-height) + var(--subnav-height));
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-text);
  margin-bottom: var(--space-xs);
}

/* Subtle background texture (very light noise, used sparingly) */
.texture {
  background-image:
    radial-gradient(circle at 20% 20%, rgba(47, 126, 118, 0.04), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(217, 164, 65, 0.05), transparent 45%);
}

/* -----------------------------
   4. Buttons
   ----------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-body);
  text-decoration: none;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base), color var(--transition-base);
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--color-cta);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-gold-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-card-hover);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--color-ink);
  color: var(--color-ink);
}

.btn-secondary:hover {
  background-color: var(--color-ink);
  color: var(--color-ivory);
}

.btn-accent {
  background-color: var(--color-gold-warm);
  color: var(--color-white);
}

.btn-accent:hover {
  background-color: var(--color-gold-dark);
  color: var(--color-white);
}

/* -----------------------------
   5. Header & Navigation
   ----------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background-color: var(--color-ivory);
  border-bottom: 1px solid var(--color-border);
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(184,137,42,0.3);
  box-shadow: 0 2px 24px rgba(30,42,56,0.07);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

/* Logo box: section label on top ("Conference" / "Live" / "Deals"),
   Dental Wisdom logo mark on the bottom. General (non-section) pages
   use .site-logo--plain and show just the logo mark. */
.site-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.35rem 1rem;
  border: 3px solid var(--color-ink);
  border-radius: 3px;
  min-height: 56px;
  line-height: 1;
  text-decoration: none;
  transition: border-color var(--transition-base);
}

.site-logo:hover {
  border-color: var(--color-ink);
  opacity: 0.75;
}

.site-logo--plain {
  padding: 0.5rem 1rem;
}

.site-logo__section {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ink);
}

.site-logo__mark {
  display: block;
  height: 28px;
  width: auto;
}

/* Desktop nav */
.site-nav {
  display: none;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__list a {
  color: var(--color-ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition-base), color var(--transition-base);
}

.site-nav__list a:hover,
.site-nav__list a[aria-current="page"] {
  color: var(--color-ink);
  border-bottom-color: var(--color-gold-warm);
}

/* Mobile menu toggle */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid var(--color-ink);
  border-radius: 6px;
  cursor: pointer;
  color: var(--color-ink);
  z-index: calc(var(--z-overlay-menu) + 1);
  position: relative;
}

.menu-toggle__icon {
  width: 26px;
  height: 26px;
}

/* Full-screen mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: var(--color-sand);
  z-index: var(--z-overlay-menu);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  transform: translateY(-100%);
  transition: transform var(--transition-slow);
  visibility: hidden;
}

.mobile-menu.is-open {
  transform: translateY(0);
  visibility: visible;
}

.mobile-menu__logo {
  display: block;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(30,42,56,0.15);
  margin-bottom: 0.5rem;
  text-align: center;
}

.mobile-menu__logo img {
  height: 44px;
  width: auto;
  display: inline-block;
  border: 2px solid var(--color-ink);
  border-radius: 6px;
  padding: 0.5rem 1rem;
}

.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-menu__list a {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-ink);
  text-decoration: none;
  font-weight: 700;
}

.mobile-menu__list a:hover {
  color: var(--color-ink);
  border-bottom: 2px solid var(--color-gold-warm);
}

.mobile-menu__list a[aria-current="page"] {
  color: var(--color-ink);
  border-bottom: 2px solid var(--color-gold-warm);
  text-decoration: none;
}

/* Focus indicator for mobile menu links — uses an outline rather than
   the gold underline so it doesn't visually clash with aria-current="page".
   The auto-focus on open targets the first link, so this must look
   clearly different from the active-page underline. */
.mobile-menu__list a:focus-visible {
  outline: 2px solid var(--color-gold-warm);
  outline-offset: 4px;
  border-bottom: none;
}

body.menu-open {
  overflow: hidden;
}

@media (min-width: 768px) {
  .site-nav {
    display: block;
  }
  .menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none;
  }
}

@media (min-width: 768px) {
  .sub-nav {
    overflow-x: visible;
  }
  .sub-nav__bar {
    flex-wrap: nowrap;
    justify-content: center;
    gap: var(--space-md);
    padding: 0;
    height: var(--subnav-height);
    width: 100%;
    min-width: unset;
  }
}

/* Conference sub-navigation (Overview • Agenda • Speakers • FAQ • Register) */
.sub-nav {
  background-color: var(--color-sand);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: var(--header-height);
  z-index: 90;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}
.sub-nav::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.sub-nav__bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 0.35rem 0.75rem;
  padding: 0.5rem 1rem;
  height: auto;
  min-height: var(--subnav-height);
  width: max-content;
  min-width: 100%;
}

/* Desktop: center the sub-nav bar. The earlier @media(min-width:768px)
   block above also sets this, but the unconditional rule right above
   (added June 19 for mobile scrolling) comes later in source order and
   was winning the cascade on desktop too — this restores centering. */
@media (min-width: 768px) {
  .sub-nav__bar {
    justify-content: center;
  }
}

.sub-nav__bar a {
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  text-decoration: none;
}

.sub-nav__bar a:hover,
.sub-nav__bar a[aria-current="page"] {
  color: var(--color-ink);
  border-bottom: 2px solid var(--color-gold-warm);
}

.sub-nav__bar a.btn {
  color: var(--color-white);
  padding: 0.4rem 1.1rem;
  font-size: 0.8rem;
}

.sub-nav__bar a.btn:hover {
  color: var(--color-white);
}

/* -----------------------------
   6. Hero
   ----------------------------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,42,38,0.35) 0%, rgba(30,42,38,0.55) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-2xl) 0;
  text-align: center;
}

.hero__content h1 {
  color: var(--color-white);
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 20px rgba(0,0,0,0.85), 0 0 8px rgba(0,0,0,0.6);
}

.hero__lede {
  font-size: 1.15rem;
  max-width: 60ch;
  margin-bottom: var(--space-lg);
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
}

@media (min-width: 1280px) {
  .hero__lede {
    font-size: 1.25rem;
  }
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  font-size: 1.05rem;
  justify-content: center;
}

.hero__facts span {
  display: inline-flex;
  align-items: center;
}

/* Mobile: stack each fact on its own line */
@media (max-width: 767px) {
  .hero__facts {
    flex-direction: column;
    gap: 0.35rem;
    align-items: center;
  }
}

.hero__note {
  font-size: var(--fs-small);
  opacity: 0.9;
  margin-bottom: var(--space-lg);
}

/* -----------------------------
   7. Cards
   ----------------------------- */
.card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  box-shadow: 0 2px 10px rgba(30, 42, 56, 0.07);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(30, 42, 56, 0.11);
}

.card h3 {
  margin-bottom: var(--space-xs);
}

.card-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

@media (min-width: 540px) {
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 640px) {
  .card-grid--2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── Live Delivers Cards ── */
.live-delivers-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-md) var(--space-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.live-delivers-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(30, 42, 56, 0.13);
}

.live-delivers-icon {
  color: var(--color-gold-warm);
  line-height: 0;
}

.live-delivers-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  color: var(--color-ink);
  margin: 0;
}

.live-delivers-blurb {
  color: var(--color-text-muted);
  font-size: var(--fs-small);
  line-height: 1.65;
  margin: 0;
}

/* ── Conference Overview Section (navy split layout) ── */
.conf-overview-section {
  background-color: var(--color-ink);
  color: var(--color-white);
}

.conf-overview-heading {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.conf-overview-eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-text);
  margin-bottom: 0.5rem;
}

.conf-overview-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  color: var(--color-white);
  margin: 0;
}

.conf-overview-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 900px) {
  .conf-overview-body {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .conf-overview-title {
    font-size: 2rem;
  }
}

.conf-overview-left > p {
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 1em;
}

.conf-pricing-box {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  margin-top: var(--space-lg);
  color: var(--color-ink); /* reset inherited white */
}

.conf-pricing-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-text);
  margin-bottom: var(--space-sm);
}

.conf-pricing-row {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-ink);
  margin-bottom: 0.25rem;
}

.conf-pricing-row strong {
  color: var(--color-ink);
}

.conf-pricing-note {
  font-size: 0.85rem;
  color: var(--color-slate);
  margin: var(--space-sm) 0 var(--space-md);
  line-height: 1.6;
}

.conf-pricing-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* Asymmetric 2-column photo mosaic */
.conf-photo-grid {
  display: flex;
  gap: 1.25rem;
}

.conf-photo-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.conf-photo-col img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
  flex-shrink: 0;
}

/* Short photos (top-left, bottom-right) */
.conf-photo--short { height: 240px; }

/* Tall photos (top-right, bottom-left) */
.conf-photo--tall  { height: 380px; }

/* Pricing block (legacy — kept for other pages) */
.pricing-grid {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: 1fr;
  max-width: 780px;
  margin: var(--space-md) auto 0;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  text-align: center;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-gold-warm);
  margin-bottom: 0.15rem;
}

.pricing-card__label {
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

/* Session cards (Dental Wisdom Live: Upcoming / Past Sessions) */
/* Legacy session card meta (kept for backward compat) */
.session-card__meta {
  font-weight: 600;
  color: var(--color-gold-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: var(--fs-small);
  margin-bottom: var(--space-xs);
}

.session-card__presenter {
  font-style: italic;
  color: var(--color-text-muted);
}

/* Session list — horizontal event rows (Dental Wisdom Live) */
.session-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.session-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.session-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.session-item__date {
  flex: 0 0 5.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  background: var(--color-ink);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) 0.5rem;
  color: #fff;
}

.session-item__month {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  opacity: 0.85;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.session-item__day {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 700;
}

.session-item__time {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-top: 0.5rem;
  line-height: 1.4;
  text-align: center;
}

.session-item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.session-item__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.35;
  margin: 0 0 0.3rem;
  color: var(--color-text);
}

.session-item__presenter {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-ink);
  margin: 0 0 0.6rem;
}

.session-item__desc {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 var(--space-sm);
}

.session-item__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
}

.session-item__sponsor {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.session-item__sponsor a {
  color: var(--color-gold-text);
  font-weight: 600;
  text-decoration: none;
}

.session-item__sponsor a:hover {
  text-decoration: underline;
}

.session-item--past .session-item__date {
  background: var(--color-slate, #6B7889);
  opacity: 0.85;
}

.session-item--hidden {
  display: none;
}

.sessions-show-more {
  display: block;
  margin: var(--space-md) auto 0;
}

/* Mobile: stack date badge above body */
@media (max-width: 540px) {
  .session-item {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .session-item__date {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem var(--space-sm);
    border-radius: var(--radius-sm);
  }

  .session-item__month {
    margin-bottom: 0;
  }

  .session-item__day {
    font-size: 1.5rem;
  }

  .session-item__time {
    margin-top: 0;
    margin-left: auto;
    text-align: right;
  }
}

/* Numbered step badge (legacy — kept for safety) */
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

/* ── How It Works: connected steps ── */
.steps-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  max-width: 860px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  position: relative;
}

/* vertical connector line (mobile) */
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 1.75rem;
  top: 3.5rem;
  width: 2px;
  bottom: calc(-1 * var(--space-xl));
  background: linear-gradient(to bottom, var(--color-gold-warm) 0%, var(--color-border) 100%);
}

.step-bubble {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--color-gold-warm);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(184, 137, 42, 0.30);
}

.step-body {
  padding-top: 0.6rem;
}

.step-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  color: var(--color-ink);
  margin: 0 0 var(--space-xs);
}

.step-desc {
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Desktop: horizontal layout with connecting line */
@media (min-width: 768px) {
  .steps-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    max-width: 100%;
  }

  .step-item {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
    padding: 0 var(--space-md);
  }

  .step-item:not(:last-child)::after {
    left: calc(50% + 1.75rem);
    top: 1.75rem;
    width: calc(100% - 3.5rem);
    bottom: auto;
    height: 2px;
    background: linear-gradient(to right, var(--color-gold-warm) 0%, var(--color-border) 100%);
  }

  .step-body {
    padding-top: 0;
  }
}

/* -----------------------------
   8. Gallery / carousel
   ----------------------------- */
.logo-scroll-wrap:has(.gallery-photo) .logo-scroll-track {
  animation-duration: 120s;
}

.logo-scroll-item.gallery-photo {
  width: 320px;
  height: 240px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 0;
}

.logo-scroll-item.gallery-photo img {
  width: 320px;
  height: 240px;
  object-fit: cover;
  display: block;
}
.gallery {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.gallery__track {
  display: flex;
  gap: var(--space-md);
  width: max-content;
  animation: gallery-scroll 120s linear infinite;
}

.gallery__track:hover {
  animation-play-state: paused;
}

@keyframes gallery-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .gallery__track { animation: none; }
}

.gallery__item {
  flex: 0 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.gallery__item img {
  width: 320px;
  height: 240px;
  object-fit: cover;
  display: block;
}

/* -----------------------------
   9. Floating "Join the Network" button
   ----------------------------- */
.join-fab {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  z-index: var(--z-floating-button);
}

.join-fab__button {
  background-color: var(--color-gold-warm);
  color: var(--color-white);
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: var(--shadow-card-hover);
  transition: transform var(--transition-base), background-color var(--transition-base);
}

.join-fab__button:hover {
  transform: translateY(-2px);
  background-color: var(--color-gold-dark);
}

.join-fab {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.join-fab--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Slightly smaller on narrow phones */
@media (max-width: 479px) {
  .join-fab__button {
    padding: 0.65rem 1.1rem;
    font-size: 0.875rem;
  }
}

/* -----------------------------
   10. Modal (Join the Network)
   ----------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.modal.is-open {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(30, 42, 56, 0.55);
  animation: fadeIn var(--transition-base);
}

.modal__dialog {
  position: relative;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  width: 100%;
  max-width: 560px;
  max-height: 85vh;
  overflow-y: auto;
  z-index: 1;
  animation: modalIn var(--transition-slow);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background-color: var(--color-sand);
  color: var(--color-ink);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__close:hover {
  background-color: var(--color-gold-warm);
  color: var(--color-white);
}

.modal__title {
  margin-bottom: var(--space-xs);
}

.modal__iframe-wrap {
  margin-top: var(--space-md);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.modal__iframe-wrap iframe {
  width: 100%;
  min-height: 420px;
  border: none;
  display: block;
}

.modal__placeholder {
  padding: var(--space-lg);
  text-align: center;
  color: var(--color-text-muted);
  background-color: var(--color-sand);
  border-radius: var(--radius-sm);
}

.modal__note {
  margin-top: var(--space-sm);
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* -----------------------------
   11. Accordion (Conference Details)
   ----------------------------- */

.accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.accordion details {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border-left: 4px solid transparent;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  overflow: hidden;
}

.accordion details[open] {
  border-left-color: var(--color-ink);
  box-shadow: var(--shadow-card-hover);
}

.accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--color-ink);
  user-select: none;
  transition: color var(--transition-base);
}

.accordion summary::-webkit-details-marker { display: none; }

.accordion details[open] > summary {
  color: var(--color-gold-warm);
}

.accordion summary::after {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background-color: var(--color-ink);
  border-radius: 50%;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  -webkit-mask-size: cover;
  mask-size: cover;
  transition: transform 0.3s ease;
}

.accordion details[open] > summary::after {
  transform: rotate(180deg);
}

.accordion__body {
  padding: 0 var(--space-md) var(--space-md);
  border-top: 1px solid var(--color-border);
}

.accordion__body > *:first-child {
  margin-top: var(--space-md);
}

.accordion__body p,
.accordion__body ul,
.accordion__body li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
}

.accordion__body ul {
  padding-left: 1.4em;
}

.accordion__body li {
  margin-bottom: 0.35em;
}

@media (prefers-reduced-motion: no-preference) {
  .accordion details[open] .accordion__body {
    animation: accordionOpen 0.22s ease;
  }
  @keyframes accordionOpen {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

@media (min-width: 768px) {
  .accordion summary {
    padding: var(--space-md) var(--space-lg);
  }
  .accordion__body {
    padding: 0 var(--space-lg) var(--space-lg);
  }
}

/* -----------------------------
   12. Footer
   ----------------------------- */
.site-footer {
  background-color: var(--color-ink);
  color: var(--color-ivory);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.site-footer a {
  color: var(--color-ivory);
}

.site-footer a:hover {
  color: var(--color-gold);
}

.footer-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-sm);
  align-items: start;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-grid h2,
.footer-grid h3 {
  color: var(--color-ivory);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand p {
  font-size: 0.875rem;
  font-style: italic;
  opacity: 0.85;
  margin-bottom: 0.25rem;
  line-height: 1.5;
  max-width: 34ch;
}

.footer-brand p:last-of-type {
  margin-bottom: 0;
}

/* Footer logo (top of brand column, links to top of page) */
.footer-logo {
  display: flex;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.footer-logo img {
  width: 200px;
  height: auto;
}

/* Stacked groups column */
.footer-stack {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-stack h3 {
  margin-bottom: 0.35rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.25rem;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--space-md);
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.7);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
}

.footer-bottom a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--color-gold);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  align-items: center;
}

.footer-legal span[aria-hidden] {
  opacity: 0.5;
}

/* -----------------------------
   12. Scroll reveal animations
   ----------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Ensure the HTML hidden attribute always wins over display rules */
[hidden] { display: none !important; }

/* -----------------------------
   13. Placeholders (for missing media/content)
   ----------------------------- */
.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--color-sand);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  font-size: var(--fs-small);
  padding: var(--space-lg);
  min-height: 180px;
}

.placeholder--flyer {
  min-height: 420px;
}

.placeholder--hero {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0;
  border: none;
  background: linear-gradient(135deg, var(--color-ink), var(--color-ink));
  color: var(--color-ivory);
}

/* -----------------------------
   14. Misc helpers
   ----------------------------- */
.lede {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-md);
}

.btn-equal {
  flex: 1 1 0;
  max-width: 18rem;
  text-align: center;
}

.cta-band {
  text-align: center;
}

.cta-band h2 {
  margin-bottom: var(--space-sm);
}

/* -----------------------------
   15. Legal pages (Terms, Privacy)
   ----------------------------- */
.legal {
  max-width: 70ch;
  margin: 0 auto;
}

.legal__meta {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin: 0 0 var(--space-md);
  line-height: 1.8;
}

.legal__intro {
  font-size: 1.05rem;
}

.legal h2 {
  font-size: var(--fs-h3);
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.legal h2:first-of-type {
  margin-top: var(--space-lg);
}

.legal h3 {
  font-size: 1.15rem;
  margin-top: var(--space-lg);
}

.legal p,
.legal ul {
  color: var(--color-text);
}

.legal p + h3,
.legal ul + h3 {
  margin-top: var(--space-lg);
}

/* Responsive 16:9 video embed (YouTube) */
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

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

.video-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-top: var(--space-md);
  flex-wrap: wrap;
}

.video-caption em {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  font-style: italic;
}

/* Sponsor / partner logo grid */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.logo-grid .placeholder {
  min-height: 100px;
  font-size: 0.8rem;
}

/* Conference flyer wrapper */
.flyer {
  max-width: 640px;
  margin: 0 auto;
}

/* -----------------------------
   15. Deals page (search, filters, deal cards)
   ----------------------------- */
.deals-toolbar {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.deals-search {
  position: relative;
  max-width: 28rem;
  margin: 0 auto;
  width: 100%;
}

.deals-search__icon {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  width: 1.1rem;
  height: 1.1rem;
  color: var(--color-text-muted);
  pointer-events: none;
}

.deals-search input[type="search"] {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-text);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.85rem 1.25rem 0.85rem 2.75rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.deals-search input[type="search"]::placeholder {
  color: var(--color-text-muted);
}

.deals-search input[type="search"]:focus {
  border-color: var(--color-accent);
}

.deals-categories {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  justify-content: center;
}

.deals-categories__btn {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-text);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  transition: background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base);
}

.deals-categories__btn:hover {
  border-color: var(--color-accent);
}

.deals-categories__btn[aria-pressed="true"] {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

/* Agenda filter bar (Agenda page) — quiet text tabs, underline on the
   active day, matching the editorial program style below it */
.agenda-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.agenda-tabs__btn {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-slate);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.4rem 0.1rem;
  cursor: pointer;
  transition: color var(--transition-base), border-color var(--transition-base);
}

.agenda-tabs__btn:hover {
  color: var(--color-ink);
}

.agenda-tabs__btn.is-active {
  color: var(--color-ink);
  border-bottom-color: var(--color-gold-warm);
}

/* Day heading shown in all-days view */
.agenda-day-section + .agenda-day-section {
  margin-top: var(--space-xl);
}

.agenda-day-heading {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--color-ink);
  text-align: center;
  margin: 0 0 0.6rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.agenda-day-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-border);
  margin: 0.9rem auto 0;
}

.agenda-list {
  max-width: 760px;
  margin: 0 auto;
}

.agenda-list:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.agenda-item,
.agenda-concurrent-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}

.agenda-item:last-child,
.agenda-concurrent-block:last-child {
  border-bottom: none;
}

/* Soft gold wash behind CE-credit sessions (June 2026) — bleeds slightly
   past the row's text edges via negative margin so it reads as a gentle
   highlight, not a hard-edged card. Text position is unchanged because
   the matching padding cancels the margin out. */
.agenda-item--ce,
.agenda-concurrent-block--ce {
  background: linear-gradient(90deg, rgba(184, 137, 42, 0.10), rgba(184, 137, 42, 0.02));
  border-radius: 8px;
  margin-left: -1rem;
  margin-right: -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Left column: time + (optional) CE pill, stacked */
.agenda-item__time-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

/* CE credit indicator — pill badge (kept neutral; gold is reserved for
   the time label and sponsor credit only — see June 2026 design note) */
.agenda-item__ce-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-ink);
  border: 1px solid var(--color-ink);
  border-radius: 1rem;
  padding: 0.15rem 0.65rem;
}

.agenda-item__time {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-text);
}

.agenda-item__details h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.3;
  margin: 0 0 0.4rem;
}

.agenda-item__speaker-link {
  color: var(--color-ink);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--color-gold-warm);
}
.agenda-item__speaker-link:hover {
  color: var(--color-gold-text);
}

.agenda-item__sponsor {
  font-style: italic;
  color: var(--color-gold-text);
}
.agenda-item__sponsor-link {
  color: var(--color-gold-text);
  text-decoration: none;
  font-weight: 700;
}
.agenda-item__sponsor-link:hover {
  text-decoration: underline;
}

.agenda-item__meta {
  color: var(--color-text-muted);
  font-size: var(--fs-small);
  margin: 0;
}

.agenda-item__sponsor-label {
  font-style: italic;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--color-gold-text);
  margin: 0.5rem 0 0;
}

@media (min-width: 640px) {
  .agenda-item,
  .agenda-concurrent-block {
    grid-template-columns: 150px 1fr;
    gap: var(--space-md);
  }
}

/* ── Concurrent session block ─────────────────────────── */
.agenda-concurrent-block__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ink);
  margin: 0 0 0.7rem;
}

.agenda-concurrent-block__list {
  border-left: 1px solid var(--color-border);
  padding-left: 1rem;
}

.agenda-concurrent-card {
  margin-bottom: 0.85rem;
}

.agenda-concurrent-card:last-child {
  margin-bottom: 0;
}

.agenda-concurrent-card h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.3;
  margin: 0 0 0.2rem;
}

.agenda-concurrent-card .agenda-item__meta {
  font-size: 0.82rem;
}

/* Multi-part session sharing one concurrent-block card — one title line per
   lecture (styled like the card's normal h3), speakers/location/sponsor all
   roll into the single shared meta line below, same as every other card. */
.agenda-concurrent-card__part-line {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--color-text);
}

.agenda-concurrent-card__part-line + .agenda-concurrent-card__part-line {
  margin-top: 0.2rem;
}

.agenda-concurrent-card__part-line:last-of-type {
  margin-bottom: 0.3rem;
}

/* ── Agenda day prev/next nav (single-day mode) ───────── */
.agenda-day-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.agenda-day-nav[hidden] {
  display: none;
}

.agenda-day-nav__label {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  color: var(--color-text);
  text-align: center;
  flex: 1;
}

.agenda-day-nav__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: none;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-gold-text);
  font-size: var(--fs-small);
  font-weight: 600;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background var(--transition-base), border-color var(--transition-base);
}

.agenda-day-nav__btn:hover:not(:disabled) {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.agenda-day-nav__btn:disabled {
  opacity: 0.35;
  cursor: default;
}

/* ─────────────────────────────────────────────────────── */
.deals-suggest {
  text-align: center;
  color: var(--color-text-muted);
  margin: 0;
}

.deals-suggest .btn {
  margin-left: var(--space-xs);
  padding: 0.5rem 1.1rem;
  vertical-align: middle;
}

/* Deal card */
.deal-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.deal-card__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: var(--space-sm);
  background-color: var(--color-sand);
}

.deal-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: var(--color-white);
  transform: scale(1.15);
}

.deal-card__image-wrap a {
  display: block;
  width: 100%;
  height: 100%;
}

.deal-card__image-wrap a:hover img,
.deal-card__image-wrap a:focus-visible img {
  opacity: 0.85;
}

.deal-card__image-wrap .placeholder {
  position: absolute;
  inset: 0;
  min-height: 0;
  border-radius: var(--radius-sm);
  margin: 0;
}

.deals-no-results {
  text-align: center;
  color: var(--color-text-muted);
  padding: var(--space-lg);
}

/* Reserve space for two lines so company names of different
   lengths still line up across a row of cards. */
.deal-card h3 {
  min-height: 2.4em;
}

.deals-group {
  margin-bottom: var(--space-xl);
}

.deals-group:last-child {
  margin-bottom: 0;
}

.deals-group__heading {
  font-size: var(--fs-h3);
  color: var(--color-ink);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-xs);
  margin-bottom: var(--space-md);
}

.deal-card .deal-card__promo {
  font-weight: 700;
  font-style: italic;
  font-size: var(--fs-small);
  color: var(--color-ink);
  margin-bottom: var(--space-sm);
}

.deal-card__tagline {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-ink);
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-xs);
}

.deal-card p {
  color: var(--color-text-muted);
}

.deal-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Deal card — compact preview + clickable "View details →" */
.deal-card {
  cursor: pointer;
  border: none;
  text-align: left;
  width: 100%;
  background: var(--color-white);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.deal-card:hover,
.deal-card:focus-visible {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transform: translateY(-2px);
  outline: 2px solid var(--color-gold-warm);
  outline-offset: 2px;
}

.deal-card__preview {
  color: var(--color-text-muted);
  font-size: var(--fs-small);
  line-height: 1.5;
  margin-bottom: var(--space-sm);
  flex: 1;
}

.deal-card__cta {
  display: inline-block;
  margin-top: auto;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-gold-text);
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
}

.deal-card:hover .deal-card__cta,
.deal-card:focus-visible .deal-card__cta {
  color: var(--color-ink);
}

/* Deal detail modal */
.deal-modal .modal__dialog {
  max-width: 540px;
}

.deal-modal__logo {
  text-align: center;
  margin-bottom: var(--space-md);
}

.deal-modal__logo img {
  max-height: 100px;
  max-width: 240px;
  object-fit: contain;
}

.deal-modal__tagline {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

/* -----------------------------
   16. Sponsor logo strip (agenda + homepage — non-clickable scrolling view)
   ----------------------------- */
.sponsor-strip-section {
  /* no extra bottom padding — regular .section padding handles it */
}

.logo-scroll-wrap {
  overflow: hidden;
  margin: var(--space-lg) 0 var(--space-xl);
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  transform: translateZ(0); /* forces GPU compositing — fixes iOS Safari mask-image + overflow:hidden bug */
}
.logo-scroll-wrap::-webkit-scrollbar { display: none; }

.logo-scroll-track {
  display: flex;
  gap: var(--space-md);
  width: max-content;
  animation: logoScroll 60s linear infinite;
}

/* Hover-pause only on real pointer devices — prevents mobile touch getting stuck */
@media (hover: hover) {
  .logo-scroll-wrap:hover .logo-scroll-track {
    animation-play-state: paused;
  }
}
/* JS adds this class on touch; removed after 5s */
.logo-scroll-wrap.is-touch-paused .logo-scroll-track,
.logo-scroll-wrap.is-paused .logo-scroll-track {
  animation-play-state: paused;
}


@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-scroll-track { animation: none; }
}

.logo-scroll-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 120px;
  padding: 6px 12px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.logo-scroll-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.logo-scroll-item--text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* Clickable sponsor cards (conference-sponsors.html + conference-agenda.html) */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: 940px;
  margin: var(--space-lg) auto 0;
}

@media (min-width: 700px) {
  .sponsor-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sponsor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-md);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  font: inherit;
  color: var(--color-ink);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.sponsor-card:hover,
.sponsor-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.sponsor-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
}

.sponsor-card__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.sponsor-card__logo--text {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text-muted);
}

.sponsor-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
}

.sponsor-card__cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold-text);
}

/* Tiered sponsor display (conference-sponsors.html) */
.sponsor-tier {
  margin-top: var(--space-2xl);
}

.sponsor-tier:first-child {
  margin-top: var(--space-lg);
}

.sponsor-tier__label {
  text-align: center;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.sponsor-tier__label::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin: var(--space-xs) auto 0;
  background-color: var(--color-gold-warm);
  border-radius: 2px;
}

.sponsor-tier__grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

/* max-width is set inline by sponsors.js (dynamically computed per tier
   so no row ever has exactly 1 orphan card). CSS just sizes the cards. */
.sponsor-tier__grid { margin-inline: auto; } /* center the grid on the page */

.sponsor-tier__grid--platinum .sponsor-card { width: 230px; }
.sponsor-tier__grid--gold     .sponsor-card { width: 195px; }
.sponsor-tier__grid--silver   .sponsor-card { width: 165px; }
.sponsor-tier__grid--bronze   .sponsor-card { width: 145px; }

.sponsor-tier__grid--platinum .sponsor-card__logo { height: 120px; }
.sponsor-tier__grid--gold     .sponsor-card__logo { height: 96px; }
.sponsor-tier__grid--silver   .sponsor-card__logo { height: 78px; }
.sponsor-tier__grid--bronze   .sponsor-card__logo { height: 62px; }

/* Shared pill style — tier badge, attending badge, past-sponsor badge, pending badge */
.sponsor-modal__tier,
.sponsor-attending-badge,
.sponsor-past-badge,
.sponsor-pending-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  line-height: 1.4;
  margin: 0;
  vertical-align: middle;
}
.sponsor-modal__tier { background: var(--color-sand); color: var(--color-ink); }
.sponsor-modal__tier--platinum { background: #e8e0d0; color: #5a4a2a; }
.sponsor-modal__tier--gold     { background: #f5e9c8; color: #7a5a10; }
.sponsor-modal__tier--silver   { background: #e8ecf0; color: #3a4a5a; }
.sponsor-modal__tier--bronze   { background: #f0e8e0; color: #6a4a38; }
.sponsor-attending-badge       { background: #f5e9c8; color: #7a5a10; }
/* Muted gray — visually quieter than the gold Attending pill */
.sponsor-past-badge            { background: #e4e2dd; color: #5a5650; }
/* Soft blue-gray — signals pending/provisional status */
.sponsor-pending-badge         { background: #e0e7ef; color: #3a4f6a; }

/* Card: attending badge pinned top-left */
.sponsor-card {
  position: relative;
}
.sponsor-card__attending {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
}

/* Modal: tier pill + attending badge side by side */
.sponsor-modal__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

/* Sponsor pop-up: logo header above the reused .modal styling */
.sponsor-modal__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  margin-bottom: var(--space-sm);
}

.sponsor-modal__logo img {
  max-width: 70%;
  max-height: 100%;
  object-fit: contain;
}

.sponsor-modal__video {
  margin-top: var(--space-md);
  border-radius: 6px;
  overflow: hidden;
}

/* -----------------------------
   FAQ Accordion
   ----------------------------- */
.faq-group {
  margin-bottom: var(--space-xl);
}

.faq-group__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  color: var(--color-gold-warm);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-border);
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  overflow: hidden;
}

.faq-item__trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--color-ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  line-height: 1.4;
  transition: background var(--transition-base), color var(--transition-base);
}

.faq-item__trigger:hover {
  background: var(--color-sand);
  color: var(--color-gold-warm);
}

.faq-item__trigger:focus-visible {
  outline: 2px solid var(--color-gold-warm);
  outline-offset: -2px;
}

.faq-item__trigger[aria-expanded="true"] {
  color: var(--color-gold-warm);
  background: var(--color-sand);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-gold-warm);
  transition: transform var(--transition-base);
}

.faq-item__trigger[aria-expanded="true"] .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms ease;
}

.faq-item__panel[aria-hidden="false"] {
  grid-template-rows: 1fr;
}

.faq-item__panel-inner {
  overflow: hidden;
}

.faq-item__body {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-text-muted);
  font-size: var(--fs-body);
  line-height: 1.7;
}

.faq-item__body p { margin: 0 0 0.75rem; }
.faq-item__body p:last-child { margin-bottom: 0; }

.faq-item__body ul {
  margin: 0.5rem 0 0.75rem 1.25rem;
  padding: 0;
}

.faq-item__body ul li { margin-bottom: 0.25rem; }

.faq-item__body a {
  color: var(--color-gold-text);
  text-decoration: underline;
}

.faq-item__body a:hover { color: var(--color-ink); }

@media (prefers-reduced-motion: reduce) {
  .faq-item__panel,
  .faq-item__icon {
    transition: none;
  }
}


/* ============================================================
   HOMEPAGE (index.html) — PAGE-SPECIFIC STYLES
   Moved from inline <style> block — do not duplicate in other pages
   ============================================================ */

/* ────── TOKEN OVERRIDES — gold palette ────── */
/* Note: duplicate :root block removed; base link color consolidated into the shared a{} rule above. */
:focus-visible { outline-color: var(--color-gold-warm); }

/* Buttons */
.btn-primary { background-color: var(--color-gold-warm); color: #fff; border-color: var(--color-gold-warm); }
.btn-primary:hover, .btn-primary:focus-visible { background-color: var(--color-gold-dark); border-color: var(--color-gold-dark); color: #fff; }
.btn-secondary { background-color: transparent; border-color: var(--color-ink); color: var(--color-ink); }
.btn-secondary:hover, .btn-secondary:focus-visible { background-color: var(--color-ink); color: var(--color-ivory); }

/* Join FAB + modal */
.join-fab__button { background-color: var(--color-gold-warm); color: #fff; }
.join-fab__button:hover { background-color: var(--color-gold-dark); }
.modal__close:hover { background-color: var(--color-gold-warm); color: #fff; }

/* Eyebrows */
.eyebrow, .conf-overview-eyebrow, .conf-pricing-eyebrow { color: var(--color-gold-warm); }

/* Texture: gold-only wash */
.texture {
  background-image:
    radial-gradient(circle at 10% 60%, rgba(184,137,42,0.05), transparent 40%),
    radial-gradient(circle at 90% 40%, rgba(184,137,42,0.04), transparent 40%);
}

/* Footer links */
.site-footer a { color: rgba(251,249,244,0.68); text-decoration: none; }
.site-footer a:hover { color: var(--color-gold-warm); }

/* Pricing inside accordion */
.pricing-card__price { color: var(--color-gold-warm); }
.pricing-card { border-color: var(--color-parchment); }

/* ────── NAV GOLD BORDER ON SCROLL ────── */
.site-nav__list a:hover,
.site-nav__list a[aria-current="page"] {
  color: var(--color-ink);
  border-bottom-color: var(--color-gold-warm);
}
.mobile-menu__list a:hover,
.mobile-menu__list a[aria-current="page"] { color: var(--color-ink); border-bottom: 2px solid var(--color-gold-warm); text-decoration: none; }

/* Mobile menu logo */
.mobile-menu__logo {
  display: block;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(30,42,56,0.15);
  margin-bottom: 0.5rem;
}
.mobile-menu__logo img { height: 40px; width: auto; display: inline-block; border: 2px solid var(--color-ink); border-radius: 6px; padding: 0.5rem 1rem; }

/* Sub-nav: wrap to 2 rows on mobile */
@media (max-width: 767px) {
  .sub-nav { overflow-x: clip; } /* clip prevents horizontal page scroll without breaking sticky */
  .sub-nav__bar {
    width: 100%;          /* override max-content so flex-wrap actually fires */
    overflow-x: visible;
    flex-wrap: wrap;
    white-space: normal;
    height: auto;
    padding: 0.5rem 0.75rem;
    gap: 0.35rem 0.75rem;
    justify-content: center;
  }
  .sub-nav__bar a,
  .sub-nav__bar .btn { flex-shrink: 0; font-size: 0.8rem; }
}

.sub-nav__bar a:hover,
.sub-nav__bar a[aria-current="page"] {
  color: var(--color-ink);
  border-bottom: 2px solid var(--color-gold-warm);
  padding-bottom: 2px;
}
.site-header {
  transition: border-color 300ms ease, box-shadow 300ms ease;
}
.site-header.is-scrolled {
  border-bottom-color: rgba(184,137,42,0.3);
  box-shadow: 0 2px 24px rgba(30,42,56,0.07);
}

/* ────── HERO VIDEO OVERLAY ────── */
.hero__overlay {
  background: linear-gradient(
    to bottom,
    rgba(18, 14, 8, 0.10) 0%,
    rgba(18, 14, 8, 0.28) 45%,
    rgba(18, 14, 8, 0.72) 100%
  );
}

/* ────── EDITORIAL H1: two-part typographic treatment ────── */
.hero__h1-main {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.hero__h1-sub {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  opacity: 0.82;
  margin-top: 0.5rem;
  line-height: 1.35;
}

@media (min-width: 768px) {
  .hero__content { text-align: left; max-width: 760px; }
  .hero__content h1 { margin-left: 0; margin-right: 0; max-width: none; }
  .hero__lede { margin-left: 0; margin-right: 0; }
  .hero__facts { justify-content: flex-start; gap: 0; }
  .hero__facts span { display: inline-flex; align-items: center; white-space: nowrap; }
  .hero__facts span + span::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 1em;
    background: rgba(217,164,65,0.55);
    margin: 0 1rem;
    flex-shrink: 0;
  }
  .hero__h1-main { font-size: 3.5rem; }
  .hero__h1-sub  { font-size: 1.75rem; }
}
@media (min-width: 1280px) {
  .hero__h1-main { font-size: 4.25rem; }
  .hero__h1-sub  { font-size: 2rem; }
}

/* ────── ANIMATED SCROLL CUE ────── */
.hero__scroll-cue {
  display: none; /* hidden on mobile by default */
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 3;
  user-select: none;
}
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5) 0%, transparent 100%);
  animation: scroll-pulse 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scroll-pulse {
  0%   { opacity: 0.3; transform: scaleY(0.4) translateY(-30%); }
  50%  { opacity: 0.9; transform: scaleY(1) translateY(0); }
  100% { opacity: 0.3; transform: scaleY(0.4) translateY(-30%); }
}
@media (min-width: 768px) {
  .hero__scroll-cue { display: flex; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll-line { animation: none; opacity: 0.4; }
}

/* ────── STATS STRIP ────── */
.stats-strip {
  background-color: #1E2A38;
  border-top: 1px solid rgba(184,137,42,0.2);
  border-bottom: 1px solid rgba(184,137,42,0.2);
  padding: 1.75rem 0;
}
.stats-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stats-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 2rem;
  text-align: center;
}
.stats-strip__number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-gold-warm);
  line-height: 1;
}
.stats-strip__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(251,249,244,0.6);
  margin-top: 0.3rem;
}
.stats-strip__divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(184,137,42,0.25);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .stats-strip__inner { gap: 0.5rem 0; }
  .stats-strip__item { padding: 0.4rem 1.1rem; }
  .stats-strip__divider:nth-child(4),
  .stats-strip__divider:nth-child(8) { display: none; }
}

/* Community intro (slot 3, ivory bg) */
.community-intro-section { background-color: #FBF9F4; }

/* ────── OVERVIEW + PRICING box ────── */
.conf-overview-left {
  display: flex;
  flex-direction: column;
}
.conf-pricing-box {
  margin-top: auto;
  border: 1px solid rgba(184,137,42,0.3);
  border-radius: var(--radius-md);
  background-color: #fff;
  padding: var(--space-md) var(--space-md);
  text-align: center;
}
.conf-pricing-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  margin-bottom: var(--space-xs);
}
.conf-pricing-row {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-ink);
  margin-bottom: 0.15rem;
}
.conf-pricing-row strong { color: var(--color-gold-warm); }
.conf-pricing-note {
  font-size: 0.78rem;
  color: var(--color-slate);
  margin: var(--space-xs) 0 var(--space-sm);
  line-height: 1.55;
}

/* Community intro two-column split */
.community-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 900px) {
  .community-split { grid-template-columns: 5fr 7fr; gap: var(--space-2xl); }
}
.community-split .section-heading { text-align: left; margin-bottom: 0; max-width: none; }
.community-split .section-heading h2 { font-size: 2rem; line-height: 1.2; }
@media (min-width: 1280px) { .community-split .section-heading h2 { font-size: 2.5rem; } }
.community-split .lede p { font-size: 1.05rem; line-height: 1.8; color: var(--color-ink); }
.community-split .lede p:last-child { margin-bottom: 0; }

/* ────── GOLD RULE DIVIDERS ────── */
#section-video { background-color: #FBF9F4; }
#section-video .container::before,
#section-experience .container::before,
#section-cta .container::before {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background: var(--color-gold-warm);
  margin: 0 auto 0.75rem;
  opacity: 0.65;
}

/* ────── GALLERY — sand ────── */
#section-gallery { background-color: #F1ECE2; }
#section-gallery .section-heading h2 { margin-bottom: var(--space-xs); }
#section-gallery .section-heading p { font-size: 0.95rem; }

/* ────── CONFERENCE DETAILS — white, document feel ────── */
#section-details { background-color: #FFFFFF; }
.accordion details { border-bottom: 1px solid var(--color-parchment); }
.accordion summary { padding: 1.25rem 1.25rem; font-size: 1rem; font-weight: 600; color: var(--color-ink); }
.accordion details[open] > summary { color: var(--color-gold-warm); }
.accordion__body { padding: 0 1.25rem 1.5rem; }

/* Compact pricing chips */
.pricing-compact {
  display: flex; flex-wrap: wrap; gap: 0.75rem; margin: var(--space-md) 0;
}
.pricing-compact__item {
  display: flex; align-items: baseline; gap: 0.6rem;
  background: #FBF9F4; border: 1px solid #EDE8DE;
  border-radius: 8px; padding: 0.55rem 1.1rem;
}
.pricing-compact__price {
  font-family: var(--font-heading); font-size: 1.25rem;
  font-weight: 700; color: var(--color-gold-warm); line-height: 1;
}
.pricing-compact__label { font-size: 0.82rem; color: var(--color-slate); font-weight: 500; }

/* Compact room chips */
.room-compact { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: var(--space-md) 0; }
.room-compact__item {
  display: flex; flex-direction: column; align-items: center;
  background: #FBF9F4; border: 1px solid #EDE8DE;
  border-radius: 8px; padding: 0.7rem 1.2rem; min-width: 110px; text-align: center;
}
.room-compact__type {
  font-size: 0.72rem; color: var(--color-slate); font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.3rem;
}
.room-compact__price {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--color-gold-warm);
}

/* Compact family chips */
.family-compact { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: var(--space-md) 0; }
.family-compact__item {
  display: flex; align-items: baseline; gap: 0.6rem;
  background: #FBF9F4; border: 1px solid #EDE8DE;
  border-radius: 8px; padding: 0.55rem 1.1rem;
}
.family-compact__price {
  font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--color-gold-warm);
}
.family-compact__label { font-size: 0.82rem; color: var(--color-slate); font-weight: 500; }

/* ────── WHAT YOU EXPERIENCE — dark blue ────── */
#section-experience { background-color: #1E2A38; padding-top: 1.75rem; padding-bottom: 2.5rem; }
#section-experience .section-heading h2 { color: #fff; }
.experience-list {
  list-style: none; padding: 0; margin: 0 auto var(--space-md); max-width: 860px;
}
.experience-list li {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 0.85rem 0; border-bottom: 1px solid rgba(184,137,42,0.2);
  font-size: 1.05rem; line-height: 1.6; color: rgba(251,249,244,0.88);
}
.experience-list li:first-child { border-top: 1px solid rgba(184,137,42,0.2); }
.experience-list li::before {
  content: '✦'; color: var(--color-gold-warm); font-size: 0.65rem;
  flex-shrink: 0; margin-top: 0.5rem; opacity: 0.8;
}
.experience-italic {
  text-align: center; font-style: italic; color: rgba(251,249,244,0.6);
  font-size: 1rem; max-width: 520px; margin: var(--space-xs) auto var(--space-md); line-height: 1.7;
}

/* ────── SPONSORS — ivory ────── */
#section-sponsors { background-color: #FBF9F4; }
#section-sponsors .logo-scroll-wrap { margin-top: 0; }
.sponsor-thanks {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

/* ────── FINAL CTA + QUESTIONS — parchment ────── */
#section-cta {
  background-color: #EDE8DE;
  text-align: center;
  padding: 1.5rem 0;
}
#section-cta h2 {
  color: var(--color-ink); font-size: 2rem; max-width: 16ch;
  margin: 0 auto 1rem; line-height: 1.25;
}
@media (min-width: 768px) { #section-cta h2 { font-size: 2.75rem; } }
#section-cta .btn-primary { background-color: var(--color-gold-warm); border-color: var(--color-gold-warm); color: #fff; }
#section-cta .btn-primary:hover { background-color: var(--color-gold-dark); }
#section-cta .cta-questions {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-slate);
}
#section-cta .cta-questions a {
  color: var(--color-gold-text);
  font-weight: 600;
  text-decoration: none;
}
#section-cta .cta-questions a:hover { text-decoration: underline; }
