/* =====================================================================
   S'PORT FOR GRIEF — MAIN STYLESHEET
   ---------------------------------------------------------------------
   HOW THIS FILE IS ORGANISED (search for the headings in CAPS):
     1.  DESIGN TOKENS / COLOUR PALETTE  (:root variables)
     2.  GLOBAL BASE STYLES
     3.  REUSABLE HELPERS (container, buttons, section headers, pills)
     4.  CRISIS STRIP
     5.  NAVIGATION BAR (+ mobile menu)
     6.  HERO / HOME SECTION
     7.  VISION & MISSION SECTION
     8.  WHAT WE DO / 4-TIER SYSTEM SECTION
     9.  TY FESTIVAL SECTION (+ photo gallery)
     10. EVENTS SECTION
     11. SUCCESS STORIES / IMPACT SECTION
     12. SIGNPOSTING DIRECTORY SECTION (urgent help, tiers, org cards)
     13. CLUB AWARE MAP SECTION
     14. ABOUT US SECTION
     15. OUR STORY / TIMELINE SECTION
     16. COACH EDUCATION & RESOURCES SECTION
     17. RESOURCE HUB SECTION
     18. BLOG / INSIGHTS SECTION
     19. FAQ SECTION
     20. SAFEGUARDING & BOUNDARIES SECTION
     21. PARTNERS & SUPPORTERS SECTION
     22. ADVISORY BOARD SECTION
     23. MEDIA / PRESS SECTION
     24. NEWSLETTER SECTION
     25. GET INVOLVED SECTION
     26. CONTACT SECTION
     27. FOOTER
     28. LIGHTBOX (gallery pop-up)
     29. RESPONSIVE / PRINT TWEAKS

   TIP: To change the brand colours for the WHOLE site, edit the
   variables in section 1 only.
   ===================================================================== */


/* =====================================================================
   1. DESIGN TOKENS / COLOUR PALETTE
   ===================================================================== */
:root {
  /* Brand palette — taken from the S'port for Grief logo */
  --sage:        #6c9286;   /* primary brand green */
  --sage-deep:   #42685b;   /* darker sage for hover/depth + AA labels */
  --sage-soft:   #e7eee9;   /* tint for blocks */
  --sage-tint:   #f0f5f1;   /* lightest tint */
  --navy:        #355a6b;   /* brand navy-teal (hands) */
  --navy-deep:   #294655;   /* headings / strong text */
  --navy-soft:   #e6edf0;   /* navy tint block */

  --ink:         #233038;   /* body text */
  --ink-soft:    #566570;   /* secondary text */
  --cream:       #f8f5ee;   /* page background */
  --cream-warm:  #efe9dd;   /* warm sand band */
  --rule:        #ddd6c7;   /* hairlines */
  --white:       #ffffff;

  /* Functional alert colour (safety, not a brand accent) */
  --alert:       #9c3a26;
  --alert-deep:  #7d2c1b;
  --alert-bg:    #f7e8e2;

  --shadow:      0 2px 6px rgba(41,70,85,0.06), 0 8px 24px rgba(41,70,85,0.06);
  --shadow-sm:   0 1px 3px rgba(41,70,85,0.07);
  --shadow-lg:   0 10px 40px rgba(41,70,85,0.16);
  --radius:      16px;
  --radius-lg:   22px;
}


/* =====================================================================
   2. GLOBAL BASE STYLES
   ===================================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .brand-mark { font-family: "Poppins", "Source Sans 3", sans-serif; }
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1.5px; }
a:hover { color: var(--sage-deep); }
:focus-visible { outline: 3px solid var(--navy); outline-offset: 2px; border-radius: 4px; }

/* Skip link for keyboard / screen-reader users */
.skip-link {
  position: absolute; left: 16px; top: -60px;
  background: var(--navy-deep); color: #fff; padding: 10px 16px;
  border-radius: 8px; z-index: 2000; transition: top 0.2s; text-decoration: none; font-weight: 600;
}
.skip-link:focus { top: 16px; color: #fff; }


/* =====================================================================
   3. REUSABLE HELPERS
   ===================================================================== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 780px; }

/* Standard vertical rhythm for a section */
.section { padding: 72px 0; scroll-margin-top: 80px; }
.section.tint  { background: var(--sage-tint); }
.section.warm  { background: var(--cream-warm); }
.section.navy  { background: var(--navy-deep); color: #e8eef0; }
.section.navy h2, .section.navy h3 { color: #fff; }
.section.navy p { color: #cdd9de; }

/* Section header block (eyebrow + title + intro) */
.section-eyebrow {
  font-family: "Poppins"; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sage-deep); margin: 0 0 8px; font-weight: 600;
}
.section.navy .section-eyebrow { color: #9fc4b6; }
.section-title { font-size: 32px; color: var(--navy-deep); margin: 0 0 14px; letter-spacing: -0.01em; line-height: 1.15; }
.section.navy .section-title { color: #fff; }
.section-intro { color: var(--ink-soft); max-width: 720px; margin: 0 0 8px; font-size: 18px; }
.section.navy .section-intro { color: #cdd9de; }
.center { text-align: center; }
.center .section-intro { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Poppins"; font-weight: 600; font-size: 16px;
  padding: 13px 24px; border-radius: 999px; text-decoration: none;
  border: 2px solid transparent; cursor: pointer; transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary  { background: var(--sage); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover  { background: var(--sage-deep); color: #fff; }
.btn-navy     { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); color: #fff; }
.btn-outline  { background: transparent; color: var(--navy-deep); border-color: var(--sage); }
.btn-outline:hover { background: var(--sage-soft); color: var(--navy-deep); }
.btn-light    { background: #fff; color: var(--navy-deep); }
.btn-light:hover { background: var(--sage-tint); color: var(--navy-deep); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Small status pills (Coming soon / Free / Available now) */
.pill {
  display: inline-block; font-family: "Poppins"; font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em; padding: 4px 12px; border-radius: 999px; vertical-align: middle;
}
.pill-soon { background: var(--cream-warm); color: var(--ink-soft); }
.pill-free { background: var(--sage-soft); color: var(--sage-deep); }
.pill-live { background: #dcefe4; color: #2f7d57; }

/* Region flags reused in the directory */
.flag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  padding: 2px 7px; border-radius: 5px; margin-left: 6px; vertical-align: 2px;
}
.flag.ie { background: var(--sage-soft); color: var(--sage-deep); }
.flag.uk { background: var(--navy-soft); color: var(--navy); }
.flag.intl { background: var(--cream-warm); color: var(--ink-soft); }


/* =====================================================================
   4. CRISIS STRIP (always visible at the very top)
   ===================================================================== */
.urgent {
  background: var(--alert-bg);
  border-bottom: 3px solid var(--alert);
  color: var(--alert-deep);
  padding: 12px 24px;
  font-size: 16px;
  text-align: center;
}
.urgent .container { display: flex; gap: 10px; align-items: center; justify-content: center; flex-wrap: wrap; }
.urgent svg { flex-shrink: 0; }
.urgent strong { font-weight: 700; }
.urgent a { color: var(--alert-deep); font-weight: 700; }


/* =====================================================================
   5. NAVIGATION BAR (sticky, with mobile menu)
   ===================================================================== */
.topnav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(248,245,238,0.94);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.topnav .container { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--navy-deep); }
.nav-brand img { width: 40px; height: 40px; border-radius: 50%; display: block; }
.nav-brand span { font-family: "Poppins"; font-weight: 600; font-size: 17px; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--navy-deep); font-weight: 600; font-size: 14.5px;
  padding: 8px 12px; border-radius: 999px; transition: background 0.15s;
}
.nav-links a:hover { background: var(--sage-soft); color: var(--navy-deep); }
.nav-links a.crisis { color: var(--alert-deep); border: 1.5px solid #e3b9ac; }
.nav-links a.crisis:hover { background: var(--alert-bg); }

/* Hamburger button — hidden on desktop, shown on mobile */
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  color: var(--navy-deep);
}

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 66px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--rule);
    padding: 10px 16px 20px; box-shadow: var(--shadow);
    max-height: calc(100vh - 66px); overflow-y: auto;
    transform: translateY(-130%); transition: transform .25s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 13px 14px; border-radius: 10px; font-size: 16px; }
}


/* =====================================================================
   6. HERO / HOME SECTION
   ===================================================================== */
header.hero {
  background:
    radial-gradient(900px 380px at 80% -10%, rgba(108,146,134,0.20), transparent 60%),
    var(--cream);
  padding: 64px 0 56px;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 44px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Poppins"; font-weight: 600; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage-deep);
  background: var(--sage-soft); padding: 7px 14px; border-radius: 999px; margin-bottom: 20px;
}
header.hero h1 {
  font-size: 46px; line-height: 1.1; margin: 0 0 18px; font-weight: 700;
  letter-spacing: -0.015em; color: var(--navy-deep);
}
.hero .lede { font-size: 20px; color: var(--ink-soft); margin: 0 0 28px; }
.hero-photo {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: 16px; bottom: 16px; width: 70px; height: 70px;
  background: #fff; border-radius: 50%; padding: 6px; box-shadow: var(--shadow);
}
.hero-stats { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; color: var(--navy-deep); background: var(--white);
  border: 1px solid var(--rule); padding: 7px 14px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.chip svg { color: var(--sage); }


/* =====================================================================
   7. VISION & MISSION SECTION
   ===================================================================== */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 30px; }
.vm-card {
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius-lg);
  padding: 32px 30px; box-shadow: var(--shadow-sm); border-top: 5px solid var(--sage);
}
.vm-card.mission { border-top-color: var(--navy); }
.vm-card .vm-icon {
  width: 54px; height: 54px; border-radius: 14px; background: var(--sage-soft);
  display: flex; align-items: center; justify-content: center; color: var(--sage-deep); margin-bottom: 14px;
}
.vm-card.mission .vm-icon { background: var(--navy-soft); color: var(--navy); }
.vm-card h3 { font-size: 22px; margin: 0 0 10px; color: var(--navy-deep); }
.vm-card p { margin: 0; color: var(--ink-soft); }
.vm-why {
  margin-top: 26px; background: var(--sage-tint); border-radius: var(--radius-lg);
  padding: 30px 32px; border-left: 6px solid var(--sage);
}
.vm-why h3 { margin: 0 0 8px; color: var(--navy-deep); font-size: 20px; }
.vm-why p { margin: 0; color: var(--ink); }


/* =====================================================================
   8. WHAT WE DO / 4-TIER SYSTEM SECTION
   ===================================================================== */
.tier-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 34px; }
.tier-step {
  position: relative; background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--radius-lg); padding: 26px 22px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.tier-step .num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--sage); color: #fff;
  font-family: "Poppins"; font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.tier-step:nth-child(2) .num { background: var(--sage-deep); }
.tier-step:nth-child(3) .num { background: var(--navy); }
.tier-step:nth-child(4) .num { background: var(--navy-deep); }
.tier-step h3 { font-size: 18px; margin: 0 0 8px; color: var(--navy-deep); }
.tier-step p { font-size: 15px; color: var(--ink-soft); margin: 0 0 14px; }
.tier-step .pill { align-self: flex-start; margin-top: auto; }
.notice {
  margin-top: 30px; background: var(--navy-soft); border-radius: var(--radius);
  padding: 22px 26px; color: var(--navy-deep); font-size: 16px; border-left: 6px solid var(--navy);
}
.notice strong { color: var(--navy-deep); }


/* =====================================================================
   9. TY FESTIVAL SECTION (+ photo gallery)
   ===================================================================== */
.ty-banner {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  margin-bottom: 34px; box-shadow: var(--shadow); aspect-ratio: 16 / 7; background: var(--navy-deep);
}
.ty-banner img { width: 100%; height: 100%; object-fit: cover; opacity: 0.82; }
.ty-banner .ty-banner-text {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 30px 34px; background: linear-gradient(180deg, transparent 30%, rgba(41,70,85,0.85));
  color: #fff;
}
.ty-banner .ty-banner-text h3 { margin: 0 0 6px; font-size: 28px; color: #fff; }
.ty-banner .ty-banner-text p { margin: 0; color: #e8eef0; max-width: 640px; }
.ty-features { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-bottom: 36px; }
.ty-feature {
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 18px 16px; text-align: center; box-shadow: var(--shadow-sm);
}
.ty-feature .ty-ic { color: var(--sage-deep); margin-bottom: 8px; }
.ty-feature span { font-size: 14px; font-weight: 600; color: var(--navy-deep); display: block; }

/* Photo gallery grid (click to enlarge in lightbox) */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery figure { margin: 0; border-radius: 14px; overflow: hidden; cursor: pointer; aspect-ratio: 1 / 1; box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery figure:hover img { transform: scale(1.06); }

.ty-sub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.mini-card {
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm);
}
.mini-card h4 { margin: 0 0 8px; color: var(--navy-deep); font-size: 18px; }
.mini-card p { margin: 0; color: var(--ink-soft); font-size: 15px; }


/* =====================================================================
   10. EVENTS SECTION
   ===================================================================== */
.events-block + .events-block { margin-top: 44px; }
.events-block h3 { font-size: 22px; color: var(--navy-deep); margin: 0 0 18px; }
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.event-card {
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .15s, box-shadow .15s;
}
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.event-card .event-img { aspect-ratio: 3 / 2; overflow: hidden; background: var(--sage-soft); }
.event-card .event-img img { width: 100%; height: 100%; object-fit: cover; }
.event-card .event-body { padding: 20px 22px; display: flex; flex-direction: column; flex: 1; }
.event-meta { font-size: 13px; font-weight: 600; color: var(--sage-deep); text-transform: uppercase; letter-spacing: 0.04em; margin: 0 0 6px; }
.event-card h4 { margin: 0 0 8px; font-size: 19px; color: var(--navy-deep); }
.event-card p { margin: 0 0 14px; font-size: 15px; color: var(--ink-soft); }
.event-card .event-foot { margin-top: auto; font-size: 14px; color: var(--ink-soft); }
.event-card.placeholder { border-style: dashed; }
.event-card.placeholder .event-img { display: flex; align-items: center; justify-content: center; color: var(--sage-deep); font-weight: 600; }


/* =====================================================================
   11. SUCCESS STORIES / IMPACT SECTION
   ===================================================================== */
.impact-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 30px 0 40px; }
.impact-stat {
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 26px 18px; text-align: center; box-shadow: var(--shadow-sm);
}
.impact-stat .num { font-family: "Poppins"; font-size: 34px; font-weight: 700; color: var(--sage-deep); }
.impact-stat .lbl { font-size: 14px; color: var(--ink-soft); margin-top: 4px; }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote-card {
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius-lg);
  padding: 28px 26px; box-shadow: var(--shadow-sm); border-top: 5px solid var(--sage);
}
.quote-card .qmark { font-family: Georgia, serif; font-size: 48px; line-height: 0.4; color: var(--sage); }
.quote-card blockquote { margin: 10px 0 16px; font-size: 17px; color: var(--ink); font-style: italic; }
.quote-card .who { font-size: 14px; font-weight: 600; color: var(--navy-deep); }


/* =====================================================================
   12. SIGNPOSTING DIRECTORY SECTION
   (urgent help panel, audience tiers, org cards, disclaimer)
   ===================================================================== */
/* Urgent help panel */
.help-card {
  background: var(--alert-bg); border: 1px solid #e7c7bc; border-left: 6px solid var(--alert);
  border-radius: var(--radius-lg); padding: 28px 30px; box-shadow: var(--shadow-sm); margin-bottom: 36px;
}
.help-card h3 { font-size: 22px; margin: 0 0 6px; color: var(--alert-deep); display: flex; align-items: center; gap: 10px; }
.help-card p.help-intro { margin: 0 0 18px; color: var(--ink); max-width: 720px; }
.help-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.help-item { background: var(--white); border-radius: 12px; padding: 16px 18px; }
.help-item h4 { font-size: 16px; margin: 0 0 5px; color: var(--navy-deep); }
.help-item p { margin: 0; font-size: 15px; color: var(--ink-soft); }
.help-item a.tel, .help-note a.tel { font-weight: 700; color: var(--alert-deep); text-decoration: none; white-space: nowrap; }
.help-item a.tel:hover, .help-note a.tel:hover { text-decoration: underline; }
.help-note { margin: 18px 0 0; font-size: 15px; color: var(--ink-soft); }

/* Directory search box */
.dir-search { margin: 26px 0 10px; position: relative; max-width: 520px; }
.dir-search input {
  width: 100%; font-size: 16px; padding: 14px 16px 14px 46px; border-radius: 999px;
  border: 1.5px solid var(--rule); background: var(--white); color: var(--ink);
}
.dir-search input:focus { outline: none; border-color: var(--sage); }
.dir-search svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--ink-soft); }

/* Category filter buttons */
.dir-filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 4px; }
.dir-filters button {
  font-family: "Poppins"; font-size: 14px; font-weight: 600; cursor: pointer;
  padding: 7px 15px; border-radius: 999px; border: 1.5px solid var(--rule);
  background: var(--white); color: var(--navy-deep); transition: all .15s;
}
.dir-filters button:hover { border-color: var(--sage); }
.dir-filters button.active { background: var(--sage); border-color: var(--sage); color: #fff; }
.dir-noresults { display: none; color: var(--ink-soft); padding: 24px 0; }

/* Org cards grid */
.directory-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 22px; }
.org {
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 22px 24px; box-shadow: var(--shadow-sm); transition: transform 0.15s, box-shadow 0.15s;
}
.org:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.org h4 { font-size: 18px; margin: 0 0 4px; font-weight: 600; color: var(--navy-deep); }
.org .who { font-size: 14px; color: var(--ink-soft); margin: 0 0 12px; }
.org .contact { font-size: 15px; margin: 0; }
.org .contact div { margin-bottom: 5px; display: flex; align-items: center; gap: 8px; }
.org .contact svg { color: var(--sage); flex-shrink: 0; }
.phone {
  display: inline-block; font-variant-numeric: tabular-nums; font-weight: 700;
  color: var(--navy-deep); white-space: nowrap; background: var(--sage-tint);
  padding: 1px 8px; border-radius: 6px;
}

/* Audience quick-pick tiles */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 22px; }
.tile {
  display: flex; flex-direction: column; gap: 6px;
  padding: 24px 22px; background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--radius-lg); text-decoration: none; color: var(--ink);
  box-shadow: var(--shadow-sm); transition: transform 0.16s, box-shadow 0.16s, border-color 0.16s;
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--sage); color: var(--ink); }
.tile-icon {
  width: 50px; height: 50px; border-radius: 14px; background: var(--sage-soft);
  display: flex; align-items: center; justify-content: center; color: var(--sage-deep); margin-bottom: 6px;
}
.tile-title { font-family: "Poppins"; font-size: 19px; font-weight: 600; color: var(--navy-deep); }
.tile-sub { font-size: 15px; color: var(--ink-soft); }
.tile-cta { margin-top: auto; padding-top: 8px; font-weight: 600; color: var(--navy); font-size: 15px; }
.tile-cta::after { content: " →"; }

/* Audience detail (expandable tier cards) */
.audience-block { margin-top: 40px; }
.audience-head { display: flex; align-items: center; gap: 14px; margin-bottom: 6px; }
.audience-head .badge-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--navy-soft);
  display: flex; align-items: center; justify-content: center; color: var(--navy); flex-shrink: 0;
}
.audience-block h3 { font-size: 24px; margin: 0; color: var(--navy-deep); }
.audience-block > .intro { color: var(--ink-soft); max-width: 720px; margin: 4px 0 22px; }
.tier {
  margin-bottom: 18px; background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow-sm);
  border-top: 5px solid var(--sage);
}
.tier.immediate { border-top-color: var(--navy); }
.tier.escalation { border-top-color: var(--alert); }
.tier-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: "Poppins"; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 600; color: var(--sage-deep); background: var(--sage-soft);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 12px;
}
.tier.immediate .tier-label { color: var(--navy); background: var(--navy-soft); }
.tier.escalation .tier-label { color: var(--alert-deep); background: var(--alert-bg); }
.tier h4 { font-size: 20px; margin: 0 0 10px; font-weight: 600; color: var(--navy-deep); }
.tier > p { margin: 0 0 14px; color: var(--ink-soft); }
.tier ul { margin: 0; padding: 0; list-style: none; }
.tier li { padding: 13px 0; border-top: 1px solid var(--rule); }
.tier li:first-child { border-top: none; padding-top: 2px; }
.tier li strong { color: var(--ink); }

/* Disclaimer card */
.disclaimer-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 34px 36px;
  box-shadow: var(--shadow); border-left: 6px solid var(--sage); margin-top: 36px;
}
.disclaimer-card h3 { font-size: 22px; margin: 0 0 14px; color: var(--navy-deep); }
.disclaimer-card p { color: var(--ink-soft); margin: 0 0 14px; }
.disclaimer-card p:last-child { margin-bottom: 0; }


/* =====================================================================
   13. CLUB AWARE MAP SECTION
   ===================================================================== */
.map-wrap { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 26px; margin-top: 30px; align-items: start; }
.map-visual {
  background: var(--sage-tint); border: 1px solid var(--rule); border-radius: var(--radius-lg);
  padding: 30px; min-height: 360px; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; position: relative;
}
.map-visual svg { max-width: 220px; height: auto; }
.map-visual .map-soon {
  margin-top: 18px; font-family: "Poppins"; font-weight: 600; color: var(--navy-deep);
}
.map-side h3 { margin: 0 0 14px; color: var(--navy-deep); font-size: 20px; }
.club-card {
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: var(--shadow-sm); margin-bottom: 14px;
}
.club-card .club-row { display: flex; justify-content: space-between; gap: 8px; font-size: 14px; color: var(--ink-soft); margin-bottom: 4px; }
.club-card h4 { margin: 0 0 8px; color: var(--navy-deep); font-size: 17px; }
.club-card .club-status { font-size: 13px; font-weight: 600; color: var(--sage-deep); }


/* =====================================================================
   14. ABOUT US SECTION
   ===================================================================== */
.about-lead { display: grid; grid-template-columns: 1fr; gap: 0; margin-bottom: 36px; }
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.founder {
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.founder .founder-photo { aspect-ratio: 4 / 3; background: var(--sage-soft); overflow: hidden; }
.founder .founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder .founder-photo.placeholder { display: flex; align-items: center; justify-content: center; color: var(--sage-deep); font-weight: 600; text-align: center; padding: 20px; }
.founder .founder-body { padding: 24px 26px; }
.founder h3 { margin: 0 0 2px; font-size: 21px; color: var(--navy-deep); }
.founder .role { font-size: 14px; font-weight: 600; color: var(--sage-deep); text-transform: uppercase; letter-spacing: 0.04em; margin: 0 0 12px; }
.founder p { margin: 0 0 12px; color: var(--ink-soft); font-size: 16px; }


/* =====================================================================
   15. OUR STORY / TIMELINE SECTION
   ===================================================================== */
.timeline { position: relative; max-width: 820px; margin: 34px auto 0; padding-left: 8px; }
.timeline::before {
  content: ""; position: absolute; left: 19px; top: 6px; bottom: 6px; width: 3px; background: var(--sage-soft);
}
.tl-item { position: relative; padding: 0 0 28px 56px; }
.tl-item .tl-dot {
  position: absolute; left: 8px; top: 2px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--sage); border: 4px solid var(--cream); box-shadow: 0 0 0 1px var(--sage-soft);
}
.tl-item.future .tl-dot { background: var(--cream-warm); border-color: var(--cream); box-shadow: 0 0 0 2px var(--rule); }
.tl-item .tl-date { font-family: "Poppins"; font-weight: 600; font-size: 14px; color: var(--sage-deep); }
.tl-item h4 { margin: 2px 0 6px; font-size: 19px; color: var(--navy-deep); }
.tl-item p { margin: 0; color: var(--ink-soft); font-size: 16px; }
/* On the navy band, lift text/line colours */
.section.navy .timeline::before { background: rgba(255,255,255,0.18); }
.section.navy .tl-item .tl-dot { border-color: var(--navy-deep); }
.section.navy .tl-item .tl-date { color: #9fc4b6; }
.section.navy .tl-item h4 { color: #fff; }
.section.navy .tl-item p { color: #cdd9de; }


/* =====================================================================
   16. COACH EDUCATION & RESOURCES SECTION
   ===================================================================== */
.edu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; }
.edu-card {
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius-lg);
  padding: 26px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.edu-card .edu-ic {
  width: 50px; height: 50px; border-radius: 14px; background: var(--sage-soft);
  display: flex; align-items: center; justify-content: center; color: var(--sage-deep); margin-bottom: 14px;
}
.edu-card h3 { margin: 0 0 8px; font-size: 20px; color: var(--navy-deep); }
.edu-card p { margin: 0 0 16px; color: var(--ink-soft); font-size: 16px; }
.edu-card .pill { align-self: flex-start; margin-top: auto; }
.expert-note {
  margin-top: 26px; background: var(--sage-tint); border-radius: var(--radius);
  padding: 22px 26px; border-left: 6px solid var(--sage); color: var(--ink);
}


/* =====================================================================
   17. RESOURCE HUB SECTION
   ===================================================================== */
.res-filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 22px; }
.res-filters button {
  font-family: "Poppins"; font-size: 14px; font-weight: 600; cursor: pointer;
  padding: 7px 15px; border-radius: 999px; border: 1.5px solid var(--rule);
  background: var(--white); color: var(--navy-deep); transition: all .15s;
}
.res-filters button:hover { border-color: var(--sage); }
.res-filters button.active { background: var(--sage); border-color: var(--sage); color: #fff; }
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.res-card {
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 22px 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.res-card .res-cat { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--sage-deep); margin-bottom: 8px; }
.res-card h4 { margin: 0 0 8px; font-size: 18px; color: var(--navy-deep); }
.res-card p { margin: 0 0 16px; font-size: 15px; color: var(--ink-soft); }
.res-card .res-foot { margin-top: auto; }


/* =====================================================================
   18. BLOG / INSIGHTS SECTION
   ===================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 30px; }
.blog-card {
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .15s, box-shadow .15s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-card .blog-img { aspect-ratio: 16 / 9; background: var(--sage-soft); overflow: hidden; display: flex; align-items: center; justify-content: center; color: var(--sage-deep); font-weight: 600; }
.blog-card .blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .blog-body { padding: 22px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card .blog-cat { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--sage-deep); }
.blog-card h3 { margin: 8px 0 8px; font-size: 19px; color: var(--navy-deep); }
.blog-card p { margin: 0 0 14px; font-size: 15px; color: var(--ink-soft); }
.blog-card .blog-foot { margin-top: auto; display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: var(--ink-soft); }


/* =====================================================================
   19. FAQ SECTION (expandable accordion)
   ===================================================================== */
.faq-list { max-width: 820px; margin: 30px auto 0; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: "Poppins"; font-weight: 600; font-size: 18px; color: var(--navy-deep);
  padding: 20px 40px 20px 4px; position: relative;
}
.faq-q::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 26px; color: var(--sage); font-weight: 400; transition: transform .2s;
}
.faq-item.open .faq-q::after { content: "−"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a p { margin: 0 0 18px; color: var(--ink-soft); padding-right: 20px; }


/* =====================================================================
   20. SAFEGUARDING & BOUNDARIES SECTION
   ===================================================================== */
.safe-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 34px 36px;
  box-shadow: var(--shadow); border-left: 6px solid var(--navy); max-width: 860px; margin: 30px auto 0;
}
.safe-card h3 { margin: 0 0 14px; color: var(--navy-deep); font-size: 22px; }
.safe-card p { color: var(--ink-soft); margin: 0 0 14px; }
.safe-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.safe-tags span {
  background: var(--sage-soft); color: var(--sage-deep); font-weight: 600; font-size: 14px;
  padding: 7px 14px; border-radius: 999px;
}
.safe-card .safe-alert {
  background: var(--alert-bg); border-left: 5px solid var(--alert); border-radius: 10px;
  padding: 16px 18px; color: var(--alert-deep); margin-top: 6px;
}
.safe-card .safe-alert a { color: var(--alert-deep); font-weight: 700; }


/* =====================================================================
   21. PARTNERS & SUPPORTERS SECTION
   ===================================================================== */
.logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 30px; }
.logo-slot {
  background: var(--white); border: 1px dashed var(--rule); border-radius: var(--radius);
  min-height: 120px; display: flex; align-items: center; justify-content: center;
  padding: 18px; text-align: center; color: var(--ink-soft); font-size: 14px;
}
.logo-slot img { max-height: 80px; width: auto; }


/* =====================================================================
   22. ADVISORY BOARD SECTION
   ===================================================================== */
.advisor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.advisor-card {
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius-lg);
  padding: 26px 24px; box-shadow: var(--shadow-sm); text-align: center;
}
.advisor-card .avatar {
  width: 72px; height: 72px; border-radius: 50%; background: var(--sage-soft); margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center; color: var(--sage-deep);
}
.advisor-card h4 { margin: 0 0 4px; font-size: 18px; color: var(--navy-deep); }
.advisor-card .area { font-size: 14px; color: var(--ink-soft); }


/* =====================================================================
   23. MEDIA / PRESS SECTION
   ===================================================================== */
.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.media-card {
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 22px 24px; box-shadow: var(--shadow-sm);
}
.media-card .media-type { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--sage-deep); margin-bottom: 8px; }
.media-card h4 { margin: 0 0 6px; font-size: 18px; color: var(--navy-deep); }
.media-card p { margin: 0; font-size: 15px; color: var(--ink-soft); }


/* =====================================================================
   24. NEWSLETTER SECTION
   ===================================================================== */
.newsletter-card {
  background: var(--sage-tint); border-radius: var(--radius-lg); padding: 40px;
  text-align: center; max-width: 720px; margin: 0 auto;
}
.newsletter-card h2 { color: var(--navy-deep); margin: 0 0 10px; font-size: 28px; }
.newsletter-card p { color: var(--ink-soft); margin: 0 0 22px; }
.newsletter-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1; min-width: 220px; font-size: 16px; padding: 13px 18px; border-radius: 999px;
  border: 1.5px solid var(--rule); background: #fff;
}
.newsletter-form input:focus { outline: none; border-color: var(--sage); }
.form-note { font-size: 13px; color: var(--ink-soft); margin-top: 14px; }


/* =====================================================================
   25. GET INVOLVED SECTION
   ===================================================================== */
.involve-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 30px 0; }
.involve-card {
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 24px 22px; box-shadow: var(--shadow-sm); text-align: center;
}
.involve-card .inv-ic { color: var(--sage-deep); margin-bottom: 10px; }
.involve-card h4 { margin: 0 0 6px; font-size: 17px; color: var(--navy-deep); }
.involve-card p { margin: 0; font-size: 14px; color: var(--ink-soft); }
.involve-cta { text-align: center; }
.involve-cta .btn-row { justify-content: center; }


/* =====================================================================
   26. CONTACT SECTION
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 30px; align-items: start; }
.contact-info p { margin: 0 0 16px; }
.contact-line { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 16px; }
.contact-line .ci-ic {
  width: 44px; height: 44px; border-radius: 12px; background: var(--sage-soft); color: var(--sage-deep);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-form label { display: block; font-weight: 600; font-size: 15px; color: var(--navy-deep); margin: 0 0 6px; }
.contact-form input, .contact-form textarea {
  width: 100%; font-size: 16px; font-family: inherit; padding: 12px 14px; margin-bottom: 16px;
  border-radius: 12px; border: 1.5px solid var(--rule); background: #fff; color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--sage); }
.contact-form textarea { min-height: 130px; resize: vertical; }


/* =====================================================================
   27. FOOTER (with full sitemap)
   ===================================================================== */
footer { background: var(--navy-deep); color: #cdd9de; padding: 56px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.foot-brand .foot-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.foot-brand .foot-top img { width: 46px; height: 46px; border-radius: 50%; }
.foot-brand .foot-top strong { font-family: "Poppins"; color: #fff; font-size: 19px; }
.foot-brand p { margin: 6px 0; font-size: 14px; color: #b6c5cb; max-width: 320px; }
.foot-col h4 { color: #fff; font-size: 15px; margin: 0 0 12px; font-family: "Poppins"; }
.foot-col ul { list-style: none; margin: 0; padding: 0; }
.foot-col li { margin-bottom: 9px; }
.foot-col a { color: #cdd9de; text-decoration: none; font-size: 14.5px; }
.foot-col a:hover { color: #fff; text-decoration: underline; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 36px; padding-top: 22px; font-size: 13px; color: #9fb0b7; }
.foot-bottom p { margin: 5px 0; }


/* =====================================================================
   28. LIGHTBOX (gallery pop-up — controlled by script.js)
   ===================================================================== */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 3000;
  background: rgba(20,30,36,0.92); align-items: center; justify-content: center; padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close {
  position: absolute; top: 20px; right: 26px; background: none; border: 0; color: #fff;
  font-size: 40px; cursor: pointer; line-height: 1;
}
.lightbox .lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12);
  border: 0; color: #fff; font-size: 30px; width: 54px; height: 54px; border-radius: 50%; cursor: pointer;
}
.lightbox .lb-prev { left: 20px; }
.lightbox .lb-next { right: 20px; }


/* =====================================================================
   29. RESPONSIVE / PRINT TWEAKS
   ===================================================================== */
@media (max-width: 980px) {
  .tier-steps { grid-template-columns: repeat(2, 1fr); }
  .ty-features { grid-template-columns: repeat(3, 1fr); }
  .impact-stats { grid-template-columns: repeat(2, 1fr); }
  .involve-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  header.hero h1 { font-size: 34px; }
  .section-title { font-size: 26px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-photo { aspect-ratio: 16 / 10; max-width: 520px; }
  .vm-grid, .event-grid, .quote-grid, .ty-sub-grid, .res-grid, .blog-grid,
  .advisor-grid, .media-grid, .map-wrap, .contact-grid, .founders { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .help-grid { grid-template-columns: 1fr; }
  .directory-grid { grid-template-columns: 1fr; }
  .tiles { grid-template-columns: 1fr; }
  .ty-banner { aspect-ratio: 4 / 3; }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .section { padding: 52px 0; }
  .tier-steps, .ty-features, .impact-stats, .involve-grid, .logo-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
}
@media print {
  .topnav, .skip-link, .nav-toggle, .lightbox, .newsletter-form, .contact-form { display: none; }
  .tile, .tier, .org, .event-card, .blog-card { break-inside: avoid; box-shadow: none; }
  a { color: var(--ink); }
  body { background: #fff; }
}
