/* ============================================================
   Dental Leaders Summit — Design System
   Palette:  Navy #011D4A | Cream #F7EAE2 | Gold #CB8E4D
   Type:     Display: "Playfair Display" | Body/UI: "Inter"
   ============================================================ */

:root {
  --navy-900: #011D4A;
  --navy-800: #082951;
  --navy-700: #12345f;
  --navy-600: #24476f;
  --navy-tint-10: rgba(1, 29, 74, 0.06);
  --navy-tint-20: rgba(1, 29, 74, 0.12);

  --cream-100: #FBF4EE;
  --cream-200: #F7EAE2;
  --cream-300: #F1E0D3;

  --gold-500: #CB8E4D;
  --gold-600: #8C5A22;
  --gold-100: #F1DDBE;

  --ink: #0E1B2C;
  --ink-muted: #4B5C72;
  --ink-faint: #5A6B80;
  --white: #FFFFFF;

  --border-soft: rgba(1, 29, 74, 0.12);
  --border-softer: rgba(1, 29, 74, 0.08);

  --shadow-card: 0 4px 24px rgba(1, 29, 74, 0.06), 0 1px 3px rgba(1, 29, 74, 0.04);
  --shadow-lift: 0 12px 40px rgba(1, 29, 74, 0.14);

  --font-display: "Playfair Display", "Iowan Old Style", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
img, picture { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }

@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 {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-200);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- Visually hidden (skip link target etc.) ---------- */
.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: 1rem; top: -60px;
  background: var(--navy-900);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- Focus states (accessibility) ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

section { position: relative; }

.section-pad { padding-block: 64px; }
.section-pad-sm { padding-block: 40px; }

@media (max-width: 640px) {
  .section-pad { padding-block: 44px; }
  .section-pad-sm { padding-block: 32px; }
}

.bg-cream { background: var(--cream-200); }
.bg-navy { background: var(--navy-900); color: var(--white); }
.bg-white { background: var(--white); }

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  white-space: nowrap;
  max-width: 100%;
}
@media (max-width: 480px) {
  .eyebrow { white-space: normal; }
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}
.eyebrow.no-dash::before { display: none; }
.eyebrow.no-dash { gap: 0; }
.bg-navy .eyebrow { color: var(--gold-500); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }

h1 { font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 1.3rem + 1.7vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem); }
h4 { font-size: 1.05rem; }

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 16px; color: var(--ink-muted); font-size: 1.05rem; }

.lede {
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 46ch;
}

.divider-rule {
  width: 44px;
  height: 3px;
  background: var(--gold-500);
  border-radius: 2px;
  margin-block: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
}
.btn-primary:hover { background: var(--navy-900); color: var(--white); box-shadow: var(--shadow-lift); transform: translateY(-2px); }

.btn-gold {
  background: var(--gold-500);
  color: var(--navy-900);
}
.btn-gold:hover { background: var(--navy-900); color: var(--white); box-shadow: var(--shadow-lift); transform: translateY(-2px); }

.btn-ghost {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }

.bg-navy .btn-ghost { background: var(--gold-500); color: var(--navy-900); border-color: transparent; }
.bg-navy .btn-ghost:hover { background: var(--white); color: var(--navy-900); border-color: var(--white); }

.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   Header / Navigation
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 12px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-badge {
  display: inline-flex;
  align-items: center;
  transition: transform 0.25s var(--ease);
}
.brand:hover .logo-badge { transform: translateY(-1px); }
.brand .logo-badge img { height: 46px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  padding-block: 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a[aria-current="page"] {
  color: var(--white);
  border-bottom-color: var(--gold-500);
}

.nav-cta { flex-shrink: 0; display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
  color: var(--white);
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 940px) {
  .nav-links {
    position: fixed;
    inset: 84px 0 0 0;
    background: var(--navy-900);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 28px 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
    overflow-y: auto;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a {
    padding: 14px 6px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
  }
  .nav-links a[aria-current="page"] { border-left: 3px solid var(--gold-500); padding-left: 14px; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn span.btn-label-full { display: none; }
}

@media (min-width: 941px) {
  .icon-close { display: none; }
}
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: inline-flex; }
.nav-toggle .icon-close { display: none; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background: var(--cream-200);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(1,29,74,0.05) 0 1px, transparent 1px 68px);
  opacity: 0.5;
  pointer-events: none;
}
.hero-grid {
  min-height: 620px;
  display: flex;
  align-items: center;
  padding-block: 0;
  z-index: 2;
}
.hero-copy { max-width: 540px; padding-block: 56px; }
.hero-copy p.lede { margin-top: 18px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 26px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy-900);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 18px; height: 18px; color: var(--gold-600); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52%;
  z-index: 1;
}
.hero-media img {
  width: 100%;
  height: 100%;
  border-radius: 340px 0 0 340px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .hero-grid { min-height: 0; display: block; padding-block: 0; }
  .hero-copy { max-width: none; padding: 32px 0 40px; }
  .hero-media { position: static; width: auto; max-width: none; margin: 0; order: -1; }
  .hero-media img { width: 100%; height: auto; aspect-ratio: 900/689; border-radius: 0; }
}

/* ---------- Feature strip (icon cards) ---------- */
.feature-panel {
  background: var(--cream-200);
  border: 1px solid var(--border-softer);
  border-radius: var(--radius-lg);
  padding: 40px 8px;
  margin-top: 8px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.feature-item {
  padding: 12px 22px;
  text-align: left;
  border-right: 1px solid var(--gold-500);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  width: 52px; height: 52px;
  color: var(--navy-900);
  margin-bottom: 14px;
}
.feature-item h4 { margin-bottom: 8px; }
.feature-item p { font-size: 0.88rem; color: var(--ink-muted); }

@media (max-width: 980px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-item:nth-child(3) { border-right: none; }
  .feature-item:nth-child(n+4) { border-top: 1px solid var(--gold-500); padding-top: 24px; margin-top: 10px; }
}
@media (max-width: 620px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2n) { border-right: none; }
  .feature-item:nth-child(odd) ~ .feature-item { }
  .feature-item:nth-child(n+3) { border-top: 1px solid var(--gold-500); padding-top: 24px; margin-top: 10px; }
}

/* ---------- Stat bar ---------- */
.stat-bar {
  background: var(--navy-900);
  color: var(--white);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 40px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-inline: 20px;
  border-right: 1px solid rgba(255,255,255,0.14);
}
.stat-item:last-child { border-right: none; }
.stat-icon { width: 32px; height: 32px; color: var(--gold-500); flex-shrink: 0; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.05rem;
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1.1;
}
.stat-item p { font-size: 0.98rem; color: rgba(255,255,255,0.72); margin-top: 2px; }

@media (max-width: 860px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.14); padding-top: 24px; }
  .stat-item:nth-child(4) { border-right: none; }
}
@media (max-width: 480px) {
  .stat-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; }
  .stat-item:nth-child(n+2) { border-top: 1px solid rgba(255,255,255,0.14); padding-top: 20px; }
}

/* ---------- Two column: agenda + venue ---------- */
.split-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
}
@media (max-width: 860px) {
  .split-grid { grid-template-columns: 1fr; gap: 44px; }
}
.split-col { display: flex; flex-direction: column; padding-left: 28px; border-left: 1px solid var(--border-soft); }
.split-col:first-child { padding-left: 0; border-left: none; padding-right: 28px; border-right: 1px solid var(--border-soft); }
.split-col > .btn { margin-top: auto; align-self: flex-start; }
@media (max-width: 860px) {
  .split-col:first-child { border-right: none; padding-right: 0; border-bottom: 1px solid var(--border-soft); padding-bottom: 40px; }
  .split-col:last-child { border-left: none; padding-left: 0; }
}

.agenda-list { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.agenda-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--cream-200);
  border: 1px solid var(--border-softer);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.agenda-row:hover { border-color: var(--gold-500); transform: translateX(2px); }
.agenda-row svg.agenda-icon { width: 22px; height: 22px; color: var(--navy-900); flex-shrink: 0; }
.agenda-row span.agenda-label { font-weight: 600; font-size: 0.96rem; flex: 1; }
.agenda-row .agenda-plus { width: 18px; height: 18px; color: var(--gold-600); flex-shrink: 0; }

.venue-card img {
  border-radius: var(--radius-md);
  width: 100%;
  height: auto;
  aspect-ratio: 2.6/1;
  object-fit: cover;
  margin-top: 22px;
}
.venue-card p.venue-desc { margin-top: 18px; color: var(--ink-muted); }
.venue-amenities {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.venue-amenities .amenity { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; font-size: 0.88rem; font-weight: 500; color: var(--ink-muted); width: 110px; }
.venue-amenities svg { width: 32px; height: 32px; color: var(--navy-900); }

/* ---------- Partner logos strip ---------- */
.partner-strip { text-align: center; }
.partner-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: center;
  margin-top: 40px;
}
.partner-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 10px;
  background: transparent;
  border: none;
  transition: transform 0.25s var(--ease);
}
.partner-logo-card img { height: 118px; width: auto; object-fit: contain; }
.partner-logo-card:hover { transform: translateY(-3px); }
.partner-logo-card span { font-size: 0.86rem; color: var(--ink-faint); font-weight: 600; letter-spacing: 0.02em; }
@media (max-width: 700px) {
  .partner-logos { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Partner logos carousel (infinite auto-scroll) ---------- */
.partner-carousel {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
}
.partner-carousel-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 72px;
  animation: partner-scroll 26s linear infinite;
}
.partner-carousel:hover .partner-carousel-track { animation-play-state: paused; }
.partner-carousel .partner-logo-card {
  flex: 0 0 auto;
  gap: 14px;
}
.partner-carousel .partner-logo-card img { height: 96px; width: auto; max-width: 200px; object-fit: contain; }
@keyframes partner-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 700px) {
  .partner-carousel-track { gap: 48px; animation-duration: 18s; }
  .partner-carousel .partner-logo-card img { height: 76px; }
}
@media (prefers-reduced-motion: reduce) {
  .partner-carousel-track { animation: none; }
}

/* Partner logo cards grid (bordered boxes, Partner page) */
.partner-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 860px) { .partner-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .partner-card-grid { grid-template-columns: 1fr; } }

.partner-logo-box {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}
a.partner-logo-box:hover { border-color: var(--gold-500); box-shadow: var(--shadow-card); transform: translateY(-2px); }
.partner-logo-box img { max-height: 64px; width: auto; max-width: 100%; object-fit: contain; }

.partner-logo-box.is-coming-soon {
  flex-direction: column;
  gap: 10px;
  color: var(--gold-600);
  border-style: dashed;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}
.partner-logo-box.is-coming-soon svg { width: 30px; height: 30px; }

/* Light CTA band (cream/peach) used on Partner page */
.cta-band-light {
  background: var(--cream-300);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cta-band-light-left { display: flex; align-items: center; gap: 22px; flex: 1; min-width: 260px; }
.cta-band-light-left .icon-tile { background: var(--white); width: 60px; height: 60px; margin-bottom: 0; flex-shrink: 0; }
.cta-band-light-left .icon-tile svg { width: 30px; height: 30px; }
.cta-band-light-divider { width: 1px; align-self: stretch; background: var(--border-soft); }
.cta-band-light h3 { font-weight: 600; }
.cta-band-light p { color: var(--ink-muted); font-size: 0.92rem; max-width: 40ch; }
.page-partner .cta-band-light { background: var(--navy-900); }
.page-partner .cta-band-light h3 { color: var(--gold-500); }
.page-partner .cta-band-light p { color: var(--white); }
.page-partner .cta-band-light-left .icon-tile { color: var(--navy-900); }
.page-partner .cta-band-light-divider { background: rgba(255,255,255,0.16); }
@media (max-width: 700px) {
  .cta-band-light { padding: 32px 26px; }
  .cta-band-light-divider { display: none; }
}
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.78);
  padding-block: 64px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.1fr;
  gap: 40px;
}
.footer-brand .logo-badge { margin-bottom: 18px; }
.footer-brand .logo-badge img { height: 56px; width: auto; display: block; }
.footer-brand p { font-family: var(--font-display); font-style: italic; color: rgba(255,255,255,0.6); }
.footer-col h4 { color: #D0A458; font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.footer-col a, .footer-col li { font-size: 0.92rem; color: rgba(255,255,255,0.72); }
.footer-col a:hover { color: var(--white); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--gold-500); }

.footer-newsletter form { display: flex; margin-top: 14px; border-radius: 999px; overflow: hidden; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); }
.footer-newsletter input { flex: 1; background: transparent; border: none; padding: 12px 16px; color: var(--white); font-size: 0.88rem; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.footer-newsletter button { background: var(--gold-500); border: none; padding: 0 18px; display: flex; align-items: center; justify-content: center; color: var(--navy-900); }
.footer-newsletter button:hover { background: var(--gold-600); }
.footer-newsletter button svg { width: 18px; height: 18px; }

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover { color: var(--white); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.82); }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   About page — split intro hero
   ============================================================ */
.about-hero {
  background: var(--cream-200);
  overflow: hidden;
  position: relative;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: stretch;
  gap: 40px;
  padding-block: 18px;
}
.about-hero-copy { display: flex; flex-direction: column; }
.about-hero-copy .btn { margin-top: auto; align-self: flex-start; }
.about-hero-copy.is-spread h1,
.about-hero-copy.is-spread h1 em { font-style: italic; }
.about-hero h1 {
  margin-top: 14px;
}
.about-hero h1 em {
  display: block;
  font-style: italic;
  color: var(--gold-600);
  font-weight: 600;
}
.about-hero .lede { max-width: 46ch; margin-top: 6px; }
.about-hero .lede + .lede { margin-top: 6px; }
.page-partner .about-hero .lede { font-size: 1.4rem; max-width: 56ch; }
@media (min-width: 901px) {
  .page-partner .about-hero .lede-highlight { white-space: nowrap; max-width: none; }
}

.about-media {
  position: relative;
  isolation: isolate;
}
.about-media::before {
  content: "";
  position: absolute;
  right: -30px; bottom: -30px;
  width: 70%; height: 70%;
  background-image: repeating-linear-gradient(115deg, rgba(203,142,77,0.4) 0 1px, transparent 1px 14px);
  z-index: -1;
  border-radius: 0 0 40px 0;
}
.about-media img {
  width: 100%;
  aspect-ratio: 4/3.1;
  object-fit: cover;
  border-radius: 200px 24px 200px 24px;
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--gold-500);
}
.about-media.is-wide img { aspect-ratio: 3/2; }

.about-hero-grid.is-full-bleed {
  width: 100%;
  max-width: none;
  grid-template-columns: 0.78fr 1.35fr;
  gap: 22px;
  padding-top: 18px;
  padding-bottom: 64px;
  padding-left: max(16px, calc((100vw - var(--container)) / 2 + 12px));
  padding-right: 0;
}
.page-about .about-hero-grid.is-full-bleed,
.page-attend .about-hero-grid.is-full-bleed,
.page-partner .about-hero-grid.is-full-bleed,
.page-events .about-hero-grid.is-full-bleed { grid-template-columns: 1fr 1fr; gap: 56px; }
.page-about .about-hero-grid.is-full-bleed,
.page-attend .about-hero-grid.is-full-bleed,
.page-partner .about-hero-grid.is-full-bleed,
.page-events .about-hero-grid.is-full-bleed { padding-right: 20px; }

/* Events page — tighter section spacing */
.page-events .section-pad { padding-block: 36px; }
.page-events .section-pad-sm { padding-block: 24px; }
@media (max-width: 640px) {
  .page-events .section-pad { padding-block: 28px; }
  .page-events .section-pad-sm { padding-block: 20px; }
}
.about-hero-grid.is-full-bleed .about-hero-copy h1 { font-size: clamp(2.4rem, 1.5rem + 2.6vw, 3.5rem); line-height: 1.1; }
.about-hero-grid.is-full-bleed .about-hero-copy .lede { font-size: 1.08rem; line-height: 1.55; max-width: 42ch; }
.about-hero-grid.is-full-bleed .about-hero-copy .lede + .lede { margin-top: 22px; }
.about-hero-grid.is-full-bleed .about-hero-copy > div:first-child + .lede { margin-top: 22px; }
@media (max-width: 900px) {
  .about-hero-grid.is-full-bleed { padding-left: 24px; padding-right: 24px; grid-template-columns: 1fr; gap: 24px; }
  .about-hero-grid { grid-template-columns: 1fr; padding-block: 24px; }
  .about-media { order: -1; max-width: 460px; margin-inline: auto; }
  .about-media img { border-radius: 120px 20px 120px 20px; }
  .page-about .about-hero-grid.is-full-bleed,
  .page-attend .about-hero-grid.is-full-bleed,
  .page-partner .about-hero-grid.is-full-bleed,
  .page-events .about-hero-grid.is-full-bleed {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-right: 24px;
  }
}

.purpose-statement {
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
}
.purpose-statement h2 {
  margin-top: 16px;
  font-weight: 600;
  text-wrap: balance;
}

/* Plain icon grid (no card wrapper) — used on Attend page delegate-pass section */
.feature-grid-plain {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  text-align: center;
}
.feature-grid-plain .feature-item {
  border-right: 1px solid var(--gold-500);
  text-align: center;
  padding-inline: 20px;
}
.feature-grid-plain .feature-item:last-child { border-right: none; }
.feature-grid-plain .feature-icon { margin-inline: auto; }
@media (max-width: 980px) {
  .feature-grid-plain { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
  .feature-grid-plain .feature-item:nth-child(3) { border-right: none; }
  .feature-grid-plain .feature-item:nth-child(n+4) { border-top: 1px solid var(--gold-500); padding-top: 24px; }
}
@media (max-width: 620px) {
  .feature-grid-plain { grid-template-columns: repeat(2, 1fr); }
  .feature-grid-plain .feature-item:nth-child(2n) { border-right: none; }
  .feature-grid-plain .feature-item:nth-child(n+3) { border-top: 1px solid var(--gold-500); padding-top: 24px; }
}

/* Typical titles checklist + callout card (Attend page) */
.titles-list { display: flex; flex-direction: column; margin-top: 18px; }
.titles-list .check-item { padding-block: 11px; border-bottom: 1px solid var(--border-softer); }
.titles-list .check-item:last-child { border-bottom: none; }
.titles-list .check-item svg { color: var(--gold-600); }

.callout-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--cream-200);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-top: 20px;
}
.callout-card .icon-tile { margin-bottom: 0; flex-shrink: 0; background: var(--gold-100); }
.callout-card h4 { margin-bottom: 6px; }
.callout-card p { color: var(--ink-muted); font-size: 0.9rem; }
.page-hero {
  background: var(--navy-900);
  color: var(--white);
  padding-block: 30px 32px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}
.page-hero.no-corner::after { display: none; }
.page-hero .eyebrow { color: var(--gold-500); }
.page-hero h1 { margin-top: 14px; max-width: 20ch; }
.page-hero p.lede { color: rgba(255,255,255,0.75); margin-top: 16px; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--white); }

.page-contact .page-hero { padding-block: 18px 20px; }
.page-contact .page-hero .lede { margin-top: 8px; }

/* ---------- Generic content components reused across interior pages ---------- */
.card {
  background: transparent;
  border: 1px solid var(--border-softer);
  border-radius: var(--radius-md);
  padding: 30px;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.icon-tile {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--navy-tint-10);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-900);
  margin-bottom: 18px;
}
.icon-tile svg { width: 26px; height: 26px; }

.tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-900);
  background: var(--gold-100);
  padding: 5px 12px;
  border-radius: 999px;
}

/* Event detail list + venue contact (Venue page) */
.event-detail-list { display: flex; flex-direction: column; margin-top: 28px; }
.event-detail-item { display: flex; gap: 14px; align-items: flex-start; padding-block: 16px; border-bottom: 1px solid var(--border-soft); }
.event-detail-item:last-child { border-bottom: none; }
.event-detail-item svg { width: 22px; height: 22px; color: var(--gold-600); flex-shrink: 0; margin-top: 2px; }
.event-detail-item .label { font-weight: 700; color: var(--navy-900); font-size: 0.92rem; }
.event-detail-item .value { color: var(--ink-muted); font-size: 0.88rem; margin-top: 2px; }

.venue-contact-list { display: flex; flex-direction: column; gap: 14px; margin-top: 18px; }
.venue-contact-list .row { display: flex; gap: 12px; align-items: flex-start; font-size: 0.92rem; color: var(--ink-muted); }
.venue-contact-list svg { width: 18px; height: 18px; color: var(--gold-600); flex-shrink: 0; margin-top: 2px; }
.venue-contact-list a { color: var(--navy-900); font-weight: 600; }

.map-embed { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3.4; border: 1px solid var(--border-soft); box-shadow: var(--shadow-card); background: var(--cream-200); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.venue-text-fill { display: flex; flex-direction: column; }
.venue-text-fill p { margin-top: 20px; }

.experience-panel { background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 40px; margin-top: 56px; text-align: center; }
.experience-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; margin-top: 28px; }
.experience-item { text-align: center; }
.experience-icon-circle { width: 60px; height: 60px; border-radius: 50%; background: var(--gold-100); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.experience-icon-circle svg { width: 26px; height: 26px; color: var(--gold-600); }
.experience-item h4 { font-size: 0.88rem; letter-spacing: 0.02em; }
.experience-item p { color: var(--ink-muted); font-size: 0.85rem; margin-top: 8px; }

@media (max-width: 860px) { .experience-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px) { .experience-grid { grid-template-columns: 1fr; } }
.agenda-tl { position: relative; margin-top: 40px; }
.agenda-tl-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: flex-start;
  padding-block: 22px;
  border-bottom: 1px solid var(--border-softer);
}
.agenda-tl-row:last-child { border-bottom: none; }

/* Agenda page — bigger hero text, tighter section spacing */
.page-agenda .hero h1 { font-size: clamp(2.8rem, 1.9rem + 3.2vw, 4.2rem); }
.page-agenda .hero .lede { font-size: 1.15rem; }
.page-agenda .hero .container { padding-block: 40px 28px !important; }
.page-agenda .section-pad { padding-block: 36px; }
.page-agenda .section-pad-sm { padding-block: 24px; }
.page-agenda .agenda-tl { margin-top: 24px; }
.page-agenda .agenda-tl-row { padding-block: 14px; }
@media (max-width: 640px) {
  .page-agenda .section-pad { padding-block: 28px; }
  .page-agenda .section-pad-sm { padding-block: 20px; }
}

.agenda-tl-marker { position: relative; display: flex; flex-direction: row; align-items: center; gap: 10px; }
.agenda-tl-row:not(:last-child) .agenda-tl-marker::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%; bottom: -22px;
  width: 2px;
  background: var(--border-soft);
}
.agenda-tl-number {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}
.agenda-tl-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.agenda-tl-icon svg { width: 24px; height: 24px; }

.agenda-tl-content h4 { font-size: 1.05rem; letter-spacing: 0.01em; }
.agenda-tl-content p { color: var(--ink-muted); font-size: 0.92rem; margin-top: 6px; max-width: 56ch; }

.agenda-tl-time {
  font-weight: 700;
  color: var(--gold-600);
  font-size: 0.92rem;
  white-space: nowrap;
  padding-top: 14px;
}

/* Agenda page — wider timeline block, bigger text */
.page-agenda .agenda-tl-row { grid-template-columns: auto 1fr auto; gap: 32px; }
.page-agenda .agenda-tl-content h4 { font-size: 1.28rem; }
.page-agenda .agenda-tl-content p { font-size: 1.05rem; max-width: 68ch; }
.page-agenda .agenda-tl-time { font-size: 1.05rem; }
.page-agenda .agenda-tl-icon { width: 60px; height: 60px; }
.page-agenda .agenda-tl-icon svg { width: 28px; height: 28px; }
.page-agenda .agenda-tl-number { width: 30px; height: 30px; font-size: 0.85rem; }
.page-agenda #speakers-section + section .narrow.mx-auto,
.page-agenda section .narrow.mx-auto { max-width: 980px; }

@media (max-width: 700px) {
  .agenda-tl-row { grid-template-columns: auto 1fr; }
  .agenda-tl-time { grid-column: 2; padding-top: 0; }
  .agenda-tl-icon { width: 42px; height: 42px; }
  .agenda-tl-icon svg { width: 20px; height: 20px; }
}

/* Speaker cards (Agenda page "Meet the Experts") */
.speaker-card {
  background: var(--white);
  border: 1px solid var(--border-softer);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.speaker-card .speaker-photo { aspect-ratio: 4/5; overflow: hidden; background: var(--navy-tint-10); }
.speaker-card .speaker-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.speaker-card .speaker-body { padding: 20px; }
.speaker-card .role { color: var(--gold-600); font-weight: 600; font-size: 0.9rem; margin-top: 8px; }
.speaker-card p.bio { color: var(--ink-muted); font-size: 0.86rem; margin-top: 10px; }

.speaker-card.is-placeholder .speaker-photo {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1;
}
.speaker-card.is-placeholder .speaker-photo svg { width: 38%; height: 38%; color: var(--gold-500); opacity: 0.6; }
.speaker-card.is-placeholder .speaker-body { text-align: center; }
.speaker-card.is-placeholder .divider-rule { margin-inline: auto; }

/* Timeline (Agenda page) */
.timeline { position: relative; margin-top: 40px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 88px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--border-soft);
}
@media (max-width: 700px) { .timeline::before { left: 22px; } }

.timeline-row {
  display: grid;
  grid-template-columns: 70px 36px 1fr;
  gap: 16px;
  padding-block: 22px;
  align-items: start;
}
@media (max-width: 700px) { .timeline-row { grid-template-columns: 0px 36px 1fr; } .timeline-row time { display: none; } }

.timeline-row time { font-weight: 700; color: var(--navy-900); font-size: 0.92rem; padding-top: 4px; }
.timeline-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-900);
  z-index: 1;
}
.timeline-dot svg { width: 17px; height: 17px; }
.timeline-content { background: var(--white); border: 1px solid var(--border-softer); border-radius: var(--radius-sm); padding: 18px 20px; box-shadow: var(--shadow-card); }
.timeline-content h4 { margin-bottom: 6px; }
.timeline-content p { color: var(--ink-muted); font-size: 0.92rem; }
.timeline-content .tag { margin-bottom: 10px; }

/* Pricing / tier cards (Partner page) */
.tier-card {
  background: var(--white);
  border: 1px solid var(--border-softer);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.tier-card.is-featured { border-color: var(--gold-500); box-shadow: var(--shadow-lift); position: relative; }
.tier-card.is-featured::before {
  content: "Limited to 2 per category";
  position: absolute; top: -13px; left: 28px;
  background: var(--gold-500); color: var(--navy-900);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 5px 14px; border-radius: 999px;
}
.tier-card ul { display: flex; flex-direction: column; gap: 12px; margin: 22px 0 26px; flex: 1; }
.tier-card li { display: flex; gap: 10px; font-size: 0.92rem; color: var(--ink-muted); align-items: flex-start; }
.tier-card li svg { width: 18px; height: 18px; color: var(--gold-600); flex-shrink: 0; margin-top: 2px; }

/* FAQ (accordion via <details>) */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-softer);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-plus { width: 18px; height: 18px; color: var(--gold-600); flex-shrink: 0; transition: transform 0.25s var(--ease); }
.faq-item[open] summary .faq-plus { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 22px 20px; color: var(--ink-muted); font-size: 0.95rem; }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.field .required { color: var(--gold-600); }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  background: var(--white);
  font-size: 0.95rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(203,142,77,0.18);
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field-hint { font-size: 0.8rem; color: var(--ink-faint); margin-top: 6px; }
.form-note { font-size: 0.85rem; color: var(--ink-faint); margin-top: 18px; }

.form-status { margin-top: 18px; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 0.9rem; display: none; }
.form-status.is-success { display: block; background: rgba(59,130,90,0.1); color: #1f6b45; border: 1px solid rgba(59,130,90,0.25); }
.form-status.is-error { display: block; background: rgba(190,60,60,0.08); color: #a13a3a; border: 1px solid rgba(190,60,60,0.22); }

/* Contact info cards */
.contact-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 40px; max-width: 620px; }
.contact-info-spread { max-width: 620px; justify-content: center; grid-template-columns: 1fr 1fr; gap: 20px; margin-inline: auto; }
@media (max-width: 700px) { .contact-info-spread { grid-template-columns: 1fr; } }
@media (max-width: 800px) { .contact-info-grid { grid-template-columns: 1fr; } }
.contact-info-card { text-align: left; }
.contact-info-card a { font-weight: 600; color: var(--navy-900); }
.contact-info-card a:hover { color: var(--gold-600); }

/* CTA band */
.cta-band {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -60px; bottom: -100px;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
}
.cta-band h2 { max-width: 18ch; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 700px) { .cta-band { padding: 36px 28px; } }

/* Team/organizer cards (About page) */
.person-card { text-align: left; }
.person-avatar {
  width: 100%; aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: var(--navy-tint-10);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-900);
  margin-bottom: 18px;
  overflow: hidden;
}
.person-avatar svg { width: 40%; height: 40%; opacity: 0.5; }
.person-card h4 { margin-bottom: 2px; }
.person-card .role { font-size: 0.85rem; color: var(--gold-600); font-weight: 600; margin-bottom: 10px; }
.person-card p.bio { font-size: 0.9rem; color: var(--ink-muted); }

/* Values grid (About) */
.value-card { padding: 8px 0; }

/* Event card (Events page) */
.event-card {
  background: var(--white);
  border: 1px solid var(--border-softer);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.event-card .event-media { aspect-ratio: 16/10; background: var(--navy-900); position: relative; overflow: hidden; }
.event-card .event-media img { width: 100%; height: 100%; object-fit: cover; }
.event-card .event-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.event-status { position: absolute; top: 16px; left: 16px; z-index: 2; }
.event-card .event-meta { display: flex; gap: 16px; font-size: 0.85rem; color: var(--ink-muted); margin: 12px 0 14px; flex-wrap: wrap; }
.event-card .event-meta span { display: flex; align-items: center; gap: 6px; }
.event-card .event-meta svg { width: 15px; height: 15px; color: var(--gold-600); }
.event-card p.event-desc { color: var(--ink-muted); font-size: 0.93rem; flex: 1; }
.event-card .btn { margin-top: 18px; align-self: flex-start; }

/* Utility */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-lg { margin-top: 40px; }
.narrow { max-width: 720px; }
.gap-list { display: flex; flex-direction: column; gap: 16px; }
.check-item { display: flex; gap: 12px; align-items: flex-start; }
.check-item svg { width: 20px; height: 20px; color: var(--gold-600); flex-shrink: 0; margin-top: 2px; }
.check-item p { color: var(--ink-muted); font-size: 1.08rem; }

.two-col-text { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 800px) { .two-col-text { grid-template-columns: 1fr; gap: 24px; } }

.quote-block {
  border-left: 3px solid var(--gold-500);
  padding-left: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--navy-900);
}

.img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
