/* ============================================
   MJPC 2026 — For Zion's Sake Conference
   Design tokens from Figma + Brand Kit
   ============================================ */

:root {
  --navy: #001f3f;
  --navy-90: rgba(0, 31, 63, 0.9);
  --gold: #b8941e;
  --gold-hover: #a07d16;
  --cream: #f0ede5;
  --cream-dark: #e8e4db;
  --white: #ffffff;
  --gray-600: #4b5563;
  --gray-300: #d1d5db;
  --text-light: rgba(240, 237, 229, 0.8);
  --text-light-dim: rgba(240, 237, 229, 0.6);
  --font-heading: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Noto Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-hebrew: 'Frank Ruhl Libre', serif;
  --container-max: 1280px;
  --section-padding: 96px 80px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 81px; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.625; color: var(--gray-600); background: var(--cream); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ============ UTILITIES ============ */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 32px; width: 100%; }
.text-gold { color: var(--gold); font-weight: 600; }
.text-gold-link { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; transition: color 0.2s; }
.text-gold-link:hover { color: #d4ab24; }
.section-cta { text-align: center; margin-top: 48px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 999px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-hover); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover { background: rgba(184,148,30,0.1); }
.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-gold-outline:hover { background: var(--gold); color: var(--white); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: #002b57; }
.btn-sm { padding: 10px 24px; font-size: 13px; }

/* ============ SECTION PATTERNS ============ */
.section { padding: var(--section-padding); }
.section-cream { background: var(--cream); position: relative; }
.section-cream::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/fzs-pattern-blue.webp') center top/100% auto no-repeat;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.section-cream > .container { position: relative; z-index: 1; }
.section-white { background: var(--white); }
.section-navy { background: var(--navy); color: var(--white); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: var(--navy);
  padding-bottom: 16px;
}
.section-header-light h2 { color: var(--white); }
.section-divider {
  width: 96px;
  height: 4px;
  background: var(--gold);
  border-radius: 999px;
  margin: 0 auto;
}
.section-divider-left { margin: 0; }
.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: -40px auto 48px;
  font-size: 18px;
  color: var(--gray-600);
}
.section-subtitle-light { color: var(--text-light); }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  height: 81px;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo-img { height: 44px; width: auto; }
.nav-sponsor {
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 20px;
}
.nav-sponsor-logo { height: 44px; width: auto; }
.nav-sponsor-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.nav-sponsor-text span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.nav-sponsor-text strong {
  font-size: 13px;
  color: var(--white);
  font-weight: 700;
}
.nav-sponsor-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-sponsor-link:hover strong { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links .btn { color: var(--white); }
.nav-toggle { display: none; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 680px;
  max-height: 900px;
  height: 85vh;
  display: flex;
  align-items: center;
  padding: 120px 80px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}
.hero-bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('../images/fzs-pattern-white.webp') center/cover no-repeat;
}
.hero-sponsor {
  display: none;
  margin-top: 24px;
  margin-bottom: 24px;
}
.hero-sponsor-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-sponsor-link img { height: 32px; width: auto; }
.hero-sponsor-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.hero-sponsor-text span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.hero-sponsor-text strong {
  font-size: 13px;
  color: var(--white);
  font-weight: 700;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 35%, rgba(0,31,63,0.7) 60%, rgba(0,31,63,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 0;
  align-items: center;
}
.hero-text {
  max-width: 720px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.hero-meta-sep {
  color: var(--text-light-dim);
  font-size: 24px;
  margin: 0 8px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.8vw, 64px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 40px;
  max-width: 640px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-photos {
  position: relative;
  height: 500px;
}
.hero-photo {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--gold);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo-1 { width: 240px; height: 240px; top: -20px; left: 0; }
.hero-photo-2 { width: 240px; height: 240px; top: 125px; left: 220px; }
.hero-photo-3 { width: 240px; height: 240px; top: 310px; left: 40px; }

/* ============ INTRO HOOK ============ */
.intro-hook {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 692px;
  background: var(--white);
}
.intro-hook-video {
  position: relative;
  overflow: hidden;
  background: var(--gold);
}
.intro-hook-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.intro-hook-content {
  padding: 93px 83px;
  background: var(--white);
  max-width: 750px;
}
.intro-hook-content p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--gray-600);
  margin-bottom: 24px;
  text-align: justify;
}
.intro-hook-content p.intro-hook-emphasis:last-of-type {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 40px;
}
.intro-hook-emphasis {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 40px;
}

/* ============ WHY CARDS ============ */
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-card {
  background: var(--white);
  border: 1px solid #f3f4f6;
  padding: 32px;
}
.why-card-icon {
  width: 64px;
  height: 64px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.why-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 16px;
}
.why-card p {
  font-size: 16px;
  line-height: 1.625;
  color: var(--gray-600);
}

/* ============ SPEAKERS ============ */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  text-align: center;
}
.speaker-photo {
  width: 192px;
  height: 192px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--gold);
}
.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.speaker-photo-logo {
  background: var(--white);
  border-color: var(--gold);
}
.speaker-photo-logo img {
  object-fit: cover;
}
.speaker h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 8px;
}
.speaker p {
  font-size: 14px;
  line-height: 1.625;
  color: var(--text-light);
  max-width: 370px;
  margin: 0 auto;
}

/* ============ SPEAKER MODALS ============ */
.speaker-learn-more {
  display: inline-block;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 8px;
  transition: color 0.2s;
}
.speaker-learn-more:hover { color: #d4ab24; }
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active {
  display: flex;
}
.modal {
  background: var(--white);
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
  border-radius: 4px;
}
.modal h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 20px;
}
.modal p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 16px;
}
.modal p:last-child { margin-bottom: 0; }
.modal em { font-style: italic; }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  font-size: 24px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--cream); }

/* ============ ABOUT FZS ============ */
.about-fzs {
  max-width: 900px;
  margin: 0 auto;
}
.about-fzs p {
  margin-bottom: 20px;
  line-height: 1.75;
}
.fzs-quote-callout {
  background: var(--cream);
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: 65px 0 0 65px;
  padding: 0 32px 0 0;
  min-height: 130px;
}
.fzs-quote-photo {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  overflow: hidden;
  border: 6px solid var(--gold);
  border-radius: 50%;
  margin: 0 16px 0 0;
}
.fzs-quote-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.fzs-quote {
  background: none;
  padding: 12px 0;
  margin: 0;
}
.fzs-quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 4px;
}
.fzs-quote cite {
  font-style: normal;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
}

/* ============ WHAT TO EXPECT ============ */
.section-what-to-expect { position: relative; overflow: hidden; }
.section-what-to-expect::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/what-to-expect-bg.webp') center/cover no-repeat;
  opacity: 0.1;
}
.section-what-to-expect > .container { position: relative; z-index: 1; }
.expect-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.expect-card {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 32px;
}
.expect-icon {
  width: 48px;
  height: 48px;
  background: rgba(184,148,30,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.expect-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
}
.expect-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
}

/* ============ SCHEDULE ============ */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.schedule-day {
  padding: 48px 40px;
  border-radius: 4px;
}
.schedule-day-dark { background: var(--navy); color: var(--white); }
.schedule-day-light { background: var(--navy); color: var(--white); }
.schedule-day-header { margin-bottom: 40px; padding-bottom: 20px; border-bottom: 2px solid; }
.schedule-day-dark .schedule-day-header { border-color: var(--gold); }
.schedule-day-light .schedule-day-header { border-color: var(--gold); }
.schedule-day-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold);
  margin-bottom: 4px;
  display: block;
}
.schedule-day h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 32px;
}
.schedule-day-dark h3 { color: var(--white); }
.schedule-day-light h3 { color: var(--white); }

.timeline { position: relative; }
.timeline-item {
  display: grid;
  grid-template-columns: 80px 40px 1fr;
  gap: 12px;
  align-items: start;
}
.timeline-time {
  font-size: 14px;
  font-weight: 600;
  padding-top: 4px;
}
.schedule-day-dark .timeline-time { color: var(--text-light); }
.schedule-day-light .timeline-time { color: var(--text-light); }
.timeline-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.schedule-day-dark .timeline-icon { background: var(--gold); }
.schedule-day-light .timeline-icon { background: var(--gold); }
.timeline-content h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
}
.schedule-day-dark .timeline-content h4 { color: var(--white); }
.schedule-day-light .timeline-content h4 { color: var(--white); }
.timeline-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.schedule-day-dark .timeline-content p { color: var(--text-light); }
.schedule-day-light .timeline-content p { color: var(--text-light); }
.timeline-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 12px; }
.timeline-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 4px;
}
.schedule-day-dark .timeline-badge { background: var(--gold); color: var(--navy); }
.schedule-day-light .timeline-badge { background: var(--gold); color: var(--navy); }
.timeline-end { font-size: 13px; }
.schedule-day-dark .timeline-end { color: var(--text-light-dim); }
.schedule-day-light .timeline-end { color: var(--text-light-dim); }
.timeline { display: flex; flex-direction: column; gap: 32px; }
.timeline-connector { display: none; }

/* ============ FOR YOU IF ============ */
.for-you-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.for-you-item {
  background: var(--white);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid #f3f4f6;
}
.for-you-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.for-you-item p {
  font-size: 16px;
  color: var(--navy);
  line-height: 1.5;
}

/* ============ ABOUT THE CONFERENCE ============ */
.about-conference { padding: 0; overflow: hidden; background: var(--white); }
.about-conference::before { display: none; }
.about-conference-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 636px;
  max-width: none;
  padding: 0;
}
.about-conference-text {
  max-width: calc((var(--container-max) + 64px) / 2);
  margin-left: auto;
  padding: 96px 80px 96px 32px;
}
.about-conference-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 16px;
}
.about-conference-text .section-divider { margin-bottom: 32px; }
.about-conference-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 24px;
}
.about-conference-callout {
  background: var(--cream);
  padding: 0 32px 0 0;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: 56px 0 0 56px;
  min-height: 96px;
}
.about-conference-host-photo {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  overflow: hidden;
  border: 3px solid var(--gold);
  border-radius: 50%;
  margin: 0 16px 0 0;
}
.about-conference-host-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-conference-host-photo-logo {
  background: var(--white);
}
.about-conference-host-photo-logo img {
  object-fit: contain;
  padding: 8px;
}
.about-conference-callout p {
  padding: 0;
  margin: 0;
  font-size: 15px;
}
.about-conference-callout a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.about-conference-callout a:hover {
  color: var(--gold-hover);
}
.about-conference-callout p {
  font-size: 15px;
  margin-bottom: 0;
}
.about-conference-image {
  background: url('../images/about-conference-bg.webp') center/cover no-repeat;
}

/* ============ BEYOND THE CONFERENCE ============ */
.beyond-content {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 48px;
}
.beyond-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 20px;
}
.beyond-quote {
  background: rgba(0,31,63,0.6);
  padding: 24px 32px;
  margin: 24px 0;
}
.beyond-quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 0;
}
.beyond-links { display: flex; justify-content: center; gap: 32px; }
.beyond-link { text-align: center; }
.beyond-link svg { vertical-align: middle; margin-left: 4px; }

/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border: 1px solid #f3f4f6;
  padding: 40px;
}
.pricing-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.pricing-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 8px;
}
.pricing-amount { margin-bottom: 16px; }
.pricing-dollar {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  color: var(--gold);
}
.pricing-per {
  font-size: 16px;
  color: var(--gray-600);
  margin-left: 4px;
}
.pricing-card > p { margin-bottom: 16px; }
.pricing-addon-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  background: rgba(184,148,30,0.15);
  color: var(--gold);
  border-radius: 4px;
  margin-bottom: 16px;
}
.pricing-features li {
  padding: 6px 0;
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: var(--gray-600);
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8.5L6.5 12L13 4' stroke='%23b8941e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}
.pricing-note {
  max-width: 700px;
  margin: 32px auto 0;
  text-align: center;
  background: var(--white);
  border: 1px solid #f3f4f6;
  padding: 20px 32px;
  border-radius: 4px;
}
.pricing-note p { font-size: 16px; color: var(--navy); }

/* ============ LOCATION ============ */
.venue-card {
  background: var(--navy);
  color: var(--white);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  border-radius: 4px;
}
.venue-icon {
  width: 72px;
  height: 72px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.venue-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 4px;
}
.venue-card p { color: var(--text-light); margin-bottom: 4px; }
.venue-directions {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.location-subhead {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--navy);
  text-align: center;
  margin-bottom: 8px;
}
.location-subtitle {
  text-align: center;
  color: var(--gray-600);
  margin-bottom: 32px;
}

.hotel-section { margin-bottom: 32px; }
.hotel-tier {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.hotel-tier-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.hotel-tier-star { background: var(--gold); color: var(--white); }
.hotel-tier-nearby { background: var(--navy); display: flex; align-items: center; justify-content: center; }
.hotel-tier-budget { background: var(--gold); color: var(--white); }
.hotel-tier h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
}

.hotel-featured {
  background: var(--white);
  border: 2px solid var(--gold);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  border-radius: 4px;
}
.hotel-featured h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 4px;
}
.hotel-address {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 12px;
}
.hotel-featured-content p { font-size: 15px; line-height: 1.6; margin-bottom: 16px; }
.hotel-featured-price {
  text-align: center;
  padding: 24px;
  background: var(--cream);
  border-radius: 4px;
}
.hotel-price {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  color: var(--gold);
}
.hotel-price-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--navy);
}
.hotel-price-sub {
  display: block;
  font-size: 12px;
  color: var(--gray-600);
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.hotel-card {
  background: var(--white);
  border: 1px solid #f3f4f6;
  padding: 24px;
  border-radius: 4px;
}
.hotel-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 4px;
}
.hotel-card-single { max-width: 500px; }
.hotel-features {
  margin-top: 12px;
}
.hotel-features li {
  font-size: 14px;
  padding: 3px 0;
  padding-left: 20px;
  position: relative;
  color: var(--gray-600);
}
.hotel-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 7.5L5.5 10.5L11.5 3.5' stroke='%23b8941e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}

.travel-tips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.travel-tip {
  background: var(--cream);
  color: var(--navy);
  padding: 24px;
  display: flex;
  gap: 16px;
  border-radius: 4px;
}
.travel-tip-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.travel-tip-icon-navy { background: var(--navy); }
.travel-tip-icon-gold { background: var(--gold); }
.travel-tip strong { display: block; margin-bottom: 4px; color: var(--navy); }
.travel-tip p { font-size: 14px; color: var(--gray-600); margin: 0; }

/* ============ FAQ ============ */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--white);
  border: 1px solid #f3f4f6;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(0,0,0,0.015); }
.faq-chevron {
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.active .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.active .faq-answer {
  max-height: 200px;
}
.faq-answer p {
  padding: 0 28px 20px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-600);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 80px 80px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-img { height: 48px; width: auto; }
.footer-sponsor {
  margin: 12px 0;
}
.footer-sponsor-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-sponsor-link:hover strong { color: var(--gold); }
.footer-sponsor-logo { height: 44px; width: auto; }
.footer-sponsor-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.footer-sponsor-text span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.footer-sponsor-text strong {
  font-size: 13px;
  color: var(--white);
  font-weight: 700;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-light-dim);
  margin-bottom: 20px;
  line-height: 1.6;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(184,148,30,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer-social a:hover { background: rgba(184,148,30,0.2); }

.footer-links h4,
.footer-info h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-light-dim);
  margin-bottom: 16px;
}
.footer-links ul li { margin-bottom: 8px; }
.footer-links a {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-weight: 700;
}
.footer-links a:hover { color: var(--white); }

.footer-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}
.footer-info-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-info-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer-info-text strong {
  color: var(--white);
  font-size: 15px;
  line-height: 1.2;
}
.footer-info-text span { color: var(--text-light-dim); font-size: 13px; line-height: 1.2; }
.footer-info-item span { color: rgba(255,255,255,0.8); font-size: 15px; }
.footer-facebook-link {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  transition: color 0.2s;
}
.footer-facebook-link:hover { color: var(--gold); }
.footer-cta { margin-top: 20px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-light-dim);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-light-dim);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--white); }
.footer-bottom-links svg { vertical-align: middle; margin-left: 2px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  :root { --section-padding: 72px 40px; }
  .hero { padding: 100px 40px 60px; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-photos { display: none; }
  .section-header h2 { font-size: 40px; }
  .about-conference-heading { font-size: 40px; }
  .intro-hook { grid-template-columns: 1fr; }
  .intro-hook-video { aspect-ratio: 16/9; height: auto; }
  .intro-hook-content { max-width: 100%; }
  .why-cards { grid-template-columns: 1fr; gap: 20px; }
  .speakers-grid { grid-template-columns: 1fr; gap: 40px; }
  .schedule-grid { grid-template-columns: 1fr; }
  .expect-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .about-conference-grid { grid-template-columns: 1fr; }
  .about-conference-image { min-height: 400px; }
  .about-conference-text { padding: 64px 40px; max-width: 100%; }
  .hotels-grid { grid-template-columns: 1fr; }
  .hotel-featured { grid-template-columns: 1fr; }
  .travel-tips { grid-template-columns: 1fr; }
  .footer { padding: 64px 40px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Mobile nav at 1024px */
  .nav-sponsor { display: none; }
  .hero-text { display: flex; flex-direction: column; }
  .hero-sponsor { display: block; order: -1; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
    z-index: 1001;
  }
  .nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
  }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 20px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
  }
  .nav-links.active { right: 0; }
  .nav-links a { font-size: 18px; }
}

@media (max-width: 768px) {
  :root { --section-padding: 40px 16px; }
  .container { padding: 0 4px; }

  /* Hero */
  .nav-container { padding: 0 16px; }
  .hero { padding: 117px 16px 60px; min-height: auto; max-height: none; height: auto; }
  .hero-sub { font-size: 16px; margin-bottom: 32px; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 6px; margin-bottom: 24px; }
  .hero-meta-sep { display: none; }
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* Section headings */
  .section-header h2 { font-size: 28px; }
  .about-conference-heading { font-size: 28px; }
  .section-header { margin-bottom: 28px; }
  .section-subtitle { margin: -16px auto 24px; font-size: 15px; }

  /* Buttons */
  .btn { padding: 12px 24px; font-size: 14px; }
  .section-cta { margin-top: 24px; }

  /* Intro hook */
  .intro-hook-video { aspect-ratio: 16/9; height: auto; }
  .intro-hook-content { padding: 32px 20px; max-width: 100%; }
  .intro-hook-content p { text-align: left; font-size: 15px; margin-bottom: 16px; }
  .intro-hook-emphasis { font-size: 15px; }
  .intro-hook-content p.intro-hook-emphasis:last-of-type { font-size: 15px; margin-bottom: 32px; }

  /* Why cards */
  .why-cards { gap: 8px; }
  .why-card { padding: 16px 20px; }
  .why-card-icon { width: 48px; height: 48px; margin-bottom: 16px; }
  .why-card h3 { font-size: 18px; margin-bottom: 8px; }
  .why-card p { font-size: 14px; }

  /* Speakers */
  .speaker-photo { width: 170px; height: 170px; margin-bottom: 16px; }
  .speaker h3 { font-size: 20px; }
  .speaker p { font-size: 13px; }
  .speakers-grid { gap: 32px; }

  /* About FZS */
  .about-fzs { max-width: 100%; }
  .about-fzs p { font-size: 15px; margin-bottom: 14px; }
  .fzs-quote-callout {
    flex-direction: column;
    align-items: center;
    border-radius: 0;
    padding: 24px 16px;
    text-align: center;
  }
  .fzs-quote-photo { margin: 0 0 12px 0; }
  .fzs-quote { padding: 0; }
  .fzs-quote p { font-size: 15px; }

  /* What to Expect */
  .expect-grid { gap: 8px; }
  .expect-card { padding: 16px; }
  .expect-card h3 { font-size: 17px; margin-bottom: 4px; }
  .expect-card p { font-size: 14px; }
  .expect-icon { width: 40px; height: 40px; margin-bottom: 12px; }

  /* Schedule */
  .schedule-grid { gap: 16px; }
  .schedule-day { padding: 24px 16px; }
  .schedule-day-header { margin-bottom: 24px; padding-bottom: 16px; }
  .schedule-day h3 { font-size: 22px; }
  .timeline-item { grid-template-columns: 50px 32px 1fr; gap: 6px; }
  .timeline-icon { width: 32px; height: 32px; }
  .timeline-time { font-size: 11px; }
  .timeline-content h4 { font-size: 15px; }
  .timeline-content p { font-size: 13px; }
  .timeline-connector { display: none; }
  .timeline { display: flex; flex-direction: column; gap: 16px; }
  .timeline-badge { font-size: 10px; padding: 2px 8px; }
  .timeline-end { font-size: 11px; }

  /* For You */
  .for-you-list { max-width: 100%; gap: 6px; }
  .for-you-item { padding: 14px; gap: 12px; align-items: flex-start; }
  .for-you-icon { width: 36px; height: 36px; min-width: 36px; }
  .for-you-item p { font-size: 14px; }

  /* About the Conference */
  .about-conference-text { padding: 40px 20px; }
  .about-conference-text p { font-size: 15px; }
  .about-conference-image { min-height: 250px; }
  .about-conference-callout { padding: 0 16px 0 0; }

  /* Beyond the Conference */
  .beyond-content { max-width: 100%; padding: 24px 16px; }
  .beyond-content p { font-size: 14px; margin-bottom: 14px; }
  .beyond-quote { padding: 16px 20px; }
  .beyond-quote p { font-size: 15px; }
  .beyond-links { flex-direction: column; gap: 8px; }

  /* Pricing */
  .pricing-grid { max-width: 100%; gap: 10px; }
  .pricing-card { padding: 20px 16px; }
  .pricing-card h3 { font-size: 20px; }
  .pricing-dollar { font-size: 36px; }
  .pricing-card > p { font-size: 14px; }
  .pricing-features li { font-size: 14px; }
  .pricing-note { padding: 14px 20px; }

  /* Location */
  .venue-card { flex-direction: column; text-align: center; padding: 24px 20px; }
  .venue-icon { margin: 0 auto; width: 58px; height: 58px; }
  .venue-card h3 { font-size: 20px; }
  .location-subhead { font-size: 22px; }
  .location-subtitle { font-size: 14px; }
  .hotel-section { margin-bottom: 24px; }
  .hotel-featured { padding: 16px; }
  .hotel-featured-content p { font-size: 14px; }
  .hotel-featured-price { padding: 16px; }
  .hotel-price { font-size: 32px; }
  .hotel-card { padding: 14px; }
  .hotel-card h4 { font-size: 15px; }
  .hotel-address { align-items: flex-start; }
  .hotel-address svg { margin-top: 3px; }
  .hotel-card-single { max-width: 100%; }
  .travel-tip { padding: 14px; }
  .travel-tip p { font-size: 13px; }

  /* FAQ */
  /* Modals */
  .modal { padding: 32px 24px; }
  .modal h3 { font-size: 24px; }
  .modal p { font-size: 15px; }

  .faq-list { max-width: 100%; gap: 4px; }
  .faq-question { padding: 12px 14px; font-size: 15px; }
  .faq-answer p { padding: 0 16px 14px; font-size: 14px; }

  /* Footer */
  .footer { padding: 48px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }

}
