/* ═══════════════════════════════════════════════════════
   ROLHR Conference — Main Stylesheet
   Layers on top of Bootstrap 5
   ═══════════════════════════════════════════════════════ */

/* ─── 1. Custom Properties ─────────────────────────────── */
:root {
  --navy:           #0D1B2A;
  --gold:           #C4963A;
  --gold-light:     #E8C87A;
  --gold-pale:      #F5ECD4;
  --bg:             #F8F7F4;
  --white:          #FFFFFF;
  --text:           #1A1A2E;
  --text-secondary: #555566;
  --text-muted:     #8888AA;
  --border:         #E0D5C0;
  --danger:         #C0392B;

  --font-ar:          'Cairo', sans-serif;
  --font-heading-en:  'EB Garamond', serif;
  --font-body-en:     'Lato', sans-serif;

  --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.14);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --transition: 150ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

/* ─── 3. Typography — Language Aware ────────────────────── */
[lang="ar"] body,
[lang="ar"] {
  font-family: var(--font-ar);
  line-height: 1.75;
}

[lang="en"] body,
[lang="en"] {
  font-family: var(--font-body-en);
  line-height: 1.55;
}

[lang="ar"] h1,
[lang="ar"] h2,
[lang="ar"] h3,
[lang="ar"] h4,
[lang="ar"] h5,
[lang="ar"] h6 {
  font-family: var(--font-ar);
  font-weight: 700;
}

[lang="en"] h1,
[lang="en"] h2,
[lang="en"] h3,
[lang="en"] h4,
[lang="en"] h5,
[lang="en"] h6 {
  font-family: var(--font-heading-en);
  font-weight: 600;
}

/* ─── 4. Skip Link ──────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: .5rem 1.25rem;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top var(--transition);
}

.skip-link:focus {
  top: .5rem;
}

/* ─── 5. Topbar ─────────────────────────────────────────── */
.conf-topbar {
  height: 40px;
  background-color: var(--navy);
  display: flex;
  align-items: center;
}

.conf-patronage {
  font-size: .8125rem;
  color: var(--gold-light);
  letter-spacing: .02em;
}

.lang-toggle-btn {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold);
  padding: .125rem .625rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.lang-toggle-btn:hover,
.lang-toggle-btn:focus-visible {
  background: var(--gold);
  color: var(--navy);
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

/* ─── 6. Navbar ─────────────────────────────────────────── */
.conf-navbar {
  background-color: var(--white);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
  min-height: 68px;
}

.conf-navbar.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--border);
}

/* Brand */
.conf-brand {
  text-decoration: none;
  padding: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-line1 {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .01em;
}

.brand-line2 {
  font-size: .75rem;
  font-weight: 400;
  color: var(--gold);
}

/* Nav links */
.conf-navbar .nav-link {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: .5rem .875rem;
  position: relative;
  transition: color var(--transition);
}

.conf-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: width var(--transition);
}

.conf-navbar .nav-link:hover,
.conf-navbar .nav-link.active {
  color: var(--navy);
}

.conf-navbar .nav-link:hover::after,
.conf-navbar .nav-link.active::after {
  width: 60%;
}

/* Mobile lang toggle */
.lang-toggle-mobile {
  font-size: .75rem;
  padding: .1rem .5rem;
}

/* ─── 7. Buttons ─────────────────────────────────────────── */
.btn-gold {
  background-color: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
  font-weight: 700;
  font-size: .9375rem;
  padding: .625rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  display: inline-block;
  line-height: 1.4;
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background-color: #a57e2e;
  border-color: #a57e2e;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(196,150,58,.35);
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  font-weight: 700;
  font-size: .9375rem;
  padding: .625rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  text-decoration: none;
  display: inline-block;
  line-height: 1.4;
}

.btn-gold-outline:hover,
.btn-gold-outline:focus-visible {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

.btn-gold-outline-light {
  background: transparent;
  color: var(--gold-light);
  border: 2px solid var(--gold-light);
  font-weight: 700;
  font-size: .9375rem;
  padding: .625rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  text-decoration: none;
  display: inline-block;
  line-height: 1.4;
}

.btn-gold-outline-light:hover,
.btn-gold-outline-light:focus-visible {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
}

/* ─── 8. Section Utilities ──────────────────────────────── */
.section-py {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-heading {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}

.section-divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

[lang="en"] .section-divider {
  margin-left: 0;
}

[lang="ar"] .section-divider {
  margin-right: 0;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 640px;
}

/* ─── 9. Cards ──────────────────────────────────────────── */
.conf-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.conf-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.conf-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 1.375rem;
}

.conf-card-number {
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .25rem;
}

.conf-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}

.conf-card-desc {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ─── 10. Breadcrumb ────────────────────────────────────── */
.conf-breadcrumb {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: .75rem 0;
}

.conf-breadcrumb .breadcrumb {
  margin: 0;
  font-size: .875rem;
}

.conf-breadcrumb .breadcrumb-item a {
  color: var(--gold);
  text-decoration: none;
}

.conf-breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}

.conf-breadcrumb .breadcrumb-item.active {
  color: var(--text-secondary);
}

/* ─── 11. Partners Strip ────────────────────────────────── */
.partners-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1.5rem 0;
}

.partner-logo-item {
  filter: brightness(0) invert(1) opacity(.7);
  transition: opacity var(--transition), filter var(--transition);
  max-height: 52px;
  width: auto;
}

.partner-logo-item:hover {
  opacity: 1;
  filter: brightness(0) invert(1) opacity(1);
}

/* ─── 12. Footer ─────────────────────────────────────────── */
.conf-footer {
  background-color: var(--navy);
  color: rgba(255,255,255,.75);
}

.footer-brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand-slogan {
  font-size: .875rem;
  color: var(--gold);
}

.footer-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}

.footer-patronage {
  font-size: .8125rem;
  color: var(--gold-light);
}

.footer-heading {
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links {
  margin: 0;
  padding: 0;
}

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

.footer-links a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .9rem;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-light);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: .625rem;
  color: rgba(255,255,255,.7);
  font-size: .875rem;
}

.footer-contact .bi {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .15em;
}

.footer-partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: center;
}

.footer-partner-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(.6);
  transition: opacity var(--transition), filter var(--transition);
}

.footer-partner-logo:hover {
  filter: brightness(0) invert(1) opacity(1);
}

.footer-bottom {
  background-color: rgba(0,0,0,.25);
  padding: 1rem 0;
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
}

.footer-lang-toggle {
  color: var(--gold);
  text-decoration: none;
  font-size: .8125rem;
  font-weight: 600;
  transition: color var(--transition);
}

.footer-lang-toggle:hover {
  color: var(--gold-light);
}

/* ─── 13. Responsive ─────────────────────────────────────── */
@media (max-width: 767px) {
  .section-py {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .conf-navbar .nav-link {
    padding: .625rem 1rem;
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .btn-gold,
  .btn-gold-outline,
  .btn-gold-outline-light {
    width: 100%;
    text-align: center;
  }
}

/* ─── 15. Hero ───────────────────────────────────────────── */

.conf-hero {
  position: relative;
  min-height: 100vh;
  background-color: var(--navy);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Dot-grid pattern overlay */
.conf-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(196,150,58,.07) 1px, transparent 0);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* Central radial glow */
.conf-hero::after {
  content: '';
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 640px;
  background: radial-gradient(ellipse, rgba(196,150,58,.065) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Content area: stretches to fill remaining height */
.hero-content-area {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.hero-inner {
  width: 100%;
  text-align: center;
}

/* Mobile-only patronage */
.hero-patronage {
  font-size: .8125rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  opacity: .8;
}

/* Primary heading */
.hero-title-primary {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: .625rem;
}

[lang="en"] .hero-title-primary {
  font-family: var(--font-heading-en);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

/* Primary subtitle */
.hero-subtitle-primary {
  font-size: clamp(.9375rem, 2vw, 1.25rem);
  color: var(--gold-light);
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto .875rem;
}

[lang="en"] .hero-subtitle-primary {
  font-family: var(--font-body-en);
  line-height: 1.5;
}

/* Secondary language line (muted) */
.hero-title-secondary {
  font-size: clamp(.75rem, 1.4vw, .9375rem);
  color: rgba(255,255,255,.38);
  margin-bottom: 1.75rem;
  font-style: italic;
}

/* Date + location pill */
.hero-date-location {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .9375rem;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: .5rem 1.375rem;
  margin-bottom: 2.5rem;
}

.hero-date-location .bi {
  color: var(--gold);
  font-size: 1em;
}

/* ── Countdown ── */
.hero-countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 2.5rem;
}

.cd-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(196,150,58,.4);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.125rem;
  min-width: 88px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color var(--transition), background var(--transition);
}

.cd-box:hover {
  border-color: var(--gold);
  background: rgba(196,150,58,.07);
}

.cd-number {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-family: 'Lato', 'Cairo', monospace;
  direction: ltr;
  unicode-bidi: embed;
  letter-spacing: .04em;
  min-width: 2.5ch;
  text-align: center;
  display: block;
}

.cd-label {
  font-size: .6875rem;
  color: var(--gold);
  margin-top: .625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}

.cd-sep {
  font-size: 2.5rem;
  color: rgba(196,150,58,.45);
  font-weight: 300;
  line-height: 1;
  padding-top: 1rem;
  flex-shrink: 0;
  align-self: flex-start;
}

/* ── Hero CTA buttons ── */
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Partner logos strip ── */
.hero-partners-strip {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(196,150,58,.14);
  padding: 1.375rem 0;
}

.hero-partners-label {
  font-size: .6875rem;
  color: rgba(255,255,255,.3);
  text-transform: uppercase;
  letter-spacing: .1em;
  text-align: center;
  margin-bottom: .875rem;
}

.hero-partners-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  cursor: default;
}

.hero-partner-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(.45);
  transition: filter var(--transition), transform var(--transition);
}

.hero-partner-item:hover .hero-partner-logo {
  filter: brightness(0) invert(1) opacity(.9);
  transform: scale(1.08);
}

.hero-partner-name {
  font-size: .625rem;
  color: rgba(255,255,255,.28);
  text-align: center;
  max-width: 84px;
  line-height: 1.4;
  transition: color var(--transition);
}

.hero-partner-item:hover .hero-partner-name {
  color: rgba(255,255,255,.58);
}

/* ── Hero: mobile ── */
@media (max-width: 767px) {
  .hero-content-area {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
  }

  .hero-countdown {
    gap: .375rem;
  }

  .cd-box {
    min-width: 68px;
    padding: .875rem .625rem;
    border-radius: var(--radius-sm);
  }

  .cd-number {
    font-size: 1.875rem;
  }

  .cd-sep {
    font-size: 1.625rem;
    padding-top: .875rem;
  }

  .cd-label {
    font-size: .5625rem;
    letter-spacing: .04em;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-inline: auto;
  }

  .hero-ctas .btn-gold,
  .hero-ctas .btn-gold-outline-light {
    text-align: center;
  }

  .hero-partners-inner {
    gap: 1.5rem;
  }

  .hero-partner-logo {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 400px) {
  .cd-box {
    min-width: 58px;
    padding: .75rem .5rem;
  }

  .cd-number {
    font-size: 1.5rem;
  }

  .cd-sep {
    font-size: 1.375rem;
    padding-top: .75rem;
  }

  .hero-countdown {
    gap: .25rem;
  }
}

/* ─── 16. Introduction ──────────────────────────────────── */

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

/* Decorative column */
.intro-decorative {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

.intro-deco-card {
  position: relative;
  z-index: 1;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.25rem 2rem;
  width: 100%;
  max-width: 380px;
  text-align: center;
  overflow: hidden;
}

/* Large decorative quote character */
.intro-deco-mark {
  position: absolute;
  top: -.5rem;
  inset-inline-start: 1rem;
  font-family: var(--font-heading-en), serif;
  font-size: 7rem;
  line-height: 1;
  color: var(--gold);
  opacity: .15;
  pointer-events: none;
  user-select: none;
}

.intro-deco-slogan {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.intro-deco-sep {
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  margin: 0 auto 1.25rem;
  opacity: .6;
}

.intro-deco-meta,
.intro-deco-venue {
  font-size: .8125rem;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .375rem;
  margin-bottom: .5rem;
}

.intro-deco-meta .bi,
.intro-deco-venue .bi {
  color: var(--gold);
  opacity: .7;
}

/* Abstract ring shape behind the card */
.intro-deco-ring {
  position: absolute;
  bottom: 0;
  inset-inline-end: -1.5rem;
  width: 180px;
  height: 180px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: .08;
  z-index: 0;
}

/* Body text */
.intro-body p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1.125rem;
}

/* Pull quote */
.intro-quote {
  border-inline-start: 4px solid var(--gold);
  background: var(--gold-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.125rem 1.5rem 1.125rem 1.25rem;
  margin: 1.75rem 0;
  font-style: italic;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.8;
  position: relative;
}

.intro-quote-icon {
  font-size: 1.625rem;
  color: var(--gold);
  opacity: .5;
  display: block;
  margin-bottom: .375rem;
  font-style: normal;
}

/* ─── 17. Objectives ─────────────────────────────────────── */

/* The .conf-card, .conf-card-icon, .conf-card-number,
   .conf-card-title, .conf-card-desc are defined in Section 9.
   Only add overrides here if needed. */

/* Responsive: decorative card shrinks gracefully */
@media (max-width: 991px) {
  .intro-decorative {
    min-height: auto;
    margin-bottom: 1rem;
  }

  .intro-deco-card {
    max-width: 100%;
    padding: 2rem 1.5rem 1.5rem;
  }
}

@media (max-width: 575px) {
  .intro-quote {
    font-size: 1rem;
    padding: .875rem 1.125rem .875rem 1rem;
  }
}

/* ─── 18. Themes ────────────────────────────────────────── */

/* Scrollable tab wrapper */
.conf-tabs-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-bottom: 2px solid var(--border);
  margin-bottom: 0;
}

.conf-tabs-wrap::-webkit-scrollbar {
  display: none;
}

/* Tab list */
.conf-theme-tabs {
  display: flex;
  flex-wrap: nowrap;
  min-width: max-content;
  border: none;
  gap: 0;
}

/* Tab button */
.conf-theme-tab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: .875rem 1.375rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  cursor: pointer;
  margin-bottom: -2px;
  transition: color var(--transition), border-color var(--transition);
  border-radius: 0;
  outline: none;
}

.conf-theme-tab:hover {
  color: var(--navy);
  border-bottom-color: var(--border);
}

.conf-theme-tab.active,
.conf-theme-tab[aria-selected="true"] {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.conf-theme-tab:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.tab-num {
  display: block;
}

/* Tab content area */
.conf-theme-content {
  padding-top: 2.5rem;
}

/* Theme panel: left column */
.theme-panel-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.theme-panel-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  font-variant-numeric: tabular-nums;
  font-family: 'Lato', 'Cairo', monospace;
  flex-shrink: 0;
}

.theme-panel-title {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
  margin: 0;
}

/* Sub-topics list */
.theme-subtopics {
  list-style: none;
  padding: 0;
  margin: 0;
}

.theme-subtopics li {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  padding: .875rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: .9375rem;
  line-height: 1.65;
}

.theme-subtopics li:last-child {
  border-bottom: none;
}

.subtopic-dot {
  display: block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: .48em;
  flex-shrink: 0;
}

/* Responsive tabs */
@media (max-width: 767px) {
  .conf-theme-tab {
    padding: .75rem 1rem;
    font-size: .875rem;
  }

  .theme-panel-badge {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .theme-panel-title {
    font-size: 1.0625rem;
  }

  .theme-subtopics li {
    font-size: .875rem;
    padding: .75rem 0;
  }
}

/* ─── 19. Target Groups ──────────────────────────────────── */

.target-group-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  height: 100%;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.target-group-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.target-group-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}

.target-group-item:hover .target-group-icon {
  background: var(--gold);
  color: var(--white);
}

.target-group-label {
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 575px) {
  .target-group-item {
    padding: 1.25rem .75rem 1rem;
  }

  .target-group-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    margin-bottom: .75rem;
  }

  .target-group-label {
    font-size: .8125rem;
  }
}

/* ─── 20. Important Dates Timeline ──────────────────────── */

.conf-timeline {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
}

/* Horizontal connecting line (desktop) */
.timeline-track {
  position: absolute;
  top: 11px;             /* center of 22px dot */
  inset-inline-start: 11px;
  inset-inline-end: 11px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

/* Individual milestone */
.timeline-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 .5rem;
}

/* Dot wrapper */
.timeline-node {
  margin-bottom: 1rem;
  position: relative;
  flex-shrink: 0;
}

/* Base dot */
.timeline-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  position: relative;
  z-index: 1;
}

/* Past dot */
.tl-past .timeline-dot {
  background: var(--text-muted);
  border-color: var(--text-muted);
}

/* Active dot */
.tl-active .timeline-dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 5px var(--gold-pale);
}

/* Upcoming dot */
.tl-upcoming .timeline-dot {
  background: var(--white);
  border-color: var(--gold);
}

/* Pulsing ring on active */
.timeline-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0%   { opacity: .6; transform: scale(.8); }
  100% { opacity: 0;  transform: scale(1.6); }
}

@media (prefers-reduced-motion: reduce) {
  .timeline-pulse { animation: none; opacity: 0; }
}

/* Content text */
.timeline-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
}

.tl-label {
  font-size: .875rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.4;
}

.tl-date {
  font-size: .8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

.tl-past .tl-label,
.tl-past .tl-date {
  color: var(--text-muted);
}

.tl-active .tl-label {
  color: var(--gold);
}

/* "Open now" badge */
.tl-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .1rem .5rem;
  border-radius: 100px;
  text-transform: uppercase;
  margin-top: .375rem;
}

/* ── Mobile: vertical stack ── */
@media (max-width: 767px) {
  .conf-timeline {
    flex-direction: column;
    gap: 0;
  }

  /* Hide horizontal track, show nothing (items create vertical look) */
  .timeline-track {
    display: none;
  }

  .timeline-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: start;
    padding: 1.125rem 0;
    border-bottom: 1px solid var(--border);
    gap: 1.125rem;
  }

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

  .timeline-node {
    margin-bottom: 0;
    margin-top: .1rem;
  }

  .timeline-content {
    align-items: flex-start;
  }
}

/* ─── 21. Committees Preview ─────────────────────────────── */

.committee-preview-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  height: 100%;
  transition: box-shadow var(--transition), transform var(--transition);
}

.committee-preview-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.cpc-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.cpc-role {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

.cpc-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .375rem;
  line-height: 1.4;
}

.cpc-inst {
  font-size: .875rem;
  color: var(--text-muted);
  margin: 0;
}

/* ─── 22. Participation CTA ──────────────────────────────── */

.conf-participate-cta {
  background: linear-gradient(160deg, #FEF9F0 0%, var(--gold-pale) 55%, #EDD8A0 100%);
  border-top: 4px solid var(--gold);
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

/* Subtle navy dot pattern — anchors section to brand palette */
.conf-participate-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(13,27,42,.05) 1px, transparent 0);
  background-size: 48px 48px;
  pointer-events: none;
}

/* "2026" watermark for premium depth */
.conf-participate-cta::after {
  content: '2026';
  position: absolute;
  inset-inline-end: -1rem;
  bottom: -2.5rem;
  font-size: clamp(7rem, 20vw, 14rem);
  font-weight: 900;
  color: var(--navy);
  opacity: .04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  font-family: var(--font-heading-en, 'EB Garamond', serif);
}

.cta-heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}

[lang="en"] .cta-heading {
  font-family: var(--font-heading-en);
}

.conf-participate-cta .section-divider {
  background: var(--gold);
}

.cta-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 2rem;
}

/* Contact rows */
.cta-contact-row {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  margin-bottom: 1.25rem;
}

.cta-contact-icon {
  color: var(--gold);
  font-size: 1.125rem;
  margin-top: .2rem;
  flex-shrink: 0;
}

.cta-contact-body {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.cta-contact-label {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: .65;
}

/* Email */
.cta-email-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .625rem;
}

.cta-email-link {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  direction: ltr;
  unicode-bidi: embed;
  transition: color var(--transition);
}

.cta-email-link:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* Copy button */
.cta-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  background: transparent;
  border: 1px solid rgba(13,27,42,.35);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 600;
  padding: .25rem .625rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.cta-copy-btn:hover,
.cta-copy-btn:focus-visible {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  outline: none;
}

/* Phones */
.cta-phones {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-secondary);
  font-size: .9rem;
}

.cta-phone-link {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  direction: ltr;
  unicode-bidi: embed;
  transition: color var(--transition);
}

.cta-phone-link:hover {
  color: var(--gold);
}

/* Primary CTA button — navy fill on warm gold bg = high authority */
.conf-participate-cta .btn-gold {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.conf-participate-cta .btn-gold:hover,
.conf-participate-cta .btn-gold:focus-visible {
  background: #1a2f44;
  border-color: #1a2f44;
  color: var(--white);
}

/* QR code block */
.cta-qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.cta-qr-card {
  background: var(--white);
  border: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: inline-block;
  box-shadow: 0 8px 32px rgba(13,27,42,.12);
}

.cta-qr-card img {
  display: block;
  border-radius: var(--radius-sm);
}

.cta-qr-label {
  font-size: .8125rem;
  color: var(--text-secondary);
  margin: 0;
  text-align: center;
}

/* Responsive */
@media (max-width: 767px) {
  .conf-participate-cta {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .cta-qr-card img {
    width: 140px;
    height: 140px;
  }
}

/* ─── 23. Sub-page Header ───────────────────────────────── */

.page-header {
  background: var(--navy);
  padding: 2.5rem 0 2.75rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(196,150,58,.07) 1px, transparent 0);
  background-size: 48px 48px;
  pointer-events: none;
}

.page-header > .container-xl {
  position: relative;
  z-index: 1;
}

/* Breadcrumb inside header */
.page-header .breadcrumb {
  margin-bottom: 1rem;
  background: none;
  padding: 0;
}

.page-header .breadcrumb-item a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: .875rem;
  transition: color var(--transition);
}

.page-header .breadcrumb-item a:hover {
  color: var(--gold);
}

.page-header .breadcrumb-item.active {
  color: var(--gold-light);
  font-size: .875rem;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,.25);
}

.page-header-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
  line-height: 1.3;
}

[lang="en"] .page-header-title {
  font-family: var(--font-heading-en);
}

.page-header-subtitle {
  font-size: .9375rem;
  color: rgba(255,255,255,.6);
  margin: 0;
  max-width: 640px;
  line-height: 1.7;
}

/* ─── 24. Themes Accordion ───────────────────────────────── */

.conf-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md) !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.conf-accordion .accordion-button {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: none;
  gap: 1rem;
  align-items: flex-start;
}

.conf-accordion .accordion-button:not(.collapsed) {
  background: var(--navy);
  color: var(--white);
}

.conf-accordion .accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23C4963A' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  flex-shrink: 0;
  margin-top: .15rem;
}

.conf-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23E8C87A' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.acc-header-inner {
  display: flex;
  align-items: center;
  gap: .875rem;
  flex: 1;
}

.acc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  color: var(--gold);
  font-size: .875rem;
  font-weight: 700;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  font-family: 'Lato', 'Cairo', monospace;
  transition: background var(--transition), color var(--transition);
}

.accordion-button:not(.collapsed) .acc-badge {
  background: rgba(196,150,58,.25);
  color: var(--gold-light);
}

.acc-title {
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1.4;
}

.conf-accordion .accordion-body {
  padding: 1.5rem;
  background: var(--bg);
}

/* ─── 25. Committee Tables ────────────────────────────────── */

.committee-section {
  margin-bottom: 3rem;
}

.committee-section:last-child {
  margin-bottom: 0;
}

.committee-section-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gold);
}

.csh-icon {
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.csh-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

/* Chair card */
.committee-chair-card {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

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

.ccc-label {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .25rem;
}

.ccc-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.ccc-inst {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  margin: .2rem 0 0;
}

/* Members table */
.committee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9375rem;
}

.committee-table thead tr {
  background: var(--gold);
  color: var(--white);
}

.committee-table thead th {
  padding: .875rem 1.125rem;
  font-weight: 700;
  font-size: .875rem;
  border: none;
}

.committee-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.committee-table tbody tr:hover {
  background: var(--gold-pale);
}

.committee-table tbody td {
  padding: .875rem 1.125rem;
  color: var(--text-secondary);
  vertical-align: middle;
}

.committee-table tbody td:first-child {
  color: var(--navy);
  font-weight: 600;
}

.ct-num {
  color: var(--text-muted);
  font-size: .8rem;
  width: 2.5rem;
}

/* ─── 26. Conditions List ────────────────────────────────── */

.conditions-intro {
  font-size: .9375rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.conditions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: cond-counter;
}

.conditions-list li {
  counter-increment: cond-counter;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.conditions-list li:last-child {
  border-bottom: none;
}

.conditions-list li::before {
  content: counter(cond-counter, decimal-leading-zero);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-family: 'Lato', 'Cairo', monospace;
  direction: ltr;
  margin-top: .1rem;
  flex-shrink: 0;
}

/* ─── 27. Contact Page ───────────────────────────────────── */

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  height: 100%;
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-info-row:first-child {
  padding-top: 0;
}

.cir-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.cir-label {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .25rem;
}

.cir-value {
  font-size: .9375rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.cir-value a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition);
}

.cir-value a:hover {
  color: var(--gold);
}

/* QR codes grid */
.qr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.qr-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.qr-card-img-wrap {
  background: var(--gold-pale);
  border: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: .625rem;
  display: inline-block;
}

.qr-card-img-wrap img {
  display: block;
  border-radius: 4px;
}

.qr-card-label {
  font-size: .8125rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.qr-card-sublabel {
  font-size: .75rem;
  color: var(--text-muted);
  margin: .25rem 0 0;
}

/* Partners list */
.contact-partners-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.contact-partner-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-partner-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.contact-partner-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.4;
}

/* Map placeholder */
.map-placeholder {
  background: var(--bg);
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: var(--text-muted);
}

.map-placeholder .bi {
  font-size: 2.5rem;
  color: var(--border);
}

/* ─── 28. 404 Page ───────────────────────────────────────── */

.page-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}

.page-404-number {
  font-size: clamp(5rem, 15vw, 9rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: .2;
}

[lang="en"] .page-404-number {
  font-family: var(--font-heading-en);
}

.page-404-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .75rem;
}

.page-404-msg {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

/* Responsive */
@media (max-width: 575px) {
  .qr-grid {
    grid-template-columns: 1fr;
  }

  .committee-chair-card {
    flex-direction: column;
    text-align: center;
  }

  .committee-section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ─── 29. Print ──────────────────────────────────────────── */
@media print {
  .conf-topbar,
  .conf-navbar,
  .conf-footer,
  .footer-bottom {
    display: none !important;
  }
}
