/* ============================================================
   FILIPINOS FORWARD — styles.css
   Sections: Root Variables → Reset → Utility → Nav → Hero →
   Divider → About → Work/Gallery → Instagram → Feeding →
   Team → Help → Footer → Responsive → Reduced Motion
   ============================================================ */

/* ---- Root Variables ---- */
:root {
  /* Palette */
  --cream:        #FFF6E7;
  --cream-2:      #FBEBD0;
  --ink:          #2B2420;
  --ink-soft:     #6B5F56;
  --red:          #E8674A;
  --red-deep:     #D14E33;
  --gold:         #FFC93D;
  --gold-deep:    #E6A800;
  --blue:         #3FA9D4;
  --blue-deep:    #2E7FA3;
  --green:        #5A9E5A;

  /* Typography */
  --font-display: 'Baloo 2', sans-serif;
  --font-body:    'Outfit', sans-serif;

  /* Radius / Shadow */
  --radius-sm:  12px;
  --radius-md:  18px;
  --radius-lg:  28px;
  --shadow-sm:  0 2px 12px rgba(43,36,32,.08);
  --shadow-md:  0 6px 28px rgba(43,36,32,.12);
  --shadow-lg:  0 12px 48px rgba(43,36,32,.16);

  /* Spacing */
  --section-gap: 5rem;
  --container:   1160px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Utility ---- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section { padding-block: var(--section-gap); }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(232,103,74,.1);
  padding: .25rem .75rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}
.section-tag--light { color: #fff; background: rgba(255,255,255,.2); }

h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  max-width: 54ch;
}

.text-red { color: var(--red); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  padding: .7rem 1.6rem;
  border-radius: 99px;
  transition: transform .2s, box-shadow .2s, background .2s;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--red   { background: var(--red);   color: #fff; border-color: var(--red); }
.btn--red:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn--gold  { background: var(--gold);  color: var(--ink); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn--blue  { background: var(--blue);  color: #fff; border-color: var(--blue); }
.btn--blue:hover { background: var(--blue-deep); border-color: var(--blue-deep); }
.btn--green { background: var(--green); color: #fff; border-color: var(--green); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: #fff; }

/* ============================================================
   INSTAGRAM FEED (below hero)
   ============================================================ */
.insta-feed {
  background: var(--cream-2);
  padding-block: 3rem 2rem;
}

.insta-feed__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.insta-feed__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.insta-feed__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: .35rem;
}

.insta-feed__sub {
  font-size: .95rem;
  color: var(--ink-soft);
  margin: 0;
}

.insta-feed .lightwidget-widget {
  display: block;
  width: 100%;
  border: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,246,231,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(43,36,32,.08);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 68px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
}
.nav__logo { width: 38px; height: 38px; object-fit: contain; }
.nav__wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
  font-weight: 500;
  font-size: .9rem;
  color: var(--ink-soft);
}
.nav__links a { transition: color .2s; }
.nav__links a:hover { color: var(--red); }

.nav__cta { margin-left: 1rem; font-size: .875rem; padding: .55rem 1.25rem; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.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); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-block: 5rem 4rem;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: -80px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,201,61,.28) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 50ch;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 3rem;
}

/* Stats row */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}
.stat {}
.stat__number {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
}
.stat__label {
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Hero photo collage */
.hero__visual { flex-shrink: 0; }

.hero__collage {
  position: relative;
  width: clamp(340px, 46vw, 600px);
  height: clamp(400px, 52vw, 660px);
}

.hero__collage-img {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

/* ── Top-left corner ── */
.hero__collage-img--1  { width:42%; height:34%; top:0;    left:0;    z-index:2; transform:rotate(-3deg); }
.hero__collage-img--9  { width:30%; height:24%; top:4%;   left:4%;   z-index:3; transform:rotate(4deg); border:3px solid #fff; }

/* ── Top-right corner ── */
.hero__collage-img--2  { width:40%; height:32%; top:0;    right:0;   z-index:2; transform:rotate(3deg); }
.hero__collage-img--10 { width:28%; height:22%; top:5%;   right:5%;  z-index:3; transform:rotate(-4deg); border:3px solid #fff; }

/* ── Top-center edge ── */
.hero__collage-img--5  { width:34%; height:26%; top:0;    left:33%;  z-index:1; transform:rotate(1deg); }

/* ── Left-middle edge ── */
.hero__collage-img--7  { width:30%; height:28%; top:36%;  left:0;    z-index:1; transform:rotate(-2deg); }

/* ── Right-middle edge ── */
.hero__collage-img--8  { width:30%; height:28%; top:34%;  right:0;   z-index:1; transform:rotate(2deg); }

/* ── Bottom-left corner ── */
.hero__collage-img--3  { width:42%; height:34%; bottom:0; left:0;    z-index:2; transform:rotate(2deg); }
.hero__collage-img--11 { width:28%; height:22%; bottom:5%; left:5%;  z-index:3; transform:rotate(-3deg); border:3px solid #fff; }

/* ── Bottom-right corner ── */
.hero__collage-img--4  { width:40%; height:34%; bottom:0; right:0;   z-index:2; transform:rotate(-2deg); }
.hero__collage-img--12 { width:28%; height:22%; bottom:4%; right:4%; z-index:3; transform:rotate(3deg);  border:3px solid #fff; }

/* ── Bottom-center edge ── */
.hero__collage-img--6  { width:34%; height:26%; bottom:0; left:33%;  z-index:1; transform:rotate(-1deg); }

.hero__collage-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34%;
  z-index: 4;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.35));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(-50%, -50%); }
  50%       { transform: translate(-50%, calc(-50% - 10px)); }
}

/* ============================================================
   SUNRAY DIVIDER
   ============================================================ */
.sunray-divider {
  height: 56px;
  background:
    radial-gradient(ellipse 80% 100% at 50% 50%, transparent 0%, var(--cream) 100%),
    repeating-linear-gradient(
      115deg,
      rgba(232,103,74,.18) 0px,
      rgba(232,103,74,.18) 18px,
      transparent 18px,
      transparent 36px
    );
  margin-block: -1px;
}

.sunray-divider--gold {
  background:
    radial-gradient(ellipse 80% 100% at 50% 50%, transparent 0%, var(--cream) 100%),
    repeating-linear-gradient(
      115deg,
      rgba(255,201,61,.22) 0px,
      rgba(255,201,61,.22) 18px,
      transparent 18px,
      transparent 36px
    );
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__text h2 { margin-bottom: .75rem; }

.about__text p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

/* Pillars */
.pillars { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--cream-2);
  border-left: 4px solid transparent;
}
.pillar--red  { border-color: var(--red); }
.pillar--gold { border-color: var(--gold); }
.pillar--blue { border-color: var(--blue); }

.pillar__icon {
  flex-shrink: 0;
  margin-top: .1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.pillar--red  .pillar__icon { color: var(--red);  background: rgba(232,103,74,.12); }
.pillar--gold .pillar__icon { color: var(--gold-deep); background: rgba(255,201,61,.15); }
.pillar--blue .pillar__icon { color: var(--blue); background: rgba(63,169,212,.12); }

.pillar strong {
  display: block;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: .25rem;
}
.pillar p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

.about__photo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about__img--offset  { transform: translateX(18px); }
.about__img--offset2 { transform: translateX(-12px); }

/* ============================================================
   OUR WORK — Gallery
   ============================================================ */
.work { background: var(--cream-2); }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery__item:hover img { transform: scale(1.06); }

/* Big items */
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }

/* Caption — name always visible, detail on hover */
.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1rem .9rem;
  background: linear-gradient(transparent, rgba(43,36,32,.78));
  color: #fff;
}

.gallery__caption strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .2rem;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

.gallery__caption span {
  display: block;
  font-size: .78rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity .3s, max-height .3s;
  line-height: 1.4;
}

.gallery__item:hover .gallery__caption span {
  opacity: .9;
  max-height: 3rem;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(20,14,10,.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: lbFadeIn .2s ease;
}
.lightbox[hidden] { display: none; }

@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Two-column layout: photo left, info right */
.lightbox__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  max-width: 1100px;
  width: 100%;
  align-items: center;
}

/* ---- Photo side ---- */
.lightbox__photo-side {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.lightbox__img {
  max-height: 70vh;
  max-width: 100%;
  width: auto;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  animation: lbSlide .22s ease;
}

@keyframes lbSlide {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}

.lightbox__counter {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .06em;
}

/* Dot indicators */
.lightbox__dots {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  justify-content: center;
}
.lightbox__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.lightbox__dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* Prev / Next — positioned within photo-side */
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 1;
}
.lightbox__nav:hover { background: rgba(255,255,255,.28); }
.lightbox__nav--prev { left: -1.5rem; }
.lightbox__nav--next { right: -1.5rem; }

/* ---- Info side ---- */
.lightbox__info-side {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lightbox__event-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255,201,61,.15);
  border: 1px solid rgba(255,201,61,.3);
  padding: .25rem .75rem;
  border-radius: 99px;
  width: fit-content;
}

.lightbox__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  line-height: 1.2;
  color: #fff;
}

.lightbox__desc {
  font-size: .95rem;
  line-height: 1.75;
  color: rgba(255,255,255,.78);
}

/* Close button */
.lightbox__close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 10;
}
.lightbox__close:hover { background: rgba(255,255,255,.25); }

/* Mobile lightbox — stack vertically */
@media (max-width: 720px) {
  .lightbox { padding: 1rem; align-items: flex-start; overflow-y: auto; }
  .lightbox__layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-top: 3.5rem;
  }
  .lightbox__nav--prev { left: .25rem; }
  .lightbox__nav--next { right: .25rem; }
  .lightbox__img { max-height: 55vw; }
}


/* ============================================================
   FEEDING PROJECT
   ============================================================ */
.feeding {
  position: relative;
  padding-block: 5rem;
  overflow: hidden;
}

.feeding__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #D14E33 0%, #E8674A 50%, #e8874a 100%);
  z-index: 0;
}

.feeding__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  color: #fff;
}

.feeding__title {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.feeding__inner p {
  opacity: .92;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feeding__stats {
  display: flex;
  gap: 1.25rem;
  flex-wrap: nowrap;
  margin-bottom: 2rem;
}

.feeding__stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.feeding__stat-label {
  font-size: .8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .85;
}

.feeding__cta-text { font-weight: 600; margin-bottom: .75rem; }

/* Sponsor logos */
.sponsor-logos { margin-top: 2.5rem; }
.sponsor-logos__label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .7;
  margin-bottom: .75rem;
}
.sponsor-logos__row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}
.sponsor-placeholder {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius-sm);
  padding: .5rem 1rem;
  font-size: .85rem;
  font-weight: 600;
}
.sponsor-placeholder--more {
  font-style: italic;
  opacity: .75;
  border-style: dashed;
}

/* Photos mosaic */
.feeding__photo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 160px 130px 130px 130px;
  gap: .6rem;
  align-self: start;
  overflow: hidden;
}
.feeding__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.feeding__img--wide {
  grid-column: span 2;
}
.feeding__img--offset {
  position: static;
  bottom: auto;
  right: auto;
  width: 100%;
  aspect-ratio: 1;
  border: 4px solid rgba(255,255,255,.4);
}

/* ============================================================
   TEAM
   ============================================================ */
.team__cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  width: 240px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.team-card__photo-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: #fff;
}
.team-card__photo-placeholder--blue  { background: linear-gradient(135deg, var(--blue), var(--blue-deep)); }
.team-card__photo-placeholder--green { background: linear-gradient(135deg, var(--green), #3d7a3d); }

.team-card__photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--cream);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  margin: 0 auto 1.25rem;
  display: block;
}

/* ── Team Group Collage ─────────────────────────────── */
.team__layout {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
}
.team-collage {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 0 0 auto;
}
.team-collage--left { align-items: flex-end; }
.team-collage--right { align-items: flex-start; }
.team__cards {
  flex: 1;
}
.team-collage__item {
  background: #fff;
  border: none;
  padding: 10px 10px 38px;
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
  cursor: pointer;
  transform: rotate(var(--rot, 0deg)) translateX(var(--shift, 0px));
  transition: transform .2s, box-shadow .2s;
  border-radius: 2px;
  flex: 0 0 auto;
}
.team-collage__item:nth-child(odd)  { --shift: -18px; }
.team-collage__item:nth-child(even) { --shift:  18px; }
.team-collage__item:hover {
  transform: rotate(var(--rot, 0deg)) translateX(var(--shift, 0px)) scale(1.06);
  box-shadow: 0 10px 30px rgba(0,0,0,.32);
  z-index: 2;
  position: relative;
}
.team-collage__item img {
  display: block;
  width: 220px;
  height: 175px;
  object-fit: cover;
  border-radius: 1px;
}

/* Group photo overlay */
.group-photo-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.82);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.group-photo-overlay.is-open { display: flex; }
.group-photo-overlay img {
  max-width: min(90vw, 900px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 12px 48px rgba(0,0,0,.5);
  cursor: default;
}
.group-photo-overlay__close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: .8;
}
.group-photo-overlay__close:hover { opacity: 1; }

.team-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: .2rem;
}
.team-card__role {
  font-size: .82rem;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: .75rem;
}
.team-card__bio { font-size: .88rem; color: var(--ink-soft); line-height: 1.55; }

.team__volunteers {
  text-align: center;
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 48ch;
  margin-inline: auto;
  margin-bottom: 2rem;
}

/* LinkedIn link on team card */
.team-card__linkedin {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .75rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--blue-deep);
  text-decoration: none;
  transition: opacity .2s;
}
.team-card__linkedin:hover { opacity: .7; }

/* Past contributors dropdown */
.contributors {
  max-width: 760px;
  margin: 0 auto;
  border: 1.5px solid rgba(43,36,32,.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}

.contributors__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  list-style: none;
  user-select: none;
  gap: 1rem;
}
.contributors__toggle::-webkit-details-marker { display: none; }
.contributors__toggle:hover { background: var(--cream-2); }

.contributors__chevron {
  flex-shrink: 0;
  transition: transform .25s ease;
}
details[open] .contributors__chevron { transform: rotate(180deg); }

.contributors__body {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1.5px solid rgba(43,36,32,.08);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contributors__group h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .6rem;
}

.contributors__group ul {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.contributors__group li {
  font-size: .88rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .5rem;
  padding-bottom: .25rem;
  border-bottom: 1px solid rgba(43,36,32,.06);
}

.contributors__group li span {
  font-size: .78rem;
  color: var(--ink-soft);
  text-align: right;
  flex-shrink: 0;
}


/* ============================================================
   HOW YOU CAN HELP
   ============================================================ */
.help { background: var(--cream-2); }

.help__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.help-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.help-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.help-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.help-card__icon--red   { background: rgba(232,103,74,.12); }
.help-card__icon--gold  { background: rgba(255,201,61,.18); }
.help-card__icon--blue  { background: rgba(63,169,212,.14); }
.help-card__icon--green { background: rgba(90,158,90,.14); }

.help-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}
.help-card p { font-size: .9rem; color: var(--ink-soft); flex: 1; line-height: 1.55; }

.help-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.help-card__actions .btn { font-size: .82rem; padding: .55rem 1.1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.8);
  padding-block: 3rem;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.footer__logo { width: 42px; filter: brightness(0) invert(1); opacity: .9; }
.footer__name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: #fff; }
.footer__location { font-size: .8rem; opacity: .65; }

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  font-size: .88rem;
}
.footer__links a { opacity: .72; transition: opacity .2s; }
.footer__links a:hover { opacity: 1; }

.footer__contact { font-size: .85rem; width: 100%; text-align: center; }
.footer__contact a { color: var(--cream); opacity: .7; text-decoration: none; }
.footer__contact a:hover { opacity: 1; text-decoration: underline; }
.footer__copy { font-size: .8rem; opacity: .5; width: 100%; text-align: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Tablet: ≤ 960px ──────────────────────────────────── */
@media (max-width: 960px) {
  .hero__inner    { grid-template-columns: 1fr; }
  .hero__visual   { display: none; }
  .about__inner   { grid-template-columns: 1fr; }
  .about__img     { height: 200px; }
  .feeding__inner { grid-template-columns: 1fr; }
  .feeding__photo { display: grid; grid-template-rows: 180px 140px 140px 140px; }
  .feeding__img--wide { grid-column: span 2; }
  .help__grid     { grid-template-columns: repeat(2, 1fr); }
  .gallery        { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }

  /* Team: collapse side collages into horizontal rows */
  .team__layout {
    flex-direction: column;
    gap: 2rem;
  }
  .team-collage {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .team-collage--left,
  .team-collage--right { align-items: center; }
  .team-collage__item img { width: 170px; height: 136px; }
}

/* ── Mobile: ≤ 600px ──────────────────────────────────── */
@media (max-width: 600px) {
  :root { --section-gap: 3rem; }

  /* ── Nav ── */
  .nav__links {
    display: none;
    position: fixed;
    inset: 64px 0 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 1.2rem;
    z-index: 99;
    overflow-y: auto;
  }
  .nav__links.open { display: flex; }
  .nav__cta        { display: none; }
  .nav__hamburger  { display: flex; }

  /* ── Hero ── */
  .hero { padding-block: 5rem 3rem; }
  .hero__headline { font-size: clamp(2rem, 9vw, 3rem); }
  .hero__sub      { font-size: 1rem; }
  .hero__stats    { gap: .75rem 1.5rem; }
  .stat__number   { font-size: 1.5rem; }
  .stat__label    { font-size: .72rem; }
  .hero__actions  { flex-wrap: wrap; gap: .6rem; }

  /* ── Instagram feed ── */
  .insta-feed__header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* ── About ── */
  .about__inner   { grid-template-columns: 1fr; }
  .about__img     { height: 200px; }
  .about__img--offset,
  .about__img--offset2 { transform: none; }

  /* ── Gallery ── */
  .gallery        { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery__item--wide { grid-column: span 1; }
  .gallery__item--tall { grid-row:   span 1; }
  .gallery__caption span { opacity: .9; }

  /* ── Team ── */
  .team__layout   { flex-direction: column; gap: 1.5rem; }
  .team-collage {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: .75rem;
  }
  .team-collage--left,
  .team-collage--right { align-items: center; }
  .team-collage__item       { padding: 7px 7px 26px; }
  .team-collage__item img   { width: 120px; height: 96px; }
  .team-collage__item:nth-child(odd),
  .team-collage__item:nth-child(even) { --shift: 0px; }
  .team__cards  { gap: 1rem; }
  .team-card    { width: 100%; max-width: 320px; }

  /* ── Feeding ── */
  .feeding__stats { flex-direction: column; gap: 1rem; }

  /* ── Sponsor logos ── */
  .sponsor-logos__row { justify-content: center; }

  /* ── Get Involved ── */
  .help__grid { grid-template-columns: 1fr; }
  .help-card__actions { flex-direction: column; }
  .help-card__actions .btn {
    width: 100%;
    text-align: center;
    word-break: break-all;
    white-space: normal;
    font-size: .8rem;
  }

  /* ── Lightbox ── */
  .lightbox { padding: .75rem; }
  .lightbox__layout { padding-top: 3rem; }
  .lightbox__img    { max-height: 52vw; }

  /* ── Footer ── */
  .footer__inner   { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .footer__contact { text-align: left; }
  .footer__copy    { text-align: left; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__collage-logo { animation: none; }
  .btn, .team-card, .help-card, .gallery__item img { transition: none; }
  .gallery__caption { transform: translateY(0); }
}
