/* ===== DESIGN TOKENS ===== */
:root {
  /* Colors — Warm Cream + Gold + Dark Navy (from poster) */
  --clr-bg-primary: #f5efe6;
  --clr-bg-secondary: #ece4d8;
  --clr-bg-card: rgba(255, 255, 255, 0.55);
  --clr-bg-glass: rgba(255, 255, 255, 0.45);
  --clr-gold: #b8963e;
  --clr-gold-light: #d4b45e;
  --clr-gold-dark: #8c6f2a;
  --clr-accent: #c9a84c;
  --clr-accent-glow: rgba(184, 150, 62, 0.18);
  --clr-text-primary: #1a1a2e;
  --clr-text-secondary: rgba(26, 26, 46, 0.65);
  --clr-text-muted: rgba(26, 26, 46, 0.4);
  --clr-border: rgba(184, 150, 62, 0.25);
  --clr-border-hover: rgba(184, 150, 62, 0.5);
  --clr-navy: #1a1a2e;
  --clr-navy-light: #2d2d44;
  --clr-white: #ffffff;
  --clr-cream-dark: #e6ddd0;

  /* Typography */
  --ff-heading: 'Playfair Display', serif;
  --ff-body: 'Inter', sans-serif;
  --ff-accent: 'Cormorant Garamond', serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50%;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows */
  --shadow-glow: 0 0 40px rgba(184, 150, 62, 0.2);
  --shadow-card: 0 8px 32px rgba(26, 26, 46, 0.08);
  --shadow-elevated: 0 16px 64px rgba(26, 26, 46, 0.12);
  --shadow-soft: 0 4px 20px rgba(26, 26, 46, 0.06);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-body);
  background-color: var(--clr-bg-primary);
  color: var(--clr-text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ===== SUBTLE GRAIN OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.015'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--clr-bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--clr-gold);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--clr-gold-dark);
}

/* ===== DECORATIVE GOLD CORNER BORDERS ===== */
.corner-frame {
  position: fixed;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  pointer-events: none;
  z-index: 9998;
}
.corner-frame::before,
.corner-frame::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border-color: var(--clr-gold);
  border-style: solid;
  opacity: 0.3;
}
.corner-frame::before {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
}
.corner-frame::after {
  bottom: 0;
  right: 0;
  border-width: 0 1px 1px 0;
}
.corner-frame .corner-tr,
.corner-frame .corner-bl {
  position: absolute;
  width: 60px;
  height: 60px;
  border-color: var(--clr-gold);
  border-style: solid;
  opacity: 0.3;
}
.corner-frame .corner-tr {
  top: 0;
  right: 0;
  border-width: 1px 1px 0 0;
}
.corner-frame .corner-bl {
  bottom: 0;
  left: 0;
  border-width: 0 0 1px 1px;
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--clr-bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  transition: opacity 0.6s, visibility 0.6s;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader__ring {
  width: 60px;
  height: 60px;
  border: 3px solid var(--clr-border);
  border-top-color: var(--clr-gold);
  border-radius: var(--radius-full);
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  padding: var(--space-sm) 0;
  transition: var(--transition-base);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(245, 239, 230, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  padding: 0.6rem 0;
  box-shadow: var(--shadow-soft);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__brand {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-navy);
  letter-spacing: 1px;
}
.navbar__brand span {
  color: var(--clr-gold);
  font-weight: 700;
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.navbar__links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-text-secondary);
  position: relative;
  padding-bottom: 4px;
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-gold);
  transition: var(--transition-base);
}
.navbar__links a:hover {
  color: var(--clr-navy);
}
.navbar__links a:hover::after {
  width: 100%;
}
.navbar__cta {
  background: linear-gradient(135deg, var(--clr-navy), var(--clr-navy-light));
  color: var(--clr-bg-primary) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: var(--radius-xl);
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  transition: var(--transition-base) !important;
  border: none;
}
.navbar__cta::after {
  display: none !important;
}
.navbar__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 26, 46, 0.25);
  color: var(--clr-bg-primary) !important;
}

/* Mobile menu toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 10001;
}
.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-navy);
  transition: var(--transition-base);
  transform-origin: center;
}
.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}
.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-3xl) 0 var(--space-2xl);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  filter: blur(3px) saturate(0.5);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(245, 239, 230, 0.7) 0%,
    rgba(245, 239, 230, 0.9) 50%,
    var(--clr-bg-primary) 100%
  );
}
/* Animated gradient orbs — warm cream tones */
.hero__orb {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(120px);
  opacity: 0.25;
  animation: float 8s ease-in-out infinite;
}
.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: var(--clr-gold-light);
  top: -100px;
  right: -150px;
  animation-delay: 0s;
}
.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: var(--clr-cream-dark);
  bottom: -100px;
  left: -100px;
  animation-delay: -4s;
}
.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: var(--clr-gold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -2s;
  opacity: 0.08;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Golden swirl decorations */
.hero__swirl {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  opacity: 0.15;
  pointer-events: none;
}
.hero__swirl--1 {
  top: 10%;
  right: -80px;
  width: 400px;
  height: 400px;
}
.hero__swirl--2 {
  bottom: 10%;
  left: -100px;
  width: 350px;
  height: 350px;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--clr-bg-glass);
  border: 1px solid var(--clr-border);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-gold-dark);
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(10px);
}
.hero__badge .dot {
  width: 8px;
  height: 8px;
  background: var(--clr-gold);
  border-radius: var(--radius-full);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__invited {
  font-family: var(--ff-accent);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--clr-gold-dark);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.hero__title {
  font-family: var(--ff-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
  letter-spacing: -1px;
  color: var(--clr-navy);
}
.hero__title .highlight {
  background: linear-gradient(135deg, var(--clr-gold-dark), var(--clr-gold), var(--clr-gold-light), var(--clr-gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  to { background-position: 200% center; }
}

.hero__event-name {
  font-family: var(--ff-heading);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--clr-navy);
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}
.hero__event-name::before,
.hero__event-name::after {
  content: '—';
  color: var(--clr-gold);
  margin: 0 0.5rem;
}

.hero__subtitle {
  font-family: var(--ff-accent);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--clr-text-secondary);
  margin-bottom: var(--space-lg);
  font-style: italic;
  font-weight: 400;
}
.hero__subtitle strong {
  color: var(--clr-navy);
  font-weight: 700;
  font-style: normal;
}

.hero__meta {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}
.hero__meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--clr-text-primary);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.hero__meta-item svg {
  width: 24px;
  height: 24px;
  color: var(--clr-gold);
  flex-shrink: 0;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 1rem 2.2rem;
  border-radius: var(--radius-xl);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: linear-gradient(135deg, var(--clr-navy), var(--clr-navy-light));
  color: var(--clr-bg-primary);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(26, 26, 46, 0.25);
}
.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s;
}
.btn--primary:hover::before {
  left: 100%;
}
.btn--outline {
  background: transparent;
  color: var(--clr-navy);
  border: 2px solid var(--clr-gold);
}
.btn--outline:hover {
  background: var(--clr-gold);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.btn svg {
  width: 18px;
  height: 18px;
  transition: var(--transition-fast);
}
.btn:hover svg {
  transform: translateX(3px);
}

/* ===== COUNTDOWN ===== */
.countdown {
  padding: var(--space-xl) 0;
  background: var(--clr-navy);
  position: relative;
  overflow: hidden;
}
.countdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(184, 150, 62, 0.05) 0%, transparent 50%, rgba(184, 150, 62, 0.05) 100%);
  pointer-events: none;
}
.countdown__grid {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.countdown__item {
  text-align: center;
  min-width: 120px;
}
.countdown__number {
  font-family: var(--ff-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--clr-gold-light);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.countdown__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.5);
}
.countdown__separator {
  font-family: var(--ff-heading);
  font-size: 3rem;
  color: var(--clr-gold-dark);
  opacity: 0.5;
  align-self: flex-start;
  padding-top: 0.3rem;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: var(--space-3xl) 0;
  position: relative;
}
.section__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--clr-gold-dark);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.section__label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--clr-gold);
}
.section__title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  letter-spacing: -0.5px;
  color: var(--clr-navy);
}
.section__subtitle {
  font-size: 1.05rem;
  color: var(--clr-text-secondary);
  max-width: 650px;
  line-height: 1.8;
}

/* ===== ABOUT / WHAT YOU'LL LEARN ===== */
.about {
  background: var(--clr-bg-primary);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  margin-top: var(--space-xl);
}
.about__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: var(--transition-slow);
}
.about__image:hover img {
  transform: scale(1.03);
}
.about__image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  z-index: 1;
  pointer-events: none;
}
.about__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(245, 239, 230, 0.5), transparent);
  border-radius: var(--radius-lg);
  z-index: 1;
  pointer-events: none;
}

/* ===== PILLARS / FRAMEWORK ===== */
.pillars {
  background: var(--clr-bg-secondary);
  overflow: hidden;
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.pillar-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
  opacity: 0;
  transition: var(--transition-base);
}
.pillar-card:hover {
  border-color: var(--clr-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-elevated);
}
.pillar-card:hover::before {
  opacity: 1;
}
.pillar-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--clr-accent-glow), rgba(245, 239, 230, 0.8));
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}
.pillar-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--clr-gold-dark);
}
.pillar-card__number {
  font-family: var(--ff-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--clr-gold);
  opacity: 0.1;
  position: absolute;
  top: 15px;
  right: 20px;
  line-height: 1;
}
.pillar-card__title {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--clr-navy);
}
.pillar-card__text {
  font-size: 0.95rem;
  color: var(--clr-text-secondary);
  line-height: 1.8;
}

/* ===== WHAT YOU GET ===== */
.benefits {
  background: var(--clr-bg-primary);
}
.benefits__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.benefit-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  box-shadow: var(--shadow-soft);
}
.benefit-item:hover {
  border-color: var(--clr-gold);
  transform: translateX(6px);
  box-shadow: var(--shadow-card);
}
.benefit-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--clr-accent-glow), rgba(245, 239, 230, 0.8));
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.benefit-item__icon svg {
  width: 22px;
  height: 22px;
  color: var(--clr-gold-dark);
}
.benefit-item__title {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--clr-navy);
}
.benefit-item__text {
  font-size: 0.9rem;
  color: var(--clr-text-secondary);
  line-height: 1.7;
}

/* ===== SPEAKER ===== */
.speaker {
  background: var(--clr-bg-secondary);
  overflow: hidden;
}
.speaker__grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: var(--space-3xl);
  align-items: center;
  margin-top: var(--space-xl);
}
.speaker__image-wrapper {
  position: relative;
}
.speaker__image {
  width: 100%;
  height: 500px;
  object-fit: contain;
  object-position: center top;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
  background: var(--clr-white);
}
.speaker__image-wrapper::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--clr-gold);
  border-radius: var(--radius-lg);
  opacity: 0.3;
  z-index: -1;
}
.speaker__name {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--clr-navy);
}
.speaker__role {
  font-family: var(--ff-accent);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--clr-gold-dark);
  margin-bottom: var(--space-md);
}
.speaker__bio {
  font-size: 1rem;
  color: var(--clr-text-secondary);
  line-height: 1.9;
  margin-bottom: var(--space-lg);
}
.speaker__stats {
  display: flex;
  gap: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--clr-border);
}
.speaker__stat-value {
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-gold-dark);
  line-height: 1;
}
.speaker__stat-label {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0.3rem;
}

/* ===== VENUE ===== */
.venue {
  background: var(--clr-bg-primary);
}
.venue__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-xl);
  box-shadow: var(--shadow-card);
}
.venue__map {
  min-height: 400px;
  background: var(--clr-bg-secondary);
  position: relative;
}
.venue__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.7) contrast(1.05);
  transition: var(--transition-base);
}
.venue__map:hover iframe {
  filter: saturate(1) contrast(1);
}
.venue__info {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.venue__info-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.venue__info-item:last-child {
  margin-bottom: 0;
}
.venue__info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--clr-accent-glow), rgba(245, 239, 230, 0.8));
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.venue__info-icon svg {
  width: 24px;
  height: 24px;
  color: var(--clr-gold-dark);
}
.venue__info-title {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--clr-navy);
}
.venue__info-text {
  font-size: 0.95rem;
  color: var(--clr-text-secondary);
  line-height: 1.6;
}

/* ===== CTA / REGISTER ===== */
.cta {
  padding: var(--space-3xl) 0;
  background: var(--clr-navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta__orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: var(--radius-full);
  filter: blur(150px);
  opacity: 0.08;
}
.cta__orb--1 {
  background: var(--clr-gold);
  top: -200px;
  left: -200px;
}
.cta__orb--2 {
  background: var(--clr-gold-light);
  bottom: -200px;
  right: -200px;
}
.cta__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.cta .section__label {
  color: var(--clr-gold-light);
}
.cta .section__label::before {
  background: var(--clr-gold-light);
}
.cta__date {
  font-family: var(--ff-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--clr-bg-primary);
}
.cta__date .highlight {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta__text {
  font-size: 1.1rem;
  color: rgba(245, 239, 230, 0.7);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}
.cta__seats {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(184, 150, 62, 0.1);
  border: 1px solid rgba(184, 150, 62, 0.3);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  color: var(--clr-gold-light);
  margin-bottom: var(--space-lg);
  animation: pulse-border 2s ease-in-out infinite;
}
@keyframes pulse-border {
  0%, 100% { border-color: rgba(184, 150, 62, 0.3); }
  50% { border-color: var(--clr-gold); }
}

/* ===== REGISTRATION FORM ===== */
.register-form {
  max-width: 500px;
  margin: var(--space-lg) auto 0;
  text-align: left;
}
.form-group {
  margin-bottom: var(--space-md);
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.6);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(184, 150, 62, 0.25);
  border-radius: var(--radius-md);
  color: var(--clr-bg-primary);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(184, 150, 62, 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245, 239, 230, 0.35);
}
.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.cta .btn--primary {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  color: var(--clr-navy);
}
.cta .btn--primary:hover {
  box-shadow: 0 10px 40px rgba(184, 150, 62, 0.3);
}

/* ===== FOOTER ===== */
.footer {
  padding: var(--space-xl) 0 var(--space-lg);
  background: var(--clr-bg-primary);
  border-top: 1px solid var(--clr-border);
}
.footer__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.footer__brand {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-navy);
}
.footer__brand span {
  color: var(--clr-gold);
  font-weight: 700;
}
.footer__links {
  display: flex;
  gap: var(--space-md);
}
.footer__links a {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  transition: var(--transition-fast);
}
.footer__links a:hover {
  color: var(--clr-gold-dark);
}
.footer__copy {
  width: 100%;
  text-align: center;
  padding-top: var(--space-lg);
  margin-top: var(--space-md);
  border-top: 1px solid var(--clr-border);
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== FLOATING PARTICLES ===== */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--clr-gold);
  border-radius: var(--radius-full);
  opacity: 0;
  animation: particle-float 12s linear infinite;
}
@keyframes particle-float {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.35;
  }
  90% {
    opacity: 0.1;
  }
  100% {
    opacity: 0;
    transform: translateY(-100px) scale(1);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .about__image img {
    height: 350px;
  }
  .speaker__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .speaker__image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }
  .speaker__image {
    height: 400px;
  }
  .venue__card {
    grid-template-columns: 1fr;
  }
  .venue__map {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .navbar__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(245, 239, 230, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-lg);
    transition: var(--transition-base);
    border-left: 1px solid var(--clr-border);
  }
  .navbar__links.open {
    right: 0;
  }
  .navbar__toggle {
    display: flex;
  }
  .corner-frame {
    display: none;
  }
  
  .pillars__grid {
    grid-template-columns: 1fr;
  }
  .benefits__list {
    grid-template-columns: 1fr;
  }
  .hero__meta {
    gap: var(--space-sm);
  }
  .hero__meta-item {
    font-size: 0.85rem;
  }
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .countdown__grid {
    gap: var(--space-sm);
  }
  .countdown__item {
    min-width: 70px;
  }
  .countdown__separator {
    font-size: 2rem;
  }
  .speaker__stats {
    flex-wrap: wrap;
    gap: var(--space-lg);
  }
  .footer__grid {
    flex-direction: column;
    text-align: center;
  }
  .section {
    padding: var(--space-2xl) 0;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.2rem;
  }
  .hero__subtitle {
    font-size: 1rem;
  }
  .section__title {
    font-size: 1.7rem;
  }
  .countdown__number {
    font-size: 2rem;
  }
  .venue__info {
    padding: var(--space-lg);
  }
}
