/* ============================================================
   HARVEST WOMEN'S CONFERENCE 2026 — style.css
   ============================================================ */

/* CUSTOM FONTS */
@font-face {
  font-family: 'Basilia';
  src: url('../assets/Basilia Compress D Medium.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Didot';
  src: url('../assets/Didot.ttc') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'MonoAndFriends';
  src: url('../assets/MonoAndFriendsLaRegular-axDRR.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ============================================================ */
/* DESIGN TOKENS                                                */
/* ============================================================ */
:root {
  --nude:        #edc9bc;
  --nude-light:  #f7ede7;
  --nude-dark:   #c9a494;
  --terra:       #a34b37;
  --terra-dark:  #7a3628;
  --olive:       #5e5532;
  --olive-dark:  #3e3921;
  --dark:        #1e1410;
  --white:       #fdf8f5;

  --font-display: 'Basilia', Georgia, serif;
  --font-serif:   'Didot', 'GFS Didot', Georgia, serif;
  --font-script:  'MonoAndFriends', cursive;

  --max-w:  1160px;
  --pad:    clamp(1.25rem, 5vw, 2.5rem);
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================ */
/* RESET & BASE                                                 */
/* ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--nude);
  color: var(--dark);
  font-family: var(--font-serif);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { font-family: inherit; }

/* ============================================================ */
/* LAYOUT UTILITIES                                             */
/* ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ============================================================ */
/* TYPOGRAPHY COMPONENTS                                        */
/* ============================================================ */

.script-label {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--terra);
  margin-bottom: 0.2rem;
}
.script-label--light { color: rgba(247, 237, 231, 0.75); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.0;
  color: var(--terra);
  margin-bottom: 1rem;
}
.section-title span { color: var(--olive); }
.section-title--light { color: var(--nude-light); }

/* ============================================================ */
/* BUTTONS                                                      */
/* ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.05rem 2.8rem;
  border-radius: 50px;
  border: none;
  font-family: var(--font-serif);
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-arrow { font-size: 1.1em; transition: transform 0.2s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

.btn-primary {
  background: var(--terra);
  color: var(--white);
  box-shadow: 0 4px 22px rgba(163, 75, 55, 0.3);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(163, 75, 55, 0.45); }

.btn-outline {
  background: transparent;
  color: var(--terra);
  border: 2px solid var(--terra);
}
.btn-outline:hover { background: var(--terra); color: var(--white); }

.btn-cta {
  background: var(--white);
  color: var(--terra);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.18);
}
.btn-cta:hover { box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28); }

.btn-lg { padding: 1.1rem 3rem; font-size: 0.9rem; }

/* ============================================================ */
/* STAR DECORATION                                              */
/* ============================================================ */
.star { pointer-events: none; user-select: none; }
.star-sm { width: 20px; }
.star-md { width: 30px; }
.star-lg { width: 44px; }

/* ============================================================ */
/* NAVIGATION                                                   */
/* ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s;
}
.nav.scrolled {
  background: rgba(237, 201, 188, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(163, 75, 55, 0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.3rem var(--pad);
  max-width: var(--max-w);
  margin-inline: auto;
  position: relative;
}

.nav-logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-serif);
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  padding: 0.45rem 1rem;
  border-radius: 50px;
  transition: background 0.22s var(--ease), color 0.22s;
}
.nav.scrolled .nav-links a { color: var(--terra); }
.nav-links a:not(.nav-cta):hover {
  background: var(--olive);
  color: var(--white);
}

.nav-cta {
  background: var(--terra);
  color: var(--white) !important;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-size: 1rem !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--terra-dark) !important; transform: translateY(-1px) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 201;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--terra);
  border-radius: 2px;
  transition: transform 0.32s var(--ease), opacity 0.22s;
}
.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); }

/* ============================================================ */
/* HERO                                                         */
/* ============================================================ */
.hero {
  background: var(--nude);
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

.hero-logo {
  width: min(460px, 76vw);
  animation: fadeUp 0.9s var(--ease) both;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  animation: fadeUp 0.9s 0.18s var(--ease) both;
}

.hero-date {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: bold;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--olive);
  line-height: 1;
}

.hero-location {
  font-family: var(--font-serif);
  font-weight: bold;
  font-size: clamp(0.9rem, 1.6vw, 1.15rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  margin-top: 0.6rem;
}

.hero-content .btn {
  animation: fadeUp 0.9s 0.34s var(--ease) both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, var(--terra));
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ============================================================ */
/* CHECKER DIVIDER                                              */
/* ============================================================ */
.checker-divider {
  line-height: 0;
  overflow: hidden;
}
.checker-divider img {
  width: 100%;
  display: block;
  height: auto;
}
.checker-divider--flip img { transform: scaleX(-1); }

/* ============================================================ */
/* ABOUT                                                        */
/* ============================================================ */
.about {
  background: var(--nude);
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.about-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.about-title {
  font-family: var(--font-serif) !important;
  font-weight: bold !important;
}

.about-text {
  max-width: 660px;
  margin: 1rem auto 2.5rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--olive-dark);
  line-height: 1.85;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2rem;
}

.pillar {
  padding: 2rem 2.5rem;
  text-align: center;
  position: relative;
}
.pillar::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--nude-dark);
}
.pillar:last-child::after { display: none; }

.pillar-icon {
  width: 28px;
  margin: 0 auto 1rem;
}
.pillar h3 {
  font-family: var(--font-serif);
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.75rem;
}
.pillar p {
  font-size: 1.05rem;
  color: var(--olive-dark);
  line-height: 1.8;
}

/* ============================================================ */
/* SPEAKERS                                                     */
/* ============================================================ */
.speakers {
  background: var(--white);
  padding: clamp(5rem, 11vw, 9rem) 0;
  text-align: center;
}
.speakers-title {
  font-family: var(--font-serif) !important;
  font-weight: bold !important;
  color: var(--olive) !important;
  margin-bottom: 3rem;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.25rem;
  align-items: start;
}

.speaker-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.speaker-arch {
  position: relative;
  width: 100%;
  max-width: 210px;
  margin: 0 auto;
}

/* Arch-shaped photo with double-border effect */
.speaker-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: 105px 105px 0 0;
  border: 2px solid var(--terra);
  display: block;
}

/* Outer arch border */
.speaker-arch::after {
  content: '';
  position: absolute;
  inset: -6px -6px 0 -6px;
  border: 1.5px solid var(--terra);
  border-bottom: none;
  border-radius: 113px 113px 0 0;
  pointer-events: none;
  opacity: 0.45;
}

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

.speaker-name {
  font-family: var(--font-serif);
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.6rem;
}
.speaker-bio {
  font-size: 1rem;
  color: var(--olive-dark);
  line-height: 1.8;
  max-width: 230px;
  margin: 0 auto;
}
.speaker-bio em { color: var(--terra); font-style: italic; }

/* ============================================================ */
/* SCHEDULE                                                     */
/* ============================================================ */
.schedule {
  background: var(--olive);
  padding: clamp(5rem, 11vw, 9rem) 0;
}
.schedule .container { text-align: center; }
.schedule-title {
  font-family: var(--font-serif) !important;
  font-weight: bold !important;
  margin-bottom: 3.5rem;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
}

.schedule-divider {
  background: rgba(247, 237, 231, 0.18);
  margin: 0 3.5rem;
}

.schedule-day-title {
  font-family: var(--font-serif);
  font-weight: bold;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nude-light);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(247, 237, 231, 0.2);
}
.schedule-day-title span {
  font-family: var(--font-script);
  font-size: 0.9em;
  text-transform: none;
  letter-spacing: 0;
  color: var(--nude-dark);
}

.schedule-list { display: flex; flex-direction: column; }
.schedule-list li {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(247, 237, 231, 0.1);
}
.schedule-list li:last-child { border-bottom: none; }

.schedule-time {
  font-family: var(--font-serif);
  font-weight: bold;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--nude-dark);
}
.schedule-event {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--nude-light);
}

.schedule-note {
  font-size: 0.78rem;
  color: var(--nude-dark);
  margin-top: 2.5rem;
  opacity: 0.65;
}

/* ============================================================ */
/* VENUE                                                        */
/* ============================================================ */
/* ============================================================ */
/* GALLERY                                                      */
/* ============================================================ */
.gallery {
  background: var(--white);
  padding: clamp(5rem, 11vw, 9rem) 0;
  text-align: center;
}
.gallery-title {
  font-family: var(--font-serif) !important;
  font-weight: bold !important;
  margin-bottom: 3rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.gallery-item {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 8, 0.94);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox-img-wrap {
  max-width: min(90vw, 1200px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--nude-light);
  cursor: pointer;
  font-size: 2.2rem;
  line-height: 1;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--white); }
.lightbox-close { top: 1.5rem; right: 1.5rem; font-size: 1.6rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 3rem; }

/* ============================================================ */
/* VENUE                                                        */
/* ============================================================ */
.venue {
  background: var(--nude);
  padding: clamp(5rem, 11vw, 9rem) 0;
}
.venue .section-title {
  font-family: var(--font-serif) !important;
  font-weight: bold !important;
}
.venue .script-label {
  font-family: var(--font-serif);
  font-weight: bold;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: 0.01em;
}
.venue-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}
.venue-address {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1.15rem;
  color: var(--olive-dark);
  line-height: 1.9;
  margin: 1rem 0 2rem;
}
.venue-address .star { margin-top: 5px; flex-shrink: 0; }
.venue-map {
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid var(--nude-dark);
  box-shadow: 0 16px 48px rgba(94, 85, 50, 0.14);
}
.venue-map iframe { display: block; width: 100%; }

/* ============================================================ */
/* FAQ                                                          */
/* ============================================================ */
.faq {
  background: var(--white);
  padding: clamp(5rem, 11vw, 9rem) 0;
  text-align: center;
}
.faq .section-title { margin-bottom: 3rem; }
.faq-title {
  font-family: var(--font-serif) !important;
  font-weight: bold !important;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--nude-dark);
  border: 1px solid var(--nude-dark);
  border-radius: 18px;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}

.faq-item { background: var(--white); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  font-family: var(--font-serif);
  font-weight: bold;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--terra);
  cursor: pointer;
  text-align: left;
  line-height: 1.45;
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(237, 201, 188, 0.35); }

.faq-icon img {
  width: 18px;
  flex-shrink: 0;
  transition: transform 0.32s var(--ease);
}
.faq-question[aria-expanded="true"] .faq-icon img {
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.38s var(--ease);
}
.faq-answer p {
  padding: 0 2rem 1.75rem;
  font-size: 0.95rem;
  color: var(--olive-dark);
  line-height: 1.82;
}
.faq-answer a {
  color: var(--terra);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================ */
/* CTA FINAL                                                    */
/* ============================================================ */
.cta-final {
  background: var(--terra);
  padding: clamp(5.5rem, 13vw, 11rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.cta-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
}
.cta-stars img { filter: brightness(0) invert(1); opacity: 0.55; }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7.5vw, 5.5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 0.5rem;
}
.cta-subtitle {
  font-family: var(--font-serif);
  color: rgba(247, 237, 231, 0.72);
  font-size: 1.05rem;
  margin-bottom: 2.75rem;
}
.cta-final .script-label { color: rgba(247, 237, 231, 0.72); }

/* ============================================================ */
/* FOOTER                                                       */
/* ============================================================ */
.footer {
  background: var(--dark);
  padding: 3.5rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  text-align: center;
}
.footer-logo {
  height: 72px;
  width: auto;
  opacity: 0.88;
}
.footer-text {
  font-size: 0.88rem;
  color: rgba(247, 237, 231, 0.55);
  line-height: 2;
}
.footer-text a {
  color: var(--nude);
  transition: color 0.2s;
}
.footer-text a:hover { color: var(--white); }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(247, 237, 231, 0.28);
}

/* ============================================================ */
/* SCROLL REVEAL                                                */
/* ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================ */
/* KEYFRAMES                                                    */
/* ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.5); transform-origin: top; }
  50%       { opacity: 0.85; transform: scaleY(1);   transform-origin: top; }
}

/* ============================================================ */
/* RESPONSIVE — TABLET (≤ 960px)                               */
/* ============================================================ */
@media (max-width: 960px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }
  .about-pillars {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }
  .venue-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .schedule-grid {
    grid-template-columns: 1fr;
  }
  .schedule-divider { display: none; }
  .schedule-day:first-child { margin-bottom: 3rem; }
  .faq-grid { grid-template-columns: 1fr; }
}

/* ============================================================ */
/* RESPONSIVE — MOBILE (≤ 600px)                               */
/* ============================================================ */
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.3rem; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--nude);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.75rem;
    transform: translateX(100%);
    transition: transform 0.42s var(--ease);
    z-index: 200;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    color: var(--dark) !important;
    font-size: 1rem;
  }
  .nav-cta {
    background: var(--terra) !important;
    color: var(--white) !important;
  }

  /* Hero mobile */
  .hero-logo { width: min(280px, 78vw); }
  .hero-meta {
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.85rem;
  }
  .hero-dot { display: none; }

  /* Speakers mobile */
  .speakers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
  }
  .speaker-arch { max-width: 150px; }
  .speaker-name { font-size: 0.85rem; }
  .speaker-bio { font-size: 0.82rem; max-width: 100%; }

  /* Schedule mobile */
  .schedule-list li {
    grid-template-columns: 1fr;
    gap: 0.15rem;
    padding: 0.75rem 0;
  }
  .schedule-time { font-size: 0.7rem; opacity: 0.7; }

  /* FAQ mobile */
  .faq-question { padding: 1.35rem 1.25rem; font-size: 0.8rem; }
  .faq-answer p { padding: 0 1.25rem 1.35rem; }

  /* CTA mobile */
  .cta-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
}
