/* ============================================================
   VIBRANT HEALTH ADVOCATES - ONYX
   Warm & Human Community — Full Design System
   ============================================================ */

:root {
  --cream:        #FDF8F0;
  --cream-mid:    #F5EDE0;
  --cream-dark:   #EDD9C0;
  --terra:        #C4652A;
  --terra-light:  #E8845A;
  --terra-pale:   #FAE8D8;
  --brand:        #7B2D8B;
  --brand-light:  #F0D9F5;
  --brand-dark:   #5A1F6B;
  --ink:          #2C1810;
  --muted:        #7A6055;
  --charcoal:     #3D2B20;
  --white:        #FFFFFF;
  --shadow:       rgba(44,24,16,0.11);
  --shadow-deep:  rgba(44,24,16,0.22);
}

/* ---- Reset ---- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:system-ui,-apple-system,'Segoe UI',Helvetica,Arial,sans-serif;
  background:var(--cream);
  color:var(--ink);
  line-height:1.75;
  font-size:1.0625rem;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--brand);text-decoration:none}
a:hover{text-decoration:underline}

/* ---- Typography ---- */
h1,h2,h3,h4,h5{
  font-weight:800;
  line-height:1.2;
  color:var(--charcoal);
  letter-spacing:-0.01em;
}
h1{font-size:clamp(2rem,5vw,3.6rem)}
h2{font-size:clamp(1.6rem,3.5vw,2.5rem)}
h3{font-size:clamp(1.15rem,2.5vw,1.55rem)}
h4{font-size:1.05rem}
p{margin-bottom:1.25rem;color:var(--charcoal)}
p:last-child{margin-bottom:0}
.lead{font-size:clamp(1.05rem,2vw,1.2rem);line-height:1.85;color:var(--muted)}

/* ---- Layout ---- */
.container{
  max-width:1140px;
  margin-inline:auto;
  padding-inline:clamp(1.25rem,5vw,2.5rem);
}
.container--narrow{max-width:760px;margin-inline:auto;padding-inline:clamp(1rem,4vw,2rem)}

/* ---- Utility ---- */
.text-center{text-align:center}
.text-brand{color:var(--brand)}
.text-terra{color:var(--terra)}
.mt-1{margin-top:1rem}.mt-2{margin-top:2rem}.mt-3{margin-top:3rem}
.mb-1{margin-bottom:1rem}.mb-2{margin-bottom:2rem}

/* ---- Buttons ---- */
.btn{
  display:inline-block;
  background:var(--brand);
  color:var(--white);
  padding:0.85rem 2.2rem;
  border-radius:100px;
  font-weight:700;
  font-size:1rem;
  letter-spacing:0.01em;
  transition:background 0.2s,transform 0.15s,box-shadow 0.2s;
  border:none;
  cursor:pointer;
  text-decoration:none;
  box-shadow:0 4px 16px rgba(123,45,139,0.25);
}
.btn:hover{background:var(--brand-dark);transform:translateY(-2px);text-decoration:none;box-shadow:0 6px 24px rgba(123,45,139,0.35)}
.btn--terra{background:var(--terra);box-shadow:0 4px 16px rgba(196,101,42,0.25)}
.btn--terra:hover{background:#a8531f;box-shadow:0 6px 24px rgba(196,101,42,0.35)}
.btn--outline{background:transparent;border:2.5px solid var(--brand);color:var(--brand);box-shadow:none}
.btn--outline:hover{background:var(--brand);color:var(--white)}
.btn--white{background:var(--white);color:var(--brand);box-shadow:0 4px 16px rgba(0,0,0,0.12)}
.btn--white:hover{background:var(--cream);color:var(--brand)}

/* ---- Section Label Pill ---- */
.section-label{
  display:inline-block;
  font-size:0.72rem;
  font-weight:800;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--terra);
  background:var(--terra-pale);
  padding:0.3rem 1rem;
  border-radius:100px;
  margin-bottom:1rem;
}
.section-label--brand{color:var(--brand);background:var(--brand-light)}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav{
  background:var(--cream);
  border-bottom:2px solid var(--cream-dark);
  position:sticky;
  top:0;
  z-index:200;
}
.site-nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0.75rem clamp(1.25rem,5vw,2.5rem);
  max-width:1140px;
  margin-inline:auto;
}
.site-nav__brand{
  display:flex;
  align-items:center;
  gap:0.65rem;
  text-decoration:none;
  flex-shrink:0;
}
.site-nav__logo{height:46px;width:auto}
.site-nav__wordmark{height:34px;width:auto}
.site-nav__links{
  display:flex;
  align-items:center;
  gap:clamp(0.6rem,2vw,1.6rem);
  list-style:none;
  flex-wrap:wrap;
}
.site-nav__links a{
  font-weight:700;
  font-size:0.88rem;
  color:var(--charcoal);
  text-decoration:none;
  padding:0.3rem 0.1rem;
  border-bottom:2.5px solid transparent;
  transition:color 0.15s,border-color 0.15s;
}
.site-nav__links a:hover,.site-nav__links a.active{color:var(--brand);border-bottom-color:var(--brand)}
.nav-cta{
  background:var(--brand) !important;
  color:var(--white) !important;
  padding:0.5rem 1.35rem !important;
  border-radius:100px !important;
  border-bottom:none !important;
}
.nav-cta:hover{background:var(--brand-dark) !important}
.nav-toggle{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  padding:0.25rem;
  flex-direction:column;
  gap:5px;
}
.nav-toggle span{display:block;width:26px;height:3px;background:var(--charcoal);border-radius:2px;transition:0.3s}
@media(max-width:820px){
  .nav-toggle{display:flex}
  .site-nav__links{
    display:none;
    position:absolute;
    top:100%;left:0;right:0;
    background:var(--cream);
    border-bottom:2px solid var(--cream-dark);
    flex-direction:column;
    padding:1rem 1.5rem 1.5rem;
    gap:0.5rem;
    align-items:flex-start;
    box-shadow:0 8px 24px var(--shadow-deep);
  }
  .site-nav__links.open{display:flex}
}

/* ============================================================
   HERO (full-bleed, pulled-up card pattern)
   ============================================================ */
.hero{
  position:relative;
  min-height:700px;
  background:var(--charcoal);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  overflow:visible;
}
.hero__img{
  position:absolute;
  inset:0;
  width:100%;height:100%;
  object-fit:cover;
  object-position:center 40%;
}
.hero__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    170deg,
    rgba(44,24,16,0.30) 0%,
    rgba(44,24,16,0.60) 55%,
    rgba(44,24,16,0.82) 100%
  );
}
.hero__content{
  position:relative;
  z-index:2;
  max-width:1140px;
  padding:clamp(2rem,5vw,4rem) clamp(1.5rem,5vw,3rem) clamp(5rem,10vw,8rem);
  margin-inline:auto;
  width:100%;
}
.hero__tag{
  display:inline-block;
  background:var(--brand-light);
  color:var(--brand);
  font-size:0.72rem;
  font-weight:800;
  letter-spacing:0.16em;
  text-transform:uppercase;
  padding:0.35rem 1.1rem;
  border-radius:100px;
  margin-bottom:1.5rem;
}
.hero__title{
  color:var(--white);
  font-size:clamp(2rem,5vw,3.75rem);
  line-height:1.1;
  margin-bottom:1.25rem;
  max-width:780px;
  text-shadow:0 2px 16px rgba(0,0,0,0.35);
}
.hero__sub{
  color:rgba(255,255,255,0.88);
  font-size:clamp(1rem,2vw,1.2rem);
  line-height:1.8;
  max-width:580px;
}
/* Pulled-up card — overlaps bottom of hero */
.hero-pull{
  position:relative;
  z-index:10;
  max-width:1140px;
  margin-inline:auto;
  padding-inline:clamp(1.25rem,5vw,2.5rem);
  margin-top:-100px;
}
.hero-pull__card{
  background:var(--white);
  border-radius:28px;
  padding:clamp(1.5rem,4vw,2.75rem);
  box-shadow:0 12px 48px var(--shadow-deep);
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:1.5rem;
  border:2px solid var(--cream-dark);
}
.stat-item{text-align:center;padding:0.5rem}
.stat-item__number{
  font-size:clamp(2.4rem,5vw,3.8rem);
  font-weight:900;
  color:var(--brand);
  line-height:1;
  display:block;
}
.stat-item__label{
  font-size:0.8rem;
  font-weight:700;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:0.1em;
  margin-top:0.35rem;
  display:block;
}
@media(max-width:600px){
  .hero{min-height:580px}
  .hero__content{padding-bottom:5rem}
  .hero-pull{margin-top:-60px}
}

/* ============================================================
   SVG SQUIGGLE DIVIDERS
   ============================================================ */
.squiggle-wrap{
  overflow:hidden;
  line-height:0;
  height:54px;
}
.squiggle-wrap svg{width:100%;height:54px;display:block}

/* ============================================================
   SECTIONS
   ============================================================ */
.section{padding:clamp(3rem,8vw,6rem) 0}
.section--cream{background:var(--cream)}
.section--mid{background:var(--cream-mid)}
.section--brand{background:var(--brand)}
.section--brand h2,.section--brand h3,.section--brand p{color:var(--white)}
.section--terra{background:var(--terra)}
.section--terra h2,.section--terra h3,.section--terra p{color:var(--white)}
.section--charcoal{background:var(--charcoal)}
.section--charcoal h2,.section--charcoal h3,.section--charcoal p{color:var(--white)}

/* ============================================================
   INTRO BLOCK
   ============================================================ */
.intro-block{
  max-width:820px;
  margin-inline:auto;
  text-align:center;
}
.intro-block p{font-size:clamp(1rem,2vw,1.15rem);line-height:1.9;color:var(--charcoal)}

/* ============================================================
   HIGHLIGHT CARDS
   ============================================================ */
.highlights-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
  gap:2rem;
  margin-top:2.5rem;
}
.highlight-card{
  background:var(--white);
  border-radius:24px;
  padding:2rem 1.75rem;
  box-shadow:0 4px 22px var(--shadow);
  border:2.5px dotted var(--cream-dark);
  transition:transform 0.2s,box-shadow 0.2s;
  position:relative;
}
.highlight-card:nth-child(2){margin-top:2rem}
.highlight-card:nth-child(3){margin-top:-1rem}
.highlight-card:hover{transform:translateY(-5px);box-shadow:0 10px 36px var(--shadow-deep)}
.highlight-card__icon{font-size:2.75rem;margin-bottom:1rem;display:block;line-height:1}
.highlight-card__title{font-size:1.2rem;font-weight:800;color:var(--charcoal);margin-bottom:0.75rem}
.highlight-card__blurb{color:var(--muted);font-size:0.95rem;line-height:1.75;margin:0}

/* ============================================================
   POLAROID CLUSTER
   ============================================================ */
.polaroid-cluster{
  display:flex;
  gap:1.75rem;
  flex-wrap:wrap;
  justify-content:center;
  padding:2rem 0 1rem;
}
.polaroid{
  background:var(--white);
  padding:12px 12px 44px;
  box-shadow:5px 8px 28px var(--shadow-deep);
  border-radius:6px;
  flex:1 0 200px;
  max-width:280px;
}
.polaroid:nth-child(1){transform:rotate(-3deg) translateY(10px)}
.polaroid:nth-child(2){transform:rotate(1.5deg) translateY(-6px)}
.polaroid:nth-child(3){transform:rotate(-1.2deg) translateY(16px)}
.polaroid:nth-child(4){transform:rotate(2.8deg) translateY(-10px)}
.polaroid img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:3px;
  display:block;
}
.polaroid__caption{
  margin-top:8px;
  text-align:center;
  font-size:0.78rem;
  font-weight:700;
  color:var(--muted);
  font-style:italic;
}

/* ============================================================
   STAMP BADGE
   ============================================================ */
.stamp{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  width:150px;height:150px;
  border-radius:50%;
  border:3.5px dashed var(--brand);
  background:var(--brand-light);
  text-align:center;
  padding:1rem;
  transform:rotate(-9deg);
  user-select:none;
}
.stamp__top{font-size:0.58rem;font-weight:800;letter-spacing:0.14em;text-transform:uppercase;color:var(--brand);line-height:1.4}
.stamp__number{font-size:2.4rem;font-weight:900;color:var(--brand);line-height:1;margin:0.1rem 0}
.stamp__bottom{font-size:0.58rem;font-weight:800;letter-spacing:0.12em;text-transform:uppercase;color:var(--brand);line-height:1.4}

/* ============================================================
   SPLIT LAYOUT
   ============================================================ */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(2rem,5vw,4.5rem);
  align-items:center;
}
.split--reverse .split__visual{order:2}
.split__visual{
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 10px 40px var(--shadow-deep);
  position:relative;
}
.split__visual img{
  width:100%;
  object-fit:cover;
  min-height:360px;
  border-radius:24px;
  display:block;
}
.split__text h2{margin-bottom:1.25rem}
.split__text p{color:var(--muted);line-height:1.85}
@media(max-width:768px){
  .split{grid-template-columns:1fr;gap:2rem}
  .split--reverse .split__visual{order:unset}
}

/* ============================================================
   PROGRAMME CARDS
   ============================================================ */
.programmes-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:2rem;
  margin-top:2.5rem;
}
.programme-card{
  background:var(--white);
  border-radius:24px;
  padding:2rem 1.75rem;
  box-shadow:0 4px 22px var(--shadow);
  border-left:6px solid var(--brand);
  transition:transform 0.2s,box-shadow 0.2s;
}
.programme-card:nth-child(even){border-left-color:var(--terra)}
.programme-card:hover{transform:translateY(-5px);box-shadow:0 10px 36px var(--shadow-deep)}
.programme-card__icon{font-size:2.5rem;margin-bottom:0.75rem;display:block;line-height:1}
.programme-card__title{font-size:1.1rem;font-weight:800;color:var(--charcoal);margin-bottom:0.5rem}
.programme-card__blurb{color:var(--brand);font-size:0.9rem;font-weight:600;margin-bottom:0.85rem;font-style:italic}
.programme-card:nth-child(even) .programme-card__blurb{color:var(--terra)}
.programme-card__detail{color:var(--muted);font-size:0.9rem;line-height:1.75;margin:0}

/* ============================================================
   WAYS CARDS (Get Involved)
   ============================================================ */
.ways-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:2rem;
  margin-top:2.5rem;
}
.way-card{
  background:var(--white);
  border-radius:24px;
  padding:2.25rem 2rem;
  box-shadow:0 4px 22px var(--shadow);
  border:2.5px dotted var(--terra);
  text-align:center;
  transition:transform 0.2s,box-shadow 0.2s;
}
.way-card:nth-child(2){border-color:var(--brand);margin-top:2rem}
.way-card:hover{transform:translateY(-5px);box-shadow:0 10px 36px var(--shadow-deep)}
.way-card__icon{font-size:3rem;margin-bottom:1.1rem;display:block;line-height:1}
.way-card__title{font-size:1.2rem;font-weight:800;color:var(--charcoal);margin-bottom:0.75rem}
.way-card__blurb{color:var(--muted);font-size:0.95rem;line-height:1.75;margin:0}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:2rem;
  margin-top:2.5rem;
}
.blog-card{
  background:var(--white);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 4px 24px var(--shadow);
  transition:transform 0.2s,box-shadow 0.2s;
  display:flex;
  flex-direction:column;
  text-decoration:none;
}
.blog-card:nth-child(2){margin-top:2.5rem}
.blog-card:hover{transform:translateY(-5px);box-shadow:0 12px 40px var(--shadow-deep);text-decoration:none}
.blog-card__img{aspect-ratio:16/9;object-fit:cover;width:100%;display:block}
.blog-card__body{padding:1.5rem 1.75rem;display:flex;flex-direction:column;flex:1}
.blog-card__title{
  font-size:1.1rem;
  font-weight:800;
  color:var(--charcoal);
  margin-bottom:0.5rem;
  line-height:1.35;
}
.blog-card__dek{
  color:var(--muted);
  font-size:0.9rem;
  line-height:1.65;
  flex:1;
  margin-bottom:1.25rem;
}
.blog-card__cta{
  align-self:flex-start;
  color:var(--brand);
  font-weight:700;
  font-size:0.88rem;
  border-bottom:2px solid var(--brand-light);
  padding-bottom:1px;
  transition:border-color 0.15s;
}
.blog-card:hover .blog-card__cta{border-bottom-color:var(--brand)}

/* ============================================================
   PHOTO BANNER (inner page header)
   ============================================================ */
.photo-banner{
  position:relative;
  height:clamp(260px,35vw,380px);
  overflow:hidden;
  background:var(--charcoal);
}
.photo-banner__img{
  width:100%;height:100%;
  object-fit:cover;
  object-position:center 35%;
}
.photo-banner__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(44,24,16,0.78) 0%,
    rgba(44,24,16,0.25) 65%,
    rgba(44,24,16,0.10) 100%
  );
}
.photo-banner__content{
  position:absolute;
  top:50%;
  left:clamp(1.5rem,5vw,3rem);
  transform:translateY(-50%);
  max-width:560px;
}
.photo-banner__label{
  display:inline-block;
  background:rgba(240,217,245,0.9);
  color:var(--brand);
  font-size:0.72rem;
  font-weight:800;
  letter-spacing:0.15em;
  text-transform:uppercase;
  padding:0.3rem 0.9rem;
  border-radius:100px;
  margin-bottom:0.85rem;
}
.photo-banner__title{
  color:var(--white);
  font-size:clamp(1.8rem,4vw,3rem);
  line-height:1.1;
  margin-bottom:0.5rem;
  text-shadow:0 2px 12px rgba(0,0,0,0.4);
}
.photo-banner__sub{
  color:rgba(255,255,255,0.88);
  font-size:1rem;
  line-height:1.7;
}

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.article-hero{
  position:relative;
  height:clamp(280px,40vw,460px);
  overflow:hidden;
  background:var(--charcoal);
}
.article-hero__img{width:100%;height:100%;object-fit:cover}
.article-hero__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom,rgba(44,24,16,0.15) 0%,rgba(44,24,16,0.78) 100%);
}
.article-hero__content{
  position:absolute;
  bottom:0;left:0;right:0;
  padding:2rem clamp(1.5rem,5vw,3rem);
  max-width:1140px;
  margin-inline:auto;
}
.article-hero__back{
  display:inline-flex;
  align-items:center;
  gap:0.4rem;
  color:rgba(255,255,255,0.75);
  font-size:0.82rem;
  font-weight:700;
  text-decoration:none;
  margin-bottom:1rem;
  transition:color 0.15s;
}
.article-hero__back:hover{color:var(--white);text-decoration:none}
.article-hero__title{
  color:var(--white);
  font-size:clamp(1.6rem,4vw,2.9rem);
  margin-bottom:0.75rem;
  text-shadow:0 2px 12px rgba(0,0,0,0.4);
  max-width:900px;
}
.article-hero__dek{
  color:rgba(255,255,255,0.85);
  font-size:1.05rem;
  line-height:1.65;
  max-width:700px;
}
.article-body{
  max-width:720px;
  margin-inline:auto;
  padding:clamp(2.5rem,6vw,4.5rem) clamp(1rem,4vw,2rem);
}
.article-body p{
  font-size:1.05rem;
  line-height:1.9;
  color:var(--charcoal);
  margin-bottom:1.6rem;
}
.article-body p:last-child{margin-bottom:0}
.article-footer{
  background:var(--cream-mid);
  padding:2.5rem clamp(1rem,4vw,2rem);
  text-align:center;
  border-top:2px solid var(--cream-dark);
}

/* ============================================================
   TRUSTEES
   ============================================================ */
.trustees-row{
  display:flex;
  gap:1.5rem;
  flex-wrap:wrap;
  margin-top:2rem;
}
.trustee-card{
  background:var(--white);
  border-radius:20px;
  padding:1.5rem 2rem;
  box-shadow:0 4px 18px var(--shadow);
  border:2px dotted var(--brand-light);
  flex:1 0 180px;
  transition:transform 0.2s;
}
.trustee-card:hover{transform:translateY(-4px)}
.trustee-card__name{font-size:1.05rem;font-weight:800;color:var(--charcoal);margin-bottom:0.25rem}
.trustee-card__role{
  font-size:0.8rem;
  font-weight:700;
  color:var(--brand);
  text-transform:uppercase;
  letter-spacing:0.1em;
}

/* ============================================================
   MISSION QUOTE
   ============================================================ */
.mission-quote{
  background:var(--brand-light);
  border-left:6px solid var(--brand);
  border-radius:0 20px 20px 0;
  padding:2rem 2rem 2rem 2.5rem;
  margin:2.5rem 0;
}
.mission-quote p{
  font-size:1.1rem;
  font-style:italic;
  color:var(--brand-dark);
  line-height:1.85;
  margin:0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout{
  display:grid;
  grid-template-columns:1fr 1.6fr;
  gap:clamp(2rem,5vw,4rem);
  align-items:start;
}
.contact-info h3{margin-bottom:1rem;color:var(--charcoal)}
.contact-info p{color:var(--muted);font-size:0.95rem;line-height:1.8;margin-bottom:1.25rem}
.contact-email{
  display:flex;
  align-items:flex-start;
  gap:0.75rem;
  background:var(--white);
  border-radius:16px;
  padding:1rem 1.25rem;
  margin-bottom:1rem;
  box-shadow:0 3px 14px var(--shadow);
  border:2px solid var(--cream-dark);
}
.contact-email__label{
  font-size:0.72rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:0.1em;
  color:var(--muted);
  margin-bottom:0.2rem;
  display:block;
}
.contact-email a{
  color:var(--brand);
  font-size:0.85rem;
  font-weight:600;
  word-break:break-all;
  text-decoration:none;
}
.contact-email a:hover{text-decoration:underline}
.contact-form-wrap{
  background:var(--white);
  border-radius:28px;
  padding:clamp(1.75rem,4vw,3rem);
  box-shadow:0 8px 40px var(--shadow-deep);
  border:2px solid var(--cream-dark);
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form-group{margin-bottom:1.25rem}
.form-group label{
  display:block;
  font-weight:700;
  color:var(--charcoal);
  margin-bottom:0.4rem;
  font-size:0.88rem;
}
.form-group input,
.form-group textarea,
.form-group select{
  width:100%;
  padding:0.8rem 1rem;
  border:2px solid var(--cream-dark);
  border-radius:14px;
  font-family:inherit;
  font-size:1rem;
  color:var(--ink);
  background:var(--cream);
  transition:border-color 0.2s,background 0.2s;
  outline:none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
  border-color:var(--brand);
  background:var(--white);
}
.form-group textarea{min-height:150px;resize:vertical}
@media(max-width:768px){
  .contact-layout{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band{
  background:var(--brand);
  padding:clamp(3rem,7vw,5.5rem) 0;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.cta-band::before{
  content:'';
  position:absolute;
  top:-60px;right:-80px;
  width:320px;height:320px;
  border-radius:50%;
  background:rgba(255,255,255,0.06);
}
.cta-band::after{
  content:'';
  position:absolute;
  bottom:-80px;left:-60px;
  width:240px;height:240px;
  border-radius:50%;
  background:rgba(255,255,255,0.04);
}
.cta-band h2{color:var(--white);margin-bottom:1rem}
.cta-band p{color:rgba(255,255,255,0.85);max-width:560px;margin-inline:auto;margin-bottom:2rem;font-size:1.05rem}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{
  background:var(--charcoal);
  color:rgba(255,255,255,0.75);
  padding:clamp(2.5rem,6vw,4.5rem) 0 1.5rem;
}
.site-footer__inner{
  display:grid;
  grid-template-columns:2fr 1fr 1.2fr;
  gap:2.5rem;
  max-width:1140px;
  margin-inline:auto;
  padding-inline:clamp(1.25rem,5vw,2.5rem);
}
.footer-brand__lockup{
  display:flex;
  align-items:center;
  gap:0.65rem;
  margin-bottom:1rem;
}
.footer-brand__logo{height:44px;width:auto}
.footer-brand__wordmark{
  height:30px;
  width:auto;
  filter:invert(1) brightness(2.5);
}
.footer-brand p{
  color:rgba(255,255,255,0.65);
  font-size:0.88rem;
  line-height:1.75;
  margin-bottom:0.5rem;
}
.footer-brand__scio{
  font-size:0.75rem;
  color:rgba(255,255,255,0.4);
  margin-top:0.5rem;
}
.footer-nav h4,.footer-contact h4{
  color:var(--white);
  font-size:0.75rem;
  text-transform:uppercase;
  letter-spacing:0.14em;
  margin-bottom:1rem;
}
.footer-nav ul{list-style:none}
.footer-nav ul li{margin-bottom:0.5rem}
.footer-nav ul a{
  color:rgba(255,255,255,0.65);
  font-size:0.88rem;
  text-decoration:none;
  transition:color 0.15s;
}
.footer-nav ul a:hover{color:var(--white)}
.footer-contact p{
  color:rgba(255,255,255,0.65);
  font-size:0.85rem;
  line-height:1.6;
  margin-bottom:0.85rem;
}
.footer-contact a{
  color:var(--brand-light);
  font-size:0.82rem;
  display:block;
  margin-bottom:0.5rem;
  word-break:break-all;
  text-decoration:none;
  transition:color 0.15s;
}
.footer-contact a:hover{color:var(--white);text-decoration:underline}
.site-footer__bottom{
  margin-top:2.5rem;
  padding-top:1.25rem;
  border-top:1px solid rgba(255,255,255,0.1);
  text-align:center;
  font-size:0.78rem;
  color:rgba(255,255,255,0.38);
  max-width:1140px;
  margin-inline:auto;
  padding-inline:clamp(1.25rem,5vw,2.5rem);
}
@media(max-width:768px){
  .site-footer__inner{grid-template-columns:1fr}
}

/* ============================================================
   STAGGERED OFFSET IMAGE BLOCK
   ============================================================ */
.stagger-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.5rem;
  align-items:start;
}
.stagger-grid__img{
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 8px 32px var(--shadow-deep);
}
.stagger-grid__img:nth-child(2){margin-top:3.5rem}
.stagger-grid__img img{width:100%;object-fit:cover;display:block}
@media(max-width:640px){
  .stagger-grid{grid-template-columns:1fr}
  .stagger-grid__img:nth-child(2){margin-top:0}
}

/* ============================================================
   RESPONSIVE EXTRAS
   ============================================================ */
@media(max-width:600px){
  .highlights-grid,.programmes-grid,.ways-grid,.blog-grid{grid-template-columns:1fr}
  .highlight-card:nth-child(2),.highlight-card:nth-child(3),.way-card:nth-child(2),.blog-card:nth-child(2){margin-top:0}
  .polaroid{max-width:100%;flex:1 0 140px}
}
