/* ============================================================
   VIBRANT HEALTH ADVOCATES DUNDEE — Warm & Human Community
   ============================================================ */

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

:root {
  --cream:       #FAF6F0;
  --cream-mid:   #F2EAE0;
  --cream-dark:  #E8D5C0;
  --terracotta:  #C4714A;
  --terra-light: #EFB99A;
  --terra-dark:  #9E4F2D;
  --purple:      #7B2D8B;
  --purple-light:#F0D9F5;
  --purple-mid:  #C18FCC;
  --text-dark:   #2D1F15;
  --text-mid:    #5C4033;
  --text-soft:   #8A6A5A;
  --white:       #FFFFFF;
  --radius-card: 24px;
  --radius-img:  28px;
  --radius-pill: 999px;
  --shadow-soft: 0 4px 24px rgba(45,31,21,0.10);
  --shadow-card: 0 8px 40px rgba(45,31,21,0.13);
  --shadow-lift: 0 16px 56px rgba(45,31,21,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.75;
  font-size: 17px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── TYPOGRAPHY ─────────────────────────────────────── */

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1.25em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.9;
  color: var(--text-mid);
}

.section-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--terracotta);
  display: block;
  margin-bottom: 0.6rem;
}

/* ── NAV ─────────────────────────────────────────────── */

.site-nav {
  background: var(--cream);
  border-bottom: 2px dotted var(--cream-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 clamp(1rem,4vw,3rem);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-lockup:hover { text-decoration: none; }
.brand-lockup img.brand-icon { height: 44px; width: auto; }
.brand-lockup img.brand-word { height: 28px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--text-mid);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--purple-light);
  color: var(--purple);
  text-decoration: none;
}
.nav-links .nav-cta a {
  background: var(--purple);
  color: var(--white);
  padding: 0.5rem 1.2rem;
}
.nav-links .nav-cta a:hover {
  background: var(--terra-dark);
  color: var(--white);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--cream-dark);
  border-radius: 10px;
  padding: 0.4rem 0.7rem;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 2px dotted var(--cream-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.1rem;
    box-shadow: var(--shadow-card);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; padding: 0.65rem 1rem; width: 100%; }
  .nav-links .nav-cta { width: 100%; }
  .nav-links .nav-cta a { display: block; text-align: center; }
}

/* ── FOOTER ──────────────────────────────────────────── */

.site-footer {
  background: var(--text-dark);
  color: var(--cream-mid);
  padding: clamp(3rem,6vw,5rem) clamp(1rem,4vw,3rem) 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px dotted rgba(255,255,255,0.2);
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-brand .brand-lockup { display: flex; align-items: center; gap: 0.6rem; }
.footer-brand .brand-icon { height: 40px; filter: brightness(0) invert(1); }
.footer-brand .brand-word  { height: 24px; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; }
.footer-brand .scio-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.08);
  border: 1px dotted rgba(255,255,255,0.25);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--purple-light);
  width: max-content;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--purple-light); text-decoration: none; }
.footer-col p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-col a { color: rgba(255,255,255,0.65); }
.footer-col a:hover { color: var(--purple-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ── LAYOUT HELPERS ─────────────────────────────────── */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem,4vw,3rem);
}
.section {
  padding: clamp(4rem,8vw,7rem) clamp(1rem,4vw,3rem);
}
.section-sm {
  padding: clamp(2.5rem,5vw,4rem) clamp(1rem,4vw,3rem);
}

.text-center { text-align: center; }
.text-purple { color: var(--purple); }
.text-terra  { color: var(--terracotta); }

/* ── SQUIGGLE DIVIDERS ──────────────────────────────── */

.squiggle-divider {
  width: 100%;
  height: 40px;
  overflow: visible;
  display: block;
}
.squiggle-terra { color: var(--terracotta); }
.squiggle-cream { color: var(--cream-mid); }
.squiggle-purple { color: var(--purple-mid); }

/* ── BUTTONS ─────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn-primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(123,45,139,0.35);
}
.btn-primary:hover { background: #6A2578; box-shadow: 0 8px 32px rgba(123,45,139,0.45); }

.btn-terra {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196,113,74,0.35);
}
.btn-terra:hover { background: var(--terra-dark); }

.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 2.5px solid var(--purple);
}
.btn-outline:hover { background: var(--purple-light); }

.btn-outline-cream {
  background: transparent;
  color: var(--white);
  border: 2.5px solid rgba(255,255,255,0.6);
}
.btn-outline-cream:hover { background: rgba(255,255,255,0.15); }

/* ── STAMP BADGE ─────────────────────────────────────── */

.stamp-badge {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px dashed var(--purple);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  background: var(--purple-light);
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple);
  line-height: 1.3;
}
.stamp-badge .stamp-num {
  font-size: 1.6rem;
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
}

/* ── POLAROID CARD ───────────────────────────────────── */

.polaroid {
  background: var(--white);
  border: 6px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  padding: 6px 6px 28px;
  display: inline-block;
}
.polaroid img {
  border-radius: 6px;
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.polaroid .polaroid-caption {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-soft);
  text-align: center;
  padding: 8px 6px 0;
  font-style: italic;
}

/* ── IMAGE CARDS (general) ───────────────────────────── */

.img-rounded {
  border-radius: var(--radius-img);
  overflow: hidden;
  display: block;
}

/* ── DOTTED BORDER BOX ───────────────────────────────── */

.dotted-box {
  border: 2px dashed var(--cream-dark);
  border-radius: var(--radius-card);
  padding: 2rem;
}
.dotted-box-purple {
  border-color: var(--purple-mid);
  background: var(--purple-light);
}
.dotted-box-terra {
  border-color: var(--terra-light);
  background: #FDF2EC;
}

/* ── HIGHLIGHT CARD ─────────────────────────────────── */

.highlight-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-soft);
  border: 1.5px solid var(--cream-dark);
  transition: transform 0.2s, box-shadow 0.2s;
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.highlight-card .card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.highlight-card h3 { margin-bottom: 0.6rem; font-size: 1.15rem; }
.highlight-card p { color: var(--text-mid); font-size: 0.95rem; }

/* ── IMPACT STATS ───────────────────────────────────── */

.impact-bar {
  background: var(--purple);
  padding: clamp(2.5rem,5vw,4rem) clamp(1rem,4vw,3rem);
}
.impact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: center;
}
.impact-item { color: var(--white); }
.impact-item .impact-num {
  font-size: clamp(2.2rem,5vw,3.5rem);
  font-weight: 800;
  line-height: 1;
  display: block;
  color: var(--purple-light);
}
.impact-item .impact-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  display: block;
  margin-top: 0.4rem;
}

/* ── PROGRAMME CARD ─────────────────────────────────── */

.programme-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1.5px solid var(--cream-dark);
  transition: transform 0.2s, box-shadow 0.2s;
}
.programme-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.programme-card-header {
  background: var(--cream-mid);
  padding: 1.5rem 1.75rem;
  border-bottom: 1.5px solid var(--cream-dark);
}
.programme-card-header .prog-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.programme-card-header h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.programme-card-header p { color: var(--text-mid); font-size: 0.9rem; margin: 0; }
.programme-card-body { padding: 1.5rem 1.75rem; color: var(--text-mid); font-size: 0.95rem; }

/* ── BLOG CARD ───────────────────────────────────────── */

.blog-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1.5px solid var(--cream-dark);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.blog-card-img {
  height: 220px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body {
  padding: 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text-dark); }
.blog-card-body .dek { color: var(--text-mid); font-size: 0.9rem; flex: 1; }
.blog-card-body .read-more {
  margin-top: 1.2rem;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.blog-card-body .read-more:hover { text-decoration: none; color: var(--terracotta); }

/* ── ARTICLE ─────────────────────────────────────────── */

.article-hero {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--radius-img);
  margin-bottom: 2.5rem;
}
.article-content {
  max-width: 760px;
  margin: 0 auto;
}
.article-content h1 { margin-bottom: 1rem; }
.article-dek {
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.8;
  border-left: 4px solid var(--terracotta);
  padding-left: 1.2rem;
  margin-bottom: 2rem;
}
.article-body p { margin-bottom: 1.4em; color: var(--text-mid); font-size: 1rem; line-height: 1.9; }
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 2rem;
}
.article-back:hover { color: var(--purple); text-decoration: none; }

/* ── TRUSTEE CARD ────────────────────────────────────── */

.trustee-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1.5px solid var(--cream-dark);
}
.trustee-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--purple-light);
  border: 3px solid var(--purple-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1rem;
}
.trustee-card h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.trustee-card .role { font-size: 0.85rem; color: var(--terracotta); font-weight: 700; }

/* ── HERO ─────────────────────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  height: clamp(420px, 55vw, 680px);
  object-fit: cover;
  display: block;
  border-radius: 0 0 40px 40px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(45,31,21,0.72) 0%,
    rgba(45,31,21,0.40) 55%,
    rgba(45,31,21,0.08) 100%
  );
  border-radius: 0 0 40px 40px;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: clamp(1.5rem,6vw,5rem);
  transform: translateY(-50%);
  max-width: min(580px, 55%);
  color: var(--white);
  z-index: 2;
}
.hero-content .section-label { color: var(--terra-light); }
.hero-content h1 { color: var(--white); margin-bottom: 1rem; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.hero-content p { color: rgba(255,255,255,0.88); line-height: 1.8; margin-bottom: 1.75rem; font-size: 1.05rem; }
.hero-content .btn-group { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Pulled-up card over hero */
.hero-pull-card {
  position: relative;
  z-index: 10;
  margin-top: -80px;
  margin-left: auto;
  margin-right: clamp(1rem,5vw,4rem);
  width: min(360px, 90%);
}
.hero-pull-card-inner {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-lift);
  border: 1.5px solid var(--cream-dark);
}
.hero-pull-card-inner .impact-row {
  display: flex;
  gap: 1.25rem;
  justify-content: space-around;
  text-align: center;
  flex-wrap: wrap;
}
.hero-pull-card-inner .stat-item .num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--purple);
  display: block;
}
.hero-pull-card-inner .stat-item .lbl {
  font-size: 0.72rem;
  color: var(--text-soft);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .hero-content { max-width: 100%; top: auto; transform: none; bottom: 180px; left: 1.25rem; right: 1.25rem; }
  .hero-photo { height: clamp(520px,80vw,680px); border-radius: 0 0 24px 24px; }
  .hero-overlay { border-radius: 0 0 24px 24px; }
  .hero-pull-card { margin-right: auto; margin-left: clamp(1rem,5vw,2rem); margin-top: -60px; }
}

/* ── STAGGERED GRID ─────────────────────────────────── */

.staggered-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.staggered-grid .card-offset-up   { margin-top: -2rem; }
.staggered-grid .card-offset-down { margin-top:  2rem; }

@media (max-width: 900px) {
  .staggered-grid { grid-template-columns: repeat(2, 1fr); }
  .staggered-grid .card-offset-up,
  .staggered-grid .card-offset-down { margin-top: 0; }
}
@media (max-width: 560px) {
  .staggered-grid { grid-template-columns: 1fr; }
}

/* ── 2-COL SPLIT ─────────────────────────────────────── */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem,5vw,5rem);
  align-items: center;
}
.split.split-flip { direction: rtl; }
.split.split-flip > * { direction: ltr; }
@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; }
  .split.split-flip { direction: ltr; }
}

/* ── WAYS GRID ───────────────────────────────────────── */

.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 900px) { .ways-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ways-grid { grid-template-columns: 1fr; } }

.way-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-soft);
  border: 1.5px solid var(--cream-dark);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.way-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.way-card .way-icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.way-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.way-card p { color: var(--text-mid); font-size: 0.95rem; }

/* ── CONTACT FORM ────────────────────────────────────── */

.contact-form {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: clamp(2rem,4vw,3rem);
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--cream-dark);
}
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 2px solid var(--cream-dark);
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--cream);
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-light);
  background: var(--white);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* ── BAND SECTION ────────────────────────────────────── */

.band-terra {
  background: var(--terracotta);
  color: var(--white);
  padding: clamp(3rem,6vw,5rem) clamp(1rem,4vw,3rem);
}
.band-terra h2 { color: var(--white); }
.band-terra p  { color: rgba(255,255,255,0.85); }
.band-terra .section-label { color: var(--terra-light); }

.band-cream-mid {
  background: var(--cream-mid);
  padding: clamp(3rem,6vw,5rem) clamp(1rem,4vw,3rem);
}

.band-purple-light {
  background: var(--purple-light);
  padding: clamp(3rem,6vw,5rem) clamp(1rem,4vw,3rem);
}

/* ── PAGE HERO (inner pages) ──────────────────────────── */

.page-hero {
  background: var(--cream-mid);
  padding: clamp(3rem,7vw,6rem) clamp(1rem,4vw,3rem) 0;
  text-align: center;
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero .lead { max-width: 660px; margin: 0 auto 2rem; }
.page-hero-img {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: clamp(280px,40vw,460px);
  object-fit: cover;
  border-radius: var(--radius-img) var(--radius-img) 0 0;
  display: block;
}

/* ── DECORATIVE ELEMENTS ─────────────────────────────── */

.deco-dot-pattern {
  position: relative;
}
.deco-dot-pattern::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 120px; height: 120px;
  background-image: radial-gradient(circle, var(--terra-light) 2px, transparent 2px);
  background-size: 16px 16px;
  border-radius: 50%;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

/* Tilted polaroids */
.tilt-left  { transform: rotate(-3deg); }
.tilt-right { transform: rotate(2.5deg); }
.tilt-tiny  { transform: rotate(-1deg); }

/* Tag chip */
.tag-chip {
  display: inline-block;
  background: var(--purple-light);
  color: var(--purple);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.tag-chip-terra {
  background: #FDE8DB;
  color: var(--terra-dark);
}

/* Intro indent box */
.intro-box {
  background: var(--purple-light);
  border-left: 5px solid var(--purple);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  padding: 1.75rem 2rem;
  margin-bottom: 2rem;
}
.intro-box p { color: var(--text-dark); margin: 0; font-size: 1.05rem; line-height: 1.85; }

/* ── MISC ─────────────────────────────────────────────── */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
@media (max-width: 640px) { .grid-2 { grid-template-columns: 1fr; } }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-3 { grid-template-columns: 1fr; } }

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5rem;
}
@media (max-width: 1000px) { .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .grid-4 { grid-template-columns: 1fr; } }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ── FULL-BLEED BAND PHOTO ───────────────────────────── */

.photo-band {
  position: relative;
  height: clamp(300px,40vw,500px);
  overflow: hidden;
}
.photo-band img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.photo-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(45,31,21,0.05), rgba(45,31,21,0.5));
}
.photo-band-text {
  position: absolute;
  bottom: 2.5rem;
  left: clamp(1.5rem,6vw,5rem);
  right: clamp(1.5rem,6vw,5rem);
  color: var(--white);
  max-width: 600px;
}
.photo-band-text h2 { color: var(--white); }
.photo-band-text p  { color: rgba(255,255,255,0.85); }

/* ── CONTACT INFO CARD ───────────────────────────────── */

.contact-info-card {
  background: var(--cream-mid);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  border: 2px dashed var(--cream-dark);
}
.contact-info-card h3 { margin-bottom: 1.25rem; font-size: 1.2rem; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.contact-row .icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-row p, .contact-row a { color: var(--text-mid); margin: 0; line-height: 1.6; }
.contact-row a:hover { color: var(--purple); }

/* ── CHARITY RIBBON ──────────────────────────────────── */

.charity-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-soft);
  box-shadow: var(--shadow-soft);
}
.charity-ribbon .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}

/* ── SCROLL ANIMATION HINT ────────────────────────────── */

@keyframes floatUp {
  0%   { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0);    opacity: 1; }
}

/* ── PRINT SAFE ──────────────────────────────────────── */

@media print {
  .site-nav, .nav-toggle { display: none; }
  .site-footer { background: #fff; color: #000; }
}
