/* ==========================================================================
   Grand Traverse Tennis Camps — Design System
   Built on Ink Starter (Eleventy)
   ========================================================================== */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color .18s; }
a:hover { color: var(--green-dark); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; color: var(--text-dark); }

/* Focus Styles */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--green); outline-offset: 2px;
}

/* ==========================================================================
   Design Tokens
   ========================================================================== */
:root {
  /* Brand Greens */
  --green: #2a6e3f;
  --green-dark: #1a4a2c;
  --green-light: #4aab6d;
  --green-pale: #e8f5ed;

  /* Accent Colors */
  --yellow: #c8e030;
  --yellow-warm: #f0d000;
  --teal: #3a9e8a;
  --teal-pale: #e4f4f1;
  --orange: #e07b3a;
  --orange-pale: #fdf0e6;
  --purple: #7c5cbf;
  --purple-pale: #f0ecf7;

  /* Neutrals */
  --white: #ffffff;
  --cream: #fafaf7;
  --light: #f2f2ee;
  --gray-light: #f2f2ee;
  --gray: #717870;
  --muted: #4a5e4a;
  --text: #1e2e1e;
  --text-dark: #1e2e1e;
  --text-soft: #4a5e4a;
  --border: #e2e8e2;

  /* Typography */
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body: 'Lato', system-ui, sans-serif;

  /* Layout */
  --content-width: 1140px;
  --gutter: clamp(1rem, 3vw, 2rem);
  --radius: 10px;
  --radius-lg: 16px;

  /* Ink compat tokens */
  --color-primary: var(--green);
  --color-primary-dark: var(--green-dark);
  --color-secondary: var(--green-dark);
  --color-text: var(--text);
  --color-text-inverse: var(--white);
  --color-surface: var(--white);
  --color-background: var(--light);
  --color-border: var(--border);
  --color-dark: var(--text-dark);
  --color-text-muted: var(--muted);
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --duration: 200ms;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Skip Link
   ========================================================================== */
.skip-link {
  position: absolute; top: -100%; left: var(--gutter); z-index: 1000;
  padding: .5rem 1rem; background: var(--green); color: var(--white);
  font-weight: 600; border-radius: 0 0 var(--radius) var(--radius);
  text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
  width: 100%; max-width: var(--content-width);
  margin-inline: auto; padding-inline: var(--gutter);
}
.section { padding: 4.5rem 0; }
.section-sm { padding: 3rem 0; }
.band-white { background: var(--white); }
.band-pale { background: var(--green-pale); }
.text-center { text-align: center; }

/* ==========================================================================
   Section Typography
   ========================================================================== */
.section-eyebrow {
  display: inline-block; font-family: var(--font-heading);
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--green); margin-bottom: .5rem;
}
.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem); font-weight: 800;
  color: var(--green-dark); line-height: 1.1;
  margin-bottom: 1.1rem;
}
.section-sub {
  font-size: 1.05rem; color: var(--text-soft);
  max-width: 580px; line-height: 1.65;
  margin-bottom: 0.5rem;
}
.pop { color: var(--green-light); }
.pop-yellow { color: var(--yellow-warm); }
.pop-teal { color: var(--teal); }
.link-arrow { font-weight: 700; color: var(--green); }
.link-arrow:hover { color: var(--green-dark); }

/* ==========================================================================
   Navigation
   ========================================================================== */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .75rem 0;
}
.nav-brand {
  display: flex; align-items: center; gap: .65rem;
  text-decoration: none; color: var(--text-dark);
}
.nav-logo {
  width: 80px; height: 80px;
  object-fit: contain; flex-shrink: 0;
}
.nav-title {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 1.05rem; line-height: 1.15; color: var(--green-dark);
}
.nav-title small {
  display: block; font-size: .7rem; font-weight: 500;
  color: var(--gray); letter-spacing: .04em;
}
.nav-links {
  display: flex; align-items: center; gap: 1.5rem; list-style: none;
}
.nav-links a {
  font-family: var(--font-heading); font-weight: 600;
  font-size: .9rem; color: var(--text-soft);
  text-decoration: none; padding: 0.45rem 0.85rem;
  border-radius: 6px; transition: all .18s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { background: var(--green-pale); color: var(--green-dark); }
.nav-links a.active { background: var(--green-pale); color: var(--green-dark); font-weight: 700; }
.btn-nav {
  background: var(--green) !important; color: var(--white) !important;
  padding: .45rem 1.1rem; border-radius: 6px;
  font-weight: 700 !important;
}
.btn-nav:hover { background: var(--green-dark) !important; }

/* Nav toggle (mobile) */
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: .5rem; color: var(--text-dark);
}
.nav-toggle svg { width: 24px; height: 24px; stroke: currentColor; stroke-width: 2; fill: none; }

@media (max-width: 640px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--white);
    border-bottom: 1px solid var(--border); padding: .5rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: .6rem var(--gutter); }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-heading); font-weight: 700;
  font-size: 0.95rem; padding: 0.8rem 1.9rem;
  border-radius: 7px; text-decoration: none;
  transition: all 0.2s; cursor: pointer; border: none;
}
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(42,110,63,0.28); }
.btn-yellow { background: var(--yellow); color: var(--green-dark); }
.btn-yellow:hover { background: var(--yellow-warm); color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,224,48,0.4); }
.btn-outline-green {
  background: transparent; color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline-green:hover { background: var(--green-pale); }
.btn-lg { font-size: 1.05rem; padding: 0.95rem 2.2rem; }

/* ==========================================================================
   Hero
   ========================================================================== */
/* Hero — full-bleed two-panel layout */
.hero {
  background: var(--green-dark);
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  position: relative;
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0, rgba(255,255,255,0.015) 1px, transparent 0, transparent 50%);
  background-size: 26px 26px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--yellow), var(--green-light), var(--teal));
  z-index: 3;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 5rem;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,224,48,0.14);
  border: 1px solid rgba(200,224,48,0.28);
  color: var(--yellow);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 1.5rem;
  animation: heroUp 0.7s ease both;
}
@keyframes heroUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-headline {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1.4rem;
  animation: heroUp 0.7s 0.1s ease both;
}
.hero-headline em {
  font-style: normal;
  color: var(--yellow);
  display: block;
}
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.68);
  max-width: 420px;
  line-height: 1.68;
  margin-bottom: 2.2rem;
  animation: heroUp 0.7s 0.2s ease both;
}
.hero-sub strong { color: rgba(255,255,255,0.9); }
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: heroUp 0.7s 0.3s ease both;
}
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3rem;
  padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.1);
  animation: heroUp 0.7s 0.4s ease both;
}
.hero-stat strong {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--yellow);
  line-height: 1;
  display: block;
}
.hero-stat span {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
}

/* Hero right — photo mosaic */
.hero-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  overflow: hidden;
}
.photo-block {
  background: var(--green);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.photo-block:first-child { grid-row: span 2; }
.photo-block img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.photo-block:hover img { transform: scale(1.04); }
.photo-block span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.22);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 3rem 2rem; }
  .hero-photos { height: 320px; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 1fr; }
  .photo-block:first-child { grid-row: span 1; }
}

/* ==========================================================================
   Welcome Marquee Strip
   ========================================================================== */
.welcome-strip {
  background: var(--yellow); color: var(--green-dark); overflow: hidden;
  padding: .55rem 0; white-space: nowrap;
}
.strip-track {
  display: inline-flex; gap: .5rem; animation: marquee 30s linear infinite;
}
.strip-item {
  font-family: var(--font-heading); font-weight: 800;
  font-size: .85rem; text-transform: uppercase; letter-spacing: .08em;
}
.strip-dot { opacity: .4; margin: 0 .5rem; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Program Preview Cards (Homepage)
   ========================================================================== */
/* Program preview cards */
.prog-preview-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 2.5rem;
}
.prog-preview {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid #e8ece8;
  transition: all 0.25s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.prog-preview:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(42,110,63,0.12);
  border-color: var(--green-light);
}
.prog-preview-img {
  height: 150px;
  border-radius: 0;
}
.prog-preview-img.photo-block {
  background: var(--green-pale);
  color: var(--green-light);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  gap: 0.6rem;
}
.prog-preview-img.photo-block svg { opacity: 0.5; }
/* Color tops on program cards */
.ct-green { border-top: 4px solid var(--green-light); }
.ct-yellow { border-top: 4px solid var(--yellow); }
.ct-teal { border-top: 4px solid var(--teal); }
.ct-orange { border-top: 4px solid var(--orange); }
.ct-dark { border-top: 4px solid var(--green-dark); }
.ct-purple { border-top: 4px solid #9b59b6; }

.prog-preview-body { padding: 1.25rem 1.4rem; }
.prog-preview-age {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.35rem;
  display: block;
}
.prog-preview h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.prog-preview p {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.55;
}
.prog-preview .prog-price-tag {
  margin-top: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green);
}

@media (max-width: 860px) { .prog-preview-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .prog-preview-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   About Preview (Homepage)
   ========================================================================== */
/* About preview */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-preview-photo {
  height: 400px;
  border-radius: 14px;
  position: relative;
  background: var(--green-pale);
  color: var(--green-light);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  gap: 0.6rem;
}
.about-preview-photo svg { opacity: 0.5; }
.about-preview-photo .corner-badge {
  position: absolute;
  bottom: -14px;
  right: -14px;
  background: var(--yellow);
  color: var(--green-dark);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.85rem;
  padding: 0.75rem 1.2rem;
  border-radius: 10px;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 8px 24px rgba(200,224,48,0.4);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.about-preview-photo .corner-badge span {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
}
.about-text p {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.72;
  margin-bottom: 1.1rem;
}

@media (max-width: 860px) {
  .about-preview { grid-template-columns: 1fr; gap: 2rem; }
  .about-preview-photo { height: 280px; }
}

/* ==========================================================================
   Highlight Boxes
   ========================================================================== */
.highlight-box {
  border-left: 4px solid var(--green-light);
  background: var(--green-pale);
  border-radius: 0 10px 10px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.highlight-box h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}
.highlight-box strong { color: var(--green-dark); }
.highlight-box p {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin: 0;
}
.highlight-box.teal { background: var(--teal-pale); border-left-color: var(--teal); }
.highlight-box.teal strong { color: #2a7a6a; }
.highlight-box.orange { background: var(--orange-pale); border-left-color: var(--orange); }
.highlight-box.orange strong { color: #b55a1a; }

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  border-radius: 16px;
  padding: 3.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 8rem;
  height: 8rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M18 12c-1.33-1.33-3.68-1.33-6 0-2.32 1.33-4.67 1.33-6 0'/%3E%3Cline x1='12' y1='2' x2='12' y2='22'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.08;
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2rem;
  color: var(--white);
  line-height: 1.15;
}
.cta-banner h2 span { color: var(--yellow); }
.cta-banner p {
  color: rgba(255,255,255,0.65);
  margin-top: 0.5rem;
  font-size: 0.98rem;
}
@media (max-width: 640px) {
  .cta-banner { padding: 2.5rem 2rem; flex-direction: column; text-align: center; }
}

/* ==========================================================================
   Sponsor Bar
   ========================================================================== */
.sponsor-bar {
  background: var(--gray-light);
  padding: 2rem 0;
  border-top: 1px solid #e0e4de;
  border-bottom: 1px solid #e0e4de;
}
.sponsor-label {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.25rem;
}
.sponsor-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.sponsor-chip {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--green-dark);
  text-decoration: none;
  background: var(--white);
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  border: 1.5px solid #dde3dd;
  transition: all 0.18s;
}
.sponsor-chip:hover { border-color: var(--green-light); transform: translateY(-2px); }

/* ==========================================================================
   Page Header (interior pages)
   ========================================================================== */
.page-header {
  background: var(--green-dark);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
  color: var(--white); text-align: center;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 0, transparent 50%);
  background-size: 24px 24px;
}
.page-eyebrow {
  display: inline-block; font-family: var(--font-heading);
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.18em; color: rgba(200,224,48,0.8);
  margin-bottom: 0.5rem; position: relative;
}
.page-header h1 {
  font-family: var(--font-heading); font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white);
  line-height: 1.05; position: relative;
}
.page-header h1 span { color: var(--yellow); }
.page-sub {
  margin-top: 0.75rem; font-size: 1rem;
  color: rgba(255,255,255,0.65); max-width: 520px;
  margin-inline: auto; line-height: 1.65; position: relative;
}

/* ==========================================================================
   Philosophy Section (About)
   ========================================================================== */
.philosophy-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
}
.philosophy-text h2 { margin-bottom: .75rem; }
.philosophy-text p { color: var(--text-soft); line-height: 1.7; margin-bottom: .75rem; }
.pill {
  display: inline-block; padding: .2rem .65rem;
  background: var(--green-pale); color: var(--green-dark);
  font-size: .75rem; font-weight: 700; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .05em; margin-top: .5rem;
}
.pill-yellow { background: var(--yellow); color: var(--green-dark); }

@media (max-width: 860px) {
  .philosophy-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Staff Section (About)
   ========================================================================== */
.staff-intro { color: var(--text-soft); max-width: 600px; line-height: 1.65; margin-bottom: 2rem; }

/* Featured staff (Larry) */
.staff-featured {
  background: var(--green-dark); color: var(--white);
  border-radius: var(--radius-lg); padding: 2rem; margin-bottom: 2rem;
}
.staff-featured-inner {
  display: grid; grid-template-columns: 280px 1fr; gap: 2rem; align-items: start;
}
.staff-featured-text h3 { color: var(--white); font-size: 1.5rem; margin: .5rem 0 .25rem; }
.staff-featured-text p, .staff-featured-text .staff-role { color: rgba(255,255,255,.85); }
.staff-role { font-size: .9rem; font-weight: 600; color: var(--gray); margin-bottom: .5rem; }
.staff-featured .staff-role { color: var(--yellow); }
.staff-stats {
  display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 1.5rem;
  padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.15);
}
.staff-stat strong {
  display: block; font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 800; color: var(--yellow);
}
.staff-stat span { font-size: .78rem; opacity: .7; }

@media (max-width: 860px) {
  .staff-featured-inner { grid-template-columns: 1fr; }
}

/* Staff cards */
.staff-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.staff-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  display: grid; grid-template-columns: 140px 1fr; align-items: start;
}
.staff-card-img { min-height: 160px; background: var(--light); }
.staff-card-body { padding: 1.25rem; }
.staff-card-body h4 { font-size: 1.1rem; margin-bottom: .15rem; }
.staff-card-body p { font-size: .9rem; color: var(--text-soft); line-height: 1.55; }

@media (max-width: 640px) {
  .staff-grid { grid-template-columns: 1fr; }
  .staff-card { grid-template-columns: 1fr; }
  .staff-card-img { min-height: 120px; }
}

/* Additional staff */
.staff-also { margin-top: 2rem; }
.staff-also h4 { font-size: 1rem; margin-bottom: .75rem; color: var(--text-soft); }
.staff-names { display: flex; flex-wrap: wrap; gap: .5rem; }
.name-chip {
  display: inline-block; padding: .3rem .85rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 999px; font-size: .88rem; font-weight: 600;
  color: var(--text-soft);
}

/* ==========================================================================
   Facilities Section (About)
   ========================================================================== */
.facilities-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem; margin-top: 1.5rem;
}
.facility-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem; text-align: center;
}
.facility-icon { margin-bottom: .5rem; color: var(--teal); }
.facility-icon .lucide-icon { margin-inline: auto; }
.facility-item h4 { font-size: .95rem; margin-bottom: .35rem; }
.facility-item p { font-size: .85rem; color: var(--text-soft); line-height: 1.5; }

@media (max-width: 860px) { .facilities-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .facilities-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Jump Nav (Programs page)
   ========================================================================== */
.jump-nav {
  position: sticky; top: 58px; z-index: 90;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: .5rem 0;
}
.jump-nav-inner {
  display: flex; align-items: center; gap: .5rem;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.jump-nav a {
  display: inline-block; padding: .35rem .85rem;
  font-family: var(--font-heading); font-size: .82rem; font-weight: 700;
  color: var(--text-soft); background: var(--light); border-radius: 999px;
  text-decoration: none; white-space: nowrap; transition: all .18s;
}
.jump-nav a:hover { background: var(--green-pale); color: var(--green); }
.jump-note {
  margin-left: auto; font-size: .78rem; color: var(--gray);
  font-style: italic; white-space: nowrap;
}

/* ==========================================================================
   Program Detail Sections (Programs page)
   ========================================================================== */
.prog-section { padding: 3rem 0; border-bottom: 1px solid var(--border); }
.prog-section:last-of-type { border-bottom: none; }

.prog-layout {
  display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; align-items: start;
}
.prog-section.reverse .prog-layout { direction: rtl; }
.prog-section.reverse .prog-layout > * { direction: ltr; }

.prog-number {
  display: inline-block; font-family: var(--font-heading);
  font-size: .78rem; font-weight: 700; color: var(--gray);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: .25rem;
}
.prog-age-pill {
  display: inline-block; padding: .2rem .6rem;
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; border-radius: 999px; margin-left: .5rem;
}
.prog-age-pill.ct-green { background: var(--green-pale); color: var(--green-dark); }
.prog-age-pill.ct-yellow { background: #f5f0c0; color: #6a5d00; }
.prog-age-pill.ct-teal { background: var(--teal-pale); color: #2a7a6a; }
.prog-age-pill.ct-orange { background: var(--orange-pale); color: #b55a1a; }
.prog-age-pill.ct-dark { background: var(--green-pale); color: var(--green-dark); }
.prog-age-pill.ct-purple { background: var(--purple-pale); color: var(--purple); }

.prog-text h2 { font-size: 1.5rem; margin: .35rem 0 .5rem; }
.prog-capacity { font-size: .88rem; color: var(--orange); font-weight: 600; margin-bottom: .75rem; }

/* Detail boxes */
.prog-details-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin: 1.25rem 0;
}
.detail-box {
  background: var(--green-pale); border-radius: var(--radius);
  padding: .85rem 1rem;
}
.detail-box.ct-yellow { background: #f9f5d0; }
.detail-box.ct-teal { background: var(--teal-pale); }
.detail-box.ct-orange { background: var(--orange-pale); }
.detail-box.ct-dark { background: var(--green-pale); }
.detail-box.ct-purple { background: var(--purple-pale); }
.detail-label {
  display: block; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--gray); margin-bottom: .2rem;
}
.detail-box strong { font-size: .92rem; color: var(--text-dark); display: block; }
.detail-box small { display: block; font-size: .8rem; color: var(--text-soft); margin-top: .15rem; }
.detail-box span { display: block; font-size: .88rem; color: var(--text-soft); }

.prog-body { margin-top: 1rem; }
.prog-body h2 { font-size: 1.1rem; margin: 1rem 0 .5rem; }
.prog-body ul { padding-left: 1.25rem; margin: .5rem 0; }
.prog-body li { font-size: .92rem; color: var(--text-soft); line-height: 1.55; margin-bottom: .25rem; }
.prog-body p { font-size: .92rem; color: var(--text-soft); line-height: 1.6; margin-bottom: .5rem; }

.prog-photos .photo-block {
  background: var(--light); border: 2px dashed var(--border); color: var(--gray);
}

@media (max-width: 860px) {
  .prog-layout { grid-template-columns: 1fr; }
  .prog-section.reverse .prog-layout { direction: ltr; }
  .prog-photos { display: none; }
}
@media (max-width: 560px) {
  .prog-details-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Policies Grid
   ========================================================================== */
.policy-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
@media (max-width: 860px) { .policy-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Registration Page
   ========================================================================== */
.reg-layout {
  display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start;
}
.reg-sidebar { position: sticky; top: 120px; }
.reg-info h3 {
  font-size: 1.15rem; margin: 2rem 0 .75rem; padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.reg-info h3:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.reg-info p { font-size: .95rem; color: var(--text-soft); line-height: 1.65; margin-bottom: .75rem; }

/* Tables */
.gttc-table {
  width: 100%; border-collapse: collapse; margin: .75rem 0; font-size: .9rem;
}
.gttc-table th, .gttc-table td {
  padding: .6rem .85rem; text-align: left;
  border-bottom: 1px solid var(--border);
}
.gttc-table th {
  font-weight: 700; color: var(--text-dark);
  background: var(--green-pale); font-size: .82rem;
  text-transform: uppercase; letter-spacing: .04em;
}
.gttc-table td { color: var(--text-soft); }
.gttc-table small { font-size: .8rem; color: var(--gray); }
.table-note { color: var(--orange); font-weight: 700; }
.table-footnote { font-size: .82rem; color: var(--gray); font-style: italic; margin-top: .35rem; }

/* Savings strip */
.savings-strip { display: flex; gap: 1rem; margin: .75rem 0; }
.savings-item {
  flex: 1; background: var(--green-pale); border-radius: var(--radius);
  padding: .75rem 1rem; text-align: center;
}
.savings-item strong { display: block; font-size: .92rem; color: var(--green-dark); }
.savings-item span { font-size: .82rem; color: var(--text-soft); }

@media (max-width: 560px) { .savings-strip { flex-direction: column; } }

/* Download card */
.download-card {
  background: var(--green-dark); color: var(--white);
  border-radius: var(--radius-lg); padding: 2rem; text-align: center;
}
.download-icon { margin-bottom: .75rem; color: var(--yellow); }
.download-icon .lucide-icon { margin-inline: auto; }
.download-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: .5rem; }
.download-card p { opacity: .85; font-size: .92rem; margin-bottom: 1.25rem; }
.download-mail {
  margin-top: 1.25rem; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.download-mail small { display: block; font-size: .75rem; opacity: .6; margin-bottom: .25rem; }
.download-mail span { display: block; font-size: .88rem; opacity: .85; }

/* Contact box */
.contact-box {
  background: var(--green-pale); border-radius: var(--radius);
  padding: 1.25rem; margin-top: 1.5rem;
}
.contact-box h4 { font-size: 1rem; margin-bottom: .5rem; }
.contact-info { display: flex; flex-direction: column; gap: .25rem; }
.contact-info a { font-size: .92rem; color: var(--green); font-weight: 600; }

/* Registration notes */
.reg-notes { margin-top: 1.25rem; }
.reg-notes .highlight-box { margin-bottom: .75rem; }

@media (max-width: 860px) {
  .reg-layout { grid-template-columns: 1fr; }
  .reg-sidebar { position: static; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--green-dark); color: var(--white); padding: 3rem 0 1.75rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem;
  margin-bottom: 2rem;
}
.footer-brand .nav-title { color: var(--white); font-size: 1rem; }
.footer-brand .nav-title small { color: rgba(255,255,255,0.45); }
.footer-brand p {
  margin-top: 0.75rem; font-size: 0.86rem;
  color: rgba(255,255,255,0.45); line-height: 1.65; max-width: 260px;
}
.footer-brand .nav-brand { pointer-events: none; }
.footer-col h5 {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--yellow);
  margin-bottom: 0.9rem;
}
.footer-col span, .footer-col a {
  display: block; font-size: 0.87rem; color: rgba(255,255,255,0.5);
  text-decoration: none; line-height: 2; transition: color 0.18s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .82rem; color: rgba(255,255,255,.45);
}
.tcaps-note {
  background: rgba(255,255,255,.08); padding: .2rem .6rem;
  border-radius: 4px; font-size: .72rem; font-weight: 600;
  letter-spacing: .04em;
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
}

/* ==========================================================================
   Lucide Icons
   ========================================================================== */
.lucide-icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ==========================================================================
   Fade-in Animations
   ========================================================================== */
.fade-in {
  opacity: 0; transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible {
  opacity: 1; transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Prose (markdown content)
   ========================================================================== */
.prose h2 { font-size: 1.2rem; margin: 1.5rem 0 .5rem; }
.prose h3 { font-size: 1.05rem; margin: 1rem 0 .4rem; }
.prose p { margin-bottom: .75rem; line-height: 1.65; }
.prose ul, .prose ol { padding-left: 1.25rem; margin-bottom: .75rem; }
.prose li { margin-bottom: .25rem; line-height: 1.55; }
.prose strong { color: var(--text-dark); }

/* ==========================================================================
   Utilities
   ========================================================================== */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   Print
   ========================================================================== */
@media print {
  .site-nav, .site-footer, .nav-toggle, .cta-banner, .welcome-strip,
  .jump-nav, .sponsor-bar, .skip-link { display: none !important; }
  body { color: #000; background: #fff; }
  .hero, .page-header { background: none !important; color: #000; padding: 1rem 0; }
  .hero-headline, .page-header h1 { color: #000; }
}
