/* ============================================================================
   Coral Springs Residents Association, design system
   All-blue brand (matching the fountain logo), clean sans-serif type.
   Poppins for headings, Inter for body. No coral, no serif.
   ============================================================================ */

:root {
  /* Brand blues */
  --blue-900: #0B3A57;
  --blue-800: #0F4E74;
  --blue-700: #176C9C;
  --blue-600: #1E7BB8;   /* primary brand blue */
  --blue-500: #2685D0;
  --blue-400: #5BA5DD;
  --blue-300: #8CBEE4;
  --blue-200: #B6D6EE;
  --blue-100: #D7E8F5;
  --blue-50:  #EAF3FB;

  /* Functional status only (not brand accents) */
  --ok: #3FA45B;
  --warn: #C9742B;
  --bad: #C8463B;

  /* Surfaces */
  --bg: #F4F8FC;
  --bg-alt: #EAF1F8;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.82);

  /* Ink */
  --ink: #0C2433;
  --ink-mid: #455a67;
  --ink-soft: #5d7280;
  --on-dark: #EAF4FC;
  --heading: #122A3D;   /* near-black navy for titles: dark and professional, not saturated blue */

  /* Lines & shadow, tighter and more architectural */
  --border: #DCE4EC;
  --border-strong: #C3D0DC;
  --shadow-sm: 0 1px 2px rgba(12, 36, 51, 0.05), 0 1px 3px rgba(12, 36, 51, 0.04);
  --shadow: 0 6px 16px -8px rgba(12, 36, 51, 0.18);
  --shadow-md: 0 10px 28px -14px rgba(12, 36, 51, 0.22);
  --shadow-lg: 0 16px 40px -18px rgba(12, 36, 51, 0.26);

  /* Radii, restrained for a polished, less bubbly feel */
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 8px;
  --r-xl: 12px;
  --r-pill: 6px;

  /* Type */
  --font-ui: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-head: "Poppins", "Inter", system-ui, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(18px, 5vw, 56px);
  --nav-h: 96px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--font-ui);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--nav-h);
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; font-weight: 600; letter-spacing: -0.015em; color: var(--heading); }
:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 3px; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(52px, 8vw, 104px); }
.section--tight { padding-block: clamp(38px, 6vw, 68px); }
.center { text-align: center; }
.grid { display: grid; gap: clamp(16px, 2.5vw, 28px); }
@media (min-width: 640px) { .cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px) { .cols-3 { grid-template-columns: repeat(3, 1fr); } }
/* cols-4 steps up gradually so tablet widths aren't cramped (used by the board grid) */
@media (min-width: 600px)  { .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px)  { .cols-4 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) { .cols-4 { grid-template-columns: repeat(4, 1fr); } }
.eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--blue-600);
}
h1 { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 700; }
h2.display, .display { font-weight: 700; }
h2.display { font-size: clamp(1.7rem, 3.8vw, 2.5rem); letter-spacing: -0.02em; }
.lede { font-size: clamp(1.04rem, 1.6vw, 1.18rem); color: var(--ink-mid); max-width: 62ch; }
.section-head { max-width: 64ch; margin-bottom: clamp(26px, 4vw, 46px); }
.section-head.center { margin-inline: auto; }
.section-head.center .lede { margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 14px; }
/* shared CTA spacing below a grid/section (replaces ad-hoc inline margin-top) */
.section-cta { margin-top: clamp(24px, 3vw, 32px); }
.section-head h2 { margin-bottom: 14px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 22px; border-radius: var(--r-sm);
  font-weight: 600; font-size: 0.94rem; letter-spacing: 0.01em;
  transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--blue-700); color: #fff; }
.btn--primary:hover { background: var(--blue-800); }
.btn--secondary { background: var(--blue-100); color: var(--blue-800); }
.btn--secondary:hover { background: var(--blue-200); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--border-strong); }
.btn--ghost:hover { border-color: var(--blue-600); color: var(--blue-700); }
.btn--light { background: rgba(255,255,255,0.10); color: #fff; border: 1px solid rgba(255,255,255,0.5); backdrop-filter: blur(8px); }
.btn--light:hover { background: rgba(255,255,255,0.20); }
.btn--lg { padding: 14px 28px; font-size: 1rem; }
.btn--block { width: 100%; }
.ico { width: 16px; height: 16px; flex: 0 0 auto; }
.btn .ico { width: 18px; height: 18px; }

/* ---------- header / nav ---------- */
/* Placeholder bar painted before JS builds the nav, so the top is never empty over the hero */
#site-header:empty { position: fixed; top: 0; left: 0; right: 0; z-index: 60; height: var(--nav-h); background: #fff; border-bottom: 1px solid var(--border); }
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,0.98); }
.nav { position: relative; display: flex; align-items: center; justify-content: space-between; gap: clamp(16px, 3vw, 40px); height: var(--nav-h); transition: height .22s ease-out; }
.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
/* Header brand: single horizontal lockup image (badge + text), sized by height. */
.brand--full { gap: 0; }
.brand__full { height: 72px; width: auto; display: block; transition: height .22s ease-out; }
/* Footer brand: stacked fountain badge + text (kept for the dark background). */
.brand__logo {
  flex: 0 0 auto; width: 88px; height: 88px;
  overflow: hidden; display: grid; place-items: center;
  transition: width .22s ease-out, height .22s ease-out;
}
.brand__logo img { width: 148%; height: 148%; object-fit: contain; }
.brand .brand-txt { display: flex; flex-direction: column; gap: 2px; }
.brand .brand-txt b { font-family: var(--font-head); font-size: 1.46rem; font-weight: 700; line-height: 1.04; letter-spacing: -0.01em; color: var(--heading); white-space: nowrap; }
.brand .brand-txt span { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue-600); white-space: nowrap; }
/* shrink-on-scroll: stays big at the top, compacts once you scroll down */
.site-header.scrolled .nav { height: 76px; }
.site-header.scrolled .brand__full { height: 58px; }
.nav-links { display: none; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-item > a {
  display: inline-flex; align-items: center; gap: 3px;
  padding: 9px 15px; border-radius: var(--r-sm); font-weight: 500; font-size: 0.98rem;
  color: var(--ink-mid); transition: color .15s ease; position: relative;
}
.nav-item > a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 5px; height: 2px;
  background: var(--blue-600); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease;
}
.nav-item > a:hover { color: var(--ink); }
.nav-item > a:hover::after { transform: scaleX(1); }
.nav-item > a.active { color: var(--blue-700); }
.nav-item > a.active::after { transform: scaleX(1); }
.nav-item .caret { width: 11px; height: 11px; opacity: .55; margin-left: -2px; }
.nav-drop {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 220px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-md);
  box-shadow: var(--shadow); padding: 6px; opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-item:hover .nav-drop, .nav-item:focus-within .nav-drop { opacity: 1; visibility: visible; transform: none; }
.nav-drop a { display: block; padding: 9px 12px; border-radius: var(--r-sm); font-size: 0.9rem; font-weight: 500; color: var(--ink-mid); }
.nav-drop a:hover { background: var(--blue-50); color: var(--blue-700); }
.nav-toggle { position: absolute; right: 0; top: 50%; transform: translateY(-50%); display: inline-flex; flex-direction: column; gap: 5px; padding: 10px; border-radius: var(--r-sm); }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 55;
  background: var(--bg); padding: 16px var(--gutter) 40px;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; gap: 2px; overflow-y: auto;
}
.nav-open .mobile-menu { transform: translateX(0); }
/* keep the panel flush with the header after it shrinks on scroll */
.site-header.scrolled .mobile-menu { top: 76px; }
.mobile-menu a { padding: 14px 8px; font-size: 1.1rem; font-weight: 600; border-bottom: 1px solid var(--border); color: var(--ink); }
.mobile-menu a.sub { padding-left: 24px; font-size: 0.98rem; font-weight: 500; color: var(--ink-mid); }
.mobile-menu a.active { color: var(--blue-700); }
@media (min-width: 1040px) {
  .nav-toggle, .mobile-menu { display: none !important; }
  .nav-links { display: flex; }
  /* center the logo + links as one group so there's no big middle gap */
  .nav { justify-content: center; gap: clamp(24px, 3vw, 44px); }
}
@media (max-width: 600px) {
  :root { --nav-h: 80px; }
  .brand__full { height: 58px; }
}

/* Home hero bleeds to the very top, behind the (solid) fixed nav */
body[data-page="home"] { padding-top: 0; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: min(100vh, 1080px); min-height: min(100svh, 1080px); display: flex; align-items: center; padding-top: var(--nav-h); color: #fff; overflow: hidden; background: linear-gradient(120deg, var(--blue-900), var(--blue-700) 38%, var(--blue-500) 62%, var(--blue-400) 100%); }
/* Info-first home: the video becomes a shorter band lower down the page. */
.hero--compact { min-height: clamp(340px, 46vh, 520px); }
.hero--compact .hero__inner { padding-block: clamp(22px, 4vw, 48px); }
.hero--compact h1 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); }
.hero--compact .hero__actions { margin-top: 24px; }
.hero--compact p { display: none; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img, .hero__media iframe, .hero__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__media video { opacity: 0; transition: opacity .7s ease; }
.hero__media video.is-ready { opacity: 1; }
.hero__media iframe { pointer-events: none; border: 0; }
.hero__fallback {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, var(--blue-900), var(--blue-700) 38%, var(--blue-500) 62%, var(--blue-400) 100%);
  background-size: 200% 200%; animation: drift 20s ease-in-out infinite;
}
.hero__fallback::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(100% 70% at 12% -10%, rgba(215,232,245,.35), transparent 55%);
}
@keyframes drift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8,34,51,.30) 0%, rgba(8,34,51,.12) 40%, rgba(8,34,51,.80) 100%);
}
.hero__inner { position: relative; z-index: 2; padding-block: clamp(40px, 8vw, 92px); width: 100%; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 13px; margin-bottom: 22px;
  font-family: var(--font-head); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,.9);
  text-shadow: 0 1px 10px rgba(8,34,51,.4);
}
.hero__eyebrow::before { content: ""; width: 36px; height: 2px; border-radius: 2px; background: rgba(255,255,255,.65); }
.hero h1 { font-family: var(--font-head); font-size: clamp(2.6rem, 6.2vw, 4.2rem); font-weight: 700; line-height: 1.04; letter-spacing: -0.02em; text-shadow: 0 2px 20px rgba(8,34,51,.4); max-width: 15ch; color: #fff; }
.hero p { margin-top: 20px; font-size: clamp(1.05rem, 1.7vw, 1.25rem); line-height: 1.6; font-weight: 400; max-width: 50ch; color: rgba(255,255,255,.9); text-shadow: 0 1px 10px rgba(8,34,51,.35); }
.hero__actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }
/* polished lift on the hero buttons */
.hero__actions .btn { transition: transform .25s cubic-bezier(.2,.7,.3,1), background .18s ease, box-shadow .25s ease, border-color .18s ease; }
.hero__actions .btn:hover { transform: translateY(-3px); box-shadow: 0 14px 28px -10px rgba(8,34,51,.55); }
.hero__actions .btn:active { transform: translateY(-1px); transition-duration: .08s; }
@media (prefers-reduced-motion: reduce) { .hero__actions .btn:hover { transform: none; } }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px;
  padding: 7px 14px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.02em; color: #fff;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-400); box-shadow: 0 0 0 4px rgba(91,165,221,.4); }

.wave { display: block; width: 100%; height: auto; color: var(--bg); margin-top: -1px; }

/* ---------- cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: clamp(20px, 3vw, 28px); box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  height: 100%; display: flex; flex-direction: column;
}
.card--hover { transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.card--hover:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--blue-200); }
.card__icon {
  width: 48px; height: 48px; border-radius: var(--r-md); display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue-700); margin-bottom: 16px;
  border: 1px solid var(--blue-100);
  font-family: var(--font-head); font-weight: 700; font-size: 1.15rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { color: var(--ink-mid); }
/* clickable announcement / blog cards (image-top) */
.post-card { color: inherit; padding: 0; overflow: hidden; }
.post-card__media { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--blue-100); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .post-card__media img { transform: scale(1.04); }
.post-card__inner { display: flex; flex-direction: column; flex: 1 1 auto; padding: clamp(20px, 2.6vw, 28px); }
.post-card__date { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--blue-700); }
.post-card h3 { margin-top: 10px; transition: color .15s ease; }
.post-card:hover h3 { color: var(--blue-700); }
.post-card__inner p { margin-top: 8px; color: var(--ink-mid); }
.post-card__more { display: inline-flex; align-items: center; gap: 5px; margin-top: auto; padding-top: 16px; font-weight: 600; color: var(--blue-700); }
.post-card__more .ico { transition: transform .2s ease; }
.post-card:hover .post-card__more .ico { transform: translateX(3px); }

/* announcements grid */
.post-grid { display: grid; gap: clamp(16px, 2.5vw, 26px); max-width: 1120px; margin-inline: auto; }
@media (min-width: 620px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 940px) { .post-grid { grid-template-columns: 1fr 1fr 1fr; } }
.post-grid .post-card h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

/* post page cover image */
.post-figure { margin: 0 0 26px; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); background: var(--blue-50); }
.post-figure img { width: 100%; height: auto; display: block; }
.post-grid .post-card p { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.post-grid .post-card__more { margin-top: auto; }
@media (max-width: 460px) { .post-grid .post-card { aspect-ratio: auto; } }
/* Compact announcement cards (home): no cover image, excerpt clamped so cards stay short. */
[data-compact] .post-card p { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
/* Board of directors, grouped by title category (Executive, Directors). */
.board-group + .board-group { margin-top: clamp(28px, 4vw, 44px); }
.board-group__title { text-align: center; font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; margin-bottom: clamp(16px, 2vw, 22px); }
/* Home "Discover your CSRA": map photo on the left, CSRA/CSCA squares + button on the right. */
.home-discover { display: grid; gap: clamp(20px, 3vw, 36px); align-items: center; }
@media (min-width: 980px) { .home-discover { grid-template-columns: 1.1fr 0.9fr; } }
.home-discover__media { margin: 0; }
.home-discover__media img { width: 100%; height: auto; display: block; border-radius: var(--r-md); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.home-discover__body .assoc-cmp { max-width: none; margin: 0; }
.home-discover__body .assoc-cmp__grid { grid-template-columns: 1fr; }
/* Social follow CTA: compact horizontal card — text on the left, buttons on the right. */
.social-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: clamp(16px, 3vw, 30px); background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); padding: clamp(20px, 3vw, 30px) clamp(22px, 4vw, 40px); }
.social-cta__text h2 { font-size: clamp(1.3rem, 2.4vw, 1.65rem); margin-bottom: 4px; }
.social-cta__text p { color: var(--ink-mid); max-width: 46ch; }
.social-cta .hero__actions { margin-top: 0; flex: 0 0 auto; }
@media (max-width: 760px) { .social-cta { flex-direction: column; text-align: center; align-items: center; } .social-cta .hero__actions { justify-content: center; } }
.post-back { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--blue-700); }
.post-back:hover { color: var(--blue-800); }
.card__meta { margin-top: auto; padding-top: 14px; font-size: 0.85rem; font-weight: 600; color: var(--blue-700); display: flex; align-items: center; gap: 7px; }

/* ===== Facility hours cards (Office / South Beach / North Beach) =====
   Each card answers two questions at once: is it open right now (status pill +
   plain-language "today" line) and what are the hours all week (the list). */
.hours-grid { display: grid; gap: clamp(16px, 2.4vw, 24px); max-width: 940px; margin-inline: auto; align-items: stretch; }
@media (min-width: 760px) { .hours-grid { grid-template-columns: 1fr 1fr; } }
.hours-grid--3 { max-width: none; }
@media (min-width: 1180px) { .hours-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
/* tablet/narrow-desktop 2-up: center the orphaned 3rd card across both columns */
@media (min-width: 760px) and (max-width: 1179.98px) {
  .hours-grid--3 .fac:last-child:nth-child(odd) { grid-column: 1 / -1; justify-self: center; width: calc(50% - (clamp(16px, 2.4vw, 24px) / 2)); }
}
.fac { position: relative; overflow: hidden; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); box-shadow: var(--shadow-sm); padding: clamp(20px, 2.4vw, 28px) clamp(18px, 2vw, 24px); display: flex; flex-direction: column; height: 100%; }
.fac::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--border-strong); }
.fac__head { display: flex; flex-wrap: nowrap; align-items: flex-start; justify-content: space-between; gap: 8px 12px; }
.fac__name { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.18rem, 1.5vw, 1.35rem); line-height: 1.2; min-width: 0; }
.fac-pill { display: inline-flex; align-items: center; gap: 7px; flex: none; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.01em; padding: 6px 13px; border-radius: var(--r-pill); white-space: nowrap; background: var(--bg-alt); color: var(--ink-soft); }
.fac-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-soft); }
.fac__today { margin: 13px 0 4px; font-size: 1.02rem; font-weight: 700; color: var(--ink); }
.fac.is-open::before { background: var(--blue-600); }
.fac.is-open .fac-pill { background: rgba(30,123,184,.12); color: var(--blue-700); }
.fac.is-open .fac-pill .dot { background: var(--blue-600); box-shadow: 0 0 0 3px rgba(30,123,184,.22); }
.fac.is-open .fac__today { color: var(--blue-700); }
.fac.is-closed::before { background: var(--ink-soft); }
.fac.is-closed .fac-pill { background: rgba(93,114,128,.12); color: var(--ink-soft); }
.fac.is-closed .fac-pill .dot { background: var(--ink-soft); }
.fac.is-closed .fac__today { color: var(--ink-soft); }
.hours-note { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); font-size: 0.82rem; color: var(--ink-soft); line-height: 1.5; }
.hours-list { margin-top: 12px; border-top: 1px solid var(--border); }
.hours-row { display: flex; justify-content: space-between; gap: 16px; padding: 9px 4px; border-bottom: 1px solid var(--border); font-size: 0.96rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row__day { color: var(--ink-mid); font-weight: 500; }
.hours-row__time { color: var(--ink); font-weight: 600; white-space: nowrap; }
.hours-row.is-closed .hours-row__time { color: var(--ink-soft); font-weight: 500; }
.hours-row.is-today { background: var(--blue-50); margin-inline: -12px; padding-inline: 12px; border-radius: var(--r-sm); border-bottom-color: transparent; }
.hours-row.is-today .hours-row__day { color: var(--blue-800); font-weight: 600; }
.hours-row.is-today .hours-row__day::after { content: "Today"; margin-left: 6px; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--blue-700); background: var(--blue-100); padding: 2px 6px; border-radius: var(--r-sm); vertical-align: middle; }

/* ===== Park status board ("what's open right now") ===== */
.status-meta { display: flex; flex-wrap: wrap; gap: 6px 22px; align-items: center; justify-content: center; margin-bottom: clamp(22px, 3vw, 30px); color: var(--ink-mid); font-size: 0.9rem; text-align: center; }
.status-meta span { display: inline-flex; align-items: center; }
.status-meta svg { width: 16px; height: 16px; margin-right: 7px; color: var(--blue-700); }
/* "Out of season" group divider */
.status-group + .status-group { margin-top: clamp(24px, 3.5vw, 36px); }
.status-group__title { display: flex; align-items: center; gap: 14px; font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); margin-bottom: 16px; }
.status-group__title::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.status-board { display: grid; gap: clamp(12px, 1.6vw, 16px); grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.act { position: relative; overflow: hidden; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); box-shadow: var(--shadow-sm); padding: clamp(15px, 1.8vw, 18px) clamp(16px, 1.8vw, 20px); padding-left: calc(clamp(16px, 1.8vw, 20px) + 6px); display: flex; flex-direction: column; gap: 9px; }
.act::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 6px; background: var(--border-strong); }
.act__head { display: flex; flex-wrap: nowrap; align-items: flex-start; justify-content: space-between; gap: 4px 10px; }
.act__name { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; line-height: 1.2; min-width: 0; }
.act__badge { display: inline-flex; align-items: center; gap: 7px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.02em; white-space: nowrap; flex-shrink: 0; color: var(--ink-soft); }
.act__badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-soft); }
.act__detail { margin: 0; color: var(--ink-mid); font-size: 0.9rem; line-height: 1.5; }
.act.is-open::before { background: var(--blue-600); }
.act.is-open .act__badge { color: var(--blue-700); } .act.is-open .act__badge .dot { background: var(--blue-600); box-shadow: 0 0 0 4px rgba(30,123,184,.16); }
.act.is-caution::before { background: var(--warn); }
.act.is-caution .act__badge { color: var(--warn); } .act.is-caution .act__badge .dot { background: var(--warn); box-shadow: 0 0 0 4px rgba(201,116,43,.18); }
.act.is-closed::before { background: var(--ink-soft); }
.act.is-closed .act__badge { color: var(--ink-soft); } .act.is-closed .act__badge .dot { background: var(--ink-soft); box-shadow: 0 0 0 4px rgba(93,114,128,.16); }
.act.is-seasonal { background: var(--bg-alt); box-shadow: none; }
.act.is-seasonal::before { background: var(--border-strong); }
.act.is-seasonal .act__name { color: var(--ink-mid); }
.act.is-seasonal .act__badge, .act.is-seasonal .act__detail { color: var(--ink-soft); }

/* ===== Traffic-light status colours (admin "Status colours" = green open / red closed) =====
   Applied when <body> has .status-traffic; otherwise everything stays brand blue. */
body.status-traffic .act.is-open::before { background: var(--ok); }
body.status-traffic .act.is-open .act__badge { color: var(--ok); }
body.status-traffic .act.is-open .act__badge .dot { background: var(--ok); box-shadow: 0 0 0 4px rgba(63,164,91,.16); }
body.status-traffic .act.is-closed::before { background: var(--bad); }
body.status-traffic .act.is-closed .act__badge { color: var(--bad); }
body.status-traffic .act.is-closed .act__badge .dot { background: var(--bad); box-shadow: 0 0 0 4px rgba(200,70,59,.16); }
body.status-traffic .fac.is-open::before { background: var(--ok); }
body.status-traffic .fac.is-open .fac-pill { background: rgba(63,164,91,.12); color: var(--ok); }
body.status-traffic .fac.is-open .fac-pill .dot { background: var(--ok); box-shadow: 0 0 0 3px rgba(63,164,91,.22); }
body.status-traffic .fac.is-open .fac__today { color: var(--ok); }
body.status-traffic .fac.is-closed::before { background: var(--bad); }
body.status-traffic .fac.is-closed .fac-pill { background: rgba(200,70,59,.12); color: var(--bad); }
body.status-traffic .fac.is-closed .fac-pill .dot { background: var(--bad); }
body.status-traffic .fac.is-closed .fac__today { color: var(--bad); }
body.status-traffic .status-headline.is-open { background: rgba(63,164,91,.12); color: var(--ok); }
body.status-traffic .status-headline.is-open .dot { background: var(--ok); box-shadow: 0 0 0 4px rgba(63,164,91,.2); }
body.status-traffic .status-headline.is-closed { background: rgba(200,70,59,.1); color: var(--bad); }
body.status-traffic .status-headline.is-closed .dot { background: var(--bad); box-shadow: 0 0 0 4px rgba(200,70,59,.18); }
body.status-traffic .hero__badge.is-open .dot { background: var(--ok); box-shadow: 0 0 0 4px rgba(63,164,91,.3); }
body.status-traffic .hero__badge.is-closed .dot { background: var(--bad); box-shadow: 0 0 0 4px rgba(200,70,59,.3); }
.status-foot { text-align: center; margin: clamp(22px, 3vw, 30px) auto 0; max-width: 660px; color: var(--ink-soft); font-size: 0.9rem; line-height: 1.55; text-wrap: balance; }

/* Park updates: the office noticeboard of current happenings */
.pu-list { display: grid; gap: 12px; max-width: 720px; margin-inline: auto; }
.pu { position: relative; overflow: hidden; display: flex; align-items: flex-start; gap: 14px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); box-shadow: var(--shadow-sm); padding: clamp(14px, 1.8vw, 18px) clamp(16px, 1.8vw, 20px); padding-left: calc(clamp(16px, 1.8vw, 20px) + 6px); }
.pu::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 6px; background: var(--border-strong); }
.pu__dot { flex: none; width: 11px; height: 11px; margin-top: 5px; border-radius: 50%; background: var(--ink-soft); }
.pu__body { min-width: 0; }
.pu__text { margin: 0; color: var(--ink); font-size: 0.98rem; line-height: 1.55; }
.pu__date { display: block; margin-top: 6px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.02em; color: var(--ink-soft); }
.pu.is-update::before { background: var(--blue-600); } .pu.is-update .pu__dot { background: var(--blue-600); box-shadow: 0 0 0 4px rgba(30,123,184,.16); }
.pu.is-alert::before { background: var(--warn); } .pu.is-alert .pu__dot { background: var(--warn); box-shadow: 0 0 0 4px rgba(201,116,43,.18); }
.pu.is-resolved::before { background: var(--ink-soft); } .pu.is-resolved .pu__dot { background: var(--ink-soft); box-shadow: 0 0 0 4px rgba(93,114,128,.16); }
.status-foot .nowrap, .nowrap { white-space: nowrap; }

/* ===== Home layout toggle (community vs info-first) ===== */
[data-home="info"] { display: none; }
body.home-info [data-home="info"] { display: block; }
body.home-info [data-home="community"] { display: none; }
/* "No drone footage" mode: hide the hero and pad the top so the fixed header
   doesn't overlap the first section (the hero normally reserves that space). */
body.home-no-hero .hero { display: none; }
body.home-no-hero #main { padding-top: var(--nav-h); }
/* Info layout: tighten the vertical rhythm so hours + amenities fit on the landing screen */
body.home-info #status-dash { padding-top: clamp(36px, 5vw, 72px); padding-bottom: clamp(30px, 4vw, 56px); }
body.home-info #status-dash .section-head { margin-bottom: clamp(12px, 1.6vw, 18px); }
body.home-info #status-dash .section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }

/* Live "is it open" headline pill (hero badge handles the dark-hero version) */
.status-headline { display: inline-flex; align-items: center; gap: 9px; padding: 9px 18px; border-radius: var(--r-pill); font-weight: 700; font-size: clamp(0.95rem, 1.4vw, 1.08rem); }
.status-headline .dot { width: 10px; height: 10px; border-radius: 50%; flex: none; }
.status-headline.is-open { background: rgba(30,123,184,.12); color: var(--blue-700); }
.status-headline.is-open .dot { background: var(--blue-600); box-shadow: 0 0 0 4px rgba(30,123,184,.2); }
.status-headline.is-closed { background: rgba(93,114,128,.1); color: var(--ink-soft); }
.status-headline.is-closed .dot { background: var(--ink-soft); box-shadow: 0 0 0 4px rgba(93,114,128,.18); }
.hero__badge.is-closed .dot { background: #c3d0dc; box-shadow: 0 0 0 4px rgba(195,208,220,.3); }

/* Info dashboard: hours on the left, amenities on the right, in one block */
.status-dash { display: grid; gap: clamp(22px, 3vw, 40px); align-items: start; }
@media (min-width: 980px) { .status-dash { grid-template-columns: minmax(330px, 430px) 1fr; } }
.status-dash__title { font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
/* stack the three hours cards down the narrow left column */
.status-dash .hours-grid--3 { grid-template-columns: 1fr; max-width: none; gap: 12px; }
.status-dash .hours-grid--3 .fac:last-child:nth-child(odd) { grid-column: auto; width: auto; justify-self: stretch; }
/* Denser hours cards in the dashboard so the left column stays tight */
.status-dash .fac { padding: clamp(13px, 1.5vw, 17px) clamp(15px, 1.6vw, 19px); }
.status-dash .fac::before { height: 4px; }
.status-dash .fac__name { font-size: 1.08rem; }
.status-dash .fac .hours-list { margin-top: 9px; }
.status-dash .fac .hours-row { padding: 6px 2px; font-size: 0.9rem; }
.status-dash .fac .hours-note { display: none; }
/* left-align the amenities meta/note inside the dashboard column */
.status-dash .status-meta { justify-content: flex-start; text-align: left; margin-bottom: 14px; }
.status-dash .status-foot { text-align: left; margin-inline: 0; }
.status-dash .status-board { grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 10px; }
.status-dash .act { padding: clamp(12px, 1.4vw, 15px) clamp(13px, 1.5vw, 16px); gap: 6px; }
.status-dash .act__detail { font-size: 0.85rem; line-height: 1.45; }
.status-dash__title { margin-bottom: 10px; }

/* Discreet staff entrance: the footer copyright year links to the admin panel */
.footer-secret { color: inherit; text-decoration: none; cursor: default; }
.footer-secret:hover { color: inherit; }

/* compact stat strip (understated, not a hero block) */
.statbar-section { padding-block: clamp(22px, 3.5vw, 34px); border-bottom: 1px solid var(--border); }
.statbar { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px clamp(20px, 5vw, 56px); }
.statbar__item { display: inline-flex; align-items: baseline; gap: 8px; }
.statbar__item b { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: var(--blue-700); line-height: 1; letter-spacing: -0.01em; }
.statbar__item span { font-size: 0.9rem; font-weight: 500; color: var(--ink-soft); }
@media (min-width: 640px) {
  .statbar__item:not(:last-child) { padding-right: clamp(20px, 5vw, 56px); border-right: 1px solid var(--border); }
}
/* Inline variant: the stats render as a footer row inside a content block
   (Discover your CSRA "Our community" section) rather than their own band.
   Tighter gaps than the standalone band so all four stats fit one line at 820px. */
.statbar--inline { margin-top: clamp(26px, 4vw, 36px); padding-top: clamp(22px, 3vw, 30px); border-top: 1px solid var(--border); gap: 12px clamp(16px, 2.2vw, 26px); }
@media (min-width: 640px) {
  .statbar--inline .statbar__item:not(:last-child) { padding-right: clamp(16px, 2.2vw, 26px); }
}

/* badges / pills */
.pill { display: inline-block; padding: 4px 10px; border-radius: var(--r-sm); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; background: var(--blue-50); color: var(--blue-700); border: 1px solid var(--blue-100); }
.pill--notice, .pill--seasonal, .pill--community, .pill--family, .pill--maintenance, .pill--event,
.pill--rules, .pill--form, .pill--fees, .pill--careers { background: var(--blue-100); color: var(--blue-800); }

/* ---------- split / feature ---------- */
.split { display: grid; gap: clamp(28px, 5vw, 60px); align-items: center; }
.split--top { align-items: start; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--media-right .split__media { order: 2; } }
.split__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; background: var(--blue-100); border: 1px solid var(--border); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { margin-bottom: 16px; }
.check { margin-top: 20px; display: grid; gap: 12px; }
.check li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-mid); }
.check li svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--blue-600); margin-top: 2px; }

/* event rows */
.event { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; padding: 20px 0; border-top: 1px solid var(--border); }
.event:last-child { border-bottom: 1px solid var(--border); }
.event__date { text-align: center; background: var(--blue-50); color: var(--blue-700); border: 1px solid var(--blue-100); border-radius: var(--r-md); padding: 10px 14px; min-width: 64px; }
.event__date b { display: block; font-size: 1.5rem; font-family: var(--font-head); font-weight: 700; line-height: 1; }
.event__date span { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.event__body h3 { font-size: 1.16rem; margin-bottom: 4px; }
.event__body .meta { color: var(--ink-soft); font-size: 0.88rem; font-weight: 500; margin-bottom: 6px; display: flex; flex-wrap: wrap; gap: 4px 14px; }
.event__body p { color: var(--ink-mid); }

/* ---------- accordion ---------- */
/* Stop the browser from scroll-anchoring (which yanks an opening panel up off-screen) */
body[data-page="lakerules"] { overflow-anchor: none; }
.acc { border: 1px solid var(--border); border-radius: var(--r-md); background: var(--white); margin-bottom: 12px; overflow: hidden; scroll-margin-top: calc(var(--nav-h) + 12px); }
.acc__q { width: 100%; text-align: left; padding: 18px 22px; font-family: var(--font-head); font-weight: 600; font-size: 1.04rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.acc__q .plus { flex: 0 0 auto; width: 24px; height: 24px; position: relative; }
.acc__q .plus::before, .acc__q .plus::after { content: ""; position: absolute; inset: 0; margin: auto; background: var(--blue-700); border-radius: 2px; }
.acc__q .plus::before { width: 13px; height: 2.5px; }
.acc__q .plus::after { width: 2.5px; height: 13px; transition: transform .25s ease; }
.acc.open .plus::after { transform: rotate(90deg); }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc__a > div { padding: 0 22px 20px; color: var(--ink-mid); }
.acc__a ul { display: grid; gap: 8px; }
.acc__a li { display: flex; gap: 10px; align-items: flex-start; }
.acc__a li::before { content: ""; flex: 0 0 auto; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-400); margin-top: 9px; }

/* ---------- forms ---------- */
.form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-weight: 600; font-size: 0.9rem; }
.field input, .field select, .field textarea {
  font: inherit; padding: 13px 15px; border-radius: var(--r-md);
  border: 1.5px solid var(--border-strong); background: var(--white); color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(38,133,208,.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-hint { font-size: 0.82rem; color: var(--ink-soft); font-weight: 500; margin: -2px 0 6px; }
/* one box, auto-numbered name lines (the guest list) */
.namebox { display: flex; align-items: stretch; border: 1.5px solid var(--border-strong); border-radius: var(--r-md); background: var(--white); overflow: hidden; transition: border-color .15s ease, box-shadow .15s ease; }
.namebox:focus-within { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(38,133,208,.18); }
.namebox__nums { flex: 0 0 auto; width: 46px; padding: 14px 0; text-align: center; background: var(--blue-50); color: var(--blue-700); font: inherit; font-weight: 600; line-height: 1.7; white-space: pre; user-select: none; overflow: hidden; border-right: 1px solid var(--blue-100); }
.namebox textarea { border: 0; border-radius: 0; min-height: 170px; line-height: 1.7; padding: 14px 14px; flex: 1 1 auto; resize: vertical; }
.namebox textarea:focus { box-shadow: none; }
/* segmented button selector (radio styled as buttons) */
.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.seg__opt { cursor: pointer; }
.seg__opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.seg__opt > span { display: flex; flex-direction: column; gap: 2px; padding: 12px 16px; border: 1.5px solid var(--border-strong); border-radius: var(--r-md); background: var(--white); font-weight: 600; transition: border-color .15s ease, background .15s ease, color .15s ease; }
.seg__opt > span small { font-weight: 500; font-size: 0.78rem; color: var(--ink-soft); }
.seg__opt:hover > span { border-color: var(--blue-400); }
.seg__opt input:checked + span { border-color: var(--blue-600); background: var(--blue-50); color: var(--blue-800); }
.seg__opt input:checked + span small { color: var(--blue-700); }
.seg__opt input:focus-visible + span { outline: 3px solid var(--blue-500); outline-offset: 2px; }
.form-row { display: grid; gap: 16px; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field--check { display: flex; gap: 12px; align-items: flex-start; }
.field--check input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  flex: 0 0 auto; width: 22px; height: 22px; margin: 1px 0 0; padding: 0;
  border: 1.5px solid var(--border-strong); border-radius: var(--r-sm);
  background: var(--white); cursor: pointer; position: relative;
  transition: background .15s ease, border-color .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.field--check input[type="checkbox"]:hover { border-color: var(--blue-500); }
.field--check input[type="checkbox"]:checked { background: var(--blue-600); border-color: var(--blue-600); }
.field--check input[type="checkbox"]:checked::after {
  content: ""; position: absolute; left: 7px; top: 3px;
  width: 5px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.field--check input[type="checkbox"]:focus { outline: none; }
.field--check input[type="checkbox"]:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 2px; }
.field--check label { font-weight: 500; font-size: 0.9rem; color: var(--ink-mid); line-height: 1.5; cursor: pointer; }
.form-note { font-size: 0.85rem; color: var(--ink-soft); }
.form-success { background: var(--blue-50); border: 1px solid var(--blue-200); color: var(--blue-800); padding: 18px 20px; border-radius: var(--r-md); font-weight: 500; }

/* contact quick links (email / phone) */
.contact-quick { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.quick { display: inline-flex; align-items: center; gap: 13px; padding: 14px 22px; border: 1px solid var(--border); border-radius: var(--r-md); background: var(--white); box-shadow: var(--shadow-sm); transition: border-color .15s ease, box-shadow .2s ease, transform .15s ease; }
.quick:hover { border-color: var(--blue-200); box-shadow: var(--shadow); transform: translateY(-2px); }
.quick__ico { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%; background: var(--blue-50); border: 1px solid var(--blue-100); color: var(--blue-700); display: grid; place-items: center; }
.quick__ico svg { width: 20px; height: 20px; }
.quick__txt { display: flex; flex-direction: column; line-height: 1.35; font-weight: 600; color: var(--ink); }
.quick__txt b { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--ink-soft); font-weight: 700; }

/* contact info list */
.info-row { display: flex; gap: 15px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--border); }
.info-row:last-child { border-bottom: none; }
.info-row .ico-box { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 13px; background: linear-gradient(180deg, var(--blue-100), var(--blue-50)); border: 1px solid var(--blue-200); color: var(--blue-700); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.info-row .ico-box svg { width: 22px; height: 22px; }
.info-row b { display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--blue-700); margin-bottom: 3px; }
.info-row span, .info-row a { font-size: 1.05rem; font-weight: 600; line-height: 1.4; color: var(--heading); }
.info-row a { text-decoration: none; transition: color .15s ease; }
.info-row a:hover { color: var(--blue-700); text-decoration: underline; text-underline-offset: 2px; }

/* contact page: details + form side by side */
.contact-grid { display: grid; gap: clamp(22px, 4vw, 40px); align-items: start; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 0.85fr 1.15fr; } }
.contact-info .card { height: 100%; }
.info-list { margin-top: 12px; }
.info-list .info-row:first-child { padding-top: 0; }
.info-list .info-row:last-child { padding-bottom: 0; }

/* ---------- banners / cta ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--blue-800); color: #fff; border-radius: var(--r-lg); padding: clamp(32px, 6vw, 56px); }
.cta-band::after { content: ""; position: absolute; right: -80px; top: -80px; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,.05); }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.6vw, 2.2rem); margin-bottom: 12px; position: relative; }
.cta-band p { max-width: 54ch; color: rgba(255,255,255,.9); margin-bottom: 24px; position: relative; }
.cta-band .hero__actions { margin-top: 0; }

/* job opportunities card (wide, compact rectangle) */
.jobs-card { display: flex; align-items: center; gap: clamp(18px, 3vw, 32px); background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); padding: clamp(22px, 3vw, 36px) clamp(26px, 4vw, 44px); max-width: 960px; margin-inline: auto; }
.jobs-card__icon { flex: 0 0 auto; width: 58px; height: 58px; border-radius: 50%; background: var(--blue-50); border: 1px solid var(--blue-100); color: var(--blue-700); display: grid; place-items: center; }
.jobs-card__icon svg { width: 28px; height: 28px; }
.jobs-card__content h2 { font-size: 1.7rem; margin-bottom: 6px; }
.jobs-card__content p { color: var(--ink-mid); max-width: 70ch; }
@media (max-width: 600px) { .jobs-card { flex-direction: column; text-align: center; } }

.callout { background: var(--blue-50); border-radius: var(--r-md); padding: clamp(20px,3vw,28px); border: 1px solid var(--blue-100); }
.callout h3 { color: var(--blue-800); margin-bottom: 6px; }

/* ---------- two associations explainer (CSRA vs CSCA) ---------- */
.assoc-cmp { max-width: 860px; margin-inline: auto; }
.assoc-cmp__title { text-align: center; font-family: var(--font-head); font-weight: 700; font-size: clamp(1.3rem, 2.2vw, 1.6rem); color: var(--heading); margin-bottom: 18px; }
.assoc-cmp__grid { display: grid; gap: 14px; }
@media (min-width: 720px) { .assoc-cmp__grid { grid-template-columns: 1fr 1fr; } }
.assoc-cmp__col { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 18px 20px; box-shadow: var(--shadow-sm); }
.assoc-cmp__col--us { background: linear-gradient(180deg, var(--blue-100), var(--blue-50)); border-color: var(--blue-200); }
.assoc-cmp__name { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; }
.assoc-cmp__acr { font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.06em; color: var(--blue-700); background: var(--blue-100); border: 1px solid var(--blue-200); border-radius: var(--r-sm); padding: 3px 8px; }
.assoc-cmp__tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: #fff; background: var(--blue-700); border-radius: var(--r-pill); padding: 3px 9px; }
.assoc-cmp__col h3 { font-size: 0.98rem; color: var(--heading); line-height: 1.3; margin-bottom: 6px; }
.assoc-cmp__col p { color: var(--ink-mid); font-size: 0.88rem; line-height: 1.55; }
.assoc-cmp__col a { color: var(--blue-700); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; }
.assoc-cmp__col a:hover { color: var(--blue-800); }

/* page hero (interior pages) */
.page-hero { background: linear-gradient(165deg, var(--blue-900), var(--blue-700) 78%); color: #fff; padding-block: clamp(46px, 7vw, 84px); position: relative; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.08); }
.page-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 92% 6%, rgba(182,214,238,.16), transparent 60%); }
.page-hero .eyebrow { color: var(--blue-100); }
.page-hero h1 { position: relative; color: #fff; }
.page-hero p { margin-top: 14px; max-width: 60ch; color: rgba(255,255,255,.9); position: relative; font-size: 1.08rem; }

/* tabs */
.tabs { display: inline-flex; gap: 4px; padding: 4px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--r-md); margin-bottom: 28px; }
.tabs button { padding: 9px 20px; border-radius: var(--r-sm); font-weight: 600; color: var(--ink-mid); }
.tabs button.active { background: var(--white); color: var(--blue-700); box-shadow: var(--shadow-sm); }
.tabpane { display: none; }
.tabpane.active { display: grid; }

/* gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); gap: 16px; }
.gallery-grid figure { position: relative; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4/3; background: var(--blue-100); border: 1px solid var(--border); cursor: pointer; }
.gallery-grid figure:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 2px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 14px 12px; color: #fff; font-weight: 600; font-size: 0.9rem; background: linear-gradient(transparent, rgba(8,34,51,.7)); }
.gallery-video__play { position: absolute; inset: 0; margin: auto; width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; box-shadow: var(--shadow-md); pointer-events: none; transition: transform .3s ease; }
.gallery-video__play::before { content: ""; width: 0; height: 0; border-style: solid; border-width: 10px 0 10px 17px; border-color: transparent transparent transparent var(--blue-700); margin-left: 4px; }
.gallery-grid figure.gallery-video:hover .gallery-video__play { transform: scale(1.08); }

/* lightbox (click a gallery photo to view it larger) */
.lightbox { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: clamp(16px, 4vw, 52px); background: rgba(8, 34, 51, .84); }
.lightbox[hidden] { display: none; }
.lightbox__fig { margin: 0; max-width: min(1100px, 100%); max-height: 100%; display: flex; flex-direction: column; align-items: center; }
.lightbox__fig img { max-width: 100%; max-height: 82vh; width: auto; height: auto; border-radius: var(--r-md); box-shadow: var(--shadow); object-fit: contain; }
.lightbox__fig video { max-width: 100%; max-height: 82vh; width: auto; height: auto; border-radius: var(--r-md); box-shadow: var(--shadow); background: #000; }
.lightbox__fig figcaption { color: #fff; text-align: center; font-weight: 600; margin-top: 14px; }
.lightbox__close { position: absolute; top: 16px; right: 20px; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .15); color: #fff; font-size: 1.7rem; line-height: 1; cursor: pointer; transition: background .15s ease; }
.lightbox__close:hover { background: rgba(255, 255, 255, .3); }

/* ---------- footer ---------- */
.site-footer { background: var(--blue-900); color: rgba(234,244,252,.82); padding-block: clamp(46px, 7vw, 76px) 26px; }
.footer-grid { display: grid; gap: 36px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.site-footer .brand .brand-txt b { color: #fff; }
.site-footer .brand__logo { width: 84px; height: 84px; background: none; border: none; }
.site-footer .brand__logo img { filter: brightness(0) invert(1); }
.site-footer .brand .brand-txt span { color: rgba(234,244,252,.6); }
.footer-about p { margin-top: 16px; max-width: 40ch; color: rgba(234,244,252,.66); font-size: 0.95rem; }
.footer-col h4 { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(234,244,252,.5); margin-bottom: 14px; }
.footer-col a { display: block; padding: 6px 0; color: rgba(234,244,252,.82); font-weight: 500; }
.footer-col a:hover { color: var(--blue-200); }
.footer-bottom { margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 0.85rem; color: rgba(234,244,252,.5); }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 40px; height: 40px; border-radius: var(--r-sm); background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; }
.social-links a:hover { background: var(--blue-600); }
.social-links svg { width: 20px; height: 20px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ---------- entrance & polish animations ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
/* home hero content rises in on load */
.hero__eyebrow, .hero h1, .hero p, .hero .hero__actions { animation: rise .8s cubic-bezier(.2,.6,.2,1) both; }
.hero h1 { animation-delay: .07s; }
.hero p { animation-delay: .15s; }
.hero .hero__actions { animation-delay: .23s; }
/* interior page headers rise in on load */
.page-hero .eyebrow, .page-hero h1, .page-hero p { animation: rise .7s cubic-bezier(.2,.6,.2,1) both; }
.page-hero h1 { animation-delay: .06s; }
.page-hero p { animation-delay: .12s; }
/* lightbox opens with a soft fade + zoom */
.lightbox { animation: lbFade .22s ease both; }
.lightbox .lightbox__fig { animation: lbZoom .28s cubic-bezier(.2,.6,.2,1) both; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes lbZoom { from { opacity: 0; transform: scale(.95); } to { opacity: 1; transform: none; } }
/* footer link nudge on hover */
.footer-col a { transition: color .15s ease, transform .15s ease; }
.footer-col a:hover { color: #fff; transform: translateX(3px); }
/* gentle lift on solid buttons for consistency with the hero buttons */
.btn { transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .2s ease, transform .18s ease; }
.btn--primary:hover, .btn--secondary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -12px rgba(15,78,116,.55); }
.btn--primary:active, .btn--secondary:active { transform: translateY(0); transition-duration: .08s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__fallback { animation: none; }
  .hero__media video { transition: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ---------- misc ---------- */
.bg-bg { background: var(--bg); }
.bg-white { background: var(--white); }
.bg-alt { background: var(--bg-alt); }
.divider { height: 1px; background: var(--border); border: none; }
.skip-link { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--blue-700); color: #fff; padding: 10px 16px; border-radius: var(--r-lg); }
.skip-link:focus { left: 8px; }
.noscript-banner { background: var(--blue-700); color: #fff; text-align: center; padding: 10px; font-weight: 600; }
.notice-banner { position: fixed; top: 0; left: 0; right: 0; z-index: 70; background: var(--blue-800); color: #fff; text-align: center; padding: 10px 16px; font-weight: 600; font-size: 0.92rem; }
/* When a notice is showing, drop the header + content below it by the banner's height. */
body.has-notice .site-header, body.has-notice #site-header:empty { top: var(--notice-h, 0px); }
body.has-notice:not([data-page="home"]) { padding-top: calc(var(--nav-h) + var(--notice-h, 0px)); }
body.has-notice[data-page="home"] { padding-top: var(--notice-h, 0px); }
body.has-notice .mobile-menu { top: calc(var(--nav-h) + var(--notice-h, 0px)); }
body.has-notice .site-header.scrolled .mobile-menu { top: calc(76px + var(--notice-h, 0px)); }
.prose p { color: var(--ink-mid); margin-bottom: 16px; font-size: 1.05rem; }
.prose p:last-child { margin-bottom: 0; }

/* ---------- lake weather widget (home) ---------- */
/* A full-width horizontal banner that sits above the Hours | Amenities grid in
   the #status-dash block: icon + temperature + condition on the left, the
   wind/high/low stats in the middle, the location + forecast link on the right,
   and the safety note on its own full-width line below. */
.wx-loading { text-align: center; color: var(--ink-soft); font-weight: 600; padding: 14px 0; }
.wx { position: relative; overflow: hidden; display: flex; flex-wrap: wrap; align-items: center; gap: 14px clamp(18px, 3vw, 34px); margin-bottom: clamp(22px, 3vw, 38px); background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); box-shadow: var(--shadow-sm); padding: clamp(15px, 1.8vw, 20px) clamp(18px, 2.2vw, 26px); }
.wx::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--blue-600); }
.wx__main { display: flex; align-items: center; gap: clamp(10px, 1.6vw, 16px); }
.wx-ico { width: clamp(42px, 7vw, 52px); height: clamp(42px, 7vw, 52px); color: var(--blue-600); flex: none; }
.wx__temp { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.1rem, 6vw, 2.7rem); line-height: 1; color: var(--heading); }
.wx__cond { line-height: 1.3; }
.wx__cond b { font-weight: 600; color: var(--ink-mid); }
.wx__cond small { display: block; font-weight: 500; color: var(--ink-soft); }
.wx__stats { display: flex; flex-wrap: wrap; gap: 8px clamp(16px, 2.2vw, 24px); }
.wx__stat { display: inline-flex; align-items: center; gap: 8px; font-size: 0.98rem; font-weight: 700; color: var(--ink); }
.wx__stat svg { width: 18px; height: 18px; color: var(--blue-700); }
.wx__stat span { font-weight: 500; font-size: 0.85rem; color: var(--ink-soft); }
.wx__side { margin-left: auto; display: flex; flex-direction: column; align-items: flex-end; gap: 3px; text-align: right; }
.wx__eyebrow { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue-700); }
.wx__loc { display: inline-flex; align-items: center; gap: 5px; font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }
.wx__loc svg { width: 15px; height: 15px; color: var(--blue-700); }
.wx__link { display: inline-flex; align-items: center; gap: 5px; margin-top: 2px; font-size: 0.9rem; font-weight: 600; color: var(--blue-700); }
.wx__link svg { width: 16px; height: 16px; }
.wx__link:hover { color: var(--blue-600); }
.wx__note { flex-basis: 100%; margin: 2px 0 0; padding-top: 12px; border-top: 1px solid var(--border); font-size: 0.8rem; line-height: 1.5; color: var(--ink-soft); }
@media (max-width: 560px) {
  .wx__side { margin-left: 0; align-items: flex-start; text-align: left; flex-basis: 100%; }
}

/* Vertical variants: the "below" card, the "hero" overlay and the "amenities"
   column card all stack their parts (reading, then stats, then label/link)
   instead of sitting in a row. */
.wx--card, .wx--hero, .wx--col { flex-direction: column; align-items: stretch; gap: 0; }
.wx--card .wx__stats, .wx--hero .wx__stats, .wx--col .wx__stats { width: 100%; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.wx--card .wx__side, .wx--hero .wx__side, .wx--col .wx__side { margin: 14px 0 0; align-items: flex-start; text-align: left; }
.wx--card { max-width: 560px; margin-inline: auto; }
/* "amenities" card fills its column and sits snug above the status board. */
.wx--col { margin-bottom: clamp(14px, 1.8vw, 18px); }

/* "strip" placement: a thin status ribbon overlaid on the bottom of the drone
   footage. Live lake status on the left, a one-line weather readout on the right.
   Light frosted glass with the site's dark text, to stay on the light theme. */
.home-weather-strip [data-home-status] { display: none; } /* hero badge would duplicate the strip's status */
/* reserve room at the bottom of the hero so the centred copy never sits under the strip */
.hero--has-strip .hero__inner { padding-bottom: clamp(66px, 9vw, 96px); }
.hero__strip {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  background: rgba(255, 255, 255, 0.85); -webkit-backdrop-filter: blur(12px) saturate(1.2); backdrop-filter: blur(12px) saturate(1.2);
  border-top: 1px solid rgba(255, 255, 255, 0.7); box-shadow: 0 -2px 16px rgba(12, 36, 51, 0.1);
}
.wx-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px clamp(16px, 3vw, 30px); padding: clamp(11px, 1.4vw, 15px) 0; }
.wx-strip__status { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 1rem; color: var(--ink); }
.wx-strip__status .dot { width: 9px; height: 9px; border-radius: 50%; flex: none; background: var(--ink-soft); }
/* Default (admin colour mode "blue"): brand-blue open dot, muted when closed. */
.wx-strip__status.is-open .dot { background: var(--blue-600); box-shadow: 0 0 0 4px rgba(30, 123, 184, 0.2); }
.wx-strip__status.is-closed .dot { background: var(--ink-soft); box-shadow: 0 0 0 4px rgba(93, 114, 128, 0.18); }
/* Traffic-light mode (admin colour mode "status"): green open, red closed. */
body.status-traffic .wx-strip__status.is-open .dot { background: var(--ok); box-shadow: 0 0 0 4px rgba(63, 164, 91, 0.2); }
body.status-traffic .wx-strip__status.is-closed .dot { background: var(--bad); box-shadow: 0 0 0 4px rgba(200, 70, 59, 0.18); }
.wx-strip__wx { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 6px clamp(12px, 2vw, 20px); font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.wx-strip__ico svg { width: 24px; height: 24px; color: var(--blue-600); display: block; }
.wx-strip__item { display: inline-flex; align-items: center; gap: 7px; }
.wx-strip__item svg { width: 17px; height: 17px; color: var(--blue-700); }
.wx-strip__temp { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--heading); }
.wx-strip__item .lbl { font-weight: 500; font-size: 0.85rem; color: var(--ink-soft); }
.wx-strip__link { display: inline-flex; align-items: center; gap: 5px; font-weight: 600; color: var(--blue-700); white-space: nowrap; }
.wx-strip__link svg { width: 16px; height: 16px; }
.wx-strip__link:hover { color: var(--blue-600); }
@media (max-width: 620px) {
  .wx-strip { justify-content: flex-start; }
}

/* "hero" placement: a frosted card floating over the drone footage, on the right
   of the hero copy. Text colours are already dark, so they read on the light glass. */
.hero__weather { display: flex; justify-content: flex-end; }
.wx--hero { width: 100%; max-width: 360px; background: rgba(255, 255, 255, 0.92); border-color: rgba(255, 255, 255, 0.6); box-shadow: var(--shadow-lg); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.wx--hero .wx__note { font-size: 0.78rem; }
.hero--has-weather .hero__inner { display: grid; gap: clamp(22px, 4vw, 48px); align-items: center; }
@media (min-width: 900px) {
  .hero--has-weather .hero__inner { grid-template-columns: 1fr minmax(290px, 360px); }
}
@media (max-width: 899px) {
  .hero__weather { justify-content: stretch; }
  .wx--hero { max-width: none; }
}
