/* =============================================================
   All Ears MHA — MVP Stylesheet (v2)
   Palette: Elevated All Ears purple. Font: Outfit + Cormorant.
   Layout language inspired by premium therapy design — calm,
   rounded, generous. Dignified motion. Nothing gimmicky.
   ============================================================= */

/* ----------  1. Tokens  ---------- */
:root {
  /* Type */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-brand: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Elevated All Ears purple */
  --plum:        #3B1E47;   /* primary brand dark */
  --plum-deep:   #2A1433;   /* deepest */
  --plum-soft:   #5A3A68;   /* lifted plum */
  --lilac:       #E7DCEC;   /* soft panel */
  --lilac-soft:  #F1EAF4;   /* softest panel */
  --cream:       #F6F1EA;   /* page background */
  --white:       #FFFFFF;
  --paper:       #FCFAF7;
  --magenta:     #B5267E;   /* accent / CTA */
  --magenta-dk:  #8E1A62;
  --magenta-soft:#F4DFEC;
  --gold:        #E8A23D;   /* from logo wordmark — sparing */
  --text:        #2E2433;   /* body text */
  --muted:       #897F92;   /* secondary */
  --border:      #E7DEE6;

  /* Spacing */
  --sp-xs: 0.5rem; --sp-sm: 1rem; --sp-md: 2rem;
  --sp-lg: 4rem;   --sp-xl: 7rem;  --sp-xxl: 10rem;

  /* Shape */
  --r-lg: 28px; --r-md: 18px; --r-sm: 12px; --pill: 999px;

  --max: 1200px;
  --gutter: 1.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 18px 50px -24px rgba(59, 30, 71, 0.32);
  --shadow-sm: 0 8px 26px -16px rgba(59, 30, 71, 0.28);
}

/* ----------  2. Reset  ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ----------  3. Base type  ---------- */
body {
  font-family: var(--font-brand);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { line-height: 1.1; color: var(--plum); letter-spacing: -0.015em; font-weight: 600; }
.display { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; line-height: 1.04; }
h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
p { max-width: 66ch; }
strong { font-weight: 600; }
.accent { color: var(--magenta); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-brand);
  font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: var(--sp-sm);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--magenta); border-radius: 2px; }

/* ----------  4. Layout  ---------- */
.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4rem, 9vw, 7rem); }
.lead { font-size: clamp(1.1rem, 1.9vw, 1.35rem); line-height: 1.6; color: var(--text); }
.center { text-align: center; margin-inline: auto; }
.center p { margin-inline: auto; }

/* ----------  5. Buttons  ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--font-brand); font-size: 0.98rem; font-weight: 600;
  border-radius: var(--pill);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), color 0.3s var(--ease);
  z-index: 0;
}
.btn span { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 0.5rem; }
/* sweep fill */
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  transform: translateY(101%);
  transition: transform 0.4s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::after { transform: translateY(0); }

.btn--primary { background: var(--magenta); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary::after { background: var(--magenta-dk); }
.btn--plum { background: var(--plum); color: #fff; }
.btn--plum::after { background: var(--magenta); }
.btn--ghost { border: 1.5px solid var(--plum); color: var(--plum); }
.btn--ghost::after { background: var(--plum); }
.btn--ghost:hover { color: #fff; }
.btn--light { background: #fff; color: var(--plum); }
.btn--light::after { background: var(--lilac); }
.btn--light:hover { color: var(--plum); }
.btn--gold { background: var(--gold); color: var(--plum-deep); }
.btn--gold::after { background: #D18F2A; }
.btn--gold:hover { color: var(--plum-deep); }
.btn--sm { padding: 0.7rem 1.3rem; font-size: 0.92rem; }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.05rem; }
.arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ----------  6. Navigation (animated)  ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  background: rgba(246, 241, 234, 0.7);
  backdrop-filter: saturate(140%) blur(12px);
  animation: navDrop 0.7s var(--ease) both;
}
@keyframes navDrop { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.nav.is-scrolled { background: rgba(246, 241, 234, 0.92); box-shadow: 0 6px 30px -18px rgba(59,30,71,0.5); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; min-height: 84px; transition: min-height 0.4s var(--ease); }
.nav.is-scrolled .nav__inner { min-height: 68px; }

.nav__brand { display: flex; align-items: center; gap: 0.6rem; transition: transform 0.3s var(--ease); }
.nav__brand img { height: 46px; width: auto; transition: height 0.4s var(--ease); }
.nav.is-scrolled .nav__brand img { height: 38px; }
.nav__brand:hover { transform: scale(1.03); }
.nav__brand-text { font-family: var(--font-brand); font-size: 1.45rem; font-weight: 700; color: var(--plum); letter-spacing: -0.01em; line-height: 1; }
.nav__brand-text b { color: var(--magenta); font-weight: 700; }
@media (max-width: 380px) { .nav__brand-text { font-size: 1.25rem; } }

.nav__links { display: none; align-items: center; gap: 1.35rem; }
.nav__links .btn { padding: 0.7rem 1.25rem; font-size: 0.92rem; }
.nav__links a.nav__link {
  position: relative; font-size: 0.98rem; font-weight: 500; color: var(--plum);
  padding: 0.35rem 0;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--magenta); border-radius: 2px;
  transform: scaleX(0); transform-origin: right; transition: transform 0.35s var(--ease);
}
.nav__link:hover { color: var(--magenta); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

/* ----------  6b. Nav dropdown (Upcoming Events)  ---------- */
.nav__item { position: relative; display: flex; align-items: center; }
.nav__item--drop > .nav__link { display: inline-flex; align-items: center; gap: 0.35rem; }
.nav__caret { width: 9px; height: 9px; flex-shrink: 0; transition: transform 0.35s var(--ease); color: var(--magenta); }
.nav__item--drop:hover .nav__caret,
.nav__item--drop:focus-within .nav__caret { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 248px; padding: 0.6rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: 0 24px 60px -24px rgba(59,30,71,0.45);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 50;
}
/* invisible hover bridge spanning the whole gap (and a little wider) so moving
   the mouse from the trigger down to the menu never drops the :hover state */
.nav__dropdown::before {
  content: ""; position: absolute; top: -18px; left: -16px; right: -16px; height: 22px;
}
/* keep the parent's hover zone continuous with the panel */
.nav__item--drop { padding-bottom: 4px; margin-bottom: -4px; }
.nav__dropdown::after {
  content: ""; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px; background: var(--paper);
  border-left: 1px solid var(--border); border-top: 1px solid var(--border);
  border-radius: 3px 0 0 0;
}
.nav__item--drop:hover .nav__dropdown,
.nav__item--drop:focus-within .nav__dropdown,
.nav__item--drop.is-touch-open .nav__dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__item--drop.is-touch-open .nav__caret { transform: rotate(180deg); }
.nav__drop-link {
  display: flex; align-items: flex-start; gap: 0.85rem;
  padding: 0.85rem 0.9rem; border-radius: var(--r-sm);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.nav__drop-link:hover { background: var(--lilac-soft); transform: translateX(2px); }
.nav__drop-ico {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--lilac); color: var(--plum);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav__drop-link:hover .nav__drop-ico { background: var(--magenta); color: #fff; }
.nav__drop-ico svg { width: 19px; height: 19px; }
.nav__drop-titles { display: flex; flex-direction: column; line-height: 1.25; }
.nav__drop-title { font-size: 0.98rem; font-weight: 600; color: var(--plum); }
.nav__drop-sub { font-size: 0.8rem; color: var(--muted); font-weight: 400; }

/* Mobile dropdown = accordion inside the burger menu */
.nav__mobile-group { border-bottom: 1px solid var(--border); }
.nav__mobile-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 0; font-size: 1.1rem; font-weight: 500; color: var(--plum);
}
.nav__mobile-trigger .nav__caret { width: 12px; height: 12px; }
.nav__mobile-trigger.is-open .nav__caret { transform: rotate(180deg); }
.nav__mobile-sub { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.nav__mobile-sub.is-open { max-height: 600px; }
.nav__mobile-sub a { display: block; padding-left: 1rem; font-size: 1rem; color: var(--plum-soft); border-bottom: none; }
.nav__mobile-sub a:first-child { padding-top: 0; }

.nav__toggle { display: flex; flex-direction: column; gap: 5px; padding: 0.6rem; margin-right: -0.6rem; }
.nav__toggle span { width: 26px; height: 2px; background: var(--plum); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.35s var(--ease); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.nav__mobile.is-open { max-height: 60vh; }
.nav__mobile-inner { display: flex; flex-direction: column; padding-bottom: var(--sp-md); }
.nav__mobile a { padding: 0.85rem 0; font-size: 1.1rem; font-weight: 500; color: var(--plum); border-bottom: 1px solid var(--border); }
.nav__mobile .btn { margin-top: var(--sp-md); justify-content: center; }
@media (min-width: 1120px) {
  .nav__links { display: flex; }
  .nav__toggle, .nav__mobile { display: none; }
}

/* ----------  7. HERO = Aleysha memorial  ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 86vh, 820px);
  display: flex; align-items: center;
  background-image:
    linear-gradient(100deg, rgba(42,20,51,0.97) 0%, rgba(42,20,51,0.92) 30%, rgba(59,30,71,0.66) 50%, rgba(59,30,71,0.18) 64%, rgba(59,30,71,0) 80%),
    url('../assets/img/hero.jpg');
  background-size: cover;
  background-position: center right;
  color: #fff;
  overflow: hidden;
}
.hero__inner { max-width: 540px; margin-right: auto; padding-block: var(--sp-xl); }
/* Desktop: hug the empty left space so the image breathes on the right */
@media (min-width: 940px) {
  .hero .container { max-width: none; padding-inline: clamp(2.5rem, 5vw, 5.5rem); }
  .hero__inner { max-width: 500px; }
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: #F3D9E8; margin-bottom: var(--sp-md);
  animation: rise 1s var(--ease) 0.15s both;
}
.hero__eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--magenta); }
.hero h1 { color: #fff; margin-bottom: var(--sp-md); }
.hero h1 .memorial { display: block; font-style: italic; color: #fff; }
.hero-break { display: none; }
@media (min-width: 940px) { .hero-break { display: inline; } }
.hero h1 .leadword { display: block; font-size: 0.42em; font-family: var(--font-brand); font-weight: 500; letter-spacing: 0.02em; color: #F3D9E8; margin-bottom: 0.4rem; -webkit-text-fill-color: initial; }
.hero__line1 { animation: rise 1s var(--ease) 0.3s both; }
.hero__line2 { animation: rise 1.1s var(--ease) 0.55s both; }
.hero__sub { font-size: clamp(1.1rem, 2vw, 1.4rem); line-height: 1.55; color: rgba(255,255,255,0.92); max-width: 52ch; margin-bottom: var(--sp-lg); animation: rise 1s var(--ease) 0.8s both; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; animation: rise 1s var(--ease) 1s both; }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 720px) {
  .hero {
    background-image:
      linear-gradient(180deg, rgba(42,20,51,0.55) 0%, rgba(42,20,51,0.85) 70%),
      url('../assets/img/hero-mobile.jpg');
    background-position: center 20%;
    text-align: left;
  }
}

/* ----------  8. Marquee affirmation strip  ---------- */
.marquee {
  background: var(--plum); color: var(--cream);
  overflow: hidden; white-space: nowrap; padding-block: 1.1rem;
  border-block: 1px solid rgba(255,255,255,0.08);
}
.marquee__track { display: inline-flex; gap: 3rem; animation: scrollx 28s linear infinite; will-change: transform; }
.marquee__track span { font-family: var(--font-display); font-size: 1.5rem; font-style: italic; display: inline-flex; align-items: center; gap: 3rem; }
.marquee__track span::after { content: "\2022"; color: var(--magenta); font-style: normal; }
@keyframes scrollx { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ----------  9. Intro / founding story  ---------- */
.intro { background: var(--cream); padding-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.intro__grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-lg); align-items: center; }
.intro__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
.intro__media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.intro__media figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.4rem 1.6rem 1.4rem;
  background: linear-gradient(to top, rgba(42,20,51,0.88) 0%, rgba(42,20,51,0.5) 55%, rgba(42,20,51,0) 100%);
  color: #fff;
}
.intro__media .cap-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; line-height: 1.1; }
.intro__media .cap-role { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #F3D9E8; margin-top: 0.2rem; }
.promise {
  margin-top: var(--sp-md); padding: var(--sp-md);
  background: var(--magenta-soft); border-radius: var(--r-md);
  border-left: 4px solid var(--magenta);
}
.promise strong { color: var(--magenta-dk); }
@media (min-width: 880px) { .intro__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

/* ----------  9b. The Aleysha Promise  ---------- */
.promise-section { background: var(--cream); padding-block: clamp(2.5rem, 5vw, 3.5rem) clamp(4rem, 9vw, 7rem); }
.promise-band {
  position: relative;
  background:
    radial-gradient(130% 130% at 100% 0%, rgba(196,136,138,0.26), transparent 55%),
    var(--plum);
  color: #fff; border-radius: var(--r-lg); padding: clamp(2.5rem, 6vw, 4.5rem);
  box-shadow: var(--shadow); overflow: hidden;
}
.promise-band::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--rose, #C4888A), transparent); }
.promise-band .eyebrow { color: #F3A9D0; }
.promise-band .eyebrow::before { background: #F3A9D0; }
.promise-band h2 { color: #fff; margin-bottom: var(--sp-md); max-width: 20ch; }
.promise-band p { color: rgba(255,255,255,0.9); max-width: 70ch; }
.promise-themes { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: var(--sp-md); }
.promise-themes li {
  font-family: var(--font-display); font-size: 1.15rem; font-style: italic;
  padding: 0.5rem 1.4rem; border: 1px solid rgba(243,169,208,0.5);
  border-radius: var(--pill); color: #F3D9E8;
}

/* ----------  10. Stats  ---------- */
.stats { background: var(--plum); color: var(--cream); }
.stats__head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.stats__head .eyebrow { color: #F3A9D0; justify-content: center; }
.stats__head .eyebrow::before { background: #F3A9D0; }
.stats__head h2 { color: #fff; }
.stats__grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-lg); text-align: center; }
/* Shorter banner on desktop — keep full padding on mobile */
@media (min-width: 760px) { .stats { padding-bottom: clamp(2.5rem, 4vw, 3.5rem); } }
.stat__num { font-family: var(--font-display); font-size: clamp(3.2rem, 7vw, 5rem); font-weight: 600; line-height: 1; color: #fff; }
.stat__num .accent { color: #F3A9D0; }
.stat__label { margin-top: var(--sp-xs); color: rgba(246,241,234,0.78); max-width: 26ch; margin-inline: auto; }
.stat__rule { width: 50px; height: 3px; background: var(--magenta); border-radius: 3px; margin: 1rem auto 0; }
@media (min-width: 760px) { .stats__grid { grid-template-columns: repeat(3, 1fr); } }

/* ----------  11. Services  ---------- */
.services__head { max-width: 60ch; margin-bottom: var(--sp-lg); }
.services__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.service {
  background: var(--paper); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 2.2rem;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service__icon {
  width: 56px; height: 56px; border-radius: var(--r-md);
  display: grid; place-items: center; margin-bottom: var(--sp-md);
  background: var(--lilac); color: var(--plum);
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.service:hover .service__icon { background: var(--magenta); color: #fff; }
.service__icon svg { width: 26px; height: 26px; }
.service__title { margin-bottom: 0.4rem; }
.service__headline { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--magenta); margin-bottom: var(--sp-sm); }
.service__body { font-size: 0.98rem; color: var(--text); flex: 1; margin-bottom: var(--sp-md); }
.service__price { display: block; margin-top: 0.5rem; font-weight: 600; color: var(--plum); }
.service__cta { font-size: 0.95rem; font-weight: 600; color: var(--magenta); align-self: flex-start; display: inline-flex; gap: 0.4rem; }
.service__cta .arrow { transition: transform 0.3s var(--ease); }
.service__cta:hover .arrow { transform: translateX(4px); }
@media (min-width: 640px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .services__grid { grid-template-columns: repeat(4, 1fr); } }

/* ----------  12. Steps / getting started  ---------- */
.steps { background: var(--lilac-soft); }
.steps__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: var(--sp-lg); }
.step {
  background: var(--paper); border-radius: var(--r-lg); padding: 2.2rem;
  border: 1px solid var(--border); position: relative;
}
.step__num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: var(--magenta); line-height: 1; margin-bottom: var(--sp-sm); }
.step h3 { margin-bottom: 0.5rem; }
.step p { font-size: 0.98rem; color: var(--text); }
@media (min-width: 800px) { .steps__grid { grid-template-columns: repeat(3, 1fr); } }

/* ----------  13. FAQ  ---------- */
.faq { background: var(--cream); }
.faq__grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: var(--sp-lg); }
.faq__item { border: 1px solid var(--border); border-radius: var(--r-md); background: var(--paper); overflow: hidden; transition: box-shadow 0.3s var(--ease); }
.faq__item.is-open { box-shadow: var(--shadow-sm); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left; padding: 1.3rem 1.6rem; font-family: var(--font-brand); font-size: 1.08rem; font-weight: 600; color: var(--plum); }
.faq__icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--magenta); }
.faq__icon::before { width: 14px; height: 2px; }
.faq__icon::after { width: 2px; height: 14px; transition: transform 0.3s var(--ease); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq__a p { padding: 0 1.6rem 1.4rem; color: var(--text); }
.faq__a a { color: var(--magenta); font-weight: 600; }
@media (min-width: 820px) { .faq__grid { grid-template-columns: repeat(2, 1fr); } }

/* ----------  14. Testimonials  ---------- */
.testimonials { background: var(--plum); color: var(--cream); }
.testimonials h2 { color: #fff; }
.testimonials .eyebrow { color: #F3A9D0; }
.testimonials .eyebrow::before { background: #F3A9D0; }
.testimonials__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: var(--sp-lg); }
.quote { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-lg); padding: 2.2rem; display: flex; flex-direction: column; transition: transform 0.4s var(--ease), background 0.4s var(--ease); }
.quote:hover { transform: translateY(-5px); background: rgba(255,255,255,0.1); }
.quote__mark { font-family: var(--font-display); font-size: 3.5rem; line-height: 0.5; color: #F3A9D0; margin-bottom: var(--sp-sm); }
.quote__text { font-family: var(--font-display); font-size: 1.35rem; line-height: 1.4; color: #fff; flex: 1; margin-bottom: var(--sp-md); }
.quote__cite { font-size: 0.9rem; font-weight: 600; color: #F3D9E8; }
@media (min-width: 860px) { .testimonials__grid { grid-template-columns: repeat(3, 1fr); } }

/* ----------  15. Funders  ---------- */
.funders { background: var(--cream); padding-top: clamp(2.5rem, 5vw, 3.5rem); }
.funders__head { text-align: center; margin-bottom: var(--sp-lg); }
.funders__title { font-size: clamp(1.25rem, 2.4vw, 2rem); }
@media (min-width: 820px) { .funders__title { white-space: nowrap; } }
.funders__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; align-items: center; }
.funder { background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-md); height: 110px; display: grid; place-items: center; padding: 1.4rem; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.funder:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.funder img { max-height: 64px; width: auto; object-fit: contain; filter: none; }
@media (min-width: 620px) { .funders__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .funders__grid { grid-template-columns: repeat(4, 1fr); } }

/* ----------  16. Big CTA  ---------- */
.cta-band {
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(181,38,126,0.42), transparent 55%),
    var(--plum);
  color: #fff; border-radius: var(--r-lg); padding: clamp(3rem, 7vw, 5.5rem);
  text-align: center; box-shadow: var(--shadow);
}
.cta-band h2 { color: #fff; margin-bottom: var(--sp-sm); }
.cta-band p { color: rgba(255,255,255,0.88); margin-inline: auto; margin-bottom: var(--sp-lg); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ----------  17. Footer  ---------- */
.footer { background: var(--plum-deep); color: rgba(246,241,234,0.8); padding-block: var(--sp-xl) var(--sp-lg); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-lg); }
.footer__brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: var(--sp-sm); }
.footer__brand img { height: 52px; background: #fff; border-radius: var(--r-sm); padding: 4px 8px; }
.footer__brand span { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: #fff; }
.footer__tag { color: rgba(246,241,234,0.6); max-width: 34ch; }
.footer h4 { font-family: var(--font-brand); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: #F3A9D0; margin-bottom: var(--sp-sm); }
.footer__col a, .footer__col p { color: rgba(246,241,234,0.8); font-size: 0.98rem; }
.footer__col a { display: block; padding: 0.28rem 0; transition: color 0.2s var(--ease), padding-left 0.2s var(--ease); }
.footer__col a:hover { color: #fff; padding-left: 4px; }
.footer__social { display: flex; gap: 0.75rem; margin-top: var(--sp-md); }
.footer__social a {
  position: relative; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
}
.footer__social a svg { width: 19px; height: 19px; position: relative; z-index: 2; }
.footer__social a::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, var(--magenta), #7a3bd6);
  transform: scale(0); border-radius: 50%;
  transition: transform 0.4s var(--ease);
}
.footer__social a:hover { transform: translateY(-4px); border-color: transparent; color: #fff; padding-left: 0; }
.footer__social a:hover::before { transform: scale(1.4); }

/* ----------  Testimonial category tag  ---------- */
.quote__cat {
  display: inline-flex; align-self: flex-start; margin-bottom: var(--sp-md);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: #F3A9D0; padding: 0.35rem 0.75rem; border: 1px solid rgba(243,169,208,0.4);
  border-radius: var(--pill);
}
.testimonials__note { margin-top: var(--sp-lg); text-align: center; color: rgba(246,241,234,0.62); font-size: 0.95rem; }

/* ----------  News  ---------- */
.news { background: var(--cream); }
.news__head { display: flex; flex-wrap: wrap; gap: 1rem; align-items: flex-end; justify-content: space-between; margin-bottom: var(--sp-lg); }
.news__grid { display: grid; grid-template-columns: 1fr; gap: 1.75rem; }
.news-card {
  background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.news-card__media { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.news-card:hover .news-card__media img { transform: scale(1.06); }
.news-card__date {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: rgba(42,20,51,0.82); color: #fff; backdrop-filter: blur(4px);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 0.4rem 0.8rem; border-radius: var(--pill);
}
.news-card__body { padding: 1.7rem; flex: 1; display: flex; flex-direction: column; }
.news-card__cat { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--magenta); margin-bottom: 0.5rem; }
.news-card__title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--plum); line-height: 1.12; margin-bottom: 0.6rem; }
.news-card__excerpt { font-size: 0.96rem; color: var(--text); flex: 1; margin-bottom: var(--sp-md); }
.news-card__link { font-size: 0.92rem; font-weight: 600; color: var(--magenta); align-self: flex-start; display: inline-flex; gap: 0.4rem; }
.news-card__link .arrow { transition: transform 0.3s var(--ease); }
.news-card:hover .news-card__link .arrow { transform: translateX(4px); }
@media (min-width: 700px) { .news__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .news__grid { grid-template-columns: repeat(3, 1fr); } }
.footer__bottom { margin-top: var(--sp-xl); padding-top: var(--sp-md); border-top: 1px solid rgba(246,241,234,0.15); display: flex; flex-wrap: wrap; gap: var(--sp-sm); justify-content: space-between; align-items: center; font-size: 0.85rem; color: rgba(246,241,234,0.5); }
/* footer legal links — nav-style underline reveal */
.footer__legal-link { position: relative; color: inherit; transition: color 0.25s var(--ease); }
.footer__legal-link::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 100%; background: #F3A9D0; border-radius: 2px; transform: scaleX(0); transform-origin: right; transition: transform 0.3s var(--ease); }
.footer__legal-link:hover { color: #fff; }
.footer__legal-link:hover::after { transform: scaleX(1); transform-origin: left; }
/* "Website created by Safer Haven" — signature credit with its own effect */
.footer__credit { width: 100%; margin-top: var(--sp-md); padding-top: var(--sp-md); border-top: 1px solid rgba(246,241,234,0.08); text-align: center; font-size: 0.82rem; color: rgba(246,241,234,0.45); }
.footer__credit a {
  position: relative; display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 600; padding: 0.1rem 0.2rem;
  background: linear-gradient(90deg, #F3A9D0, #B5267E, #7a3bd6, #F3A9D0);
  background-size: 220% 100%; background-position: 0% 0%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  transition: background-position 0.6s var(--ease), filter 0.4s var(--ease);
}
.footer__credit a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1.5px;
  background: linear-gradient(90deg, #F3A9D0, #7a3bd6);
  transform: scaleX(0); transform-origin: center; transition: transform 0.4s var(--ease);
}
.footer__credit a:hover { background-position: 100% 0%; filter: drop-shadow(0 0 10px rgba(181,38,126,0.55)); }
.footer__credit a:hover::after { transform: scaleX(1); }
.footer__credit a svg { width: 13px; height: 13px; transition: transform 0.4s var(--ease); }
.footer__credit a:hover svg { transform: translateX(3px) rotate(8deg); }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; } }

/* ----------  18. Team page  ---------- */
.page-hero {
  background:
    radial-gradient(110% 120% at 90% -10%, rgba(181,38,126,0.14), transparent 55%),
    var(--cream);
  padding-block: clamp(3.5rem, 10vw, 7rem) clamp(2rem, 5vw, 3.5rem);
}
.page-hero__inner { max-width: 760px; }
.page-hero h1 { margin-bottom: var(--sp-md); }
.page-hero p { font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--text); }

.team { background: var(--cream); padding-bottom: clamp(4rem, 10vw, 7rem); }
.team__grid { display: grid; grid-template-columns: 1fr; gap: 1.75rem; }
.member {
  background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.member:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
/* framed/matted photo so lower-res source images read as intentional, not grainy */
.member__photo { aspect-ratio: 1 / 1; padding: 14px 14px 0; background: radial-gradient(120% 120% at 50% 0%, var(--magenta-soft), #d966a8); position: relative; }
.member__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; border-radius: 16px 16px 0 0; filter: saturate(1.04) contrast(1.02); transition: filter 0.4s var(--ease); }
.member__photo::after { content: ""; position: absolute; inset: 14px 14px 0; border-radius: 16px 16px 0 0; box-shadow: inset 0 0 0 1px rgba(59,30,71,0.10), inset 0 -50px 60px -34px rgba(42,20,51,0.5); pointer-events: none; }
.member:hover .member__photo img { filter: saturate(1.1) contrast(1.04) brightness(1.02); }
.member__body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.member__name { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--plum); line-height: 1; }
.member__role { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--magenta); margin-top: 0.45rem; margin-bottom: var(--sp-sm); }
.member__bio { font-size: 0.95rem; color: var(--text); }
@media (min-width: 600px) { .team__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .team__grid { grid-template-columns: repeat(3, 1fr); } }

/* ----------  19. Scroll reveal  ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* ----------  20. Reduced motion  ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-delay: 0ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}

/* ----------  21. Accessibility  ---------- */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--plum); color: #fff; padding: 0.75rem 1.25rem; z-index: 200; border-radius: 0 0 var(--r-sm) 0; }
.skip-link:focus { left: 0; top: 0; }
:focus-visible { outline: 2px solid var(--magenta); outline-offset: 3px; }

/* =============================================================
   22. Interior page shared bits
   ============================================================= */
.page-hero--center { text-align: center; }
.page-hero--center .page-hero__inner { max-width: 820px; margin-inline: auto; }
.page-hero--center .eyebrow { justify-content: center; }
.page-hero--center p { margin-inline: auto; }
.breadcrumbs { font-size: 0.85rem; color: var(--muted); margin-bottom: var(--sp-md); }
.breadcrumbs a { color: var(--magenta); font-weight: 600; }
.breadcrumbs span { margin-inline: 0.5rem; opacity: 0.5; }
.section--tight { padding-block: clamp(3rem, 6vw, 4.5rem); }
.lede-narrow { max-width: 64ch; }

/* Prose (legal / long-form) */
.prose { max-width: 72ch; }
.prose h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-top: var(--sp-lg); margin-bottom: var(--sp-sm); }
.prose h3 { font-size: 1.2rem; margin-top: var(--sp-md); margin-bottom: 0.5rem; }
.prose p, .prose li { color: var(--text); margin-bottom: var(--sp-sm); }
.prose ul { padding-left: 1.3rem; margin-bottom: var(--sp-sm); list-style: disc; }
.prose a { color: var(--magenta); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--plum); }
.prose .updated { font-size: 0.9rem; color: var(--muted); margin-bottom: var(--sp-md); }

/* =============================================================
   23. Donate page
   ============================================================= */
.donate { background: var(--cream); }
.donate__grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-lg); align-items: start; }
@media (min-width: 960px) { .donate__grid { grid-template-columns: 1.05fr 0.95fr; gap: 4.5rem; } }
.donate__copy .lead { margin-top: 1.25rem; }
.donate__points { margin-top: var(--sp-lg); display: grid; gap: 1.1rem; }
.donate__point { display: flex; gap: 0.9rem; align-items: flex-start; }
.donate__point-ico { flex-shrink: 0; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--lilac); color: var(--plum); }
.donate__point-ico svg { width: 20px; height: 20px; }
.donate__point h3 { font-size: 1.1rem; margin-bottom: 0.15rem; }
.donate__point p { font-size: 0.96rem; color: var(--text); }
.donate__tiers { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: var(--sp-lg); }
.donate__tier { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--plum); padding: 0.5rem 1.3rem; border: 1px solid var(--border); border-radius: var(--pill); background: var(--paper); }
.donate__tier b { color: var(--magenta); }
/* Embed card */
.donate__card {
  position: relative; background: var(--paper); border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--shadow); padding: clamp(1.2rem, 2.5vw, 1.8rem);
  position: sticky; top: 100px;
}
.donate__card-head { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.donate__card-head .badge { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--magenta); padding: 0.3rem 0.7rem; border: 1px solid var(--magenta-soft); border-radius: var(--pill); background: var(--magenta-soft); }
.donate__embed { width: 100%; border-radius: var(--r-md); overflow: hidden; min-height: 680px; }
.donate__embed iframe { width: 100%; border: 0; display: block; }
.donate__secure { margin-top: 0.9rem; font-size: 0.82rem; color: var(--muted); display: flex; align-items: center; gap: 0.45rem; justify-content: center; }
.donate__secure svg { width: 15px; height: 15px; }

/* =============================================================
   24. Events feed (CPD / Mens Night / All)
   ============================================================= */
.events { background: var(--cream); }
.events__toolbar { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; margin-bottom: var(--sp-lg); }
.events__filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.events__filter { font-size: 0.9rem; font-weight: 600; color: var(--plum); padding: 0.55rem 1.1rem; border: 1px solid var(--border); border-radius: var(--pill); background: var(--paper); transition: all 0.25s var(--ease); }
.events__filter:hover { border-color: var(--magenta); color: var(--magenta); }
.events__filter.is-active { background: var(--magenta); border-color: var(--magenta); color: #fff; }
.events__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 680px) { .events__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .events__grid { grid-template-columns: repeat(3, 1fr); } }
.event-card {
  display: flex; flex-direction: column; background: var(--paper);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.event-card__top { display: flex; gap: 1rem; padding: 1.5rem 1.5rem 0; align-items: flex-start; }
.event-card__date {
  flex-shrink: 0; width: 64px; text-align: center; border-radius: var(--r-sm);
  overflow: hidden; border: 1px solid var(--border); line-height: 1;
}
.event-card__date .m { display: block; background: var(--plum); color: #fff; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.35rem 0; }
.event-card__date .d { display: block; font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; color: var(--plum); padding: 0.35rem 0; }
.event-card__cat { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--magenta); }
.event-card__cat--mens { color: var(--plum-soft); }
.event-card__title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--plum); line-height: 1.15; margin-top: 0.3rem; }
.event-card__body { padding: 1rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.event-card__meta { display: flex; flex-direction: column; gap: 0.4rem; margin: 0.4rem 0 1rem; }
.event-card__meta span { display: flex; align-items: center; gap: 0.55rem; font-size: 0.9rem; color: var(--text); }
.event-card__meta svg { width: 16px; height: 16px; color: var(--magenta); flex-shrink: 0; }
.event-card__price { font-weight: 600; color: var(--plum); }
.event-card__cta { margin-top: auto; }
.event-card__cta .btn { width: 100%; justify-content: center; }
.events__empty, .events__loading { text-align: center; padding: var(--sp-lg); color: var(--muted); grid-column: 1 / -1; }
.events__eb-link { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--magenta); }
.events__updated { text-align: center; margin-top: var(--sp-lg); font-size: 0.85rem; color: var(--muted); }

/* =============================================================
   25. Contact page
   ============================================================= */
.contact { background: var(--cream); }
.contact__grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-lg); align-items: start; }
@media (min-width: 920px) { .contact__grid { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; } }
.form { background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm); }
.form__row { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; margin-bottom: 1.1rem; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--plum); margin-bottom: 0.4rem; }
.field input, .field textarea {
  font-family: var(--font-brand); font-size: 1rem; color: var(--text);
  padding: 0.85rem 1rem; border: 1px solid var(--border); border-radius: var(--r-sm);
  background: #fff; transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--magenta); box-shadow: 0 0 0 3px var(--magenta-soft); }
.field textarea { resize: vertical; min-height: 130px; }
.field--check { flex-direction: row; align-items: flex-start; gap: 0.6rem; }
.field--check input { width: 18px; height: 18px; margin-top: 0.2rem; accent-color: var(--magenta); padding: 0; }
.field--check label { font-weight: 400; font-size: 0.92rem; color: var(--text); margin: 0; }
.form__note { font-size: 0.85rem; color: var(--muted); margin-top: 0.5rem; }
.form__note--ok { color: #1f7a4d; font-weight: 600; background: #e6f5ec; border: 1px solid #bfe6cf; padding: 0.7rem 0.9rem; border-radius: var(--r-sm); }
.form__note--err { color: var(--magenta-dk); font-weight: 600; background: var(--magenta-soft); border: 1px solid #efc7df; padding: 0.7rem 0.9rem; border-radius: var(--r-sm); }
.form__note--ok a, .form__note--err a { color: inherit; text-decoration: underline; }
.contact__aside { display: flex; flex-direction: column; gap: 1.25rem; }
.contact__card { background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.8rem; }
.contact__card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.6rem; }
.contact__card h3 svg { width: 20px; height: 20px; color: var(--magenta); }
.contact__card a { color: var(--magenta); font-weight: 600; }
.contact__card p { color: var(--text); font-size: 0.98rem; }
.contact__map { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 16/10; }
.contact__map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Student counsellors — full-width band below the contact grid */
.contact__students { margin-top: var(--sp-lg); background: linear-gradient(135deg, var(--plum) 0%, var(--plum-soft) 100%); border-radius: var(--r-lg); padding: 2.8rem 3rem; }
.contact__students-inner { display: flex; align-items: center; gap: 2.5rem; }
.contact__students-inner > svg { flex-shrink: 0; width: 48px; height: 48px; color: var(--magenta-soft); opacity: 0.85; }
.contact__students h3 { font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 600; color: var(--cream); margin-bottom: 0.55rem; }
.contact__students p { color: rgba(246,241,234,0.8); font-size: 1rem; max-width: 60ch; }
.contact__students .btn { flex-shrink: 0; margin-left: auto; white-space: nowrap; }
@media (max-width: 700px) {
  .contact__students { padding: 2rem 1.6rem; }
  .contact__students-inner { flex-direction: column; align-items: flex-start; gap: 1.4rem; }
  .contact__students-inner > svg { width: 36px; height: 36px; }
  .contact__students .btn { margin-left: 0; width: 100%; justify-content: center; }
}

/* =============================================================
   26. Gallery page
   ============================================================= */
.gallery { background: var(--cream); }
.gallery__grid { columns: 1; column-gap: 1.25rem; }
@media (min-width: 600px) { .gallery__grid { columns: 2; } }
@media (min-width: 980px) { .gallery__grid { columns: 3; } }
.gallery__item { break-inside: avoid; margin-bottom: 1.25rem; border-radius: var(--r-md); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.gallery__item img { width: 100%; display: block; transition: transform 0.6s var(--ease); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem 1.1rem 0.9rem;
  background: linear-gradient(to top, rgba(42,20,51,0.82), transparent);
  color: #fff; font-size: 0.88rem; font-weight: 500; opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery__item:hover figcaption { opacity: 1; transform: translateY(0); }

/* =============================================================
   27. Services page (detailed)
   ============================================================= */
.svc-detail { background: var(--cream); }
.svc-block { display: grid; grid-template-columns: 1fr; gap: var(--sp-md); padding-block: clamp(2.5rem, 5vw, 3.5rem); border-bottom: 1px solid var(--border); scroll-margin-top: 100px; }
.svc-block:last-child { border-bottom: none; }
@media (min-width: 860px) { .svc-block { grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; align-items: center; } }
.svc-block__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; background: var(--lilac); }
.svc-block__media img { width: 100%; height: 100%; object-fit: cover; }
.svc-block:nth-child(even) .svc-block__media { order: -1; }
@media (min-width: 860px) { .svc-block:nth-child(even) .svc-block__media { order: 1; } }
.svc-block h2 { margin-bottom: 0.75rem; }
.svc-block .pill-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: var(--sp-md) 0; }
.svc-block .pill-list li { font-size: 0.9rem; font-weight: 500; color: var(--plum); padding: 0.45rem 1rem; border: 1px solid var(--border); border-radius: var(--pill); background: var(--paper); }
.svc-block__price { display: inline-block; font-weight: 600; color: var(--magenta); margin-bottom: var(--sp-sm); }
.svc-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: var(--sp-sm); }

/* =============================================================
   28. Inside the Hub — full-bleed image strip (homepage)
   ============================================================= */
.hub-section { background: var(--cream); padding-block: clamp(3rem, 7vw, 5rem); overflow: hidden; }
.hub-section__head { text-align: center; max-width: 640px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.hub-section__head .eyebrow { justify-content: center; }
.hub-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
@media (min-width: 1000px) { .hub-strip { grid-template-columns: repeat(4, 1fr); gap: 10px; } }
.hub-tile { position: relative; overflow: hidden; aspect-ratio: 4 / 5; }
@media (min-width: 1000px) { .hub-tile { aspect-ratio: auto; height: clamp(300px, 25vw, 430px); } }
.hub-tile:first-child { border-radius: var(--r-md) 0 0 var(--r-md); }
.hub-tile:last-child { border-radius: 0 var(--r-md) var(--r-md) 0; }
@media (max-width: 999px) {
  .hub-tile:first-child { border-radius: var(--r-md) 0 0 0; }
  .hub-tile:nth-child(2) { border-radius: 0 var(--r-md) 0 0; }
  .hub-tile:nth-child(3) { border-radius: 0 0 0 var(--r-md); }
  .hub-tile:last-child { border-radius: 0 0 var(--r-md) 0; }
}
.hub-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.hub-tile:hover img { transform: scale(1.07); }
.hub-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(42,20,51,0.42), transparent 55%); opacity: 0; transition: opacity 0.4s var(--ease); }
.hub-tile:hover::after { opacity: 1; }
.hub-tile__label { position: absolute; left: 1rem; bottom: 0.9rem; z-index: 2; color: #fff; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em; opacity: 0; transform: translateY(8px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); text-shadow: 0 2px 12px rgba(42,20,51,0.6); }
.hub-tile:hover .hub-tile__label { opacity: 1; transform: translateY(0); }

/* =============================================================
   29. Gallery teaser (homepage)
   ============================================================= */
.gallery-teaser { background: var(--lilac-soft); }
.gallery-teaser__head { display: flex; flex-wrap: wrap; gap: 1rem; align-items: flex-end; justify-content: space-between; margin-bottom: var(--sp-lg); }
.gallery-teaser__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
@media (min-width: 640px) { .gallery-teaser__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .gallery-teaser__grid { grid-template-columns: repeat(6, 1fr); gap: 1rem; } }
.gallery-teaser__item { position: relative; overflow: hidden; border-radius: var(--r-md); aspect-ratio: 1 / 1; box-shadow: var(--shadow-sm); }
.gallery-teaser__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-teaser__item:hover img { transform: scale(1.08); }
.gallery-teaser__item::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 120% at 50% 100%, rgba(181,38,126,0.35), transparent 60%); opacity: 0; transition: opacity 0.4s var(--ease); }
.gallery-teaser__item:hover::after { opacity: 1; }

/* =============================================================
   30. Men's Night photo mosaic
   ============================================================= */
.mn-mosaic-section { background: var(--cream); }
.mn-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 0.9rem;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.mn-mosaic__item { overflow: hidden; position: relative; }
.mn-mosaic__item:first-child { grid-row: 1 / 3; }
.mn-mosaic__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.mn-mosaic__item:hover img { transform: scale(1.06); }
@media (min-width: 760px) {
  .mn-mosaic {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .mn-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px; }
}

/* =============================================================
   31. Men's Night testimonials (2-col variant)
   ============================================================= */
.testimonials__grid--2col { grid-template-columns: 1fr; }
@media (min-width: 700px) { .testimonials__grid--2col { grid-template-columns: repeat(2, 1fr); } }
