/* ============================================================
   Systems for Innovative Schools — Global Stylesheet
   Mobile-first, responsive. Color palette: navy/teal/white.
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0d3b5e;
  --navy-dark: #08253d;
  --teal:      #1a8fa0;
  --teal-light:#22b8cc;
  --accent:    #e87c2b;
  --accent-lt: #f5a55a;
  --white:     #ffffff;
  --off-white: #f4f7f9;
  --gray-100:  #eef1f4;
  --gray-300:  #c8d0d8;
  --gray-600:  #5a6572;
  --gray-800:  #2c3540;
  --text:      #1e2a34;

  --font-body:    'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-heading: 'Georgia', 'Times New Roman', serif;

  --radius:  8px;
  --radius-lg: 16px;
  --shadow:  0 4px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.15);

  --max-w: 1140px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-light); }

ul { list-style: none; }

/* ── Typography ── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem,5vw,3.25rem); }
h2 { font-size: clamp(1.6rem,4vw,2.5rem); }
h3 { font-size: clamp(1.2rem,3vw,1.6rem); }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 700; }
p  { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ── Layout helpers ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 5rem 0; }
.section--gray { background: var(--off-white); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--teal { background: var(--teal); color: var(--white); }
.section--teal h2, .section--teal h3 { color: var(--white); }

.section-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: .6rem;
}
.section--navy .section-label,
.section--teal .section-label { color: var(--accent-lt); }

.section-header { max-width: 680px; }
.section-header--center { margin: 0 auto; text-align: center; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p  { color: var(--gray-600); }
.section--navy .section-header p,
.section--teal .section-header p { color: rgba(255,255,255,.8); }

.mt-2  { margin-top: .5rem;  }
.mt-4  { margin-top: 1rem;   }
.mt-6  { margin-top: 1.5rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-6  { margin-bottom: 1.5rem; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: .8rem 2rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: all .22s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-lt);
  border-color: var(--accent-lt);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,124,43,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  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-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Grid helpers ── */
.grid-2 { display: grid; gap: 2rem; }
.grid-3 { display: grid; gap: 2rem; }
.grid-4 { display: grid; gap: 1.5rem; }
@media (min-width: 640px)  { .grid-2 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 768px)  { .grid-3 { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 900px)  { .grid-4 { grid-template-columns: repeat(4,1fr); } }

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
  transition: transform .22s ease, box-shadow .22s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--white);
  font-size: 1.4rem;
}
.card h3 { margin-bottom: .6rem; }

/* ── ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: var(--nav-h);
  background: var(--navy-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
  transition: background .3s;
}
#site-header.scrolled { background: var(--navy-dark); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.site-logo img {
  height: 42px;
  width: auto;
}
.logo-text {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 700;
}
.logo-text span {
  display: block;
  font-size: .72rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--teal-light);
  text-transform: uppercase;
}

/* Desktop nav */
.site-nav { display: none; }
.site-nav a {
  color: rgba(255,255,255,.85);
  font-size: .92rem;
  font-weight: 500;
  padding: .45rem .9rem;
  border-radius: 6px;
  transition: color .18s, background .18s;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.12);
}
.site-nav .nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: .5rem 1.25rem;
  border-radius: 50px;
  margin-left: .5rem;
}
.site-nav .nav-cta:hover { background: var(--accent-lt); }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8.75px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8.75px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--navy-dark);
  padding: 1.5rem 1.25rem 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  z-index: 998;
  flex-direction: column;
  gap: .25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
  font-weight: 500;
  padding: .85rem 1rem;
  border-radius: 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .18s;
}
.mobile-nav a:hover, .mobile-nav a.active { background: rgba(255,255,255,.1); color: var(--white); }
.mobile-nav .nav-cta {
  background: var(--accent);
  color: var(--white);
  margin-top: .75rem;
  border: none;
  text-align: center;
  border-radius: 50px;
}

@media (min-width: 900px) {
  .site-nav { display: flex; align-items: center; gap: .25rem; }
  .nav-toggle { display: none; }
}

/* ── ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo-text { font-size: 1.1rem; }
.footer-brand p { margin-top: 1rem; font-size: .9rem; line-height: 1.7; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: color .18s;
}
.footer-col ul li a:hover { color: var(--teal-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.45);
}
@media (min-width: 600px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

/* ── ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  max-height: 820px;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.hero-slides { width: 100%; height: 100%; position: relative; }
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity .9s ease;
  background: var(--navy-dark);
}
.hero-slide.active { opacity: 1; z-index: 1; }

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .38;
}
.hero-slide-bg-1 { background-image: url('../assets/hero-1.jpg'); }
.hero-slide-bg-2 { background-image: url('../assets/hero-2.jpg'); }
.hero-slide-bg-3 { background-image: url('../assets/hero-3.jpg'); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,37,61,.85) 0%, rgba(13,59,94,.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 760px;
  padding: 0 1.25rem;
  margin: 0 auto;
  text-align: center;
}
.hero-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.hero-content h1 { color: var(--white); margin-bottom: 1rem; }
.hero-content .hero-sub {
  font-size: clamp(1rem,2.5vw,1.2rem);
  color: rgba(255,255,255,.88);
  margin-bottom: .75rem;
}
.hero-content .hero-support {
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* Slide dots */
.hero-dots {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .6rem;
  z-index: 3;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: background .25s, transform .25s;
  padding: 0;
}
.hero-dot.active { background: var(--accent); transform: scale(1.3); }

/* ── ============================================================
   HOME — CHALLENGES SECTION
   ============================================================ */
.challenge-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
  border-top: 4px solid var(--teal);
  transition: transform .22s ease, box-shadow .22s ease;
}
.challenge-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.challenge-card h3 { color: var(--navy); margin-bottom: .75rem; }
.challenge-card p  { color: var(--gray-600); font-size: .94rem; margin-bottom: 1rem; }
.challenge-card ul { padding-left: 0; }
.challenge-card ul li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: .5rem;
  font-size: .93rem;
  color: var(--gray-800);
}
.challenge-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.challenge-card:nth-child(2) { border-top-color: var(--accent); }
.challenge-card:nth-child(3) { border-top-color: var(--navy); }

/* ── HOME — ABOUT PREVIEW ── */
.about-preview {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.about-preview-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--gray-100);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-preview-img img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  text-align: center;
  padding: 2rem;
}
.blockquote {
  border-left: 4px solid var(--teal);
  padding: 1.25rem 1.5rem;
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
}
@media (min-width: 768px) {
  .about-preview { grid-template-columns: 1fr 1fr; }
}

/* ── HOME — FOCUS AREAS ── */
.focus-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}
.focus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.focus-num {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gray-100);
  position: absolute;
  top: .75rem;
  right: 1rem;
  font-family: var(--font-heading);
}
.focus-card h3 { color: var(--navy); margin-bottom: .4rem; font-size: 1.1rem; }
.focus-card .focus-tagline { font-size: .9rem; color: var(--teal); font-weight: 600; margin-bottom: .75rem; }
.focus-card p { font-size: .92rem; color: var(--gray-600); }

/* ── HOME — PROCESS TEASER ── */
.process-steps {
  display: grid;
  gap: 0;
}
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.process-step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.step-body h4 { color: var(--navy); margin-bottom: .2rem; }
.step-body p  { font-size: .92rem; color: var(--gray-600); }

@media (min-width: 768px) {
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-step { border-right: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); padding: 1.75rem; }
  .process-step:nth-child(2n) { border-right: none; }
}

/* ── HOME — FINAL CTA ── */
.cta-section {
  text-align: center;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0d4f72 100%);
  color: var(--white);
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p  { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 2rem; }

/* ── ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 6rem 0 4rem;
  margin-top: var(--nav-h);
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p  { color: rgba(255,255,255,.8); max-width: 620px; margin: 0 auto; font-size: 1.1rem; }

.about-story {
  display: grid;
  gap: 3rem;
  align-items: start;
}
.about-story-text h2 { margin-bottom: 1rem; }
@media (min-width: 900px) {
  .about-story { grid-template-columns: 3fr 2fr; }
}

.timeline { margin-top: 1rem; }
.timeline-item {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 2rem;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: var(--gray-300);
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 1;
}
.timeline-body h4 { color: var(--navy); margin-bottom: .3rem; }
.timeline-body p  { font-size: .91rem; color: var(--gray-600); }

.values-grid { margin-top: 2rem; }
.value-item { padding: 1.5rem; border-radius: var(--radius); background: var(--off-white); }
.value-item h4 { color: var(--teal); margin-bottom: .5rem; }
.value-item p { font-size: .91rem; color: var(--gray-600); }

.next-steps { counter-reset: steps; }
.next-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}
.step-badge {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ── ============================================================
   HOW WE WORK PAGE
   ============================================================ */
.phases-grid { display: grid; gap: 2rem; }
.phase-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: transform .22s ease, box-shadow .22s ease;
}
.phase-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.phase-num {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: var(--font-heading);
}
.phase-body h3 { color: var(--navy); margin-bottom: .5rem; }
.phase-body p  { font-size: .93rem; color: var(--gray-600); }
@media (min-width: 768px) {
  .phases-grid { grid-template-columns: repeat(2,1fr); }
}

.principles-list { display: grid; gap: 1.25rem; }
.principle {
  padding: 1.5rem;
  border-left: 4px solid var(--teal);
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.principle h4 { color: var(--navy); margin-bottom: .35rem; }
.principle p  { font-size: .91rem; color: var(--gray-600); }

/* FAQ Accordion */
.faq-list { margin-top: 1.5rem; }
.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--gray-300);
  margin-bottom: .75rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .18s;
  gap: 1rem;
}
.faq-question:hover { background: var(--off-white); }
.faq-question[aria-expanded="true"] { background: var(--navy); color: var(--white); }
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
  font-size: .9rem;
  font-weight: 700;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  background: var(--off-white);
}
.faq-answer.open { max-height: 600px; }
.faq-answer-inner { padding: 1.25rem 1.5rem; font-size: .94rem; color: var(--gray-800); line-height: 1.75; }

/* Assessment steps */
.assessment-steps { counter-reset: assess; display: grid; gap: 1.5rem; }
.assess-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1.25rem;
}
.assess-num {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.assess-body h4 { color: var(--navy); margin-bottom: .35rem; }
.assess-body p  { font-size: .91rem; color: var(--gray-600); }
@media (min-width: 768px) { .assessment-steps { grid-template-columns: repeat(2,1fr); } }

/* ── ============================================================
   RESOURCES PAGE
   ============================================================ */
.resource-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.resource-card-img {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.4);
  font-size: .8rem;
}
.resource-card-body { padding: 1.5rem; }
.resource-badge {
  display: inline-block;
  padding: .25rem .7rem;
  border-radius: 50px;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--teal);
  color: var(--white);
  margin-bottom: .75rem;
}
.resource-badge.badge-orange { background: var(--accent); }
.resource-badge.badge-navy { background: var(--navy); }
.resource-card-body h4 { color: var(--navy); margin-bottom: .5rem; }
.resource-card-body p { font-size: .89rem; color: var(--gray-600); }
.resource-link {
  display: inline-block;
  margin-top: .75rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--teal);
}
.resource-link:hover { color: var(--navy); }

.topic-list { display: grid; gap: .75rem; }
.topic-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transition: transform .18s;
}
.topic-item:hover { transform: translateX(4px); }
.topic-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.topic-item h5 { font-size: .95rem; color: var(--navy); margin-bottom: .1rem; }
.topic-item p  { font-size: .83rem; color: var(--gray-600); }

.ext-link-list { display: flex; flex-direction: column; gap: .5rem; }
.ext-link-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  font-weight: 500;
  color: var(--navy);
  transition: background .18s;
}
.ext-link-item:hover { background: var(--off-white); color: var(--teal); }
.ext-arrow { margin-left: auto; color: var(--gray-300); font-size: 1.1rem; }

/* ── ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 3fr 2fr; }
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  transition: border-color .18s, box-shadow .18s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,143,160,.15);
}
.form-group input.error,
.form-group textarea.error { border-color: #e03535; }
.form-error-msg {
  display: none;
  font-size: .8rem;
  color: #e03535;
  margin-top: .3rem;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 500px) { .form-row { grid-template-columns: 1fr 1fr; } }

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.75rem;
}
.contact-info-card h4 { color: var(--navy); margin-bottom: .75rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .93rem;
  color: var(--gray-600);
  margin-bottom: .6rem;
}
.contact-detail a { color: var(--teal); }

.form-success {
  display: none;
  background: #d4f5e5;
  border: 1px solid #4ecb8a;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: #176b43;
  font-size: .95rem;
  margin-top: 1rem;
}

/* ── ============================================================
   UTILITY / MISC
   ============================================================ */
.divider {
  width: 60px;
  height: 4px;
  background: var(--teal);
  border-radius: 2px;
  margin: 1rem 0 1.75rem;
}
.divider-center { margin-left: auto; margin-right: auto; }

.text-center { text-align: center; }
.text-white  { color: var(--white); }

.highlight-box {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
  text-align: center;
}
.highlight-box h3 { color: var(--white); margin-bottom: .75rem; }
.highlight-box p  { color: rgba(255,255,255,.85); margin-bottom: 1.5rem; }

/* skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--accent);
  color: var(--white);
  padding: .5rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 2000;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ── Print ── */
@media print {
  #site-header, #site-footer, .hero-dots, .nav-toggle { display: none !important; }
  .hero { margin-top: 0; }
}
