/* =========================================================
   TUNIQ AFRICA LBG — ONE-PAGE WEBSITE
   Selected palette, sampled and refined from the supplied logo:
   --orange:  #F5A623
   --coral:   #F0654A
   --magenta: #E63B7A
   --charcoal:#171515
   --ink:     #2B2727
   --cream:   #FFF8ED
   --ivory:   #FFFCF7
   ========================================================= */

:root {
  --orange: #f5a623;
  --coral: #f0654a;
  --magenta: #e63b7a;
  --charcoal: #171515;
  --ink: #2b2727;
  --muted: #6f6663;
  --cream: #fff8ed;
  --ivory: #fffcf7;
  --white: #ffffff;
  --line: rgba(23, 21, 21, 0.14);
  --gradient: linear-gradient(115deg, var(--orange), var(--coral) 50%, var(--magenta));
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(55, 33, 23, 0.12);
  --radius: 24px;
  --container: min(1160px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--body);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
section[id] { scroll-margin-top: 88px; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 110px 0; position: relative; }

.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 9999;
  background: var(--charcoal); color: var(--white); padding: 12px 16px;
}
.skip-link:focus { top: 16px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  background: transparent; transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  background: rgba(255, 252, 247, .92);
  box-shadow: 0 8px 30px rgba(30, 22, 18, .08);
  backdrop-filter: blur(12px);
}
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 145px; height: 58px; object-fit: contain; mix-blend-mode: multiply; }
.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav a, .footer-nav a, .social-links a {
  text-decoration: none; font-size: .88rem; font-weight: 700; letter-spacing: .02em;
}
.primary-nav a { position: relative; }
.primary-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -7px; width: 0; height: 2px;
  background: var(--gradient); transition: width .25s ease;
}
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { width: 100%; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; display: block; margin: 6px; background: var(--charcoal); transition: .25s ease; }

/* Typography */
.eyebrow {
  margin: 0 0 14px; color: var(--coral); font-size: .78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .17em;
}
h1, h2, h3 { margin-top: 0; color: var(--charcoal); font-family: var(--display); line-height: .98; }
h1 { font-size: clamp(3.4rem, 7.3vw, 7.2rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.7rem, 5vw, 5rem); letter-spacing: -.035em; }
h3 { font-size: clamp(2rem, 3vw, 3rem); }
p { margin-top: 0; }
.lead { font-size: clamp(1.2rem, 2vw, 1.55rem); color: var(--charcoal); }

/* Buttons */
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px;
  border: 1px solid transparent; border-radius: 999px; text-decoration: none; font-weight: 800;
  cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--gradient); box-shadow: 0 12px 30px rgba(230, 59, 122, .22); }
.button-secondary { border-color: var(--charcoal); background: transparent; color: var(--charcoal); }
.button-secondary:hover { background: var(--charcoal); color: var(--white); }

/* Hero */
.hero { min-height: 100vh; display: grid; align-items: center; padding-top: 150px; overflow: hidden; background: var(--cream); }
.hero-grid { display: grid; grid-template-columns: 1.35fr .65fr; align-items: center; gap: 65px; }
.hero-copy { position: relative; z-index: 2; }
.hero-text { max-width: 760px; font-size: 1.08rem; color: var(--muted); }
.hero-visual { position: relative; min-height: 500px; display: grid; place-items: center; }
.hero-logo-card {
  position: relative; z-index: 2; width: min(100%, 420px); padding: 38px; background: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.9); border-radius: 50% 50% 44% 56% / 43% 55% 45% 57%;
  box-shadow: var(--shadow); backdrop-filter: blur(8px); transform: rotate(2deg);
}
.hero-logo-card img { width: 260px; margin: 20px auto; mix-blend-mode: multiply; }
.hero-logo-card p { margin: 28px 0 10px; text-align: center; font-family: var(--display); font-size: 1.6rem; font-style: italic; line-height: 1.15; }
.hero-burst, .small-burst {
  position: absolute; border-radius: 50%; background: repeating-conic-gradient(from -8deg, rgba(245,166,35,.95) 0 3deg, transparent 3deg 10deg, rgba(230,59,122,.8) 10deg 13deg, transparent 13deg 20deg);
}
.hero-burst-one { width: 630px; height: 630px; right: -170px; top: 80px; opacity: .32; }
.hero-burst-two { width: 300px; height: 300px; left: -120px; bottom: -70px; opacity: .18; }
.kente-divider {
  position: absolute; left: 0; right: 0; bottom: 0; height: 16px;
  background: repeating-linear-gradient(90deg, var(--orange) 0 24px, var(--charcoal) 24px 34px, var(--coral) 34px 58px, var(--ivory) 58px 66px, var(--magenta) 66px 92px);
}

/* Editorial sections */
.editorial-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.editorial-copy { columns: 2 280px; column-gap: 42px; }
.editorial-copy p { break-inside: avoid; }
.section-heading { max-width: 900px; margin-bottom: 58px; }
.split-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; max-width: none; align-items: end; }
.split-heading > p { color: var(--muted); }

/* Mission */
.mission { padding-top: 40px; }
.mission-card {
  position: relative; overflow: hidden; padding: clamp(44px, 7vw, 90px); border-radius: var(--radius);
  color: var(--white); background: var(--charcoal); box-shadow: var(--shadow);
}
.mission-card h2 { max-width: 1020px; margin-bottom: 0; color: var(--white); font-style: italic; }
.mission-card .eyebrow { color: var(--orange); }
.quote-mark { position: absolute; right: 40px; top: -70px; font-family: var(--display); font-size: 20rem; line-height: 1; color: rgba(255,255,255,.06); }
.mission-sankofa { position: absolute; right: 55px; bottom: 25px; color: var(--magenta); font-size: 4rem; transform: rotate(-25deg); }

/* Programme cards */
.work { background: #fff6ec; }
.programme-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.programme-card {
  display: grid; grid-template-columns: auto 1fr; gap: 24px; padding: 36px; border: 1px solid var(--line);
  border-radius: var(--radius); background: rgba(255,255,255,.68); transition: transform .3s ease, box-shadow .3s ease;
}
.programme-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.programme-featured { grid-column: 1 / -1; grid-template-columns: auto 1fr; background: var(--white); }
.card-number { font-family: var(--display); font-size: 2rem; color: var(--magenta); }
.card-kicker { margin-bottom: 10px; color: var(--coral); font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.programme-card h3 { margin-bottom: 18px; }
.mini-stats { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.mini-stats span { padding: 10px 14px; background: var(--cream); border-radius: 999px; font-size: .84rem; }
.mini-stats strong { color: var(--magenta); }
.partners-line { font-size: .9rem; color: var(--muted); }
.text-link { color: var(--magenta); font-weight: 800; text-decoration-thickness: 2px; text-underline-offset: 5px; }

.poetry-callout { padding: 90px 0; background: var(--gradient); }
.poetry-callout blockquote { position: relative; max-width: 980px; margin: 0 auto; color: var(--white); font-family: var(--display); font-size: clamp(2.6rem, 6vw, 6rem); font-style: italic; line-height: 1; text-align: center; }
.poetry-callout blockquote span { opacity: .35; }

/* Impact */
.impact { background: var(--charcoal); color: rgba(255,255,255,.78); }
.impact h2 { color: var(--white); }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.impact-stat { position: relative; min-height: 260px; padding: 34px 28px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); overflow: hidden; }
.impact-stat::after { content: ""; position: absolute; width: 160px; height: 160px; right: -60px; bottom: -60px; border-radius: 50%; background: repeating-conic-gradient(var(--orange) 0 3deg, transparent 3deg 14deg, var(--magenta) 14deg 17deg, transparent 17deg 28deg); opacity: .35; }
.impact-stat strong { display: block; color: var(--white); font-family: var(--display); font-size: clamp(3.6rem, 6vw, 6rem); line-height: .9; }
.impact-stat span { display: block; margin-top: 24px; max-width: 210px; }
.partner-panel { margin-top: 34px; padding: 32px; border-radius: var(--radius); background: rgba(255,255,255,.07); }
.partner-list { display: flex; flex-wrap: wrap; gap: 12px; }
.partner-list span { padding: 12px 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: var(--white); font-weight: 700; }

/* Team */
.profile-card { display: grid; grid-template-columns: .75fr 1.25fr; gap: 0; overflow: hidden; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.profile-photo { min-height: 520px; display: grid; place-items: center; color: var(--white); background: linear-gradient(145deg, rgba(245,166,35,.9), rgba(230,59,122,.9)), repeating-radial-gradient(circle at 30% 30%, transparent 0 22px, rgba(255,255,255,.15) 23px 25px); }
.profile-photo span { padding: 12px 18px; border: 1px solid rgba(255,255,255,.6); border-radius: 999px; font-weight: 800; }
.profile-copy { align-self: center; padding: clamp(36px, 7vw, 90px); }
.profile-copy p { max-width: 680px; }

/* Get involved */
.get-involved { background: var(--cream); }
.cta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cta-card { padding: 32px; border-radius: var(--radius); color: var(--charcoal); background: var(--white); text-decoration: none; border: 1px solid var(--line); transition: .3s ease; }
.cta-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.cta-card span { color: var(--magenta); font-weight: 800; }
.cta-card h3 { margin: 22px 0 12px; }
.signup-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-top: 26px; padding: 38px; border-radius: var(--radius); background: var(--charcoal); color: rgba(255,255,255,.8); }
.signup-panel h3 { color: var(--white); }
.inline-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.inline-form input { min-width: 0; }
.donate-note { margin-top: 18px; padding: 18px 22px; border-left: 4px solid var(--magenta); background: rgba(230,59,122,.08); }

/* Forms */
input, textarea { width: 100%; border: 1px solid rgba(23,21,21,.22); border-radius: 14px; background: var(--white); padding: 15px 16px; color: var(--charcoal); outline: none; }
input:focus, textarea:focus { border-color: var(--magenta); box-shadow: 0 0 0 4px rgba(230,59,122,.12); }
label { display: block; margin-bottom: 8px; font-weight: 800; font-size: .88rem; }
.form-status { grid-column: 1 / -1; min-height: 24px; margin: 6px 0 0; font-size: .86rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 85px; }
.contact-details { position: relative; }
.contact-details address { font-style: normal; font-size: 1.08rem; }
.contact-details a { color: var(--magenta); font-weight: 800; }
.small-burst { width: 180px; height: 180px; left: -60px; bottom: -40px; opacity: .22; }
.contact-form { display: grid; gap: 18px; padding: 34px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Footer */
.site-footer { position: relative; padding: 70px 0 24px; background: #100f0f; color: rgba(255,255,255,.68); }
.site-footer .kente-divider { top: 0; bottom: auto; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .65fr .65fr; gap: 70px; }
.footer-logo { width: 160px; margin-bottom: 20px; filter: brightness(1.05); }
.footer-nav, .social-links { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a, .social-links a { color: var(--white); }
.footer-bottom { display: flex; align-items: center; gap: 14px; margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom p { margin: 0; font-size: .82rem; }
.sankofa-accent { color: var(--orange); font-size: 1.8rem; transform: rotate(-25deg); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Accessibility */
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 980px) {
  .section { padding: 88px 0; }
  .nav-toggle { display: block; z-index: 3; }
  .primary-nav {
    position: fixed; inset: 0 0 auto; padding: 110px 28px 34px; display: grid; gap: 18px;
    background: var(--ivory); box-shadow: var(--shadow); transform: translateY(-120%); transition: transform .3s ease;
  }
  .primary-nav.open { transform: translateY(0); }
  .nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero-grid, .editorial-grid, .split-heading, .contact-grid, .signup-panel { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-visual { min-height: 390px; }
  .hero-burst-one { width: 520px; height: 520px; }
  .editorial-grid, .contact-grid { gap: 42px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-grid { grid-template-columns: 1fr; }
  .profile-card { grid-template-columns: 1fr; }
  .profile-photo { min-height: 420px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  :root { --container: min(100% - 28px, 1160px); }
  .section { padding: 72px 0; }
  .nav-wrap { min-height: 74px; }
  .brand img { width: 125px; height: 50px; }
  h1 { font-size: clamp(3rem, 14vw, 4.4rem); }
  h2 { font-size: clamp(2.45rem, 12vw, 3.7rem); }
  .hero { padding-top: 125px; }
  .hero-grid { gap: 30px; }
  .hero-logo-card { padding: 24px; }
  .hero-logo-card img { width: 210px; }
  .programme-grid, .impact-grid { grid-template-columns: 1fr; }
  .programme-featured { grid-column: auto; }
  .programme-card { grid-template-columns: 1fr; padding: 26px; }
  .mini-stats { align-items: flex-start; }
  .profile-copy, .contact-form, .signup-panel { padding: 26px; }
  .form-row, .inline-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { align-items: flex-start; }
}

/* =====================================================
   TUNIQ AFRICA HEADER + HERO
===================================================== */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,600&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --tuniq-orange: #f5a623;
  --tuniq-coral: #f0654a;
  --tuniq-pink: #e63b7a;
  --tuniq-cream: #fff8ed;
  --tuniq-white: #ffffff;
  --tuniq-black: #151313;
  --tuniq-charcoal: #262222;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--tuniq-charcoal);
  background: var(--tuniq-cream);
  font-family: "Manrope", sans-serif;
}

/* =====================================================
   HEADER
===================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  color: var(--tuniq-white);
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: rgba(21, 19, 19, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.header-container {
  width: min(1180px, calc(100% - 48px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

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

.brand-logo img {
  display: block;
  width: 180px;
  max-height: 110px;
  object-fit: contain;
}

/*
If your logo has a white background, export a transparent PNG.
Avoid applying filters unless absolutely necessary.
*/

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  color: var(--tuniq-white);
  font-size: 0.81rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.25s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--tuniq-orange),
    var(--tuniq-coral),
    var(--tuniq-pink)
  );
  transition: width 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--tuniq-orange);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  width: 100%;
}

.header-donate-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--tuniq-white);
  background: linear-gradient(
    100deg,
    var(--tuniq-orange),
    var(--tuniq-coral),
    var(--tuniq-pink)
  );
  box-shadow: 0 10px 26px rgba(230, 59, 122, 0.27);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.header-donate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(230, 59, 122, 0.38);
}

/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: var(--tuniq-white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 10px;
  background: currentColor;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.mobile-menu-button.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-navigation {
  display: none;
}

/* =====================================================
   HERO
===================================================== */

.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--tuniq-white);

  /*
  Replace this image with the final Tuniq Africa hero image.
  A landscape festival, poetry reading, African woman poet,
  or audience image will work well.
  */
  background-image:
    linear-gradient(
      90deg,
      rgba(12, 10, 10, 0.9) 0%,
      rgba(12, 10, 10, 0.77) 42%,
      rgba(12, 10, 10, 0.35) 72%,
      rgba(12, 10, 10, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.05) 55%,
      rgba(0, 0, 0, 0.56) 100%
    ),
    url("assets/hero-bg.png");

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      circle at 72% 34%,
      rgba(245, 166, 35, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 70%,
      rgba(230, 59, 122, 0.14),
      transparent 30%
    );
}

.hero-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: calc(var(--header-height) + 72px);
  padding-bottom: 110px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--tuniq-orange);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  content: "";
  width: 44px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--tuniq-orange),
    var(--tuniq-pink)
  );
}

.hero-content h1 {
  max-width: 800px;
  margin: 0;
  color:#ffffff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.7rem, 6.4vw, 6.7rem);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-content h1 span {
  display: block;
  margin-top: 14px;
  color: transparent;
  background: linear-gradient(
    90deg,
    var(--tuniq-orange),
    var(--tuniq-coral),
    var(--tuniq-pink)
  );
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-tagline {
  max-width: 650px;
  margin: 30px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.18;
}

.hero-description {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.75;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-button {
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-button:hover {
  transform: translateY(-3px);
}

.hero-button-primary {
  color: var(--tuniq-white);
  background: linear-gradient(
    100deg,
    var(--tuniq-orange),
    var(--tuniq-coral),
    var(--tuniq-pink)
  );
  box-shadow: 0 14px 34px rgba(230, 59, 122, 0.3);
}

.hero-button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: var(--tuniq-white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero-button-secondary:hover {
  border-color: var(--tuniq-white);
  background: rgba(255, 255, 255, 0.16);
}

/* =====================================================
   CSS SUNBURST
===================================================== */

.hero-sunburst {
  position: absolute;
  z-index: 1;
  top: 13%;
  right: -80px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  opacity: 0.44;
  pointer-events: none;
  animation: sunburstRotate 55s linear infinite;
}

.hero-sunburst::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hero-sunburst span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48%;
  height: 2px;
  transform-origin: left center;
  transform:
    rotate(calc(var(--ray) * 15deg))
    translateX(14px);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.9),
    rgba(245, 166, 35, 0.8),
    rgba(230, 59, 122, 0.2)
  );
}

.hero-sunburst span:nth-child(3n + 1) {
  height: 4px;
}

.hero-sunburst span:nth-child(3n + 2) {
  width: 42%;
}

@keyframes sunburstRotate {
  to {
    transform: rotate(360deg);
  }
}

/* =====================================================
   BOTTOM KENTE-INSPIRED PATTERN
===================================================== */

.hero-pattern {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  width: 100%;
  height: 8px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.hero-pattern span:nth-child(4n + 1) {
  background: var(--tuniq-orange);
}

.hero-pattern span:nth-child(4n + 2) {
  background: var(--tuniq-pink);
}

.hero-pattern span:nth-child(4n + 3) {
  background: var(--tuniq-black);
}

.hero-pattern span:nth-child(4n + 4) {
  background: var(--tuniq-coral);
}

/* =====================================================
   SCROLL INDICATOR
===================================================== */

.hero-scroll-indicator {
  position: absolute;
  right: 46px;
  bottom: 42px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-scroll-indicator svg {
  animation: scrollBounce 1.6s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(-2px);
  }

  50% {
    transform: translateY(5px);
  }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1024px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 0.73rem;
  }

  .brand-logo img {
    width: 160px;
  }

  .hero-content {
    max-width: 720px;
  }

  .hero-sunburst {
    right: -150px;
    width: 380px;
    height: 380px;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 850px) {
  :root {
    --header-height: 76px;
  }

  .header-container {
    width: min(100% - 30px, 1180px);
  }

  .desktop-nav,
  .header-donate-btn {
    display: none;
  }

  .brand-logo img {
    width: 160px;
    max-height: 100px;
  }

  .mobile-menu-button {
    display: block;
  }

  .mobile-navigation {
    position: absolute;
    top: calc(100% + 1px);
    left: 15px;
    right: 15px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    background: rgba(21, 19, 19, 0.98);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
  }

  .mobile-navigation.open {
    display: grid;
  }

  .mobile-navigation a {
    padding: 13px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--tuniq-white);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-navigation a:last-child {
    border-bottom: 0;
  }

  .mobile-navigation .mobile-donate-link {
    margin-top: 10px;
    border-radius: 10px;
    text-align: center;
    background: linear-gradient(
      100deg,
      var(--tuniq-orange),
      var(--tuniq-coral),
      var(--tuniq-pink)
    );
  }

  .hero-section {
    min-height: 820px;
    background-image:
      linear-gradient(
        180deg,
        rgba(12, 10, 10, 0.55) 0%,
        rgba(12, 10, 10, 0.74) 40%,
        rgba(12, 10, 10, 0.93) 100%
      ),
      url("assets/images/tuniq-hero.jpg");

    background-position: 62% center;
  }

  .hero-container {
    width: min(100% - 32px, 1180px);
    padding-top: 140px;
    padding-bottom: 100px;
  }

  .hero-content {
    max-width: 640px;
  }

  .hero-content h1 {
    font-size: clamp(3.1rem, 13vw, 5rem);
    line-height: 0.9;
  }

  .hero-tagline {
    max-width: 540px;
  }

  .hero-description {
    max-width: 580px;
    line-height: 1.65;
  }

  .hero-sunburst {
    top: 12%;
    right: -170px;
    width: 330px;
    height: 330px;
    opacity: 0.32;
  }

  .hero-scroll-indicator {
    display: none;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 520px) {
  .hero-section {
    min-height: 760px;
  }

  .hero-container {
    padding-top: 128px;
    padding-bottom: 70px;
  }

  .hero-eyebrow {
    font-size: 0.63rem;
    letter-spacing: 0.12em;
  }

  .hero-eyebrow::before {
    width: 28px;
  }

  .hero-content h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .hero-tagline {
    margin-top: 24px;
    font-size: 1.32rem;
  }

  .hero-description {
    margin-top: 18px;
    font-size: 0.9rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-button {
    width: 100%;
  }

  .hero-sunburst {
    top: 10%;
    right: -200px;
  }
}

/* =====================================================
   ACCESSIBILITY
===================================================== */

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--tuniq-orange);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.partner-panel{
    margin-top:70px;
    text-align:center;
}

.partner-logos{
    margin-top:35px;

    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;

    gap:70px;
}

.partner-logos a{
    display:flex;
    align-items:center;
    justify-content:center;

    transition:.35s;
}

.partner-logos img{

    max-height:55px;
    width:auto;

    filter:grayscale(0%);
    opacity:.75;

    transition:.35s;
}

.partner-logos a:hover img{

    filter:none;
    opacity:1;

    transform:scale(1.08);
}

.form-status {
  width: 100%;
  margin: 10px 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
}

.form-status.success {
  color: #80d69b;
}

.form-status.error {
  color: #ff9a9a;
}

.inline-form button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}