/* ============================================================
   NCPS — National Character Parenting Summit
   1st Royal Character & Values Limited (RCV)
   style.css — Premium Single-Page Event Website
   ============================================================ */

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

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

body {
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

/* === DESIGN TOKENS === */
:root {
  --m900: #8c1d81;
  --m800: #591c51;
  --m700: #591c51;
  --m500: #8c1d81;
  --m300: #8c1d81;
  --m100: #fce4ec;
  --m050: #fff0f5;

  --gold: #d4b8e0;
  --gold-light: #e8dff0;
  --gold-pale: #f0ecf5;

  --ink: #120008;
  --ink2: #2a0018;
  --mute: #7a4060;
  --line: #edd5de;

  --surface: #fffbfd;
  --white: #ffffff;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-io: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-expo: cubic-bezier(0.77, 0, 0.175, 1);

  --font-display: "Montserrat", sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-body: "Open Sans", sans-serif;

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

  --shadow-sm:
    0 1px 4px rgba(18, 0, 8, 0.06), 0 2px 12px rgba(140, 29, 129, 0.04);
  --shadow-md:
    0 4px 20px rgba(18, 0, 8, 0.1), 0 8px 40px rgba(140, 29, 129, 0.08);
  --shadow-lg:
    0 12px 60px rgba(18, 0, 8, 0.14), 0 24px 80px rgba(140, 29, 129, 0.12);
  --shadow-gold: 0 4px 24px rgba(140, 29, 129, 0.2);

  --container: 1200px;
  --section-py: 100px;
  --section-py-sm: 64px;
}

/* === UTILITIES === */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.section {
  padding: var(--section-py) 0;
}

.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
}

.body-text {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: var(--mute);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--m500);
  margin-bottom: 1rem;
}

.section-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--m500);
  flex-shrink: 0;
}

.section-eyebrow--light {
  color: var(--gold-light);
}
.section-eyebrow--light::before {
  background: var(--gold-light);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.section-heading em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--m500);
}

.section-intro {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--mute);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 2rem;
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header--center {
  text-align: center;
}
.section-header--center .section-eyebrow {
  justify-content: center;
  width: 100%;
}
.section-header--center .section-intro {
  margin: 0 auto 2rem;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition:
    transform 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    opacity 160ms ease;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--m300);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    transform: translateY(-2px);
  }
  .btn:active {
    transform: translateY(0) scale(0.97);
  }
}

.btn--sm {
  padding: 8px 16px;
  font-size: 0.78rem;
}
.btn--md {
  padding: 12px 24px;
  font-size: 0.85rem;
}
.btn--lg {
  padding: 14px 30px;
  font-size: 0.88rem;
}
.btn--xl {
  padding: 18px 38px;
  font-size: 0.95rem;
}
.btn {
  padding: 12px 24px;
}

.btn--primary {
  background: var(--m500);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(140, 29, 129, 0.25);
}
@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover {
    background: var(--m800);
    box-shadow: 0 6px 24px rgba(140, 29, 129, 0.35);
  }
}

.btn--gold {
  background: var(--m500);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(140, 29, 129, 0.3);
}
@media (hover: hover) and (pointer: fine) {
  .btn--gold:hover {
    background: var(--m800);
    box-shadow: 0 8px 32px rgba(140, 29, 129, 0.4);
  }
}

.btn--outline {
  background: transparent;
  color: var(--m500);
  border: 1.5px solid var(--m300);
}
@media (hover: hover) and (pointer: fine) {
  .btn--outline:hover {
    background: var(--m050);
    border-color: var(--m500);
  }
}

.btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}
@media (hover: hover) and (pointer: fine) {
  .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
  }
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}
@media (hover: hover) and (pointer: fine) {
  .btn--ghost-light:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
  }
}

.btn--white {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
@media (hover: hover) and (pointer: fine) {
  .btn--white:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.16);
  }
}

/* === BADGES === */
.badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.badge--gold {
  background: var(--gold-pale);
  color: var(--ink2);
  border: 1px solid rgba(140, 29, 129, 0.2);
}

.badge--outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms var(--ease-out),
    transform 700ms var(--ease-out);
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 {
  transition-delay: 80ms;
}
.reveal--delay-2 {
  transition-delay: 160ms;
}
.reveal--delay-3 {
  transition-delay: 240ms;
}
.reveal--delay-4 {
  transition-delay: 320ms;
}
.reveal--delay-5 {
  transition-delay: 400ms;
}

.stagger-group .reveal:nth-child(1) {
  transition-delay: 0ms;
}
.stagger-group .reveal:nth-child(2) {
  transition-delay: 80ms;
}
.stagger-group .reveal:nth-child(3) {
  transition-delay: 160ms;
}
.stagger-group .reveal:nth-child(4) {
  transition-delay: 240ms;
}
.stagger-group .reveal:nth-child(5) {
  transition-delay: 320ms;
}
.stagger-group .reveal:nth-child(6) {
  transition-delay: 400ms;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 0;
    transform: none;
    transition: opacity 400ms ease;
  }
  .reveal.is-revealed {
    opacity: 1;
  }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 999;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.nav-container {
  margin: 0 100px;
  height: 85px;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  width: 130px;
  height: auto;
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

.desktop-nav a {
  text-decoration: none;
  color: var(--m700);
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
}

.desktop-nav a:hover {
  color: #b08d57;
}

.register-btn {
  background: var(--m700);
  color: white !important;
  padding: 13px 28px;
}

.register-btn:hover {
  background: white;
  color: var(--m700) !important;
  border: 1px solid var(--m700);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: #222;
  margin: 6px 0;
  transition: 0.3s ease;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 25px;
  padding: 30px 25px;
  background: #ffffff;
  border-top: 1px solid #eee;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--m700);
  font-size: 17px;
  font-weight: 500;
}

.mobile-register {
  background: var(--m700);
  color: white !important;
  padding: 14px 25px;
  text-align: center;
}

@media (max-width: 850px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav.active {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  .nav-container {
    margin: 0 10px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    height: 75px;
    padding: 0 18px;
  }

  .nav-logo img {
    width: 80px;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--m500);
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.hero-orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(240, 66, 222, 0.7) 0%,
    transparent 70%
  );
  top: -200px;
  right: -100px;
  animation: orb-float-1 12s ease-in-out infinite alternate;
}

.hero-orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(89, 28, 81, 0.5) 0%,
    transparent 70%
  );
  bottom: -100px;
  left: -80px;
  animation: orb-float-2 16s ease-in-out infinite alternate;
}

.hero-orb--3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25) 0%,
    transparent 70%
  );
  top: 40%;
  left: 35%;
  transform: translateX(-50%);
  animation: orb-float-3 20s ease-in-out infinite alternate;
}

@keyframes orb-float-1 {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-40px, 60px) scale(1.1);
  }
}
@keyframes orb-float-2 {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(30px, -40px) scale(1.08);
  }
}
@keyframes orb-float-3 {
  from {
    transform: translateX(-50%) scale(0.9);
  }
  to {
    transform: translateX(-40%) scale(1.1);
  }
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.hero-eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-title {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-title-line {
  display: block;
  line-height: 1;
}

.hero-title-line--serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: -0.01em;
}

.hero-title-line--display {
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 0.88;
  text-shadow: 0 0 80px rgba(140, 29, 129, 0.6);
  margin: 0.1em 0;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-tagline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-theme {
  display: inline-block;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 680px;
  backdrop-filter: blur(8px);
}

.hero-theme-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.hero-theme-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  line-height: 1.4;
  quotes: none;
}

/* ---- Hero theme carousel (previous NCPS editions) ---- */
.hero-theme-carousel {
  display: block;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 680px;
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.hero-theme-carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.hero-theme-carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.hero-theme-slide {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 16px 20px;
  margin: 0;
  box-sizing: border-box;
}

.hero-theme-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 14px 14px;
}

.hero-theme-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: none;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.hero-theme-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.hero-theme-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1;
}

.hero-theme-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.hero-theme-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.hero-theme-dot.is-active {
  background: var(--gold);
  transform: scale(1.3);
}

@media (max-width: 480px) {
  .hero-theme-slide {
    padding: 14px 16px;
  }

  .hero-theme-carousel-controls {
    padding: 0 10px 12px;
  }
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 clamp(20px, 3vw, 40px);
}

.hero-stat:first-child {
  padding-left: 0;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  align-self: center;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* ============================================================
   IDENTITY SECTION
   ============================================================ */
.identity {
  background: var(--surface);
}

.identity-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.identity-card-source {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   THEME SECTION
   ============================================================ */
.theme-section {
  position: relative;
  background: var(--ink);
  padding: var(--section-py) 0;
  overflow: hidden;
}

.theme-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.theme-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.theme-orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(199, 9, 180, 0.5) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
}

.theme-orb--2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 70%
  );
  bottom: 0;
  left: 10%;
}

.theme-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.theme-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}
.theme-label::before,
.theme-label::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.theme-headline {
  margin-bottom: 2rem;
}

.theme-headline-serif,
.theme-headline-display {
  display: block;
  line-height: 1;
}

.theme-headline-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 4rem);
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.01em;
}

.theme-headline-display {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 11rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.85;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    var(--m100) 50%,
    rgba(140, 29, 129, 0.5) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0.1em 0;
  text-shadow: none;
}

.theme-body {
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 2vw, 1.12rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 1.25rem;
}

.theme-body strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.theme-body em {
  color: var(--gold-light);
  font-style: italic;
}

.theme-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 2.5rem 0;
}

.theme-detail-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px);
  transition: background 160ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .theme-detail-item:hover {
    background: rgba(255, 255, 255, 0.06);
  }
}

.theme-detail-label {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.theme-detail-value {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  line-height: 1.4;
}

.theme-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-section {
  background: var(--surface);
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}

.why-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.5vw, 40px);
  overflow: hidden;
  transition:
    transform 200ms var(--ease-out),
    box-shadow 200ms var(--ease-out),
    border-color 200ms ease;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--m500), rgba(255, 255, 255, 0.8));
  opacity: 0;
  transition: opacity 200ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
  }
  .why-card:hover::before {
    opacity: 1;
  }
}

.why-card-icon {
  margin-bottom: 1rem;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--m050);
  border-radius: var(--radius-sm);
}

.why-card-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--line);
}

.why-card-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.why-card-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--mute);
  line-height: 1.75;
}

/* ============================================================
   EXPERIENCE SECTION
   ============================================================ */
.experience-section {
  position: relative;
  background: var(--ink2);
  overflow: hidden;
}

.experience-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 80% 50%,
      rgba(140, 29, 129, 0.25) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 20% 80%,
      rgba(255, 255, 255, 0.07) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
}

.experience-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: start;
  gap: 24px;
  padding: clamp(24px, 3vw, 36px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  transition: transform 200ms var(--ease-out);
}

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

@media (hover: hover) and (pointer: fine) {
  .experience-item:hover {
    transform: translateX(8px);
  }
}

.experience-item-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  letter-spacing: -0.05em;
  line-height: 1;
  padding-top: 4px;
}

.experience-item-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.015em;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.experience-item-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
}

.experience-item-tag {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 10px;
  border-radius: 100px;
  white-space: nowrap;
  align-self: start;
  margin-top: 4px;
}

/* ============================================================
   TOPICS SECTION
   ============================================================ */
.topics-section {
  background: var(--white);
}

.topics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.topic-tag {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--m800);
  background: var(--m050);
  border: 1px solid var(--m100);
  padding: 10px 18px;
  border-radius: 100px;
  cursor: default;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .topic-tag:hover {
    background: var(--m500);
    color: var(--white);
    border-color: var(--m500);
    transform: translateY(-2px);
  }
}

/* ============================================================
   SPEAKERS SECTION
   ============================================================ */
.speakers-section {
  position: relative;
  background: var(--surface);
  overflow: hidden;
}

.speakers-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(140, 29, 129, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.speaker-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  transition:
    transform 200ms var(--ease-out),
    box-shadow 200ms var(--ease-out);
}

.speaker-card--featured {
  grid-column: 1 / -1;
  flex-direction: row;
  background: linear-gradient(135deg, var(--m800) 0%, var(--ink2) 100%);
  border-color: rgba(255, 255, 255, 0.15);
  gap: 32px;
  align-items: flex-start;
}

@media (hover: hover) and (pointer: fine) {
  .speaker-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
}

/* --- Speaker Card Image --- */
.speaker-card-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, var(--m800), var(--m500));
}

.speaker-card--featured .speaker-card-img {
  width: 140px;
  height: 140px;
  border-color: rgba(140, 29, 129, 0.35);
  flex-shrink: 0;
}

.speaker-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 400ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .speaker-card:hover .speaker-card-img img {
    transform: scale(1.05);
  }
}

/* Legacy placeholder support */
.speaker-card-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.speaker-initials {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
  position: absolute;
  z-index: 1;
}

.speaker-card--featured .speaker-initials {
  font-size: 1.8rem;
}

.speaker-card-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25) 0%,
    transparent 70%
  );
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

/* Speaker card info */
.speaker-card-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.speaker-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--m050);
  color: var(--m500);
  border: 1px solid var(--m100);
  margin-bottom: 8px;
  width: fit-content;
}

.speaker-badge--muted {
  background: var(--m050);
  color: var(--mute);
  border-color: var(--line);
}

.speaker-card--featured .speaker-badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
  border-color: rgba(255, 255, 255, 0.15);
}

.speaker-name {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  line-height: 1.2;
}

.speaker-card--featured .speaker-name {
  color: var(--white);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.speaker-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mute);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.speaker-card--featured .speaker-title {
  color: var(--gold-light);
}

.speaker-bio {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--mute);
  line-height: 1.7;
}

.speaker-card--featured .speaker-bio {
  color: rgba(255, 255, 255, 0.55);
}

.speakers-cta {
  text-align: center;
}

.speakers-cta-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--mute);
  margin-bottom: 12px;
}

/* ============================================================
   WHO SHOULD ATTEND
   ============================================================ */
.attend-section {
  background: var(--ink2);
}

.attend-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.attend-header .section-heading {
  color: var(--white);
}
.attend-header .section-heading em {
  color: var(--gold-light);
}
.attend-header .body-text {
  color: rgba(255, 255, 255, 0.5);
}
.attend-header .section-eyebrow {
  color: var(--gold);
}
.attend-header .section-eyebrow::before {
  background: var(--gold);
}

.attend-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 0.5rem;
}

.attend-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  transition: color 160ms ease;
}

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

@media (hover: hover) and (pointer: fine) {
  .attend-item:hover {
    color: rgba(255, 255, 255, 0.88);
  }
}

.attend-check {
  font-size: 0.85rem;
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
  font-weight: 700;
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  position: relative;
  background: var(--surface);
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.t-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.t-orb--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(140, 29, 129, 0.1) 0%,
    transparent 70%
  );
  top: -100px;
  left: -100px;
}

.t-orb--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.07) 0%,
    transparent 70%
  );
  bottom: 0;
  right: 10%;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  transition:
    transform 200ms var(--ease-out),
    box-shadow 200ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
}

.testimonial-quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--m100);
  line-height: 0.8;
  margin-bottom: 0.75rem;
  display: block;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.8vw, 1rem);
  color: var(--ink2);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--m500), var(--m800));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
  font-style: normal;
}

.testimonial-detail {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--mute);
}

.testimonials-note {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--mute);
  position: relative;
  z-index: 1;
}

/* ============================================================
   GALLERY
   ============================================================ */

.gallery-section {
  padding: 80px 0;
  overflow: hidden;
  background: #fff;
}

.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-header h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.gallery-header p {
  font-size: 18px;
  color: #666;
}

.gallery-wrapper {
  width: 100%;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 25px;
  width: max-content;
  will-change: transform;
}

.gallery-item {
  width: 320px;
  height: 240px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 15px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Book Section Layout */

#book > div:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 0 30px;
}

#book > div:last-child > img {
  width: 420px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s ease;
}

#book > div:last-child > img:hover {
  transform: translateY(-10px);
}

.book-text-details {
  flex: 1;
  max-width: 650px;
}

.book-text-details h2 {
  margin-bottom: 25px;
  line-height: 1.2;
}

.book-text-details p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.book-text-details button {
  margin-top: 15px;
  cursor: pointer;
}

/* Responsive Design */

@media (max-width: 900px) {
  #book > div:last-child {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  #book > div:last-child > img {
    width: 320px;
  }

  .book-text-details {
    max-width: 100%;
  }
}

@media (max-width: 500px) {
  #book > div:last-child {
    padding: 0 20px;
    margin-top: 40px;
  }

  #book > div:last-child > img {
    width: 260px;
  }

  .book-text-details p {
    line-height: 1.6;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 50px 0;
  }

  .gallery-item {
    width: 240px;
    height: 180px;
  }

  .gallery-header h2 {
    font-size: 32px;
  }
}

/* ============================================================
   SPONSORSHIP
   ============================================================ */
.sponsor-section {
  position: relative;
  background: var(--surface);
  overflow: hidden;
}

.sponsor-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 100% 50%,
    rgba(140, 29, 129, 0.06) 0%,
    transparent 55%
  );
  pointer-events: none;
}

.sponsor-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  position: relative;
  z-index: 1;
}

.sponsor-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    transform 200ms var(--ease-out),
    box-shadow 200ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .sponsor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
}

.sponsor-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sponsor-card-icon {
  width: 52px;
  height: 52px;
  background: var(--m050);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sponsor-card-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.sponsor-card-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--mute);
  line-height: 1.75;
  flex: 1;
}

/* ============================================================
   REGISTER SECTION
   ============================================================ */
.register-section {
  position: relative;
  background: var(--ink2);
  padding: var(--section-py) 0;
  overflow: hidden;
}

.register-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.register-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.register-orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(140, 29, 129, 0.5) 0%,
    transparent 70%
  );
  top: -150px;
  right: -150px;
}

.register-orb--2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(140, 29, 129, 0.2) 0%,
    transparent 70%
  );
  bottom: -100px;
  left: 5%;
}

.register-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.register-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.register-sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.register-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.register-note {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  letter-spacing: -0.01em;
  transition: color 160ms ease;
  gap: 16px;
}

.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question::marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--m500);
  flex-shrink: 0;
  transition:
    transform 200ms var(--ease-out),
    color 160ms ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
  color: var(--m500);
}

@media (hover: hover) and (pointer: fine) {
  .faq-question:hover {
    color: var(--m500);
  }
}

.faq-answer {
  padding-bottom: 20px;
}

.faq-answer p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--mute);
  line-height: 1.8;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta-section {
  position: relative;
  background: var(--m800);
  padding: clamp(80px, 12vw, 140px) 0;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.final-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.final-orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(140, 29, 129, 0.5) 0%,
    transparent 70%
  );
  top: -200px;
  left: -100px;
}

.final-orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(140, 29, 129, 0.2) 0%,
    transparent 70%
  );
  bottom: -100px;
  right: 10%;
}

.final-orb--3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(89, 28, 81, 0.6) 0%,
    transparent 70%
  );
  top: 40%;
  right: -50px;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}

.final-cta-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.final-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.final-cta-italic {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  color: var(--gold-light);
  letter-spacing: 0em;
}

.final-cta-body {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2rem;
}

.final-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.social-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  padding: clamp(60px, 8vw, 100px) 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  padding-bottom: clamp(40px, 6vw, 60px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-logo-abbr {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.footer-logo-text {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
  max-width: 200px;
  line-height: 1.3;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 1.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 160ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .footer-contact-link:hover {
    color: var(--gold-light);
  }
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
}

.footer-nav-heading {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-nav-link {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
  transition: color 160ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .footer-nav-link:hover {
    color: rgba(255, 255, 255, 0.75);
  }
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.5;
}

.footer-meta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-meta-link {
  color: rgba(255, 255, 255, 0.3);
  transition: color 160ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .footer-meta-link:hover {
    color: var(--gold);
  }
}

.br-desk {
  display: block;
}

/* ============================================================
   SKIP TO CONTENT
   ============================================================ */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 20px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--m500);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}
.skip-to-content:focus {
  top: 16px;
}

/* ============================================================
   FOCUS STYLES (Accessibility)
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--m300);
  outline-offset: 3px;
  border-radius: 3px;
}

.new-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 100px;
}

/* ============================================================
   RESPONSIVE — 1024px (Tablet Landscape)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-py: 80px;
  }

  .identity-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .identity-visual {
    max-width: 480px;
  }

  .identity-card {
    aspect-ratio: 16/6;
    min-height: 240px;
  }

  .identity-card::after {
    font-size: 5rem;
  }

  .theme-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .attend-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sponsor-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .sponsor-cards .sponsor-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ============================================================
   RESPONSIVE — 768px (Tablet Portrait)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-py: var(--section-py-sm);
  }

  /* Nav */
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }

  /* Hero */
  .hero-title-line--display {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-stat {
    padding: 12px 0;
    min-width: 50%;
  }

  .hero-stat:nth-child(even) {
    padding-left: 20px;
  }
  .hero-scroll-cue {
    display: none;
  }

  /* Why */
  .why-cards {
    grid-template-columns: 1fr;
  }

  /* Experience */
  .experience-item {
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto;
  }

  .experience-item-tag {
    grid-column: 2;
    grid-row: 2;
    margin-top: 8px;
    align-self: auto;
  }

  /* Theme */
  .theme-details-grid {
    grid-template-columns: 1fr;
  }

  .theme-headline-display {
    font-size: clamp(3.5rem, 14vw, 6rem);
  }

  /* Speakers */
  .speakers-grid {
    grid-template-columns: 1fr;
  }

  .speaker-card--featured {
    flex-direction: column;
    gap: 20px;
  }

  .speaker-card--featured .speaker-card-img {
    width: 100px;
    height: 100px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-item--tall {
    grid-row: auto;
  }
  .gallery-item--wide {
    grid-column: auto;
  }
  .gallery-caption {
    opacity: 1;
  }

  /* Sponsor */
  .sponsor-cards {
    grid-template-columns: 1fr;
  }

  .sponsor-cards .sponsor-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  /* Register */
  .register-ctas {
    flex-direction: column;
    align-items: center;
  }

  .register-ctas .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Final CTA */
  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .final-cta-buttons .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Footer */
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .br-desk {
    display: inline;
  }
}

/* ============================================================
   RESPONSIVE — 480px (Mobile)
   ============================================================ */
@media (max-width: 480px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero-title-line--display {
    font-size: 35px;
    letter-spacing: -0.05em;
  }

  .hero-title-line--serif {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }

  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-eyebrow {
    flex-direction: column;
    gap: 8px;
  }

  .hero-theme {
    max-width: 100%;
  }

  .hero-theme-carousel {
    max-width: 100%;
  }

  .theme-headline-display {
    font-size: clamp(3rem, 18vw, 5rem);
  }

  .theme-headline-serif {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
  }

  .section-heading {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }

  .final-cta-heading {
    font-size: clamp(1.9rem, 8.5vw, 3rem);
  }

  .final-cta-italic {
    font-size: clamp(1.9rem, 8.5vw, 3rem);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .theme-ctas {
    flex-direction: column;
    align-items: center;
  }
  .theme-ctas .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
  }
  .hero-stat {
    min-width: auto;
    padding: 10px 0;
  }
  .hero-stat:nth-child(even) {
    padding-left: 0;
  }
}

/* ============================================================
   RESPONSIVE — Ultra-wide (≥1600px)
   ============================================================ */
@media (min-width: 1600px) {
  :root {
    --container: 1400px;
    --section-py: 120px;
  }
}
