/* ===================================================================
   HOTEP NATION — Design System & Styles
   WHITE BACKGROUND • Black & Gold Accents • Cinzel + Inter
   =================================================================== */

/* --- CSS Custom Properties --- */
:root {
  --gold-primary: #D4A931;
  --gold-light: #F4E4A6;
  --gold-dark: #A68B1B;
  --gold-subtle: rgba(212, 169, 49, 0.08);
  --black: #111111;
  --black-soft: #222222;
  --black-muted: #333333;
  --white: #FFFFFF;
  --white-soft: #FAFAF8;
  --gray-100: #F5F5F3;
  --gray-200: #EBEBEB;
  --gray-300: #D4D4D4;
  --gray-500: #888888;
  --gray-700: #555555;
  --text-primary: #111111;
  --text-secondary: #555555;
  --text-muted: #888888;
  --border: rgba(0, 0, 0, 0.08);
  --border-gold: rgba(212, 169, 49, 0.25);

  --font-heading: 'Fira Sans', sans-serif;
  --font-body: 'Fira Sans', sans-serif;

  --max-width: 1200px;
  --section-pad: 120px 0;
  --section-pad-mobile: 72px 0;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-gold: 0 8px 30px rgba(212, 169, 49, 0.15);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-primary);
}

ul, ol {
  list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: 0.5px;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: 0.25px;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
}

h4 {
  font-size: 1.25rem;
  font-weight: 700;
}

h5 {
  font-size: 1.0625rem;
  font-weight: 700;
}

p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.gold-text {
  color: var(--gold-primary);
}

.gold-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 16px;
  display: block;
}

strong, b {
  font-weight: 700;
  color: var(--text-primary);
}

em {
  font-style: italic;
  color: var(--gold-dark);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--gold-primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

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

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Ghost on light backgrounds */
.section-white .btn-ghost,
.section-soft .btn-ghost {
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}

.section-white .btn-ghost:hover,
.section-soft .btn-ghost:hover {
  background: var(--gold-subtle);
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-large {
  padding: 20px 52px;
  font-size: 1rem;
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo img {
  height: 48px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  position: relative;
  padding: 4px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold-primary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

/* Persistent Donate CTA in Nav */
.nav-donate {
  display: inline-block;
  background: var(--gold-primary);
  color: var(--white) !important;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 4px;
  margin-left: 4px;
  transition: all var(--transition);
}

.nav-donate:hover {
  background: var(--gold-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.nav-donate::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition);
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  z-index: 999;
}

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

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mobile-nav a:hover {
  color: var(--gold-primary);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.88) 0%, rgba(17,17,17,0.65) 50%, rgba(212,169,49,0.08) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--white);
}

.hero h1 .gold-text {
  display: block;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* --- Sections --- */
.section {
  padding: var(--section-pad);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4, .section-dark h5 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255,255,255,0.75);
}

.section-dark strong {
  color: var(--white);
}

.section-dark em {
  color: var(--gold-light);
}

.section-soft {
  background: var(--white-soft);
}

.section-accent {
  background: var(--gray-100);
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header h2 {
  margin-bottom: 20px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.gold-divider {
  width: 48px;
  height: 3px;
  background: var(--gold-primary);
  margin: 24px auto;
  border-radius: 2px;
}

/* --- Feature Cards (3-column) --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: transparent;
  border: none;
  border-top: 3px solid var(--gold-primary);
  border-radius: 0;
  padding: 32px 8px 16px;
  transition: all var(--transition);
  box-shadow: none;
}

.section-dark .feature-card {
  background: transparent;
  border-color: var(--gold-primary);
}

.feature-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: none;
}

.section-dark .feature-card:hover {
  border-color: var(--gold-light);
  box-shadow: none;
}

.feature-icon {
  font-size: 1.25rem;
  color: var(--gold-primary);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.section-dark .feature-card h3 {
  color: var(--gold-primary);
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.75;
}

.section-dark .feature-card p {
  color: rgba(255,255,255,0.65);
}

/* --- Split Section --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.split-left, .split-right {
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-left {
  background: var(--black);
  position: relative;
}

.split-left .watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.06;
  width: 200px;
  pointer-events: none;
}

.split-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1.4;
  border-left: 3px solid var(--gold-primary);
  padding-left: 24px;
}

.split-right {
  background: var(--white-soft);
}

.split-right p {
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
}

.split-right strong {
  color: var(--text-primary);
}

.split-right p:last-child {
  margin-bottom: 0;
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(212, 169, 49, 0);
  transition: background var(--transition);
}

.gallery-item:hover::after {
  background: rgba(212, 169, 49, 0.08);
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  transition: color var(--transition);
}

.lightbox-close:hover {
  color: var(--gold-primary);
}

/* --- Donors Strip --- */
.donors-strip {
  padding: 48px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.donors-strip h3 {
  font-size: 1.125rem;
  color: var(--gold-dark);
  margin-bottom: 20px;
}

.donors-list {
  font-size: 0.9375rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* --- Donate / Embed Section --- */
.donate-section {
  text-align: center;
  padding: var(--section-pad);
}

.donate-section h2 {
  margin-bottom: 16px;
}

.donate-section > .container > p {
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Inherit dark section colors for donate */
.donate-section.section-dark > .container > p {
  color: rgba(255,255,255,0.65);
}

.embed-wrapper {
  max-width: 520px;
  margin: 0 auto;
}

.embed-wrapper iframe {
  width: 100%;
  border: none;
  border-radius: 8px;
}

/* --- FAQ Page --- */
.faq-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 120px 0 60px;
}

.faq-intro-text h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: var(--gold-dark);
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.faq-section {
  padding: 40px 0 100px;
}

.faq-section .section-header {
  margin-bottom: 40px;
}

/* Dark section FAQ intro overrides */
.section-dark .faq-intro-text h2 {
  color: var(--gold-primary);
}

.section-dark .video-embed {
  border-color: rgba(255,255,255,0.1);
}

/* Accordion */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid var(--gray-200);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  gap: 16px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  transition: color var(--transition);
}

.accordion-header:hover {
  color: var(--gold-primary);
}

.accordion-icon {
  font-size: 1.25rem;
  color: var(--gold-primary);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.accordion-content {
  padding: 0 0 24px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.accordion-content p {
  margin-bottom: 12px;
  font-size: 0.9375rem;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}

/* --- HotepCon Event Page --- */

/* Event Hero — stays dark for dramatic impact */
.event-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px;
  overflow: hidden;
  background: var(--black);
}

.event-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}

.event-hero .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0.7) 0%, rgba(17,17,17,0.92) 100%);
}

.event-hero-content {
  position: relative;
  z-index: 1;
}

.event-logo {
  width: 100px;
  margin: 0 auto 32px;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(212,169,49,0.3)); }
  50% { filter: drop-shadow(0 0 28px rgba(212,169,49,0.6)); }
}

.event-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 6px;
  margin-bottom: 12px;
  color: var(--white);
}

.event-hero h2 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--gold-primary);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.event-date {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 2px;
  margin-bottom: 48px;
}

/* Countdown */
.countdown {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 169, 49, 0.25);
  border-radius: 8px;
  padding: 20px 24px;
  min-width: 90px;
  backdrop-filter: blur(12px);
}

.countdown-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  display: block;
  line-height: 1;
}

.countdown-label {
  font-size: 0.6875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  display: block;
}

/* Experience Cards */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.experience-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 28px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.experience-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.experience-card .card-emoji {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.experience-card h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--gold-dark);
}

.experience-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Timeline Schedule */
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-primary) 0%, var(--gray-200) 100%);
  transform: translateX(-50%);
}

.timeline-day {
  margin-bottom: 48px;
}

.timeline-day:last-child {
  margin-bottom: 0;
}

.day-header {
  text-align: center;
  position: relative;
  margin-bottom: 24px;
}

.day-badge {
  display: inline-block;
  background: var(--gold-primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 2px;
  padding: 8px 24px;
  border-radius: 24px;
  position: relative;
  z-index: 1;
}

.day-date {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 1px;
}

.timeline-events {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.timeline-event {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color var(--transition);
  box-shadow: var(--shadow-sm);
}

.timeline-event:hover {
  border-color: var(--border-gold);
}

.event-time {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gold-dark);
  min-width: 110px;
  letter-spacing: 0.5px;
}

.event-name {
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.timezone-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Pricing Card */
.pricing-section {
  text-align: center;
}

.pricing-card {
  max-width: 420px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--border-gold);
  border-radius: 16px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 24px;
}

.price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.price .currency {
  font-size: 1.5rem;
  vertical-align: top;
  line-height: 1;
  margin-right: 4px;
  color: var(--gold-primary);
}

.pricing-features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--gray-100);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: var(--gold-primary);
  font-size: 0.75rem;
}

.pricing-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  font-style: italic;
}

/* Terms Banner */
.terms-banner {
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 20px 28px;
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.section-dark .terms-banner {
  background: rgba(212, 169, 49, 0.06);
  color: rgba(255,255,255,0.6);
}

.terms-banner strong {
  color: var(--text-primary);
}

.section-dark .terms-banner strong {
  color: var(--white);
}

.terms-banner a {
  color: var(--gold-primary);
  text-decoration: underline;
}

/* --- Footer --- */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(212, 169, 49, 0.15);
  padding: 48px 0 32px;
}

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

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--gold-primary);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
  font-size: 1rem;
}

.footer-social a:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(212, 169, 49, 0.08);
}

.footer-copy {
  width: 100%;
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .features-grid,
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .split-left, .split-right {
    padding: 48px 24px;
  }

  .faq-intro {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 100px;
  }

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

  .section {
    padding: var(--section-pad-mobile);
  }

  .timeline::before {
    left: 20px;
  }

  .countdown-item {
    min-width: 72px;
    padding: 14px 16px;
  }

  .countdown-number {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.375rem;
  }

  .hero {
    min-height: 90vh;
    padding: 100px 20px 60px;
  }

  .event-hero {
    min-height: 90vh;
  }

  .event-logo {
    width: 72px;
  }

  .event-hero h1 {
    letter-spacing: 3px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 200px;
  }

  .pricing-card {
    padding: 36px 24px;
  }

  .countdown {
    gap: 10px;
  }

  .countdown-item {
    min-width: 64px;
    padding: 12px;
  }

  .countdown-number {
    font-size: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}
