:root {
  --bg-deep: #120b07;
  --bg-dark: #191008;
  --bg-brown: #26160f;
  --bg-cream: #f4ece2;
  --bg-cream-2: #efe5d8;
  --text-light: #f7eedf;
  --text-cream: #dfceb6;
  --text-muted: #b9a58f;
  --text-dark: #2a1b14;
  --gold: #d9b06e;
  --gold-2: #ebc88a;
  --gold-soft: rgba(217, 176, 110, 0.18);
  --line: rgba(255,255,255,0.12);
  --shadow-soft: 0 18px 48px rgba(0,0,0,0.24);
  --shadow-strong: 0 28px 80px rgba(0,0,0,0.38);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1200px;
  --header-height: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--text-light);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--gold);
  color: #111;
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section-space { padding: 124px 0; }
.section-space-sm { padding: 88px 0; }
.light-section {
  background: linear-gradient(180deg, var(--bg-cream), var(--bg-cream-2));
  color: var(--text-dark);
  position: relative;
}
#intro.light-section {
  background: linear-gradient(180deg, rgba(244,236,226,0.84), rgba(239,229,216,0.9)), url('assets/intro-bg-1980x1080.png') center/cover no-repeat;
}
.dark-section {
  background:
    radial-gradient(circle at 85% 10%, rgba(220, 161, 76, 0.08), transparent 28%),
    radial-gradient(circle at 15% 80%, rgba(169, 82, 39, 0.08), transparent 26%),
    linear-gradient(180deg, #180e09 0%, #120b08 100%);
  position: relative;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 120;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled {
  background: rgba(15, 9, 7, 0.86);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-shrink: 0;
}
.brand-number {
  color: var(--gold-2);
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: 0.9;
}
.brand-text {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.05;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  position: relative;
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-link:hover::after,
.nav-link.is-active::after { transform: scaleX(1); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.96rem;
  border: 1px solid transparent;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, #e6c07e 0%, #d4ab68 100%);
  color: #1a120b;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
.btn-primary:hover { background: linear-gradient(180deg, #edca8b 0%, #dcb370 100%); }
.btn-outline {
  background: rgba(0,0,0,0.15);
  color: var(--text-light);
  border-color: rgba(236,215,181,0.38);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(236,215,181,0.6);
}
.btn-secondary {
  background: #7f211d;
  color: #fff3ed;
}
.btn-secondary:hover { background: #8e2620; }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: white;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text-light);
  border-radius: 999px;
}
.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  z-index: 110;
  padding: 0 24px 24px;
}
.mobile-menu-panel {
  display: grid;
  gap: 4px;
  background: rgba(22, 12, 8, 0.98);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--shadow-strong);
}
.mobile-menu-panel a {
  padding: 14px 12px;
  border-radius: 12px;
  color: var(--text-light);
}
.mobile-menu-panel a:hover { background: rgba(255,255,255,0.06); }
.mobile-menu-cta { margin-top: 6px; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 24px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8,5,4,0.9) 0%, rgba(8,5,4,0.72) 28%, rgba(8,5,4,0.28) 58%, rgba(8,5,4,0.18) 100%),
    url('assets/hero-bg-1980x1080.png') center/cover no-repeat;
}
.hero-backdrop,
.hero-mist,
.hero-shimmer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-backdrop {
  background:
    radial-gradient(circle at 15% 30%, rgba(255,255,255,0.04), transparent 18%),
    radial-gradient(circle at 85% 40%, rgba(255,255,255,0.05), transparent 22%);
}
.hero-mist {
  opacity: 0.16;
  background: radial-gradient(circle at 18% 50%, rgba(0,0,0,0.45), transparent 42%);
}
.mist-left { clip-path: inset(0 48% 0 0); }
.mist-right { clip-path: inset(0 0 0 58%); opacity: 0.12; }
.hero-shimmer {
  background: radial-gradient(circle at 72% 18%, rgba(255, 233, 177, 0.18), transparent 18%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding: 70px 0 110px;
}
.hero-copy { max-width: 620px; }
.symbol-row {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}
.hero-symbol-logo {
  width: 100px;
  height: auto;
  display: block;
}
.hero-kicker {
  margin: 0 0 10px;
  color: rgba(255,255,255,0.92);
  font-size: 0.94rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.hero-title {
  margin: 0;
  line-height: .95;
}
.hero-title span {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 1.2vw + 1rem, 2.2rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-title strong {
  display: block;
  color: #e7c388;
  font-family: "Italiana", serif;
  font-weight: 400;
  font-size: clamp(6.4rem, 10.5vw, 10.2rem);
  letter-spacing: -0.04em;
  line-height: 0.88;
}
.hero-meta {
  display: flex;
  align-items: stretch;
  gap: 22px;
  margin-top: 42px;
  margin-bottom: 34px;
}
.hero-meta-block {
  display: grid;
  gap: 4px;
}
.hero-meta small {
  color: var(--text-cream);
  font-size: 0.86rem;
  letter-spacing: 0.1em;
}
.hero-meta b {
  color: var(--text-light);
  font-size: 1.3rem;
  line-height: 1.1;
}
.hero-divider {
  width: 1px;
  background: rgba(255,255,255,0.16);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-visual { display:none; }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(232,215,191,0.72);
  font-size: 0.9rem;
  z-index: 1;
}
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1px solid rgba(236,215,181,0.5);
  border-radius: 30px;
  position: relative;
}
.scroll-mouse::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  transform: translateX(-50%);
  animation: mouseScroll 1.8s infinite;
}
@keyframes mouseScroll {
  0% { opacity: 0; transform: translate(-50%, 0); }
  25% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 11px); }
}

.contact-leaf {
  position: absolute;
  background: url('assets/leaf-intro.png') left top / contain no-repeat;
  opacity: 0.52;
  width: 160px;
  height: 310px;
  pointer-events: none;
}
.contact-leaf { left: 0; top: 22px; transform: scaleY(-1); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: center;
  position: relative;
}
.intro-heading h2,
.section-heading h2,
.program-copy h2,
.guide-copy h2,
.contact-copy h2,
.final-cta-copy h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
  margin: 0;
}
.intro-heading h2 {
  font-size: clamp(2.6rem, 4vw, 4.3rem);
}
.intro-heading em {
  color: #8b2f28;
  font-style: normal;
}
.intro-copy > p {
  margin: 0 0 38px;
  max-width: 540px;
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(42,27,20,0.84);
}
.intro-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.feature-item {
  border-left: 1px solid rgba(42,27,20,0.12);
  padding-left: 18px;
  min-height: 92px;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  gap: 10px;
}
.feature-item strong {
  font-size: 0.98rem;
  letter-spacing: 0.11em;
  align-self: start;
}
.feature-item span {
  font-size: 0.95rem;
  line-height: 1.35;
  color: rgba(42,27,20,0.74);
}

.section-heading.centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 52px;
}
.section-heading h2,
.guide-copy h2,
.contact-copy h2 { font-size: clamp(2.6rem, 4vw, 4rem); }
.section-heading.centered h2 { color: #ffffff; }
.section-subtitle {
  margin: 18px auto 0;
  max-width: 760px;
  color: rgba(245,231,211,0.82);
  line-height: 1.75;
  font-size: 1.02rem;
}
.section-kicker,
.warm-kicker,
.eyebrow-small {
  margin: 0 0 14px;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  text-transform: uppercase;
}
.section-kicker { color: var(--gold); }
.warm-kicker { color: #ab6a49; }

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.speaker-card {
  background: linear-gradient(180deg, rgba(24,15,10,0.3) 0%, rgba(12,8,6,0.74) 100%);
  border: 1px solid rgba(225,188,128,0.18);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
  padding: 24px 18px 22px;
}
.speaker-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225,188,128,0.45);
  box-shadow: 0 22px 46px rgba(0,0,0,0.34);
}
.speaker-card img {
  width: min(168px, 100%);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 18px;
  border: 3px solid rgba(225,188,128,0.42);
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
}
.speaker-body {
  padding: 0 6px 4px;
  text-align: center;
  min-height: 150px;
  display: grid;
  align-content: start;
}
.speaker-body h3 {
  margin: 0 0 12px;
  font-weight: 600;
  font-size: 1.22rem;
  color: #efc37c;
  line-height: 1.1;
}
.speaker-body p {
  margin: 0;
  color: rgba(245,231,211,0.88);
  line-height: 1.35;
  font-size: 0.94rem;
}
.speakers-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.program-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 44px;
  align-items: start;
}
.program-copy {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 36px);
}
.program-copy h2 { font-size: clamp(2.6rem, 4vw, 4rem); }
.program-copy p {
  margin: 18px 0 24px;
  color: rgba(42,27,20,0.82);
  line-height: 1.7;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #8e3128;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.agenda-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(42,27,20,0.08);
  border-radius: 20px;
  box-shadow: 0 22px 56px rgba(20,12,7,0.12);
  overflow: hidden;
}
.agenda-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 18px 18px 0;
}
.agenda-tab {
  appearance: none;
  border: 0;
  background: #f6f2ed;
  color: #6d5b4e;
  padding: 14px 12px 13px;
  border-radius: 12px 12px 0 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.93rem;
  display: grid;
  gap: 4px;
}
.agenda-tab span {
  font-size: 0.82rem;
  font-weight: 500;
  color: #8a7868;
}
.agenda-tab.is-active {
  background: #fff;
  color: #5c221b;
  border-bottom-color: #9e372c;
}
.agenda-panel { padding: 0 26px 26px; }
.agenda-panel-head {
  padding: 22px 0 18px;
  border-bottom: 1px solid rgba(42,27,20,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: baseline;
}
.agenda-panel-head strong {
  font-size: 1.08rem;
  color: #5a1f19;
}
.agenda-panel-head span { color: #766355; }
.agenda-list { display: grid; }
.agenda-row,
.agenda-session-label {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
}
.agenda-row {
  padding: 18px 0;
  border-bottom: 1px solid rgba(42,27,20,0.08);
}
.agenda-row:last-child { border-bottom: 0; }
.agenda-row time {
  font-weight: 700;
  color: #2f241d;
  letter-spacing: 0.02em;
}
.agenda-row h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  color: #201511;
}
.agenda-row p {
  margin: 0;
  color: #6d5b4e;
  line-height: 1.45;
}
.agenda-session-label {
  padding: 18px 0 6px;
  align-items: center;
}
.agenda-session-label span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f2e8db;
  color: #7b3026;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.guide {
  background:
    linear-gradient(90deg, rgba(41, 12, 11, 0.24), rgba(41,12,11,0.18)),
    url('assets/register-bg-1980x1080.png') center/cover no-repeat;
}
.guide-centered {
  display: flex;
  justify-content: center;
}
.centered-copy {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.guide-copy h2 { margin-bottom: 18px; }
.guide-copy p {
  margin: 0 auto 28px;
  color: rgba(246,235,220,0.88);
  line-height: 1.8;
  max-width: 640px;
}
.centered-copy .btn { margin-inline: auto; }

.final-cta {
  position: relative;
  overflow: hidden;
  color: #fff3e8;
  background: #320f0d;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(41, 12, 11, 0.16), rgba(41,12,11,0.16)),
    url('assets/register-bg-1980x1080.png') center/cover no-repeat;
}
.final-cta-grid {
  position: relative;
  z-index: 1;
  min-height: 156px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}
.eyebrow-small { color: rgba(255,255,255,0.78); }
.final-cta-copy h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  color: #eec477;
  margin-bottom: 10px;
}
.final-cta-copy p:last-child { margin: 0; color: rgba(255,255,255,0.9); }
.final-cta-action {
  display: grid;
  justify-items: start;
  gap: 16px;
}
.final-cta-action p {
  margin: 0;
  color: rgba(255,255,255,0.86);
  line-height: 1.6;
}

.contact { position: relative; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 42px;
  align-items: start;
}
.contact-copy p:last-child {
  margin: 18px 0 0;
  color: rgba(42,27,20,0.84);
  line-height: 1.7;
}
.contact-form {
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(42,27,20,0.08);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 34px rgba(20,12,7,0.07);
}
.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}
.contact-form label,
.field-full {
  display: grid;
  gap: 8px;
}
.contact-form span {
  font-size: 0.92rem;
  font-weight: 500;
  color: #503b2f;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(64,44,31,0.12);
  background: rgba(255,255,255,0.86);
  color: #241913;
  border-radius: 10px;
  padding: 0 14px;
  outline: none;
}
.contact-form textarea {
  min-height: 144px;
  padding: 14px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(159, 76, 40, 0.5);
  box-shadow: 0 0 0 4px rgba(187, 126, 79, 0.12);
}
.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
}
.form-actions small {
  color: rgba(42,27,20,0.64);
  line-height: 1.5;
}
.form-status {
  margin: 14px 2px 0;
  min-height: 22px;
  color: #7b3026;
}

.site-footer {
  background: #0f0907;
  color: rgba(245,233,219,0.88);
  padding-top: 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr .9fr;
  gap: 28px;
  align-items: center;
  padding-bottom: 28px;
}
.footer-col { display: grid; gap: 10px; }
.footer-col strong { font-size: 0.98rem; }
.footer-col span { color: rgba(245,233,219,0.72); line-height: 1.55; }
.footer-brand-col {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-logo {
  width: 140px;
  max-width: 100%;
  height: auto;
  display: block;
}
.footer-socials { justify-self: end; }
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(217,176,110,0.32);
  color: var(--gold-2);
}
.social-row svg {
  width: 18px;
  height: 18px;
  display: block;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px 0 22px;
  color: rgba(245,233,219,0.55);
  font-size: 0.9rem;
  text-align: center;
}


.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .speaker-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-grid,
  .intro-grid,
  .program-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual { max-width: 410px; justify-self: center; }
  .program-copy,
  .guide-copy,
  .contact-copy { max-width: 700px; }
  .program-copy {
    position: static;
    top: auto;
  }
  .footer-socials { justify-self: start; }
}

@media (max-width: 900px) {
  :root { --header-height: 76px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-block; }
  .section-space { padding: 92px 0; }
  .section-space-sm { padding: 68px 0; }
  .hero { min-height: auto; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 38px 0 88px;
  }
  .hero-copy { max-width: none; text-align: left; }
  .hero-meta { flex-direction: column; gap: 16px; }
  .hero-divider { width: 100%; height: 1px; }
  .hero-visual { order: -1; width: min(100%, 440px); }
  .intro-features { grid-template-columns: 1fr; }
  .speaker-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .agenda-tabs { grid-template-columns: repeat(2, 1fr); row-gap: 6px; }
  .field-row { grid-template-columns: 1fr; }
  .hero {
    min-height: 100svh;
    background:
      linear-gradient(90deg, rgba(8,5,4,0.92) 0%, rgba(8,5,4,0.76) 38%, rgba(8,5,4,0.28) 72%, rgba(8,5,4,0.12) 100%),
      url('assets/hero-bg-1980x1080.png') 68% center / auto 100% no-repeat;
    background-color: #120b07;
  }
  .hero-backdrop {
    background: linear-gradient(180deg, rgba(10,6,4,0.08) 0%, rgba(10,6,4,0.02) 55%, rgba(10,6,4,0.32) 100%);
  }
  .footer-grid {
    text-align: center;
    justify-items: center;
  }
  .footer-brand-col {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .footer-col {
    justify-items: center;
    text-align: center;
  }
  .footer-socials { justify-self: center; }
  .social-row { justify-content: center; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .brand-number { font-size: 2.45rem; }
  .brand-text { font-size: .85rem; }
  .hero-kicker { font-size: .82rem; }
  .hero-title strong { font-size: clamp(5rem, 24vw, 7rem); }
  .hero-title span { font-size: 1.3rem; }
  .hero-meta b { font-size: 1.12rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .scroll-cue { font-size: .82rem; bottom: 14px; }
  .speaker-grid { grid-template-columns: 1fr; }
  .agenda-panel { padding: 0 18px 18px; }
  .agenda-tabs { padding: 14px 14px 0; }
  .agenda-row,
  .agenda-session-label {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .agenda-row { padding: 16px 0; }
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-form { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

.final-cta{display:none !important;}
