/* Naas Indian Community — unique brand (green + gold) */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Source+Sans+3:wght@400;500;600&display=swap');

:root {
  --primary: #0F2E22;
  --primary-light: #1B4D3E;
  --secondary: #F2F6F4;
  --accent: #C9A227;
  --accent-green: #2D6A4F;
  --text: #5C6B63;
  --white: #FFFFFF;
  --black: #000000;
  --divider: rgba(15, 46, 34, 0.1);
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --container: 1320px;
  --radius: 10px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent);
  color: var(--white);
  padding: 8px 16px;
  z-index: 9999;
}
.skip-link:focus { top: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 20px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 70px 0; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(2, 13, 25, 0.06);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(2, 13, 25, 0.1); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(145deg, var(--primary-light), var(--accent-green));
  border-radius: 10px;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
  line-height: 1.2;
}
.logo-text span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.logo-motto {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--primary);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--accent); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 75px;
  background: var(--primary);
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 0;
  transform: scale(1.05);
  transition: opacity 3s cubic-bezier(0.45, 0.05, 0.25, 1);
  will-change: opacity;
}
.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}
.hero-slide.is-exiting {
  opacity: 0;
  z-index: 2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(15, 46, 34, 0.72) 0%, rgba(27, 77, 62, 0.55) 50%, rgba(15, 46, 34, 0.65) 100%);
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; transform: scale(1.05); }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 80px 0;
}
.hero .section-label { color: var(--accent); }
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero h1 .hero-accent {
  color: var(--accent);
  display: block;
}
.hero-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 600px;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-stats {
  position: absolute;
  bottom: 60px;
  right: 5%;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.hero-stats .counter { font-family: var(--font-heading); font-size: 48px; font-weight: 800; color: var(--accent); line-height: 1; }
.hero-stats .counter-label { font-family: var(--font-heading); font-size: 14px; font-weight: 600; color: var(--primary); margin-top: 8px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.about-image img { width: 100%; height: 500px; object-fit: cover; }

/* India → Naas journey visualization */
.journey-viz {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 500px;
  background: var(--secondary);
  border: 1px solid var(--divider);
  box-shadow: 0 20px 55px rgba(15, 46, 34, 0.09);
  isolation: isolate;
}

/* Layer 1 — background image only */
.journey-viz-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.journey-viz-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.04);
  animation: journey-bg-zoom 24s ease-in-out infinite alternate;
}
.journey-viz-backdrop::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
  pointer-events: none;
}
@keyframes journey-bg-zoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}

/* Layer 2 — animation, pins, caption on top */
.journey-viz-stage {
  position: relative;
  z-index: 2;
  min-height: 500px;
  pointer-events: none;
}
.journey-viz-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 78%, rgba(255, 153, 51, 0.08) 0%, transparent 42%),
    radial-gradient(circle at 82% 72%, rgba(22, 155, 98, 0.1) 0%, transparent 42%);
  pointer-events: none;
}

.journey-svg {
  display: block;
  width: 100%;
  height: 500px;
  position: relative;
  z-index: 1;
}
.journey-path-bg {
  fill: none;
  stroke: rgba(15, 46, 34, 0.07);
  stroke-width: 3;
  stroke-linecap: round;
}
.journey-path {
  fill: none;
  stroke: url(#journeyGrad);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 480;
  stroke-dashoffset: 480;
  filter: url(#journeyGlow);
}
.journey-viz.is-visible .journey-path {
  animation: journey-draw 2.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes journey-draw {
  to { stroke-dashoffset: 0; }
}
.journey-plane {
  opacity: 0;
  transition: opacity 0.4s ease 1.8s;
}
.journey-viz.is-visible .journey-plane {
  opacity: 1;
}
.journey-plane-ring {
  fill: var(--accent);
  opacity: 0.3;
  transform-box: fill-box;
  transform-origin: center;
  animation: journey-ring 2.4s ease-out infinite;
}
@keyframes journey-ring {
  0% { transform: scale(1); opacity: 0.35; }
  100% { transform: scale(2.2); opacity: 0; }
}
.journey-plane-core {
  fill: var(--accent);
  stroke: var(--white);
  stroke-width: 2;
}
.journey-plane-icon {
  fill: var(--white);
  font-size: 11px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-anchor: middle;
  dominant-baseline: central;
}
.journey-endpoint {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(14px) scale(0.95);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.journey-endpoint--origin { left: 6%; bottom: 14%; }
.journey-endpoint--dest { right: 6%; bottom: 18%; }
.journey-viz.is-visible .journey-endpoint--origin {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.15s;
}
.journey-viz.is-visible .journey-endpoint--dest {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.55s;
}
.journey-node {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 28px rgba(15, 46, 34, 0.14);
  border: 3px solid #e8850c;
  position: relative;
}
.journey-node--dest { border-color: #169b62; }
.journey-node-flag {
  position: absolute;
  bottom: -2px;
  right: -2px;
  font-size: 17px;
  line-height: 1;
  background: var(--white);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.journey-place {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--primary);
  display: block;
  text-align: center;
  line-height: 1.2;
}
.journey-country {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  text-align: center;
}
.journey-caption {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(10px);
  z-index: 4;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid var(--divider);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.6s ease 1.2s, transform 0.6s ease 1.2s;
}
.journey-viz.is-visible .journey-caption {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.journey-viz .about-image-badge {
  z-index: 5;
}
@media (prefers-reduced-motion: reduce) {
  .journey-path { stroke-dashoffset: 0; animation: none; }
  .journey-plane { opacity: 1; transition: none; }
  .journey-endpoint { opacity: 1; transform: none; transition: none; }
  .journey-caption { opacity: 1; transition: none; }
  .journey-plane-ring { animation: none; display: none; }
  .journey-viz-bg { animation: none; transform: scale(1.04); }
}

.about-image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--accent);
  color: var(--white);
  padding: 20px 30px;
  border-radius: var(--radius);
  text-align: center;
}
.about-image-badge .num { font-family: var(--font-heading); font-size: 36px; font-weight: 800; }
.about-image-badge .label { font-size: 13px; font-weight: 500; }

.values-list { margin-top: 30px; }
.values-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--primary);
  border-bottom: 1px solid var(--divider);
}
.values-list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: rgba(255, 109, 0, 0.12);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.events-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.event-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}
.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.event-card:hover img { transform: scale(1.08); }
.event-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 13, 25, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.event-card-overlay span {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
}

.what-we-do { background: var(--secondary); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: var(--transition);
  border: 1px solid var(--divider);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(2, 13, 25, 0.08);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 109, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.4;
}
.service-card p { font-size: 15px; }

.charity-section { background: var(--primary); color: var(--white); }
.charity-section .section-label { color: var(--accent); }
.charity-section .section-title { color: var(--white); }
.charity-intro { color: rgba(255, 255, 255, 0.7); max-width: 600px; margin-bottom: 50px; }
.charity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.charity-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: var(--transition);
}
.charity-card:hover { background: rgba(255, 255, 255, 0.1); }
.charity-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.charity-card p { color: rgba(255, 255, 255, 0.65); margin-bottom: 20px; font-size: 15px; }
.charity-card a {
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
}
.charity-card a:hover { color: var(--white); }

.join-section { background: var(--secondary); }
.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.join-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--primary);
  font-size: 16px;
}
.join-list li::before {
  content: '→';
  color: var(--accent);
  font-weight: 700;
}
.join-image {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.join-image img { width: 100%; height: 450px; object-fit: cover; }
.join-counter {
  position: absolute;
  top: 30px;
  right: 30px;
  background: var(--accent);
  color: var(--white);
  padding: 24px 32px;
  border-radius: var(--radius);
  text-align: center;
}
.join-counter .num { font-family: var(--font-heading); font-size: 42px; font-weight: 800; }

.marquee-section {
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  padding: 20px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.marquee-item::after {
  content: '·';
  font-size: 20px;
  opacity: 0.5;
  color: var(--accent);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}
.feature-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.feature-header h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}
.feature-percent {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
}
.progress-bar {
  height: 6px;
  background: var(--secondary);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 16px;
}
.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  width: 0;
  transition: width 1.5s ease;
}
.feature-item p { font-size: 15px; }

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.sponsor-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  border: 1px solid var(--divider);
  transition: var(--transition);
}
.sponsor-item:hover {
  box-shadow: 0 10px 30px rgba(15, 46, 34, 0.1);
  transform: translateY(-3px);
}
.sponsor-item img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.sponsor-placeholder {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--divider);
  background: var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item--video {
  aspect-ratio: 16 / 9;
  cursor: default;
  background: var(--primary);
}
.gallery-item.hidden { display: none; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: #0a1f18;
}
.gallery-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.gallery-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item--video:hover .gallery-video-thumb { transform: scale(1.05); }
.gallery-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(15, 46, 34, 0.4);
  cursor: pointer;
  transition: background var(--transition);
}
.gallery-play-btn:hover { background: rgba(15, 46, 34, 0.55); }
.gallery-play-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  padding-left: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition);
}
.gallery-play-btn:hover .gallery-play-icon { transform: scale(1.08); }
.gallery-item.is-playing .gallery-tag { z-index: 2; }
.gallery-tag--video { background: var(--primary); }
.gallery-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--accent);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
}

/* News & Publications section */
.news-section {
  background: var(--white);
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.news-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 10px;
}
.news-subtitle {
  font-size: 16px;
  color: var(--text);
  max-width: 520px;
  line-height: 1.6;
}
.btn-news-more {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  border-radius: 6px;
  border: none;
  flex-shrink: 0;
  transition: var(--transition);
}
.btn-news-more:hover {
  background: var(--primary);
  color: var(--white);
}

.news-grid,
.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card,
.update-card {
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(15, 46, 34, 0.08);
  border: none;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover,
.update-card:hover {
  box-shadow: 0 16px 40px rgba(15, 46, 34, 0.12);
  transform: translateY(-4px);
}

.news-card-image {
  position: relative;
  overflow: hidden;
}
.news-card-image img,
.update-card > img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card-image img { transform: scale(1.04); }

.news-date-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  line-height: 1.2;
}

.news-card-body,
.update-card-body {
  padding: 22px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-meta {
  font-size: 14px;
  color: #7a8f96;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.news-meta-icon {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 4px;
}

.news-card h3,
.update-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.35;
}

.news-read-more,
.update-card .read-more {
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.news-read-more span,
.update-card .read-more span { transition: transform 0.2s ease; }
.news-read-more:hover,
.update-card .read-more:hover {
  color: var(--accent-green);
}
.news-read-more:hover span,
.update-card .read-more:hover span { transform: translateX(4px); }

/* Hide old date style when using badge layout */
.update-card-body .update-date { display: none; }

.news-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.news-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d8e0dc;
  border: none;
  padding: 0;
  cursor: default;
}
.news-dot.active {
  background: var(--accent);
}

.site-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text span { color: rgba(255, 255, 255, 0.5); }
.footer-brand .logo-motto { color: rgba(201, 162, 39, 0.8); }
.footer-brand p { margin-top: 20px; font-size: 15px; }
.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--accent);
  font-weight: 500;
}
.footer-email:hover { color: var(--white); }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 15px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--accent); }
.social-links { display: flex; gap: 12px; margin-top: 8px; }
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  padding: 0;
}
.social-links a:hover { background: var(--accent); }
.footer-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.footer-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}
.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
}

.page-hero {
  background: var(--primary);
  padding: 160px 0 80px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { color: var(--white); }

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.mission-card {
  background: var(--secondary);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
}
.mission-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 20px;
  border: 1px solid var(--divider);
  transition: var(--transition);
}
.team-card:hover { box-shadow: 0 15px 40px rgba(2, 13, 25, 0.08); }
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 16px;
  object-fit: cover;
  background: var(--secondary);
}
.team-card h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}
.team-card p { font-size: 13px; color: var(--accent); font-weight: 500; margin-top: 4px; }

/* Committee / Board members */
.committee-panel {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
  scroll-margin-top: 75px;
}
.committee-panel-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.committee-panel-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.committee-panel-head {
  text-align: center;
  margin-bottom: clamp(32px, 5vh, 56px);
}
.committee-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.committee-panel-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}
.committee-desc {
  max-width: 560px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.65;
  opacity: 0.88;
}

/* Office Bearers — large, dark hero panel */
.committee-panel--bearers {
  background: linear-gradient(145deg, #0a2419 0%, var(--primary) 40%, var(--primary-light) 100%);
  color: var(--white);
}
.committee-panel--bearers .committee-panel-bg::before,
.committee-panel--bearers .committee-panel-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.committee-panel--bearers .committee-panel-bg::before {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: -100px;
  right: -80px;
}
.committee-panel--bearers .committee-panel-bg::after {
  width: 300px;
  height: 300px;
  background: var(--accent-green);
  bottom: -60px;
  left: -60px;
}
.committee-panel--bearers .committee-eyebrow { color: var(--accent); }
.committee-panel--bearers .committee-desc { color: rgba(255, 255, 255, 0.75); }

.committee-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.committee-grid--bearers { gap: 36px 32px; }
.committee-grid--executive { gap: 24px 20px; max-width: 920px; }

.committee-member {
  text-align: center;
  transition: transform 0.35s ease;
}
.committee-member:hover { transform: translateY(-6px); }

.committee-grid--bearers .committee-member { width: 220px; }
.committee-grid--executive .committee-member { width: 140px; }

.committee-photo {
  position: relative;
  margin: 0 auto 16px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--accent), var(--accent-green));
}
.committee-grid--bearers .committee-photo {
  width: 168px;
  height: 168px;
}
.committee-grid--executive .committee-photo {
  width: 96px;
  height: 96px;
  padding: 3px;
  margin-bottom: 12px;
}
.committee-photo-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  border: 3px solid rgba(255, 255, 255, 0.9);
}
.committee-grid--executive .committee-photo-inner {
  border-width: 2px;
}
.committee-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.committee-member:hover .committee-photo img { transform: scale(1.06); }

.committee-name {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}
.committee-grid--bearers .committee-name {
  font-size: 19px;
  color: var(--white);
}
.committee-grid--executive .committee-name {
  font-size: 14px;
  color: var(--primary);
}

.committee-role {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 50px;
  line-height: 1.2;
}
.committee-grid--bearers .committee-role {
  font-size: 13px;
  padding: 6px 16px;
  background: rgba(201, 162, 39, 0.2);
  color: var(--accent);
  border: 1px solid rgba(201, 162, 39, 0.35);
}
.committee-grid--executive .committee-role {
  font-size: 11px;
  padding: 4px 12px;
  background: rgba(15, 46, 34, 0.06);
  color: var(--accent-green);
}

/* Executive panel — lighter, compact */
.committee-panel--executive {
  background: linear-gradient(180deg, #FAF6E8 0%, #F0E6C4 50%, #E8DFB8 100%);
  color: var(--primary);
}
.committee-panel--executive .committee-panel-head {
  margin-bottom: clamp(20px, 3vh, 32px);
}
.committee-panel--executive .committee-panel-head h2 {
  font-size: clamp(24px, 3.5vw, 36px);
}
.committee-grid--executive .committee-photo {
  width: 88px;
  height: 88px;
}
.committee-grid--executive .committee-member {
  width: 128px;
}
.committee-panel--executive .committee-desc { color: var(--text); }
.committee-panel--executive .committee-panel-head h2 { color: var(--primary); }

.committee-cta {
  text-align: center;
  margin-top: clamp(28px, 4vh, 44px);
}
.committee-cta p { margin-bottom: 16px; color: var(--primary); font-size: 15px; }

/* Embedded preview on About page (not full screen) */
.committee-panel--preview {
  min-height: auto;
  padding: 80px 0;
  background: linear-gradient(145deg, #0a2419 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: var(--white);
}
.committee-panel--preview .committee-eyebrow { color: var(--accent); }
.committee-panel--preview .committee-desc { color: rgba(255, 255, 255, 0.75); }
.committee-panel--preview .committee-panel-head h2 { color: var(--white); }

/* Homepage committee — compact, not full viewport */
.committee-panel--home {
  min-height: auto;
  padding: 80px 0 70px;
}

.faq-list { max-width: 800px; margin: 50px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--divider);
  padding: 20px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--primary);
  gap: 16px;
}
.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--accent);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text);
  font-size: 15px;
}
.faq-item.open .faq-answer { max-height: 200px; padding-top: 12px; }

.form-section { background: var(--secondary); }
.membership-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 50px;
  border: 1px solid var(--divider);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--divider);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--primary);
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 109, 0, 0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}
.form-checkbox input { margin-top: 4px; accent-color: var(--accent); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}
.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 109, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.events-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.event-list-card {
  display: flex;
  gap: 24px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--divider);
  transition: var(--transition);
}
.event-list-card:hover { box-shadow: 0 15px 40px rgba(2, 13, 25, 0.08); }
.event-list-card img { width: 200px; object-fit: cover; flex-shrink: 0; }
.event-list-body { padding: 24px 24px 24px 0; }
.event-list-date {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}
.event-list-body h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

/* Event Calendar — vertical timeline */
.page-hero--calendar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent-green) 100%);
}

.event-calendar-section {
  background: linear-gradient(180deg, #fafcfb 0%, var(--white) 35%, var(--secondary) 100%);
  position: relative;
  overflow: hidden;
}
.event-calendar-section::before {
  content: '';
  position: absolute;
  top: -5%;
  right: -8%;
  width: 45%;
  height: 50%;
  background: radial-gradient(circle, rgba(45, 106, 79, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.calendar-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
}
.calendar-intro {
  max-width: 480px;
  margin-top: 8px;
}

.calendar-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.calendar-filter-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid var(--divider);
  background: var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.calendar-filter-btn:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
  transform: translateY(-2px);
}
.calendar-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(15, 46, 34, 0.2);
}

.event-timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding-bottom: 20px;
}
.event-timeline-track {
  position: absolute;
  left: 52px;
  top: 24px;
  bottom: 24px;
  width: 3px;
  background: rgba(15, 46, 34, 0.08);
  border-radius: 3px;
  overflow: hidden;
}
.event-timeline-track-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--accent-green), var(--accent));
  border-radius: 3px;
  transition: height 0.15s ease-out;
}

.timeline-month {
  position: relative;
  margin-bottom: 52px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.timeline-month.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-month-marker {
  position: absolute;
  left: 28px;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-green), var(--primary));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(45, 106, 79, 0.35);
  z-index: 2;
  transform: scale(0.6);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}
.timeline-month.is-visible .timeline-month-marker {
  transform: scale(1);
  opacity: 1;
}

.timeline-month-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
  padding-left: 100px;
}
.timeline-month-header h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}
.timeline-month-count {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.timeline-event {
  position: relative;
  margin-bottom: 18px;
  padding-left: 100px;
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.timeline-event.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.timeline-event.is-hidden {
  display: none;
}

.timeline-date-node {
  position: absolute;
  left: 34px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent-green);
  background: var(--white);
  padding: 5px 7px;
  border-radius: 5px;
  border: 1px solid var(--divider);
  z-index: 2;
  white-space: nowrap;
}

.timeline-card {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--divider);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 46, 34, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.timeline-card:hover {
  transform: translateY(-5px) translateX(6px);
  box-shadow: 0 18px 50px rgba(15, 46, 34, 0.12);
  border-color: rgba(45, 106, 79, 0.25);
}
.timeline-card--featured {
  border-color: rgba(220, 53, 69, 0.25);
  background: linear-gradient(90deg, #fff 0%, #fffaf9 100%);
}
.timeline-card--featured:hover {
  border-color: rgba(220, 53, 69, 0.4);
}

.timeline-card-date-col {
  flex-shrink: 0;
  width: 76px;
  background: linear-gradient(180deg, var(--secondary), rgba(242, 246, 244, 0.4));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 12px;
  border-right: 1px solid var(--divider);
}
.timeline-card-date-col .day {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.timeline-card-date-col .month-short {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-green);
  text-transform: uppercase;
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.timeline-card-body {
  flex: 1;
  padding: 22px 24px;
  min-width: 0;
}
.timeline-card-body h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  transition: color 0.3s ease;
}
.timeline-card:hover .timeline-card-body h4 { color: var(--accent-green); }
.timeline-card-body .event-date-full {
  font-size: 14px;
  color: var(--text);
}
.timeline-card-body .event-meta {
  font-size: 13px;
  color: var(--text);
  margin-top: 8px;
  opacity: 0.85;
}

.event-status {
  align-self: center;
  margin-right: 20px;
  padding: 8px 16px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.timeline-card:hover .event-status { transform: scale(1.06); }

.event-status--past {
  background: #e8ecea;
  color: #6b7c75;
}
.event-status--today {
  background: #dc3545;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(220, 53, 69, 0.35);
  animation: today-glow 2.5s ease-in-out infinite;
}
@keyframes today-glow {
  0%, 100% { box-shadow: 0 4px 16px rgba(220, 53, 69, 0.35); }
  50% { box-shadow: 0 4px 28px rgba(220, 53, 69, 0.55); }
}
.event-status--upcoming {
  background: rgba(45, 106, 79, 0.12);
  color: var(--accent-green);
}

/* Homepage calendar preview */
.event-calendar-preview {
  position: relative;
}
.event-calendar-preview.bg-secondary {
  background: var(--secondary);
}
.event-calendar-preview .calendar-preview-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.event-calendar-preview .event-timeline {
  max-width: 100%;
}
.event-calendar-preview .timeline-month {
  margin-bottom: 0;
  opacity: 1;
  transform: none;
}
.event-calendar-preview .timeline-event {
  opacity: 1;
  transform: none;
}
.event-calendar-preview .timeline-month-marker {
  transform: scale(1);
  opacity: 1;
}

.event-calendar-preview.bg-secondary {
  background: var(--secondary);
}

/* People / Member directory */
.people-section {
  padding-top: 80px;
  padding-bottom: 100px;
}
.people-directory {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--divider);
  box-shadow: 0 20px 60px rgba(15, 46, 34, 0.08);
  overflow: hidden;
}
.people-toolbar {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--divider);
  background: var(--white);
}
.people-search,
.people-location {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid var(--divider);
  border-radius: 10px;
  background: var(--white);
  min-height: 48px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.people-search:focus-within,
.people-location:focus-within {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.12);
}
.people-field-icon {
  color: var(--text);
  font-size: 16px;
  flex-shrink: 0;
  opacity: 0.7;
}
.people-search input {
  border: none;
  outline: none;
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--primary);
  background: transparent;
}
.people-search input::placeholder { color: #9aa8a2; }
.people-location select {
  border: none;
  outline: none;
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--primary);
  background: transparent;
  cursor: pointer;
}
.people-filters-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  min-height: 48px;
  border: 1px solid var(--divider);
  border-radius: 10px;
  background: var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}
.people-filters-btn:hover,
.people-filters-btn[aria-expanded="true"] {
  border-color: var(--accent-green);
  color: var(--accent-green);
}
.people-filters-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--divider);
  background: var(--secondary);
}
.people-filters-panel[hidden] { display: none; }
.people-filter-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 180px;
}
.people-filter-field span {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.people-filter-field select {
  padding: 10px 14px;
  border: 1px solid var(--divider);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--primary);
  background: var(--white);
}
.people-panel {
  display: grid;
  grid-template-columns: minmax(520px, 56%) 1fr;
  min-height: 600px;
}
.people-list-col {
  border-right: 1px solid var(--divider);
  display: flex;
  flex-direction: column;
  max-height: 600px;
  background: linear-gradient(180deg, var(--white) 0%, #fff9f5 100%);
}
.people-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--divider);
  background: var(--white);
  flex-shrink: 0;
}
.people-count {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}
.people-count strong { font-weight: 800; }
.people-sort {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text);
}
.people-sort > span {
  font-weight: 500;
}
.people-sort select {
  border: none;
  background: transparent;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  padding-right: 4px;
}
.people-list {
  overflow-y: auto;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 16px;
  align-content: start;
}
.people-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px 14px 16px;
  border: 1px solid var(--divider);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  min-height: 132px;
}
.people-card:hover,
.people-card.is-active {
  background: rgba(45, 106, 79, 0.07);
  border-color: var(--accent-green);
  box-shadow: 0 4px 16px rgba(45, 106, 79, 0.1);
}
.people-card-top {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding-right: 20px;
}
.people-card-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(15, 46, 34, 0.1);
}
.people-card-body { min-width: 0; flex: 1; }
.people-card-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  line-height: 1.3;
}
.people-card-meta {
  font-size: 12px;
  color: var(--text);
  line-height: 1.4;
}
.people-card-role {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.45;
  margin-top: auto;
}
.people-card-menu {
  position: absolute;
  top: 10px;
  right: 8px;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.45;
  border-radius: 6px;
  letter-spacing: 0.05em;
}
.people-card-menu:hover { opacity: 1; background: rgba(15, 46, 34, 0.06); }
.people-map-col {
  position: relative;
  min-height: 600px;
}
.people-map {
  width: 100%;
  height: 100%;
  min-height: 600px;
  background: #e8ede9;
  z-index: 1;
}
.people-map-marker {
  background: transparent;
  border: none;
}
.people-map-marker img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 4px 14px rgba(15, 46, 34, 0.25);
  object-fit: cover;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.people-map-marker.is-active img,
.people-map-marker:hover img {
  transform: scale(1.12);
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.45);
}
.people-hover-card {
  position: absolute;
  z-index: 500;
  width: min(320px, calc(100% - 32px));
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--divider);
  box-shadow: 0 20px 50px rgba(15, 46, 34, 0.18);
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.people-hover-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.people-hover-card[hidden] { display: none; }
.people-hover-head {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--divider);
  align-items: flex-start;
}
.people-hover-head img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.people-hover-head h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.people-hover-head p {
  font-size: 13px;
  color: var(--text);
}
.people-hover-body {
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}
.people-hover-body p { margin-bottom: 8px; }
.people-hover-body strong {
  color: var(--primary);
  font-weight: 600;
}
.people-hover-foot {
  padding: 12px 16px 16px;
}
.people-hover-foot .btn {
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  font-size: 14px;
}
.leaflet-container { font-family: var(--font-body); }

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(15, 46, 34, 0.2);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary); color: var(--accent); }

.text-center { text-align: center; }
.bg-secondary { background: var(--secondary); }

@media (max-width: 1024px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .charity-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .sponsors-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .news-grid,
  .updates-grid { grid-template-columns: repeat(2, 1fr); }
  .news-header { align-items: flex-start; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .committee-grid--bearers .committee-member { width: 46%; min-width: 140px; }
  .committee-grid--bearers .committee-photo { width: 130px; height: 130px; }
  .committee-grid--executive .committee-member { width: 28%; min-width: 100px; }
  .committee-grid--executive .committee-photo { width: 80px; height: 80px; }
  .committee-panel { min-height: auto; padding: 80px 0 60px; }
  .hero-stats { position: relative; bottom: auto; right: auto; margin-top: 40px; display: inline-block; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(2, 13, 25, 0.1);
  }
  .main-nav.open { transform: translateY(0); opacity: 1; }
  .journey-endpoint--origin { left: 4%; bottom: 12%; }
  .journey-endpoint--dest { right: 4%; bottom: 16%; }
  .journey-node { width: 56px; height: 56px; font-size: 24px; }
  .journey-place { font-size: 15px; }
  .journey-caption { font-size: 11px; padding: 8px 14px; white-space: normal; text-align: center; max-width: 90%; }
  .journey-svg { height: 420px; }
  .journey-viz { min-height: 420px; }
  .journey-viz-stage { min-height: 420px; }
  .about-grid, .join-grid, .contact-grid { grid-template-columns: 1fr; }
  .events-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .news-grid,
  .updates-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .membership-form { padding: 30px 24px; }
  .events-list-grid { grid-template-columns: 1fr; }
  .event-list-card { flex-direction: column; }
  .event-list-card img { width: 100%; height: 200px; }
  .event-list-body { padding: 24px; }
  .event-timeline-track { left: 28px; }
  .timeline-month-marker { left: 4px; width: 40px; height: 40px; font-size: 11px; }
  .timeline-month-header { padding-left: 64px; }
  .timeline-event { padding-left: 64px; }
  .timeline-date-node { left: 10px; font-size: 9px; padding: 3px 5px; }
  .timeline-card { flex-wrap: wrap; }
  .timeline-card-date-col { width: 64px; padding: 16px 8px; }
  .timeline-card-date-col .day { font-size: 24px; }
  .timeline-card-body { padding: 16px 18px; flex: 1 1 200px; }
  .timeline-card-body h4 { font-size: 17px; }
  .event-status { margin: 0 16px 16px auto; }
  .calendar-toolbar { flex-direction: column; align-items: flex-start; }
  .people-toolbar { grid-template-columns: 1fr; }
  .people-panel { grid-template-columns: 1fr; }
  .people-list-col { max-height: none; border-right: none; border-bottom: 1px solid var(--divider); }
  .people-list { grid-template-columns: repeat(2, 1fr); max-height: 480px; }
  .people-map-col,
  .people-map { min-height: 380px; }
  .section-padding { padding: 70px 0; }
  .sponsors-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .events-grid, .gallery-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .people-list { grid-template-columns: 1fr; }
}
