/* ========= Smile With Shine Welfare Society ========= */
/* Modern, compassionate, mobile-first design */

:root {
  --primary: #e94e77;
  --primary-dark: #c8395f;
  --secondary: #f6a93b;
  --secondary-dark: #e08b1e;
  --accent: #6c5ce7;
  --dark: #2d2235;
  --text: #3a3349;
  --muted: #6e6680;
  --bg: #fffaf6;
  --card: #ffffff;
  --soft: #fdeee5;
  --border: rgba(45, 34, 53, 0.08);
  --shadow-sm: 0 4px 14px rgba(45, 34, 53, 0.06);
  --shadow-md: 0 12px 32px rgba(45, 34, 53, 0.10);
  --shadow-lg: 0 24px 60px rgba(45, 34, 53, 0.14);
  --gradient: linear-gradient(135deg, #e94e77 0%, #f6a93b 100%);
  --gradient-soft: linear-gradient(135deg, #fff0e5 0%, #ffe5ec 100%);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

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

/* ============ Typography ============ */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; color: var(--text); }

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
  padding: 6px 14px;
  background: var(--soft);
  border-radius: 100px;
}

/* ============ Header / Nav ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 246, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--dark);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(233, 78, 119, 0.18);
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Social icons in footer */
.socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: #fff !important;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}

.socials a:hover {
  background: var(--gradient);
  transform: translateY(-2px);
  color: #fff !important;
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.brand-text { line-height: 1.1; }
.brand-text small {
  display: block;
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--soft);
}

.nav-cta {
  padding: 10px 22px !important;
  background: var(--gradient);
  color: #fff !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  box-shadow: 0 6px 16px rgba(233, 78, 119, 0.3);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(233, 78, 119, 0.4);
  background: var(--gradient) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  font-size: 1.5rem;
  color: var(--dark);
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 20px rgba(233, 78, 119, 0.32);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(233, 78, 119, 0.42);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}

.btn-outline:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content .eyebrow { animation: fadeUp 0.7s ease both; }
.hero-content h1 {
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #2d2235 0%, #e94e77 60%, #f6a93b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-image-wrap {
  position: relative;
  animation: fadeIn 1s 0.2s ease both;
}

.hero-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3.6;
  object-fit: cover;
  object-position: center 30%;
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: var(--gradient);
  border-radius: var(--radius-lg);
  opacity: 0.12;
  z-index: -1;
  transform: rotate(-2deg);
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #fff;
  padding: 16px 22px;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge .badge-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.hero-badge .badge-label {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.3;
}

/* Decorative blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  z-index: -1;
  pointer-events: none;
}
.blob-1 { width: 380px; height: 380px; background: #ffd1b8; top: -100px; left: -120px; }
.blob-2 { width: 320px; height: 320px; background: #ffc9d5; bottom: -120px; right: -100px; }

/* ============ Section helpers ============ */
section { padding: 80px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-header p { color: var(--muted); font-size: 1.05rem; }

/* ============ Cards: Vision/Mission ============ */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.vm-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.vm-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.vm-card-body { padding: 32px; }

.vm-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gradient);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(233, 78, 119, 0.28);
}

.vm-card p { color: var(--muted); margin-bottom: 0; }

/* ============ Objectives ============ */
.objectives {
  background: var(--gradient-soft);
}

.obj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.obj-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.obj-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(233, 78, 119, 0.3);
}

.obj-card .obj-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  font-weight: 700;
}

.obj-card span.obj-text {
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  font-size: 0.97rem;
}

/* ============ CTA Banner ============ */
.cta-banner {
  background: var(--gradient);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}
.cta-banner::before { width: 280px; height: 280px; top: -100px; right: -80px; }
.cta-banner::after { width: 200px; height: 200px; bottom: -80px; left: -60px; }

.cta-banner h2 { color: #fff; margin-bottom: 1rem; position: relative; }
.cta-banner p { color: rgba(255, 255, 255, 0.92); font-size: 1.1rem; max-width: 580px; margin: 0 auto 1.75rem; position: relative; }
.cta-banner .btn-light { position: relative; }

/* ============ Footer ============ */
.footer {
  background: var(--dark);
  color: #c9c0d6;
  padding: 70px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer h4 {
  color: #fff;
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.footer p, .footer a { color: #c9c0d6; font-size: 0.94rem; }
.footer a:hover { color: #fff; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }

.footer .brand { color: #fff; margin-bottom: 16px; }
.footer .brand small { color: #9890a8; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #9890a8;
}

/* ============ Page Hero ============ */
.page-hero {
  background: var(--gradient-soft);
  padding: 80px 0 60px;
  text-align: center;
}

.page-hero h1 {
  background: linear-gradient(135deg, #2d2235 0%, #e94e77 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-hero p {
  color: var(--muted);
  max-width: 680px;
  margin: 1rem auto 0;
  font-size: 1.08rem;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* ============ Interventions ============ */
.intervention {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.intervention:nth-child(even) {
  grid-template-columns: 1fr 1.1fr;
}
.intervention:nth-child(even) .intervention-images {
  order: -1;
}

.intervention h2 {
  position: relative;
  padding-left: 22px;
  margin-bottom: 1.25rem;
}

.intervention h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 6px;
  background: var(--gradient);
  border-radius: 4px;
}

.intervention p { color: var(--text); font-size: 1.02rem; }

.intervention-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.intervention-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.intervention-images img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.intervention-images img:first-child {
  grid-column: 1 / -1;
  height: 280px;
}

/* ============ Programmes ============ */
.programme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.programme-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.programme-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.programme-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.programme-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.programme-card h3 { color: var(--dark); }
.programme-card ul { list-style: none; margin-top: auto; padding-top: 16px; }
.programme-card ul li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px dashed var(--border);
  font-size: 0.95rem;
}

.programme-card ul li span:first-child { color: var(--text); }
.programme-card ul li .price {
  font-weight: 700;
  color: var(--primary);
}

/* ============ Tuesday Breakfast ============ */
.breakfast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}

.breakfast-grid img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.breakfast-grid p {
  font-size: 1.08rem;
  color: var(--text);
}

.breakfast-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 60px 0;
}

.stat-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.stat-card .stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card .stat-label { color: var(--muted); font-size: 0.95rem; }

/* ============ Gallery ============ */
.gallery-section { padding: 60px 0; }

.gallery-section h2 {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 32px;
  display: inline-block;
}

.gallery-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: var(--gradient);
  border-radius: 4px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  position: relative;
  aspect-ratio: 1 / 1;
  transition: var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.35));
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.gallery-item { cursor: zoom-in; }

.gallery-item:hover::after { opacity: 1; }

.gallery-item.tall { grid-row: span 2; aspect-ratio: 1 / 2; }

/* Natural aspect ratio gallery — preserves original image proportions (masonry-like) */
.gallery-grid--natural {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  align-items: start;
}

.gallery-grid--natural .gallery-item {
  aspect-ratio: auto;
  height: auto;
  background: #fff;
}

.gallery-grid--natural .gallery-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ============ Donate Page ============ */
.donate-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.donate-qr {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  position: sticky;
  top: 100px;
}

.donate-qr img {
  width: 100%;
  max-width: 380px;
  margin: 0 auto 24px;
  border-radius: var(--radius);
}

.donate-qr h3 {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.4rem;
}

.donate-qr .pay-method {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.donate-content h2 { margin-bottom: 1.5rem; }

.donate-image-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
  height: 320px;
}

.donate-image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.donation-tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 32px 0;
}

.tier-card {
  background: #fff;
  padding: 24px 28px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid var(--border);
  transition: var(--transition);
  gap: 20px;
}

.tier-card:hover {
  border-color: var(--primary);
  transform: translateX(4px);
}

.tier-card h4 {
  color: var(--dark);
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.tier-card .tier-desc { color: var(--muted); font-size: 0.92rem; }

.tier-card .tier-amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}

.info-box {
  background: var(--soft);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  border-radius: 12px;
  margin: 24px 0;
}

.info-box p { margin-bottom: 0; color: var(--text); font-size: 0.96rem; }

/* ============ Animations ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============ Lightbox ============ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 5, 15, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-stage {
  position: relative;
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox img {
  max-width: 92vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: lbZoom 0.3s ease;
  background: #111;
}

@keyframes lbZoom {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--transition);
  z-index: 2;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.lightbox-close { top: 24px; right: 28px; }
.lightbox-prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 24px; top: 50%; transform: translateY(-50%); }

.lightbox-prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.05); }

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.35);
  padding: 8px 16px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}

/* Make every gallery image look clickable */
.gallery-item img { cursor: zoom-in; }

@media (max-width: 600px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 14px; right: 14px; }
}

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .hero-grid,
  .vm-grid,
  .breakfast-grid,
  .donate-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .donate-qr { position: static; }

  .intervention,
  .intervention:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 60px;
  }

  .intervention:nth-child(even) .intervention-images { order: 0; }

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

  .hero { padding: 50px 0 60px; }
  section { padding: 60px 0; }
}

@media (max-width: 700px) {
  .menu-toggle { display: block; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display: none;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 12px 16px;
    border-radius: 10px;
  }

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

  .cta-banner { padding: 40px 24px; }

  .hero-badge { left: 12px; bottom: -16px; }

  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1 / 1; }

  h1 { font-size: 2.1rem; }
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 6px;
}
