:root {
  --navy: #0f1a2e;
  --navy-light: #1a2744;
  --gold: #c8a23c;
  --gold-light: #e0c76e;
  --white: #ffffff;
  --off-white: #f7f5f2;
  --gray-100: #e8e5e0;
  --gray-400: #999690;
  --gray-600: #5c5a56;
  --gray-800: #2d2c28;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1280px;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4.5rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-lg); }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease;
  padding: 1rem 0;
}
.navbar.scrolled {
  background: #0F1A2EF2;
  box-shadow: 0 1px 0 #FFFFFF14;
  padding: 0.5rem 0;
}
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--white);
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 6px;
}
.nav-menu { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #FFFFFFBF;
  padding: 0.25rem 1rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-cta-btn {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 600;
  padding: 0.25rem 1.5rem;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
}

/* ===== HERO SLIDESHOW ===== */
.hero-slideshow {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide.active {
  opacity: 1 !important;
  transition: none;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, #0F1A2EB2 0%, #0F1A2E73 40%, #0F1A2ECC 100%);
}
.slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.slide.active .slide-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 1;
}
.slide.active .slide-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 1;
}
.slide.active .slide-title .title-line {
  display: block;
  opacity: 1;
}
.slide.active .slide-title .title-line:last-child { animation-delay: 0.25s; }
.slide.active .slide-description {
  font-size: 1.125rem;
  font-weight: 300;
  color: #FFFFFFD9;
  margin-bottom: 2rem;
  max-width: 580px;
  opacity: 1;
}
.slide.active .slide-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 1;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Slideshow nav */
.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #FFFFFF66;
  background: #0F1A2E4C;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
.slide-nav:hover {
  background: #C8A23C80;
  border-color: var(--gold);
}
.slide-prev { left: 2rem; }
.slide-next { right: 2rem; }
.slide-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.75rem;
}
.slide-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #FFFFFF80;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}
.slide-dots .dot:hover {
  border-color: #FFFFFF;
  transform: scale(1.2);
}
.slide-dots .dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.2);
}
.slideshow-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #FFFFFF1A;
  z-index: 10;
}
.slideshow-progress .progress-bar {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 50ms linear;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.4s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 8px 30px #C8A23C4C;
}
.btn-secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: #FFFFFF66;
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: #FFFFFF80;
}
.btn-ghost-light:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-link {
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s;
}
.btn-link:hover { color: var(--gold-light); }

/* ===== SECTIONS ===== */
.section { padding: 8rem 0; }
.section--light { background: var(--off-white); }
.section--dark { background: var(--navy); }

.section-header { margin-bottom: 4rem; }
.section-header--center { text-align: center; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-heading--light { color: var(--white); }

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 640px;
  line-height: 1.7;
}
.section--dark .section-subtitle { color: #FFFFFF80; }

/* ===== INTRO ===== */
.section-intro {
  padding: 8rem 0;
  background: var(--off-white);
}
.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.intro-text { margin-top: 2rem; }
.intro-text p { margin-bottom: 1rem; font-size: 1.0625rem; }

/* ===== STATS ===== */
.section-stats {
  background: var(--navy);
  padding: 6rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.875rem;
  color: #FFFFFFB3;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== ACTIVITIES ===== */
.activity-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.activity-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px #0F1A2E14;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 60px #0F1A2E29;
}
.activity-card-img { height: 220px; overflow: hidden; }
.activity-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.activity-card:hover .activity-card-img img { transform: scale(1.1); }
.activity-card-body { padding: 1.5rem; }
.activity-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.activity-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.activity-card-body p {
  color: var(--gray-600);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

/* ===== SPLIT (Eagle Scout) ===== */
.section-split { padding: 8rem 0; }
.split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-image {
  position: relative;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.split-cta { margin-top: 2rem; }

/* Split steps */
.split-steps {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.step-mini {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.step-mini-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gray-100);
  color: var(--navy);
  font-weight: 700;
  border-radius: 50%;
  font-size: 0.875rem;
}
.step-mini--highlight .step-mini-num { background: var(--gold); }
.step-mini-text { font-weight: 500; font-size: 0.9375rem; }
.step-mini-connector {
  width: 32px;
  height: 2px;
  background: var(--gold);
  opacity: 0.4;
}

/* ===== GALLERY ===== */
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item--large {
  grid-column: span 2;
  grid-row: span 1;
  min-height: 300px;
}
.gallery-item--tall {
  grid-row: span 2;
  min-height: 400px;
}
.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, #00000099);
  color: var(--white);
  font-weight: 500;
  font-size: 0.875rem;
}
.gallery-cta { text-align: center; margin-top: 2rem; }

/* ===== CTA ===== */
.section-cta {
  background: var(--navy);
  text-align: center;
  padding: 8rem 0;
}
.cta-content { max-width: 640px; margin: 0 auto; }
.cta-description {
  font-size: 1.0625rem;
  color: #FFFFFFB3;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 6rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.footer-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.875rem;
  border-radius: 6px;
}
.footer-tagline { color: #FFFFFFB3; margin-bottom: 1rem; }
.footer-address { color: #FFFFFF80; font-size: 0.875rem; line-height: 1.6; }
.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  color: #FFFFFFB3;
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid #FFFFFF1A;
  padding-top: 2rem;
  text-align: center;
  color: #FFFFFF80;
  font-size: 0.875rem;
}

/* ===== JOIN ===== */
.join-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.join-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--gray-100);
}
.join-card h3 { font-family: var(--font-heading); margin-bottom: 1rem; color: var(--navy); }

/* ===== EAGLE STEPS ===== */
.eagle-steps {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.eagle-steps .step-mini-connector {
  width: 32px;
  height: 2px;
  background: var(--gold);
  opacity: 0.4;
}

/* ===== EVENTS ===== */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.event-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-100);
}
.event-date {
  min-width: 80px;
  text-align: center;
}
.event-date-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.event-date-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}
.event-info h3 { font-size: 1.125rem; margin-bottom: 0.25rem; }
.event-info p { color: var(--gray-600); font-size: 0.9375rem; }

/* ===== GALLERY PAGE ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-grid-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}
.gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-grid-item:hover img { transform: scale(1.1); }

/* ===== ABOUT PAGE ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  border-radius: 20px;
  overflow: hidden;
  height: 500px;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-text p {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-info p { font-size: 1.0625rem; margin-bottom: 1rem; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 1rem;
  background: var(--white);
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form .btn { width: 100%; }

/* ===== PAGE HEADER ===== */
.page-header {
  position: relative;
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #0F1A2EB2 0%, #0F1A2ECC 100%);
  z-index: 1;
}
.page-header-content {
  position: relative;
  z-index: 2;
  padding-bottom: 4rem;
}
.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.page-header p {
  font-size: 1.125rem;
  color: #FFFFFFD9;
}

/* ===== ABOUT PAGE ===== */
.section--about-hero { padding: 0; }
.about-hero-container {
  position: relative;
  height: 50vh;
  min-height: 400px;
  overflow: hidden;
}
.about-hero-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #0F1A2E66 0%, var(--white) 100%);
}
.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text p { font-size: 1.0625rem; line-height: 1.8; margin-bottom: 1.5rem; }
.lead-text { font-size: 1.25rem; font-weight: 500; color: var(--navy); }
.body-text { color: var(--gray-600); }

.about-image-stack { position: relative; height: 500px; }
.stack-image {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px #0F1A2E29;
}
.stack-image img { width: 100%; height: 100%; object-fit: cover; }
.stack-image--1 {
  width: 70%;
  height: 350px;
  top: 0;
  left: 0;
}
.stack-image--2 {
  width: 55%;
  height: 280px;
  bottom: 0;
  right: 0;
}

/* ===== OATH & LAW ===== */
.section--oath { background: var(--navy); padding: 6rem 0; }
.oath-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.oath-card {
  background: var(--navy-light);
  border: 1px solid #FFFFFF1A;
  border-radius: 16px;
  padding: 2.5rem;
}
.oath-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.oath-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #FFFFFFCC;
  line-height: 1.8;
  font-style: italic;
}
.law-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.law-item {
  background: #FFFFFF1A;
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px #0F1A2E14;
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.feature-card h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.feature-card p { color: var(--gray-600); }

/* ===== SECTION EYEBROW VARIANT ===== */
.section-eyebrow--light { color: var(--gold-light); }

/* ===== SECTION DESCRIPTION ===== */
.section-description {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ===== EAGLE STEPS ===== */
.eagle-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.eagle-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 1.125rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.eagle-step h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.eagle-step p { color: var(--gray-600); }

/* ===== TEXT CENTER ===== */
.text-center { text-align: center; }

/* ===== FOOTER BRAND ===== */
.footer-brand { max-width: 320px; }
.footer-logo-text {
  font-weight: 700;
  font-size: 1.125rem;
}

/* ===== CONTACT DETAILS ===== */
.contact-detail { margin-bottom: 1.5rem; }
.contact-detail h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.contact-detail p { color: var(--gray-600); }

/* ===== FORM STYLES ===== */
.form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}
.form input,
.form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
}
.form textarea { min-height: 150px; resize: vertical; }

/* ===== SPLIT CONTENT ===== */
.split-content { font-size: 1.0625rem; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    z-index: 999;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }
  .nav-menu.active .nav-link { font-size: 1.25rem; padding: 0.75rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .activity-cards { grid-template-columns: 1fr; }
  .split-container { grid-template-columns: 1fr; }
  .gallery-preview { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--large { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .join-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .btn { padding: 14px 28px; font-size: 0.8rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .gallery-preview { grid-template-columns: 1fr; }
  .gallery-item--large { grid-column: span 1; }
  .slide-cta { flex-direction: column; align-items: center; }
  .slide-cta .btn { width: 100%; max-width: 280px; }
  .slide-nav { width: 36px; height: 36px; }
  .slide-prev { left: 0.5rem; }
  .slide-next { right: 0.5rem; }
}

/* ===== MOBILE STICKY BOTTOM BAR ===== */
.mobile-register-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--navy);
  padding: 0.5rem 1rem;
  box-shadow: 0 -2px 10px #0F1A2E33;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 100vw;
}
.mobile-register-bar .bar-text {
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-register-bar .bar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.mobile-register-bar .bar-btn:hover {
  background: var(--gold-light);
}

@media (max-width: 768px) {
  .mobile-register-bar {
    display: flex;
  }
}

/* ===== ADULT LEADERSHIP PAGE ===== */
.section--light {
  background: var(--off-white);
}

/* Leader Profile (Scoutmaster featured) */
.leader-profile {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.leader-photo {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.leader-photo img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}
.leader-info {
  padding-top: 0.5rem;
}
.leader-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.leader-bio {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 1rem;
}
.leader-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Leader Cards Grid */
.leaders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.leader-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.leader-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}
.leader-card-photo {
  overflow: hidden;
}
.leader-card-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.leader-card:hover .leader-card-photo img {
  transform: scale(1.03);
}
.leader-card-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--navy);
  padding: 1rem 1.25rem 0.5rem;
}
.leader-card-bio {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray-600);
  padding: 0 1.25rem 1rem;
}
.role-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 768px) {
  .leader-profile {
    grid-template-columns: 1fr;
  }
  .leader-photo {
    max-width: 250px;
    margin: 0 auto;
  }
  .leader-name {
    font-size: 1.5rem;
  }
  .leaders-grid {
    grid-template-columns: 1fr;
  }
}
