/* ===================================================================
   ICEBREAKERS.UK — Cold Water Dipping Community for Men
   Design system inspired by foundationwow.org
   Real brand colours · Real content only · ADR-002 compliant
   =================================================================== */

/* Display font: Nunito (900 weight) — rounded, bold, matches foundationwow.org style */

/* ---- Custom Properties ---- */
:root {
  --navy:        #012d47;
  --navy-deep:   #001b2e;
  --navy-mid:    #014a75;
  --sky:         #0e7490;
  --ice:         #0891b2;
  --ice-light:   #06b6d4;
  --ice-pale:    #22d3ee;
  --ice-bg:      #e0f7fa;
  --orange:      #0e7490;
  --orange-dk:   #0c5e75;
  --white:       #ffffff;
  --off-white:   #f4f9fb;
  --text:        #012d47;
  --muted:       #4a6e80;
  --border:      rgba(58,184,224,0.18);
  --shadow-sm:   0 4px 18px rgba(1,45,71,0.08);
  --shadow-md:   0 12px 40px rgba(1,45,71,0.15);
  --shadow-lg:   0 24px 64px rgba(1,45,71,0.22);
  --radius:      12px;
  --radius-sm:   8px;
  --radius-pill: 999px;
  --max-width:   1200px;
  --display:     'Nunito', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Poppins', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }
details summary { cursor: pointer; list-style: none; }
details summary::-webkit-details-marker { display: none; }

/* ---- Headings & Sub-headings ---- */
h1, h2, h3, h4, h5, h6,
.camp-title, .section-title, .mission-heading,
.pillar-name, .chapter-name, .chapter-title,
.support-title, .info-title, .session-step-title,
.newsletter-title, .donation-use-title, .page-hero-title,
.news-title, .wq-title { text-transform: uppercase; }

/* ---- Container ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 0;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.2;
}
.btn-orange  { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-orange:hover { background: var(--orange-dk); border-color: var(--orange-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(14,116,144,0.4); }
.btn-ice     { background: var(--ice); color: var(--navy); border-color: var(--ice); }
.btn-ice:hover { background: var(--ice-light); border-color: var(--ice-light); transform: translateY(-2px); }
.btn-navy    { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-2px); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: 0.78rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* ---- Section Labels ---- */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 14px;
}
.section-label.dark { color: var(--sky); }
.section-label.orange { color: var(--orange); }

/* ---- Scroll Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.3s; }
.fade-up.d4 { transition-delay: 0.4s; }

/* ===================================================================
   ANNOUNCEMENT BAR — gradient like foundationwow.org
   =================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, var(--navy-mid) 0%, var(--sky) 45%, var(--ice) 80%, var(--ice-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 11px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  z-index: 1001;
}
.announcement-bar a { color: var(--white); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.announcement-bar a:hover { opacity: 0.85; }

/* ===================================================================
   NAVIGATION — white, matching foundationwow.org
   =================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  height: 80px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(1,45,71,0.08);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(1,45,71,0.12); }
.nav .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; text-decoration: none; }
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  /* White logo visible on white nav via navy background pill */
  background: var(--navy);
  padding: 6px 8px;
  border-radius: 4px;
}
.nav-logo-text {
  display: none;
}
.nav-logo-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -0.2px;
  text-transform: uppercase;
}
.nav-logo-tag {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
  opacity: 0.8;
}

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-links li { position: relative; }
.nav-links li a, .nav-links li button.nav-folder-btn {
  color: rgba(1,45,71,0.65);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.nav-links li a:hover, .nav-links li button.nav-folder-btn:hover { color: var(--navy); }
.nav-links li a.active { color: var(--sky); }
.nav-sep { color: rgba(1,45,71,0.15); font-size: 0.9rem; padding: 0 2px; display: flex; align-items: center; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1px solid rgba(1,45,71,0.1);
  border-radius: var(--radius-sm);
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(1,45,71,0.15);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(1,45,71,0.65);
  text-transform: none;
  transition: all 0.15s;
}
.nav-dropdown-menu a:hover { color: var(--navy); background: rgba(1,45,71,0.04); }
.nav-chevron { font-size: 0.6rem; margin-left: 2px; transition: transform 0.2s; }
.nav-dropdown:hover .nav-chevron { transform: rotate(180deg); }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-shop {
  color: rgba(1,45,71,0.55);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
  transition: color 0.2s;
}
.nav-shop:hover { color: var(--navy); }
.nav-cta {
  background: var(--ice);
  color: var(--white);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 4px;
  transition: all 0.2s;
  border: 2px solid var(--ice);
}
.nav-cta:hover { background: var(--sky); border-color: var(--sky); transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 1px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Nav donate button — teal outline like foundationwow.org */
.nav-donate {
  color: var(--sky);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 2px solid var(--sky);
  border-radius: 4px;
  transition: all 0.2s;
  text-decoration: none;
}
.nav-donate:hover { background: var(--sky); color: var(--white); }

/* FA icon sizes for cards */
.pillar-icon i,
.support-icon i,
.info-icon i,
.donation-use-icon i {
  font-size: inherit;
  line-height: 1;
}

/* ===================================================================
   HERO — foundationwow style full-bleed
   =================================================================== */
.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.65;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(1,27,46,0.92) 0%,
    rgba(1,27,46,0.72) 45%,
    rgba(1,27,46,0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  width: 100%;
}
.hero-content .container { max-width: 900px; }
.hero-h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}
.hero-h1 .line-highlight { color: var(--ice); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===================================================================
   MISSION STRIP — white section, two columns
   =================================================================== */
.mission {
  background: var(--white);
  padding: 100px 0;
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mission-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}
.mission-heading span { color: var(--sky); }
.mission-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 20px;
}
.mission-body strong { color: var(--navy); font-weight: 700; }
.mission-pull {
  border-left: 4px solid var(--ice);
  padding-left: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  line-height: 1.5;
  margin: 28px 0 32px;
}
.mission-image-wrap {
  position: relative;
  border-radius: 0;
  overflow: hidden;
}
.mission-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.mission-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  text-align: center;
}
.mission-badge-main { font-size: 1.6rem; line-height: 1; display: block; }
.mission-badge-sub { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.9; }

/* ===================================================================
   WHAT WE DO — pillars, dark section
   =================================================================== */
.what-we-do {
  background: var(--navy-deep);
  padding: 100px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}
.what-we-do .section-title { color: var(--white); }
.what-we-do .section-title span { color: var(--ice); }
.what-we-do .section-sub {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(58,184,224,0.1);
  border: 1px solid rgba(58,184,224,0.1);
}
.pillar {
  background: rgba(255,255,255,0.03);
  padding: 40px 28px;
  transition: background 0.3s;
}
.pillar:hover { background: rgba(58,184,224,0.07); }
.pillar-icon { font-size: 2rem; margin-bottom: 18px; display: block; color: var(--ice); }
.pillar-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.pillar-text { font-size: 0.86rem; color: rgba(255,255,255,0.55); line-height: 1.75; }

/* ===================================================================
   CHAPTERS SECTION — off-white background
   =================================================================== */
.chapters-section {
  background: var(--off-white);
  padding: 100px 0;
}
.chapters-section .section-title { color: var(--navy); }
.chapters-section .section-title span { color: var(--sky); }
.chapters-section .section-sub { color: var(--muted); max-width: 500px; margin: 0 auto; font-size: 1rem; line-height: 1.7; }
.chapters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 48px;
}
.chapter-tile {
  background: var(--white);
  padding: 28px 24px;
  transition: all 0.25s;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.chapter-tile:hover { background: var(--ice-bg); z-index: 1; box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.chapter-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ice), var(--sky));
  transform: scaleX(0);
  transition: transform 0.25s;
}
.chapter-tile:hover::before { transform: scaleX(1); }
.chapter-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.chapter-day { font-size: 0.82rem; color: var(--sky); font-weight: 700; letter-spacing: 0.04em; margin-bottom: 4px; }
.chapter-time { font-size: 0.78rem; color: var(--muted); margin-bottom: 4px; }
.chapter-region { font-size: 0.72rem; color: var(--muted); opacity: 0.7; }
.chapters-cta { text-align: center; }
.chapters-expand-note {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 20px;
  line-height: 1.6;
}

/* ===================================================================
   SPRING CAMP BAND — dark navy, prominent
   =================================================================== */
.camp-band {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.camp-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(58,184,224,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.camp-band .container { position: relative; z-index: 1; }
.camp-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.camp-eyebrow { color: var(--orange); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 12px; }
.camp-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.camp-date { font-size: 0.9rem; color: var(--ice); font-weight: 600; margin-bottom: 8px; }
.camp-desc { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 520px; }
.camp-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; flex-shrink: 0; }

/* ===================================================================
   TESTIMONIALS — dark section
   =================================================================== */
.stories {
  background: var(--navy-deep);
  padding: 100px 0;
}
.stories .section-title { color: var(--white); }
.stories .section-title span { color: var(--ice); }
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.story-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(58,184,224,0.12);
  padding: 36px 30px;
  position: relative;
  transition: all 0.3s;
}
.story-card:hover { background: rgba(58,184,224,0.06); border-color: rgba(58,184,224,0.25); }
.story-open-quote {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.8;
  color: var(--ice);
  opacity: 0.3;
  margin-bottom: 16px;
  display: block;
}
.story-text { font-size: 0.93rem; color: rgba(255,255,255,0.75); line-height: 1.85; font-style: italic; margin-bottom: 28px; }
.story-author { display: flex; align-items: center; gap: 12px; }
.story-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ice), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: 0.9rem; color: var(--white); flex-shrink: 0;
}
.story-name { font-weight: 700; font-size: 0.88rem; color: var(--white); }
.story-chapter { font-size: 0.74rem; color: var(--ice); font-weight: 600; }

/* ===================================================================
   SUPPORT BAND — light blue tint, ways to support
   =================================================================== */
.support-band {
  background: var(--ice-bg);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.support-band .section-title { color: var(--navy); }
.support-band .section-title span { color: var(--sky); }
.support-band .section-sub { color: var(--muted); max-width: 480px; margin: 0 auto; font-size: 1rem; line-height: 1.7; }
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.support-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 24px;
  text-align: center;
  transition: all 0.3s;
}
.support-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(58,184,224,0.3); }
.support-icon { font-size: 2.2rem; margin-bottom: 18px; display: block; color: var(--sky); }
.support-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.support-text { font-size: 0.85rem; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { background: var(--navy-deep); color: var(--white); padding: 72px 0 28px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}
.footer-logo-img { height: 52px; width: auto; margin-bottom: 18px; }
.footer-tagline { font-style: italic; font-size: 0.84rem; color: var(--ice); margin-bottom: 14px; opacity: 0.9; }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.42); line-height: 1.75; margin-bottom: 24px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
  width: 36px; height: 36px; background: rgba(255,255,255,0.06);
  border-radius: 0; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: all 0.2s; text-decoration: none;
}
.footer-social-btn:hover { background: var(--ice); color: var(--navy); }
.footer-col-title {
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.84rem; color: rgba(255,255,255,0.44); transition: color 0.2s; }
.footer-links a:hover { color: var(--ice); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer-legal a:hover { color: var(--ice); }
.footer-crisis {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.04);
  text-align: center;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.22);
}

/* ===================================================================
   DONATE PAGE
   =================================================================== */
.donate-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.donate-form-card {
  background: var(--white);
  padding: 44px 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.donate-form-header { margin-bottom: 28px; }
.donate-toggle {
  display: flex;
  background: var(--off-white);
  border: 1px solid var(--border);
  margin-bottom: 24px;
  overflow: hidden;
}
.donate-toggle-btn {
  flex: 1;
  padding: 11px 20px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
}
.donate-toggle-btn.active { background: var(--navy); color: var(--white); }
.donate-amounts-lg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.donate-amt-btn {
  padding: 16px 8px;
  border: 2px solid var(--border);
  background: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.donate-amt-btn:hover { border-color: var(--ice); color: var(--sky); }
.donate-amt-btn.selected { background: var(--navy); color: var(--white); border-color: var(--navy); }
.donate-impact-preview {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--navy);
  margin-bottom: 18px;
}
.donate-impact-icon { font-size: 1.5rem; flex-shrink: 0; }
.donate-impact-text { font-size: 0.83rem; color: rgba(255,255,255,0.8); line-height: 1.5; }
.donation-use-item { display: flex; gap: 18px; align-items: flex-start; }
.donation-use-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--ice-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.donation-use-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 5px;
}
.donation-use-text { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }
.benefit-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(58,184,224,0.1);
  border: 1px solid rgba(58,184,224,0.1);
  margin-top: 48px;
}
.benefit-stat {
  background: rgba(255,255,255,0.03);
  padding: 32px 20px;
  text-align: center;
}
.benefit-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--orange);
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.benefit-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.55; }
.footer-charity-note {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.04);
  text-align: center;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.2);
}

/* ===================================================================
   LOCATIONS / CHAPTER MAP PAGE
   =================================================================== */
.chapter-card {
  background: var(--white);
  padding: 28px 24px;
  border: none;
  transition: all 0.25s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.chapter-card:hover { background: var(--ice-bg); box-shadow: var(--shadow-sm); z-index: 1; }
.chapter-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ice), var(--sky));
  transform: scaleX(0);
  transition: transform 0.25s;
}
.chapter-card:hover::before { transform: scaleX(1); }
.chapter-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.chapter-icon { font-size: 1.5rem; }
.chapter-region { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sky); background: rgba(58,184,224,0.1); padding: 3px 9px; }
.chapter-spot { font-size: 0.82rem; color: var(--muted); margin-bottom: 4px; line-height: 1.4; }
.chapter-type { font-size: 0.74rem; color: var(--muted); opacity: 0.65; margin-bottom: 20px; flex: 1; }

/* ===================================================================
   SESSIONS / ACTIVITIES PAGE
   =================================================================== */
.session-step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.session-step {
  background: var(--off-white);
  padding: 40px 28px;
  position: relative;
}
.session-step-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--ice-pale);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.session-step-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.session-step-body { font-size: 0.87rem; color: var(--muted); line-height: 1.75; }
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.info-card {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.info-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.info-icon { font-size: 2rem; margin-bottom: 16px; display: block; color: var(--sky); }
.info-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.info-body { font-size: 0.87rem; color: var(--muted); line-height: 1.7; }

/* ===================================================================
   INNER PAGE HERO
   =================================================================== */
.page-hero {
  background: var(--navy-deep);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.7; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(1,27,46,0.55) 0%, rgba(1,27,46,0.2) 55%, rgba(10,133,194,0.05) 100%); }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 22px; }
.breadcrumb a { color: var(--ice); }
.breadcrumb-sep { opacity: 0.5; }
.page-hero-eyebrow { color: var(--ice); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 14px; display: block; }
.page-hero-title {
  font-family: 'Poppins', sans-serif; font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 5rem); color: var(--white);
  line-height: 1; letter-spacing: -1px; margin-bottom: 18px;
}
.page-hero-title span { color: var(--ice); }
.page-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.62); max-width: 480px; line-height: 1.7; }

/* ===================================================================
   CHAPTERS PAGE
   =================================================================== */
.chapters-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.chapter-card-full {
  background: var(--white);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.chapter-card-full::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ice), var(--sky));
  transform: scaleX(0);
  transition: transform 0.25s;
}
.chapter-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 16px;
}
.chapter-card-full { cursor: pointer; }
.chapter-card-full:hover { background: var(--ice-bg); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.chapter-card-full:hover::after { transform: scaleX(1); }
.chapter-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.chapter-badge { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sky); background: rgba(58,184,224,0.1); padding: 3px 9px; }
.chapter-icon-lg { font-size: 1.5rem; }
.chapter-title {
  font-family: 'Poppins', sans-serif; font-weight: 900;
  font-size: 1.5rem; color: var(--navy); margin-bottom: 8px;
}
.chapter-spot { font-size: 0.82rem; color: var(--muted); margin-bottom: 6px; line-height: 1.4; }
.chapter-schedule { font-size: 0.84rem; color: var(--sky); font-weight: 700; margin-bottom: 4px; }
.chapter-region-tag { font-size: 0.72rem; color: var(--muted); opacity: 0.7; margin-bottom: 20px; flex: 1; }

/* ===================================================================
   CONTACT PAGE
   =================================================================== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start; }
.contact-form-wrap {
  background: var(--white); padding: 40px 36px;
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; letter-spacing: 0.02em; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: 0;
  font-family: 'Poppins', sans-serif; font-size: 0.88rem;
  color: var(--text); background: var(--white);
  outline: none; transition: border-color 0.2s; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--ice); }
.form-input::placeholder, .form-textarea::placeholder { color: #aac4d1; }
.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a6e80' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.form-textarea { min-height: 130px; resize: vertical; line-height: 1.6; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-summary { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 0.95rem; color: var(--navy); cursor: pointer; gap: 12px; user-select: none; }
.faq-arrow { font-size: 1.2rem; color: var(--sky); flex-shrink: 0; transition: transform 0.2s; }
.faq-item[open] .faq-arrow { transform: rotate(45deg); }
.faq-body { padding: 0 0 18px; font-size: 0.88rem; color: var(--muted); line-height: 1.75; }

/* ===================================================================
   WATER QUALITY DASHBOARD
   =================================================================== */
.wq-panel {
  background: var(--navy-deep);
  padding: 56px 0;
  border-bottom: 1px solid rgba(58,184,224,0.12);
}
.wq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}
.wq-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.wq-updated {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.wq-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(58,184,224,0.12);
  border: 1px solid rgba(58,184,224,0.12);
}
.wq-stat {
  background: rgba(255,255,255,0.03);
  padding: 24px 20px;
  text-align: center;
  transition: background 0.2s;
}
.wq-stat:hover { background: rgba(58,184,224,0.06); }
.wq-stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}
.wq-stat-value {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--ice);
  margin-bottom: 4px;
}
.wq-stat-unit {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
}
.wq-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 8px;
}
.wq-badge.excellent { background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.wq-badge.good { background: rgba(58,184,224,0.15); color: var(--ice); border: 1px solid rgba(58,184,224,0.3); }
.wq-badge.fair { background: rgba(245,158,11,0.15); color: #fbbf24; border: 1px solid rgba(245,158,11,0.3); }
.wq-badge.poor { background: rgba(239,68,68,0.15); color: #f87171; border: 1px solid rgba(239,68,68,0.3); }
.wq-disclaimer {
  margin-top: 20px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--ice);
  font-size: 0.76rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

/* Chapter page session details */
.chapter-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.chapter-info-card {
  background: var(--off-white);
  padding: 28px 24px;
  border: 1px solid var(--border);
}
.chapter-info-icon {
  color: var(--sky);
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.chapter-info-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.chapter-info-value {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
}
.chapter-map { height: 360px; border: 1px solid var(--border); margin-top: 40px; }

/* ===================================================================
   BACK TO TOP BUTTON
   =================================================================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(1,45,71,0.3);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--ice); color: var(--navy); }

/* ===================================================================
   NEWSLETTER SIGNUP
   =================================================================== */
.newsletter-band {
  background: var(--off-white);
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.newsletter-sub {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-right: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  border-radius: 0;
}
.newsletter-form input[type="email"]:focus { border-color: var(--ice); }
.newsletter-form input[type="email"]::placeholder { color: #aac4d1; }
.newsletter-form button {
  padding: 14px 24px;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--sky); border-color: var(--sky); }

/* ===================================================================
   CAMP COUNTDOWN
   =================================================================== */
.camp-countdown {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.camp-countdown-unit {
  text-align: center;
}
.camp-countdown-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--ice);
  line-height: 1;
  display: block;
}
.camp-countdown-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* ===================================================================
   ABOUT PAGE
   =================================================================== */
.about-section { padding: 100px 0; }
.about-section.dark-bg { background: var(--navy-deep); }
.about-section.light-bg { background: var(--white); }
.about-section.tint-bg { background: var(--off-white); }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1100px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .chapters-grid { grid-template-columns: repeat(3, 1fr); }
  .support-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .chapters-full-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit-row { grid-template-columns: repeat(3, 1fr); }
  .session-step-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .mission-grid { grid-template-columns: 1fr; gap: 48px; }
  .stories-grid { grid-template-columns: 1fr; }
  .camp-inner { grid-template-columns: 1fr; }
  .camp-actions { align-items: flex-start; flex-direction: row; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .chapters-full-grid { grid-template-columns: repeat(2, 1fr); }
  .donate-grid { grid-template-columns: 1fr; gap: 48px; }
  .benefit-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav .container { padding: 0 20px; }
  .nav-links, .nav-sep { display: none; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--navy-deep); padding: 16px 20px; gap: 0;
    z-index: 999; box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(58,184,224,0.1);
  }
  .nav-links.mobile-open .nav-sep { display: none; }
  .nav-links.mobile-open li a,
  .nav-links.mobile-open li button.nav-folder-btn { display: block; padding: 13px 16px; font-size: 0.9rem; }
  .nav-links.mobile-open .nav-dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    border: none; border-radius: 0; padding: 0 0 0 24px; box-shadow: none;
    background: transparent;
  }
  .hamburger { display: flex; }
  .nav-shop { display: none; }
  .hero { min-height: 80vh; }
  .hero-h1 { font-size: clamp(2.4rem, 8vw, 4.5rem); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .pillars-grid { grid-template-columns: 1fr; }
  .chapters-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer { padding: 52px 0 24px; }
  .mission, .what-we-do, .chapters-section, .stories, .support-band { padding: 72px 0; }
  .session-step-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .donate-amounts-lg { grid-template-columns: repeat(3, 1fr); }
  .benefit-row { grid-template-columns: repeat(2, 1fr); }
  .donate-form-card { padding: 28px 22px; }
}
@media (max-width: 768px) {
  .wq-grid { grid-template-columns: repeat(3, 1fr); }
  .chapter-info-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .chapters-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .chapters-full-grid { grid-template-columns: 1fr; }
  .benefit-row { grid-template-columns: 1fr 1fr; }
  .donate-amounts-lg { grid-template-columns: repeat(2, 1fr); }
  .wq-grid { grid-template-columns: repeat(2, 1fr); }
  .chapter-info-grid { grid-template-columns: 1fr; }
}

/* ---- Skip Navigation (Accessibility) ---- */
.skip-nav {
  position: absolute; top: -100px; left: 16px;
  background: var(--navy); color: var(--white); padding: 12px 24px;
  z-index: 10000; font-weight: 700; font-size: 0.85rem;
  transition: top 0.2s;
}
.skip-nav:focus { top: 8px; }

/* ---- Cookie Consent Banner ---- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--navy-deep); border-top: 2px solid var(--ice);
  padding: 18px 24px; display: none; align-items: center;
  gap: 16px; justify-content: center; flex-wrap: wrap;
}
.cookie-banner.show { display: flex; }
.cookie-banner p {
  font-size: 0.82rem; color: rgba(255,255,255,0.7);
  line-height: 1.6; margin: 0; max-width: 600px;
}
.cookie-banner p a { color: var(--ice); text-decoration: underline; }
.cookie-btn {
  background: var(--ice); color: var(--navy); border: none;
  padding: 10px 28px; font-weight: 700; font-size: 0.82rem;
  cursor: pointer; letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.2s; flex-shrink: 0;
}
.cookie-btn:hover { background: var(--ice-light); }

/* ---- Share Buttons ---- */
.share-bar {
  display: flex; align-items: center; gap: 10px; margin-top: 20px;
}
.share-bar-label {
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.4);
}
.share-btn {
  width: 36px; height: 36px; display: inline-flex; align-items: center;
  justify-content: center; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12); color: var(--ice);
  font-size: 0.9rem; transition: all 0.2s; text-decoration: none;
}
.share-btn:hover {
  background: var(--ice); color: var(--navy);
  border-color: var(--ice);
}

/* ---- Carousel Dots (Testimonials) ---- */
.carousel-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.carousel-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}
.carousel-dot.active {
  background: var(--ice);
  border-color: var(--ice);
  transform: scale(1.2);
}
.carousel-dot:hover { border-color: var(--ice); }

/* ---- Resources page responsive ---- */
@media (max-width: 768px) {
  /* Research grid */
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  /* What to bring / tips 2-col */
  [style*="grid-template-columns:1fr 1fr; gap:64px"] { grid-template-columns: 1fr !important; gap: 40px !important; }
  /* External links 3-col */
  [style*="grid-template-columns:repeat(3,1fr)"] { grid-template-columns: 1fr !important; }
}

/* ---- Print Stylesheet ---- */
@media print {
  .nav, .announcement-bar, .back-to-top, .cookie-banner,
  .skip-nav, .share-bar, .hero-ctas, .camp-band,
  .newsletter-band, .support-band, .footer-socials,
  .hamburger, .nav-actions, .btn { display: none !important; }
  body { color: #000; background: #fff; font-size: 12pt; line-height: 1.5; }
  .page-hero { background: #012d47 !important; padding: 30px 0 !important; min-height: auto !important; }
  .page-hero-bg, .page-hero-overlay, .hero-bg, .hero-overlay { display: none !important; }
  .page-hero-title, .hero-h1 { color: #012d47 !important; font-size: 24pt !important; }
  .page-hero .container { position: relative; z-index: 1; }
  .container { max-width: 100%; padding: 0 20px; }
  section { padding: 24px 0 !important; break-inside: avoid; }
  .info-grid, .chapter-info-grid, .wq-grid, .session-step-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  .footer { padding: 20px 0 !important; }
  .footer-top { grid-template-columns: 1fr !important; gap: 12px !important; }
  a { color: #012d47 !important; text-decoration: underline; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 8pt; color: #666; }
  .chapter-map, #homepage-map { display: none !important; }
}
