/* ========================================
   MTTA Static Site - Global Styles
   ======================================== */

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #00579C;
  --primary-light: #1a7abf;
  --primary-dark: #004a85;
  --accent: #0080d4;
  --accent-light: #33a0e8;
  --gold: #FFD100;
  --gold-dark: #e6bc00;
  --white: #ffffff;
  --off-white: #f0f4f8;
  --light-gray: #dde3ea;
  --gray: #8899a8;
  --dark-gray: #1a2a3a;
  --text: #e8edf2;
  --text-light: #a0b4c8;
  --surface: rgba(0, 65, 120, 0.45);
  --surface-light: rgba(0, 75, 135, 0.3);
  --glass: rgba(0, 70, 130, 0.35);
  --glass-border: rgba(255, 209, 0, 0.1);
  --font-heading: 'Avenir', 'Avenir Next', 'Nunito Sans', sans-serif;
  --font-body: 'Avenir', 'Avenir Next', 'Nunito Sans', sans-serif;
  --font-condensed: 'Avenir', 'Avenir Next', 'Nunito Sans', sans-serif;
  --max-width: 1200px;
  --section-padding: 100px 0;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --glow-blue: 0 0 30px rgba(0, 87, 156, 0.15);
  --glow-gold: 0 0 30px rgba(255, 209, 0, 0.1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  background: linear-gradient(180deg, #002952 0%, #003a6e 30%, #002d55 60%, #001e3d 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-light);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(0, 55, 100, 0.94) 0%, rgba(0, 72, 130, 0.90) 100%);
  backdrop-filter: blur(28px) saturate(1.6);
  -webkit-backdrop-filter: blur(28px) saturate(1.6);
  border-bottom: none;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 209, 0, 0.35), rgba(0, 87, 156, 0.5), rgba(255, 209, 0, 0.35), transparent);
  pointer-events: none;
}

.site-header.scrolled {
  background: linear-gradient(180deg, rgba(0, 45, 85, 0.98) 0%, rgba(0, 62, 112, 0.96) 100%);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45), 0 0 80px rgba(0, 87, 156, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 28px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 0;
}

.logo img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.2;
  white-space: nowrap;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.logo-text span {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-menu li {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-menu > li:not(.nav-socials-li) a,
.nav-dropdown-menu a {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, text-shadow 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.nav-menu > li:not(.nav-socials-li) > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-menu > li:not(.nav-socials-li) > a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

.nav-menu > li:not(.nav-socials-li) > a:hover::after {
  width: 80%;
  left: 10%;
}

.nav-menu > li:not(.nav-socials-li) > a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.4);
}

.nav-menu > li:not(.nav-socials-li) > a.active::after {
  width: 80%;
  left: 10%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), rgba(0, 180, 255, 0.5), rgba(255,255,255,0.8), transparent);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > a .nav-arrow {
  font-size: 0.55rem;
  transition: transform 0.3s ease;
  margin-left: 2px;
}

.nav-dropdown:hover > a .nav-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 190px;
  padding-top: 8px;
  z-index: 1001;
  background: transparent;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 50, 95, 0.97) 0%, rgba(0, 65, 118, 0.95) 100%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 10px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 87, 156, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 209, 0, 0.1);
  pointer-events: none;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  margin: 0 6px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  white-space: nowrap;
  letter-spacing: 1px;
  position: relative;
}

.nav-dropdown-menu a:first-of-type {
  margin-top: 6px;
}

.nav-dropdown-menu a:last-of-type {
  margin-bottom: 6px;
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 209, 0, 0.08);
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-metaverse {
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.12) 0%, rgba(255, 209, 0, 0.08) 100%) !important;
  color: var(--gold) !important;
  font-weight: 700 !important;
  border: 1px solid rgba(255, 209, 0, 0.25);
  border-radius: 20px !important;
  animation: metaversePulse 4s ease-in-out infinite;
}

.nav-metaverse::after {
  display: none !important;
}

.nav-metaverse:hover {
  background: linear-gradient(135deg, var(--gold), rgba(0, 180, 255, 0.8)) !important;
  color: #003366 !important;
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(255, 209, 0, 0.35), 0 0 60px rgba(0, 180, 255, 0.15);
  text-shadow: none !important;
}

@keyframes metaversePulse {
  0%, 100% { box-shadow: 0 0 6px rgba(255,209,0,0.1), 0 0 20px rgba(0, 180, 255, 0.05); }
  50% { box-shadow: 0 0 18px rgba(255,209,0,0.25), 0 0 40px rgba(0, 180, 255, 0.1); }
}

.nav-easter {
  background: linear-gradient(135deg, rgba(255,209,0,0.1) 0%, rgba(255,209,0,0.03) 100%) !important;
  color: var(--gold) !important;
  font-weight: 700 !important;
  border: 1px solid rgba(255, 209, 0, 0.2);
  border-radius: 20px !important;
}

.nav-easter::after {
  display: none !important;
}

.nav-easter:hover {
  background: var(--gold) !important;
  color: #003366 !important;
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(255, 209, 0, 0.25);
  text-shadow: none !important;
}

.nav-socials-li {
  display: flex;
  align-items: center;
  list-style: none;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-right: 12px;
  margin-right: 6px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.nav-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.85rem;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-social-ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.nav-social-ig:hover {
  transform: scale(1.2);
  box-shadow: 0 0 16px rgba(225, 48, 108, 0.5), 0 0 30px rgba(225, 48, 108, 0.2);
  filter: brightness(1.15);
}

.nav-social-fb {
  background: #1877F2;
}

.nav-social-fb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 16px rgba(24, 119, 242, 0.5), 0 0 30px rgba(24, 119, 242, 0.2);
  filter: brightness(1.15);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 12px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: background 0.3s ease;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ========================================
   HERO SECTIONS
   ======================================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 74px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 61, 110, 0.55) 0%, rgba(0, 87, 156, 0.4) 50%, rgba(26, 122, 191, 0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 60px 24px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-content p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-content .btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: 2px solid transparent;
}

.hero-content .btn:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* Page hero (shorter) */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0,87,156,0.25) 0%, rgba(0,65,120,0.35) 60%, rgba(0,45,85,0.45) 100%);
  margin-top: 74px;
  text-align: center;
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,209,0,0.3);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%) scale(0.3);
  background: url('../../assets/images/mtta-watermark-logo.png') center/contain no-repeat;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  animation: heroWatermarkReveal 4s ease-out forwards, watermarkBreath 12s ease-in-out 4s infinite;
}

@keyframes heroWatermarkReveal {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2) rotate(-90deg);
    filter: blur(15px);
  }
  100% {
    opacity: 0.06;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    filter: blur(0px);
  }
}

@keyframes watermarkBreath {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 0.06;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.06) rotate(3deg);
    opacity: 0.04;
  }
}

@keyframes watermarkSpin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 20px rgba(0,87,156,0.3);
}

.page-hero p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 16px auto 0;
  position: relative;
  z-index: 1;
}

.page-hero .motif-strip-inline {
  position: relative;
  z-index: 1;
}

.page-hero--team {
  min-height: 55vh;
  padding: 80px 24px 60px;
}

.page-hero--team-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-hero--team-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.35) saturate(0.6) contrast(1.1);
  transform: scale(1.05);
  animation: teamHeroDrift 20s ease-in-out infinite alternate;
}

.page-hero--team-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,20,40,0.85) 0%,
      rgba(0,57,116,0.4) 35%,
      rgba(0,65,120,0.25) 60%,
      rgba(0,20,40,0.9) 100%),
    linear-gradient(90deg,
      rgba(0,20,40,0.6) 0%,
      transparent 30%,
      transparent 70%,
      rgba(0,20,40,0.6) 100%);
  z-index: 1;
}

.page-hero--team::before {
  z-index: 2;
}

.page-hero--team > div:last-child {
  position: relative;
  z-index: 3;
}

.page-hero--team h1 {
  font-size: 4rem;
  letter-spacing: 6px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.4);
}

@keyframes teamHeroDrift {
  0% {
    transform: scale(1.05) translateY(0);
  }
  100% {
    transform: scale(1.1) translateY(-2%);
  }
}

@media (max-width: 768px) {
  .page-hero--team {
    min-height: 40vh;
    padding: 70px 20px 50px;
  }
  .page-hero--team h1 {
    font-size: 2.8rem;
    letter-spacing: 4px;
  }
  .page-hero--team-bg img {
    object-position: center 30%;
  }
}

.page-hero--about {
  min-height: 55vh;
  padding: 80px 24px 60px;
}

.page-hero--about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-hero--about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.3) saturate(0.5) contrast(1.1);
  transform: scale(1.05);
  animation: aboutHeroDrift 25s ease-in-out infinite alternate;
}

.page-hero--about-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,20,40,0.88) 0%,
      rgba(0,57,116,0.35) 35%,
      rgba(0,65,120,0.25) 60%,
      rgba(0,20,40,0.92) 100%),
    linear-gradient(90deg,
      rgba(0,20,40,0.65) 0%,
      transparent 30%,
      transparent 70%,
      rgba(0,20,40,0.65) 100%);
  z-index: 1;
}

.page-hero--about::before {
  z-index: 2;
}

.page-hero--about > div:last-child {
  position: relative;
  z-index: 3;
}

.page-hero--about h1 {
  font-size: 4rem;
  letter-spacing: 6px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.4);
}

@keyframes aboutHeroDrift {
  0% {
    transform: scale(1.05) translateY(0);
  }
  100% {
    transform: scale(1.1) translateY(-2%);
  }
}

@media (max-width: 768px) {
  .page-hero--about {
    min-height: 40vh;
    padding: 70px 20px 50px;
  }
  .page-hero--about h1 {
    font-size: 2.8rem;
    letter-spacing: 4px;
  }
  .page-hero--about-bg img {
    object-position: center 35%;
  }
}

.page-hero--programmes {
  min-height: 55vh;
  padding: 80px 24px 60px;
}

.page-hero--programmes-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-hero--programmes-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.3) saturate(0.5) contrast(1.15);
  transform: scale(1.08);
  animation: programmesHeroZoom 18s ease-in-out infinite alternate;
}

.page-hero--programmes-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,20,40,0.88) 0%,
      rgba(0,57,116,0.35) 35%,
      rgba(0,65,120,0.2) 60%,
      rgba(0,20,40,0.92) 100%),
    linear-gradient(90deg,
      rgba(0,20,40,0.65) 0%,
      transparent 30%,
      transparent 70%,
      rgba(0,20,40,0.65) 100%);
  z-index: 1;
}

.page-hero--programmes::before {
  z-index: 2;
}

.page-hero--programmes > div:last-child {
  position: relative;
  z-index: 3;
}

.page-hero--programmes h1 {
  font-size: 3.5rem;
  letter-spacing: 5px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.4);
}

.page-hero--programmes p {
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

@keyframes programmesHeroZoom {
  0% {
    transform: scale(1.08) translateY(0);
  }
  50% {
    transform: scale(1.15) translateY(-1.5%);
  }
  100% {
    transform: scale(1.08) translateY(0.5%);
  }
}

@media (max-width: 768px) {
  .page-hero--programmes {
    min-height: 40vh;
    padding: 70px 20px 50px;
  }
  .page-hero--programmes h1 {
    font-size: 2.4rem;
    letter-spacing: 3px;
  }
  .page-hero--programmes-bg img {
    object-position: center 45%;
  }
}

.page-hero--events {
  min-height: 55vh;
  padding: 80px 24px 60px;
}

.page-hero--events-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-hero--events-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.32) saturate(0.55) contrast(1.1);
  transform: scale(1.05);
  animation: eventsHeroDrift 22s ease-in-out infinite alternate;
}

.page-hero--events-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,20,40,0.88) 0%,
      rgba(0,57,116,0.35) 35%,
      rgba(0,65,120,0.22) 60%,
      rgba(0,20,40,0.92) 100%),
    linear-gradient(90deg,
      rgba(0,20,40,0.65) 0%,
      transparent 30%,
      transparent 70%,
      rgba(0,20,40,0.65) 100%);
  z-index: 1;
}

.page-hero--events::before {
  z-index: 2;
}

.page-hero--events > div:last-child {
  position: relative;
  z-index: 3;
}

.page-hero--events h1 {
  font-size: 4rem;
  letter-spacing: 6px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.4);
}

.page-hero--events p {
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

@keyframes eventsHeroDrift {
  0% {
    transform: scale(1.05) translateY(0);
  }
  100% {
    transform: scale(1.12) translateY(-2%);
  }
}

@media (max-width: 768px) {
  .page-hero--events {
    min-height: 40vh;
    padding: 70px 20px 50px;
  }
  .page-hero--events h1 {
    font-size: 2.8rem;
    letter-spacing: 4px;
  }
  .page-hero--events-bg img {
    object-position: center 25%;
  }
}

.page-hero--stories {
  min-height: 55vh;
  padding: 80px 24px 60px;
}

.page-hero--stories-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-hero--stories-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.3) saturate(0.5) contrast(1.1);
  transform: scale(1.05);
  animation: storiesHeroDrift 24s ease-in-out infinite alternate;
}

.page-hero--stories-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,20,40,0.88) 0%,
      rgba(0,57,116,0.35) 35%,
      rgba(0,65,120,0.22) 60%,
      rgba(0,20,40,0.92) 100%),
    linear-gradient(90deg,
      rgba(0,20,40,0.65) 0%,
      transparent 30%,
      transparent 70%,
      rgba(0,20,40,0.65) 100%);
  z-index: 1;
}

.page-hero--stories::before {
  z-index: 2;
}

.page-hero--stories > div:last-child {
  position: relative;
  z-index: 3;
}

.page-hero--stories h1 {
  font-size: 4rem;
  letter-spacing: 6px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.4);
}

.page-hero--stories p {
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

@keyframes storiesHeroDrift {
  0% {
    transform: scale(1.05) translateY(0);
  }
  100% {
    transform: scale(1.1) translateY(-2%);
  }
}

@media (max-width: 768px) {
  .page-hero--stories {
    min-height: 40vh;
    padding: 70px 20px 50px;
  }
  .page-hero--stories h1 {
    font-size: 2.8rem;
    letter-spacing: 4px;
  }
  .page-hero--stories-bg img {
    object-position: center 35%;
  }
}

.page-hero--contact {
  min-height: 55vh;
  padding: 80px 24px 60px;
}

.page-hero--contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-hero--contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.25) saturate(0.4) contrast(1.1);
  transform: scale(1.05);
  animation: contactHeroDrift 28s ease-in-out infinite alternate;
}

.page-hero--contact-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,20,40,0.9) 0%,
      rgba(0,57,116,0.4) 35%,
      rgba(0,65,120,0.3) 60%,
      rgba(0,20,40,0.93) 100%),
    linear-gradient(90deg,
      rgba(0,20,40,0.65) 0%,
      transparent 30%,
      transparent 70%,
      rgba(0,20,40,0.65) 100%);
  z-index: 1;
}

@keyframes contactHeroDrift {
  0% { transform: scale(1.05) translateX(0); }
  100% { transform: scale(1.08) translateX(-1.5%); }
}

.page-hero--notices {
  min-height: 55vh;
  padding: 80px 24px 60px;
}

.page-hero--notices-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-hero--notices-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.3) saturate(0.5) contrast(1.1);
  transform: scale(1.05);
  animation: noticesHeroDrift 22s ease-in-out infinite alternate;
}

.page-hero--notices-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,20,40,0.88) 0%,
      rgba(0,57,116,0.35) 35%,
      rgba(0,65,120,0.22) 60%,
      rgba(0,20,40,0.92) 100%),
    linear-gradient(90deg,
      rgba(0,20,40,0.65) 0%,
      transparent 30%,
      transparent 70%,
      rgba(0,20,40,0.65) 100%);
  z-index: 1;
}

.page-hero--notices::before {
  z-index: 2;
}

.page-hero--notices > div:last-child {
  position: relative;
  z-index: 3;
}

.page-hero--notices h1 {
  font-size: 4rem;
  letter-spacing: 6px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.4);
}

.page-hero--notices p {
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

@keyframes noticesHeroDrift {
  0% {
    transform: scale(1.05) translateY(0);
  }
  100% {
    transform: scale(1.1) translateY(-2%);
  }
}

@media (max-width: 768px) {
  .page-hero--notices {
    min-height: 40vh;
    padding: 70px 20px 50px;
  }
  .page-hero--notices h1 {
    font-size: 2.8rem;
    letter-spacing: 4px;
  }
  .page-hero--notices-bg img {
    object-position: center 30%;
  }
}

.page-hero--strategy {
  min-height: 55vh;
  padding: 80px 24px 60px;
}

.page-hero--strategy-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-hero--strategy-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.3) saturate(0.5) contrast(1.1);
  transform: scale(1.05);
  animation: strategyHeroDrift 22s ease-in-out infinite alternate;
}

.page-hero--strategy-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,20,40,0.88) 0%,
      rgba(0,57,116,0.35) 35%,
      rgba(0,65,120,0.22) 60%,
      rgba(0,20,40,0.92) 100%),
    linear-gradient(90deg,
      rgba(0,20,40,0.65) 0%,
      transparent 30%,
      transparent 70%,
      rgba(0,20,40,0.65) 100%);
  z-index: 1;
}

.page-hero--strategy::before {
  z-index: 2;
}

.page-hero--strategy > div:last-child {
  position: relative;
  z-index: 3;
}

.page-hero--strategy h1 {
  font-size: 4rem;
  letter-spacing: 6px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.4);
}

@keyframes strategyHeroDrift {
  0% {
    transform: scale(1.05) translateY(0);
  }
  100% {
    transform: scale(1.12) translateY(-2%);
  }
}

@media (max-width: 768px) {
  .page-hero--strategy {
    min-height: 40vh;
    padding: 70px 20px 50px;
  }
  .page-hero--strategy h1 {
    font-size: 2.8rem;
    letter-spacing: 4px;
  }
  .page-hero--strategy-bg img {
    object-position: center 25%;
  }
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: var(--section-padding);
}

.section--gray {
  background: rgba(0, 50, 90, 0.15);
}

.section--dark {
  background: rgba(0, 65, 120, 0.3);
  color: var(--text);
  border-top: 1px solid rgba(0,87,156,0.15);
  border-bottom: 1px solid rgba(0,87,156,0.15);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}


.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ========================================
   ABOUT / TWO-COLUMN LAYOUT
   ======================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

.two-col .col-image img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.two-col .col-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.two-col .col-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1rem;
}

.purpose-watermark {
  position: relative;
  overflow: visible;
  padding-top: 200px;
  padding-bottom: 120px;
}

.purpose-watermark::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 20%;
  width: 1500px;
  height: 1500px;
  transform: translate(-50%, -50%) scale(0.2);
  background: url('../../assets/images/mtta-watermark-logo.png') center/contain no-repeat;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  animation:
    watermarkReveal 6s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    watermarkDrift 30s ease-in-out 6s infinite,
    watermarkSlow 50s linear 6s infinite;
}

@keyframes watermarkReveal {
  0% {
    opacity: 0;
    transform: translate(-80%, -50%) scale(0.1) rotate(-360deg);
    filter: blur(50px);
  }
  30% {
    opacity: 0.04;
    transform: translate(-60%, -50%) scale(0.5) rotate(-180deg);
    filter: blur(20px);
  }
  60% {
    opacity: 0.1;
    transform: translate(-50%, -50%) scale(1.05) rotate(-30deg);
    filter: blur(3px);
  }
  80% {
    opacity: 0.08;
    transform: translate(-50%, -50%) scale(0.98) rotate(5deg);
    filter: blur(0px);
  }
  100% {
    opacity: 0.09;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    filter: blur(0px);
  }
}

@keyframes watermarkDrift {
  0% {
    left: 15%;
    top: 50%;
    opacity: 0.07;
    transform: translate(-50%, -50%) scale(1);
  }
  15% {
    left: 35%;
    top: 45%;
    opacity: 0.1;
    transform: translate(-50%, -50%) scale(1.06);
  }
  30% {
    left: 60%;
    top: 55%;
    opacity: 0.06;
    transform: translate(-50%, -50%) scale(0.95);
  }
  50% {
    left: 75%;
    top: 48%;
    opacity: 0.11;
    transform: translate(-50%, -50%) scale(1.08);
  }
  65% {
    left: 55%;
    top: 52%;
    opacity: 0.07;
    transform: translate(-50%, -50%) scale(0.97);
  }
  80% {
    left: 30%;
    top: 46%;
    opacity: 0.1;
    transform: translate(-50%, -50%) scale(1.04);
  }
  100% {
    left: 15%;
    top: 50%;
    opacity: 0.07;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes watermarkSlow {
  0% {
    filter: blur(0px) brightness(1);
  }
  25% {
    filter: blur(1px) brightness(1.1);
  }
  50% {
    filter: blur(0px) brightness(0.9);
  }
  75% {
    filter: blur(1px) brightness(1.05);
  }
  100% {
    filter: blur(0px) brightness(1);
  }
}

/* ========================================
   PURPOSE / MISSION / VISION CARDS
   ======================================== */
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.purpose-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

.purpose-card {
  text-align: center;
  padding: 40px 30px;
  background: rgba(0, 65, 120, 0.35);
  border: 1px solid rgba(0,87,156,0.2);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.purpose-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 87, 156, 0.2);
}

.purpose-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
}

.purpose-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ========================================
   VALUES SECTION
   ======================================== */
.values-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 40px;
}

.value-item:nth-child(even) {
  flex-direction: row-reverse;
}

.value-item .value-image {
  flex: 0 0 200px;
}

.value-item .value-image img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.value-item .value-text h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}

.value-item .value-text p {
  color: var(--text-light);
}

.wave-divider {
  text-align: center;
  margin: 30px 0;
  opacity: 0.3;
}

.wave-divider img {
  max-width: 400px;
  margin: 0 auto;
}

/* ========================================
   CORE VALUES GRID
   ======================================== */
.core-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.core-value-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(0, 65, 120, 0.35);
  border: 1px solid rgba(0,87,156,0.2);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  border-top: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}

.core-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 87, 156, 0.2);
}

.core-value-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: #fff;
}

.core-value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
}

.core-value-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ========================================
   STRATEGY GRID
   ======================================== */
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.strategy-card {
  background: rgba(0, 65, 120, 0.35);
  border: 1px solid rgba(0,87,156,0.2);
  border-radius: 16px;
  padding: 32px 28px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-top: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}

.strategy-card:hover {
  background: rgba(0, 70, 130, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 87, 156, 0.2);
  border-color: rgba(0,87,156,0.3);
}

.strategy-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: var(--white);
}

.strategy-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.4;
}

.strategy-measures {
  list-style: none;
  padding: 0;
}

.strategy-measures li {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.5;
  padding: 6px 0 6px 22px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.strategy-measures li:last-child {
  border-bottom: none;
}

.strategy-measures li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: rgba(0, 65, 120, 0.35);
  border: 1px solid rgba(0,87,156,0.2);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  backdrop-filter: blur(10px);
}

.testimonial-card .quote-mark {
  width: 40px;
  margin-bottom: 16px;
  opacity: 0.6;
}

.testimonial-card p {
  color: var(--text);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.testimonial-card .author {
  font-family: var(--font-condensed);
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
}

/* ========================================
   PROGRAMMES CARDS
   ======================================== */
.programmes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.programme-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 350px;
  cursor: default;
}

.programme-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.programme-card:hover img {
  transform: scale(1.05);
}

.programme-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 61, 110, 0.85) 0%, rgba(0, 87, 156, 0.3) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.programme-card .card-overlay h3 {
  color: #fff;
  font-size: 1.5rem;
  font-family: var(--font-condensed);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 0 40px rgba(255, 255, 255, 0.5), 0 0 60px rgba(255, 255, 255, 0.3), 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* ========================================
   EVENTS
   ======================================== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.event-card {
  background: rgba(0, 65, 120, 0.35);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  border-top: 2px solid rgba(255,255,255,0.5);
  border: 1px solid rgba(0,87,156,0.2);
  backdrop-filter: blur(10px);
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 87, 156, 0.2);
}

.event-card .card-image {
  height: 220px;
  overflow: hidden;
}

.event-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover .card-image img {
  transform: scale(1.05);
}

.event-card .card-body {
  padding: 24px;
}

.event-card .card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.event-card .card-body .date {
  font-size: 0.85rem;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 10px;
}

.event-card .card-body p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ========================================
   CONTACT
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info {
  padding: 40px;
  background: rgba(0, 70, 130, 0.35);
  border: 1px solid rgba(0,87,156,0.25);
  border-radius: 16px;
  color: var(--white);
  backdrop-filter: blur(10px);
}

.contact-info h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.contact-info .info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-info .info-item .icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 87, 156, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info .info-item p {
  font-size: 1rem;
}

.contact-info .contact-image {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
}

.contact-form {
  background: rgba(0, 65, 120, 0.35);
  border: 1px solid rgba(0,87,156,0.2);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-form > p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

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

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0,87,156,0.3);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  background: rgba(0, 65, 120, 0.35);
  color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
  background: rgba(0, 65, 120, 0.5);
}

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

.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  width: 100%;
  text-align: center;
}

.btn-primary:hover {
  background: #fff;
  color: var(--primary);
}

/* ========================================
   STORIES / BLOG
   ======================================== */
.stories-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.stories-intro p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ========================================
   NOTICES
   ======================================== */
.notices-list {
  max-width: 800px;
  margin: 0 auto;
}

.notice-item {
  background: rgba(0, 65, 120, 0.35);
  border: 1px solid rgba(0,87,156,0.2);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-left: 4px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}

.notice-item h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.notice-item .notice-date {
  font-size: 0.85rem;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 12px;
}

.notice-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.notice-item .notice-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 12px;
}

/* ========================================
   NEWSLETTER CTA
   ======================================== */
.newsletter-cta {
  background: linear-gradient(135deg, rgba(0,75,135,0.25) 0%, rgba(0,65,120,0.35) 100%);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 60px 0;
  text-align: center;
  color: var(--text);
}

.newsletter-cta h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 8px;
}

.newsletter-cta p {
  color: var(--text-light);
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(0,87,156,0.3);
  border-radius: 8px;
  background: rgba(0, 65, 120, 0.4);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.newsletter-form input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.5);
  background: rgba(0, 65, 120, 0.6);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
}

.newsletter-form button {
  padding: 14px 28px;
  background: #fff;
  color: var(--primary);
  font-family: var(--font-condensed);
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: rgba(255,255,255,0.85);
  color: var(--primary);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: linear-gradient(180deg, rgba(0,50,95,0.9) 0%, #001a3a 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
  border-top: 1px solid rgba(255,209,0,0.3);
  backdrop-filter: blur(20px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col .footer-logo {
  height: 60px;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  font-size: 1.1rem;
}

.social-links a:hover {
  background: #fff;
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col--reverse {
    direction: ltr;
  }

  .purpose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .programmes-grid {
    grid-template-columns: 1fr;
  }

  .events-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 1100px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 50, 95, 0.98) 0%, rgba(0, 65, 118, 0.96) 100%);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    flex-direction: column;
    padding: 16px;
    border-top: 1px solid rgba(255, 209, 0, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    gap: 2px;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu > li:not(.nav-socials-li) a {
    display: block;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
  }

  .nav-menu > li:not(.nav-socials-li) a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-menu > li:not(.nav-socials-li) > a::after {
    display: none;
  }

  .nav-dropdown-menu {
    position: static;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: none;
    box-shadow: none;
    border: none;
    border-radius: 8px;
    padding: 4px 0 4px 12px;
    min-width: 0;
  }

  .nav-dropdown-menu a {
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown > a .nav-arrow {
    font-size: 0.6rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-socials-li {
    order: 99;
    width: 100%;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 8px;
    margin-top: 4px;
  }

  .nav-socials {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    justify-content: center;
    gap: 10px;
    padding: 8px 0;
  }

  .nav-socials a {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    border-radius: 10px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 50px 0;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .value-item,
  .value-item:nth-child(even) {
    flex-direction: column;
    text-align: center;
  }

  .purpose-grid {
    grid-template-columns: 1fr !important;
  }

  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strategy-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

/* ========================================
   UTILITIES
   ======================================== */
.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.mt-4 { margin-top: 32px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ========================================
   MTTA MOTIF PATTERN (Yellow & Blue)
   ======================================== */

.motif-icon,
.motif-strip-inline {
  display: flex;
  align-items: center;
  justify-content: center;
}

.motif-icon svg {
  width: 48px;
  height: 48px;
}

.purpose-card .motif-icon {
  margin-bottom: 20px;
}

.purpose-card .motif-icon svg {
  width: 56px;
  height: 56px;
}

.purpose-card--navy {
  background: rgba(0, 65, 120, 0.35);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.15);
}

.purpose-card--navy h3 {
  color: var(--white);
}

.purpose-card--navy p {
  color: var(--text-light);
}

.purpose-card--navy .motif-icon svg {
  fill: var(--primary);
}

.purpose-card--gold {
  background: #fff;
  color: var(--primary);
}

.purpose-card--gold h3 {
  color: var(--primary);
}

.purpose-card--gold p {
  color: rgba(0, 87, 156, 0.8);
}

.purpose-card--gold .motif-icon svg {
  fill: var(--primary);
}

.futuristic-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 48px 24px;
  background: linear-gradient(180deg, #002040 0%, #003566 50%, #002040 100%);
  position: relative;
  overflow: hidden;
}

.futuristic-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 50% 50%, rgba(0, 87, 156, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.futuristic-divider__line {
  flex: 1;
  max-width: 280px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 209, 0, 0.5) 40%, rgba(0, 128, 212, 0.6) 100%);
  position: relative;
}

.futuristic-divider__line:last-of-type {
  background: linear-gradient(90deg, rgba(0, 128, 212, 0.6) 0%, rgba(255, 209, 0, 0.5) 60%, transparent 100%);
}

.futuristic-divider__line::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 5px;
  background: inherit;
  filter: blur(4px);
  opacity: 0.6;
}

.futuristic-divider__diamond {
  width: 12px;
  height: 12px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin: 0 16px;
  box-shadow:
    0 0 12px rgba(255, 209, 0, 0.4),
    0 0 30px rgba(255, 209, 0, 0.15);
  position: relative;
  z-index: 1;
}

.futuristic-divider__glow {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-light);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(0, 128, 212, 0.6);
  opacity: 0.7;
}

@media (max-width: 768px) {
  .futuristic-divider {
    padding: 32px 16px;
  }

  .futuristic-divider__line {
    max-width: 120px;
  }
}

.section-wave {
  position: relative;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.section-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

.section-wave--navy svg {
  fill: var(--primary);
}

.section-wave--gold svg {
  fill: var(--gold);
}

.section-wave--white svg {
  fill: var(--white);
}

.section-wave--gray svg {
  fill: rgba(0, 50, 90, 0.15);
}

.section--navy {
  background: rgba(0, 60, 110, 0.25);
  color: var(--text);
  border-top: 1px solid rgba(0,87,156,0.2);
  border-bottom: 1px solid rgba(0,87,156,0.2);
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.section--navy p {
  color: var(--text-light);
}

.section--gold {
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  color: var(--text);
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.section--gold h2,
.section--gold h3 {
  color: #fff;
}

.section--white {
  background: url('../images/mtta-background-texture.jpg') center/cover no-repeat;
  background-attachment: fixed;
  color: #1a1a2e;
}

.section--white h2,
.section--white h3,
.section--white h4 {
  color: #003366;
}

.section--white p,
.section--white li {
  color: #2a2a3e;
}

.section--white .section-subtitle {
  color: #3a3a50;
}

.section--white .card,
.section--white .glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 87, 156, 0.15);
  border-top: 2px solid var(--primary);
}

.section--white .card h3,
.section--white .glass-card h3 {
  color: var(--primary);
}

.section--white .card p,
.section--white .glass-card p {
  color: #2a2a3e;
}

.section--white .contact-info,
.section--white .contact-form {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 87, 156, 0.12);
}

.section--white .contact-info h3,
.section--white .contact-form h3 {
  color: var(--primary);
}

.section--white .contact-info p,
.section--white .contact-form p,
.section--white .contact-info .info-item p {
  color: #2a2a3e;
}

.section--white .contact-form input,
.section--white .contact-form textarea,
.section--white .contact-form select {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 87, 156, 0.2);
  color: #1a1a2e;
}

.section--white .contact-form input::placeholder,
.section--white .contact-form textarea::placeholder {
  color: #888;
}

.section--white .purpose-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 87, 156, 0.12);
}

.section--white .purpose-card h3 {
  color: var(--primary);
}

.section--white .purpose-card p {
  color: #2a2a3e;
}

.section--white .programme-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 87, 156, 0.12);
  border-top: 2px solid var(--primary);
}

.section--white .programme-card h3 {
  color: var(--primary);
}

.section--white .programme-card p {
  color: #2a2a3e;
}

.section--white .story-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 87, 156, 0.12);
}

.section--white .story-card h3 {
  color: var(--primary);
}

.section--white .story-card p {
  color: #2a2a3e;
}

.section--white .stories-intro p {
  color: #2a2a3e;
}

.section--white .section-header h2 {
  color: #003366;
}

.section--white .two-col .col-text p {
  color: #2a2a3e;
}

.section--white .two-col .col-text h2 {
  color: #003366;
}

.section--white .event-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 87, 156, 0.12);
}

.section--white .event-card h3 {
  color: var(--primary);
}

.section--white .event-card p,
.section--white .event-card .card-body p {
  color: #2a2a3e;
}

.section--white .reach-stat h3 {
  color: var(--primary);
}

.section--white .reach-stat p {
  color: #2a2a3e;
}

.section--white .value-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 87, 156, 0.12);
}

.section--white .value-card h3 {
  color: var(--primary);
}

.section--white .value-card p {
  color: #2a2a3e;
}

.section--white .testimonial-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 87, 156, 0.12);
}

.section--white .testimonial-card p {
  color: #2a2a3e;
}

.section--white .testimonial-card .author {
  color: var(--primary);
}

.section--white .region-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 87, 156, 0.12);
}

.section--white .region-card h3 {
  color: var(--primary);
}

.section--white .region-card p {
  color: #2a2a3e;
}

.section--white .notice-item {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 87, 156, 0.12);
  border-left: 4px solid var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.section--white .notice-item h3 {
  color: #003366;
}

.section--white .notice-item p {
  color: #2a2a3e;
}

.section--white .notice-item .notice-date {
  color: var(--primary);
}

.section--white .team-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 87, 156, 0.12);
}

.section--white .team-card h3 {
  color: var(--primary);
}

.section--white .team-card p {
  color: #2a2a3e;
}

.section--white .mttnh-region {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 87, 156, 0.12);
}

.section--white .mttnh-region h4 {
  color: var(--primary);
}

.section--white .subcommittee-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 87, 156, 0.12);
}

.section--white .subcommittee-card h4 {
  color: var(--primary);
}

.section--white .subcommittee-card p {
  color: #2a2a3e;
}

.section--white .reach-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 87, 156, 0.12);
}

.section--white .reach-label {
  color: #2a2a3e;
}

.section--white .reach-card--wide .reach-label {
  color: #2a2a3e;
}

.section--white .reach-number,
.section--white .reach-card--wide .reach-number {
  color: var(--primary);
}

.section--white .form-group label {
  color: #1a1a2e;
}

.section--white .strategy-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 87, 156, 0.12);
  border-top: 2px solid var(--primary);
}

.section--white .strategy-card h3 {
  color: var(--primary);
}

.section--white .strategy-card p,
.section--white .strategy-card li {
  color: #2a2a3e;
}

.section--white .strategy-card__icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.section--white .strategy-measures li {
  color: #2a2a3e;
}

.section--white .core-value-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 87, 156, 0.12);
}

.section--white .core-value-card h3 {
  color: var(--primary);
}

.section--white .core-value-card p {
  color: #2a2a3e;
}

.section--white .core-value-icon {
  color: var(--primary);
}

.about-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.about-link-card {
  display: block;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 87, 156, 0.15);
  border-top: 3px solid var(--primary);
  border-radius: 16px;
  padding: 40px 30px;
  text-decoration: none;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.about-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 87, 156, 0.15);
  border-top-color: var(--accent-light);
}

.about-link-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.about-link-card p {
  color: #3a3a50;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.about-link-arrow {
  display: inline-block;
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.about-link-card:hover .about-link-arrow {
  transform: translateX(6px);
  color: var(--accent-light);
}

@media (max-width: 600px) {
  .about-links-grid {
    grid-template-columns: 1fr;
  }
}

.section--white .motif-accent-line {
  background: var(--primary);
}

.motif-border-top {
  border-top: 4px solid var(--gold);
}

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

.motif-accent-line {
  width: 60px;
  height: 4px;
  background: rgba(255,255,255,0.5);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.purpose-card .motif-accent-line {
  margin: 0 auto 16px;
}

.motif-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 24px 16px;
  background: rgba(0, 65, 120, 0.25);
  border-top: 1px solid rgba(255,209,0,0.2);
  border-bottom: 1px solid rgba(255,209,0,0.2);
  flex-wrap: wrap;
  overflow: hidden;
}

.motif-strip svg {
  width: 32px;
  height: 32px;
  fill: var(--primary);
  opacity: 0.25;
}

.motif-strip svg:nth-child(odd) {
  opacity: 0.4;
}

.motif-strip svg:nth-child(3n) {
  width: 40px;
  height: 40px;
  fill: var(--gold-dark);
  opacity: 0.6;
}

.page-hero .motif-strip-inline {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  opacity: 0.5;
}

.page-hero .motif-strip-inline svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
  opacity: 0.4;
}

.value-item .motif-icon {
  flex: 0 0 auto;
}

.value-item .motif-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--primary);
}

@media (max-width: 768px) {
  .motif-strip {
    gap: 12px;
    padding: 16px 12px;
  }
  .motif-strip svg {
    width: 20px;
    height: 20px;
  }
  .motif-strip svg:nth-child(3n) {
    width: 26px;
    height: 26px;
  }
  .purpose-card .motif-icon svg {
    width: 44px;
    height: 44px;
  }
  .page-hero .motif-strip-inline {
    gap: 10px;
  }
  .page-hero .motif-strip-inline svg {
    width: 18px;
    height: 18px;
  }
}

/* ========================================
   CULTURAL MOTIF - STATIC IMAGE BANNER
   ======================================== */

.cultural-motif-banner {
  width: 100%;
  height: 56px;
  background-image: url('/assets/images/cultural-motif-banner.png');
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: left center;
  opacity: 0;
  transform: scaleX(0.92);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.cultural-motif-banner.motif-visible {
  opacity: 1;
  transform: scaleX(1);
}

.cultural-motif-banner--tall {
  height: 72px;
}

.hero-with-motif {
  position: relative;
  overflow: hidden;
}

.section-motif-bg {
  position: relative;
}

.section-motif-bg > .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .cultural-motif-banner {
    height: 40px;
  }
  .cultural-motif-banner--tall {
    height: 52px;
  }
}

@media (max-width: 480px) {
  .cultural-motif-banner {
    height: 32px;
  }
  .cultural-motif-banner--tall {
    height: 40px;
  }
  .core-values-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cultural-motif-banner {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ========================================
   FOUNDING STORY
   ======================================== */
.founding-story__content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: start;
}

.founding-story__portrait {
  text-align: center;
}

.founding-story__portrait img {
  width: 280px;
  height: 340px;
  object-fit: cover;
  border-radius: 16px;
  border: 3px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.founding-story__caption {
  margin-top: 16px;
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.founding-story__caption span {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
  margin-top: 4px;
}

.founding-story__text p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.founding-quote {
  background: rgba(255, 255, 255, 0.04);
  border-left: 4px solid rgba(255,255,255,0.5);
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
}

.founding-quote i {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  margin: 0 4px;
}

.founding-quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
}

.founding-story__highlight {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 24px 30px;
}

.founding-story__highlight i {
  color: #fff;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.founding-story__highlight p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   DID YOU KNOW CALLOUT
   ======================================== */
.about-did-you-know {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(0, 65, 120, 0.3);
  border: 1px solid rgba(0, 87, 156, 0.2);
  border-radius: 12px;
}

.about-did-you-know__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.3rem;
}

.about-did-you-know strong {
  display: block;
  font-family: var(--font-condensed);
  font-size: 1rem;
  color: #fff;
  margin-bottom: 6px;
}

.about-did-you-know p {
  color: var(--text);
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.about-did-you-know small {
  color: var(--text-light);
  font-size: 0.8rem;
  font-style: italic;
}

/* ========================================
   WHY IT MATTERS GRID
   ======================================== */
.why-matters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-matters-card {
  background: rgba(0, 65, 120, 0.35);
  border: 1px solid rgba(0,87,156,0.2);
  border-radius: 16px;
  padding: 36px 30px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-top: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}

.why-matters-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,87,156,0.3);
  box-shadow: 0 12px 40px rgba(0, 87, 156, 0.2);
}

.why-matters-stat {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.why-matters-card p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.why-matters-card small {
  color: var(--text-light);
  font-size: 0.78rem;
  font-style: italic;
}

.why-matters-card cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

.why-matters-card--quote {
  text-align: left;
}

.why-matters-card--quote p {
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.7;
}

/* ========================================
   OUR REACH GRID
   ======================================== */
.reach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.reach-card {
  text-align: center;
  padding: 36px 20px;
  background: rgba(0, 65, 120, 0.35);
  border: 1px solid rgba(0,87,156,0.2);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-top: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.reach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 87, 156, 0.2);
}

.reach-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.reach-label {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reach-card--wide {
  grid-column: span 4;
  background: rgba(0, 70, 130, 0.25);
  border-top: 2px solid rgba(255,255,255,0.5);
}

.reach-card--wide .reach-number {
  color: #fff;
  font-size: 3.5rem;
}

.reach-card--wide .reach-label {
  color: var(--text);
  font-size: 1.1rem;
}

.reach-detail {
  color: var(--text-light);
  font-size: 0.9rem;
  max-width: 700px;
  margin: 12px auto 0;
  line-height: 1.6;
}

/* ========================================
   BUILDING ON SUCCESS GRID
   ======================================== */
.success-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.success-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 32px 28px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-top: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
}

.success-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 12px 40px rgba(0, 87, 156, 0.2);
}

.success-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff 0%, #e0e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.2rem;
  color: var(--primary);
}

.success-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 14px;
}

.success-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
}

.success-card ul li {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.5;
  padding: 6px 0 6px 20px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.success-card ul li:last-child {
  border-bottom: none;
}

.success-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
}

.success-card small {
  display: block;
  color: var(--gray);
  font-size: 0.75rem;
  font-style: italic;
  margin-top: 8px;
}

/* ========================================
   MTTA TEAM GRID
   ======================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-group {
  text-align: center;
  padding: 32px 24px;
  background: rgba(0, 65, 120, 0.35);
  border: 1px solid rgba(0,87,156,0.2);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-top: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}

.team-group h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
}

.team-group h3 i {
  color: rgba(255,255,255,0.7);
  margin-right: 8px;
}

.team-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.team-member {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 500;
}

.team-leadership {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 60px;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 24px 22px;
  background: rgba(0, 65, 120, 0.35);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 87, 156, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 180px;
  backdrop-filter: blur(10px);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 87, 156, 0.3);
}

.team-leadership .team-card {
  min-width: 220px;
}

.team-card-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 3px solid rgba(100, 180, 255, 0.5);
  box-shadow: 0 0 12px rgba(0, 140, 255, 0.25), 0 0 30px rgba(0, 120, 220, 0.12), 0 4px 20px rgba(0, 0, 0, 0.15);
}

.team-leadership .team-card-photo {
  width: 180px;
  height: 180px;
  border-width: 4px;
  box-shadow: 0 0 16px rgba(0, 140, 255, 0.3), 0 0 40px rgba(0, 120, 220, 0.15), 0 4px 20px rgba(0, 0, 0, 0.15);
}

.team-card-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  color: var(--white);
  margin: 0;
}

.team-card-role {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-light);
  margin-top: -6px;
}

.team-departments {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.team-dept-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary);
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.team-dept-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
}

.team-dept-members {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.subcommittee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.subcommittee-card {
  text-align: center;
  padding: 28px 20px;
  background: rgba(0, 65, 120, 0.35);
  border: 1px solid rgba(0,87,156,0.2);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  border-left: 4px solid rgba(255,255,255,0.5);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.subcommittee-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 87, 156, 0.2);
}

.subcommittee-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff 0%, #e0e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.1rem;
  color: var(--primary);
}

.subcommittee-card h4 {
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 10px;
}

.subcommittee-card p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 2px;
}

/* ========================================
   MTTNH REGIONS
   ======================================== */
.mttnh-regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mttnh-region {
  text-align: center;
  padding: 32px 20px;
  background: rgba(0, 65, 120, 0.35);
  border: 1px solid rgba(0,87,156,0.2);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  backdrop-filter: blur(10px);
  border-bottom: 4px solid var(--primary);
}

.mttnh-region:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.mttnh-region img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 16px;
}

.mttnh-region h4 {
  font-family: var(--font-condensed);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.mttnh-region__tag {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 14px;
  background: #fff;
  color: var(--primary);
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
}

/* ========================================
   ABOUT MTTA SPLIT LAYOUT
   ======================================== */
.about-mtta-split {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 50px;
  align-items: start;
}

.about-mtta-main h2 {
  color: var(--white);
}

.about-mtta-main p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-purpose-block {
  margin-top: 30px;
  padding: 28px 30px;
  background: rgba(0, 65, 120, 0.35);
  border: 1px solid rgba(0,87,156,0.2);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  border-left: 4px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}

.about-purpose-block h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
}

.about-purpose-block p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.about-mtta-sidebar .about-did-you-know {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 24px;
}

.about-mtta-sidebar .about-did-you-know strong {
  color: #fff;
  font-size: 1.1rem;
}

.about-mtta-sidebar .about-did-you-know p {
  color: var(--text);
}

.about-mtta-sidebar .about-did-you-know small {
  color: var(--gray);
}

.about-mtta-sidebar .about-did-you-know__icon {
  background: #fff;
  color: var(--primary-dark);
}

/* ========================================
   RESPONSIVE - NEW SECTIONS
   ======================================== */
@media (max-width: 768px) {
  .founding-story__content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .founding-story__portrait {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .founding-story__portrait img {
    width: 200px;
    height: 260px;
  }
  .why-matters-grid {
    grid-template-columns: 1fr;
  }
  .reach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reach-card--wide {
    grid-column: span 2;
  }
  .success-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-leadership {
    gap: 30px;
  }
  .team-leadership .team-card-photo {
    width: 140px;
    height: 140px;
  }
  .team-dept-members {
    gap: 20px;
  }
  .team-card-photo {
    width: 120px;
    height: 120px;
  }
  .subcommittee-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mttnh-regions {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-mtta-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .reach-grid {
    grid-template-columns: 1fr;
  }
  .reach-card--wide {
    grid-column: span 1;
  }
  .success-grid {
    grid-template-columns: 1fr;
  }
  .subcommittee-grid {
    grid-template-columns: 1fr;
  }
  .founding-story__highlight {
    flex-direction: column;
    text-align: center;
  }
  .why-matters-stat {
    font-size: 2.5rem;
  }
  .mttnh-regions {
    grid-template-columns: 1fr;
  }
}

.watermark-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.watermark-logo {
  position: absolute;
  width: 200px;
  height: 200px;
  background: url('../images/mtta-watermark-logo.png') center/contain no-repeat;
  opacity: 0;
  pointer-events: none;
  animation: watermarkFloat 25s ease-in-out infinite, watermarkFadeIn 3s ease-out forwards;
}

@keyframes watermarkFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  25% { transform: translate(10px, -15px) rotate(5deg) scale(1.03); }
  50% { transform: translate(-8px, 10px) rotate(-3deg) scale(0.97); }
  75% { transform: translate(12px, 8px) rotate(4deg) scale(1.02); }
}

@keyframes watermarkFadeIn {
  0% { opacity: 0; filter: blur(10px); }
  100% { opacity: var(--wm-opacity, 0.03); filter: blur(0px); }
}

.section, .page-hero, .site-footer, .newsletter-cta {
  position: relative;
  z-index: 1;
}

.proverb-banner {
  position: relative;
  padding: 80px 24px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 45, 85, 0.97) 0%, rgba(0, 70, 130, 0.92) 50%, rgba(0, 45, 85, 0.97) 100%);
  overflow: hidden;
}

.proverb-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 209, 0, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(0, 128, 212, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.proverb-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--accent-light) 70%, transparent 100%);
  opacity: 0.5;
}

.proverb-banner__bottom-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--accent-light) 70%, transparent 100%);
  opacity: 0.5;
}

.proverb-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.proverb-banner__tokelauan {
  font-size: 1.55rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  line-height: 1.5;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.proverb-banner__english {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 24px;
  opacity: 0.9;
}

.proverb-banner__meaning {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

.proverb-banner__motif {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.proverb-banner__motif span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.4;
}

.proverb-banner__motif span:nth-child(2) {
  opacity: 0.7;
}

.proverb-banner__motif span:nth-child(3) {
  opacity: 1;
  width: 8px;
  height: 8px;
}

.proverb-banner__motif span:nth-child(4) {
  opacity: 0.7;
}

.proverb-banner__motif span:nth-child(5) {
  opacity: 0.4;
}

@media (max-width: 768px) {
  .proverb-banner {
    padding: 56px 20px;
  }

  .proverb-banner__tokelauan {
    font-size: 1.25rem;
  }

  .proverb-banner__english {
    font-size: 1.05rem;
  }
}

.storytelling-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.story-card {
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 209, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.story-card__image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.story-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story-card:hover .story-card__image img {
  transform: scale(1.06);
}

.story-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.story-card__badge--elder {
  background: linear-gradient(135deg, #fff, #e0e8f0);
  color: var(--primary-dark);
}

.story-card__badge--youth {
  background: linear-gradient(135deg, #00b4d8, #0077b6);
  color: #fff;
}

.story-card__badge--culture {
  background: linear-gradient(135deg, #2d6a4f, #40916c);
  color: #fff;
}

.story-card__badge--community {
  background: linear-gradient(135deg, #e07a5f, #c1440e);
  color: #fff;
}

.story-card__body {
  padding: 24px 24px 28px;
}

.story-card__body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.35;
}

.story-card__body .story-card__excerpt {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

.story-card__body .story-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.story-card__author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.story-card__author-info {
  display: flex;
  flex-direction: column;
}

.story-card__author-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
}

.story-card__author-role {
  font-size: 0.72rem;
  color: var(--text-light);
}

.story-card__quote {
  position: relative;
  padding: 24px 24px 20px;
  background: rgba(0, 87, 156, 0.15);
  border-left: 3px solid rgba(255,255,255,0.4);
}

.story-card__quote p {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

.story-card__quote::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  left: 12px;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.5);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.storytelling-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
  margin-bottom: 48px;
}

.storytelling-featured .story-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 209, 0, 0.1);
}

.story-card--featured .story-card__image {
  height: 100%;
  min-height: 360px;
}

.story-card--featured .story-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 36px;
}

.story-card--featured .story-card__body h3 {
  font-size: 1.45rem;
  margin-bottom: 14px;
}

.story-card--featured .story-card__excerpt {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .storytelling-grid {
    grid-template-columns: 1fr;
  }

  .storytelling-featured {
    grid-template-columns: 1fr;
  }

  .storytelling-featured .story-card--featured {
    grid-template-columns: 1fr;
  }

  .story-card--featured .story-card__image {
    min-height: 220px;
  }
}

@supports (-webkit-touch-callout: none) {
  body {
    background-attachment: scroll;
  }
  .section--white {
    background-attachment: scroll;
  }
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }

  .section--white {
    background-attachment: scroll;
  }

  .header-inner {
    padding: 8px 16px;
  }

  .logo-text span {
    display: none;
  }

  .section {
    padding: 60px 0;
  }

  .page-hero {
    min-height: 50vh;
  }

  .proverb-banner {
    padding: 50px 16px;
  }

  .proverb-banner__tokelauan {
    font-size: 1.15rem;
  }

  .proverb-banner__english {
    font-size: 0.95rem;
  }

  .proverb-banner__meaning {
    font-size: 0.85rem;
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline {
    min-height: 44px;
    padding: 12px 24px;
  }

  .contact-info .icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .team-leadership {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 6px 12px;
  }

  .logo img {
    width: 36px;
    height: 36px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .section {
    padding: 40px 0;
  }

  .container {
    padding: 0 16px;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .page-hero h1 {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .proverb-banner {
    padding: 36px 14px;
  }

  .proverb-banner__tokelauan {
    font-size: 1.05rem;
  }

  .reach-number {
    font-size: 2rem;
  }

  .why-matters-stat {
    font-size: 2rem;
  }

  .team-leadership {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .team-leadership .team-card {
    min-width: unset;
    width: 100%;
    max-width: 280px;
  }

  .team-leadership .team-card-photo {
    width: 120px;
    height: 120px;
  }

  .team-card {
    min-width: unset;
  }

  .team-card-photo {
    width: 100px;
    height: 100px;
  }

  .purpose-card {
    padding: 24px 18px;
  }

  .story-card__body {
    padding: 16px;
  }

  .story-card__image {
    height: 180px;
  }

  .futuristic-divider {
    margin: 0;
    padding: 16px 0;
  }

  .cultural-motif-banner {
    height: 40px;
  }

  .footer-bottom {
    font-size: 0.8rem;
    padding: 16px 0;
  }
}

@media (max-width: 360px) {
  .logo-text {
    font-size: 0.95rem;
  }

  .page-hero h1 {
    font-size: 1.3rem;
    letter-spacing: 1px;
  }

  .section-header h2 {
    font-size: 1.3rem;
  }

  .team-dept-members {
    flex-direction: column;
    align-items: center;
  }

  .team-card {
    width: 100%;
    max-width: 240px;
  }
}

@supports (padding: env(safe-area-inset-bottom)) {
  .site-header {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  .site-footer {
    padding-bottom: env(safe-area-inset-bottom);
  }
}
