/* ═══════════════════════════════════════════════════════════════════════
   Boston Teen Enrichment Camp — TEC
   Design System: Premium Academic · Navy + White + Gold
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── Tokens ─────────────────────────────────────────────────────────── */
:root {
  --navy-deep:    #0A1628;
  --navy:         #0F2040;
  --navy-mid:     #1A3560;
  --navy-light:   #264573;
  --gold:         #C4A44A;
  --gold-light:   #D4B86A;
  --gold-pale:    #F5EDD5;
  --white:        #FFFFFF;
  --off-white:    #F8F9FB;
  --gray-50:      #F4F5F7;
  --gray-100:     #E8EAED;
  --gray-300:     #C2C7D0;
  --gray-500:     #6B7280;
  --gray-700:     #374151;
  --text:         #1A1A2E;
  --text-light:   #4A5568;

  --ff-head:      'Cormorant Garamond', Georgia, serif;
  --ff-body:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w:        1200px;
  --section-pad:  120px;
  --nav-h:        72px;

  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);
}

/* ─── Reset ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ─── Typography ──────────────────────────────────────────────────────── */
.section-title {
  font-family: var(--ff-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--navy-mid);
}
.section-title.centered { text-align: center; }

.section-label {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 680px;
  margin: 24px auto 0;
  text-align: center;
}
.section-intro.narrow { max-width: 560px; }

.body-lg {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--text-light);
}
.body-md {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-top: 16px;
}
.subsection-title {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--navy-deep);
  text-align: center;
  margin-bottom: 12px;
}

/* ─── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy-deep);
  color: var(--white);
  border: 1.5px solid var(--navy-deep);
}
.btn-primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(10,22,40,0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}
.btn-sm { padding: 10px 24px; font-size: 0.78rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Section ─────────────────────────────────────────────────────────── */
.section { padding: var(--section-pad) 0; }

/* School Match section — dark background needs light text */
.school-match-section {
  background: var(--navy-deep);
}
.school-match-section .section-label {
  color: var(--gold);
}
.school-match-section .section-title {
  color: #fff;
}
.school-match-section .section-title em {
  color: rgba(255,255,255,0.6);
}
.school-match-section .section-intro {
  color: rgba(255,255,255,0.75);
}

/* ═══════════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
#navbar.scrolled {
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}
.nav-logo:hover .nav-logo-img { opacity: 0.85; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 10px;
  border-radius: 2px;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link.nav-cta {
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 600;
  padding: 9px 20px;
  margin-left: 8px;
  transition: background 0.2s, transform 0.2s;
}
.nav-link.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy-deep);
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.45;
}
/* Subtle grid pattern */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 90% at center, black 30%, transparent 100%);
}
/* Gold accent line */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 48px;
  padding-top: var(--nav-h);
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}
.hero-headline {
  font-family: var(--ff-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.4s forwards;
}
.hero-headline em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.6s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.8s forwards;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 1s forwards;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}
.stat-num {
  font-family: var(--ff-head);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.35);
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
  transition: color 0.2s;
}
.scroll-hint:hover { color: rgba(255,255,255,0.7); }
.br-desktop { display: block; }

/* ═══════════════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════════════ */
/* ─── About Photos ────────────────────────────────────────────────────── */
.about-photo-wrap {
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 2px;
}
.about-photo-single {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: brightness(0.92);
  transition: filter 0.4s;
}
.about-photo-single:hover { filter: brightness(1); }

/* ─── Gallery Section ─────────────────────────────────────────────────── */
.gallery-section {
  background: var(--navy-deep);
  padding: 80px 0;
}
.gallery-label {
  max-width: var(--max-w);
  margin: 0 auto 32px;
  padding: 0 48px;
}
.gallery-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  grid-auto-flow: row dense;
  gap: 8px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--navy-mid);
}
.gallery-item.gallery-wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease-out), filter 0.4s;
  filter: brightness(0.88);
}
.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: linear-gradient(transparent, rgba(10,22,40,0.75));
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

.about-section { background: var(--white); padding-bottom: 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
  align-items: start;
}
.about-text .section-title { margin-bottom: 32px; }
.about-quote {
  margin-top: 36px;
  padding: 28px 0 28px 28px;
  border-left: 2px solid var(--gold);
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--navy-mid);
}
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gray-100);
}
.pillar {
  background: var(--white);
  padding: 36px 32px;
  transition: background 0.2s;
}
.pillar:hover { background: var(--off-white); }
.pillar-icon {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gray-300);
  line-height: 1;
  margin-bottom: 16px;
}
.pillar h3 {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy-deep);
  margin-bottom: 10px;
}
.pillar p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-light);
}

.story-block {
  background: var(--navy-deep);
  color: var(--white);
  padding: 80px 0;
  margin-top: 60px;
}
.story-inner {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 48px;
}
.story-inner .section-label {
  color: var(--gold);
  margin-bottom: 16px;
}
.story-inner h3 {
  font-family: var(--ff-head);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 24px;
}
.story-inner p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  margin-bottom: 18px;
}
.story-inner strong { color: var(--white); }
.story-quote {
  font-family: var(--ff-head);
  font-size: 1.15rem !important;
  font-style: italic;
  color: var(--gold) !important;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin-top: 28px;
}

/* ═══════════════════════════════════════════════════════════════════════
   PROGRAM
   ═══════════════════════════════════════════════════════════════════════ */
.program-section { background: var(--navy-deep); }
.program-section .section-label { color: var(--gold); }
.program-section .section-title { color: var(--white); }
.program-section .section-title em { color: rgba(255,255,255,0.55); }
.program-section .section-intro { color: rgba(255,255,255,0.5); }

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 64px;
  background: rgba(255,255,255,0.06);
}
.program-card {
  background: var(--navy-deep);
  padding: 48px 44px;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.06);
}
.program-card:hover { background: rgba(26,53,96,0.6); }
.program-card.card-accent { background: rgba(26,53,96,0.4); }
.program-card.card-accent:hover { background: rgba(26,53,96,0.7); }

.card-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 28px;
}
.card-num {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold);
  opacity: 0.7;
}
.card-header h3 {
  font-family: var(--ff-head);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--white);
}
.card-list {
  margin-bottom: 24px;
}
.card-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.card-list li:last-child { border-bottom: none; }
.list-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.6;
}
.card-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════════════
   SCHEDULE
   ═══════════════════════════════════════════════════════════════════════ */
.schedule-section { background: var(--off-white); }

.sessions-grid {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 56px;
  background: var(--gray-100);
  border-radius: 2px;
  overflow: hidden;
}
.session-card {
  flex: 1;
  padding: 56px 48px;
  background: var(--white);
  text-align: center;
  transition: background 0.2s;
}
.session-card:hover { background: var(--off-white); }
.session-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.session-dates {
  font-family: var(--ff-head);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--navy-deep);
  margin-bottom: 8px;
  line-height: 1.3;
}
.session-duration {
  font-size: 0.82rem;
  color: var(--gray-500);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.session-divider {
  width: 80px;
  text-align: center;
  font-family: var(--ff-head);
  font-size: 1rem;
  font-style: italic;
  color: var(--gray-300);
  flex-shrink: 0;
}

.daily-schedule {
  margin-top: 96px;
}
.timeline {
  max-width: 780px;
  margin: 48px auto 0;
}
.timeline-item {
  display: grid;
  grid-template-columns: 140px 40px 1fr;
  gap: 0 24px;
  margin-bottom: 0;
}
.timeline-time {
  text-align: right;
  padding-top: 2px;
}
.time-block {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.time-range {
  font-size: 0.82rem;
  color: var(--gray-500);
}
.timeline-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 2px solid var(--navy-light);
  flex-shrink: 0;
  margin-top: 4px;
}
.timeline-line {
  width: 1px;
  flex: 1;
  min-height: 64px;
  background: var(--gray-100);
  margin-top: 6px;
}
.timeline-line.last { min-height: 20px; }
.timeline-content {
  padding-bottom: 48px;
}
.timeline-content:last-child { padding-bottom: 0; }
.timeline-content h4 {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy-deep);
  margin-bottom: 10px;
}
.timeline-content p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-light);
}

/* ═══════════════════════════════════════════════════════════════════════
   TEAM
   ═══════════════════════════════════════════════════════════════════════ */
.team-section { background: var(--white); }

.founder-block {
  display: flex;
  gap: 0;
  margin-top: 64px;
  margin-bottom: 64px;
  background: var(--navy-deep);
  border-radius: 2px;
  overflow: hidden;
}
.founder-accent-line {
  width: 4px;
  background: linear-gradient(180deg, var(--gold), rgba(196,164,74,0.2));
  flex-shrink: 0;
}
.founder-content {
  padding: 56px 60px;
  flex: 1;
}
.founder-title-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.founder-name {
  font-family: var(--ff-head);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}
.founder-org {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.founder-credentials span {
  font-size: 0.78rem;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 14px;
  border-radius: 2px;
  letter-spacing: 0.02em;
}
.founder-bio {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 680px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--gray-100);
}
.team-card {
  background: var(--white);
  padding: 36px 32px;
  transition: background 0.2s;
}
.team-card:hover { background: var(--off-white); }
.team-card-icon {
  color: var(--navy-mid);
  margin-bottom: 20px;
  opacity: 0.5;
}
.team-card h4 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy-deep);
  margin-bottom: 12px;
  line-height: 1.3;
}
.team-card p {
  font-size: 0.87rem;
  line-height: 1.75;
  color: var(--text-light);
}
.team-card-named {
  text-align: left;
  padding: 0;
  overflow: hidden;
}
.team-card-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.team-card-body {
  padding: 24px 28px 28px;
}
.team-card-tag {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--ff-body);
  font-weight: 500;
  margin-bottom: 10px;
}
.team-card h4 {
  font-size: 1.2rem;
  color: var(--navy-deep);
  margin-bottom: 4px;
  font-family: var(--ff-head);
}
.team-card-role {
  font-size: 0.82rem;
  color: var(--navy-mid);
  font-style: italic;
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════════ */
.testimonials-section {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '\201C';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-head);
  font-size: 40rem;
  line-height: 1;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  user-select: none;
}
.testimonials-section .section-label { color: var(--gold); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-title em { color: rgba(255,255,255,0.5); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 2px;
  margin-top: 64px;
  background: rgba(255,255,255,0.06);
}
.testimonial-card {
  background: var(--navy-deep);
  padding: 48px 40px;
  position: relative;
  transition: background 0.25s;
}
.testimonial-card:hover { background: rgba(26,53,96,0.5); }
.testimonial-card.testimonial-featured {
  background: rgba(26,53,96,0.45);
  padding: 56px 44px;
}
.quote-mark {
  font-family: var(--ff-head);
  font-size: 4rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 20px;
}
.testimonial-card blockquote {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}
.testimonial-featured blockquote {
  font-size: 1.45rem;
  color: var(--white);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-dot {
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.testimonial-author span {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
/* Parent testimonial — full-width featured card */
.testimonial-parent {
  grid-column: 1 / -1;
  background: rgba(196, 164, 74, 0.07);
  border-left: 2px solid var(--gold);
  padding: 48px 56px;
  margin-bottom: 2px;
  position: relative;
}
.testimonial-parent .quote-mark {
  color: var(--gold);
  opacity: 0.6;
}
.testimonial-parent blockquote {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}
.testimonial-parent-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-parent-meta .author-dot {
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.testimonial-parent-name {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}
.testimonial-parent-role {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
}

.testimonials-cta {
  text-align: center;
  margin-top: 72px;
}
.testimonials-cta p {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════════════════════════════
   SCHOOL MATCH
   ═══════════════════════════════════════════════════════════════════════ */
.school-match-section {
  background: var(--navy);
}

.school-match-section .section-intro {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
  color: rgba(255,255,255,0.65);
}

.school-match-embed {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
  height: 680px;
}

.school-match-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .school-match-embed { height: 580px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   REGISTRATION
   ═══════════════════════════════════════════════════════════════════════ */
.registration-section { background: var(--off-white); }

.reg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 56px;
  align-items: start;
}
.reg-info .section-title { margin-bottom: 32px; }
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}
.contact-methods.spaced { gap: 28px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-mid);
  flex-shrink: 0;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.contact-value {
  font-size: 0.95rem;
  color: var(--navy-deep);
  font-weight: 500;
}
a.contact-value:hover { color: var(--navy-mid); text-decoration: underline; }

.session-selector {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-100);
}
.session-option {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-light);
}
.session-option-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--navy-deep);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 2px;
  white-space: nowrap;
}

/* Form */
.reg-form-intro {
  font-size: 0.93rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.reg-form-intro strong { color: var(--gold-light); }
.reg-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 2px;
  padding: 48px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.04);
}
.reg-form h3 {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy-deep);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(26,53,96,0.08);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.optional {
  font-weight: 400;
  text-transform: none;
  color: var(--gray-300);
  letter-spacing: 0;
}
.form-note {
  font-size: 0.78rem;
  color: var(--gray-500);
  text-align: center;
  margin-top: 14px;
}
.form-success {
  text-align: center;
  padding: 48px 24px;
}
.form-success.hidden { display: none; }
.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(26,53,96,0.08);
  color: var(--navy-mid);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  color: var(--navy-deep);
  margin-bottom: 12px;
  border: none;
  padding: 0;
}
.form-success p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════
   PRICE BLOCK
   ═══════════════════════════════════════════════════════════════════════ */
.reg-price-block {
  background: var(--navy);
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 28px;
  border-left: 3px solid var(--gold);
}
.reg-price-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.reg-price-amount {
  font-family: var(--ff-head);
  font-size: 2.2rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 8px;
}
.reg-price-amount span {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
}
.reg-price-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════
   FOUNDER PHOTO
   ═══════════════════════════════════════════════════════════════════════ */
.founder-photo-wrap {
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.founder-photo {
  width: 140px;
  height: 100%;
  max-height: 220px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 640px) {
  .founder-photo-wrap { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════
   YEARBOOK / TESTIMONIAL CTA BUTTONS
   ═══════════════════════════════════════════════════════════════════════ */
.testimonials-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.camper-voices-label {
  font-family: var(--ff-head);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 56px 0 24px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.camper-grid {
  margin-top: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════════════ */
.faq-section { background: var(--off-white); }

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border-bottom: 1px solid var(--gray-100);
}
.faq-item:first-child { border-top: 1px solid var(--gray-100); }

.faq-item summary {
  padding: 20px 0;
  font-family: var(--ff-head);
  font-size: 1rem;
  color: var(--navy-deep);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-body {
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--gray-600);
  padding: 0 0 20px 0;
  max-width: 680px;
}

/* ═══════════════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════════════ */
.contact-section { background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-left .section-title { margin-bottom: 24px; }
.contact-left .body-md { margin-bottom: 36px; }

.boston-card {
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.boston-photo {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.boston-card-text {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.boston-label {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
}
.boston-sub {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════════════════════════════════════════
   FOUNDER LETTER
   ═══════════════════════════════════════════════════════════════════════ */
.founder-letter {
  background: var(--navy-mid);
  margin-top: 0;
}
.founder-letter-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 40px;
  text-align: center;
}
.founder-letter .section-label {
  color: var(--gold);
  margin-bottom: 28px;
}
.founder-letter-quote {
  font-family: var(--ff-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--white);
  font-style: italic;
  line-height: 1.4;
  margin: 0 0 32px;
}
.founder-letter-body {
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
}
.founder-letter-sig {
  font-family: var(--ff-head);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}
@media (max-width: 640px) {
  .founder-letter-inner { padding: 60px 24px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   CAMP JOURNAL
   ═══════════════════════════════════════════════════════════════════════ */
.journal-section {
  background: var(--cream);
}
.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.journal-day {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 2px;
  padding: 0;
  overflow: hidden;
}
.day-photo {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.day-content {
  padding: 22px 24px 26px;
}
.journal-day-highlight {
  border-color: var(--gold);
  border-width: 2px;
}
.day-badge {
  font-family: var(--ff-head);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.day-title {
  font-family: var(--ff-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin: 0 0 10px;
  line-height: 1.4;
}
.day-desc {
  font-size: 0.84rem;
  color: var(--body-mid);
  line-height: 1.7;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   GROWTH STORIES
   ═══════════════════════════════════════════════════════════════════════ */
.stories-section {
  background: var(--white);
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.story-card {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.story-card[open] {
  border-color: var(--navy-mid);
}
.story-summary {
  padding: 28px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.story-summary::-webkit-details-marker { display: none; }
.story-summary::after {
  content: '+';
  position: absolute;
  top: 28px;
  right: 24px;
  font-size: 1.2rem;
  color: var(--navy-mid);
  transition: transform 0.25s;
  line-height: 1;
}
.story-card[open] .story-summary::after {
  transform: rotate(45deg);
}
.story-header { padding-right: 32px; }
.story-name {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--navy-deep);
  margin: 0 0 4px;
}
.story-subtitle {
  font-size: 0.82rem;
  color: var(--body-mid);
  margin: 0;
  font-style: italic;
}
.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.story-tag {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-mid);
  background: rgba(15,56,96,0.06);
  padding: 3px 10px;
  border-radius: 50px;
}
.story-body {
  padding: 0 24px 28px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.story-body p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--body-mid);
  margin: 18px 0 0;
}
.story-outcome {
  color: var(--navy-deep) !important;
  font-style: italic;
}
@media (max-width: 720px) {
  .stories-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-deep);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-logo {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.footer-brand > p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}
.footer-tagline {
  margin-top: 16px;
  font-family: var(--ff-head);
  font-style: italic;
  font-size: 0.88rem !important;
  color: rgba(255,255,255,0.25) !important;
  line-height: 1.6 !important;
}
.footer-links h5,
.footer-contact h5 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  line-height: 1.5;
}
.footer-contact a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--white); }
.footer-brand-note {
  margin-top: 16px;
  font-size: 0.75rem !important;
  color: rgba(255,255,255,0.25) !important;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .nav-inner  { padding: 0 32px; }
  .about-grid { gap: 48px; }
  .reg-grid   { gap: 48px; }
  .contact-inner { gap: 48px; }
  .team-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 80px; }
  .container { padding: 0 24px; }
  .nav-inner  { padding: 0 24px; }
  .about-photo-row { grid-template-columns: 1fr; }
  .about-photo { height: 200px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; padding: 0 24px; grid-auto-rows: 240px; }
  .gallery-label { padding: 0 24px; }
  .gallery-item.gallery-wide { grid-column: span 2; }
  .br-desktop { display: inline; }

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(10,22,40,0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 32px;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.35s var(--ease-out), opacity 0.35s;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-link { padding: 12px 8px; font-size: 0.85rem; }
  .nav-link.nav-cta { text-align: center; margin: 8px 0 0; padding: 13px; }
  .logo-full { display: none; }

  /* Hero */
  .hero-content { padding: 0 24px; padding-top: var(--nav-h); }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { width: 40px; height: 1px; }
  .stat { padding: 0; }

  /* Grids */
  .about-grid       { grid-template-columns: 1fr; gap: 48px; }
  .about-pillars    { grid-template-columns: 1fr; }
  .program-grid     { grid-template-columns: 1fr; }
  .sessions-grid    { flex-direction: column; }
  .session-divider  { padding: 16px 0; }
  .team-grid        { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .reg-grid         { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner    { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid      { grid-template-columns: 1fr; gap: 32px; }

  /* Timeline */
  .timeline-item { grid-template-columns: 80px 30px 1fr; gap: 0 16px; }

  /* Founder */
  .founder-content { padding: 36px 28px; }

  /* Form */
  .reg-form-wrap { padding: 32px 24px; }
}

@media (max-width: 480px) {
  :root { --section-pad: 64px; }
  .hero-headline { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .timeline-item { grid-template-columns: 70px 24px 1fr; gap: 0 12px; }
}

/* ─── Language Toggle ─────────────────────────────────────────────────────── */
.lang-toggle {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 3px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}
.lang-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.scrolled .lang-toggle {
  border-color: rgba(10,22,40,0.3);
  color: var(--navy-deep);
}
.scrolled .lang-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}
