/* ==========================================================================
   DAD & I DINNER — NIGERIA EDITION (10 YEARS OF LEGACY)
   Components Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. NAVIGATION & FLOATING HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1.5rem 0;
}

.site-header.scrolled {
  padding: 0.85rem 0;
  background-color: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--nav-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text-primary);
  line-height: 1;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.brand-title span {
  color: var(--color-gold);
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Theme Toggle Button */
.theme-toggle-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--color-gold);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.15rem;
  transition: var(--transition-fast);
  backdrop-filter: blur(8px);
}

.theme-toggle-btn:hover {
  background: rgba(244, 192, 42, 0.12);
  border-color: var(--color-gold);
  transform: rotate(18deg) scale(1.05);
}

.nav-cta {
  padding: 0.8rem 1.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

/* Mobile Hamburger */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobile Fullscreen Menu */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-primary);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem clamp(1.5rem, 6vw, 3rem);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-close-btn {
  background: none;
  border: 1px solid var(--border-subtle);
  color: var(--color-gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.mobile-menu-link {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  color: var(--text-primary);
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  color: var(--color-gold);
}

.mobile-drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

/* --------------------------------------------------------------------------
   2. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  min-height: 100vh;
  padding-top: clamp(8rem, 15vh, 11rem);
  padding-bottom: clamp(4rem, 8vh, 6rem);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 75% 30%, rgba(132, 38, 103, 0.28) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(244, 192, 42, 0.12) 0%, transparent 50%),
              var(--bg-primary);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  position: relative;
  z-index: 2;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.8vw, 6.2rem);
  line-height: 0.98;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.hero-headline .edition-sub {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.2vw, 1.8rem);
  font-weight: 400;
  color: var(--color-gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.75rem;
}

.hero-statement {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.45;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 2rem;
  max-width: 600px;
  border-left: 2px solid var(--color-gold);
  padding-left: 1.5rem;
}

.hero-meta-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.75rem;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  backdrop-filter: blur(8px);
}

.meta-pill .pill-icon {
  color: var(--color-gold);
  font-size: 0.95rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

/* Hero Media Column */
.hero-media-wrapper {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(9, 6, 8, 0.75) 100%);
  pointer-events: none;
}

.hero-img {
  width: 100%;
  height: clamp(480px, 60vh, 640px);
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-frame:hover .hero-img {
  transform: scale(1.06);
}

/* Floating Milestone Card */
.hero-milestone-card {
  position: absolute;
  bottom: -25px;
  left: -25px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-highlight);
  padding: 1.5rem 1.8rem;
  border-radius: 4px;
  box-shadow: var(--shadow-gold);
  max-width: 250px;
  z-index: 3;
}

.milestone-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 0.9;
  color: var(--color-gold);
}

.milestone-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-top: 0.5rem;
}

/* Scroll Down Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  transition: color 0.3s ease;
}

.hero-scroll-indicator:hover {
  color: var(--color-gold);
}

.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 1px solid var(--border-medium);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouseWheel 2s infinite ease-in-out;
}

@keyframes mouseWheel {
  0% { transform: translate(-50%, 0); opacity: 1; }
  80% { transform: translate(-50%, 14px); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 0; }
}

/* --------------------------------------------------------------------------
   3. HERO STORY MOMENT
   -------------------------------------------------------------------------- */
.story-moment-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.story-lead-quote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.25;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 2.25rem;
}

.story-lead-quote span {
  color: var(--color-gold);
}

.story-body-text {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.85;
  color: var(--text-secondary);
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   4. 10 YEARS SECTION ("A DECADE OF IMPACT")
   -------------------------------------------------------------------------- */
.decade-section {
  position: relative;
  background-color: var(--bg-primary);
}

.decade-header-wrap {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem auto;
}

.decade-big-num {
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 14vw, 12rem);
  font-weight: 900;
  line-height: 0.85;
  color: var(--color-gold);
  opacity: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
  display: block;
}

.decade-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

/* Horizontal / Responsive Timeline */
.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  margin-bottom: 4rem;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold) 0%, rgba(244, 192, 42, 0.4) 75%, var(--color-purple) 100%);
  z-index: 1;
}

.timeline-step {
  position: relative;
  z-index: 2;
  padding-top: 25px;
}

.step-marker {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  box-shadow: 0 0 15px rgba(244, 192, 42, 0.4);
  transition: var(--transition-fast);
}

.timeline-step:hover .step-marker {
  background: var(--color-gold);
  color: #090608;
  transform: scale(1.15);
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.step-card:hover {
  border-color: var(--border-highlight);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.step-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.step-content {
  padding: 1.5rem;
}

.step-year {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Transition Banner */
.stories-purpose-banner {
  background: var(--purple-gradient);
  border: 1px solid rgba(244, 192, 42, 0.35);
  border-radius: 4px;
  padding: clamp(2.5rem, 5vw, 4rem) 2rem;
  text-align: center;
  box-shadow: var(--shadow-purple);
  position: relative;
  overflow: hidden;
}

.banner-statement {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.6vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-transform: uppercase;
}

.banner-statement span {
  color: var(--color-gold-light);
}

/* --------------------------------------------------------------------------
   5. NIGERIA EDITION ("AND NOW, NIGERIA.")
   -------------------------------------------------------------------------- */
.nigeria-section {
  background-color: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.nigeria-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
}

.nigeria-text-col .eyebrow {
  margin-bottom: 1rem;
}

.nigeria-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 1.75rem;
  color: var(--text-primary);
}

.nigeria-copy {
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.nigeria-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.nigeria-tag {
  background: rgba(132, 38, 103, 0.18);
  border: 1px solid var(--border-subtle);
  color: var(--color-gold);
  padding: 0.45rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
}

/* Nigeria Media Collage */
.nigeria-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 1.25rem;
  position: relative;
}

.collage-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.collage-item:hover img {
  transform: scale(1.06);
}

.collage-item.tall {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.collage-item.wide {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.collage-item.square {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.collage-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(9, 6, 8, 0.85) 100%);
  color: #fbf8f4;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   6. ABOUT & VISION (SPLIT SCREEN)
   -------------------------------------------------------------------------- */
.vision-section {
  background: var(--bg-primary);
  position: relative;
}

.vision-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
}

.vision-image-col {
  position: relative;
}

.vision-image-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-lg);
}

.vision-image-frame img {
  width: 100%;
  height: clamp(450px, 58vh, 600px);
  object-fit: cover;
  display: block;
}

.vision-text-col .eyebrow {
  margin-bottom: 0.75rem;
}

.vision-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 1.75rem;
  color: var(--text-primary);
}

.vision-statement {
  font-family: var(--font-body);
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

/* 4 Core Pillars Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 1.5rem;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.pillar-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-3px);
  background: var(--bg-card-hover);
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.pillar-desc {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   7. EXPERIENCE SECTION (6 INTERACTIVE CARDS)
   -------------------------------------------------------------------------- */
.experience-section {
  background-color: var(--bg-secondary);
  position: relative;
}

.experience-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(3rem, 6vw, 4.5rem) auto;
}

.experience-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.experience-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.experience-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.exp-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.exp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.exp-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-highlight);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card-hover);
}

.exp-card:hover::before {
  opacity: 1;
}

.exp-card-number {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
  display: block;
}

.exp-card-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.exp-card-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   8. VIDEO SECTION ("TEN YEARS. ONE BEAUTIFUL JOURNEY.")
   -------------------------------------------------------------------------- */
.video-section {
  background-color: var(--bg-primary);
  position: relative;
  text-align: center;
}

.video-header {
  max-width: 760px;
  margin: 0 auto 3rem auto;
}

.video-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.video-frame-container {
  max-width: 1060px;
  margin: 0 auto;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 40px rgba(132, 38, 103, 0.2);
  background: #000000;
}

.video-responsive-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

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

.video-support-text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 2.5rem auto 0 auto;
}

/* --------------------------------------------------------------------------
   9. PHOTO GALLERY ("MOMENTS THAT MATTER")
   -------------------------------------------------------------------------- */
.gallery-section {
  background-color: var(--bg-secondary);
  position: relative;
}

.gallery-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.gallery-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

/* Editorial Masonry Grid */
.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.gallery-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  background: #000;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

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

/* Overlay & Word Badges */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(9, 6, 8, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.gallery-word {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.gallery-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
}

/* Editorial Span Classes */
.gallery-card.col-4 { grid-column: span 4; height: 380px; }
.gallery-card.col-5 { grid-column: span 5; height: 420px; }
.gallery-card.col-7 { grid-column: span 7; height: 420px; }
.gallery-card.col-6 { grid-column: span 6; height: 400px; }
.gallery-card.col-8 { grid-column: span 8; height: 450px; }
.gallery-card.col-12 { grid-column: span 12; height: 460px; }

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 3, 5, 0.95);
  backdrop-filter: blur(25px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 2rem;
}

.lightbox-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid var(--border-medium);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
}

.lightbox-caption {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-gold);
  margin-top: 1rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

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

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.lightbox-arrow:hover {
  background: var(--color-gold);
  color: #000;
}

.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

/* --------------------------------------------------------------------------
   10. EMOTIONAL STATEMENT
   -------------------------------------------------------------------------- */
.emotional-quote-section {
  min-height: 70vh;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #150913 50%, var(--bg-primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.quote-ornament {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.5;
  color: var(--color-gold);
  opacity: 0.35;
  margin-bottom: 1.5rem;
  display: block;
}

.emotional-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.8vw, 3.4rem);
  line-height: 1.35;
  font-weight: 600;
  font-style: italic;
  color: var(--text-primary);
  max-width: 950px;
  margin: 0 auto 2.5rem auto;
}

.quote-call {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 2.5rem;
}

/* --------------------------------------------------------------------------
   11. TESTIMONIALS ("STORIES FROM THE TABLE")
   -------------------------------------------------------------------------- */
.testimonials-section {
  background-color: var(--bg-secondary);
  position: relative;
}

.testimonials-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem auto;
}

.testimonials-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.testimonials-slider {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 1rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 6px;
  padding: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.testimonial-quote-icon {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.8;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  display: block;
  opacity: 0.7;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.6;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 2.25rem;
}

.testimonial-author-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.35rem;
}

.testimonial-badge {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* Slider Controls */
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.slider-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.slider-btn:hover {
  border-color: var(--color-gold);
  background: var(--color-gold);
  color: #090608;
}

.slider-dots {
  display: flex;
  gap: 0.6rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-medium);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.is-active {
  background: var(--color-gold);
  width: 28px;
  border-radius: 6px;
}

/* --------------------------------------------------------------------------
   12. WHAT TO EXPECT ("YOUR EVENING, BEAUTIFULLY DESIGNED")
   -------------------------------------------------------------------------- */
.expectations-section {
  background: var(--bg-primary);
  position: relative;
}

.expectations-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4.5rem auto;
}

.expectations-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.journey-path-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  position: relative;
}

.journey-step {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 2rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: var(--transition-smooth);
}

.journey-step:hover {
  border-color: var(--border-highlight);
  transform: translateY(-6px);
  background: var(--bg-card-hover);
}

.journey-order {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.journey-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.journey-desc {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.journey-arrow {
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  color: var(--color-gold);
  font-size: 1rem;
  z-index: 2;
}

/* --------------------------------------------------------------------------
   13. EVENT DETAILS ("THE NIGHT")
   -------------------------------------------------------------------------- */
.night-details-section {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.night-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.night-image-wrap {
  position: relative;
  min-height: 440px;
}

.night-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.night-content {
  padding: clamp(2.5rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.night-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.night-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.night-info-item {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.info-val {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
}

.night-note {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  font-style: italic;
}

/* --------------------------------------------------------------------------
   14. REGISTRATION SECTION ("MAKE THE MOMENT COUNT")
   -------------------------------------------------------------------------- */
.registration-section {
  background: var(--bg-primary);
  position: relative;
}

.registration-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 8px;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  box-shadow: var(--shadow-lg), 0 0 50px rgba(132, 38, 103, 0.2);
  position: relative;
}

.registration-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
}

.registration-header {
  text-align: center;
  margin-bottom: 3rem;
}

.registration-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.registration-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.col-full {
  grid-column: span 2;
}

.form-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-subtle);
  border-radius: 3px;
  padding: 0.95rem 1.15rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition-fast);
}

[data-theme="light"] .form-input,
[data-theme="light"] .form-select,
[data-theme="light"] .form-textarea {
  background: #ffffff;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(244, 192, 42, 0.2);
}

.phone-input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-subtle);
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.2);
  transition: var(--transition-fast);
}

[data-theme="light"] .phone-input-wrap {
  background: #ffffff;
}

.phone-input-wrap:focus-within {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(244, 192, 42, 0.2);
}

.phone-prefix {
  padding: 0.95rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold);
  border-right: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  user-select: none;
}

.phone-input-wrap .form-input {
  border: none;
  background: transparent;
  flex: 1;
  box-shadow: none !important;
}

.form-footnote {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  line-height: 1.6;
}

/* Success Confirmation State */
.confirmation-view {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}

.confirmation-view.is-active {
  display: block;
}

.confirmation-seal {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #090608;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 2rem auto;
  box-shadow: 0 0 30px rgba(244, 192, 42, 0.5);
}

.confirmation-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.confirmation-message {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
}

.reservation-details-box {
  background: rgba(132, 38, 103, 0.15);
  border: 1px solid var(--border-medium);
  border-radius: 4px;
  padding: 1.75rem;
  max-width: 500px;
  margin: 0 auto 2.5rem auto;
  text-align: left;
}

/* --------------------------------------------------------------------------
   15. FAQ ACCORDION SECTION
   -------------------------------------------------------------------------- */
.faq-section {
  background-color: var(--bg-secondary);
  position: relative;
}

.faq-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem auto;
}

.faq-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.faq-accordion-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--border-highlight);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  cursor: pointer;
  text-align: left;
}

.faq-question {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.faq-item.is-open .faq-question {
  color: var(--color-gold);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-gold);
  color: #090608;
}

.faq-answer-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
  padding: 0 1.75rem 1.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   16. CONTACT SECTION ("HAVE A QUESTION?")
   -------------------------------------------------------------------------- */
.contact-section {
  background-color: var(--bg-primary);
  position: relative;
}

.contact-card-box {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 6px;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.contact-support-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 3rem auto;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-item {
  padding: 1.5rem;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .contact-item {
  background: #ffffff;
}

.contact-item-icon {
  font-size: 1.6rem;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.contact-item-label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.contact-item-val {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   17. FINAL CLOSING CTA
   -------------------------------------------------------------------------- */
.final-cta-section {
  min-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--border-medium);
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
  transform: scale(1.03);
  transition: transform 1.5s ease;
}

.final-cta-section:hover .final-cta-bg {
  transform: scale(1.08);
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(132, 38, 103, 0.45) 0%, rgba(9, 6, 8, 0.92) 80%);
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: 4rem 1.5rem;
}

.final-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.2vw, 5.2rem);
  line-height: 1.05;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.final-support-text {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.7;
  color: #f1e6ee;
  margin-bottom: 2.25rem;
}

.final-gold-highlight {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 3rem;
  display: block;
}

/* --------------------------------------------------------------------------
   18. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2.5rem 0;
  position: relative;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand {
  max-width: 360px;
}

.footer-mission {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 1rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  list-style: none;
}

.footer-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-link:hover {
  color: var(--color-gold);
}

/* --------------------------------------------------------------------------
   RESPONSIVE DESIGN BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-statement {
    margin-left: auto;
    margin-right: auto;
    border-left: none;
    border-top: 2px solid var(--color-gold);
    padding-left: 0;
    padding-top: 1.5rem;
  }
  .hero-meta-badges,
  .hero-ctas {
    justify-content: center;
  }
  .hero-media-wrapper {
    max-width: 540px;
    margin: 2rem auto 0 auto;
  }
  .timeline-track {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-track::before {
    display: none;
  }
  .experience-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .journey-path-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .journey-arrow {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav-menu,
  .nav-cta {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .nigeria-grid,
  .vision-grid,
  .night-card {
    grid-template-columns: 1fr;
  }
  .nigeria-collage {
    margin-top: 2rem;
  }
  .contact-details-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .timeline-track,
  .experience-cards-grid,
  .pillars-grid,
  .form-grid,
  .journey-path-grid {
    grid-template-columns: 1fr;
  }
  .form-group.col-full {
    grid-column: span 1;
  }
  .gallery-card.col-4,
  .gallery-card.col-5,
  .gallery-card.col-6,
  .gallery-card.col-7,
  .gallery-card.col-8,
  .gallery-card.col-12 {
    grid-column: span 12;
    height: 320px;
  }
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .hero-milestone-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 1.5rem auto 0 auto;
  }
}
