/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Helvitica', sans-serif;
  background: #ffffff;
  color: #00002e;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── CSS VARIABLES ── */
:root {
  --orange: #ff6600;
  --orange-light: #ff8533;
  --navy: #00002e;
  --navy-mid: #00004a;
  --blush: #fef4f6;
  --white: #ffffff;
  --gray: #6b7280;
  --gray-light: #f4f4f4;
  --border: rgba(0,0,46,0.1);
  --max: 1140px;
  --radius: 12px;
}

/* ── UTILITY ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-orange { color: var(--orange); }
.tag {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,102,0,0.3); }
  50%       { box-shadow: 0 0 0 10px rgba(255,102,0,0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0,0,46,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,102,0,0.15);
  transition: all 0.3s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-box {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text span:first-child {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
}
.logo-text span:last-child {
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  letter-spacing: 0.3px;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.1s !important;
}
.nav-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
 
}
.nav-cta:hover { background: var(--orange-light) !important; transform: scale(1.03); }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(255,102,0,0.2);
  padding: 16px 32px 24px;
}
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu .mob-cta {
  margin-top: 16px;
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
    background:linear-gradient(rgba(0, 0, 46, 0.9), rgba(0, 0, 46, 0.5))
, url('hero2.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
  background-repeat: no-repeat;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,102,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,102,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,102,0,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,102,0,0.12);
  border: 1px solid rgba(255,102,0,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}
.hero-badge span { color: var(--orange); font-weight: 600; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 12px;
}
.hero-title em {
  font-style: normal;
  color: var(--orange);
}
.hero-subtitle {
  font-size: clamp(15px, 2vw, 20px);
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 560px;
  line-height: 1.7;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}
.hero-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.hero-pill-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  animation: pulse-ring 2.5s infinite;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.stat-item {}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── STRIP / TICKER ── */
.strip {
  background: var(--orange);
  padding: 14px 0;
  overflow: hidden;
}


.strip-inner {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.strip-dot { color: rgba(255,255,255,0.5); }

/* ── WHY ATTEND ── */
#why {
  background: var(--blush);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-left {}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}
.why-lead {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}
.anchor-statement {
  border-left: 3px solid var(--orange);
  padding: 16px 20px;
  background: rgba(255,102,0,0.05);
  border-radius: 0 8px 8px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  font-style: italic;
  line-height: 1.5;
}
.why-cards {
  display: grid;
  gap: 16px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,46,0.08); }
.why-card-icon {
  width: 40px; height: 40px;
  background: rgba(255,102,0,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-size: 18px;
}
.why-card h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.why-card p  { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ── PROGRAMME ── */
#programme { background: #fff; }
.prog-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.prog-lead { font-size: 16px; color: var(--gray); margin-top: 16px; }
.prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.prog-card {
  background: var(--blush);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid rgba(0,0,46,0.06);
  transition: transform 0.2s;
}
.prog-card:hover { transform: translateY(-4px); }
.prog-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 12px;
}
.prog-card h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.prog-card p  { font-size: 14px; color: var(--gray); line-height: 1.6; }
.outcomes-block {
  background: var(--navy);
  border-radius: 16px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.outcomes-left h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.outcomes-left p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.outcomes-list { display: grid; gap: 12px; }
.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
}
.outcome-check {
  width: 22px; height: 22px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.outcome-check svg { width: 12px; height: 12px; }
.outcome-item p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.5; }

/* ── WHO ATTENDS ── */
#audience { background: var(--blush); }
.audience-header { text-align: center; max-width: 600px; margin: 0 auto 52px; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.audience-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.2s;
}
.audience-card.primary {
  border-color: rgba(255,102,0,0.3);
  background: rgba(255,102,0,0.03);
}
.audience-card:hover { box-shadow: 0 8px 32px rgba(0,0,46,0.08); transform: translateY(-3px); }
.audience-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.audience-card.primary .audience-icon { background: rgba(255,102,0,0.1); }
.audience-card:not(.primary) .audience-icon { background: var(--blush); }
.audience-card h3 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.audience-card p  { font-size: 13px; color: var(--gray); line-height: 1.5; }
.primary-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,102,0,0.1);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* ── PRICING ── */
#pricing { background: #fff; }
.pricing-header { text-align: center; max-width: 580px; margin: 0 auto 52px; }
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 48px;
}
.price-card {
  border-radius: 16px;
  padding: 40px 36px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.local { background: var(--blush); }
.price-card.intl  { background: var(--navy); }
.price-tag-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.local .price-tag-label  { color: var(--orange); }
.intl  .price-tag-label  { color: rgba(255,255,255,0.5); }
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.local .price-amount { color: var(--navy); }
.intl  .price-amount { color: #fff; }
.price-currency {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 600;
  vertical-align: super;
}
.price-note {
  font-size: 13px;
  margin-bottom: 28px;
  margin-top: 4px;
}
.local .price-note { color: var(--gray); }
.intl  .price-note { color: rgba(255,255,255,0.4); }
.price-divider {
  height: 1px;
  margin-bottom: 24px;
}
.local .price-divider { background: rgba(0,0,46,0.08); }
.intl  .price-divider { background: rgba(255,255,255,0.1); }
.inclusions { display: grid; gap: 10px; }
.inclusion-item { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.local .inclusion-item { color: var(--navy); }
.intl  .inclusion-item { color: rgba(255,255,255,0.8); }
.inclusion-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.local .inclusion-dot { background: var(--orange); }
.intl  .inclusion-dot { background: rgba(255,102,0,0.7); }
.pricing-cta { text-align: center; }
.pricing-cta p { font-size: 14px; color: var(--gray); margin-top: 16px; }

/* ── REGISTER ── */
#register { background: var(--blush); }
.register-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.register-left {}
.register-left h2 { margin-bottom: 16px; }
.register-left p { font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 24px; }
.register-info { display: grid; gap: 14px; }
.reg-info-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--navy); }
.reg-info-icon {
  width: 36px; height: 36px;
  background: rgba(255,102,0,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.form-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0,0,46,0.06);
}
.form-card h3 { font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--navy);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,102,0,0.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--orange-light); transform: translateY(-1px); }
.form-note { font-size: 12px; color: var(--gray); text-align: center; margin-top: 12px; line-height: 1.5; }

/* ── FAQ ── */
#faq { background: #fff; }
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.faq-left h2 { margin-bottom: 16px; }
.faq-left p { font-size: 15px; color: var(--gray); line-height: 1.75; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(255,102,0,0.3); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  gap: 16px;
  user-select: none;
  background: #fff;
  transition: background 0.2s;
}
.faq-item.open .faq-q { background: rgba(255,102,0,0.03); }
.faq-q:hover { background: rgba(0,0,46,0.02); }
.faq-icon {
  width: 28px; height: 28px;
  background: rgba(0,0,46,0.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
  font-size: 16px;
  font-weight: 300;
  color: var(--navy);
}
.faq-item.open .faq-icon {
  background: var(--orange);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
}
.faq-item.open .faq-a {
  padding: 0 22px 18px;
  max-height: 300px;
}

/* ── ABOUT ── */
#about { background: var(--navy); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-left {}
.about-left .tag { color: rgba(255,102,0,0.8); }
.about-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.about-left p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 16px; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.pillar {
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
}
.pillar-label { font-size: 11px; font-weight: 600; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.pillar-text  { font-size: 13px; color: rgba(255,255,255,0.6); }
.about-right {}
.about-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px;
}
.about-card h3 { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.about-card p  { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 24px; }
.about-services { display: grid; gap: 10px; }
.about-service {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
}
.service-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }

/* ── VENUE ── */
#venue { background: var(--blush); }
.venue-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.venue-img-block {
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.venue-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.3);
}
.venue-placeholder-icon { font-size: 48px; margin-bottom: 12px; }
.venue-placeholder p { font-size: 13px; }
.venue-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,46,0.9), transparent);
  padding: 24px;
}
.venue-name { font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.venue-loc  { font-size: 13px; color: rgba(255,255,255,0.5); }
.venue-details { display: grid; gap: 16px; }
.venue-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.venue-detail-icon {
  width: 40px; height: 40px;
  background: rgba(255,102,0,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.venue-detail-text {}
.venue-detail-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--orange); margin-bottom: 2px; }
.venue-detail-value { font-size: 14px; font-weight: 500; color: var(--navy); }

/* ── FOOTER ── */
#footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,102,0,0.15);
}
.footer-top {
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}
.social-btn:hover { border-color: var(--orange); color: var(--orange); }
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.25); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.6); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .prog-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .why-grid, .register-wrap, .faq-wrap, .about-grid, .venue-grid { grid-template-columns: 1fr; gap: 40px; }
  .prog-grid { grid-template-columns: 1fr; }
  .outcomes-block { grid-template-columns: 1fr; padding: 32px 24px; gap: 24px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-stats { gap: 24px; }
  .about-pillars { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .audience-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}