/* ============================================
   Scenic Michigan — Site Styles
   Bold Editorial / Non-Profit / Nature-Forward
   ============================================ */

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

:root {
  --forest: #1B3A2D;
  --forest-light: #2a5240;
  --pine: #3D6B4F;
  --sage: #7A9E7E;
  --cream: #F7F5EF;
  --sand: #EDE9DF;
  --gold: #C7A94E;
  --gold-dark: #a88b3a;
  --sky: #5B8FA8;
  --charcoal: #1C1C1C;
  --slate: #555;
  --light-border: rgba(0,0,0,0.06);

  --heading: 'Libre Baskerville', 'Georgia', serif;
  --body: 'DM Sans', 'Helvetica Neue', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============================================
   NAV
   ============================================ */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  background: rgba(247,245,239,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--light-border);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-nav.scrolled {
  background: rgba(247,245,239,0.92);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-brand svg { height: 36px; width: auto; }
.nav-brand-text {
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.3px;
  line-height: 1.15;
}
.nav-brand-text small {
  display: block;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage);
}

.nav-menu { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-menu a {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--forest); }
.nav-menu a.active { color: var(--forest); font-weight: 700; }

.nav-donate {
  padding: 10px 24px;
  background: var(--gold);
  color: #fff;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  transition: background 0.3s, transform 0.2s;
}
.nav-donate:hover { background: var(--gold-dark); transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 210;
  position: relative;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: transform 0.35s ease, opacity 0.25s ease;
  transform-origin: center;
}
/* Hamburger → X animation */
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(247,245,239,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-menu-inner a {
  font-family: var(--heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
  padding: 14px 20px;
  letter-spacing: -0.5px;
  transition: color 0.2s, transform 0.3s;
  transform: translateY(12px);
  opacity: 0;
}
.mobile-menu.open .mobile-menu-inner a {
  transform: translateY(0);
  opacity: 1;
}
/* Staggered entry */
.mobile-menu.open .mobile-menu-inner a:nth-child(1) { transition-delay: 0.06s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(3) { transition-delay: 0.14s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(4) { transition-delay: 0.18s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(5) { transition-delay: 0.22s; }
.mobile-menu.open .mobile-menu-inner a:nth-child(6) { transition-delay: 0.26s; }

.mobile-menu-inner a:hover {
  color: var(--forest);
}
.mobile-menu-inner a.active {
  color: var(--forest);
}

.mobile-menu-inner .mobile-donate {
  margin-top: 16px;
  padding: 16px 40px;
  background: var(--gold);
  color: #fff;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
}
.mobile-menu-inner .mobile-donate:hover {
  background: var(--gold-dark);
}
.mobile-menu.open .mobile-menu-inner .mobile-donate {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.3s;
}

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

.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  max-height: 960px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

/* ============================================
   HERO SLIDESHOW
   Full-screen. One image at a time.
   Fade in/out. Ken Burns slow zoom.
   Text pinned left, never moves.
   ============================================ */

.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  max-height: 960px;
  overflow: hidden;
}

/* Each slide is a full-cover container */
.hero-slideshow__slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-slideshow__slide.is-active {
  opacity: 1;
  z-index: 1;
}

/* The image inside each slide — full cover + Ken Burns */
.hero-slideshow__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
}
.hero-slideshow__slide.is-active img {
  animation: heroKenBurns 7s ease-out forwards;
}
@keyframes heroKenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

/* Dark gradient overlay — sits above slides, below text */
.hero-slideshow__overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(27,58,45,0.92) 0%,
    rgba(27,58,45,0.5) 35%,
    rgba(27,58,45,0.15) 65%,
    rgba(27,58,45,0.05) 100%
  );
  pointer-events: none;
}

/* Text — pinned bottom-left, above everything */
.hero-slideshow__text {
  position: absolute;
  bottom: 80px;
  left: 50px;
  z-index: 3;
  max-width: 680px;
}
.hero-slideshow__text h1 {
  font-family: var(--heading);
  font-size: clamp(40px, 6vw, 72px);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
  font-weight: 700;
}
.hero-slideshow__text p {
  font-family: var(--body);
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-slideshow__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-slideshow__text {
    left: 24px;
    right: 24px;
    bottom: 60px;
  }
  .hero-slideshow__actions {
    flex-direction: column;
  }
  .hero-slideshow__actions a {
    text-align: center;
    justify-content: center;
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(27,58,45,0.92) 0%,
    rgba(27,58,45,0.5) 35%,
    rgba(27,58,45,0.15) 65%,
    rgba(27,58,45,0.05) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 50px 80px;
  max-width: 820px;
}

.hero-content h1 {
  font-family: var(--heading);
  font-size: clamp(40px, 6vw, 72px);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-family: var(--body);
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--gold);
  color: #fff;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(199,169,78,0.35); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: #fff;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.35);
  transition: all 0.3s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* Hero entry animations */
.hero-content h1,
.hero-content p,
.hero-actions {
  opacity: 0;
  transform: translateY(25px);
  animation: heroFade 0.8s ease forwards;
}
.hero-content h1 { animation-delay: 0.15s; }
.hero-content p { animation-delay: 0.4s; }
.hero-actions { animation-delay: 0.6s; }

@keyframes heroFade {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   PAGE HERO (sub-pages)
   ============================================ */

.page-hero {
  position: relative;
  height: 45vh;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero .hero-bg { position: absolute; inset: 0; }
.page-hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,58,45,0.88) 0%, rgba(27,58,45,0.3) 60%, rgba(27,58,45,0.08) 100%); }
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 50px 50px;
}
.page-hero-content h1 {
  font-family: var(--heading);
  font-size: clamp(36px, 5vw, 60px);
  color: #fff;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1px;
}
.page-hero-content p {
  font-family: var(--body);
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
  max-width: 500px;
}

/* ============================================
   SECTION UTILITIES
   ============================================ */

.section { padding: 100px 50px; }
.section-dark { background: var(--forest); color: #fff; }
.section-sand { background: var(--sand); }

.section-label {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--heading);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.section-subtitle {
  font-family: var(--body);
  font-size: 17px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 600px;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }

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

/* ============================================
   MISSION STRIP
   ============================================ */

.mission-strip {
  padding: 80px 50px;
  background: var(--forest);
  text-align: center;
}
.mission-strip .inner {
  max-width: 860px;
  margin: 0 auto;
}
.mission-strip blockquote {
  font-family: var(--heading);
  font-size: clamp(20px, 2.8vw, 28px);
  color: #fff;
  line-height: 1.55;
  font-weight: 400;
  font-style: italic;
}
.mission-strip .attribution {
  margin-top: 20px;
  font-family: var(--body);
  font-size: 13px;
  color: var(--sage);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ============================================
   PROGRAM BLOCKS (alternating image/text)
   ============================================ */

.program-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: center;
}
.program-block-reverse {
  direction: rtl;
}
.program-block-reverse > * {
  direction: ltr;
}
.program-block-title {
  font-family: var(--heading);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}
.program-block-text p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 16px;
}
.program-block-img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ============================================
   PRIORITY / PROGRAM GRID
   ============================================ */

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

.priority-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}
.priority-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1), filter 0.4s;
  filter: brightness(0.65) saturate(0.9);
}
.priority-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.45) saturate(1);
}
.priority-item .priority-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px;
  z-index: 2;
}
.priority-item .priority-label h3 {
  font-family: var(--heading);
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 6px;
}
.priority-item .priority-label span {
  font-family: var(--body);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* ============================================
   IMPACT / STATS ROW
   ============================================ */

.impact-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  padding: 80px 50px;
  background: var(--sand);
}
.impact-stat .number {
  font-family: var(--heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 8px;
}
.impact-stat .label {
  font-family: var(--body);
  font-size: 14px;
  color: var(--slate);
  letter-spacing: 0.5px;
}

/* ============================================
   NEWS GRID
   ============================================ */

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.news-item {
  text-decoration: none;
  display: block;
  transition: transform 0.3s;
}
.news-item:hover { transform: translateY(-4px); }

.news-item .news-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  margin-bottom: 18px;
}
.news-item .news-date {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.news-item .news-title {
  font-family: var(--heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.35;
  margin-bottom: 10px;
}
.news-item .news-excerpt {
  font-family: var(--body);
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
}

/* ============================================
   PHOTO CONTEST SECTION
   ============================================ */

.contest-year-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.contest-year-tile {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.contest-year-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.55);
}
.contest-year-tile:hover img { transform: scale(1.05); filter: brightness(0.4); }

.contest-year-tile .tile-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.contest-year-tile .tile-year {
  font-family: var(--heading);
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}
.contest-year-tile .tile-sub {
  font-family: var(--body);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Winner gallery on sub-page */
.winner-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.winner-card { overflow: hidden; }
.winner-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 14px;
}
.winner-card .winner-badge {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.winner-card h3 {
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.winner-card .photographer {
  font-family: var(--body);
  font-size: 13px;
  color: var(--slate);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.testimonial {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
}
.testimonial p {
  font-family: var(--heading);
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 16px;
}
.testimonial .author {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  color: var(--sage);
}
.testimonial .author-title {
  font-family: var(--body);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  padding: 80px 50px;
  background: var(--gold);
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.cta-banner p {
  font-family: var(--body);
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.cta-btn-dark {
  display: inline-flex;
  padding: 16px 36px;
  background: var(--forest);
  color: #fff;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.cta-btn-dark:hover { background: var(--charcoal); transform: translateY(-2px); }

/* ============================================
   NEWSLETTER
   ============================================ */

.newsletter {
  padding: 70px 50px;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.newsletter h3 {
  font-family: var(--heading);
  font-size: 24px;
  color: #fff;
  font-weight: 700;
}
.newsletter p {
  font-family: var(--body);
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}
.newsletter-form {
  display: flex;
  gap: 0;
}
.newsletter-form input {
  padding: 14px 20px;
  width: 300px;
  font-family: var(--body);
  font-size: 14px;
  border: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { background: rgba(255,255,255,0.18); }
.newsletter-form button {
  padding: 14px 28px;
  background: var(--gold);
  color: #fff;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.newsletter-form button:hover { background: var(--gold-dark); }

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--charcoal);
  padding: 60px 50px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-about .footer-logo {
  font-family: var(--heading);
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-about p {
  font-family: var(--body);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 300px;
}
.footer-about .footer-address {
  margin-top: 16px;
  font-family: var(--body);
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-family: var(--body);
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1200px;
  margin: 36px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom span {
  font-family: var(--body);
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.liteframe-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  transition: all 0.3s;
}
.liteframe-badge:hover { color: var(--gold); border-color: rgba(199,169,78,0.3); }
.liteframe-badge svg { opacity: 0.5; }
.liteframe-badge:hover svg { opacity: 0.9; }

.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s;
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.about-img { width: 100%; object-fit: cover; }
.about-text h2 {
  font-family: var(--heading);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-text p {
  font-family: var(--body);
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ============================================
   BLOG LIST
   ============================================ */
.blog-list { margin-top: 40px; }
.blog-entry {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--light-border);
  text-decoration: none;
  transition: background 0.2s;
  align-items: center;
}
.blog-entry:hover { background: rgba(0,0,0,0.015); }
.blog-entry img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.blog-entry .blog-date {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.blog-entry .blog-title {
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 10px;
}
.blog-entry .blog-excerpt {
  font-family: var(--body);
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
}

/* ============================================
   FORM (contact / generic)
   ============================================ */
.form-wrap {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(16px);
  border: 1px solid var(--light-border);
  padding: 40px;
}
.form-wrap h3 {
  font-family: var(--heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--body);
  font-size: 14px;
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.7);
  outline: none;
  transition: border 0.3s;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--forest);
}
.form-group textarea { height: 120px; resize: vertical; }

/* ============================================
   CONTACT PAGE GRID
   ============================================ */

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--heading);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.contact-info p {
  font-family: var(--body);
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 28px;
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27,58,45,0.06);
  border: 1px solid rgba(27,58,45,0.1);
  color: var(--forest);
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail-label {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate);
  opacity: 0.6;
  margin-bottom: 2px;
}
.contact-detail-value {
  font-family: var(--body);
  font-size: 15px;
  color: var(--charcoal);
  font-weight: 500;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  padding: 18px 50px;
  font-family: var(--body);
  font-size: 13px;
  color: var(--slate);
  background: var(--sand);
}
.breadcrumb a { text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--forest); }
.breadcrumb .sep { margin: 0 8px; opacity: 0.4; }

/* ============================================
   BLOG ARTICLE (single post)
   ============================================ */

.blog-article {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 50px 80px;
}

.blog-article-header {
  margin-bottom: 32px;
}

.back-link {
  display: inline-block;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  margin-bottom: 24px;
  transition: opacity 0.2s;
}
.back-link:hover { opacity: 0.7; }

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.blog-article-category {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.blog-article-date,
.blog-article-author {
  font-family: var(--body);
  font-size: 13px;
  color: var(--slate);
}

.blog-article-header h1 {
  font-family: var(--heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--charcoal);
}

.blog-article-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 36px;
}

.blog-article-body p {
  font-family: var(--body);
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.85;
  margin-bottom: 20px;
}

.blog-article-body h2 {
  font-family: var(--heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 40px 0 16px;
  line-height: 1.25;
}

.blog-article-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--light-border);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   DONATE PAGE
   ============================================ */

.donate-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: start;
}

.donate-text h2 {
  font-family: var(--heading);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.donate-text p {
  font-family: var(--body);
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 16px;
}

.donate-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}

.donate-tier {
  padding: 24px;
  border: 1px solid var(--light-border);
  background: #fff;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.donate-tier:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(199,169,78,0.12);
}
.donate-tier .tier-amount {
  font-family: var(--heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 4px;
}
.donate-tier .tier-label {
  font-family: var(--body);
  font-size: 13px;
  color: var(--slate);
  letter-spacing: 0.5px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .priority-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .impact-row { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-content { grid-template-columns: 1fr; }
  .winner-gallery { grid-template-columns: 1fr; }
  .donate-content { grid-template-columns: 1fr; gap: 40px; }
  .program-block { gap: 40px; }
}

@media (max-width: 768px) {
  .site-nav { padding: 0 24px; }
  .nav-menu { display: none; }
  .nav-hamburger { display: block; }
  .hero-content { padding: 0 24px 60px; }
  .section { padding: 70px 24px; }
  .mission-strip { padding: 60px 24px; }
  .impact-row { padding: 60px 24px; gap: 24px; }
  .newsletter { padding: 50px 24px; flex-direction: column; align-items: flex-start; }
  .newsletter-form { width: 100%; }
  .newsletter-form input { width: 100%; flex: 1; }
  .site-footer { padding: 40px 24px 30px; }
  .page-hero-content { padding: 0 24px 40px; }
  .breadcrumb { padding: 14px 24px; }
  .cta-banner { padding: 60px 24px; }
  .priority-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .blog-entry { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .blog-article { padding: 30px 24px 60px; }

  /* Program blocks — stack with image on top */
  .program-block {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .program-block-reverse {
    direction: ltr;
  }
  .program-block-img {
    order: -1;
  }

  /* About — image on top */
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-img {
    order: -1;
    max-height: 400px;
  }

  /* Contact grid stacks */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .donate-tiers { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .impact-row { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; justify-content: center; }
  .contest-year-grid { grid-template-columns: 1fr; }
  .donate-tiers { grid-template-columns: 1fr; }
  .blog-article-meta { flex-direction: column; gap: 6px; align-items: flex-start; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
  .about-stats { grid-template-columns: 1fr; gap: 20px; }
}
