@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Brand red — Nottingham Forest & Chelmsford City */
  --red: #E53233;
  --red-light: #E95152;
  --red-dark: #AC2626;
  --red-pale: #FDEFEF;

  /* Pastel palette */
  --pastel-peach:   #FDEEDE;   /* warm peach */
  --pastel-sage:    #D8EDDA;   /* soft sage green */
  --pastel-sky:     #D4E8F5;   /* calm sky blue */
  --pastel-lavender:#EAE0F5;   /* gentle lavender */
  --pastel-cream:   #FBF5E8;   /* warm cream */

  /* Neutrals — warmer than before */
  --white: #FFFFFF;
  --off-white: #FBF8F3;
  --grey-light: #EDE6DD;
  --grey-mid: #C8BDB5;
  --text-dark: #1A1410;
  --text: #2C2420;
  --text-muted: #7A6E68;

  --nav-h: 75px;
  --max-w: 1200px;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 2px 20px rgba(80,40,20,0.07);
  --shadow-lg: 0 8px 40px rgba(80,40,20,0.12);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a { color: var(--red); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--red-light); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  line-height: 1.25;
}

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

p { margin-bottom: 1rem; }

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

section { padding: 5rem 0; }

.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { margin-bottom: 0.5rem; }
.section-title p { color: var(--text-muted); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

.divider {
  width: 56px; height: 3px;
  background: var(--red);
  margin: 0.9rem auto 1.25rem;
  border-radius: 2px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  border: 2px solid transparent;
  text-align: center;
  line-height: 1.4;
}

.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover {
  background: var(--red-light); color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139,26,26,0.35);
}

.btn-outline { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }

.btn-white { background: var(--white); color: var(--red); }
.btn-white:hover { background: var(--off-white); color: var(--red-dark); transform: translateY(-2px); }

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-facebook {
  padding: 0.8rem 2rem; font-size: 0.95rem; font-weight: 500;
  line-height: 1.4;
  
  margin-top: 0.75rem;

  display: inline-flex; align-items: center;
  background: #1877F2; color: var(--white) !important;
  border-radius: var(--radius-sm);
}
.btn-facebook:hover { background: #fff; color: #0f5fcc !important; border: 1px solid #0f5fcc !important; transform: translateY(-2px);}



/* ── Navigation ── */
nav {
  position: sticky; top: 0; z-index: 1000;
  height: var(--nav-h);
  background: var(--white);
  box-shadow: 0 1px 12px rgba(0,0,0,0.1);
  display: flex; align-items: center;
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 1.5rem;
}

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

.nav-logo img { height: 50px; width: auto; }

.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; color: var(--red); font-weight: 700;
}
.nav-logo-text span {
  font-size: 0.68rem; color: var(--text-muted);
  letter-spacing: 0.14em; text-transform: uppercase;
}

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

.nav-links a {
  display: block; padding: 0.5rem 0.85rem;
  color: var(--text); font-size: 0.88rem; font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--red); background: var(--pastel-cream); }

.nav-facebook {
  display: inline-flex; align-items: center;
  background: #1877F2; color: var(--white) !important;
  padding: 0.5rem 1.1rem; border-radius: var(--radius-sm);
}
.nav-facebook:hover { background: #0f5fcc; color: #1877F2 !important; }




/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.5rem 0.85rem;
  color: var(--text); font-size: 0.88rem; font-weight: 500;
  background: none; border: none; cursor: pointer;
  border-radius: var(--radius-sm); font-family: inherit;
  transition: all 0.2s; white-space: nowrap;
}
.nav-dropdown-btn:hover,
.nav-dropdown-btn.active { color: var(--red); background: var(--pastel-cream); }
.nav-dropdown-btn svg { transition: transform 0.2s; flex-shrink: 0; }
.nav-dropdown.open .nav-dropdown-btn svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 6px); right: 0;
  min-width: 160px; background: var(--white);
  border-radius: var(--radius); box-shadow: 0 4px 20px rgba(80,40,20,0.12);
  list-style: none; padding: 0.4rem 0; z-index: 100;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 0.55rem 1rem;
  color: var(--text); font-size: 0.88rem; font-weight: 500;
  text-decoration: none; transition: all 0.2s;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active { color: var(--red); background: var(--pastel-cream); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none;
  padding: 0.4rem; border-radius: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-dark); border-radius: 2px; transition: all 0.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 (Home) ── */
.hero {
  min-height: calc(90vh - var(--nav-h));
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  position: relative; overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.035'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 1.5rem;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem; align-items: center;
}

.hero-text h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-text h1 em { font-style: italic; opacity: 0.88; }
.hero-text p { color: rgba(255,255,255,0.82); font-size: 1.1rem; margin-bottom: 2rem; line-height: 1.7; }
.hero-text .btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image { position: relative; }
.hero-image img {
  width: 100%; max-height: 480px; object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-image-badge {
  position: absolute; bottom: -1.25rem; right: -1.25rem;
  background: var(--white); padding: 1rem 1.5rem;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-image-badge strong {
  display: block; font-family: 'Playfair Display', serif;
  color: var(--red); font-size: 1rem;
}
.hero-image-badge span { font-size: 0.78rem; color: var(--text-muted); }

/* ── Art of the Day ── */
.art-of-day { background: var(--pastel-cream); }

.aod-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}

.aod-image-wrap { position: relative; }
.aod-image-wrap img {
  width: 100%; max-height: 520px; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
}

.aod-label {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--red); color: var(--white);
  padding: 0.4rem 1rem; border-radius: 30px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
}

.aod-info .date {
  font-size: 0.82rem; color: var(--red);
  font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 0.75rem;
}
.aod-info h2 { margin-bottom: 1rem; }
.aod-info p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.5rem; }
.aod-info .artist-tag {
  font-style: italic; color: var(--text-muted); font-size: 0.9rem;
  border-left: 3px solid var(--red); padding-left: 1rem; margin-bottom: 1.75rem;
}

/* ── Mission Cards ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--white); border: 1px solid var(--grey-light);
  border-radius: var(--radius); padding: 2rem;
  transition: all 0.3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--grey-mid); }

/* Pastel tint per card in a 3-card grid */
.cards-grid .card:nth-child(1) { background: var(--pastel-peach);   border-color: #F5D8B0; }
.cards-grid .card:nth-child(2) { background: var(--pastel-sage);    border-color: #A8D4AC; }
.cards-grid .card:nth-child(3) { background: var(--pastel-sky);     border-color: #A0CCE8; }

.card-icon {
  width: 54px; height: 54px;
  background: rgba(255,255,255,0.7); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.card-icon svg { width: 26px; height: 26px; stroke: var(--red); fill: none; stroke-width: 1.75; }
.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--text-muted); margin: 0; line-height: 1.65; }

/* ── Art Therapy CTA ── */
.therapy-cta {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
  text-align: center; padding: 6rem 0;
}
.therapy-cta h2 { color: var(--white); margin-bottom: 1rem; }
.therapy-cta p { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 580px; margin: 0 auto 2rem; }


/* ── Page Hero (sub-pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  padding: 4.5rem 0; text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  position: relative; border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  aspect-ratio: 4/3; box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(139,26,26,0.88) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.25rem; opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h3 { color: var(--white); font-size: 1.05rem; margin: 0; }
.gallery-overlay span { color: rgba(255,255,255,0.72); font-size: 0.82rem; }

/* ── Lightbox ── */
.lightbox {
  display: none; position: fixed; inset: 0;
  z-index: 9999; background: rgba(0,0,0,0.93);
  align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.active { display: flex; }

.lightbox-content { position: relative; max-width: 900px; width: 100%; text-align: center; }
.lightbox-content img {
  max-height: 80vh; width: auto; max-width: 100%;
  border-radius: var(--radius); margin: 0 auto;
}
.lightbox-caption {
  color: var(--white); margin-top: 1rem;
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
}

.lightbox-close {
  position: fixed; top: 1.25rem; right: 1.25rem;
  background: rgba(255,255,255,0.12); border: none;
  color: var(--white); font-size: 1.8rem;
  cursor: pointer; line-height: 1; padding: 0.3rem 0.6rem;
  border-radius: 6px; transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-prev, .lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none;
  color: var(--white); font-size: 2rem;
  cursor: pointer; padding: 0.75rem 1rem;
  border-radius: 4px; transition: background 0.2s;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }

/* ── About page ── */
.about-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-intro img {
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  width: 100%; object-fit: cover; max-height: 500px;
}

.text-wrap-photo::after { content: ""; display: table; clear: both; }
.text-wrap-photo img {
  float: right;
  width: 42%;
  margin: 0 0 1.5rem 2.5rem;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.about-photos {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.about-photos img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: var(--radius-sm); box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.about-photos img:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }

/* ── Art Therapy page ── */
.therapy-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.therapy-intro img {
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  width: 100%; object-fit: cover;
}

.benefits-list { list-style: none; margin: 1.5rem 0; }
.benefits-list li {
  display: flex; align-items: flex-start;
  gap: 0.75rem; padding: 0.75rem 0;
  border-bottom: 1px solid var(--grey-light); line-height: 1.5;
}
.benefits-list li:last-child { border-bottom: none; }

.check {
  flex-shrink: 0; width: 22px; height: 22px;
  background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 0.1rem;
}
.check svg { width: 12px; height: 12px; stroke: white; fill: none; stroke-width: 2.5; }

.resource-heading {
  font-family: 'Playfair Display', serif;
  color: var(--red-dark); margin-top: 1.5rem;
}

.resource-list { list-style: none; margin: 1rem 0 1.5rem; }
.resource-list li {
  border-bottom: 1px solid var(--grey-light);
}
.resource-list li:last-child { border-bottom: none; }
.resource-list a {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.65rem 0; color: var(--text-dark);
  font-weight: 500; transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
}
.resource-list a::before {
  content: '';
  flex-shrink: 0; width: 7px; height: 7px;
  border-radius: 50%; background: var(--red);
  transition: transform 0.25s var(--ease);
}
.resource-list a:hover { color: var(--red); padding-left: 0.35rem; }
.resource-list a:hover::before { transform: scale(1.3); }

.quote-block {
  background: var(--pastel-sage);
  border-left: 4px solid var(--red);
  padding: 1.5rem 2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2.5rem 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-style: italic;
  color: var(--text-dark); line-height: 1.65;
}

/* ── Donate page ── */
.donate-intro {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem; align-items: start;
}
.gfm-embed-wrap { min-height: 380px; }

.donate-reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.donate-reason {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--off-white); border-radius: var(--radius);
}
.donate-reasons .donate-reason:nth-child(1) { background: var(--pastel-peach); }
.donate-reasons .donate-reason:nth-child(2) { background: var(--pastel-sage); }
.donate-reasons .donate-reason:nth-child(3) { background: var(--pastel-sky); }
.donate-reasons .donate-reason:nth-child(4) { background: var(--pastel-lavender); }
.donate-reason .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; color: var(--red);
  font-weight: 700; margin-bottom: 0.5rem; display: block;
}
.donate-reason p { color: var(--text-muted); margin: 0; font-size: 0.92rem; }

/* ── Contact page ── */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 4rem; align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 2rem; }

.contact-item {
  display: flex; align-items: flex-start;
  gap: 1rem; margin-bottom: 1.5rem;
}
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--pastel-sky);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item:nth-child(1) .contact-item-icon { background: var(--pastel-peach); }
.contact-item:nth-child(2) .contact-item-icon { background: var(--pastel-sky); }
.contact-item:nth-child(3) .contact-item-icon { background: var(--pastel-sage); }
.contact-item:nth-child(4) .contact-item-icon { background: var(--pastel-lavender); }
.contact-item-icon svg { width: 20px; height: 20px; stroke: var(--red); fill: none; stroke-width: 1.75; }
.contact-item-text strong {
  display: block; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-muted); margin-bottom: 0.2rem;
}
.contact-item-text a, .contact-item-text span { color: var(--text-dark); font-size: 0.95rem; }

/* ── Form ── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.84rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 0.4rem; letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--grey-mid); border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 0.95rem;
  color: var(--text); background: var(--white);
  transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(139,26,26,0.08);
}
.form-group textarea { resize: vertical; min-height: 150px; }

.form-success {
  display: none;
  background: #f0fdf4; border: 1px solid #86efac;
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem; color: #166534; margin-top: 1rem;
}

/* ── Footer ── */
footer { background: #1A0808; color: rgba(255,255,255,0.7); }

.footer-main {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; padding: 4rem 0 3rem;
}

.footer-brand img {
  height: 54px; margin-bottom: 1.1rem;
  filter: brightness(0) invert(1);
}
.footer-brand p { font-size: 0.88rem; line-height: 1.65; margin-bottom: 0.5rem; max-width: 320px; }

.footer-links h4, .footer-contact h4 {
  color: var(--white); font-family: 'Inter', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 0.6rem; }
.footer-links ul a {
  color: rgba(255,255,255,0.6); font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links ul a:hover { color: var(--white); }

.footer-contact p { font-size: 0.88rem; margin-bottom: 0.5rem; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--white); }

.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--white); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
.footer-social a[aria-label="Facebook"] svg { fill: #1877F2; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem;
}
.footer-bottom p { margin: 0; }
.charity-reg { color: rgba(255,255,255,0.38); font-size: 0.76rem; }

/* ── Utilities ── */
.bg-off-white { background: var(--pastel-cream); }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

/* ── Scroll animations ── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem; }
  .hero-text { text-align: center; }
  .hero-text .btn-group { justify-content: center; }
  .hero-image-badge { right: 0; bottom: -1rem; }

  .aod-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-intro { grid-template-columns: 1fr; gap: 2rem; }
  .text-wrap-photo { display: flex; flex-direction: column; }
  .text-wrap-photo img { float: none; width: 100%; margin: 2rem 0 0; order: 1; }
  .therapy-intro { grid-template-columns: 1fr; gap: 2rem; }
  .donate-intro { grid-template-columns: 1fr; gap: 2rem; }
  .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 3rem 0 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .page-hero { padding: 3rem 0; }

  .nav-hamburger { display: flex; }
  .nav-links {
    display: none; position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white); flex-direction: column;
    padding: 1rem 1.5rem 1.5rem; gap: 0.2rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-top: 1px solid var(--grey-light);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 0.75rem 1rem; }
  .nav-dropdown-btn { width: 100%; padding: 0.75rem 1rem; justify-content: space-between; }
  .nav-dropdown-menu {
    position: static; box-shadow: none; border-radius: 0;
    background: var(--pastel-cream); padding: 0;
  }
  .nav-dropdown-menu a { padding: 0.6rem 1.5rem; }

  .about-photos { grid-template-columns: repeat(2, 1fr); }

  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .about-photos { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
}
