/* ===== CSS Variables ===== */
:root {
  --saffron: #FF6B00;
  /* WCAG AA text on white/cream (4.5:1+) — use for saffron-coloured text on light backgrounds */
  --saffron-text: #B34700;
  --deep-maroon: #7B1C1C;
  --gold: #C9A84C;
  --cream: #FFF8F0;
  --dark: #1A1A1A;
  --white: #FFFFFF;
  --placeholder: #D4B896;
}

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

html {
  scroll-behavior: smooth;
}

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

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

body {
  background-color: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Accessibility — skip link, noscript, focus */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 1200;
  padding: 10px 16px;
  background-color: var(--deep-maroon);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
}

.skip-link:focus {
  top: 16px;
}

.noscript-msg {
  margin: 0;
  padding: 14px 20px;
  background-color: var(--deep-maroon);
  color: var(--white);
  text-align: center;
  font-size: 15px;
  font-weight: 600;
}

:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 2px;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== Announcement Bar (Marquee) ===== */
.announcement-bar {
  background-color: var(--saffron);
  color: var(--white);
  font-size: 13px;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
  z-index: 1100;
}

.announcement-bar__track {
  display: inline-flex;
  animation: marquee 25s linear infinite;
}

.announcement-bar__text {
  display: inline-block;
  padding: 8px 0;
  padding-right: 4rem;
}

@keyframes marquee {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* ===== Hero wrap (navbar overlays hero) ===== */
.hero-wrap {
  position: relative;
}

/* ===== Navbar ===== */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  border-bottom: 2px solid transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.navbar--transparent {
  background-color: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

.navbar--scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.navbar--transparent .navbar__logo-line1,
.navbar--transparent .navbar__link {
  color: var(--white);
}

.navbar--transparent .navbar__logo-line2 {
  color: var(--gold);
}

.navbar--transparent .navbar__toggle {
  color: var(--white);
}

.navbar.navbar--scrolled {
  background-color: var(--white);
  border-bottom: 2px solid var(--saffron);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.navbar--scrolled .navbar__logo-line1 {
  color: var(--deep-maroon);
}

.navbar--scrolled .navbar__logo-line2 {
  color: var(--saffron-text);
}

.navbar--scrolled .navbar__link {
  color: var(--dark);
}

.navbar--scrolled .navbar__toggle {
  color: var(--saffron);
}

.navbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.navbar__logo {
  flex-shrink: 0;
}

.navbar__logo-line1 {
  font-weight: 600;
  font-size: 15px;
  color: var(--deep-maroon);
  line-height: 1.3;
  transition: color 0.3s ease;
}

.navbar__logo-line2 {
  font-size: 12px;
  color: var(--saffron-text);
  line-height: 1.3;
  transition: color 0.3s ease;
}

.navbar__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--saffron);
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.3s ease;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__link {
  font-size: 14px;
  font-weight: 400;
  color: var(--dark);
  padding: 8px 12px;
  border-radius: 4px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.navbar__link:hover,
.navbar__link:focus {
  color: var(--saffron-text);
  background-color: rgba(255, 107, 0, 0.08);
}

.navbar__link--active {
  color: var(--saffron-text);
  font-weight: 600;
  background-color: rgba(255, 107, 0, 0.1);
}

.navbar--transparent .navbar__link--active {
  color: var(--gold);
  background-color: rgba(255, 255, 255, 0.15);
}

.navbar--transparent .navbar__link:hover,
.navbar--transparent .navbar__link:focus {
  color: var(--gold);
  background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile nav */
@media (max-width: 768px) {
  .navbar__toggle {
    display: block;
  }

  .navbar__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--white);
    border-bottom: 2px solid var(--saffron);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 8px 0 16px;
    gap: 0;
  }

  .navbar__nav--open {
    display: flex;
  }

  .navbar--transparent .navbar__nav {
    background-color: var(--white);
  }

  .navbar--transparent .navbar__nav .navbar__link {
    color: var(--dark);
  }

  .navbar__link {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    border-radius: 0;
  }

  .navbar__logo-line1 {
    font-size: 13px;
  }

  .navbar__logo-line2 {
    font-size: 11px;
  }
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* PHOTO REPLACEMENT POINT — hero background image */
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #7B1C1C 0%, #FF6B00 50%, #C9A84C 100%);
  z-index: 0;
}

.hero__placeholder {
  position: absolute;
  inset: 0;
  background-color: var(--placeholder);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  opacity: 0;
  /* Hidden until photo replaces gradient; keep gradient visible */
  pointer-events: none;
}

.hero__placeholder-icon {
  width: 80px;
  height: 80px;
  opacity: 0.4;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 20px 24px;
  max-width: 800px;
  animation: heroFadeIn 0.8s ease forwards;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__tagline {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero__title {
  font-size: 42px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero__subtitle {
  font-size: 26px;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 20px;
}

.hero__desc {
  font-size: 16px;
  color: var(--white);
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.hero__btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.hero__btn:hover,
.hero__btn:focus {
  transform: translateY(-2px);
}

.hero__btn--primary {
  background-color: var(--saffron);
  color: var(--white);
  border-color: var(--saffron);
}

.hero__btn--primary:hover,
.hero__btn--primary:focus {
  background-color: #e55f00;
  border-color: #e55f00;
}

.hero__btn--outline {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.hero__btn--outline:hover,
.hero__btn--outline:focus {
  background-color: rgba(255, 255, 255, 0.15);
}

/* ===== Placeholder image utility ===== */
.img-placeholder {
  background-color: var(--placeholder);
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.5;
}

/* ===== Shared section padding ===== */
.section-pad {
  padding: 80px 20px;
}

@media (max-width: 768px) {
  .section-pad {
    padding: 48px 16px;
  }
}

/* ===== Shared section utilities ===== */
.section-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--saffron-text);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-divider {
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--saffron);
  margin-bottom: 16px;
}

/* ===== SECTION 1 — About ===== */
.about {
  padding: 80px 20px;
  background-color: var(--white);
}

.about__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about__image-placeholder {
  aspect-ratio: 4 / 3;
  width: 100%;
  background-color: var(--saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  border-radius: 8px;
}

.about__image-text {
  color: var(--white);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
}

.about__heading {
  color: var(--deep-maroon);
  font-size: 28px;
  line-height: 1.35;
  margin-bottom: 20px;
}

.about__para {
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.75;
}

.about__para:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about {
    padding: 48px 16px;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about__heading {
    font-size: 24px;
  }

  .about__image-text {
    font-size: 16px;
  }
}

@media (max-width: 380px) {
  .about__heading {
    font-size: 22px;
  }

  .about__para {
    font-size: 15px;
  }
}

/* ===== SECTION 2 — Stats ===== */
.stats {
  background-color: var(--deep-maroon);
  padding: 48px 20px;
}

.stats__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
  text-align: center;
}

.stat__number {
  font-size: 48px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat__number--text {
  font-size: 32px;
}

.stat__label {
  font-size: 14px;
  color: var(--white);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }

  .stat__number {
    font-size: 40px;
  }

  .stat__number--text {
    font-size: 26px;
  }
}

@media (max-width: 380px) {
  .stats {
    padding: 40px 14px;
  }

  .stat__number {
    font-size: 34px;
  }

  .stat__number--text {
    font-size: 22px;
  }

  .stat__label {
    font-size: 13px;
  }
}

/* ===== SECTION 3 — Donors Marquee ===== */
.donors-marquee {
  background-color: var(--cream);
  border-top: 2px solid var(--saffron);
  border-bottom: 2px solid var(--saffron);
  padding: 32px 0;
  overflow: hidden;
}

.donors-marquee__heading {
  text-align: center;
  font-size: 20px;
  color: var(--deep-maroon);
  font-weight: 400;
  margin-bottom: 20px;
  padding: 0 20px;
}

.donors-marquee__wrap {
  overflow: hidden;
  white-space: nowrap;
}

.donors-marquee__track {
  display: inline-flex;
  animation: donorsMarquee 40s linear infinite;
}

.donors-marquee__wrap:hover .donors-marquee__track {
  animation-play-state: paused;
}

.donors-marquee__text {
  display: inline-block;
  font-size: 16px;
  font-style: italic;
  color: var(--deep-maroon);
  padding-right: 3rem;
  white-space: nowrap;
}

@keyframes donorsMarquee {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@media (max-width: 380px) {
  .donors-marquee__heading {
    font-size: 18px;
  }

  .donors-marquee__text {
    font-size: 14px;
  }
}

/* ===== Centered divider utility ===== */
.section-divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* ===== Progress / Timeline ===== */
.progress {
  padding: 80px 20px;
  background-color: var(--white);
}

.progress__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.progress__heading {
  color: var(--deep-maroon);
  font-size: 28px;
  margin-bottom: 12px;
}

.progress__subtext {
  color: var(--saffron-text);
  font-size: 16px;
  margin-bottom: 48px;
}

.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  list-style: none;
  padding: 0 8px 40px;
  margin-bottom: 48px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 12%;
  right: 12%;
  height: 3px;
  background-color: #e0e0e0;
  z-index: 0;
}

.timeline__stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}

.timeline__circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background-color: var(--saffron);
  border: 3px solid var(--saffron);
  flex-shrink: 0;
}

.timeline__check {
  color: #2e7d32;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.timeline__circle--pulse {
  background-color: var(--saffron);
  border-color: var(--saffron);
  animation: timelinePulse 1.5s ease-in-out infinite;
}

.timeline__circle--upcoming {
  background-color: var(--white);
  border: 3px solid #bdbdbd;
}

@keyframes timelinePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.5);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(255, 107, 0, 0);
    transform: scale(1.05);
  }
}

.timeline__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.timeline__status {
  font-size: 13px;
  color: #757575;
}

.timeline__status--done {
  color: #2e7d32;
  font-weight: 600;
}

.timeline__status--active {
  color: var(--saffron-text);
  font-weight: 600;
}

.progress-bar-block__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 16px;
}

.progress-bar-block__label {
  font-size: 16px;
  font-weight: 600;
  color: var(--deep-maroon);
}

.progress-bar-block__percent {
  font-size: 16px;
  font-weight: 600;
  color: var(--saffron-text);
  flex-shrink: 0;
}

.progress-bar-block__track {
  width: 100%;
  height: 12px;
  background-color: #e8e0d8;
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar-block__fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--saffron), #ff9a4d);
  transition: width 0.6s ease;
}

@media (max-width: 768px) {
  .progress {
    padding: 48px 16px;
  }

  .progress__heading {
    font-size: 24px;
  }

  .timeline {
    flex-direction: column;
    align-items: stretch;
    padding-left: 0;
    padding-bottom: 0;
    gap: 0;
  }

  .timeline::before {
    top: 0;
    bottom: 24px;
    left: 23px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .timeline__stage {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding: 0 0 28px 0;
  }

  .timeline__circle {
    margin-bottom: 0;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  .timeline__title,
  .timeline__status {
    text-align: left;
  }
}

@media (max-width: 380px) {
  .progress__heading {
    font-size: 22px;
  }

  .timeline__title {
    font-size: 14px;
  }
}

/* ===== Gallery ===== */
.gallery {
  padding: 80px 20px;
  background-color: var(--cream);
}

.gallery__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gallery__heading {
  color: var(--deep-maroon);
  font-size: 28px;
  margin-bottom: 40px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  text-align: center;
}

.gallery__item {
  margin: 0;
}

.gallery__card {
  aspect-ratio: 4 / 3;
  width: 100%;
  background: linear-gradient(135deg, #C9A84C, #FF6B00);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery__card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 28px rgba(123, 28, 28, 0.2);
}

.gallery__card-text {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.gallery__caption {
  font-size: 12px;
  color: var(--deep-maroon);
  margin-top: 10px;
  text-align: center;
}

.btn-outline {
  display: inline-block;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600;
  color: var(--saffron-text);
  background: transparent;
  border: 2px solid var(--saffron);
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-outline:hover,
.btn-outline:focus {
  background-color: var(--saffron);
  color: var(--white);
}

@media (max-width: 992px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery {
    padding: 48px 16px;
  }

  .gallery__heading {
    font-size: 24px;
  }

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

@media (max-width: 380px) {
  .gallery__card-text {
    font-size: 14px;
  }
}

/* ===== Donation ===== */
.donate {
  padding: 80px 20px;
  background: linear-gradient(135deg, #7B1C1C, #FF6B00);
  color: var(--white);
}

.donate__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.donate__heading {
  color: var(--gold);
  font-size: 32px;
  margin-bottom: 16px;
}

.donate__subtext {
  font-size: 16px;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 40px;
  opacity: 0.95;
}

.donate__tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  text-align: center;
}

.donate-tier {
  background-color: var(--white);
  color: var(--dark);
  border-radius: 10px;
  padding: 28px 20px;
  border: 2px solid transparent;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.donate-tier--featured {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
  transform: scale(1.02);
}

.donate-tier__icon {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
}

.donate-tier__amount {
  font-size: 28px;
  font-weight: 600;
  color: var(--deep-maroon);
  margin-bottom: 8px;
}

.donate-tier__title {
  font-size: 18px;
  color: var(--saffron-text);
  font-weight: 600;
  margin-bottom: 12px;
}

.donate-tier__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark);
}

.bank-details {
  background-color: rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  padding: 24px;
  text-align: left;
  max-width: 560px;
  margin: 0 auto 24px;
}

.bank-details__heading {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 20px;
  text-align: center;
}

.bank-details__list {
  margin: 0;
}

.bank-details__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.bank-details__row:last-child {
  border-bottom: none;
}

.bank-details__row dt {
  font-weight: 600;
  font-size: 14px;
  color: var(--gold);
}

.bank-details__row dd {
  font-size: 15px;
  margin: 0;
}

.donate__receipt-note {
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.donate__whatsapp {
  display: inline-block;
  padding: 16px 32px;
  background-color: #25D366;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  transition: background-color 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.donate__whatsapp:hover,
.donate__whatsapp:focus {
  background-color: #1ebe57;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .donate {
    padding: 48px 16px;
  }

  .donate__heading {
    font-size: 26px;
  }

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

  .donate-tier--featured {
    transform: none;
  }

  .bank-details__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 380px) {
  .donate__heading {
    font-size: 22px;
  }

  .donate-tier__amount {
    font-size: 24px;
  }

  .donate__whatsapp {
    width: 100%;
    max-width: 320px;
    padding: 14px 20px;
    font-size: 15px;
  }
}

/* ===== Trustees ===== */
.trustees {
  background-color: var(--white);
  text-align: center;
}

.trustees__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.trustees__heading {
  color: var(--deep-maroon);
  font-size: 28px;
  margin-bottom: 12px;
}

.trustees__subtext {
  color: var(--dark);
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

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

.trustee-card {
  background-color: var(--white);
  border-top: 4px solid var(--saffron);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 24px;
  text-align: center;
}

.trustee-card__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--saffron);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.trustee-card__photo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
  border: 2px solid var(--gold);
}

.trustees__loading,
.trustees__empty {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 15px;
  color: var(--saffron-text);
  padding: 24px 16px;
  line-height: 1.6;
}

.trustee-card__name {
  font-size: 17px;
  color: var(--deep-maroon);
  margin-bottom: 8px;
  line-height: 1.35;
}

.trustee-card__role {
  font-size: 14px;
  color: var(--saffron-text);
  font-weight: 600;
  margin-bottom: 8px;
}

.trustee-card__phone {
  font-size: 14px;
  color: var(--dark);
}

.trustee-card__phone a {
  color: var(--saffron-text);
  font-weight: 600;
}

.trustees__note {
  font-size: 15px;
  color: var(--saffron-text);
  font-style: italic;
  text-align: center;
}

@media (max-width: 992px) {
  .trustees__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .trustees__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .trustees__heading {
    font-size: 24px;
  }
}

@media (max-width: 380px) {
  .trustee-card__name {
    font-size: 16px;
  }
}

/* ===== Contact ===== */
.contact {
  background-color: var(--cream);
}

.contact__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-info {
  background-color: var(--deep-maroon);
  color: var(--white);
  padding: 40px;
  border-radius: 10px;
}

.contact-info__heading {
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 24px;
}

.contact-info__list {
  list-style: none;
  margin-bottom: 24px;
}

.contact-info__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.contact-info__item:last-child {
  margin-bottom: 0;
}

.contact-info__icon {
  flex-shrink: 0;
  font-size: 18px;
}

.contact-info__item a {
  color: var(--gold);
  text-decoration: underline;
}

.contact-info__map {
  background-color: var(--placeholder);
  height: 200px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  color: var(--deep-maroon);
  font-size: 14px;
  line-height: 1.6;
}

.contact-form-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 32px;
}

.contact-form-card__heading {
  color: var(--deep-maroon);
  font-size: 22px;
  margin-bottom: 24px;
}

.contact-form__field {
  margin-bottom: 16px;
}

.contact-form__field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 12px;
  font-size: 15px;
  color: var(--dark);
  background-color: var(--white);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form__submit {
  width: 100%;
  padding: 14px;
  background-color: var(--saffron);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 8px;
  transition: background-color 0.2s ease;
}

.contact-form__submit:hover,
.contact-form__submit:focus {
  background-color: #e55f00;
}

.contact-form__success {
  margin-top: 20px;
  padding: 16px;
  background-color: rgba(46, 125, 50, 0.1);
  border: 1px solid #2e7d32;
  border-radius: 6px;
  color: #1b5e20;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

.contact-form__success:not([hidden]) {
  display: block;
}

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

  .contact-info {
    padding: 28px 20px;
  }

  .contact-form-card {
    padding: 24px 20px;
  }
}

@media (max-width: 380px) {
  .contact-info__item {
    font-size: 14px;
  }

  .contact-info__map {
    font-size: 13px;
    height: 180px;
  }
}

/* ===== Footer ===== */
.site-footer {
  background-color: var(--dark);
  color: var(--white);
}

.site-footer__top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 20px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.site-footer__logo {
  font-size: 17px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1.4;
}

.site-footer__tagline {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 12px;
}

.site-footer__desc {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.6;
}

.site-footer__col-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}

.site-footer__links li {
  margin-bottom: 10px;
}

.site-footer__links a {
  font-size: 14px;
  opacity: 0.9;
  transition: color 0.2s ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus {
  color: var(--gold);
}

.site-footer__contact-line {
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.site-footer__contact-line a {
  color: var(--gold);
}

.site-footer__whatsapp {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 18px;
  background-color: #25D366;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

.site-footer__whatsapp:hover,
.site-footer__whatsapp:focus {
  background-color: #1ebe57;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding: 20px;
  text-align: center;
}

.site-footer__bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 16px 32px;
  }
}

@media (max-width: 380px) {
  .site-footer__bottom p {
    font-size: 11px;
  }
}

/* ===== Back to top ===== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1050;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--saffron);
  color: var(--white);
  border: none;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.4);
  transition: opacity 0.3s ease, transform 0.2s ease, background-color 0.2s ease;
}

.back-to-top:not([hidden]) {
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top[hidden] {
  display: none;
}

.back-to-top:hover,
.back-to-top:focus {
  background-color: #e55f00;
  transform: translateY(-2px);
}

@media (max-width: 380px) {
  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
    min-height: 360px;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__subtitle {
    font-size: 18px;
  }

  .hero__desc {
    font-size: 15px;
  }

  .hero__btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .hero__cta {
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .announcement-bar__text {
    font-size: 12px;
  }

  .navbar__inner {
    padding: 10px 14px;
  }

  .hero__tagline {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .hero__title {
    font-size: 26px;
  }

  .hero__subtitle {
    font-size: 17px;
  }
}
