@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

/* =========================
   BASE
========================= */
:root {
  --ink: #111827;
  --muted: #596171;
  --paper: #fffaf4;
  --white: #ffffff;
  --nav: #b95f2a;
  --gold: #d8ad4f;
  --gold-dark: #9d7824;
  --green: #174f43;
  --plum: #4b294f;
  --night: #101827;
  --border: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 60px rgba(16, 24, 39, 0.28);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--white);
  background: var(--night);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img,
video {
  max-width: 100%;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 2000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  border-radius: 6px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* =========================
   LAYOUT
========================= */
.container {
  width: min(90%, 1200px);
  margin: auto;
}

.section {
  padding: clamp(72px, 9vw, 120px) 0;
  scroll-margin-top: 120px;
}

.center {
  text-align: center;
}

.narrow {
  max-width: 720px;
  margin: auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

/* =========================
   NAVIGATION
========================= */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: 112px;
  display: flex;
  align-items: center;
  background: rgba(18, 16, 48, 0.74);
  backdrop-filter: blur(14px);
}

.nav-inner {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(28px, 3.8vw, 72px);
  width: min(89%, 1740px);
  max-width: 1740px;
}

.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.logo img {
  width: auto;
  height: clamp(124px, 7.6vw, 156px);
  display: block;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

.nav-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.nav-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.nav.nav-open .nav-menu-toggle span:nth-child(2) {
  opacity: 0;
}

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

.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  flex: 1 1 auto;
  max-width: 1180px;
  gap: 10px clamp(20px, 2.2vw, 42px);
  margin-left: 0;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links a,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-family: inherit;
  font-size: clamp(1rem, 1.2vw, 1.28rem);
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.32);
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.dropdown-toggle:hover {
  color: #ffe08a;
  transform: translateY(-1px);
}

.dropdown-toggle {
  cursor: default;
}

.nav-exhibit::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-left: 12px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  z-index: 1100;
  min-width: 230px;
  padding: 10px;
  margin: 0;
  list-style: none;
  background: rgba(18, 16, 48, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 18px;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  width: 100%;
  min-height: 40px;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  text-shadow: none;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffe08a;
  transform: none;
}

/* =========================
   HERO
========================= */
.hero-video {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 24, 39, 0.78), rgba(16, 24, 39, 0.38)),
    linear-gradient(0deg, rgba(16, 24, 39, 0.5), rgba(16, 24, 39, 0.18));
}

.hero-content {
  max-width: 860px;
  text-align: center;
  padding: 72px 0 96px;
}

.hero-content h1,
.section-title,
.about-content h2,
.grid-2 h2,
.narrow h2,
#contact h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.08;
}

.hero-content h1 {
  font-size: clamp(3.4rem, 9vw, 7.5rem);
  text-shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
}

.hero-event-details {
  position: relative;
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: fit-content;
  max-width: min(92vw, 760px);
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05)),
    rgba(28, 14, 54, 0.22);
  color: var(--white);
  font-size: clamp(0.82rem, 1.1vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

.hero-event-details span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  white-space: nowrap;
}

.event-date {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.055);
}

.event-place {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.035);
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.event-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.96;
}

.subtitle {
  max-width: 660px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions .btn {
  margin-top: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 30px;
  padding: 13px 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: var(--gold);
  color: #171106;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  background: #efc65f;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

/* =========================
   INNER PAGES
========================= */
.page-hero {
  position: relative;
  min-height: 48svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
  color: var(--white);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 128px 0 54px;
}

.page-hero-content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 1.05;
  text-shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
}

.page-hero-content p {
  max-width: 640px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.sponsorship-page-section {
  padding: clamp(34px, 4vw, 56px) 0;
  background: linear-gradient(135deg, #fffaf4, #f4fbef);
  color: var(--ink);
}

.sponsorship-hero .page-hero-content,
.sponsorship-page-section .container {
  width: min(94%, 1500px);
  max-width: 1500px;
}

.sponsorship-intro-grid,
.enquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.sponsorship-intro-grid {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.sponsorship-story-stack {
  display: grid;
  gap: clamp(34px, 5vw, 72px);
}

.sponsorship-story-row {
  align-items: center;
}


.sponsorship-intro-copy h2 {
  max-width: 620px;
  margin-bottom: 12px;
  color: var(--ink);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.08;
}

.sponsorship-intro-copy p {
  max-width: 820px;
  margin-bottom: 12px;
  color: #4b5563;
  font-size: clamp(1.08rem, 1.45vw, 1.24rem);
  line-height: 1.78;
}

.sponsorship-intro-copy p:nth-of-type(2) {
  color: #168356;
  font-weight: 800;
}

.sponsorship-intro-image {
  overflow: hidden;
  border: 6px solid #ffffff;
  border-radius: 8px;
  width: 100%;
  min-height: 0;
  max-height: none;
  background: #f8fafc;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.12);
}

.sponsorship-intro-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .sponsorship-intro-grid {
    grid-template-columns: 1fr;
  }

  .sponsorship-intro-copy,
  .sponsorship-intro-copy h2,
  .sponsorship-intro-copy p {
    max-width: none;
    width: 100%;
  }

  .sponsorship-intro-image {
    max-width: 820px;
    justify-self: center;
  }
}


.enquiry-section {
  padding: clamp(34px, 4vw, 54px) 0;
  background: #ffffff;
  color: var(--ink);
}

.contact-page-section {
  background: linear-gradient(135deg, #fffaf4, #f4fbef);
}

.enquiry-layout {
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
}

.enquiry-layout .sponsorship-copy {
  text-align: center;
}

.enquiry-layout .sponsorship-copy h2 {
  margin-inline: auto;
  margin-bottom: 8px;
}

.sponsorship-copy h2 {
  max-width: 520px;
  margin-bottom: 16px;
  color: var(--ink);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.sponsorship-copy p {
  max-width: 620px;
  color: #4b5563;
  font-size: 1.06rem;
}

.sponsorship-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.1);
}

.sponsorship-form label {
  display: grid;
  gap: 8px;
  color: #374151;
  font-size: 0.9rem;
  font-weight: 800;
}

.sponsorship-form input,
.sponsorship-form select,
.sponsorship-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: 6px;
  background: #fbfbf8;
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

.sponsorship-form textarea {
  resize: vertical;
}

.form-full,
.form-submit {
  grid-column: 1 / -1;
}

.form-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-submit-frame {
  display: none;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.4em;
  margin-top: 4px;
  font-size: 0.96rem;
  font-weight: 700;
}

.form-status.is-pending {
  color: #4b5563;
}

.form-status.is-success {
  color: #176b4d;
}

.form-status.is-error {
  color: #b42318;
}

.page-ending {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 2.8vw, 34px) 0;
  background: #073963;
  color: var(--white);
}

.page-ending::before,
.page-ending::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 18px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.page-ending::before {
  width: 620px;
  height: 620px;
  right: -160px;
  top: -300px;
}

.page-ending::after {
  width: 880px;
  height: 260px;
  left: -240px;
  bottom: -180px;
  border-radius: 50%;
  transform: rotate(10deg);
}

.page-ending-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr 1.15fr;
  gap: clamp(14px, 2.4vw, 30px);
  align-items: start;
}

.ending-brand img {
  width: 112px;
  height: auto;
  display: block;
  margin-bottom: 10px;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.28));
}

.ending-logo {
  display: inline-block;
  width: fit-content;
}

.ending-brand p,
.ending-contact p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.ending-column,
.ending-contact {
  display: grid;
  gap: 8px;
}

.page-ending h2 {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 900;
}

.page-ending a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 650;
}

.page-ending a:hover {
  color: #ffe08a;
}

.ending-socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.ending-socials a {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  font-family: Arial, sans-serif;
}

.ending-copy {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
}

/* =========================
   COUNTRY PAGES
========================= */
.country-hero {
  position: relative;
  min-height: 76svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  isolation: isolate;
}

.country-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 20, 18, 0.86), rgba(4, 20, 18, 0.36)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.08));
}

.ghana-hero .country-hero-overlay {
  background:
    linear-gradient(90deg, rgba(34, 24, 12, 0.88), rgba(34, 24, 12, 0.34)),
    linear-gradient(135deg, rgba(223, 77, 60, 0.28), rgba(22, 131, 86, 0.22)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.08));
}

.nigeria-hero .country-hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 44, 28, 0.9), rgba(3, 44, 28, 0.3)),
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.06));
}

.south-africa-hero .country-hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 21, 40, 0.9), rgba(5, 21, 40, 0.34)),
    linear-gradient(135deg, rgba(242, 165, 31, 0.2), rgba(22, 131, 86, 0.2)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.08));
}

.sierra-leone-hero .country-hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 38, 52, 0.9), rgba(8, 38, 52, 0.34)),
    linear-gradient(135deg, rgba(29, 154, 116, 0.25), rgba(47, 129, 191, 0.24)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.06));
}

.fiji-hero .country-hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 37, 57, 0.9), rgba(3, 37, 57, 0.32)),
    linear-gradient(135deg, rgba(20, 184, 166, 0.26), rgba(47, 129, 191, 0.24)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.06));
}

.zimbabwe-hero .country-hero-overlay {
  background:
    linear-gradient(90deg, rgba(22, 36, 24, 0.9), rgba(22, 36, 24, 0.32)),
    linear-gradient(135deg, rgba(22, 131, 86, 0.26), rgba(242, 194, 77, 0.24)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.06));
}

.botswana-hero .country-hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 35, 52, 0.9), rgba(8, 35, 52, 0.32)),
    linear-gradient(135deg, rgba(47, 129, 191, 0.28), rgba(255, 255, 255, 0.16)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.06));
}

.country-hero-content {
  width: min(94%, 1500px);
  max-width: 1500px;
  padding: 160px 0 86px;
}

.country-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: #f2c24d;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.country-hero h1 {
  max-width: 980px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: 0.92;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.42);
}

.country-hero p {
  max-width: 660px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
}

.country-story-section {
  padding: clamp(56px, 6vw, 92px) 0;
  background: linear-gradient(135deg, #fffaf4, #f3fbe9);
  color: var(--ink);
}

.country-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
}

.country-story-heading h2,
.country-section-heading h2,
.country-cta h2 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.08;
}

.country-story-heading h2 {
  max-width: 560px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.ghana-story-heading h2 {
  font-size: clamp(1.9rem, 3.5vw, 3.4rem);
}

.nigeria-story-heading h2 {
  font-size: clamp(2rem, 3.8vw, 3.6rem);
}

.nigeria-story-section {
  background:
    radial-gradient(circle at 92% 12%, rgba(22, 131, 86, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff, #f2fbef);
}

.south-africa-story-heading h2 {
  font-size: clamp(2rem, 3.7vw, 3.5rem);
}

.south-africa-story-section {
  background:
    radial-gradient(circle at 88% 16%, rgba(242, 165, 31, 0.13), transparent 30%),
    linear-gradient(135deg, #fffaf4, #eef5f5);
}

.sierra-leone-story-heading h2 {
  font-size: clamp(2rem, 3.7vw, 3.5rem);
}

.sierra-leone-story-section {
  background:
    radial-gradient(circle at 88% 16%, rgba(47, 129, 191, 0.13), transparent 30%),
    linear-gradient(135deg, #ffffff, #effaf5);
}

.fiji-story-heading h2 {
  font-size: clamp(2rem, 3.7vw, 3.5rem);
}

.fiji-story-section {
  background:
    radial-gradient(circle at 88% 16%, rgba(20, 184, 166, 0.13), transparent 30%),
    linear-gradient(135deg, #ffffff, #eef8fb);
}

.zimbabwe-story-section {
  background:
    radial-gradient(circle at 88% 16%, rgba(22, 131, 86, 0.13), transparent 30%),
    linear-gradient(135deg, #ffffff, #f5fbef);
}

.botswana-story-section {
  background:
    radial-gradient(circle at 88% 16%, rgba(47, 129, 191, 0.14), transparent 30%),
    linear-gradient(135deg, #ffffff, #eef8fb);
}

.country-story-copy {
  display: grid;
  gap: 18px;
  padding-top: 12px;
}

.country-story-copy p {
  color: #374151;
  font-size: clamp(1.04rem, 1.35vw, 1.2rem);
  line-height: 1.82;
}

.country-focus-section {
  padding: clamp(38px, 4.5vw, 62px) 0;
  background: #ffffff;
  color: var(--ink);
}

.country-section-heading {
  max-width: 760px;
  margin-bottom: clamp(20px, 3vw, 30px);
}

.country-section-heading h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
}

.country-focus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.country-focus-card {
  min-height: 210px;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #fbfbf5);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
}

.country-focus-card span {
  display: inline-flex;
  margin-bottom: 20px;
  color: #168356;
  font-weight: 900;
}

.country-focus-card:nth-child(2) span {
  color: #f2a51f;
}

.country-focus-card:nth-child(3) span {
  color: #df4d3c;
}

.country-focus-card:nth-child(4) span {
  color: #101827;
}

.ghana-focus-section .country-focus-card:nth-child(1) {
  border-top: 5px solid #df4d3c;
}

.ghana-focus-section .country-focus-card:nth-child(2) {
  border-top: 5px solid #f2a51f;
}

.ghana-focus-section .country-focus-card:nth-child(3) {
  border-top: 5px solid #168356;
}

.ghana-focus-section .country-focus-card:nth-child(4) {
  border-top: 5px solid #101827;
}

.country-focus-card h3 {
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.country-focus-card p {
  color: #596171;
  font-size: 0.92rem;
  line-height: 1.55;
}

.country-cta {
  padding: clamp(30px, 4vw, 48px) 0;
  background:
    radial-gradient(circle at 85% 0%, rgba(242, 165, 31, 0.18), transparent 34%),
    linear-gradient(135deg, #133f35, #101827);
  color: var(--white);
}

.country-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.country-cta h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
}

.country-cta p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
}

/* =========================
   BACKGROUNDS
========================= */
.cinematic-bg {
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.96), rgba(240, 247, 244, 0.98)),
    var(--paper);
  color: var(--ink);
}

.cinematic-bg-alt {
  background:
    linear-gradient(135deg, #ffffff, #eef4f1);
  color: var(--ink);
}

.hero-video.cinematic-bg {
  background:
    radial-gradient(circle at 14% 20%, rgba(216, 173, 79, 0.2), transparent 32%),
    linear-gradient(135deg, var(--green), var(--night) 52%, var(--plum));
  color: var(--white);
}

.offers-section {
  padding-top: clamp(24px, 3vw, 38px);
  padding-bottom: clamp(28px, 3.5vw, 46px);
  background: linear-gradient(135deg, #1e293b, #4c1d95, #0f172a);
  color: var(--white);
}

.section-title {
  margin-bottom: 44px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

/* =========================
   OFFERS
========================= */
.offers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.offer {
  padding: 30px;
  border-radius: 10px;
}

.offer h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.offer p {
  color: rgba(255, 255, 255, 0.76);
}

.glass {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

/* =========================
   IMPACT
========================= */
.impact-section {
  padding: clamp(44px, 5vw, 70px) 0;
  background: linear-gradient(135deg, #fff8ef, #f2fbec);
  color: var(--ink);
}

.impact-title {
  margin-bottom: clamp(24px, 3vw, 34px);
  color: #c63f2f;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.impact-card {
  min-height: 116px;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
}

.impact-card:nth-child(1) {
  border-top: 5px solid #df4d3c;
}

.impact-card:nth-child(2) {
  border-top: 5px solid #168356;
}

.impact-card:nth-child(3) {
  border-top: 5px solid #f29f24;
  background: linear-gradient(135deg, #ffffff, #f8ffe4);
}

.impact-card strong {
  display: block;
  margin-bottom: 8px;
  color: #168356;
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 0.95;
}

.impact-card:nth-child(1) strong {
  color: #df4d3c;
}

.impact-card:nth-child(2) strong {
  color: #168356;
}

.impact-card:nth-child(3) strong {
  color: #f29f24;
}

.impact-card span {
  display: block;
  color: #5b6472;
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* =========================
   ABOUT
========================= */
.about-section {
  padding: clamp(48px, 5vw, 76px) 0;
  background: var(--paper);
  color: var(--ink);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.about-content h2 {
  max-width: 620px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.about-content p {
  max-width: 640px;
  margin-bottom: 12px;
  color: #374151;
  font-size: 1rem;
}

.features {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.feature-item {
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-left: 5px solid var(--nav);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
}

.feature-item h4 {
  margin-bottom: 4px;
  color: var(--nav);
  font-size: 1.04rem;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.about-image,
.image-box {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-image img,
.image-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image {
  aspect-ratio: 16 / 11;
  max-height: 420px;
}

.image-box {
  min-height: 420px;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.08);
}

.grid-2 h2,
.narrow h2,
#contact h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.grid-2 p,
.narrow p,
#contact p {
  color: #4b5563;
  font-size: 1.06rem;
}

.sponsor-contact-section {
  padding: clamp(38px, 5vw, 64px) 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 227, 71, 0.24), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(23, 79, 67, 0.18), transparent 30%),
    linear-gradient(135deg, #fffaf4 0%, #eef4f1 100%);
  color: var(--ink);
}

.sponsor-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.sponsor-contact-panel {
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(3.4em, auto) auto;
  align-content: center;
  min-height: 240px;
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(16, 24, 39, 0.16);
}

.sponsor-contact-panel::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.sponsor-panel {
  background: linear-gradient(135deg, #e4e7e9, #d6dae5);
  color: #101827;
}

.contact-panel {
  background: linear-gradient(135deg, #cccdab, #a1b6d5);
  color: var(--white);
}

.panel-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.78;
}

.sponsor-contact-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 520px;
  min-height: 2.16em;
  margin-bottom: 12px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.sponsor-contact-panel p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  color: inherit;
  font-size: 1.06rem;
  opacity: 0.84;
}

#contact.sponsor-contact-panel p {
  color: inherit;
}

#contact.sponsor-contact-panel {
  grid-template-rows: auto minmax(3.4em, auto) auto;
}

#contact.sponsor-contact-panel h2 {
  min-height: 0;
  margin-bottom: 12px;
}

.sponsor-contact-panel .panel-btn {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: 8px;
  align-self: start;
}

.sponsor-panel .panel-btn {
  border-color: rgba(16, 24, 39, 0.16);
  background: #101827;
  color: var(--white);
}

.sponsor-panel .panel-btn:hover {
  background: #243042;
}

.contact-panel .panel-btn {
  background: var(--gold);
  color: #171106;
}

.compact-story-section {
  padding: clamp(44px, 5vw, 72px) 0;
}

.food-experience-section {
  padding: clamp(22px, 3vw, 38px) 0;
  background: #ffffff;
  color: var(--ink);
}

.food-experience-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  padding: clamp(18px, 2.6vw, 30px);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background: linear-gradient(135deg, #fffaf4, #f4fbef);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

.food-experience-image {
  min-height: clamp(180px, 22vw, 280px);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
}

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

.food-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: #168356;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.food-experience-copy h2 {
  max-width: 640px;
  overflow-wrap: break-word;
  margin-bottom: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
  line-height: 1.08;
}

.food-experience-copy p {
  max-width: 760px;
  overflow-wrap: break-word;
  color: #4b5563;
  font-size: clamp(0.96rem, 1.2vw, 1.06rem);
  line-height: 1.65;
}

.networking-experience-section {
  padding-top: 0;
  background: #ffffff;
}

.networking-experience-panel {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  background: linear-gradient(135deg, #eef4f1, #fffaf4);
}



.mandela-legacy-section {
  padding: clamp(28px, 4vw, 52px) 0;
  background: linear-gradient(135deg, #fffaf4, #eef4f1);
  color: var(--ink);
}

.mandela-legacy-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
  padding: clamp(22px, 3.5vw, 42px);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(16, 24, 39, 0.12);
}

.mandela-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mandela-legacy-copy h2 {
  margin-bottom: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.08;
}

.mandela-legacy-copy p {
  max-width: 680px;
  color: #374151;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.mandela-legacy-image {
  min-height: clamp(180px, 22vw, 280px);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.14);
}

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

.compact-story-section .grid-2 {
  gap: clamp(24px, 4vw, 48px);
}


.compact-story-section .image-box {
  min-height: 280px;
  aspect-ratio: 16 / 10;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.14);
}
.event-image-box {
  width: 100%;
  max-width: 100%;
  justify-self: stretch;
}


.compact-story-section h2 {
  margin-bottom: 12px;
}

.compact-story-section p {
  max-width: 620px;
}

.venue-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 251, 239, 0.96)),
    #ffffff;
  color: var(--ink);
}

.venue-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.venue-grid > *,
.venue-content {
  min-width: 0;
}

.venue-image {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: clamp(180px, 24vw, 250px);
  border: 8px solid #ffffff;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.14);
}

.venue-image::after {
  content: "Glasgow Pavilion Venue";
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.16);
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: #168356;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.venue-content h2 {
  color: var(--ink);
}

.venue-content p {
  max-width: 560px;
}

.venue-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: fit-content;
  max-width: 100%;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

.venue-details span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 15px;
  color: #374151;
  font-size: 0.9rem;
  font-weight: 800;
}

.venue-details span + span {
  border-left: 1px solid rgba(17, 24, 39, 0.1);
}

.venue-details svg {
  width: 18px;
  height: 18px;
  margin-right: 9px;
  fill: none;
  stroke: #168356;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}





@media (min-width: 781px) and (max-width: 1020px) {
  .venue-grid {
    gap: 28px;
  }

  .venue-image {
    border-width: 6px;
    min-height: clamp(170px, 22vw, 220px);
  }

  .venue-image::after {
    left: 12px;
    bottom: 12px;
    padding: 7px 11px;
    font-size: 0.76rem;
  }
}

/* =========================
   PARTNERS
========================= */
#partners {
  padding: clamp(24px, 3vw, 40px) 0 clamp(48px, 5vw, 76px);
  background: linear-gradient(135deg, #fff7f0, #f4fbef);
}

#partners .section-title {
  margin-bottom: clamp(22px, 3vw, 34px);
  color: #168356;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 18px);
  padding: clamp(16px, 2.4vw, 28px);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
}

.partner-box {
  display: grid;
  place-items: center;
  min-height: 104px;
  padding: 18px 20px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-box:nth-child(3n + 1) {
  border-top: 4px solid #df4d3c;
}

.partner-box:nth-child(3n + 2) {
  border-top: 4px solid #168356;
}

.partner-box:nth-child(3n + 3) {
  border-top: 4px solid #f29f24;
}

.partner-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.1);
}

.partner-box img {
  display: block;
  width: 100%;
  max-width: 170px;
  max-height: 68px;
  object-fit: contain;
}

/* =========================
   HOUSES
========================= */
#houses {
  padding: clamp(48px, 5vw, 76px) 0;
  background: #ffffff;
}

#houses .section-title {
  margin-bottom: clamp(22px, 3vw, 34px);
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.houses-intro {
  max-width: 860px;
  margin: -12px 0 clamp(24px, 3vw, 34px);
  color: #4b5563;
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  line-height: 1.7;
}

.houses-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.house-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.1);
  transition: transform 0.25s ease 0s, box-shadow 0.25s ease 0s;
  transition-delay: 0s !important;
}

.house-card::after {
  content: none;
}

.house-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.68));
  transition: background 0.25s ease 0s;
  transition-delay: 0s !important;
}

.house-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.16);
}

.house-card:hover::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.76));
}

.house-ghana {
  background-image: url('../images/ghana.jpg');
}

.house-nigeria {
  background-image: url('../images/nigeria2.jpeg');
}

.house-uganda {
  background-image: url('../images/uganda.jpg');
}

.house-south-africa {
  background-image: url('../images/southafrica.jpg');
}

.house-fiji {
  background-image: url('../images/fiji.jpg');
}

.house-sierra-leone {
  background-image: url('../images/sierraleoneflag.png');
}

.house-zimbabwe {
  background-image: url('../images/zimbabwe.jpg');
}

.house-botswana {
  background-image: url('../images/botswana.jpg');
}

.house-more {
  cursor: default;
  background: linear-gradient(135deg, #073963, #174f43);
}

.house-more:hover {
  transform: none;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.1);
}

.house-more:hover::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.68));
}

.house-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  color: var(--white);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.18rem, 1.7vw, 1.42rem);
  font-weight: 700;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

/* =========================
   FOOTER
========================= */
.footer {
  padding: 16px 20px;
  background: #090d15;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 0.84rem;
}

/* =========================
   ANIMATION
========================= */
.fade-up,
.fade-left,
.fade-right {
  opacity: 0;
  transition: opacity 1.25s ease, transform 1.25s ease;
}

.fade-up {
  transform: translateY(34px);
}

.fade-left {
  transform: translateX(-34px);
}

.fade-right {
  transform: translateX(34px);
}

.show {
  opacity: 1;
  transform: none;
}

.delay {
  transition-delay: 0.3s;
}

.delay-2 {
  transition-delay: 0.6s;
}

.delay-3 {
  transition-delay: 0.9s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .fade-up,
  .fade-left,
  .fade-right {
    opacity: 1;
    transform: none;
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1040px) {
  .offers,
  .impact-grid,
  .country-focus-grid,
  .houses-grid,
  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-inner {
    align-items: center;
  }
}

@media (max-width: 980px) {
  .nav {
    min-height: 76px;
    padding: 8px 0;
  }

  .nav-inner {
    width: min(92%, 1200px);
    gap: 16px;
    justify-content: space-between;
  }

  .logo img {
    height: 80px;
  }

  .nav-menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    gap: 2px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: 8px;
    background: rgba(18, 16, 48, 0.96);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32);
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.28s ease, opacity 0.2s ease, padding 0.2s ease, border-color 0.2s ease;
  }

  .nav.nav-open .nav-links {
    max-height: min(72vh, 560px);
    overflow-y: auto;
    padding: 12px;
    border-color: rgba(255, 255, 255, 0.14);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a,
  .dropdown-toggle {
    width: 100%;
    min-height: 42px;
    justify-content: space-between;
    padding: 9px 10px;
    border-radius: 6px;
    font-size: 0.96rem;
    text-shadow: none;
  }

  .nav-links a:hover,
  .dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: none;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    max-height: 0;
    padding: 0;
    border: 0;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    overflow: hidden;
    transition: max-height 0.22s ease, padding 0.2s ease;
  }

  .dropdown-menu::before {
    content: none;
  }

  .nav-dropdown.open .dropdown-menu,
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    max-height: 320px;
    padding: 6px;
    transform: none;
  }

  .dropdown-menu a {
    min-height: 36px;
    padding-left: 14px;
    font-size: 0.9rem;
  }

  .hero-content {
    padding: 134px 0 74px;
  }

  .page-hero-content,
  .country-hero-content {
    padding-top: 132px;
  }
}

@media (max-width: 780px) {
  .nav {
    position: absolute;
  }

  .nav-inner {
    display: flex;
  }

  .logo img {
    height: 70px;
  }

  .nav-links {
    justify-content: initial;
    gap: 2px;
  }

  .nav-links a,
  .dropdown-toggle {
    font-size: 0.92rem;
  }

  .hero-video {
    min-height: 82svh;
  }

  .hero-content {
    padding: 120px 0 70px;
  }

  .grid-2,
  .about-grid,
  .country-story-grid,
  .country-cta-inner,
  .sponsorship-intro-grid,
  .enquiry-layout {
    grid-template-columns: 1fr;
  }

  .food-experience-panel,
  .networking-experience-panel,
  .mandela-legacy-panel {
    grid-template-columns: 1fr;
  }
  .networking-experience-image {
    order: 2;
  }

  .networking-experience-copy {
    order: 1;
  }


  



  .country-hero {
    min-height: 68svh;
  }

  .country-hero-content {
    padding: 132px 0 66px;
  }


  .page-hero-content {
    padding: 120px 0 48px;
  }

  .sponsor-contact-grid {
    grid-template-columns: 1fr;
  }

  .sponsor-contact-panel {
    min-height: 220px;
  }

  .page-ending-inner {
    grid-template-columns: 1.05fr 1fr 1fr 1.15fr;
    gap: 18px;
  }

  .about-image {
    aspect-ratio: 16 / 11;
  }

  .image-box {
    min-height: 300px;
  }

  .compact-story-section .image-box {
    min-height: 220px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(92%, 1200px);
  }

  .hero-event-details {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .sponsorship-form {
    grid-template-columns: 1fr;
  }

  .page-ending-inner {
    grid-template-columns: 1.05fr 1fr 1fr 1.15fr;
    gap: 10px;
  }

  .ending-brand img {
    width: 70px;
  }

  .ending-brand p,
  .ending-contact p,
  .page-ending a {
    font-size: 0.72rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .page-ending h2 {
    font-size: 0.76rem;
    line-height: 1.2;
  }

  .ending-column,
  .ending-contact {
    gap: 6px;
  }

  .ending-socials {
    flex-wrap: wrap;
    gap: 6px;
  }

  .ending-socials a {
    width: 24px;
    height: 24px;
    font-size: 0.72rem;
  }

  .offers,
  .impact-grid,
  .country-focus-grid,
  .houses-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .offer {
    min-height: auto;
  }

  .house-card {
    min-height: 190px;
  }

  .footer {
    padding-inline: 16px;
  }
}
