:root {
  --blue: #2E75B6;
  --blue-dk: #0D3D6E;
  --blue-lt: #4A90D9;
  --orange: #E8820C;
  --yellow: #F5C518;
  --cream: #FDF9F4;
  --white: #ffffff;
  --gray: #F2F5F9;
  --text: #1A1A2E;
  --text-lt: #5A6170;
  --green: #2E9E6B;
  --teal: #0D7377
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 61, 110, .97);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 70px;
  box-shadow: 0 2px 30px rgba(0, 0, 0, .3);
  border-bottom: 2px solid rgba(245, 197, 24, .2)
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none
}

.nav-logo img {
  height: 52px;
  width: auto;
  border-radius: 6px;
  object-fit: contain
}

.nav-logo-text .name {
  color: var(--white);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: block
}

.nav-logo-text .tag {
  color: var(--yellow);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: block
}

.nav-links {
  display: flex;
  gap: .05rem;
  list-style: none;
  align-items: center
}

.nav-links a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  font-weight: 700;
  font-size: .72rem;
  padding: .4rem .65rem;
  border-radius: 7px;
  transition: all .2s;
  letter-spacing: .04em;
  text-transform: uppercase
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, .1);
  color: var(--yellow)
}

/* STICKY DONATE CTA */
.sticky-donate-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 5.5rem;
  z-index: 9997;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  background: #fff;
  color: #E8820C;
  border-radius: 50px;
  padding: .8rem 1.5rem;
  box-shadow: 0 4px 22px rgba(232,130,12,.55);
  font-family: 'Nunito', sans-serif;
  line-height: 1.35;
  transition: transform .2s, box-shadow .2s;
  animation: donate-pulse 2.8s ease-in-out infinite;
}
.sticky-donate-cta:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 10px 35px rgba(232,130,12,.7);
  animation: none;
}
.sticky-donate-cta .sdc-top {
  font-size: .68rem;
  font-weight: 700;
  opacity: .92;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.sticky-donate-cta .sdc-main {
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .01em;
}
@keyframes donate-pulse {
  0%,100% { box-shadow: 0 4px 22px rgba(232,130,12,.55); }
  50%      { box-shadow: 0 4px 32px rgba(232,130,12,.85), 0 0 0 7px rgba(232,130,12,.15); }
}
@media(max-width:600px) {
  .sticky-donate-cta {
    right: .85rem;
    bottom: 5rem;
    padding: .65rem 1.1rem;
  }
  .sticky-donate-cta .sdc-top  { font-size: .6rem; }
  .sticky-donate-cta .sdc-main { font-size: .82rem; }
}

.nav-donate {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: 9px !important;
  font-weight: 900 !important
}

.nav-donate:hover {
  background: #C46A08 !important;
  transform: translateY(-1px)
}

/* NAV DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: .65rem; opacity: .75; }
.nav-submenu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 48, 90, .98);
  border-radius: 12px;
  padding: .5rem 0;
  min-width: 210px;
  list-style: none;
  box-shadow: 0 10px 35px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.1);
  z-index: 9999;
}
.nav-dropdown:hover .nav-submenu,
.nav-dropdown.open .nav-submenu { display: block; }
.nav-submenu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(10, 48, 90, .98);
}
.nav-submenu li a {
  display: block;
  padding: .6rem 1.2rem;
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 0;
  transition: all .15s;
}
.nav-submenu li a:hover {
  background: rgba(255,255,255,.1);
  color: var(--yellow);
  padding-left: 1.5rem;
}
.nav-submenu li:first-child a { border-radius: 12px 12px 0 0; }
.nav-submenu li:last-child  a { border-radius: 0 0 12px 12px; }

/* HAMBURGER TOGGLE — hidden on desktop, visible on mobile via @media block */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--white, #fff);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
nav.open .nav-toggle span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.open .nav-toggle span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 2rem;
  padding: 100px 4rem 3rem;
  background: var(--blue-dk);
  position: relative;
  overflow: hidden
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/hero-group.webp') center/cover no-repeat;
  opacity: .22;
  z-index: 0
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(46, 117, 182, .35) 0%, transparent 70%);
  z-index: 0
}

.hero-content {
  position: relative;
  z-index: 1
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245, 197, 24, .15);
  border: 1px solid rgba(245, 197, 24, .35);
  color: var(--yellow);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1.2rem
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(1.3)
  }
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: .9rem
}

.hero-title em {
  color: var(--yellow);
  font-style: italic
}

.hero-tagline {
  font-size: 1.1rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .9);
  margin-bottom: .6rem;
  letter-spacing: .01em
}

.hero-sub {
  font-size: .93rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
  margin-bottom: 1.4rem;
  max-width: 520px
}

.hero-btns {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: .75rem 1.8rem;
  border-radius: 10px;
  font-weight: 900;
  font-size: .9rem;
  text-decoration: none;
  transition: all .2s;
  box-shadow: 0 4px 18px rgba(232, 130, 12, .4)
}

.btn-primary:hover {
  background: #C46A08;
  transform: translateY(-2px)
}

.btn-ghost {
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  padding: .75rem 1.8rem;
  border-radius: 10px;
  font-weight: 800;
  font-size: .9rem;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, .3);
  transition: all .2s
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .18);
  border-color: var(--yellow);
  color: var(--yellow)
}

/* HERO IMPACT STATS — now inside hero */
.hero-impact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
  margin-top: .5rem
}

.hero-impact-extra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
  margin-top: .7rem
}

.stat-box {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  padding: .85rem 1rem;
  text-align: center;
  backdrop-filter: blur(4px)
}

.stat-box.highlight {
  background: rgba(245, 197, 24, .15);
  border-color: rgba(245, 197, 24, .4)
}

.stat-n {
  font-family: 'Fraunces', serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--yellow)
}

.stat-n.green {
  color: #5de0a0
}

.stat-n.orange {
  color: #ffb347
}

.stat-l {
  font-size: .62rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .15rem
}

/* HERO RIGHT — OVERLAPPING PHOTOS */
.hero-photos {
  position: relative;
  z-index: 1;
  height: 520px
}

.hero-photo-wrap {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(0, 0, 0, .6);
  border: 3px solid rgba(255, 255, 255, .2);
  transition: transform .3s
}

.hero-photo-wrap:hover {
  transform: scale(1.02) translateY(-4px)
}

.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #0a2d52
}

.hero-photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(13, 61, 110, .95), transparent);
  color: var(--white);
  font-size: .7rem;
  font-weight: 800;
  padding: .6rem .8rem .5rem;
  letter-spacing: .04em
}

/* Photo 1: balloons — left, higher, vertical */
.hero-photo-1 {
  width: 185px;
  height: 300px;
  top: 10px;
  left: 0;
  z-index: 2
}

/* Photo 2: men on horses — right, lower, overlapping */
.hero-photo-2 {
  width: 270px;
  height: 230px;
  bottom: 20px;
  right: 0;
  z-index: 3
}

/* GUIDESTAR SEAL — centered in nav */
.guidestar-seal {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity .2s, transform .2s
}

.guidestar-seal:hover {
  opacity: .82;
  transform: translate(-50%, calc(-50% - 2px))
}

.guidestar-seal img {
  width: 52px;
  height: auto;
  display: block
}

/* NEWSLETTER POPUP */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  z-index: 9999;
  align-items: center;
  justify-content: center
}

.popup-overlay.active {
  display: flex
}

.popup-box {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 480px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3)
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-lt)
}

.popup-box h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--blue-dk);
  margin-bottom: .5rem
}

.popup-box p {
  color: var(--text-lt);
  font-size: .9rem;
  margin-bottom: 1.2rem;
  line-height: 1.6
}

.popup-form input {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid #e0e6f0;
  border-radius: 10px;
  font-size: .9rem;
  font-family: 'Nunito', sans-serif;
  margin-bottom: .8rem;
  outline: none;
  transition: border-color .2s
}

.popup-form input:focus {
  border-color: var(--blue)
}

.popup-form button {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: .85rem;
  border-radius: 10px;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  transition: background .2s
}

.popup-form button:hover {
  background: #C46A08
}

.popup-note {
  font-size: .72rem;
  color: var(--text-lt);
  text-align: center;
  margin-top: .6rem
}

/* SECTIONS GENERAL */
section {
  padding: 5rem 4rem
}

.section-label {
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .5rem
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--blue-dk);
  line-height: 1.15;
  margin-bottom: .8rem
}

.section-sub {
  color: var(--text-lt);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 640px
}

/* GRAND OPENING */
.grand-opening {
  background: linear-gradient(135deg, var(--blue-dk) 0%, #1a5a9a 100%);
  color: var(--white);
  padding: 4rem
}

.go-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center
}

.go-text .section-label {
  color: var(--yellow)
}

.go-text .section-title {
  color: var(--white)
}

.go-text p {
  color: rgba(255, 255, 255, .82);
  line-height: 1.75;
  font-size: .97rem;
  margin-bottom: 1rem
}

.go-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.go-photo {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0, 0, 0, .4);
  border: 2px solid rgba(255, 255, 255, .15)
}

.go-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block
}

.go-photo-label {
  background: rgba(0, 0, 0, .5);
  color: var(--white);
  font-size: .68rem;
  font-weight: 800;
  padding: .35rem .7rem;
  text-align: center;
  letter-spacing: .04em
}

/* YOUTH CENTER SECTION */
.youth-section {
  background: var(--cream);
  padding: 5rem 4rem
}

.youth-inner {
  max-width: 1100px;
  margin: 0 auto
}

.youth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem
}

.youth-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.youth-photo {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .12);
  border: 2px solid rgba(46, 117, 182, .15)
}

.youth-photo img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform .4s
}

.youth-photo:hover img {
  transform: scale(1.05)
}

.youth-photo-label {
  background: var(--blue-dk);
  color: var(--white);
  font-size: .68rem;
  font-weight: 800;
  padding: .3rem .7rem;
  text-align: center;
  letter-spacing: .04em
}

.youth-text p {
  color: var(--text-lt);
  font-size: .97rem;
  line-height: 1.75;
  margin-bottom: 1rem
}

.activity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem
}

.activity-tag {
  background: rgba(46, 117, 182, .1);
  color: var(--blue-dk);
  font-size: .75rem;
  font-weight: 800;
  padding: .3rem .8rem;
  border-radius: 50px;
  border: 1px solid rgba(46, 117, 182, .2)
}

/* BIRTHDAY TEASER */
.birthday-teaser {
  background: linear-gradient(135deg, #1a3a6e 0%, #2E75B6 100%);
  padding: 4rem
}

.bt-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center
}

.bt-text .section-label {
  color: var(--yellow)
}

.bt-text .section-title {
  color: var(--white)
}

.bt-text p {
  color: rgba(255, 255, 255, .82);
  line-height: 1.75;
  font-size: .97rem;
  margin-bottom: 1.5rem
}

.bt-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  margin-bottom: 1.5rem
}

.bt-pkg {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  padding: .9rem;
  text-align: center
}

.bt-pkg .pkg-name {
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: .3rem
}

.bt-pkg .pkg-price {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white)
}

.bt-photo {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
  border: 3px solid rgba(255, 255, 255, .2)
}

.bt-photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block
}

/* OUTREACH TEASER */
.outreach-teaser {
  background: linear-gradient(135deg, #0a2d52 0%, #1a5a9a 100%);
  padding: 5rem 4rem
}

.ot-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center
}

.ot-text .section-label {
  color: var(--yellow)
}

.ot-text .section-title {
  color: var(--white)
}

.ot-text p {
  color: rgba(255, 255, 255, .82);
  line-height: 1.75;
  font-size: .97rem;
  margin-bottom: 1.5rem
}

.ot-phones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-bottom: 1.5rem
}

.ot-phone {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  padding: .6rem .9rem
}

.ot-phone .region {
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: .2rem
}

.ot-phone .number {
  font-size: .88rem;
  font-weight: 800;
  color: var(--white)
}

.ot-map-preview {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .5);
  border: 3px solid rgba(255, 255, 255, .2);
  position: relative;
  cursor: pointer;
  display: block;
  text-decoration: none
}

.ot-map-preview img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block
}

.ot-map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 61, 110, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s
}

.ot-map-preview:hover .ot-map-overlay {
  background: rgba(13, 61, 110, .2)
}

.ot-map-btn {
  background: var(--white);
  color: var(--blue-dk);
  font-weight: 900;
  font-size: .95rem;
  padding: .8rem 1.8rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .3)
}

/* REVIEWS — PROMINENT */
.reviews {
  background: var(--white);
  padding: 5rem 4rem
}

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

.reviews-header {
  text-align: center;
  margin-bottom: 3rem
}

.reviews-header .section-label {
  display: block;
  text-align: center
}

.reviews-header .section-title {
  text-align: center
}

.reviews-header .section-sub {
  margin: 0 auto;
  text-align: center
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem
}

.review-card {
  background: var(--gray);
  border-radius: 20px;
  padding: 2.2rem 2rem;
  border-top: 5px solid var(--orange);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .07);
  display: flex;
  flex-direction: column
}

.review-stars {
  color: #F5C518;
  font-size: 1.4rem;
  letter-spacing: .1em;
  margin-bottom: 1rem
}

.review-text {
  font-size: .97rem;
  line-height: 1.85;
  color: var(--text);
  font-style: italic;
  flex: 1;
  margin-bottom: 1.3rem
}

.review-author {
  font-weight: 900;
  font-size: .9rem;
  color: var(--blue-dk);
  border-top: 1px solid rgba(46, 117, 182, .15);
  padding-top: .8rem;
  margin-top: auto
}

.reviews-footer {
  text-align: center
}

.reviews-footer a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--blue-dk);
  color: var(--white);
  font-weight: 900;
  font-size: .95rem;
  padding: .85rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all .2s;
  box-shadow: 0 4px 18px rgba(13, 61, 110, .25)
}

.reviews-footer a:hover {
  background: var(--orange);
  transform: translateY(-2px)
}

/* EMPLOYMENT BANNER */
.employment-banner {
  background: linear-gradient(135deg, var(--green) 0%, #1a7a4a 100%);
  padding: 3rem 4rem
}

.eb-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap
}

.eb-text h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: .4rem
}

.eb-text p {
  color: rgba(255, 255, 255, .85);
  font-size: .95rem;
  line-height: 1.6
}

.eb-btn {
  background: var(--white);
  color: var(--green);
  font-weight: 900;
  font-size: .95rem;
  padding: .85rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: all .2s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .2)
}

.eb-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .25)
}

/* FOOTER */
footer {
  background: var(--blue-dk);
  color: rgba(255, 255, 255, .75);
  padding: 3.5rem 4rem 1.5rem
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 1.2rem
}

/* COLORFUL SOCIAL ICONS */
.social-row {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: 1rem
}

.soc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: transform .2s, opacity .2s;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  color: #fff
}

.soc:hover {
  transform: translateY(-3px);
  opacity: .85
}

.soc-fb {
  background: #1877F2
}

.soc-ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%)
}

.soc-tt {
  background: #010101
}

.soc-yt {
  background: #FF0000
}

.soc-x {
  background: #14171A
}

.soc-li {
  background: #0A66C2
}

.soc-pin {
  background: #E60023
}

.soc-tumblr {
  background: #35465C
}

.soc-pin {
  background: #E60023
}

.soc-tumblr {
  background: #35465C
}

.soc-fb:hover {
  background: #0d65d9
}

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

.soc-ig:hover {
  filter: brightness(1.15)
}

.soc-x {
  background: #000000
}

.soc-x:hover {
  background: #333
}

.soc-tt {
  background: #010101
}

.soc-tt:hover {
  background: #69C9D0
}

.soc-yt {
  background: #FF0000
}

.soc-yt:hover {
  background: #cc0000
}

.soc-li {
  background: #0A66C2
}

.soc-li:hover {
  background: #084e96
}

.fcol h4 {
  color: var(--white);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .9rem
}

.fcol a {
  display: block;
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  font-size: .83rem;
  margin-bottom: .4rem;
  transition: color .2s
}

.fcol a:hover {
  color: var(--yellow)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
  color: rgba(255, 255, 255, .45)
}

.footer-bottom a {
  color: rgba(255, 255, 255, .45);
  text-decoration: none
}

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

.ein-badge {
  background: rgba(245, 197, 24, .15);
  border: 1px solid rgba(245, 197, 24, .3);
  color: var(--yellow);
  padding: .2rem .7rem;
  border-radius: 50px;
  font-weight: 800
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .5);
  font-size: .72rem
}

.footer-credit img {
  height: 28px;
  width: auto;
  opacity: .85;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, .4))
}

/* FADE UP ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease
}

.fade-up.visible {
  opacity: 1;
  transform: none
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 90px 2rem 3rem
  }

  .hero-photos {
    height: 260px;
    margin-top: 1.5rem
  }

  .hero-photo-1 {
    width: 140px;
    height: 220px;
    top: 5px;
    left: 0
  }

  .hero-photo-2 {
    width: 200px;
    height: 170px;
    bottom: 10px;
    right: 0
  }

  .go-inner,
  .ot-inner,
  .bt-inner,
  .youth-grid {
    grid-template-columns: 1fr
  }

  .reviews-grid {
    grid-template-columns: 1fr 1fr
  }

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

  .hero-impact,
  .hero-impact-extra {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:1024px) {
  /* Hamburger button replaces the inline nav links */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(13, 61, 110, .98);
    padding: .75rem 0;
    border-bottom: 2px solid rgba(245, 197, 24, .25);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .35);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
  }
  nav.open .nav-links {
    max-height: 80vh;
    overflow: auto;
    padding: .5rem 0 1rem;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: .85rem 1.5rem;
    font-size: .85rem;
    border-radius: 0;
  }
  .nav-donate {
    margin: .5rem 1rem 0;
    text-align: center;
    border-radius: 9px !important;
  }
  /* Dropdowns on mobile — expand inline */
  .nav-dropdown > a::after { content: ' ▾'; }
  .nav-submenu {
    position: static;
    transform: none;
    background: rgba(0,0,0,.2);
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 0;
    min-width: unset;
  }
  .nav-submenu::before { display: none; }
  .nav-submenu li a {
    padding-left: 2.5rem;
    font-size: .8rem;
    border-radius: 0 !important;
  }
  .nav-dropdown.open > a { color: var(--yellow); }
}
@media(max-width:768px) {
  section {
    padding: 3.5rem 1.5rem
  }

  .hero {
    padding: 80px 1.5rem 2.5rem
  }

  .grand-opening,
  .outreach-teaser,
  .employment-banner,
  .birthday-teaser,
  .youth-section {
    padding: 3rem 1.5rem
  }

  .hero-impact,
  .hero-impact-extra {
    grid-template-columns: repeat(2, 1fr)
  }

  .ot-phones {
    grid-template-columns: 1fr
  }

  .reviews-grid {
    grid-template-columns: 1fr
  }

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

  .eb-inner {
    flex-direction: column;
    text-align: center
  }

  .hero-photos {
    height: 200px
  }

  .hero-photo-1 {
    width: 110px;
    height: 175px
  }

  .hero-photo-2 {
    width: 160px;
    height: 135px
  }

  .bt-packages {
    grid-template-columns: 1fr
  }

  .youth-photos {
    grid-template-columns: 1fr 1fr
  }
}

/* ===== STICKY REVIEW BAR ===== */
.sticky-review-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
  border-top: 3px solid #f5a623;
  padding: .55rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .45);
  gap: 1rem;
}

.sticky-review-bar .srb-left {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex: 1;
}

.sticky-review-bar .srb-stars {
  font-size: 1.3rem;
  letter-spacing: .05em;
  color: #f5a623;
  animation: starPulse 2.5s ease-in-out infinite;
}

@keyframes starPulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .65
  }
}

.sticky-review-bar .srb-text {
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.3;
}

.sticky-review-bar .srb-text span {
  display: block;
  font-size: .72rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .7);
  margin-top: .1rem;
}

.sticky-review-bar .srb-btn {
  background: linear-gradient(135deg, #f5a623, #e8920f);
  color: #1a1a2e;
  font-weight: 800;
  font-size: .82rem;
  padding: .5rem 1.3rem;
  border-radius: 25px;
  text-decoration: none;
  white-space: nowrap;
  transition: all .2s;
  box-shadow: 0 3px 12px rgba(245, 166, 35, .4);
  letter-spacing: .03em;
}

.sticky-review-bar .srb-btn:hover {
  background: linear-gradient(135deg, #ffc107, #f5a623);
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(245, 166, 35, .6);
}

.sticky-review-bar .srb-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .5);
  font-size: 1.1rem;
  cursor: pointer;
  padding: .2rem .4rem;
  transition: color .2s;
  flex-shrink: 0;
}

.sticky-review-bar .srb-close:hover {
  color: #fff;
}

/* push page content up so sticky bar doesn't cover footer */
body {
  padding-bottom: 60px;
}

@media(max-width:600px) {
  .sticky-review-bar {
    padding: .45rem 1rem;
  }

  .sticky-review-bar .srb-text span {
    display: none;
  }

  .sticky-review-bar .srb-btn {
    font-size: .75rem;
    padding: .45rem 1rem;
  }
}