/* ─── LANE STRIPE ─── */

.lane-stripe-5 { height: 5px; background: var(--stripe); }

/* ─── NAV ─── */

.nav-lane-marks {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nlm {
  width: 3px;
  border-radius: 2px;
  flex-shrink: 0;
}

.nlm:nth-child(1) { height: 8px; background: var(--blue); }

.nlm:nth-child(2) { height: 13px; background: var(--yellow); }

.nlm:nth-child(3) { height: 18px; background: #ffffff; }

.nlm:nth-child(4) { height: 13px; background: var(--green); }

.nlm:nth-child(5) { height: 8px; background: var(--red); }

.nav-cta {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--blue);
  color: white;
  text-decoration: none;
  padding: 10px 22px;
  margin-left: 12px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  background: #0070a8;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,133,199,0.35);
}

/* Mobile nav */

/* ─── HERO ─── */

.hero {
  min-height: 100vh;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}

/* Animated water-like shimmer */

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 80px,
    rgba(0,133,199,0.04) 80px,
    rgba(0,133,199,0.04) 81px
  );
  animation: waterShimmer 8s ease-in-out infinite alternate;
}

@keyframes waterShimmer {
  0% { transform: translateX(0) skewX(0deg); }
  100% { transform: translateX(-20px) skewX(-0.5deg); }
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px 0;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
}

.hero-badge-text {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.hero-h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 700;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: white;
  margin-bottom: 24px;
  max-width: 760px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.35s forwards;
}

.hero-h1 .blue-line {
  color: var(--blue);
  display: block;
}

.hero-sub {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(16px, 2vw, 22px);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  line-height: 1.45;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.5s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.65s forwards;
  margin-bottom: 56px;
}

.btn-primary {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--blue);
  color: white;
  text-decoration: none;
  padding: 14px 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: #0070a8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,133,199,0.4);
}

.btn-outline {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  color: white;
  text-decoration: none;
  padding: 13px 32px;
  border: 2px solid rgba(255,255,255,0.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.07);
}

.hero-stats {
  display: flex;
  gap: 0;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.8s forwards;
  margin-bottom: 0;
}

.hero-stat {
  padding: 18px 28px;
  border-right: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
}

.hero-stat:first-child { border-left: 1px solid rgba(255,255,255,0.1); }

.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-num.blue { color: var(--blue); }

.stat-num.yellow { color: var(--yellow); }

.stat-num.green { color: var(--green); }

.stat-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hero-bottom-stripe {
  height: 4px;
  background: var(--stripe);
  position: relative;
  z-index: 4;
}

/* ─── TICKER ─── */

.ticker {
  background: var(--yellow);
  overflow: hidden;
  padding: 0;
  height: 42px;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 42px;
}

.ticker-item::after {
  content: '•';
  color: rgba(0,0,0,0.3);
  font-size: 8px;
}

.ticker-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--black);
  color: var(--yellow);
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 2px;
  text-decoration: none;
}

/* ─── SECTION COMMONS ─── */

.section-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 520px;
  line-height: 1.75;
}

section { overflow: hidden; }

/* ─── PROGRAMS ─── */

.programs-section {
  background: var(--off-white);
  padding: 96px 0;
}

.programs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  gap: 24px;
  flex-wrap: wrap;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.prog-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-right: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.prog-card:last-child { border-right: none; }

.prog-card:hover { z-index: 2; transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }

.prog-photo {
  height: 260px;
  position: relative;
  overflow: hidden;
}

.prog-photo-bg {
  position: absolute;
  inset: 0;
}

.prog-photo-bg.blue {
  background: linear-gradient(160deg, #0a2a4a 0%, #0d3d6e 40%, #1565a0 100%);
}

.prog-photo-bg.yellow {
  background: linear-gradient(160deg, #2a1f00 0%, #5c3d00 40%, #8a6000 100%);
}

.prog-photo-bg.green {
  background: linear-gradient(160deg, #001a0f 0%, #003d1f 40%, #006b38 100%);
}

/* Photo pattern overlay */

.prog-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
}

.prog-lane-accent {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 5px;
  border-radius: 3px;
  height: 40px;
  z-index: 3;
}

.prog-lane-accent.blue { background: var(--blue); }

.prog-lane-accent.yellow { background: var(--yellow); }

.prog-lane-accent.green { background: var(--green); }

.prog-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 45%, transparent 100%);
  z-index: 2;
}

.prog-body {
  padding: 28px 28px 32px;
  border-top: 3px solid;
  position: relative;
}

.prog-body.blue { border-top-color: var(--blue); }

.prog-body.yellow { border-top-color: var(--yellow); }

.prog-body.green { border-top-color: var(--green); }

.prog-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.prog-tag.blue { color: var(--blue); }

.prog-tag.yellow { color: #8a6e00; }

.prog-tag.green { color: var(--green); }

.prog-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.prog-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}

.prog-schedule {
  border-top: 1px dashed var(--border);
  padding-top: 14px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.prog-regatta {
  border-top: 1px dashed var(--border);
  padding-top: 14px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.prog-regatta .prog-schedule-row {
  align-items: center;
  gap: 8px;
}

.prog-schedule-label {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.prog-schedule-row {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.45;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.prog-schedule-days {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-strong, #222);
  min-width: 58px;
  flex-shrink: 0;
}

.prog-schedule-row.blue  .prog-schedule-days { color: var(--blue); }

.prog-schedule-row.yellow .prog-schedule-days { color: #8a6e00; }

.prog-schedule-row.green .prog-schedule-days { color: var(--green); }

.prog-schedule-note {
  font-size: 12.5px;
  font-weight: 300;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.5;
}

.prog-link {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.prog-link.blue { color: var(--blue); }

.prog-link.yellow { color: #8a6e00; }

.prog-link.green { color: var(--green); }

.prog-link:hover { gap: 14px; }

/* ─── ABOUT ─── */

.about-section {
  background: var(--white);
  padding: 96px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
}

.about-lane-stripe {
  height: 5px;
  background: var(--stripe);
  margin-bottom: 0;
}

.about-photo {
  height: 520px;
  background: url('../images/photos/about.jpg') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.about-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}

.about-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--blue);
  padding: 14px 20px;
  z-index: 2;
}

.about-badge-label {
  font-family: 'Oswald', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}

.about-badge-text {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  letter-spacing: 0.04em;
}

.about-text .section-eyebrow { color: #8a6e00; }

.about-text .section-title { color: var(--text); }

.about-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-cta {
  display: inline-flex;
  margin-bottom: 48px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.about-feat:first-child { border-top: 1px solid var(--border); }

.feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.feat-icon.blue { background: var(--blue-pale); }

.feat-icon.yellow { background: var(--yellow-pale); }

.feat-icon.green { background: var(--green-pale); }

.feat-icon.red { background: var(--red-pale); }

.feat-icon svg { width: 16px; height: 16px; }

.feat-content {}

.feat-title {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.feat-title.blue { color: var(--blue); }

.feat-title.yellow { color: #8a6e00; }

.feat-title.green { color: var(--green); }

.feat-title.red { color: var(--red); }

.feat-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ─── CAMPS ─── */

.camps-section {
  background: var(--black);
  padding: 96px 0;
}

.camps-header {
  margin-bottom: 52px;
}

.camps-header .section-eyebrow { color: rgba(255,255,255,0.4); }

.camps-header .section-title { color: white; }

.camps-header .section-sub { color: rgba(255,255,255,0.45); }

.camps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.camp-card {
  background: #0f0f0f;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.camp-card:hover { background: #161616; }

.camp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.camp-card.blue::before { background: var(--blue); }

.camp-card.yellow::before { background: var(--yellow); }

.camp-card.green::before { background: var(--green); }

.camp-card.red::before { background: var(--red); }

.camp-card.white::before { background: rgba(255,255,255,0.85); }

.camp-season-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 20px;
}

.camp-season-tag.blue { background: rgba(0,133,199,0.15); color: var(--blue); }

.camp-season-tag.yellow { background: rgba(244,195,0,0.12); color: var(--yellow); }

.camp-season-tag.green { background: rgba(0,159,107,0.12); color: var(--green); }

.camp-season-tag.red { background: rgba(223,0,36,0.12); color: #ff4055; }

.camp-season-tag.white { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); }

.camp-title {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: white;
  line-height: 1.1;
  margin-bottom: 12px;
}

.camp-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-bottom: 24px;
}

.camp-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.camp-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.camp-detail-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.camp-detail-dot.blue { background: var(--blue); opacity: 0.7; }

.camp-detail-dot.yellow { background: var(--yellow); opacity: 0.7; }

.camp-detail-dot.green { background: var(--green); opacity: 0.7; }

.camp-detail-dot.red { background: var(--red); opacity: 0.7; }

.camp-detail-dot.white { background: rgba(255,255,255,0.85); opacity: 0.7; }

.camp-btn {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 10px 20px;
  transition: all 0.2s;
}

.camp-btn.blue { background: var(--blue); color: white; }

.camp-btn.yellow { background: var(--yellow); color: var(--black); }

.camp-btn.green { background: var(--green); color: white; }

.camp-btn.red { background: var(--red); color: white; }

.camp-btn.white { background: white; color: var(--black); }

.camp-btn:hover { opacity: 0.85; transform: translateY(-1px); }

.camp-btn.disabled {
  background: #d4d4d4;
  color: #7a7a7a;
  cursor: not-allowed;
  pointer-events: none;
}

.camp-btn.disabled:hover {
  opacity: 1;
  transform: none;
}

/* ─── NEWS ─── */

.news-section {
  background: var(--surface);
  padding: 96px 0;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.news-header .section-eyebrow { color: var(--red); }

.view-all {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.view-all:hover { gap: 14px; }

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.news-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.news-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); z-index: 2; position: relative; }

.news-photo {
  position: relative;
  overflow: hidden;
}

.news-photo.featured { height: 220px; }

.news-photo.secondary { height: 160px; }

.news-photo-bg {
  position: absolute;
  inset: 0;
}

.news-photo-bg.blue-dark {
  background: linear-gradient(135deg, #0a1f3c 0%, #1a3a6a 100%);
}

.news-photo-bg.green-dark {
  background: linear-gradient(135deg, #001f12 0%, #014a28 100%);
}

.news-photo-bg.red-dark {
  background: linear-gradient(135deg, #2a0008 0%, #5c001a 100%);
}

.news-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-55deg, transparent, transparent 30px, rgba(255,255,255,0.03) 30px, rgba(255,255,255,0.03) 31px);
  z-index: 1;
}

.news-body { padding: 24px; }

.news-date-tag {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 12px;
}

.news-date-tag.blue { background: var(--blue-pale); color: var(--blue); }

.news-date-tag.green { background: var(--green-pale); color: var(--green); }

.news-date-tag.red { background: var(--red-pale); color: var(--red); }

.news-title {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 10px;
  color: var(--text);
}

.news-card:not(.news-card:first-child) .news-title { font-size: 15px; }

.news-excerpt {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ─── SAFESPORT ─── */

.safesport-section {
  background: var(--green);
  padding: 48px 0;
}

.safesport-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.safesport-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.safesport-icon svg { width: 32px; height: 32px; }

.safesport-text { flex: 1; }

.safesport-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
}

.safesport-headline {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.safesport-sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
}

.safesport-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-safesport {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: white;
  color: var(--green);
  text-decoration: none;
  padding: 12px 24px;
  transition: background 0.2s, transform 0.2s;
}

.btn-safesport:hover { background: #f0fcf6; transform: translateY(-1px); }

.btn-safesport-outline {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  color: white;
  text-decoration: none;
  padding: 11px 24px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color 0.2s;
}

.btn-safesport-outline:hover { border-color: white; }

/* ─── CONTACT ─── */

.contact-section {
  background: var(--white);
  padding: 96px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info .section-eyebrow { color: var(--blue); }

.contact-items {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:first-child { border-top: 1px solid var(--border); }

.contact-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-circle.blue { background: var(--blue-pale); }

.contact-icon-circle.green { background: var(--green-pale); }

.contact-icon-circle.yellow { background: var(--yellow-pale); }

.contact-icon-circle.red { background: var(--red-pale); }

.contact-icon-circle svg { width: 18px; height: 18px; }

.contact-label {
  font-family: 'Oswald', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-val {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
}

.contact-val a { color: inherit; text-decoration: none; }

.contact-val a:hover { color: var(--blue); }

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 18px;
  text-decoration: none;
  transition: all 0.2s;
}

.social-btn.blue { background: var(--blue-pale); color: var(--blue); border: 1px solid #cce8f5; }

.social-btn.blue:hover { background: var(--blue); color: white; }

.social-btn.green { background: var(--green-pale); color: var(--green); border: 1px solid #b3e2d1; }

.social-btn.green:hover { background: var(--green); color: white; }

.social-btn.red { background: var(--red-pale); color: var(--red); border: 1px solid #f7c8d0; }

.social-btn.red:hover { background: var(--red); color: white; }

/* Map panel */

.contact-map-panel {
  background: #1a2540;
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.map-grid {
  position: absolute;
  inset: 0;
  background: none;
}

.map-water {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.72) 100%);
}

.map-addr-block { position: relative; z-index: 3; }

.map-venue-badge {
  display: inline-block;
  background: var(--blue);
  font-family: 'Oswald', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.map-addr {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin-bottom: 6px;
}

.map-addr-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ─── FOOTER ─── */

/* ─── SCROLL ANIMATIONS ─── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.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) {
  .programs-grid { grid-template-columns: 1fr 1fr; }
  .programs-grid .prog-card:nth-child(3) { border-right: 1px solid var(--border); grid-column: 1 / -1; }
  .camps-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { height: 360px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .news-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .programs-grid { grid-template-columns: 1fr; }
  .programs-grid .prog-card:nth-child(3) { grid-column: auto; border-right: 1px solid var(--border); }
  .camps-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; }
  .hero-stat { border-left: 1px solid rgba(255,255,255,0.1) !important; }
  programs-section, .about-section, .camps-section, .news-section, .contact-section { padding: 64px 0; }
}

/* ─── HERO SLIDESHOW ─── */

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide-1 {
  background-image: url('../images/photos/hero/hero-1.jpg');
  opacity: 1;
  animation: slide1fade 35s ease-in-out infinite;
}

.hero-slide-2 {
  background-image: url('../images/photos/hero/hero-2.jpg');
  opacity: 0;
  animation: slide2fade 35s ease-in-out infinite;
}

.hero-slide-3 {
  background-image: url('../images/photos/hero/hero-3.jpg');
  opacity: 0;
  animation: slide3fade 35s ease-in-out infinite;
}

.hero-slide-4 {
  background-image: url('../images/photos/hero/hero-4.jpg');
  opacity: 0;
  animation: slide4fade 35s ease-in-out infinite;
}

.hero-slide-5 {
  background-image: url('../images/photos/hero/hero-5.jpg');
  opacity: 0;
  animation: slide5fade 35s ease-in-out infinite;
}

.hero-slide-6 {
  background-image: url('../images/photos/hero/hero-6.jpg');
  opacity: 0;
  animation: slide6fade 35s ease-in-out infinite;
}

.hero-slide-7 {
  background-image: url('../images/photos/hero/hero-7.jpg');
  opacity: 0;
  animation: slide7fade 35s ease-in-out infinite;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgb(from var(--overlay-color) r g b / calc(0.68 * var(--overlay-opacity))) 0%,
    rgb(from var(--overlay-color) r g b / calc(0.42 * var(--overlay-opacity))) 60%,
    rgb(from var(--overlay-color) r g b / calc(0.55 * var(--overlay-opacity))) 100%);
  z-index: 1;
}

/* 7-slide cycle over 35s: each ~14.3% segment (5s), ~1.5s (4.3%) crossfade */

@keyframes slide1fade {
  0%    { opacity: 1; }
  10%   { opacity: 1; }
  14.3% { opacity: 0; }
  95.7% { opacity: 0; }
  100%  { opacity: 1; }
}

@keyframes slide2fade {
  0%    { opacity: 0; }
  10%   { opacity: 0; }
  14.3% { opacity: 1; }
  24.3% { opacity: 1; }
  28.6% { opacity: 0; }
  100%  { opacity: 0; }
}

@keyframes slide3fade {
  0%    { opacity: 0; }
  24.3% { opacity: 0; }
  28.6% { opacity: 1; }
  38.6% { opacity: 1; }
  42.9% { opacity: 0; }
  100%  { opacity: 0; }
}

@keyframes slide4fade {
  0%    { opacity: 0; }
  38.6% { opacity: 0; }
  42.9% { opacity: 1; }
  52.8% { opacity: 1; }
  57.1% { opacity: 0; }
  100%  { opacity: 0; }
}

@keyframes slide5fade {
  0%    { opacity: 0; }
  52.8% { opacity: 0; }
  57.1% { opacity: 1; }
  67.1% { opacity: 1; }
  71.4% { opacity: 0; }
  100%  { opacity: 0; }
}

@keyframes slide6fade {
  0%    { opacity: 0; }
  67.1% { opacity: 0; }
  71.4% { opacity: 1; }
  81.4% { opacity: 1; }
  85.7% { opacity: 0; }
  100%  { opacity: 0; }
}

@keyframes slide7fade {
  0%    { opacity: 0; }
  81.4% { opacity: 0; }
  85.7% { opacity: 1; }
  95.7% { opacity: 1; }
  100%  { opacity: 0; }
}

/* ─── COLLEGES ─── */

.colleges-section {
  background: var(--surface);
  padding: 96px 0 80px;
}

.colleges-header-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}

.colleges-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
}

.colleges-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 32px 40px;
  margin-bottom: 56px;
}

.college-logo-item {
  display: grid;
  grid-template-rows: 90px auto;
  align-items: center;
  justify-items: center;
  gap: 8px;
  padding: 8px 4px;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0.8;
}

.college-logo-item:hover {
  transform: translateY(-3px);
  opacity: 1;
}

.college-logo-item svg,
.college-logo-item img {
  width: auto;
  max-width: 100%;
  max-height: 90px;
  height: 90px;
  object-fit: contain;
}

.college-name {
  font-family: "Oswald", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  align-self: start;
}

.colleges-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  margin-top: 0;
  flex-wrap: wrap;
}

.colleges-stat {
  padding: 28px 40px;
  text-align: center;
  flex: 1;
  min-width: 160px;
}

.colleges-stat-divider {
  width: 1px; height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

.colleges-stat-num {
  font-family: "Oswald", sans-serif;
  font-size: 38px; font-weight: 700;
  line-height: 1; margin-bottom: 6px;
}

.colleges-stat-label {
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .colleges-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .colleges-header-inner { grid-template-columns: 1fr; gap: 20px; }
  .colleges-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px 16px; }
  .colleges-stat-divider { display: none; }
  .colleges-stat { border-bottom: 1px solid var(--border); }
}

/* ─── HERO PHOTO CREDIT ─── */

.hero-photo-credit {
  position: absolute;
  bottom: 12px;
  right: 16px;
  z-index: 5;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  font-family: 'DM Sans', sans-serif;
}
