@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;500;600;700&display=swap');

:root {
  --orange:    #ff6a00;
  --black:     #111111;
  --dark:      #383838;
  --white:     #ffffff;
  --light:     #f5f5f5;
  --gray:      #555555;
  --chalk:     #F5F5F0;
  --burgundy:  rgba(70, 2, 49, 0.85);
  --green:     #1DB954;
  --green-dark:  #1a4d26;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Barlow', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); line-height: 1.6; color: var(--black); background: var(--chalk); overflow-x: hidden; }

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  width: 100%;
  height: 65px;
  position: absolute;
  top: 0; left: 0;
  z-index: 50;
  background: var(--burgundy);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-left  { display: flex; align-items: center; }
.nav-right { display: flex; align-items: center; justify-content: flex-end; }

.nav-center {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-center a {
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.nav-center a:hover { color: var(--orange); }

.logo {
  height: 46px;
  width: auto;
  display: block;
}

/* ── NAV : HAMBURGER BUTTON ────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ── NAV : MOBILE MENU ─────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  left: auto;
  width: 75%;
  max-width: 320px;
  height: 100vh;
  background: var(--white);
  z-index: 200;
  padding: 2rem 2rem;
  transition: left 0.35s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--black);
  margin-bottom: 2.5rem;
  padding: 4px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav a {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  padding: 1.1rem 0;
  border-bottom: 1px solid #eeeeee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}

.mobile-nav a::after {
  content: "›";
  font-size: 1.2rem;
  color: #ccc;
}

.mobile-nav a:hover { color: var(--orange); }

/* OVERLAY  */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.65));
  z-index: 1;
}

.hero-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  width: min(1000px, 92%);
  padding: 0 16px;
}

.hero-logo {
  width: 300px;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.35));
}

.hero-content h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  letter-spacing: 3px;
  line-height: 0.95;
}

.hero-content p {
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 500;
}

/* ── DESCRIPTION (Home) ──────────────────────────────────── */
.description {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 2px;
  color: var(--black);
  text-align: center;
  padding: 4rem 2rem 2rem;
  line-height: 1.1;
}

/* ── MISSION STATEMENT (Home — Section 2) ────────────────── */
.mission {
  padding: 6rem 2rem;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.mission::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.05;
}

.mission-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.mission-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 2rem;
  display: block;
}

.mission-quote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.mission-quote span { color: var(--orange); }

.mission-bar {
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin: 0 auto 2rem;
}

.mission-body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}

/* ── STATS BAR (Home — Section 3) ────────────────────────── */
.stats {
  background: var(--orange);
  padding: 3.5rem 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
  margin: 0 auto;
  gap: 1rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.3);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
  display: block;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}

/* ── WHY MYHOOP (Home — Section 4) ───────────────────────── */
.why {
  padding: 5rem 2rem;
  background: var(--chalk);
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header { margin-bottom: 3rem; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.4rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 3px;
  color: var(--black);
  line-height: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--black);
}

.why-card {
  padding: 2.5rem 2rem;
  border-right: 2px solid var(--black);
  position: relative;
  transition: background 0.25s ease;
}

.why-card:last-child { border-right: none; }
.why-card:hover { background: var(--indigo); }
.why-card:hover .why-card-title,
.why-card:hover .why-card-body { color: var(--white); }
.why-card:hover .why-icon { color: var(--orange); }
.why-card:hover .why-number { color: rgba(255,255,255,0.06); }

.why-number {
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(0,0,0,0.05);
  line-height: 1;
  position: absolute;
  top: 1rem; right: 1.5rem;
  letter-spacing: 2px;
  transition: color 0.25s ease;
  user-select: none;
}

.why-icon {
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: 1.2rem;
  display: block;
  transition: color 0.25s ease;
}

.why-card-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--black);
  margin-bottom: 0.75rem;
  transition: color 0.25s ease;
}

.why-card-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  transition: color 0.25s ease;
}

/* ── COMMUNITY PHOTOS (Home — Section 5) ─────────────────── */
.community {
  padding: 5rem 2rem;
  background: var(--white);
}

.community-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.community-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.community-tagline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 2px;
  line-height: 1.1;
  color: var(--black);
}

.community-tagline span { color: var(--orange); }

.community-sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 500;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 8px;
}

.photo-slot {
  background: #ddd;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.photo-slot:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.photo-slot img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.photo-slot:hover img { transform: scale(1.04); }

.photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #222 0%, #333 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-placeholder i {
  font-size: 2rem;
  color: rgba(255,255,255,0.15);
}

/* ── CALENDAR ─────────────────────────────────────────────── */
.cal-page { background: #F5F2EC; min-height: 100vh; }
.cal-page .navbar { background: rgba(245,242,236,0.88); border-bottom: 1px solid rgba(0,0,0,0.08); }

/* HERO */
.cal-hero { background: #F5F2EC; padding: 100px 2rem 2.5rem; text-align: center; }
.cal-hero h1 { font-family: var(--font-display); font-size: clamp(2.5rem,5vw,4rem); letter-spacing: 4px; color: #111; line-height: 1; margin-bottom: 0.3rem; }
.cal-hero p  { font-family: var(--font-body); font-size: 0.9rem; color: #888; }

/* MAIN LAYOUT */
.cal-body { background: #F5F2EC; padding: 2rem 2rem 5rem; }
.cal-container { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 220px 1fr; gap: 2.5rem; align-items: start; }

/* LEFT — desktop: stacked column */
.cal-left { position: sticky; top: 80px; }

/* On desktop: month block + controls stacked normally */
.month-block { margin-bottom: 1.75rem; }
.month-name  { font-family: var(--font-display); font-size: clamp(3.5rem,5vw,5.5rem); letter-spacing: 2px; color: #000; line-height: 0.9; display: block; }
.month-year  { font-family: var(--font-display); font-size: clamp(1.4rem,2.5vw,2rem); letter-spacing: 3px; color: #8A8A8A; display: block; margin-top: 0.15rem; margin-bottom: 0.75rem; }

.month-arrows { display: flex; gap: 6px; margin-bottom: 0; }
.month-arr    { width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid #D0D0D0; background: transparent; color: #111; font-size: 0.75rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; }
.month-arr:hover { background: #111; color: #fff; border-color: #111; }

.left-controls { margin-top: 1.75rem; }

/* Section pill */
.section-pill { display: inline-flex; background: #111; color: #fff; font-family: var(--font-body); font-size: 0.62rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; margin-bottom: 0.7rem; }

/* City toggle */
.city-toggle { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1.5rem; }
.city-btn    { font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; padding: 5px 16px; border-radius: 999px; border: 1.5px solid #D0D0D0; background: transparent; color: #111; cursor: pointer; transition: all 0.2s ease; }
.city-btn.active, .city-btn:hover { background: #7a7979; color: #fff; border-color: #df8004; }

/* Legend */
.legend-lbl   { font-family: var(--font-body); font-size: 0.62rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #888; display: block; margin-bottom: 0.65rem; }
.legend-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.legend-pill  { font-family: var(--font-body); font-size: 0.65rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; color: #fff; }
.pill-league  { background: #E5A623; }
.pill-tourney { background: #C75B2A; }
.pill-pickup  { background: #2F6F5E; }
.pill-allstar { background: #555; }

/* RIGHT */
.cal-right { min-width: 0; }
.cal-day-row { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; margin-bottom: 4px; }
.cal-day-pill { background: #111; color: #fff; font-family: var(--font-body); font-size: 0.6rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-align: center; padding: 6px 2px; border-radius: 999px; }

.cal-grid     { display: grid; grid-template-columns: repeat(7,1fr); }
.cal-week-sep { grid-column: 1/-1; height: 1px; background: #E0E0E0; margin: 2px 0; }
.cal-cell     { padding: 7px 3px 12px; text-align: center; min-height: 82px; }

.cal-date-circle { width: 32px; height: 32px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1rem; letter-spacing: 1px; margin-bottom: 4px; transition: transform 0.15s ease; }
.c-default  { background: #111; color: #fff; }
.c-other    { background: transparent; color: #C8C8C8; }
.c-league   { background: #E5A623; color: #fff; cursor: pointer; }
.c-tourney  { background: #C75B2A; color: #fff; cursor: pointer; }
.c-pickup   { background: #2F6F5E; color: #fff; cursor: pointer; }
.c-allstar  { background: #555;    color: #fff; cursor: pointer; }
.c-today    { background: var(--orange); color: #fff; }
.cal-date-circle.clickable:hover { transform: scale(1.12); }

.cal-ev-lbl { font-family: var(--font-body); font-size: 0.58rem; font-weight: 600; color: #333; line-height: 1.3; max-width: 62px; margin: 0 auto; cursor: pointer; }
.cal-ev-lbl:hover { color: #000; }

/* UPCOMING */
.upcoming-section { background: #F5F2EC; padding: 0 2rem 5rem; }
.upcoming-inner   { max-width: 1280px; margin: 0 auto; border-top: 1.5px solid #E0E0E0; padding-top: 3rem; }
.upcoming-title   { font-family: var(--font-display); font-size: clamp(2.5rem,4vw,3.5rem); letter-spacing: 3px; color: #111; margin-bottom: 0.2rem; }
.upcoming-sub     { font-family: var(--font-body); font-size: 0.82rem; color: #888; margin-bottom: 2rem; }
.ev-row     { display: grid; grid-template-columns: 65px 1fr auto; align-items: center; gap: 1.5rem; padding: 1.1rem 0; border-bottom: 1px solid #E0E0E0; cursor: pointer; transition: background 0.15s; }
.ev-row:hover { background: rgba(0,0,0,0.02); }
.ev-day-num { font-family: var(--font-display); font-size: 2rem; letter-spacing: 1px; color: #111; line-height: 1; }
.ev-day-mon { font-family: var(--font-body); font-size: 0.62rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #888; }
.ev-row-info h4 { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 2px; color: #111; margin-bottom: 2px; }
.ev-row-info p  { font-family: var(--font-body); font-size: 0.8rem; color: #888; }
.ev-badge { font-family: var(--font-body); font-size: 0.62rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; color: #fff; white-space: nowrap; }
.ev-badge.league  { background: #E5A623; }
.ev-badge.tourney { background: #C75B2A; }
.ev-badge.pickup  { background: #2F6F5E; }
.ev-badge.allstar { background: #555; }

/* PARTNER */
.partner-callout   { background: var(--dark); padding: 5rem 2rem; text-align: center; }
.partner-callout h2 { font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3.5rem); letter-spacing: 3px; color: #fff; margin-bottom: 0.75rem; }
.partner-callout p  { font-family: var(--font-body); font-size: 1rem; color: rgba(255,255,255,0.5); max-width: 500px; margin: 0 auto 2rem; line-height: 1.7; }
.partner-callout a  { display: inline-block; font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 2px; padding: 13px 36px; background: #ff6a00; color: #fff; text-decoration: none; border-radius: 999px; transition: opacity 0.2s; }
.partner-callout a:hover { opacity: 0.85; }
.cal-page .site-footer { background: #eee; }

/* MODAL */
.ev-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 300; display: flex; align-items: center; justify-content: center; padding: 1rem; opacity: 0; pointer-events: none; transition: opacity 0.2s ease; }
.ev-overlay.open { opacity: 1; pointer-events: all; }
.ev-modal  { background: #fff; border-radius: 16px; padding: 2rem; max-width: 420px; width: 100%; position: relative; transform: translateY(14px); transition: transform 0.22s ease; }
.ev-overlay.open .ev-modal { transform: translateY(0); }
.ev-modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: 1.5px solid #D0D0D0; color: #888; width: 32px; height: 32px; border-radius: 50%; font-size: 0.9rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.15s ease; }
.ev-modal-close:hover { background: #111; color: #fff; border-color: #111; }
.modal-type-pill { display: inline-block; font-family: var(--font-body); font-size: 0.62rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; color: #fff; margin-bottom: 1rem; }
.modal-title   { font-family: var(--font-display); font-size: 2rem; letter-spacing: 2px; color: #111; margin-bottom: 0.4rem; }
.modal-meta    { font-family: var(--font-body); font-size: 0.82rem; color: #888; margin-bottom: 1rem; line-height: 1.6; }
.modal-desc    { font-family: var(--font-body); font-size: 0.95rem; color: #444; line-height: 1.7; margin-bottom: 1.25rem; }
.modal-contact { font-family: var(--font-body); font-size: 0.85rem; font-weight: 700; color: #C75B2A; }


/* ── CTA ─────────────────────────────────────────────────── */
.cta {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem;
}

.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 3px;
  margin-bottom: 0.75rem;
}

.cta p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  opacity: 0.75;
}

.cta-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-form input {
  padding: 14px 18px;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  min-width: 260px;
  font-family: var(--font-body);
}

.cta-form button {
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 2px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.cta-form button:hover { opacity: 0.9; }

.cta-note {
  display: block;
  margin-top: 1.2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  opacity: 0.5;
}

.sub-confirmation {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-body);
}

/* ── CONTACT PAGE ────────────────────────────────────────── */
.full-page-cta {
  background: var(--gray);
  color: var(--white);
  padding: 150px 20px;
  margin-top: -70px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.dual-form-wrapper {
  display: flex;
  width: 100%;
  max-width: 1200px;
  gap: 60px;
}

.form-side { flex: 1; }

.form-side h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.form-side p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  margin-bottom: 28px;
  opacity: 0.75;
}

.vertical-cta-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.vertical-cta-form input,
.vertical-cta-form textarea {
  padding: 14px 18px;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  width: 100%;
  font-family: var(--font-body);
}

.vertical-cta-form button {
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 2px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.vertical-cta-form button:hover { opacity: 0.9; }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.about-community {
  padding: 150px 20px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: -60px;
}

.about-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
  align-items: start;
}

.about-header h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: 3px;
  line-height: 1;
  color: var(--black);
}

.about-copy p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 15px;
  color: var(--gray);
}

.highlight { font-weight: 700; color: var(--black); }

/* LOCATIONS */
.locations {
  background: var(--dark);
  color: var(--white);
  padding: 0;
  margin-bottom: 80px;
  overflow: hidden;
}

.location-head {
  background: var(--green-dark);
  color: var(--white);
  padding: 24px 40px;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 3px;
  display: block;
}

.locations ul {
  list-style: none;
  padding: 0 40px;
}

.locations li {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 3px;
  font-weight: 400;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.locations li:last-child { border-bottom: none; color: rgba(255,255,255,0.4); font-size: 1.8rem; }

/* COMMUNITY GRID */
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 80px;
}

.community-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.community-grid img:hover { transform: scale(1.02); }

/* TEAM */
.team-section { margin-bottom: 80px; }

.team-section h3 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 3px;
  color: var(--black);
  margin-bottom: 8px;
}

.team-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 28px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.team-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* IG PREVIEW */
.ig-preview { text-align: center; margin-bottom: 40px; }

.ig-preview h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 3px;
  margin-bottom: 20px;
  color: var(--black);
}

.ig-preview img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  border: 3px solid var(--green);
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 40px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand { text-align: left; }

.tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.copyright {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--gray);
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-nav a {
  font-family: var(--font-body);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover { color: var(--orange); }

.footer-social { text-align: right; }

.location {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-social a {
  color: var(--black);
  font-size: 1.3rem;
  transition: color 0.2s ease;
}

.footer-social a:hover { color: var(--orange); }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-inner { padding: 0 24px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }

  .why-grid { grid-template-columns: 1fr; }
  .why-card { border-right: none; border-bottom: 2px solid var(--black); }
  .why-card:last-child { border-bottom: none; }

  .about-header { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .dual-form-wrapper { flex-direction: column; }

  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-slot:first-child { grid-column: span 2; }

  .cal-container { grid-template-columns: 1fr; }
  .cal-left      { position: static; }

  /* Left block splits into 2 cols: title | controls */
  .cal-left-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 1.5rem;
  }

  .month-block   { margin-bottom: 0; }
  .left-controls { margin-top: 0; padding-top: 0.25rem; }

  /* Hide nav center and show hamburger under 900px */
  .nav-center  { display: none; }
  .hamburger   { display: flex; }

}

@media (max-width: 600px) {
  .community-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-content { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .footer-brand, .footer-social { text-align: center; }
  .footer-nav { flex-wrap: wrap; }

  .photo-grid { grid-template-columns: 1fr; }
  .photo-slot:first-child { grid-column: span 1; aspect-ratio: 4/3; }

  .cal-cell { min-height: 58px; padding: 5px 1px 8px; }
  .cal-date-circle { width: 26px; height: 26px; font-size: 0.82rem; }
  .cal-ev-lbl { font-size: 0.5rem; }
  .ev-row { grid-template-columns: 50px 1fr; }
  .ev-badge { display: none; }

}