/* ============================================================
   SADD SASKATCHEWAN — GLOBAL STYLESHEET
   ============================================================ */

:root {
  --red:        #C8102E;
  --red-dark:   #9B0D22;
  --red-light:  #FF2D4E;
  --gold:       #F5A623;
  --gold-dark:  #D48B0F;
  --black:      #0D0D0D;
  --near-black: #141414;
  --dark:       #1A1A1A;
  --dark-2:     #222222;
  --dark-3:     #2C2C2C;
  --mid:        #4A4A4A;
  --border:     rgba(255,255,255,0.08);
  --border-red: rgba(200,16,46,0.3);
  --light:      #F0EDE8;
  --white:      #FFFFFF;
  --text-muted: rgba(255,255,255,0.60);
  --text-dim:   rgba(255,255,255,0.40);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --section-pad:  100px 6vw;
  --inner-max:    1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--near-black); color: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ============================================================
   UTILITY
   ============================================================ */
.inner          { max-width: var(--inner-max); margin: 0 auto; width: 100%; }
.section-label  { font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .3em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; display: flex; align-items: center; gap: 12px; }
.section-label::before { content:''; display:block; width:32px; height:2px; background:var(--red); }
.section-title  { font-family: var(--font-display); font-weight: 900; font-size: clamp(40px,5vw,68px); text-transform: uppercase; line-height: .95; letter-spacing: -.01em; margin-bottom: 1.25rem; }
.section-title .accent { color: var(--red); }
.section-title .gold   { color: var(--gold); }
.section-body   { font-size: 17px; line-height: 1.75; color: var(--text-muted); max-width: 600px; }
.gold-bar       { display: inline-block; color: var(--gold); border-left: 4px solid var(--gold); padding-left: 20px; font-family: var(--font-display); font-weight: 700; font-size: 22px; line-height: 1.4; margin: 1.5rem 0; }
.tag            { display: inline-block; font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 5px 14px; border-radius: 2px; background: rgba(200,16,46,.15); color: var(--red-light); border: 1px solid var(--border-red); }

/* Buttons */
.btn            { display: inline-block; font-family: var(--font-display); font-weight: 800; font-size: 15px; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: background .2s, border-color .2s, transform .15s; cursor: pointer; border: none; }
.btn:hover      { transform: translateY(-2px); }
.btn-primary    { background: var(--red); color: var(--white); padding: 14px 36px; }
.btn-primary:hover { background: var(--red-light); }
.btn-secondary  { color: var(--white); border: 2px solid rgba(255,255,255,.3); padding: 12px 32px; }
.btn-secondary:hover { border-color: var(--white); }
.btn-gold       { background: var(--gold); color: var(--black); padding: 14px 36px; }
.btn-gold:hover { background: var(--gold-dark); }
.btn-white      { background: var(--white); color: var(--red); padding: 14px 40px; }
.btn-white:hover { background: var(--light); }

/* ============================================================
   NAV
   ============================================================ */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 68px;
  background: rgba(13,13,13,.94); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-red);
}
.nav-logo {
  font-family: var(--font-display); font-weight: 900; font-size: 26px;
  letter-spacing: .04em; text-transform: uppercase; text-decoration: none;
  color: var(--white); display: flex; align-items: center; gap: 10px;
}
.nav-logo span { color: var(--red); }
.nav-dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.7)} }

.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  letter-spacing: .07em; text-transform: uppercase; text-decoration: none;
  color: rgba(255,255,255,.7); padding: 24px 16px; display: block;
  transition: color .2s; white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li.active > a { color: var(--white); }
.nav-links > li.active > a::after {
  content: ''; display: block; position: absolute; bottom: 0; left: 16px; right: 16px;
  height: 2px; background: var(--red);
}
.caret { font-size: 10px; opacity: .6; }

/* Dropdown */
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--dark); border: 1px solid var(--border); border-top: 2px solid var(--red);
  min-width: 220px; list-style: none; z-index: 300;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block; padding: 12px 20px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  letter-spacing: .05em; text-transform: uppercase; text-decoration: none;
  color: var(--text-muted); border-bottom: 1px solid var(--border); transition: color .15s, background .15s;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { color: var(--white); background: var(--dark-2); }

/* Nav CTA */
.nav-cta {
  font-family: var(--font-display) !important; font-weight: 700 !important;
  font-size: 13px !important; letter-spacing: .12em !important;
  color: var(--white) !important; background: var(--red);
  padding: 8px 20px !important; border-radius: 2px; margin-left: 8px;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--red-light) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 140px 6vw 80px;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--near-black) 55%, #1a0a0e 100%);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(200,16,46,.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(200,16,46,.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-glow {
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,16,46,.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: var(--inner-max); margin: 0 auto; }
.page-hero-tag { font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .25em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; display: flex; align-items: center; gap: 12px; }
.page-hero-tag::before { content:''; display:block; width:28px; height:2px; background:var(--red); }
.page-hero h1 { font-family: var(--font-display); font-weight: 900; font-size: clamp(52px,7vw,96px); text-transform: uppercase; line-height: .93; letter-spacing: -.01em; margin-bottom: 1.25rem; }
.page-hero h1 .accent { color: var(--red); display: block; }
.page-hero-sub { font-size: 18px; line-height: 1.65; color: var(--text-muted); max-width: 560px; }

/* Photo in hero */
.hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-photo { border-radius: 4px; overflow: hidden; position: relative; }
.hero-photo img { width: 100%; height: 360px; object-fit: cover; }
.hero-photo-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(200,16,46,.15) 0%, transparent 60%); }

/* ============================================================
   HOME HERO
   ============================================================ */
#home-hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 0 6vw; padding-top: 68px;
  position: relative; overflow: hidden;
}
.home-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200,16,46,.15) 0%, transparent 70%),
              linear-gradient(160deg, #0D0D0D 50%, #1a0a0e 100%);
}
.home-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(200,16,46,.07) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(200,16,46,.07) 1px, transparent 1px);
  background-size: 60px 60px;
}
.home-hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  letter-spacing: .25em; text-transform: uppercase; color: var(--red);
  margin-bottom: 1.5rem; display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content:''; display:block; width:40px; height:2px; background:var(--red); }
.home-hero h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(64px,8.5vw,112px); line-height: .91;
  text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 2rem;
}
.home-hero h1 .accent { color: var(--red); display: block; }
.home-hero h1 .gold-accent { color: var(--gold); display: block; }
.hero-sub { font-size: 18px; line-height: 1.65; color: var(--text-muted); max-width: 440px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.home-hero-visual { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; }

/* Stat cluster */
.stat-cluster { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; width: 100%; max-width: 420px; }
.stat-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 4px; padding: 28px 24px; }
.stat-card.accent-red { border-color: rgba(200,16,46,.5); background: rgba(200,16,46,.08); grid-column: span 2; }
.stat-num { font-family: var(--font-display); font-weight: 900; font-size: 56px; line-height: 1; color: var(--white); margin-bottom: 8px; }
.accent-red .stat-num { color: var(--red-light); }
.stat-label { font-size: 13px; color: var(--text-dim); text-transform: uppercase; letter-spacing: .06em; font-weight: 500; }

/* Scroll indicator */
.scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: .4; animation: floatY 3s ease-in-out infinite; }
@keyframes floatY { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, var(--white)); }
.scroll-text { font-family: var(--font-display); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section          { padding: var(--section-pad); }
.section-dark     { background: var(--dark); }
.section-darker   { background: var(--near-black); }
.section-dark2    { background: var(--dark-2); }

/* Two-col layout */
.two-col          { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.two-col.center   { align-items: center; }
.three-col        { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.four-col         { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--dark-2); border: 1px solid var(--border);
  border-radius: 4px; padding: 32px 28px;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: var(--border-red); transform: translateY(-4px); }
.card-icon { font-size: 28px; margin-bottom: 16px; }
.card-title { font-family: var(--font-display); font-weight: 800; font-size: 20px; text-transform: uppercase; letter-spacing: .04em; color: var(--white); margin-bottom: 10px; }
.card-body { font-size: 15px; line-height: 1.65; color: var(--text-muted); }

/* Left-bordered value cards */
.value-card {
  background: var(--dark-2); border: 1px solid var(--border);
  border-left: 4px solid var(--red); border-radius: 4px; padding: 24px 28px;
  transition: border-left-color .2s, transform .2s;
}
.value-card:hover { border-left-color: var(--red-light); transform: translateX(6px); }
.value-num { font-family: var(--font-display); font-weight: 900; font-size: 44px; line-height: 1; color: rgba(200,16,46,.2); margin-bottom: 4px; }
.value-title { font-family: var(--font-display); font-weight: 800; font-size: 19px; text-transform: uppercase; letter-spacing: .04em; color: var(--white); margin-bottom: 6px; }
.value-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Program grid (flush, gap 2px) */
.program-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.program-card {
  background: var(--dark-2); padding: 40px 32px;
  position: relative; overflow: hidden; transition: background .25s;
}
.program-card::before { content:''; position:absolute; top:0;left:0;right:0; height:4px; background:var(--red); transform:scaleX(0); transform-origin:left; transition:transform .3s; }
.program-card:hover::before { transform: scaleX(1); }
.program-card:hover { background: var(--dark-3); }
.program-icon { width: 52px; height: 52px; background: rgba(200,16,46,.1); border: 1px solid rgba(200,16,46,.25); border-radius: 4px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 22px; }
.program-title { font-family: var(--font-display); font-weight: 800; font-size: 21px; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 10px; }
.program-desc { font-size: 15px; line-height: 1.65; color: var(--text-muted); }

/* Events list */
.events-list { display: flex; flex-direction: column; gap: 2px; margin-top: 2rem; }
.event-row {
  display: grid; grid-template-columns: 80px 1fr auto;
  align-items: center; gap: 24px; padding: 20px 24px;
  background: var(--dark-2); transition: background .2s;
}
.event-row:hover { background: var(--dark-3); }
.event-date { text-align: center; }
.event-month { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--red); }
.event-day { font-family: var(--font-display); font-size: 36px; font-weight: 900; line-height: 1; }
.event-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: .03em; margin-bottom: 4px; }
.event-location { font-size: 13px; color: var(--text-dim); }

/* Steps */
.steps-list { display: flex; flex-direction: column; }
.step { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--border); }
.step-num { font-family: var(--font-display); font-weight: 900; font-size: 48px; line-height: 1; color: var(--red); min-width: 56px; opacity: .45; }
.step-title { font-family: var(--font-display); font-weight: 800; font-size: 20px; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }
.step-desc { font-size: 15px; line-height: 1.6; color: var(--text-muted); }

/* Resource cards */
.resource-card { background: var(--dark-2); border: 1px solid var(--border); border-radius: 4px; padding: 28px 24px; text-decoration: none; color: inherit; transition: border-color .2s, transform .2s; display: flex; flex-direction: column; gap: 12px; }
.resource-card:hover { border-color: var(--border-red); transform: translateY(-4px); }
.resource-icon { font-size: 28px; }
.resource-title { font-family: var(--font-display); font-weight: 800; font-size: 17px; text-transform: uppercase; letter-spacing: .03em; color: var(--white); }
.resource-desc { font-size: 14px; line-height: 1.6; color: var(--text-muted); flex: 1; }
.resource-link { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--red-light); margin-top: auto; }
.resource-link::after { content: ' →'; }

/* Photo cards */
.photo-card { border-radius: 4px; overflow: hidden; position: relative; }
.photo-card img { width: 100%; height: 260px; object-fit: cover; transition: transform .4s; }
.photo-card:hover img { transform: scale(1.04); }
.photo-card-body { padding: 20px; background: var(--dark-2); }
.photo-card-title { font-family: var(--font-display); font-weight: 800; font-size: 18px; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }
.photo-card-text { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Info box */
.info-box { background: rgba(245,166,35,.07); border: 1px solid rgba(245,166,35,.25); border-radius: 4px; padding: 24px 28px; }
.info-box-title { font-family: var(--font-display); font-weight: 800; font-size: 16px; text-transform: uppercase; letter-spacing: .05em; color: var(--gold); margin-bottom: 10px; }
.info-box p { font-size: 15px; line-height: 1.7; color: var(--text-muted); }

/* Alert box */
.alert-box { background: rgba(200,16,46,.08); border: 1px solid rgba(200,16,46,.3); border-radius: 4px; padding: 20px 24px; }
.alert-box p { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,.75); }

/* Highlight card (red header) */
.highlight-card { background: var(--dark-2); border-radius: 4px; border: 1px solid var(--border); overflow: hidden; }
.highlight-card-header { background: var(--red); padding: 24px 28px; }
.highlight-card-header h3 { font-family: var(--font-display); font-weight: 900; font-size: 26px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.highlight-card-header p { font-size: 14px; color: rgba(255,255,255,.8); }
.highlight-card-body { padding: 28px; }

/* List styles */
.styled-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 1rem; }
.styled-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 16px; color: var(--text-muted); line-height: 1.55; }
.styled-list li::before { content:''; display:block; width:18px; height:18px; min-width:18px; background:var(--red); clip-path:polygon(50% 0%,100% 50%,50% 100%,0% 50%); margin-top:2px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 1rem; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text-muted); line-height: 1.55; }
.check-list li::before { content:'✓'; color: var(--gold); font-weight: 700; font-size: 16px; min-width: 20px; }

/* Stat bar row */
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 3rem; }
.stat-block { background: var(--dark-2); padding: 32px 24px; text-align: center; }
.stat-block .big-num { font-family: var(--font-display); font-weight: 900; font-size: 52px; line-height: 1; color: var(--red-light); margin-bottom: 8px; }
.stat-block .big-label { font-size: 13px; color: var(--text-dim); text-transform: uppercase; letter-spacing: .08em; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-2); border: 1px solid rgba(255,255,255,.1); border-radius: 2px;
  padding: 12px 16px; font-size: 15px; font-family: var(--font-body); color: var(--white); outline: none; transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group select option { background: var(--dark-2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; margin-top: 1.5rem; }
.contact-info { display: flex; flex-direction: column; gap: 24px; margin-top: 1.5rem; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; min-width: 44px; background: rgba(200,16,46,.12); border: 1px solid rgba(200,16,46,.25); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.contact-label { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--red); margin-bottom: 3px; }
.contact-value { font-size: 15px; color: rgba(255,255,255,.8); line-height: 1.5; }
.contact-value a { text-decoration: none; color: inherit; transition: color .2s; }
.contact-value a:hover { color: var(--red-light); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: var(--red); padding: 80px 6vw; text-align: center; position: relative; overflow: hidden; }
.cta-band-watermark { position: absolute; font-family: var(--font-display); font-weight: 900; font-size: 180px; text-transform: uppercase; letter-spacing: -.02em; color: rgba(0,0,0,.1); top: 50%; left: 50%; transform: translate(-50%,-50%); white-space: nowrap; pointer-events: none; }
.cta-band h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(38px,6vw,72px); text-transform: uppercase; line-height: .95; letter-spacing: -.01em; color: var(--white); margin-bottom: 1.25rem; position: relative; }
.cta-band p { font-size: 18px; color: rgba(255,255,255,.85); max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.65; position: relative; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { padding: 20px 6vw; background: var(--dark); border-bottom: 1px solid var(--border); }
.breadcrumb-inner { max-width: var(--inner-max); margin: 0 auto; display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-dim); }
.breadcrumb a { color: var(--text-dim); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--red-light); }
.breadcrumb .sep { opacity: .4; }
.breadcrumb .current { color: var(--white); }

/* ============================================================
   TABLE
   ============================================================ */
.styled-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.styled-table th { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .15em; text-transform: uppercase; color: var(--red); padding: 14px 16px; border-bottom: 2px solid var(--red); text-align: left; }
.styled-table td { padding: 14px 16px; font-size: 15px; color: var(--text-muted); border-bottom: 1px solid var(--border); line-height: 1.5; }
.styled-table tr:hover td { background: rgba(255,255,255,.02); }

/* ============================================================
   PHOTO GRID
   ============================================================ */
.photo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 2.5rem; }
.photo-grid-item { overflow: hidden; aspect-ratio: 4/3; }
.photo-grid-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.photo-grid-item:hover img { transform: scale(1.06); }

/* Photo banner */
.photo-banner { width: 100%; height: 400px; object-fit: cover; display: block; }
.photo-banner-wrap { overflow: hidden; border-radius: 4px; }

/* ============================================================
   CHAPTER REGISTRATION BOX
   ============================================================ */
.reg-box { background: var(--dark-2); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.reg-box-header { background: var(--red); padding: 28px 32px; }
.reg-box-header h3 { font-family: var(--font-display); font-weight: 900; font-size: 28px; text-transform: uppercase; margin-bottom: 6px; }
.reg-box-header p { font-size: 15px; color: rgba(255,255,255,.8); }
.reg-box-body { padding: 32px; }
.reg-fee { display: flex; align-items: baseline; gap: 8px; margin: 1rem 0; }
.reg-fee .amount { font-family: var(--font-display); font-weight: 900; font-size: 56px; color: var(--gold); line-height: 1; }
.reg-fee .period { font-size: 15px; color: var(--text-muted); }
.benefit-row { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 15px; color: var(--text-muted); line-height: 1.5; }
.benefit-row:last-child { border-bottom: none; }
.benefit-check { color: var(--gold); font-weight: 700; min-width: 20px; }

/* ============================================================
   ACCORDION
   ============================================================ */
.accordion { display: flex; flex-direction: column; gap: 2px; }
.accordion-item { background: var(--dark-2); border: 1px solid var(--border); border-radius: 2px; }
.accordion-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-weight: 700; font-size: 17px; text-transform: uppercase; letter-spacing: .04em; color: var(--white);
  transition: color .2s;
}
.accordion-btn:hover { color: var(--red-light); }
.accordion-icon { font-size: 18px; color: var(--red); transition: transform .3s; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { display: none; padding: 0 24px 20px; font-size: 15px; line-height: 1.7; color: var(--text-muted); }
.accordion-item.open .accordion-body { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--black); border-top: 1px solid rgba(255,255,255,.06); padding: 64px 6vw 40px; }
.footer-inner { max-width: var(--inner-max); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 3rem; }
.footer-logo { font-family: var(--font-display); font-weight: 900; font-size: 30px; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 12px; }
.footer-logo span { color: var(--red); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.65; max-width: 280px; margin-bottom: 20px; }
.footer-contact-block p { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.8; }
.footer-contact-block a { text-decoration: none; color: inherit; transition: color .2s; }
.footer-contact-block a:hover { color: var(--red-light); }
.footer-contact-block strong { color: rgba(255,255,255,.6); }
.footer-col h4 { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--red-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-legal { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-sask { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.2); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
}

@media (max-width: 900px) {
  :root { --section-pad: 72px 5vw; }
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
    background: var(--black); flex-direction: column; gap: 0;
    overflow-y: auto; z-index: 190;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 18px 5vw; font-size: 18px; border-bottom: 1px solid var(--border); }
  .nav-links > li.active > a::after { display: none; }
  .dropdown { display: none !important; position: static; border: none; border-top: none; }
  .has-dropdown.mobile-open .dropdown { display: flex !important; flex-direction: column; background: rgba(255,255,255,.03); }
  .dropdown li a { padding: 14px 5vw 14px 9vw; font-size: 15px; }
  .caret { float: right; margin-top: 3px; }
  .nav-cta { margin: 16px 5vw; display: block; text-align: center; }

  #home-hero { grid-template-columns: 1fr; min-height: auto; padding-top: 100px; padding-bottom: 60px; }
  .home-hero-visual { margin-top: 3rem; }
  .stat-cluster { max-width: 100%; }
  .hero-split { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .three-col { grid-template-columns: 1fr; }
  .four-col { grid-template-columns: 1fr 1fr; }
  .program-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .event-row { grid-template-columns: 64px 1fr; }
  .event-row .tag { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: auto; }
  .cta-band-watermark { font-size: 80px; }
}

@media (max-width: 480px) {
  .four-col { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 40px; }
}

/* ============================================================
   CONSTITUTION PAGE
   ============================================================ */
.const-article { margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
.const-article:last-child { border-bottom: none; }
.const-art-label { font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: .28em; text-transform: uppercase; color: var(--red); margin-bottom: .75rem; display: flex; align-items: center; gap: 10px; }
.const-art-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--red); }
.const-art-title { font-family: var(--font-display); font-weight: 900; font-size: 34px; text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 1.25rem; }
.const-section-head { font-family: var(--font-display); font-weight: 800; font-size: 17px; text-transform: uppercase; letter-spacing: .04em; color: var(--white); margin: 1.5rem 0 .5rem; }
.const-subsection-head { font-family: var(--font-display); font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: .04em; color: rgba(255,255,255,.75); margin: 1.25rem 0 .4rem; }
.const-body { font-size: 15px; line-height: 1.8; color: var(--text-muted); margin-bottom: .75rem; }
.const-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: .75rem 0; }
.const-list > li { display: flex; gap: 12px; font-size: 15px; color: var(--text-muted); line-height: 1.65; }
.const-list > li .marker { font-family: var(--font-display); font-weight: 700; color: var(--red); min-width: 28px; font-size: 14px; letter-spacing: .05em; }
.const-sublist { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: .5rem 0 .5rem 40px; }
.const-sublist > li { display: flex; gap: 10px; font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.const-sublist > li .marker { font-family: var(--font-display); font-weight: 700; color: rgba(200,16,46,.6); min-width: 24px; font-size: 13px; }

/* ============================================================
   DISTRICTS PAGE
   ============================================================ */
.district-schools { display: none; padding: 20px 28px 24px; background: rgba(0,0,0,0.15); }
