:root {
  --navy: #0f2444;
  --blue: #1a5fa8;
  --sky: #4fa3e0;
  --gold: #f5a623;
  --warm: #fff8f0;
  --white: #ffffff;
  --gray: #6b7280;
  --light: #f0f6ff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(15, 36, 68, 0.96);
  backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: -0.5px;
  text-decoration: none;
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
}

.nav-cta:hover { background: #e8961f; color: var(--navy) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
#home {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 50%, #0d3060 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 20% 50%, var(--sky) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, var(--gold) 0%, transparent 40%),
                    radial-gradient(circle at 60% 80%, var(--sky) 0%, transparent 40%);
}

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

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.3);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--sky);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
}

.btn-primary:hover {
  background: #e8961f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.4);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
}

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

.hero-visual {
  position: relative;
}

.hero-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}

.hero-img-float {
  position: absolute;
  bottom: -28px;
  left: -32px;
  width: 180px;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  border: 4px solid var(--navy);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.hero-stat-card {
  position: absolute;
  top: 24px;
  right: -20px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  text-align: center;
  min-width: 130px;
}

.hero-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--blue);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 4px;
  font-weight: 500;
}

/* STATS BAR */
.stats-bar {
  background: var(--light);
  padding: 40px 48px;
}

.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {}

.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  color: var(--blue);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
  margin-top: 4px;
}

/* SECTIONS */
section { padding: 96px 48px; }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 560px;
}

/* ABOUT */
#about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
}

.about-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  border-radius: 20px;
  z-index: -1;
}

.about-text p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.02rem;
}

.founders {
  display: flex;
  gap: 20px;
  margin-top: 32px;
}

.founder-card {
  background: var(--light);
  border-radius: 16px;
  padding: 20px;
  flex: 1;
  border-left: 4px solid var(--blue);
}

.founder-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}

.founder-title {
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 4px;
}

/* WORKSHOPS */
#workshops { background: var(--light); }

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.workshop-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(26,95,168,0.1);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.workshop-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
}

.workshop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(26,95,168,0.12);
}

.workshop-icon {
  width: 52px;
  height: 52px;
  background: var(--light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.workshop-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.workshop-desc {
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* LOCATIONS */
#locations { background: var(--navy); }

#locations .section-label { color: var(--sky); }
#locations .section-title { color: var(--white); }
#locations .section-sub { color: rgba(255,255,255,0.6); }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.location-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.3s;
}

.location-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.location-icon { font-size: 2.2rem; margin-bottom: 16px; }

.location-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}

.location-detail {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.6;
}

.location-tag {
  display: inline-block;
  background: rgba(79,163,224,0.2);
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 16px;
  letter-spacing: 0.5px;
}

/* WHATSAPP COMMUNITY */
#whatsapp-community {
  background: var(--white);
  padding-top: 64px;
  padding-bottom: 64px;
}

.whatsapp-card {
  max-width: 780px;
  margin: 0 auto;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: 0 24px 64px rgba(18,140,126,0.25);
}

.whatsapp-icon-wrap {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-icon-wrap svg { width: 40px; height: 40px; }

.whatsapp-copy { flex: 1; }

.whatsapp-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 8px;
}

.whatsapp-desc {
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  font-size: 0.98rem;
  margin-bottom: 0;
}

.whatsapp-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: #128C7E;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.whatsapp-btn svg { width: 18px; height: 18px; }

@media (max-width: 768px) {
  .whatsapp-card { flex-direction: column; text-align: center; padding: 36px 28px; }
  .whatsapp-btn { width: 100%; justify-content: center; }
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.testimonial-card {
  background: var(--light);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(26,95,168,0.08);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,95,168,0.1);
}

.testimonial-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }

.testimonial-text {
  color: var(--navy);
  font-size: 0.97rem;
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

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

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

.testimonial-school {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 2px;
}

/* TEAM */
#team-page {
  background: var(--white);
  padding-top: 140px;
}

.team-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 52px;
}

.team-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(26,95,168,0.1);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 32px;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,95,168,0.1);
}

.team-founder {
  border-left: 4px solid var(--gold);
}

.team-photo {
  width: 180px;
  height: 180px;
  border-radius: 16px;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
}

.team-info { flex: 1; }

.team-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
}

.team-bio {
  text-align: left;
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-top: 14px;
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
}

.team-linkedin:hover { color: var(--navy); }

.founders-story {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 52px;
  padding: 32px;
  border-radius: 20px;
  background: var(--light);
  border: 1px solid rgba(26,95,168,0.1);
}

.story-photo {
  width: 320px;
  height: 320px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center 60%;
  flex-shrink: 0;
}

.story-text h3 {
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.story-text p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .team-card { flex-direction: column; text-align: center; }
  .team-photo { width: 140px; height: 140px; }
  .team-founder { border-left: none; border-top: 4px solid var(--gold); }
  .team-bio, .team-linkedin { text-align: left; }
  .founders-story { flex-direction: column; text-align: center; padding: 24px; }
  .story-photo { width: 100%; height: 260px; }
  .story-text p { text-align: left; }
}

/* PARTNERSHIPS */
#partnerships-page {
  background: var(--white);
  padding-top: 140px;
}

.partnership-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  margin-top: 48px;
}

.partnership-copy p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 1.02rem;
  margin-bottom: 18px;
}

.partner-panel {
  background: var(--light);
  border: 1px solid rgba(26,95,168,0.12);
  border-radius: 20px;
  padding: 36px;
}

.partner-mark {
  background: var(--white);
  border: 1px solid rgba(15,36,68,0.08);
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 24px;
  text-align: center;
}

.partner-logo-img {
  max-width: 100%;
  height: auto;
  max-height: 90px;
}

.partner-logo-sub {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(79,163,224,0.15);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.partner-title {
  font-family: 'DM Serif Display', serif;
  color: var(--navy);
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.partner-detail {
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

.partnership-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.partnership-point {
  background: var(--light);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(26,95,168,0.1);
}

.partnership-point h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 8px;
}

.partnership-point p {
  color: var(--gray);
  line-height: 1.65;
  font-size: 0.92rem;
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .partnership-hero, .partnership-points { grid-template-columns: 1fr; }
}

/* ONLINE WORKSHOPS PAGE */
#online-page { background: var(--white); padding-top: 140px; }

.online-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.online-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
}

.steps-list { list-style: none; margin: 0; padding: 0; }

.steps-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.steps-list li:last-child { margin-bottom: 0; }

.step-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-copy strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.step-copy span {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* RESOURCES PAGE */
#resources-page { background: var(--white); padding-top: 140px; }

.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.resource-card {
  background: var(--light);
  border: 1px solid rgba(26,95,168,0.1);
  border-radius: 20px;
  padding: 28px;
}

.resource-card h3 {
  color: var(--navy);
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.resource-card p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.resource-card a {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
}

.resource-card a:hover { color: var(--navy); }

.safety-tips {
  margin-top: 64px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.tip-card {
  background: var(--white);
  border: 1px solid rgba(26,95,168,0.1);
  border-radius: 18px;
  padding: 24px;
}

.tip-card .tip-icon { font-size: 1.6rem; margin-bottom: 10px; }

.tip-card h4 {
  color: var(--navy);
  font-size: 0.98rem;
  margin-bottom: 8px;
}

.tip-card p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .online-gallery, .resources-grid, .tips-grid { grid-template-columns: 1fr; }
}

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.contact-info h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  color: var(--navy);
  font-weight: 500;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail a {
  color: var(--blue);
  text-decoration: none;
}

.contact-form {
  background: var(--light);
  border-radius: 24px;
  padding: 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid transparent;
  background: var(--white);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 4px;
}

.form-submit:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.form-note {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 12px;
  text-align: center;
}

/* FOOTER */
footer {
  background: var(--navy);
  padding: 48px;
  text-align: center;
  color: rgba(255,255,255,0.5);
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-logo span { color: var(--gold); }

.footer-tagline {
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  list-style: none;
  margin-bottom: 32px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeIn 0.7s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.25s; }
.fade-in:nth-child(3) { animation-delay: 0.4s; }
.fade-in:nth-child(4) { animation-delay: 0.55s; }

/* SUCCESS MESSAGE */
.success-msg {
  display: none;
  background: #d4f5e9;
  border: 1px solid #2ecc71;
  color: #155724;
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 500;
  margin-top: 16px;
  text-align: center;
}

/* COOKIE CONSENT */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  padding: 20px 22px;
  background: rgba(15, 36, 68, 0.98);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}

.cookie-banner.active {
  display: flex;
}

.cookie-copy {
  line-height: 1.5;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
}

.cookie-copy strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn.accept {
  background: var(--gold);
  color: var(--navy);
}

.cookie-btn.decline {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: rgba(15, 36, 68, 0.98);
    padding: 12px 20px 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 4px; }
  .nav-cta { display: inline-block; margin-top: 8px; }
  section { padding: 64px 20px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .stats-bar { padding: 32px 20px; }
  .stats-bar-inner { grid-template-columns: repeat(2,1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .workshops-grid, .locations-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .founders { flex-direction: column; }
  .cookie-banner { left: 14px; right: 14px; bottom: 14px; flex-direction: column; align-items: stretch; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; }
}
