html {
  scroll-behavior: smooth;
}
#site-header:empty,
#site-header.include-loading {
  min-height: 5rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
#site-header:empty::after,
#site-header.include-loading::after {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent) 50%, var(--color-primary-dark) 50%, var(--color-primary-dark) 100%);
  background-size: 8px 4px;
  background-repeat: repeat-x;
}
#site-footer:empty {
  visibility: hidden;
  min-height: 4rem;
}

:root {
  --color-primary: #0a71dc;
  --color-primary-dark: #0057c2;
  --color-primary-light: rgba(10, 113, 220, 0.08);
  --color-primary-light-2: rgba(10, 113, 220, 0.14);
  --color-accent: #de2226;
  --color-accent-light: rgba(222, 34, 38, 0.08);
  --color-accent-light-2: rgba(222, 34, 38, 0.12);
  --color-bg: #f7f5f0;
  --color-bg-hover: #f1efea;
  --color-text: #333333;
  --color-muted: rgba(51, 51, 51, 0.5);
  --color-border: #dddbd6;
  --color-white: #ffffff;
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  --btn-radius: 0.625rem;
  --btn-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(0, 0, 0, 0.06);
  --btn-shadow-hover: 0 4px 14px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.05);
  --color-on-solid: #ffffff;
  --btn-bg-primary: color-mix(in srgb, var(--color-primary) 26%, var(--color-white));
  --btn-bg-primary-hover: color-mix(in srgb, var(--color-primary) 38%, var(--color-white));
  --btn-bg-accent: color-mix(in srgb, var(--color-accent) 24%, var(--color-white));
  --btn-bg-accent-hover: color-mix(in srgb, var(--color-accent) 36%, var(--color-white));
}

html[data-theme="dark"] {
  --color-primary: #1f4f86;
  --color-primary-dark: #163b66;
  --color-primary-light: rgba(31, 79, 134, 0.28);
  --color-primary-light-2: rgba(31, 79, 134, 0.38);
  --color-accent: #a82d32;
  --color-accent-light: rgba(168, 45, 50, 0.22);
  --color-accent-light-2: rgba(168, 45, 50, 0.32);
  --color-bg: #1a1a1c;
  --color-bg-hover: #252528;
  --color-text: #e8e6e3;
  --color-muted: rgba(232, 230, 227, 0.6);
  --color-border: #3d3d42;
  --color-white: #252528;
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.35), 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.25);
  --btn-shadow: 0 1px 2px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.2);
  --btn-shadow-hover: 0 6px 20px rgba(0, 0, 0, 0.35), 0 2px 6px rgba(0, 0, 0, 0.2);
  --btn-bg-primary: color-mix(in srgb, var(--color-primary) 48%, var(--color-white));
  --btn-bg-primary-hover: color-mix(in srgb, var(--color-primary) 58%, var(--color-white));
  --btn-bg-accent: color-mix(in srgb, var(--color-accent) 42%, var(--color-white));
  --btn-bg-accent-hover: color-mix(in srgb, var(--color-accent) 52%, var(--color-white));
  --btn-label-primary: color-mix(in srgb, var(--color-primary) 22%, #ffffff);
  --btn-label-accent: color-mix(in srgb, var(--color-accent) 20%, #ffffff);
}

html[data-theme="dark"] .site-header,
html[data-theme="dark"] .prefooter-strip {
  --color-white: #f5f5f4;
}

@keyframes special-event-bg-rotate-dark {
  0%, 100% { background-color: #6b1f23; }
  50% { background-color: #1f4f86; }
}
html[data-theme="dark"] .special-event-card-bg {
  background-color: #6b1f23;
  animation: special-event-bg-rotate-dark 8s ease-in-out infinite;
}

html[data-theme="dark"] .footer-bar {
  background: var(--color-accent);
}

html[data-theme="dark"] .prefooter-strip.community-strip {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.site-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.site-header::after {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent) 50%, var(--color-primary-dark) 50%, var(--color-primary-dark) 100%);
  background-size: 8px 4px;
  background-repeat: repeat-x;
}

.larks-mobile-menu {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.section-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--color-primary);
}
.section-card-alt {
  border-left-color: var(--color-accent);
}

@keyframes special-event-bg-rotate {
  0%, 100% { background-color: #b91c1f; }
  50% { background-color: #0a71dc; }
}
.special-event-card-bg {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background-color: #b91c1f;
  padding: 2rem 1rem;
  animation: special-event-bg-rotate 8s ease-in-out infinite;
}
.special-event-card {
  border-left: none;
  padding: 2rem 1.75rem;
}
.special-event-card__content h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.special-event-card__content > p {
  font-size: 1.125rem;
  line-height: 1.6;
}
.special-event-card__content > p.font-semibold {
  margin-bottom: 0.75rem;
}
.special-event-card__content > p:last-of-type {
  margin-bottom: 1.25rem;
}
.special-event-card__content .btn-primary {
  font-size: 1.0625rem;
  padding: 0.65rem 1.35rem;
}

.special-event-card__inner {
  text-align: center;
}
.special-event-card__content {
  margin-bottom: 0;
}
.special-event-card__media {
  display: none;
}
.special-event-card--with-photo .special-event-card__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: left;
}
.special-event-card--with-photo .special-event-card__media {
  display: block;
}
.special-event-card__img {
  width: 100%;
  min-height: 200px;
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  object-fit: cover;
}
@media (min-width: 768px) {
  .special-event-card--with-photo .special-event-card__inner {
    grid-template-columns: 1fr  minmax(240px, 52%);
    gap: 2rem;
    align-items: start;
  }
  .special-event-card--with-photo .special-event-card__media {
    order: 2;
  }
}

.section-tint-blue {
  background: var(--color-primary-light);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(10, 113, 220, 0.12);
}
.section-tint-red {
  background: var(--color-accent-light);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(222, 34, 38, 0.15);
}

.youtube-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 767px) {
  .youtube-section__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.youtube-section__content {
  min-width: 0;
}
.youtube-section__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 0.5rem 0;
  line-height: 1.25;
}
.youtube-section__subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 1rem 0;
  line-height: 1.35;
}
.youtube-section__text {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.55;
  margin: 0 0 1.25rem 0;
}
.youtube-section__subscribe {
  margin-bottom: 1.25rem;
}
.youtube-section__subscribe-label {
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0 0 0.5rem 0;
  color: var(--color-text);
}
.youtube-section__subscribe-iframe {
  display: block;
  border: none;
}
.youtube-section__cta {
  margin-top: 0;
}
.home-youtube-card__title {
  color: #eaf3ff;
}
html[data-theme="dark"] .home-youtube-card__title {
  color: #111827;
}
html[data-theme="dark"] .home-youtube-card__subheader {
  color: #fff;
  opacity: 1;
}
.youtube-section__embed {
  min-width: 0;
  position: sticky;
  top: 1rem;
}
@media (max-width: 767px) {
  .youtube-section__embed {
    position: static;
  }
}
.youtube-section__video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-card);
}
.youtube-section__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.section-hero {
  background: linear-gradient(180deg, var(--color-primary-light) 0%, transparent 100%);
  border-radius: 12px;
  padding: 1.5rem 1.5rem 2rem;
  margin-bottom: 2rem;
}
.section-blue-block {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  border-radius: 12px;
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-card);
}
.section-blue-block .section-stripe {
  height: 3px;
  background: var(--color-accent);
  margin: 0 -1.5rem 1rem -1.5rem;
  border-radius: 0 0 12px 12px;
}

.section-stripes {
  background: repeating-linear-gradient(
    -45deg,
    var(--color-white),
    var(--color-white) 6px,
    var(--color-primary-light) 6px,
    var(--color-primary-light) 12px
  );
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(10, 113, 220, 0.1);
}

.sponsors-section {
  background: var(--color-white);
}
.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.sponsor-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.1rem;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25;
  text-decoration: none;
  border-radius: var(--btn-radius);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.15s ease;
}
.sponsor-btn:hover {
  border-color: var(--color-primary);
  background: var(--btn-bg-primary);
  color: var(--color-primary-dark);
  box-shadow: var(--btn-shadow);
  transform: translateY(-1px);
}
.sponsor-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
html[data-theme="dark"] .sponsor-btn:hover {
  color: var(--btn-label-primary);
}

.data-hint {
  margin: 0.75rem 0 0 0;
  font-size: 0.75rem;
  color: var(--color-muted);
  opacity: 0.85;
  font-weight: 400;
}

.sheet-data-alert {
  border-radius: 10px;
  border: 1px solid var(--color-border);
  border-left-width: 4px;
  border-left-color: var(--color-primary);
  background: var(--color-white);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-card);
}

.game-card {
  background: var(--color-white);
  border-radius: 10px;
  border: 2px solid var(--color-border);
  border-top: 4px solid var(--color-primary);
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.game-card:hover {
  border-left-color: var(--color-accent);
  border-right-color: var(--color-accent);
  border-bottom-color: var(--color-accent);
  border-top-color: var(--color-primary);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.btn-primary,
.btn-accent,
.btn-outline.btn-outline--cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--btn-radius);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.25;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  box-shadow: var(--btn-shadow);
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.15s ease;
}

.btn-primary,
.btn-outline.btn-outline--cta {
  border-color: var(--color-primary);
  background: var(--btn-bg-primary);
  color: var(--color-primary-dark);
}
.btn-primary:hover,
.btn-outline.btn-outline--cta:hover {
  background: var(--btn-bg-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--btn-shadow-hover);
}
.btn-primary:active,
.btn-outline.btn-outline--cta:active {
  transform: translateY(0);
  box-shadow: var(--btn-shadow);
}

.btn-accent {
  border-color: var(--color-accent);
  background: var(--btn-bg-accent);
  color: var(--color-accent);
}
.btn-accent:hover {
  background: var(--btn-bg-accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--btn-shadow-hover);
}
.btn-accent:active {
  transform: translateY(0);
  box-shadow: var(--btn-shadow);
}

.btn-primary:focus-visible,
.btn-accent:focus-visible,
.btn-outline.btn-outline--cta:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.btn-accent:focus-visible {
  outline-color: var(--color-accent);
}

.btn-lg {
  padding: 0.875rem 1.5rem;
  font-size: 1.125rem;
  border-radius: 0.75rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
  border-radius: var(--btn-radius);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.15s ease;
}
.btn-outline:hover {
  border-color: var(--color-primary);
  background: var(--btn-bg-primary);
  color: var(--color-primary-dark);
  box-shadow: var(--btn-shadow);
}
.btn-outline:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

html[data-theme="dark"] .btn-primary,
html[data-theme="dark"] .btn-outline.btn-outline--cta,
html[data-theme="dark"] .btn-outline:hover {
  color: var(--btn-label-primary);
}
html[data-theme="dark"] .btn-primary:hover,
html[data-theme="dark"] .btn-outline.btn-outline--cta:hover {
  color: var(--btn-label-primary);
}
html[data-theme="dark"] .btn-accent,
html[data-theme="dark"] .btn-accent:hover {
  color: var(--btn-label-accent);
}

.header-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: var(--btn-radius);
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: background 0.18s ease, transform 0.15s ease, border-color 0.18s ease;
}
.header-icon-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.28);
}
.header-icon-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 2px;
}
.header-icon-btn:active {
  transform: scale(0.97);
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.15s ease;
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.btn-glass:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 2px;
}

.donation-buttons .btn-primary,
.donation-buttons .btn-accent {
  width: 100%;
}

.site-footer {
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg-hover) 100%);
  border-top: 4px solid var(--color-primary);
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.04);
}

.footer-bar {
  background: #c41e3a;
  color: #fff;
  padding: 0.4rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 36px;
}
.footer-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1rem;
  max-width: 56rem;
}
.footer-bar__link {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.95;
  white-space: nowrap;
}
.footer-bar__link:hover {
  text-decoration: underline;
  opacity: 1;
}

.footer-back-to-top {
  display: inline-block;
  color: var(--color-primary);
  font-size: 1.5rem;
  line-height: 1;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  transition: transform 0.2s ease, color 0.2s ease;
}
.footer-back-to-top:hover {
  color: var(--color-primary-dark);
  transform: translateY(-2px);
}

.page-title-strip {
  background: linear-gradient(90deg, var(--color-primary-light-2) 0%, transparent 100%);
  border-left: 4px solid var(--color-primary);
  padding: 0.5rem 1rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.5rem;
}

.page-content-lead {
  color: var(--color-muted);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.records-card__subheader {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.schedule-timezones__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 32rem;
  margin: 0 auto;
}
.schedule-timezones__zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 1.25rem;
  background: var(--color-white);
  border-radius: 10px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.schedule-timezones__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}
.schedule-timezones__clock {
  font-size: 1.5rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--color-primary);
}
@media (max-width: 480px) {
  .schedule-timezones__grid {
    grid-template-columns: 1fr;
  }
}

.community-special-nights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 20rem), 1fr));
  gap: 1.5rem;
}
.community-special-night-card {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}
.community-special-night-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-primary);
}
.community-special-night-card__image-wrap {
  aspect-ratio: 16 / 10;
  background: var(--color-bg);
  overflow: hidden;
}
.community-special-night-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.community-special-night-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.community-special-night-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  line-height: 1.3;
}
.community-special-night-card__date {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-accent);
  margin: 0;
}
.community-special-night-card__description {
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.5;
  flex: 1;
}
.community-special-night-card__link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.15s ease;
}
.community-special-night-card__link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}
.community-board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
  gap: 1rem;
}
.community-board-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--color-primary);
}
.diamond-club-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.diamond-club-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.9rem;
  line-height: 1.3;
  color: var(--color-text);
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}
.diamond-club-card span {
  font-weight: 600;
}
.diamond-club-card small {
  margin-left: 0.35rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}
.community-board-card__name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}
.community-board-card__role {
  font-size: 0.9375rem;
  color: var(--color-primary);
}
.community-strip__eyebrow {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 0.75rem 0;
}
.community-strip__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
  max-width: 56rem;
  margin: 0 auto;
}
.community-strip__col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.community-strip__fine-print {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}
.community-strip__footer-note {
  max-width: 56rem;
  margin: 1.5rem auto 0 auto;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}
.community-strip__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--color-accent);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.community-strip__card--concessions {
  border-left-color: #f0b429;
}
.community-strip__icon {
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--color-accent);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}
.community-strip__card--concessions .community-strip__icon {
  color: #f0b429;
}
.community-strip__title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0 0 0.75rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
}
.community-strip__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}
@media (max-width: 767px) {
  .community-strip__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .community-strip__eyebrow {
    margin-bottom: 1.25rem;
  }
}

.larks-camp {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem !important;
}
.larks-camp__title { margin: 0 0 0.25rem 0; }
.larks-camp__badge {
  display: inline-block;
  width: fit-content;
  justify-self: start;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.larks-camp__subline-text {
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
  color: var(--color-text);
}
.larks-camp__cta {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  justify-self: start;
  margin-top: 0.5rem;
}
.larks-camp__intro-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}
@media (max-width: 767px) {
  .larks-camp__intro-row { grid-template-columns: 1fr; }
}
.larks-camp__intro-text {
  margin: 0 0 1.5rem 0;
}
.larks-camp__photos-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  border-radius: 12px;
  overflow: hidden;
}
.larks-camp__photos-inline img {
  width: 100%;
  aspect-ratio: 10/9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}
.larks-camp__teamwork {
  background: var(--color-primary-light);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(10, 113, 220, 0.12);
  margin: 0;
  font-size: 0.95rem;
}
.larks-camp__types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 767px) {
  .larks-camp__types { grid-template-columns: 1fr; }
}
.larks-camp__type-box {
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: 10px;
  padding: 1rem;
  border-top: 4px solid var(--color-primary);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.1s;
}
.larks-camp__type-box:hover {
  border-left-color: var(--color-accent);
  border-right-color: var(--color-accent);
  border-bottom-color: var(--color-accent);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}
.larks-camp__type-box:nth-child(2) { border-top-color: var(--color-accent); }
.larks-camp__type-box:nth-child(2):hover {
  border-left-color: var(--color-primary);
  border-right-color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}
.larks-camp__type-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.35rem 0;
}
.larks-camp__type-box:nth-child(2) .larks-camp__type-title { color: var(--color-accent); }
.larks-camp__type-tags {
  font-size: 0.7rem;
  color: var(--color-muted);
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.larks-camp__type-desc {
  font-size: 0.875rem;
  color: var(--color-text);
  margin: 0;
  line-height: 1.45;
}
.larks-camp__gallery-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.larks-camp__gallery-row img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow-card);
}

.history-snippets__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: start;
}
@media (max-width: 767px) {
  .history-snippets__grid {
    grid-template-columns: 1fr;
  }
  .history-snippets__grid .history-snippet {
    grid-column: 1 !important;
    transform: none !important;
    margin: 0 !important;
  }
}
.history-snippet:nth-child(1) {
  grid-column: 1 / 3;
  transform: rotate(-1.4deg);
}
.history-snippet:nth-child(2) {
  grid-column: 3 / 5;
  transform: rotate(1.1deg);
  margin-top: 0.75rem;
}
.history-snippet:nth-child(3) {
  grid-column: 2 / 4;
  transform: rotate(0.7deg);
  margin-top: 0.35rem;
}
.history-snippet:nth-child(4) {
  grid-column: 1 / 3;
  transform: rotate(-0.9deg);
  margin-top: 0.6rem;
}
.history-snippet:nth-child(5) {
  grid-column: 3 / 5;
  transform: rotate(1.3deg);
  margin-top: 0.2rem;
}
.history-snippet {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(10, 113, 220, 0.15);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}
.history-snippet:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-card-hover);
}
.history-snippet__img-wrap {
  display: block;
  aspect-ratio: 16/8;
  overflow: hidden;
  background: var(--color-bg);
}
.history-snippet__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.history-snippet__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.65rem 0.75rem;
}
.history-snippet__title {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-primary);
}
.history-snippet__subtitle {
  font-size: 0.7rem;
  color: var(--color-muted);
  letter-spacing: 0.02em;
}
.history-snippet__text {
  font-size: 0.8rem;
  color: var(--color-text);
  line-height: 1.4;
  margin-top: 0.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.history-snippet__link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: 0.35rem;
}
.history-snippet:hover .history-snippet__link {
  text-decoration: underline;
}

.larks-park-intro {
  background: var(--color-white);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--color-primary);
  margin-bottom: 2rem;
}
.larks-park-history-head {
  margin-bottom: 2rem;
}
.larks-park-article {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
}
.larks-park-article:last-of-type {
  border-bottom: none;
}
.larks-park-article__media {
  flex: 1 1 280px;
  min-width: 0;
}
.larks-park-article__media img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  display: block;
}
.larks-park-article__body {
  flex: 1 1 320px;
  min-width: 0;
}
.larks-park-article__body h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.larks-park-article__body p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.larks-park-article__body p:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .larks-park-article--img-right {
    flex-direction: row-reverse;
  }
}
.larks-park-article--no-image .larks-park-article__body {
  flex: 1 1 100%;
}
.larks-park-footer {
  position: relative;
  padding-top: 1.5rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}
.larks-park-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(28rem, 100%);
  border-top: 2px solid var(--color-border);
}
.larks-park-footer p {
  margin-bottom: 0.25rem;
}

.prefooter-strip {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  min-height: 120px;
}
.prefooter-strip__heading,
.prefooter-strip__email,
.prefooter-strip__game-datetime,
.prefooter-strip__game-info,
.prefooter-strip__letsgo,
.prefooter-strip__season-msg {
  color: var(--color-white);
}
.prefooter-strip__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 56rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .prefooter-strip__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    align-items: stretch;
    text-align: center;
  }
}
.prefooter-strip__contact {
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .prefooter-strip__contact {
    padding-right: 0;
  }
}
.prefooter-strip__heading {
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 0 0.35rem 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.9;
}
.prefooter-strip__email {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.95;
}
.prefooter-strip__link {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.prefooter-strip__link:hover {
  opacity: 0.9;
}
.prefooter-strip__game {
  text-align: right;
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}
@media (max-width: 767px) {
  .prefooter-strip__game {
    text-align: center;
    padding-left: 0;
    padding-top: 1.25rem;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }
}
.prefooter-strip__game-info {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  opacity: 0.95;
}
.prefooter-strip__game-datetime {
  margin: 0 0 0.35rem 0;
  font-size: 0.95rem;
  opacity: 0.9;
}
.prefooter-strip__countdown {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0.4rem 0 0.25rem 0;
}
.prefooter-strip__countdown span {
  display: inline-block;
  min-width: 1.75em;
}
.prefooter-strip__letsgo {
  margin: 0.4rem 0 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  opacity: 0.95;
}
.prefooter-strip__season-msg {
  margin: 0.4rem 0 0 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  opacity: 0.95;
}
.prefooter-strip__season-msg-detail {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
  opacity: 0.88;
}
