:root {
  --blue: #0958e8;
  --blue-dark: #063fba;
  --blue-deep: #04256b;
  --green: #1e9b48;
  --yellow: #ffc61e;
  --red: #f13a32;
  --purple: #794ce3;
  --turquoise: #09b8d9;
  --ink: #172033;
  --muted: #5c6472;
  --paper: #fffaf0;
  --line: rgba(7, 39, 93, 0.16);
  --shadow: 0 20px 50px rgba(8, 35, 76, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Keep sticky header from covering anchored sections */
#games,
#first-time,
#schedule,
#june,
#plan,
#find-us,
#faq,
#photos,
#visit,
#top {
  scroll-margin-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 12% 12%, rgba(241, 58, 50, 0.2), transparent 24rem),
    radial-gradient(circle at 86% 20%, rgba(9, 88, 232, 0.18), transparent 25rem),
    radial-gradient(circle at 80% 82%, rgba(255, 198, 30, 0.18), transparent 22rem),
    linear-gradient(180deg, #fffdf8 0%, #fff0d1 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.35rem clamp(1rem, 3vw, 3rem) 1rem;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue-dark) 48%, var(--blue));
  color: #fff;
  box-shadow: 0 12px 28px rgba(3, 27, 67, 0.18);
  overflow: hidden;
  transition: transform 0.28s ease, padding 0.22s ease, box-shadow 0.22s ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

.site-header.is-compact {
  padding-top: 0.75rem;
  padding-bottom: 0.6rem;
  box-shadow: 0 8px 22px rgba(3, 27, 67, 0.28);
}

.site-header.is-compact .brand-logo {
  height: clamp(2.6rem, 4.6vw, 3.4rem);
  transition: height 0.22s ease;
}

.site-header.is-compact .mascot-mark {
  width: 3.2rem;
  height: 3.2rem;
  transition: width 0.22s ease, height 0.22s ease;
}

.brand-logo,
.mascot-mark {
  transition: height 0.22s ease, width 0.22s ease;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.22s ease, opacity 0.18s ease;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Confetti — two drifting dot layers across the full header */
.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  inset: -25% -25%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.site-header::before {
  background:
    radial-gradient(circle at 18% 30%, var(--red)       0 4px, transparent 5px),
    radial-gradient(circle at 65% 70%, var(--yellow)    0 3.5px, transparent 4.5px),
    radial-gradient(circle at 85% 18%, var(--turquoise) 0 4px, transparent 5px),
    radial-gradient(circle at 40% 85%, var(--green)     0 3.5px, transparent 4.5px),
    radial-gradient(circle at 92% 55%, var(--purple)    0 4px, transparent 5px);
  background-size: 220px 160px, 180px 140px, 260px 180px, 200px 150px, 240px 170px;
  background-repeat: repeat;
  opacity: 0.85;
  animation: confetti-drift-a 9.5s ease-in-out infinite;
}

.site-header::after {
  background:
    radial-gradient(circle at 30% 25%, var(--yellow) 0 3px, transparent 4px),
    radial-gradient(circle at 75% 65%, #ffffff       0 3px, transparent 4px),
    radial-gradient(circle at 12% 80%, var(--blue)   0 4px, transparent 5px),
    radial-gradient(circle at 55% 15%, var(--red)    0 3px, transparent 4px),
    radial-gradient(circle at 88% 88%, var(--green)  0 3.5px, transparent 4.5px);
  background-size: 160px 120px, 140px 110px, 280px 200px, 190px 140px, 210px 160px;
  background-repeat: repeat;
  opacity: 0.7;
  animation: confetti-drift-b 13s ease-in-out infinite;
}

@keyframes confetti-drift-a {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(-32px, 11px); }
  100% { transform: translate(0, 0); }
}

@keyframes confetti-drift-b {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(29px, -9px); }
  100% { transform: translate(0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .site-header::before,
  .site-header::after {
    animation: none;
  }
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: auto;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(3.8rem, 6.2vw, 5rem);
  max-width: clamp(8rem, 18vw, 12rem);
  object-fit: contain;
  filter: drop-shadow(0 5px 0 rgba(0, 0, 0, 0.18));
}

.mascot-mark {
  display: block;
  width: 4.6rem;
  height: 4.6rem;
  object-fit: contain;
  filter: drop-shadow(0 5px 0 rgba(0, 0, 0, 0.18));
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.8rem, 2vw, 2rem);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  border-bottom: 2px solid transparent;
  padding-block: 0.4rem;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-color: var(--yellow);
}

.header-cta,
.btn,
.signup button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.55rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.header-cta,
.btn-primary,
.signup button {
  background: var(--yellow);
  color: #101828;
  box-shadow: inset 0 -3px rgba(159, 109, 0, 0.2);
}

.hero {
  position: relative;
  min-height: clamp(560px, 66vw, 760px);
  overflow: hidden;
  background: var(--blue-deep);
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 37, 107, 0.94) 0%, rgba(6, 63, 186, 0.65) 36%, rgba(6, 63, 186, 0.08) 72%),
    linear-gradient(0deg, rgba(4, 37, 107, 0.28), transparent 44%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: min(720px, 68vw);
  padding: clamp(4rem, 9vw, 8rem) clamp(1.2rem, 6vw, 6rem);
  color: #fff;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 10.5ch;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 7.2vw, 6.6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-text {
  max-width: 34rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.btn-light {
  background: #fff;
  color: var(--blue-dark);
}

.btn-green {
  background: var(--green);
  color: #fff;
}

.btn-purple {
  background: var(--purple);
  color: #fff;
}

.love-strip {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 2rem));
  margin: -3rem auto 2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.2rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 2% 18%, var(--red) 0 0.3rem, transparent 0.34rem),
    radial-gradient(circle at 98% 28%, var(--blue) 0 0.32rem, transparent 0.36rem),
    radial-gradient(circle at 4% 82%, var(--yellow) 0 0.32rem, transparent 0.36rem),
    radial-gradient(circle at 96% 78%, #fff 0 0.3rem, transparent 0.34rem),
    rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.love-strip h2 {
  margin-bottom: 1.2rem;
  color: var(--blue-dark);
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.reason-grid,
.dashboard,
.first-time,
.play-options,
.community-story,
.site-footer {
  display: grid;
  gap: 1rem;
}

.reason-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.reason-grid article {
  min-width: 0;
  border-left: 1px solid var(--line);
  padding: 1rem;
  text-align: center;
}

.reason-grid article:first-child {
  border-left: 0;
}

.reason-grid h3,
.panel h2 {
  margin-bottom: 0.35rem;
}

.reason-grid p,
.first-time p,
.panel-note,
.site-footer p {
  color: var(--muted);
  line-height: 1.45;
}

.reason-icon {
  display: block;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 0.8rem;
  object-fit: contain;
}

.reason-icon-wide {
  width: 5.4rem;
}

.dashboard {
  grid-template-columns: minmax(0, 1fr);
  width: min(720px, calc(100% - 2rem));
  margin: 0 auto 2.25rem;
}

.first-time {
  grid-template-columns: 1.1fr 0.9fr;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 2rem;
  align-items: stretch;
}

.first-time-copy,
.play-options {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 18%, var(--yellow) 0 0.3rem, transparent 0.34rem),
    radial-gradient(circle at 96% 64%, var(--red) 0 0.25rem, transparent 0.29rem),
    #fff;
  box-shadow: 0 16px 38px rgba(8, 35, 76, 0.13);
}

.first-time-copy {
  padding: clamp(1.4rem, 3vw, 2.25rem);
}

.first-time-copy h2 {
  max-width: 15ch;
  margin-bottom: 0.8rem;
  color: var(--blue-dark);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.play-options {
  padding: 1rem;
}

.play-options article {
  position: relative;
  border-bottom: 1px solid var(--line);
  min-height: 7rem;
  padding: 1rem 1rem 1rem 6.2rem;
}

.play-options article:last-child {
  border-bottom: 0;
}

.play-options h3 {
  margin-bottom: 0.35rem;
  color: var(--blue-deep);
}

.option-icon {
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 4.15rem;
  height: 4.15rem;
  object-fit: contain;
}

.option-icon-wide {
  left: 0.65rem;
  width: 5.15rem;
}

.option-icon-photo {
  left: 0.55rem;
  width: 5.35rem;
}

.panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(8, 35, 76, 0.16);
}

.panel header {
  padding: 1rem 1.2rem;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue));
  color: #fff;
}

.schedule header {
  background: linear-gradient(90deg, #149642, var(--green));
}

.events header {
  background: linear-gradient(90deg, var(--blue), var(--red));
}

.panel header p {
  margin-bottom: 0.2rem;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.panel > :not(header) {
  margin-inline: 1.2rem;
}

.panel-intro {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.45;
}

.time-list,
.event-list {
  margin-block: 1.2rem;
  padding: 0;
}

.time-list div,
.event-list li {
  display: grid;
  grid-template-columns: 6.4rem 1fr;
  gap: 0.8rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 0;
}

.time-list dt,
.event-list time {
  color: var(--blue-dark);
  font-weight: 900;
}

.time-list dd {
  margin: 0;
}

.event-list {
  list-style: none;
}

.panel .btn {
  width: calc(100% - 2.4rem);
  margin-bottom: 1.2rem;
}

/* June at Four Corners spotlight */
.june-spotlight {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 2.5rem;
}

.june-header {
  margin-bottom: 1.4rem;
}

.june-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
}

.june-header-text {
  text-align: left;
}

.june-header .eyebrow {
  color: var(--blue-dark);
  margin-bottom: 0.35rem;
}

.june-header h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1;
}

.june-sub {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.5;
}

/* Cards/Grid view toggle */
.june-view-toggle {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(8, 35, 76, 0.08);
}

.june-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--blue-deep);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.18s ease, color 0.18s ease;
}

.june-view-btn:hover,
.june-view-btn:focus-visible {
  background: rgba(9, 88, 232, 0.08);
}

.june-view-btn.is-active {
  background: var(--blue-dark);
  color: #fff;
}

.june-view-btn svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

/* View switching */
.june-spotlight[data-view="cards"] .june-view--grid { display: none; }
.june-spotlight[data-view="grid"]  .june-view--cards { display: none; }

/* Calendar grid view */
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem;
  background: #fff;
  box-shadow: 0 16px 38px rgba(8, 35, 76, 0.14);
}

.cal-dow {
  padding: 0.4rem 0.3rem;
  text-align: center;
  color: var(--blue-deep);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

.cal-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 4.2rem;
  padding: 0.4rem 0.45rem 0.5rem;
  border-radius: 8px;
  background: #fcfaf3;
  border: 1px solid var(--line);
}

.cal-blank {
  background: transparent;
  border-color: transparent;
}

.cal-weekend {
  background: rgba(9, 88, 232, 0.05);
}

.cal-special {
  background: rgba(241, 58, 50, 0.1);
  border-color: rgba(241, 58, 50, 0.35);
}

.cal-today {
  background: rgba(255, 198, 30, 0.18);
  border: 2px solid var(--yellow);
  padding: calc(0.4rem - 1px) calc(0.45rem - 1px) calc(0.5rem - 1px);
}

.cal-num {
  display: block;
  color: var(--blue-deep);
  font-weight: 900;
  font-size: 0.95rem;
  line-height: 1;
}

.cal-special .cal-num {
  color: var(--red);
}

.cal-theme {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink);
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 600;
}

.cal-cap {
  display: inline-block;
  margin-top: 0.3rem;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: rgba(9, 88, 232, 0.1);
  color: var(--blue-deep);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  align-self: flex-start;
}

.cal-note {
  margin: 0.85rem 0 0;
  text-align: center;
  color: var(--blue-deep);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

@media (max-width: 760px) {
  .june-header-row {
    align-items: center;
  }

  .cal-cell {
    min-height: 3.6rem;
    padding: 0.3rem 0.32rem 0.4rem;
  }

  .cal-num {
    font-size: 0.82rem;
  }

  .cal-theme {
    margin-top: 0.25rem;
    font-size: 0.6rem;
    line-height: 1.15;
  }

  .cal-dow {
    font-size: 0.6rem;
    padding: 0.3rem 0.15rem;
  }
}

@media (max-width: 480px) {
  .june-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .cal-cell {
    min-height: 3.1rem;
    padding: 0.25rem 0.25rem 0.3rem;
  }

  .cal-theme {
    font-size: 0.54rem;
  }

  .cal-cap {
    margin-top: 0.2rem;
    padding: 0.06rem 0.3rem;
    font-size: 0.5rem;
  }
}

.june-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.june-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 38px rgba(8, 35, 76, 0.14);
  padding-bottom: 1.3rem;
}

.june-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.june-card--matinee::before {
  background: linear-gradient(90deg, var(--yellow), var(--red));
}

.june-card--evening::before {
  background: linear-gradient(90deg, var(--blue-dark), var(--purple));
}

.june-card > header {
  padding: 1.2rem 1.3rem 0.4rem;
}

.june-card--matinee > header {
  background: linear-gradient(180deg, rgba(255, 198, 30, 0.2), transparent);
}

.june-card--evening > header {
  background: linear-gradient(180deg, rgba(121, 76, 227, 0.18), transparent);
}

.june-card > header p {
  margin: 0 0 0.2rem;
  color: var(--blue-deep);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.june-card h3 {
  margin: 0;
  color: var(--blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  line-height: 1.05;
}

.june-intro {
  margin: 0.45rem 1.3rem 1rem;
  color: var(--muted);
  line-height: 1.5;
}

.june-bullets {
  margin: 0 1.3rem;
  padding: 0;
  list-style: none;
}

.june-bullets li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.45rem;
  border-top: 1px solid var(--line);
  line-height: 1.4;
  font-size: 0.97rem;
}

.june-bullets li:first-child {
  border-top: 0;
}

.june-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--yellow);
}

.june-card--evening .june-bullets li::before {
  background: var(--purple);
}

.june-bullets strong {
  color: var(--blue-deep);
}

.june-foot {
  margin: 1.3rem 0 0;
  text-align: center;
  color: var(--blue-deep);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

@media (max-width: 640px) {
  .june-grid {
    grid-template-columns: 1fr;
  }
}

/* Schedule panel arrive-early / stick-around notes */
.panel-arrive {
  margin: 0 0 1rem;
  color: var(--blue-deep);
  font-size: 0.9rem;
  line-height: 1.45;
  border-top: 1px dashed var(--line);
  padding-top: 0.9rem;
}

.panel-arrive + .panel-arrive {
  margin-top: -0.5rem;
  border-top: 0;
  padding-top: 0;
}

/* Plan Your Visit */
.plan-visit {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 2.5rem;
}

.plan-header {
  text-align: center;
  margin-bottom: 1.3rem;
}

.plan-header .eyebrow {
  color: var(--blue-dark);
}

.plan-header h2 {
  margin: 0.35rem 0 0;
  color: var(--blue-dark);
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 1.1rem 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(8, 35, 76, 0.1);
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  height: 2.6rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: inset 0 -3px rgba(0, 0, 0, 0.12);
}

.plan-badge--yellow {
  background: var(--yellow);
  color: #5a3b00;
  box-shadow: inset 0 -3px rgba(159, 109, 0, 0.25);
}

.plan-badge--blue {
  background: var(--blue);
  font-size: 1.4rem;
}

.plan-badge--red {
  background: var(--red);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.plan-badge--turquoise {
  background: var(--turquoise);
  font-size: 1.25rem;
}

.plan-badge--purple {
  background: var(--purple);
  font-size: 1.25rem;
}

.plan-item h3 {
  margin: 0 0 0.2rem;
  color: var(--blue-deep);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.plan-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

@media (max-width: 980px) {
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .plan-item {
    flex-direction: row;
    align-items: center;
    gap: 0.85rem;
  }
}

/* Find Us — map panel inside Plan Your Visit */
.find-us {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  margin-top: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(8, 35, 76, 0.14);
  overflow: hidden;
}

.find-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue-dark), var(--yellow) 55%, var(--red));
  z-index: 1;
}

.find-us-copy {
  padding: 1.6rem clamp(1.2rem, 2.5vw, 2rem) 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.find-us-copy .eyebrow {
  margin: 0 0 0.5rem;
  color: var(--blue-dark);
}

.find-us-line {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.45;
  font-weight: 600;
}

.find-us-address {
  margin: 0 0 1rem;
  color: var(--blue-deep);
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
  font-size: 0.95rem;
}

.find-us-link {
  align-self: flex-start;
  color: var(--blue-dark);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.8rem;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
}

.find-us-link:hover,
.find-us-link:focus-visible {
  color: var(--blue-deep);
  border-color: var(--red);
}

.find-us-map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.find-us-times {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1rem 1.2rem 1.05rem;
  background: var(--blue-deep);
  color: #fff;
  text-align: center;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.find-us-times-line {
  display: block;
  line-height: 1.5;
}

.find-us-times strong {
  color: var(--yellow);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.01em;
  margin: 0 0.15rem;
}

@media (max-width: 760px) {
  .find-us {
    grid-template-columns: 1fr;
  }

  .find-us-copy {
    padding: 1.4rem 1.2rem 1.1rem;
  }

  .find-us-map {
    min-height: 240px;
    height: 240px;
  }

  .find-us-times {
    padding: 0.9rem 1rem 0.95rem;
    font-size: 0.78rem;
  }

  .find-us-times-line {
    line-height: 1.45;
  }

  .find-us-times strong {
    font-size: 0.95rem;
  }
}

.community-story {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0.9rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 2rem auto;
  align-items: stretch;
}

.community-copy,
.bugle-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 38px rgba(8, 35, 76, 0.14);
}

.community-copy::before,
.bugle-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue-dark), var(--yellow) 55%, var(--red));
}

.community-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(16rem, 24vw, 22rem);
  padding: clamp(1.4rem, 3vw, 2.25rem);
}

.community-eyebrow {
  margin-bottom: 0.5rem;
  color: var(--blue-dark);
}

.community-copy h2 {
  margin: 0 0 0.85rem;
  color: var(--blue-dark);
  font-size: clamp(1.9rem, 4.6vw, 3.6rem);
  line-height: 0.98;
}

.community-text {
  max-width: 38ch;
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.5;
}

.community-caption {
  margin: 0;
  color: var(--blue-deep);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.community-arrow {
  display: inline-block;
  margin-left: 0.35rem;
  color: var(--red);
  transform: translateY(1px);
  font-weight: 900;
}

.bugle-card {
  margin: 0;
}

.bugle-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(16rem, 24vw, 22rem);
  object-fit: contain;
  object-position: center;
  padding: 0.6rem 0.8rem 0.8rem;
}

.site-footer {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  justify-items: stretch;
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 5vw, 4rem);
  background: linear-gradient(90deg, #041844, var(--blue-deep));
  color: #fff;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  grid-column: 1 / -1;
  width: 100%;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: nowrap;
}

/* Match by HEIGHT so the logo + mascot read as a pair regardless of aspect ratio */
.footer-logo {
  display: inline-flex;
  flex: 0 1 auto;
  min-width: 0;
}

.footer-logo img {
  display: block;
  height: clamp(6.5rem, 13.5vw, 12rem);
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 8px 0 rgba(0, 0, 0, 0.22));
}

.footer-mascot {
  display: block;
  height: clamp(6.5rem, 13.5vw, 12rem);
  width: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 7px 0 rgba(0, 0, 0, 0.22));
}

address {
  font-style: normal;
  line-height: 1.55;
}

.site-footer strong,
.signup label {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-bottom: 0.45rem;
}

.signup div {
  display: flex;
  gap: 0.5rem;
}

.signup input {
  min-width: 0;
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 0.9rem 1rem;
  font: inherit;
}

.signup button {
  border-radius: 8px;
  white-space: nowrap;
}

.signup input:disabled,
.signup button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.coming-soon-tag {
  font-weight: 700;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.78);
  text-transform: none;
  letter-spacing: 0;
}

@media (max-width: 980px) {
  .dashboard,
  .first-time,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-brand-row {
    grid-column: 1;
    gap: clamp(0.75rem, 3vw, 1.4rem);
  }

  .footer-logo img,
  .footer-mascot {
    height: clamp(5.5rem, 18vw, 9rem);
  }

  .main-nav {
    justify-content: center;
    padding-bottom: 0.2rem;
  }

  .header-cta {
    justify-self: end;
  }

  .hero {
    min-height: 680px;
  }

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

  .reason-grid article:nth-child(odd) {
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    grid-template-columns: auto 1fr auto auto;
    gap: 0.6rem;
    padding: 0.7rem 1rem 0.7rem;
  }

  .site-header .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .mascot-mark {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    color: #fff;
  }

  .header-cta {
    grid-column: 4;
    grid-row: 1;
    min-height: 38px;
    padding: 0.55rem 0.95rem;
    font-size: 0.78rem;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: none;
    flex-direction: column;
    gap: 0;
    margin: 0.55rem -1rem -0.7rem;
    padding: 0.4rem 1rem 0.9rem;
    background: linear-gradient(180deg, var(--blue-dark), var(--blue-deep));
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 28px rgba(3, 27, 67, 0.22);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    text-align: left;
    font-size: 0.85rem;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 0.5rem;
    padding: 0.6rem 0.9rem 0.6rem;
  }

  .brand {
    width: auto;
  }

  .brand-logo {
    height: clamp(2.7rem, 11vw, 3.4rem);
    max-width: clamp(6rem, 30vw, 8rem);
  }

  .header-cta {
    grid-column: 4;
    grid-row: 1;
    min-height: 36px;
    padding: 0.5rem 0.85rem;
    font-size: 0.72rem;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 590px;
  }

  .hero-copy {
    padding-top: 3.2rem;
    max-width: none;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(4, 37, 107, 0.92) 0%, rgba(6, 63, 186, 0.68) 56%, rgba(4, 37, 107, 0.24) 100%);
  }

  .reason-grid,
  .quick-actions {
    grid-template-columns: 1fr;
  }

  .community-story {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 0.6rem;
  }

  .community-copy {
    min-height: 0;
    padding: 1.1rem 1.1rem 1.2rem;
  }

  .community-copy h2 {
    font-size: clamp(1.55rem, 7.5vw, 2.2rem);
  }

  .community-text {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .community-caption {
    font-size: 0.7rem;
  }

  .bugle-card img {
    min-height: 11rem;
    padding: 0.4rem;
  }

  .quick-actions .btn {
    width: 100%;
  }

  .reason-grid article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .reason-grid article:first-child {
    border-top: 0;
  }

  .signup div {
    flex-direction: column;
  }
}

/* ---------- FAQ ---------- */

.faq {
  width: min(880px, calc(100% - 2rem));
  margin: 0 auto 2.5rem;
}

.faq-header {
  text-align: center;
  margin-bottom: 1.3rem;
}

.faq-header .eyebrow {
  color: var(--blue-dark);
}

.faq-header h2 {
  margin: 0.35rem 0 0;
  color: var(--blue-dark);
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(8, 35, 76, 0.1);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  cursor: pointer;
  color: var(--blue-deep);
  font-weight: 900;
  font-size: 1.02rem;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: var(--yellow);
  color: #5a3b00;
  font-size: 1.15rem;
  font-weight: 900;
  box-shadow: inset 0 -2px rgba(159, 109, 0, 0.25);
  transition: transform 0.18s ease;
}

.faq-item[open] summary::after {
  content: "\2212";
  transform: rotate(180deg);
}

.faq-item summary:hover,
.faq-item summary:focus-visible {
  background: rgba(9, 88, 232, 0.05);
}

.faq-item p {
  margin: 0;
  padding: 0 1.2rem 1.15rem;
  color: var(--muted);
  line-height: 1.55;
}

.faq-item a {
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .faq-item summary {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }

  .faq-item p {
    padding: 0 1rem 1rem;
  }
}

/* ---------- Tappable calendar cells ---------- */

.cal-tappable {
  position: relative;
  cursor: pointer;
}

.cal-tappable .cal-theme {
  text-decoration: underline dotted rgba(7, 39, 93, 0.35);
  text-underline-offset: 3px;
}

.cal-tappable:hover,
.cal-tappable:focus-visible {
  background: rgba(9, 88, 232, 0.06);
}

.cal-cell.cal-open {
  z-index: 5;
  background: rgba(9, 88, 232, 0.08);
}

.cal-pop {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 230px;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-size: 0.8rem;
  line-height: 1.45;
  text-align: left;
  box-shadow: 0 14px 32px rgba(8, 35, 76, 0.22);
  z-index: 6;
  pointer-events: none;
}

.cal-pop strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--blue-deep);
}

.cal-pop::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #fff;
  filter: drop-shadow(0 1px 0 var(--line));
}

/* ---------- Photo gallery ---------- */

.gallery {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 2.5rem;
}

.gallery-header {
  text-align: center;
  margin-bottom: 1.3rem;
}

.gallery-header .eyebrow {
  color: var(--blue-dark);
}

.gallery-header h2 {
  margin: 0.35rem 0 0;
  color: var(--blue-dark);
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1;
}

.gallery-strip {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  padding: 0.5rem 0.25rem 1rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.gallery-strip figure {
  margin: 0;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.gallery-strip img {
  display: block;
  height: clamp(180px, 26vw, 280px);
  width: auto;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(8, 35, 76, 0.14);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.gallery-strip img:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(8, 35, 76, 0.2);
}

.gallery-note {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(4, 24, 68, 0.88);
  cursor: zoom-out;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(96vw, 1100px);
  max-height: 88vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

/* ---------- Giveback (charity) band ---------- */

.giveback {
  position: relative;
  overflow: hidden;
  margin: 0 0 2.5rem;
  padding: clamp(2.6rem, 5vw, 4rem) 1.5rem;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue-dark) 48%, var(--blue));
  color: #fff;
  text-align: center;
  box-shadow: 0 16px 38px rgba(3, 27, 67, 0.18);
}

.giveback::before,
.giveback::after {
  content: "";
  position: absolute;
  inset: -25% -25%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 30%, var(--red)       0 4px, transparent 5px),
    radial-gradient(circle at 65% 70%, var(--yellow)    0 3.5px, transparent 4.5px),
    radial-gradient(circle at 85% 18%, var(--turquoise) 0 4px, transparent 5px),
    radial-gradient(circle at 40% 85%, var(--green)     0 3.5px, transparent 4.5px),
    radial-gradient(circle at 92% 55%, var(--purple)    0 4px, transparent 5px);
  background-size: 240px 180px, 200px 150px, 280px 200px, 220px 160px, 260px 190px;
  background-repeat: repeat;
  opacity: 0.35;
}

.giveback::after {
  opacity: 0.2;
  background-size: 170px 130px, 150px 120px, 290px 210px, 200px 150px, 220px 170px;
}

.giveback-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.giveback .eyebrow {
  color: var(--yellow);
}

.giveback h2 {
  margin: 0.3rem 0 0.9rem;
  color: #fff;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 1;
}

.giveback-text {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}
