/* ===================================================
   BREEDING ARENA CAMP — BRIGHT ORANGE & BROWN THEME
   =================================================== */

/* ===== DESIGN TOKENS ===== */
:root {
  --brown-deep:    #4A2A14;
  --brown-mid:     #7A4A22;
  --brown-soft:    #A97C4F;
  --orange:        #D9711F;
  --orange-deep:   #B8590F;
  --orange-light:  #F0932B;
  --orange-pale:   #FBE3C4;
  --orange-wash:   #FDF0DD;
  --gold:          #C8960A;
  --cream:         #FFF9F0;
  --cream-deep:    #FBEEDA;
  --white:         #FFFFFF;
  --ink:           #2E1D10;
  --slate:         #5B4230;
  --muted:         #8A7360;
  --border:        rgba(74,42,20,0.12);
  --border-gold:   rgba(200,150,10,0.28);
  --shadow-sm:     0 2px 14px rgba(74,42,20,0.07);
  --shadow-md:     0 10px 40px rgba(74,42,20,0.10);
  --shadow-lg:     0 22px 60px rgba(74,42,20,0.16);
  --radius:        4px;
  --radius-lg:     10px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: 0.5;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--orange-deep); margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ''; flex: 0 0 32px; height: 1px; background: var(--orange-deep); opacity: 0.4;
}
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-pale); color: var(--brown-deep);
  font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 16px;
  border: 1px solid var(--border-gold);
}
.section-tag::before { content:''; width:5px; height:5px; border-radius:50%; background:var(--orange); }
.section-tag.on-dark { background: rgba(255,255,255,0.18); color: var(--white); border-color: rgba(255,255,255,0.3); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600; line-height: 1.15;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--orange-deep); }
.section-title.on-dark { color: var(--white); }
.section-title.on-dark em { color: var(--brown-deep); }
.section-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.85;
  max-width: 600px; margin-top: 14px;
}
.section-sub.on-dark { color: rgba(255,255,255,0.8); }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px; border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; border: none; transition: all 0.3s ease;
}
.btn-primary {
  background: var(--brown-deep); color: var(--white);
}
.btn-primary:hover { background: var(--brown-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent; color: var(--brown-deep);
  border: 1.5px solid var(--brown-deep);
}
.btn-outline:hover { background: var(--brown-deep); color: var(--white); transform: translateY(-2px); }
.btn-orange {
  background: var(--orange); color: var(--white);
}
.btn-orange:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(217,113,31,0.35); }
.btn-gold {
  background: transparent; color: var(--orange-deep);
  border: 1px solid var(--orange-deep); padding: 12px 28px; border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  display: inline-block; transition: all 0.3s; cursor: pointer;
}
.btn-gold:hover { background: var(--orange-deep); color: var(--white); }

/* photo placeholder */
.photo-placeholder {
  background: linear-gradient(135deg, var(--orange-pale) 0%, #f0d6ac 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; color: var(--brown-mid);
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; text-align: center; padding: 20px;
}
.photo-placeholder .ph-icon { font-size: 2rem; opacity: 0.55; }
.photo-placeholder span:not(.ph-icon) { opacity: 0.75; }

/* ===== SEAL BADGE (signature element) ===== */
.seal-badge {
  position: relative; width: 148px; height: 148px;
  filter: drop-shadow(0 10px 24px rgba(74,42,20,0.28));
}
.seal-badge svg { width: 100%; height: 100%; }
.seal-toothed { fill: var(--brown-deep); }
.seal-ring { fill: none; stroke: var(--white); stroke-width: 3; }
.seal-inner { fill: var(--orange); }
.seal-text {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  fill: var(--white); text-anchor: middle;
}
.seal-num { font-family: 'Cormorant Garamond', serif; font-weight: 700; fill: var(--white); text-anchor: middle; }
.seal-badge.spin svg { animation: sealSpin 40s linear infinite; }
@keyframes sealSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;
  transition: all 0.4s ease;
  background: rgba(255,249,240,0.0);
}
#navbar.scrolled {
  background: rgba(255,249,240,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 4px 30px rgba(74,42,20,0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px;
}
.nav-logo img { height: 48px; filter: drop-shadow(0 2px 8px rgba(74,42,20,0.15)); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 8px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink);
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--orange-deep); }
.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown > a::after { content: ' \25BE'; font-size: 8px; opacity: 0.6; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); min-width: 220px;
  padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(-8px); transition: all 0.25s ease;
  border: 1px solid var(--border);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 10px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  color: var(--slate);
}
.dropdown a:hover { background: var(--orange-wash); color: var(--orange-deep); }
.nav-cta { margin-left: 16px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 1.5px; background: var(--brown-deep); border-radius: 0; transition: all 0.3s; }

/* ===== VOLUNTEER NAV DROPDOWN ===== */
.volunteer-wrap { position: relative; }
.volunteer-btn { white-space: nowrap; }
.volunteer-dropdown {
  position: absolute; top: calc(100% + 14px); right: 0;
  width: 380px; max-width: calc(100vw - 40px);
  max-height: 80vh; overflow-y: auto;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 26px; z-index: 1200;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.volunteer-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.volunteer-dropdown-head { margin-bottom: 20px; }
.volunteer-dropdown-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--brown-deep); }
.volunteer-dropdown-sub { font-size: 12.5px; color: var(--muted); margin-top: 6px; line-height: 1.6; }
.volunteer-label-note { font-weight: 400; color: var(--muted); text-transform: none; letter-spacing: 0; font-size: 11.5px; }

.volunteer-radio-group { display: flex; gap: 20px; }
.volunteer-radio-option {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--ink); cursor: pointer;
}
.volunteer-radio-option input[type="radio"] { accent-color: var(--orange); width: 16px; height: 16px; cursor: pointer; }

.volunteer-calendar {
  border: 1.5px solid var(--border); border-radius: 10px; background: var(--cream);
  padding: 14px;
}
.volunteer-calendar-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.volunteer-cal-month { font-size: 12.5px; font-weight: 700; letter-spacing: 0.5px; color: var(--brown-deep); }
.volunteer-cal-arrow {
  background: var(--white); border: 1px solid var(--border); border-radius: 6px;
  width: 26px; height: 26px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 10px; color: var(--brown-deep); transition: all 0.2s;
}
.volunteer-cal-arrow:hover { background: var(--orange-pale); }
.volunteer-cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); margin-bottom: 4px; }
.volunteer-cal-weekdays span { text-align: center; font-size: 10px; font-weight: 700; color: var(--muted); }
.volunteer-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.volunteer-cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--ink); border-radius: 8px; cursor: pointer;
  border: 1px solid transparent; transition: all 0.15s; background: var(--white);
}
.volunteer-cal-day:hover { border-color: var(--orange); }
.volunteer-cal-day.is-past { color: var(--muted); opacity: 0.4; cursor: not-allowed; }
.volunteer-cal-day.is-past:hover { border-color: transparent; }
.volunteer-cal-day.is-empty { visibility: hidden; cursor: default; }
.volunteer-cal-day.is-selected { background: var(--orange); color: var(--white); font-weight: 700; }
.volunteer-selected-days { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.volunteer-day-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange-pale); color: var(--brown-deep);
  font-size: 11px; font-weight: 600; padding: 5px 6px 5px 10px; border-radius: 100px;
  border: 1px solid var(--border-gold);
}
.volunteer-day-chip button {
  background: none; border: none; cursor: pointer; color: var(--brown-deep);
  font-size: 13px; line-height: 1; padding: 0 2px;
}

/* ===== LANDING CAROUSEL ===== */
.landing-section {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}
.landing-carousel { position: relative; width: 100%; height: 100%; }
.landing-track { position: relative; width: 100%; height: 100%; }

.landing-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 1s ease;
  z-index: 1;
}
.landing-slide.is-active { opacity: 1; visibility: visible; z-index: 2; }

.landing-slide-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.landing-slide.is-active .landing-slide-img { transform: scale(1); }

.landing-slide-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(46,29,16,0.82) 0%, rgba(46,29,16,0.42) 45%, rgba(46,29,16,0.15) 100%),
    linear-gradient(90deg, rgba(46,29,16,0.55) 0%, transparent 55%);
}

.landing-slide-content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0 40px 90px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease 0.35s, transform 0.8s ease 0.35s;
}
.landing-slide.is-active .landing-slide-content { opacity: 1; transform: translateY(0); }

.landing-slide-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 100px; margin-bottom: 20px;
  backdrop-filter: blur(6px);
}
.landing-slide-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600; line-height: 1.12;
  margin-bottom: 16px;
}
.landing-slide-title em { font-style: italic; color: var(--orange-light); }
.landing-slide-caption {
  font-family: 'Montserrat', sans-serif;
  font-size: 14.5px; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,0.88);
  max-width: 560px; margin: 0 auto 28px;
}
.landing-register-btn { margin: 0 auto; }

.landing-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,249,240,0.16);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}
.landing-arrow:hover { background: var(--orange); border-color: var(--orange); }
.landing-arrow-prev { left: 24px; }
.landing-arrow-next { right: 24px; }

.landing-dots {
  position: absolute; bottom: 28px; left: 0; right: 0;
  z-index: 5;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.landing-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.5);
  cursor: pointer; transition: all 0.3s ease;
}
.landing-dot.is-active { background: var(--orange); border-color: var(--orange); transform: scale(1.35); }

@media (max-width: 900px) {
  .landing-section { height: 85vh; min-height: 480px; }
  .landing-slide-content { padding: 0 24px 70px; }
  .landing-arrow { width: 36px; height: 36px; font-size: 12px; }
  .landing-arrow-prev { left: 12px; }
  .landing-arrow-next { right: 12px; }
}

/* ===== HERO ===== */
#home {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 900px 600px at 85% 0%, var(--orange-pale) 0%, transparent 60%),
    radial-gradient(ellipse 700px 500px at 0% 100%, var(--orange-wash) 0%, transparent 55%),
    var(--cream);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5; pointer-events: none;
}
.hero-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.35; animation: orbFloat 8s ease-in-out infinite; }
.orb-1 { width: 500px; height: 500px; background: var(--orange-light); top: -160px; right: -120px; animation-delay: 0s; }
.orb-2 { width: 380px; height: 380px; background: var(--gold); bottom: -120px; left: -80px; animation-delay: 3s; opacity: 0.2; }
.orb-3 { width: 260px; height: 260px; background: var(--brown-soft); top: 55%; right: 28%; animation-delay: 5s; opacity: 0.15; }
@keyframes orbFloat { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(20px,-30px) scale(1.05); } }
#home::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding: 140px 40px 80px;
  max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--orange-deep); font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 28px; width: fit-content;
}
.hero-badge::before, .hero-badge::after { content: ''; width: 32px; height: 1px; background: var(--orange-deep); opacity: 0.5; }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300; line-height: 1.1;
  color: var(--ink); margin-bottom: 20px; letter-spacing: 0.5px;
}
.hero-title em { font-style: italic; color: var(--orange-deep); }
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-style: italic;
  color: var(--brown-mid); margin-bottom: 30px;
}
.hero-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 300; line-height: 1.9;
  color: var(--slate); margin-bottom: 40px; max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 48px; padding-top: 36px;
  border-top: 1px solid var(--border);
}
.hero-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 600; color: var(--orange-deep); }
.hero-stat-label { font-family: 'Montserrat', sans-serif; font-size: 9px; font-weight: 600; color: var(--muted); margin-top: 4px; letter-spacing: 2px; text-transform: uppercase; }
.hero-visual { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 12px; position: relative; }
.hero-photo-main { grid-column: 1 / -1; height: 280px; }
.hero-photo-sm { height: 160px; }
.hero-photo-main, .hero-photo-sm { border-radius: var(--radius); overflow: hidden; }
.floating-card {
  position: absolute; bottom: -20px; left: -30px;
  background: var(--white); border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  animation: cardFloat 4s ease-in-out infinite;
  border-left: 3px solid var(--orange);
}
@keyframes cardFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.floating-card-icon { font-size: 1.5rem; }
.floating-card-text { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; color: var(--brown-deep); letter-spacing: 0.5px; }
.floating-card-sub { font-family: 'Montserrat', sans-serif; font-size: 10px; color: var(--muted); }
.hero-seal { position: absolute; top: -30px; right: -18px; z-index: 3; }

/* ===== ANNOUNCEMENT TICKER ===== */
.ticker-bar { background: var(--orange); color: var(--white); padding: 10px 0; overflow: hidden; position: relative; }
.ticker-inner { display: flex; align-items: center; gap: 0; white-space: nowrap; animation: ticker 30s linear infinite; }
.ticker-item { padding: 0 40px; font-size: 13px; font-weight: 500; }
.ticker-item::before { content: '\25C6 '; opacity: 0.7; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== ABOUT ===== */
#about { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; position: relative; }
.about-photo-tall { grid-row: span 2; height: 420px; }
.about-photo-sm { height: 200px; }
.about-photos > div { border-radius: var(--radius); overflow: hidden; }
.about-quote {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--brown-deep); color: var(--white);
  border-radius: var(--radius); padding: 24px;
  max-width: 200px; box-shadow: var(--shadow-lg);
  border-top: 2px solid var(--orange);
}
.about-quote p { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; line-height: 1.5; }
.about-quote cite { font-family: 'Montserrat', sans-serif; font-size: 9px; opacity: 0.6; display: block; margin-top: 8px; letter-spacing: 1px; text-transform: uppercase; }
.uniqueness-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 32px; }
.uniqueness-card { background: var(--cream); padding: 24px; border: 1px solid var(--border); transition: all 0.3s; }
.uniqueness-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.u-icon { font-size: 1.6rem; margin-bottom: 10px; }
.u-title { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--brown-deep); margin-bottom: 8px; }
.u-text { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.75; }

.cohort-strip { display:flex; gap:10px; flex-wrap:wrap; margin-top:22px; }
.cohort-pill {
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 16px; border:1px solid var(--border-gold); border-radius: 100px;
  color:var(--brown-mid); font-family:'Montserrat',sans-serif;
  font-size:10px; font-weight:600; letter-spacing:1.5px; text-transform:uppercase;
  background: var(--orange-wash);
}
.cohort-pill b { color: var(--orange-deep); font-weight:700; }

/* ===== ACTIVITIES (bold accent section) ===== */
#activities {
  padding: 100px 0;
  background: linear-gradient(155deg, var(--orange) 0%, var(--orange-deep) 100%);
  position: relative; overflow: hidden;
}
#activities::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 30%, rgba(255,255,255,0.12) 0%, transparent 55%);
}
#activities::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}
.curriculum-header { text-align: center; margin-bottom: 60px; position: relative; }
.curriculum-tabs { display: flex; justify-content: center; gap: 2px; margin-bottom: 48px; flex-wrap: wrap; }
.tab-btn {
  padding: 10px 28px; border: 1px solid rgba(255,255,255,0.35);
  background: transparent; color: rgba(255,255,255,0.75);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s; border-radius: 100px;
}
.tab-btn.active, .tab-btn:hover { background: var(--brown-deep); border-color: var(--brown-deep); color: var(--white); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.curriculum-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; position: relative; }
.curr-card { background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.22); padding: 32px; transition: all 0.3s; }
.curr-card:hover { background: rgba(255,255,255,0.22); transform: translateY(-4px); }
.curr-card-icon { font-size: 2rem; margin-bottom: 16px; }
.curr-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.curr-card-desc { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.85); line-height: 1.8; }
.curr-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 16px; }
.curr-tag {
  font-family: 'Montserrat', sans-serif; font-size: 9px; padding: 4px 10px;
  background: rgba(255,255,255,0.15); color: var(--white);
  border: 1px solid rgba(255,255,255,0.3); letter-spacing: 1px; text-transform: uppercase; border-radius: 100px;
}
.subjects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 2px; }
.subject-pill {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 16px 20px;
  color: rgba(255,255,255,0.9); font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 10px; transition: all 0.25s;
}
.subject-pill:hover { background: rgba(255,255,255,0.18); }
.subject-pill .sp-icon { font-size: 1.2rem; }

/* ===== ENGAGEMENT / MEDIA ===== */
#engagement { padding: 100px 0; background: var(--cream-deep); }
.media-note { display:flex; align-items:center; gap:10px; margin-top:18px; font-family:'Montserrat',sans-serif; font-size:11.5px; color:var(--muted); }
.media-note .dot { width:7px; height:7px; border-radius:50%; background:var(--orange); flex-shrink:0; animation:pulseDot 1.6s ease-in-out infinite; }
@keyframes pulseDot { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

.campus-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 200px 200px; gap: 14px; margin-bottom: 80px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay { position: absolute; inset: 0; background: rgba(74,42,20,0.68); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; }
.gallery-overlay span { color: var(--white); font-size: 2rem; }
.gallery-label { position: absolute; bottom: 12px; left: 12px; background: rgba(255,255,255,0.95); border-radius: 6px; padding: 4px 10px; font-size: 11px; font-weight: 600; color: var(--brown-deep); }

.testimonials-title { text-align: center; margin-bottom: 48px; }

/* ----- Testimonials carousel ----- */
.testimonials-carousel { position: relative; padding: 0 56px; }
.testimonials-viewport { overflow: hidden; }
.testimonials-track { display: flex; gap: 24px; transition: transform 0.5s ease; }
.testimonial-slide { flex: 0 0 100%; box-sizing: border-box; }
@media (min-width: 701px) {
  .testimonial-slide { flex: 0 0 calc(50% - 12px); }
}
@media (min-width: 1100px) {
  .testimonial-slide { flex: 0 0 calc(33.3333% - 16px); }
}
.testimonial-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-gold);
  color: var(--brown-deep);
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}
.testimonial-arrow:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.testimonial-arrow-prev { left: 0; }
.testimonial-arrow-next { right: 0; }
.testimonial-dots { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 32px; }
.testimonial-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange-pale);
  border: 1px solid var(--border-gold);
  cursor: pointer; transition: all 0.3s ease;
}
.testimonial-dot.is-active { background: var(--orange); border-color: var(--orange); transform: scale(1.35); }
@media (max-width: 700px) {
  .testimonials-carousel { padding: 0 40px; }
  .testimonial-arrow { width: 36px; height: 36px; font-size: 12px; }
}

.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 30px; border: 1px solid var(--border); position: relative; transition: all 0.3s; height: 100%; }
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 5rem; line-height: 1; color: var(--orange-pale); position: absolute; top: 10px; left: 20px; }
.testimonial-text { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; line-height: 1.7; color: var(--slate); margin-top: 24px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: var(--orange-pale); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.author-name { font-weight: 700; font-size: 14px; color: var(--brown-deep); }
.author-role { font-size: 12px; color: var(--muted); }

.video-section { margin-top: 80px; }
.video-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.video-card { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; aspect-ratio: 16/9; background: var(--orange-pale); }
.video-card:hover .video-overlay { opacity: 1; }
.video-overlay { position: absolute; inset: 0; background: rgba(74,42,20,0.55); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; opacity: 0.9; transition: 0.3s; }
.play-btn { width: 56px; height: 56px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--brown-deep); box-shadow: 0 4px 20px rgba(0,0,0,0.25); transition: transform 0.2s; }
.video-card:hover .play-btn { transform: scale(1.1); }
.video-label { color: var(--white); font-size: 13px; font-weight: 600; text-align: center; padding: 0 16px; }

/* ===== NEWS ===== */
#news { padding: 100px 0; background: var(--cream); }
.news-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.news-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 20px; }
.news-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: all 0.3s; }
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.news-img { height: 200px; overflow: hidden; }
.news-card-main .news-img { height: 260px; }
.news-body { padding: 24px; }
.news-category { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange-deep); margin-bottom: 10px; }
.news-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: var(--brown-deep); line-height: 1.3; margin-bottom: 10px; }
.news-card-main .news-title { font-size: 1.6rem; }
.news-excerpt { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.news-meta { display: flex; align-items: center; gap: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.news-date { font-size: 12px; color: var(--muted); }
.news-tag { font-size: 11px; padding: 3px 10px; background: var(--orange-pale); color: var(--brown-deep); border-radius: 100px; }

/* ===== NEWS PAGE (news.html) ===== */
.news-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.page-banner { position: relative; height: 46vh; min-height: 340px; overflow: hidden; }
.page-banner-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(46,29,16,0.86) 0%, rgba(46,29,16,0.5) 55%, rgba(46,29,16,0.22) 100%);
}
.page-banner-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 56px; color: var(--white); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.85; margin-bottom: 18px; }
.breadcrumb a { color: var(--white); }
.breadcrumb a:hover { color: var(--orange-light); }
.breadcrumb span { opacity: 0.55; }
.page-banner-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 600; line-height: 1.15; margin-bottom: 14px; }
.page-banner-title em { font-style: italic; color: var(--orange-light); }
.page-banner-sub { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 300; line-height: 1.75; max-width: 560px; color: rgba(255,255,255,0.85); }

#newsArchive { padding: 70px 0 40px; }
.news-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 48px; }
.filter-chip {
  padding: 10px 22px; border-radius: 100px;
  border: 1px solid var(--border-gold); background: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--brown-deep); cursor: pointer; transition: all 0.25s ease;
}
.filter-chip:hover { border-color: var(--orange); color: var(--orange-deep); }
.filter-chip.is-active { background: var(--orange); border-color: var(--orange); color: var(--white); }

.news-archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding-bottom: 100px; }
.news-archive-grid .news-card { cursor: pointer; }
.news-empty-state { text-align: center; color: var(--muted); font-size: 14px; padding-bottom: 100px; }

.camper-modal.news-modal {
  max-width: 720px; text-align: left; padding: 0;
  max-height: 88vh; overflow-y: auto; overflow-x: hidden;
}
.news-modal .modal-close { top: 18px; right: 18px; background: rgba(255,249,240,0.9); z-index: 5; }
.news-modal-img { width: 100%; height: 320px; overflow: hidden; }
.news-modal-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-modal-body { padding: 36px 40px 44px; }
.news-modal-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.news-modal-title { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 700; color: var(--brown-deep); line-height: 1.25; margin-bottom: 20px; }
.news-modal-text { font-size: 14px; line-height: 1.85; color: var(--slate); }
.news-modal-text p + p { margin-top: 14px; }

@media (max-width: 1000px) {
  .news-archive-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .page-banner { height: 52vh; min-height: 300px; }
  .news-archive-grid { grid-template-columns: 1fr; }
  .news-modal-img { height: 200px; }
  .news-modal-body { padding: 28px 22px 32px; }
}

/* ===== APPLY (shared form + perk styles, used inside Apply modal) ===== */
.apply-perks { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.apply-perk { display: flex; align-items: center; gap: 14px; }
.perk-check { width: 28px; height: 28px; border-radius: 50%; background: var(--orange-pale); border: 1px solid var(--border-gold); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; color: var(--orange-deep); flex-shrink: 0; }
.perk-text { font-size: 14px; color: var(--slate); }
.form-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--brown-deep); margin-bottom: 8px; }
.form-sub { font-size: 13.5px; color: var(--muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--slate); display: block; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  border: 1.5px solid var(--border); background: var(--cream);
  font-size: 14px; font-family: 'Montserrat', sans-serif; color: var(--ink);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit { width: 100%; padding: 15px; font-size: 15px; }

/* ===== FOOTER ===== */
footer { background: var(--cream-deep); color: var(--ink); padding: 60px 0 0; border-top: 1px solid var(--border-gold); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.footer-logo img { height: 48px; margin-bottom: 16px; }
.footer-desc { font-size: 13.5px; color: var(--muted); line-height: 1.7; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: var(--orange-pale); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: all 0.2s; cursor: pointer; }
.social-btn:hover { background: var(--orange); }
.footer-heading { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--orange-deep); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13.5px; color: var(--slate); transition: color 0.2s; }
.footer-links a:hover { color: var(--brown-deep); }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.fc-icon { font-size: 1rem; color: var(--orange-deep); margin-top: 2px; }
.fc-text { font-size: 13px; color: var(--slate); line-height: 1.5; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-bottom a { color: var(--orange-deep); }

/* ===== PAGE INDICATOR NAV ===== */
.page-nav { position: fixed; right: 24px; top: 50%; transform: translateY(-50%); z-index: 100; display: flex; flex-direction: column; gap: 8px; }
.page-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(74,42,20,0.2); cursor: pointer; transition: all 0.3s; border: 1.5px solid transparent; }
.page-dot.active { background: var(--orange); border-color: var(--orange); transform: scale(1.4); }
.page-dot:hover { background: var(--brown-mid); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.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; }

/* ===== MOBILE NAV OPEN STATE ===== */
@media (max-width: 900px) {
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: 10px 24px 20px;
    box-shadow: var(--shadow-md); border-top: 1px solid var(--border);
  }
  .nav-links.open a { color: var(--ink); width: 100%; padding: 12px 4px; }
  .nav-links.open .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; padding: 0 0 0 14px; display: none; min-width: 0;
  }
  .nav-links.open .has-dropdown.open-sub .dropdown { display: block; }
  .nav-cta.open { display: block; margin-top: 14px; }
  .volunteer-wrap.nav-cta.open .volunteer-btn { width: 100%; }
  .volunteer-dropdown { position: fixed; top: auto; bottom: 16px; left: 16px; right: 16px; width: auto; max-width: none; max-height: 70vh; }
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; padding: 120px 24px 60px; }
  .hero-visual { display: none; }
  .about-grid, .curriculum-cards, .career-grid,
  .apply-modal-grid, .news-grid,
  .video-grid { grid-template-columns: 1fr; }
  .campus-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .campus-gallery .gallery-item:first-child { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .page-nav { display: none; }
  .hero-stats { gap: 20px; }
  .news-card-main .news-title { font-size: 1.3rem; }
  .form-row { grid-template-columns: 1fr; }
  .uniqueness-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   CURRENT COHORT PAGE
   =================================================== */

.cohort-page {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 150px 32px 100px;
  display: grid;
  grid-template-columns: 260px 1fr;
  grid-template-areas:
    "heading heading"
    "sidebar main";
  column-gap: 48px;
  row-gap: 40px;
  align-items: start;
}

.cohort-heading { grid-area: heading; max-width: 640px; }
.cohort-heading .section-sub { margin-top: 14px; }

/* ----- Sidebar ----- */
.cohort-sidebar {
  grid-area: sidebar;
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.sidebar-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 10px 10px;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 12px 10px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--slate);
  transition: all 0.2s;
  text-align: left;
}

.sidebar-item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--muted); transition: color 0.2s; }

.sidebar-item:hover { background: var(--orange-wash); color: var(--brown-deep); }
.sidebar-item:hover svg { color: var(--orange-deep); }

.sidebar-item.active { background: var(--orange-pale); color: var(--brown-deep); }
.sidebar-item.active svg { color: var(--orange-deep); }

.sidebar-count {
  margin-left: auto;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 100px;
  background: rgba(74,42,20,0.08);
  color: var(--muted);
}

.sidebar-item.active .sidebar-count { background: var(--orange-deep); color: var(--white); }

.sidebar-divider { height: 1px; background: var(--border); margin: 10px 4px; }

.sidebar-note {
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--muted);
  padding: 0 10px 6px;
}
.sidebar-note b { color: var(--brown-deep); }

/* ----- Main / panels ----- */
.cohort-main { grid-area: main; min-width: 0; }

.panel { display: none; }
.panel.active { display: block; }

/* ----- Campers toolbar + grid ----- */
.campers-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.campers-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 16px;
  min-width: 240px;
}
.campers-search svg { width: 15px; height: 15px; color: var(--muted); flex-shrink: 0; }
.campers-search input {
  border: none; outline: none; background: transparent;
  font-family: 'Montserrat', sans-serif; font-size: 13px; color: var(--ink); width: 100%;
}
.campers-search input::placeholder { color: var(--muted); }

.campers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

.camper-card {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  font-family: inherit;
  color: inherit;
  cursor: pointer;
  transition: all 0.25s;
}
.camper-card:hover, .camper-card:focus-visible {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  outline: none;
}

.camper-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700;
  overflow: hidden;
  flex-shrink: 0;
}
.camper-avatar img { width: 100%; height: 100%; object-fit: cover; }

.camper-card .camper-name { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 700; color: var(--brown-deep); }

.camper-meta { font-size: 11.5px; color: var(--muted); margin-top: 4px; }

.camper-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-top: 14px; }
.camper-tag {
  font-size: 10px; font-weight: 600; padding: 4px 10px;
  border-radius: 100px; background: var(--orange-wash); color: var(--orange-deep);
}

/* ----- Feed toolbar ----- */
.feed-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.feed-live {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--muted);
}
.feed-live .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--orange);
  animation: pulseDot 1.6s ease-in-out infinite;
}

/* ----- Feed / post cards ----- */
.feed {
  display: flex; flex-direction: column; gap: 24px;
  max-width: 520px;
}

.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.post-header { display: flex; align-items: center; gap: 12px; padding: 14px 16px; }
.post-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--orange-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.post-meta { flex: 1; min-width: 0; }
.post-author { font-size: 13.5px; font-weight: 700; color: var(--brown-deep); }
.post-sub { font-size: 11px; color: var(--muted); margin-top: 1px; }
.post-more { width: 18px; height: 18px; color: var(--muted); cursor: pointer; flex-shrink: 0; }
.post-more svg { width: 100%; height: 100%; }

.post-media {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--orange-wash);
  color: var(--brown-mid);
}
.post-media .ph-icon { font-size: 2.4rem; }

.post-actions { display: flex; align-items: center; gap: 16px; padding: 14px 16px 6px; }
.post-action-btn {
  border: none; background: transparent; cursor: pointer;
  width: 24px; height: 24px; color: var(--ink); padding: 0;
  transition: transform 0.15s, color 0.15s;
}
.post-action-btn svg { width: 100%; height: 100%; }
.post-action-btn:hover { transform: scale(1.1); }
.post-action-btn.like-btn.liked { color: var(--orange-deep); }
.post-action-btn.like-btn.liked svg { fill: var(--orange-deep); }
.post-action-btn.save-btn.saved { color: var(--brown-deep); }
.post-action-btn.save-btn.saved svg { fill: var(--brown-deep); }
.post-action-btn.share { margin-left: auto; }

.post-likes { padding: 4px 16px 0; font-size: 12.5px; color: var(--slate); }
.post-likes b { color: var(--brown-deep); }

.post-caption { padding: 8px 16px 0; font-size: 13px; line-height: 1.6; color: var(--ink); }
.post-caption b { margin-right: 6px; color: var(--brown-deep); }

.post-tags { display: flex; flex-wrap: wrap; gap: 6px; padding: 10px 16px 0; }
.curr-tag-mini {
  font-size: 10px; font-weight: 600; padding: 3px 9px;
  border-radius: 100px; background: var(--orange-wash); color: var(--orange-deep);
}

.post-viewcomments {
  display: block; background: none; border: none; cursor: pointer;
  padding: 10px 16px 0; font-size: 12px; color: var(--muted);
}
.post-viewcomments:hover { color: var(--orange-deep); }

.post-comments { display: none; flex-direction: column; gap: 6px; padding: 10px 16px 0; }
.post-comment { font-size: 12.5px; line-height: 1.5; color: var(--ink); }
.post-comment b { margin-right: 6px; color: var(--brown-deep); }

.post-time {
  padding: 12px 16px 0; font-size: 10px; letter-spacing: 0.5px;
  text-transform: uppercase; color: var(--muted);
}

.post-add-comment {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; margin-top: 8px;
  border-top: 1px solid var(--border);
}
.post-add-comment svg { width: 20px; height: 20px; color: var(--muted); flex-shrink: 0; }
.post-add-comment input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: 'Montserrat', sans-serif; font-size: 13px; color: var(--ink);
}
.post-add-comment input::placeholder { color: var(--muted); }
.post-post-btn {
  border: none; background: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif; font-size: 12.5px; font-weight: 700;
  color: var(--orange-pale); pointer-events: none;
}
.post-post-btn.enabled { color: var(--orange-deep); pointer-events: auto; }

.feed-end {
  text-align: center; max-width: 520px;
  font-size: 12px; color: var(--muted);
  padding: 12px 0 4px;
}

/* ----- Camper summary modal ----- */
body.modal-open { overflow: hidden; }

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(46,29,16,0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.camper-modal {
  position: relative;
  width: 100%;
  max-width: 360px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 44px 32px 32px;
  text-align: center;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.25s ease;
}
.modal-overlay.open .camper-modal { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border: none;
  border-radius: 50%;
  background: var(--orange-wash);
  color: var(--brown-deep);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--orange-pale); }

.camper-modal-photo {
  width: 88px; height: 88px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 700;
}
.camper-modal-photo img { width: 100%; height: 100%; object-fit: cover; }

.camper-modal-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--brown-deep); }

.camper-modal .camper-meta { margin-top: 6px; }
.camper-modal .camper-tags { margin-top: 16px; }

.camper-modal-bio {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  line-height: 1.75;
  color: var(--slate);
  text-align: left;
}

/* ----- Apply Now modal ----- */
.apply-modal {
  max-width: 920px;
  text-align: left;
  padding: 48px 44px 44px;
  max-height: 88vh;
  overflow-y: auto;
}
.apply-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.apply-modal-info { color: var(--ink); }
.apply-modal-form {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.apply-camp-tiers {
  margin-top: 28px;
  display: flex; flex-direction: column;
  gap: 20px;
}
.camp-tier {
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--border-gold);
}
.camp-tier:last-child { border-bottom: none; padding-bottom: 0; }
.camp-tier-name {
  font-size: 12.5px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--orange-deep); margin-bottom: 6px;
}
.camp-tier-name span { font-weight: 700; }
.camp-tier-dates {
  font-size: 15px; color: var(--ink); margin-bottom: 4px;
}
.camp-tier-fee {
  font-size: 15px; font-weight: 800; color: var(--brown-deep);
}

.apply-bank-details {
  margin-top: 28px;
  padding: 20px 22px;
  background: var(--orange-wash);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
}
.bank-details-title {
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange-deep); margin-bottom: 14px;
}
.bank-detail-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 8px 0;
  border-top: 1px dashed var(--border-gold);
  font-size: 13px; color: var(--slate);
}
.bank-detail-row:first-of-type { border-top: none; }
.bank-detail-row b { color: var(--brown-deep); font-weight: 700; }

@media (max-width: 700px) {
  .apply-modal { padding: 40px 22px 28px; max-height: 92vh; }
  .apply-modal-form { padding: 24px; }
}

/* ----- Responsive ----- */
@media (max-width: 900px) {
  .cohort-page {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "sidebar"
      "main";
    padding: 120px 24px 60px;
  }
  .cohort-sidebar {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
  }
  .sidebar-label, .sidebar-divider, .sidebar-note { display: none; }
  .sidebar-item { flex: 0 0 auto; }
  .campers-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .feed, .feed-end { max-width: 100%; }
}

/* ===================================================
   ALUMNI PAGE
   =================================================== */

.category-group { margin-bottom: 6px; }

.category-toggle {
  display: flex; align-items: center; gap: 10px; width: 100%;
  border: none; background: transparent; cursor: pointer;
  padding: 12px 10px; border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif; font-size: 13.5px; font-weight: 700;
  color: var(--brown-deep); transition: all 0.2s; text-align: left;
}
.category-toggle:hover { background: var(--orange-wash); }
.category-label { flex: 1; }
.category-chevron { width: 14px; height: 14px; flex-shrink: 0; color: var(--muted); transition: transform 0.25s ease; }
.category-toggle.open .category-chevron { transform: rotate(180deg); }

.year-list {
  display: flex; flex-direction: column; gap: 2px;
  max-height: 0; overflow: hidden;
  padding-left: 8px;
  transition: max-height 0.3s ease;
}
.year-list.open { max-height: 420px; }

.year-item {
  display: flex; align-items: center;
  border: none; background: transparent; cursor: pointer;
  padding: 9px 12px 9px 22px; border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif; font-size: 12.5px; font-weight: 600;
  color: var(--slate); position: relative;
  transition: all 0.2s; text-align: left;
}
.year-item::before {
  content: ''; position: absolute; left: 8px; top: 50%; transform: translateY(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--border-gold);
}
.year-item:hover { background: var(--orange-wash); color: var(--brown-deep); }
.year-item.active { background: var(--orange-pale); color: var(--orange-deep); font-weight: 700; }
.year-item.active::before { background: var(--orange-deep); }

.roster-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 2px;
  max-height: 320px; overflow-y: auto;
}
.roster-item {
  font-size: 12.5px; color: var(--ink); padding: 8px 10px; border-radius: var(--radius);
  display: flex; align-items: center; gap: 8px;
}
.roster-item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.roster-item:hover { background: var(--cream-deep); }

/* ----- Main content ----- */
.alumni-main-header { margin-bottom: 24px; }
.alumni-main-header .section-sub { margin-top: 10px; max-width: 640px; }

.alumni-carousel { position: relative; }
.alumni-carousel-frame {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--orange-wash); box-shadow: var(--shadow-md);
}
.alumni-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.6s ease;
}
.alumni-slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.alumni-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.alumni-slide-counter {
  position: absolute; bottom: 16px; right: 16px; z-index: 5;
  background: rgba(46,29,16,0.55); color: var(--white);
  font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 100px;
  backdrop-filter: blur(4px);
}

.alumni-dots { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; }
.alumni-dots .landing-dot { background: var(--border-gold); border-color: var(--border-gold); }
.alumni-dots .landing-dot.is-active { background: var(--orange); border-color: var(--orange); }

.alumni-caption {
  margin-top: 18px;
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  font-size: 13.5px; line-height: 1.7; color: var(--slate);
  max-width: 720px;
}
.alumni-caption .curr-tag-mini { flex-shrink: 0; }

@media (max-width: 900px) {
  .alumni-carousel-frame { aspect-ratio: 4 / 3; }
  .roster-list { max-height: 220px; }
}
