/* ================================================
   RIVERTOWN FAMILY FUN CENTER
   Custom Theme Stylesheet
   414 Creative — 2026
   ================================================ */

/* ── Custom Easing Curves (Emil philosophy) ── */
:root {
  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  /* Brand Colors */
  --purple:       #3f266e;
  --purple-dark:  #2a1a4e;
  --purple-mid:   #4e317f;
  --purple-light: #ede8f9;
  --red:          #df4442;
  --red-dark:     #c73331;
  --gold:         #f6b225;
  --gold-dark:    #d49a18;
  --white:        #ffffff;
  --off-white:    #faf8f5;
  --text:         #1a1230;
  --text-muted:   #6b5e8a;

  /* Shadows using brand purple */
  --shadow-sm:  0 2px 8px  rgba(63, 38, 110, 0.10);
  --shadow-md:  0 4px 20px rgba(63, 38, 110, 0.14);
  --shadow-lg:  0 8px 40px rgba(63, 38, 110, 0.20);
  --shadow-xl:  0 16px 60px rgba(63, 38, 110, 0.25);

  /* Spacing */
  --section-pad: 80px;
  --container:   1200px;
  --radius:      16px;
  --radius-sm:   8px;
  --radius-lg:   24px;
  --radius-pill: 100px;
}

/* ── Reset & Base ────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
address { font-style: normal; }

/* ── Skip Link (Accessibility) ──────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--gold);
  color: var(--text);
  font-weight: 800;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ── Container ───────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: 760px;
}

/* ── Typography ──────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lilita One', 'Nunito', sans-serif;
  line-height: 1.15;
  color: var(--text);
}

/* ════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: 3px solid transparent;
  transition:
    transform      160ms var(--ease-out),
    box-shadow     160ms var(--ease-out),
    background     160ms ease,
    border-color   160ms ease,
    color          160ms ease;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

/* Gold CTA */
.btn--gold {
  background: var(--gold);
  color: var(--text);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(246, 178, 37, 0.35);
}
@media (hover: hover) and (pointer: fine) {
  .btn--gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    box-shadow: 0 6px 24px rgba(246, 178, 37, 0.45);
    transform: translateY(-2px);
  }
}

/* Purple */
.btn--purple {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
  box-shadow: 0 4px 16px rgba(63, 38, 110, 0.25);
}
@media (hover: hover) and (pointer: fine) {
  .btn--purple:hover {
    background: var(--purple-mid);
    box-shadow: 0 6px 24px rgba(63, 38, 110, 0.35);
    transform: translateY(-2px);
  }
}

/* Red */
.btn--red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(223, 68, 66, 0.3);
}
@media (hover: hover) and (pointer: fine) {
  .btn--red:hover {
    background: var(--red-dark);
    box-shadow: 0 6px 24px rgba(223, 68, 66, 0.4);
    transform: translateY(-2px);
  }
}

/* White */
.btn--white {
  background: var(--white);
  color: var(--purple);
  border-color: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
@media (hover: hover) and (pointer: fine) {
  .btn--white:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.2); transform: translateY(-2px); }
}

/* Outline variants */
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
@media (hover: hover) and (pointer: fine) {
  .btn--outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); }
}

.btn--outline-purple {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}
@media (hover: hover) and (pointer: fine) {
  .btn--outline-purple:hover { background: var(--purple-light); }
}

/* Sizes */
.btn--sm  { padding: 10px 20px; font-size: 0.875rem; }
.btn--lg  { padding: 16px 36px; font-size: 1.0625rem; }
.btn--block { width: 100%; justify-content: center; }

/* ════════════════════════════════════════════
   BADGES / TAGS
   ════════════════════════════════════════════ */
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.tag--purple { background: var(--purple-light); color: var(--purple); }
.tag--red    { background: #fde8e8; color: var(--red); }
.tag--gold   { background: #fff5d9; color: #a07010; }

/* ════════════════════════════════════════════
   SITE HEADER & NAV
   ════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(63, 38, 110, 0.10);
  box-shadow: 0 2px 16px rgba(63, 38, 110, 0.07);
  transition: box-shadow 200ms ease;
}
.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(63, 38, 110, 0.13);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-logo img { height: 60px; width: auto; }

/* Primary nav */
.primary-nav { flex: 1; display: flex; justify-content: center; }

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

.nav-list a {
  display: block;
  padding: 8px 14px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: color 150ms ease, background 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .nav-list a:hover {
    color: var(--purple);
    background: var(--purple-light);
  }
}
.nav-list a.is-active {
  color: var(--purple);
  background: var(--purple-light);
}

/* Header CTA */
.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 150ms ease;
}
.nav-toggle:hover { background: var(--purple-light); }
.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
  transition: transform 200ms var(--ease-out), opacity 150ms 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); }

/* Mobile menu — keeps purple for brand contrast */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--purple);
  padding: 16px 24px 24px;
  box-shadow: 0 8px 32px rgba(63, 38, 110, 0.35);
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 220ms var(--ease-out), opacity 200ms ease;
}
.mobile-menu.is-open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav-list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-list a {
  display: block;
  padding: 12px 16px;
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  font-size: 1.0625rem;
  border-radius: var(--radius-sm);
  transition: background 150ms ease;
}
.mobile-nav-list a:hover { background: rgba(255,255,255,0.12); }
.mobile-nav-cta { margin-top: 8px; }
.mobile-nav-cta a { display: inline-flex !important; }

.mobile-menu__contact {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}
.mobile-menu__contact a { color: rgba(255,255,255,0.85); }

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--purple);
  overflow: hidden;
  padding: 80px 0 100px;
}

/* Decorative shapes */
.hero__shapes { position: absolute; inset: 0; pointer-events: none; }

.hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--white);
}
.hero__shape--1 { width: 400px; height: 400px; top: -100px; right: -80px; }
.hero__shape--2 { width: 200px; height: 200px; bottom: 80px; left: -60px; }
.hero__shape--3 { width: 120px; height: 120px; top: 40%; right: 20%; opacity: 0.04; }

.hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(246, 178, 37, 0.15);
  border: 1px solid rgba(246, 178, 37, 0.4);
  border-radius: var(--radius-pill);
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero__title {
  font-family: 'Lilita One', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  display: block;
}
.hero__title span { display: block; }
.hero__title-accent { color: var(--gold); }

.hero__subtitle {
  color: rgba(255,255,255,0.75);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero stat cards cluster */
.hero__card-cluster {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__stat-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background 200ms ease, transform 200ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .hero__stat-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateX(-4px);
  }
}
.hero__stat-card--1 { animation-delay: 200ms; }
.hero__stat-card--2 { animation-delay: 280ms; }
.hero__stat-card--3 { animation-delay: 360ms; }

.stat-icon { font-size: 2rem; flex-shrink: 0; }
.stat-label {
  display: block;
  font-family: 'Lilita One', sans-serif;
  color: var(--white);
  font-size: 1rem;
}
.stat-sub {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  margin-top: 2px;
}

.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero__wave svg { width: 100%; }

/* ════════════════════════════════════════════
   HOURS STRIP
   ════════════════════════════════════════════ */
.hours-strip {
  background: var(--white);
  padding: 24px 0;
  border-bottom: 1px solid rgba(63, 38, 110, 0.08);
  box-shadow: var(--shadow-sm);
}

.hours-strip__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hours-strip__label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--purple);
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.hours-grid {
  display: flex;
  gap: 8px;
  flex: 1;
  flex-wrap: wrap;
}

.hours-item {
  display: flex;
  flex-direction: column;
  padding: 10px 16px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  min-width: 120px;
  gap: 2px;
}
.hours-day  { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.hours-time { font-size: 0.9375rem; font-weight: 800; color: var(--purple); }
.hours-tags { display: flex; gap: 4px; margin-top: 4px; flex-wrap: wrap; }

.hours-strip__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--purple);
  font-weight: 800;
  font-size: 0.875rem;
  flex-shrink: 0;
  transition: gap 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .hours-strip__link:hover { gap: 10px; }
}

/* ════════════════════════════════════════════
   SECTION SHARED STYLES
   ════════════════════════════════════════════ */
.section {
  padding: var(--section-pad) 0;
}
.section--alt { background: var(--off-white); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
  margin-bottom: 10px;
}
.section-eyebrow--light { color: rgba(255,255,255,0.7); }

.section-title {
  font-family: 'Lilita One', sans-serif;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  color: var(--text);
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 600;
}
.section-cta {
  text-align: center;
  margin-top: 48px;
}
.section-wave { line-height: 0; }
.section-wave svg { width: 100%; display: block; }

/* ════════════════════════════════════════════
   ATTRACTION CARDS
   ════════════════════════════════════════════ */
.attractions { background: var(--off-white); }

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

.attraction-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  transition:
    transform    200ms var(--ease-out),
    box-shadow   200ms var(--ease-out),
    border-color 200ms ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.attraction-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  opacity: 0;
  transition: opacity 200ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--purple-light);
  }
  .attraction-card:hover::before { opacity: 1; }
  .attraction-card:hover .attraction-card__arrow { transform: translateX(4px); opacity: 1; }
}
.attraction-card:active { transform: scale(0.98); }

.attraction-card__icon {
  width: 64px; height: 64px;
  background: var(--icon-bg, #f0ecff);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 4px;
}

.attraction-card__title {
  font-family: 'Lilita One', sans-serif;
  font-size: 1.125rem;
  color: var(--text);
}

.attraction-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

.attraction-card__meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.meta-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--purple-light);
  color: var(--purple);
}
.meta-badge--red    { background: #fde8e8; color: var(--red); }
.meta-badge--gold   { background: #fff5d9; color: #a07010; }
.meta-badge--purple { background: var(--purple); color: var(--white); }
.meta-badge--outline {
  background: transparent;
  border: 1.5px solid rgba(63, 38, 110, 0.2);
  color: var(--text-muted);
}

.attraction-card__arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  color: var(--purple);
  font-size: 1.125rem;
  opacity: 0;
  transform: translateX(0);
  transition: transform 200ms var(--ease-out), opacity 200ms ease;
}

/* ════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════ */
.pricing { background: var(--white); position: relative; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 2px solid rgba(63, 38, 110, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}
.pricing-card--featured {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(63, 38, 110, 0.08);
  transform: translateY(-8px);
}
@media (hover: hover) and (pointer: fine) {
  .pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .pricing-card--featured:hover { transform: translateY(-12px); }
}

.pricing-card__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pricing-card__icon { font-size: 2.5rem; margin-bottom: 16px; }
.pricing-card__title {
  font-family: 'Lilita One', sans-serif;
  font-size: 1.375rem;
  color: var(--text);
  margin-bottom: 12px;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.price-amount {
  font-family: 'Lilita One', sans-serif;
  font-size: 3rem;
  color: var(--purple);
  line-height: 1;
}
.price-per { font-size: 1rem; color: var(--text-muted); font-weight: 600; }
.pricing-card__sub {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.pricing-card__includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.pricing-card__includes li {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 600;
}
.pricing-card__includes li.pricing-addon {
  color: var(--purple);
  font-size: 0.8rem;
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(63,38,110,0.1);
}
.pricing-card__note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ════════════════════════════════════════════
   PARTY BANNER
   ════════════════════════════════════════════ */
.party-banner {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 50%, var(--purple-mid) 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.party-banner__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.party-shape {
  position: absolute;
  font-size: 3rem;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}
.party-shape--1 { top: 10%; left: 5%; animation-delay: 0s; }
.party-shape--2 { top: 20%; right: 10%; animation-delay: 1.5s; font-size: 2rem; }
.party-shape--3 { bottom: 20%; left: 15%; animation-delay: 3s; }
.party-shape--4 { bottom: 10%; right: 5%; animation-delay: 4.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(5deg); }
}

.party-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.party-banner__title {
  font-family: 'Lilita One', sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 8px;
}
.party-banner__sub {
  color: var(--gold);
  font-size: 1.0625rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.party-banner__desc {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  max-width: 520px;
}
.party-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   PROGRAMS
   ════════════════════════════════════════════ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), border-color 200ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .program-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--purple-light);
  }
}
.program-card:active { transform: scale(0.98); }

.program-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.program-card h3 {
  font-family: 'Lilita One', sans-serif;
  font-size: 1.0625rem;
  color: var(--text);
}
.program-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ════════════════════════════════════════════
   FAQ ACCORDION
   ════════════════════════════════════════════ */
.faq { background: var(--white); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid rgba(63, 38, 110, 0.08);
  transition: border-color 200ms ease;
}
.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: var(--purple);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  background: none;
  cursor: pointer;
  transition: color 150ms ease;
}
.faq-question:hover { color: var(--purple); }
.faq-question[aria-expanded="true"] { color: var(--purple); }

.faq-icon {
  flex-shrink: 0;
  color: var(--purple);
  transition: transform 220ms var(--ease-out);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-answer a {
  color: var(--purple);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-answer p { margin: 0; }

/* ════════════════════════════════════════════
   LOCATION
   ════════════════════════════════════════════ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-address {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.location-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.location-detail svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--purple);
}
.location-detail strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.location-detail span, .location-detail a {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}
.location-detail a:hover { color: var(--purple); text-decoration: underline; }

.location-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.site-footer { background: var(--purple-dark); color: rgba(255,255,255,0.8); }

.footer-top { padding: 64px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo-text {
  font-family: 'Lilita One', sans-serif;
  font-size: 1.75rem;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.footer-logo-text .logo-river { color: var(--gold); }
.footer-logo-text .logo-town  { color: var(--white); }
.footer-logo-sub {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
  display: block;
}
.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  transition: color 150ms ease;
}
.footer-contact-item:hover { color: var(--gold); }
.footer-contact-item svg { flex-shrink: 0; }

.footer-nav-title {
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.footer-nav-list { display: flex; flex-direction: column; gap: 8px; }
.footer-nav-list a {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  transition: color 150ms ease;
}
.footer-nav-list a:hover { color: var(--gold); }

.footer-hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-bottom: 10px;
}
.footer-hours-table td {
  padding: 5px 0;
  color: rgba(255,255,255,0.65);
}
.footer-hours-table td:first-child { font-weight: 700; color: rgba(255,255,255,0.8); padding-right: 16px; }
.footer-hours-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy, .footer-credit {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-credit a {
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  transition: color 150ms ease;
}
.footer-credit a:hover { color: var(--gold); }

/* ════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ════════════════════════════════════════════ */
.animate-fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 600ms var(--ease-out) forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal-card {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity   500ms var(--ease-out),
    transform 500ms var(--ease-out);
  transition-delay: var(--card-delay, 0ms);
}
.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════
   INNER PAGE (page.php)
   ════════════════════════════════════════════ */
.page-header {
  background: var(--purple);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-header__inner { position: relative; z-index: 1; }
.page-header h1 {
  font-family: 'Lilita One', sans-serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--white);
}

.page-content-wrap {
  padding: 64px 0;
}
.page-content-inner {
  max-width: 760px;
  margin: 0 auto;
}
.page-content-inner h2, .page-content-inner h3 {
  font-family: 'Lilita One', sans-serif;
  color: var(--text);
  margin: 32px 0 12px;
}
.page-content-inner p {
  margin-bottom: 16px;
  color: var(--text-muted);
  line-height: 1.75;
}
.page-content-inner a {
  color: var(--purple);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ════════════════════════════════════════════
   ACCESSIBILITY
   ════════════════════════════════════════════ */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ════════════════════════════════════════════
   REDUCED MOTION
   ════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .badge-dot { animation: none; }
  .party-shape { animation: none; }
  .reveal-card, .animate-fade-up { opacity: 1; transform: none; transition: none; }
}

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .attractions-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  :root { --section-pad: 60px; }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__subtitle { margin: 0 auto 36px; }
  .hero__actions { justify-content: center; }
  .hero__card-cluster {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .hero__stat-card:hover { transform: none; }

  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }

  .party-banner__inner { grid-template-columns: 1fr; }
  .party-banner__actions { flex-direction: row; flex-wrap: wrap; }

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

@media (max-width: 640px) {
  .header-inner { padding: 0 16px; height: 68px; }
  .header-logo-img { height: 50px; }
  .container { padding: 0 16px; }

  .hero { padding: 60px 0 80px; }
  .hero__card-cluster { grid-template-columns: 1fr; }

  .hours-strip__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hours-grid { gap: 8px; }
  .hours-item { min-width: calc(50% - 4px); }

  .attractions-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .party-banner__actions { flex-direction: column; }
  .party-banner__actions .btn { width: 100%; justify-content: center; }

  .footer-bottom .container { flex-direction: column; text-align: center; }
}

/* ════════════════════════════════════════════
   INNER PAGE COMPONENTS
   ════════════════════════════════════════════ */

/* Logo */
.header-logo-img {
  height: 60px;
  width: auto;
  display: block;
}
.header-logo-img-link { display: flex; align-items: center; }

/* Shared inner page wrapper */
.inner-page { padding: 48px 0; }
.ip-intro { margin-bottom: 40px; }
.ip-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  font-weight: 600;
  max-width: 680px;
  line-height: 1.7;
}

/* Pricing blocks (tickets page) */
.pricing-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.pricing-block {
  background: var(--white);
  border: 2px solid rgba(63,38,110,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.pricing-block--featured {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(63,38,110,0.06);
}
.pricing-block__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.pricing-block__icon { font-size: 2.25rem; flex-shrink: 0; }
.pricing-block__title {
  font-family: 'Lilita One', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.pricing-block__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price-big {
  font-family: 'Lilita One', sans-serif;
  font-size: 2.25rem;
  color: var(--purple);
  line-height: 1;
}
.price-unit { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }
.pricing-addon-note {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(63,38,110,0.08);
  font-size: 0.875rem;
  color: var(--purple);
  font-weight: 700;
}
.pricing-note { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.5; }

/* Includes list */
.includes-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.includes-list li {
  font-size: 0.9375rem;
  color: var(--text);
  font-weight: 600;
  padding-left: 4px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

/* Steps list */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: steps;
}
.steps-list li {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  padding-left: 8px;
  counter-increment: steps;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.steps-list li::before {
  content: counter(steps);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--purple);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Schedule table */
.schedule-table-wrap { overflow-x: auto; border-radius: var(--radius); }
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.9375rem;
  box-shadow: var(--shadow-sm);
}
.schedule-table thead { background: var(--purple); color: white; }
.schedule-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.schedule-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(63,38,110,0.07);
  color: var(--text);
  font-weight: 600;
  vertical-align: top;
}
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-row--accent td { background: rgba(246,178,37,0.06); }

/* Simple hours table */
.simple-hours-table { width: 100%; border-collapse: collapse; }
.simple-hours-table td {
  padding: 8px 0;
  font-size: 0.9375rem;
  color: var(--text);
  border-bottom: 1px solid rgba(63,38,110,0.07);
  font-weight: 600;
}
.simple-hours-table td:first-child { padding-right: 24px; min-width: 110px; }
.simple-hours-table tr:last-child td { border-bottom: none; }

/* Info callouts */
.info-callout {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius);
  margin-top: 32px;
  align-items: flex-start;
}
.info-callout--weather { background: #edf4ff; border: 1.5px solid #b3d0ff; }
.info-callout--purple  { background: var(--purple); color: white; }
.info-callout--purple a { color: var(--gold); }
.info-callout--soft    { background: var(--off-white); border: 1.5px solid rgba(63,38,110,0.1); }
.info-callout__icon    { font-size: 1.75rem; flex-shrink: 0; }
.info-callout strong   { display: block; font-size: 1rem; margin-bottom: 6px; }
.info-callout p        { font-size: 0.9rem; line-height: 1.6; margin: 0; opacity: 0.85; }

/* CTA strip */
.cta-strip {
  background: var(--purple-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-top: 48px;
}
.cta-strip h3 {
  font-family: 'Lilita One', sans-serif;
  font-size: 1.5rem;
  color: var(--purple);
  margin-bottom: 8px;
}
.cta-strip p { color: var(--text-muted); font-size: 1rem; font-weight: 600; margin-bottom: 20px; }
.cta-strip__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.text-link { color: var(--purple); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* Party options (parties page) */
.party-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.party-option-card {
  background: var(--white);
  border: 2px solid rgba(63,38,110,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  position: relative;
}
.party-option-card--featured { border-color: var(--purple); }
.party-option-card__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.party-option-card__badge--gold { background: var(--gold); color: var(--text); }
.party-option-card__icon { font-size: 3rem; display: block; margin-bottom: 12px; }
.party-option-card h2 {
  font-family: 'Lilita One', sans-serif;
  font-size: 1.375rem;
  margin-bottom: 8px;
}
.party-option-card p { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 20px; }

.party-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.party-detail-block {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 24px;
}
.party-detail-block h3 {
  font-family: 'Lilita One', sans-serif;
  font-size: 1.0625rem;
  color: var(--text);
  margin-bottom: 14px;
}

/* Attraction page hero detail */
.attraction-hero-detail {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 48px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.attraction-hero-icon { font-size: 4rem; flex-shrink: 0; line-height: 1; }
.attraction-meta-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }

.attraction-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.attraction-detail-grid h2 {
  font-family: 'Lilita One', sans-serif;
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 14px;
}

/* Session cards */
.session-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 18px 20px;
  border-left: 4px solid var(--purple);
}
.session-card h3 {
  font-family: 'Lilita One', sans-serif;
  font-size: 1rem;
  color: var(--purple);
  margin-bottom: 6px;
}
.session-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* Also consider */
.also-consider { margin-top: 48px; }
.also-consider h3 {
  font-family: 'Lilita One', sans-serif;
  font-size: 1.375rem;
  margin-bottom: 20px;
}
.also-consider-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.consider-card {
  background: var(--white);
  border: 2px solid rgba(63,38,110,0.08);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 200ms ease, transform 200ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .consider-card:hover { border-color: var(--purple); transform: translateY(-3px); }
}
.consider-card span { font-size: 1.75rem; }
.consider-card strong { font-size: 0.9375rem; color: var(--text); }
.consider-card p { font-size: 0.8125rem; color: var(--text-muted); margin: 0; }

/* About / Contact grids */
.about-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.about-grid h2, .contact-info-block h2 {
  font-family: 'Lilita One', sans-serif;
  font-size: 1.375rem;
  margin-bottom: 14px;
}
.about-grid p { color: var(--text-muted); line-height: 1.75; font-size: 0.9375rem; }
.about-grid address { font-style: normal; font-size: 0.9375rem; color: var(--text-muted); line-height: 1.8; }
.contact-detail-list { display: flex; flex-direction: column; gap: 20px; margin-top: 20px; }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }

/* Rules list */
.rules-list li { font-size: 0.9375rem; }

/* Attractions hub page grid (uses existing .attractions-grid) */
.attractions-hub-page .attractions-grid { grid-template-columns: repeat(4, 1fr); }

/* Responsive inner pages */
@media (max-width: 900px) {
  .pricing-blocks        { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .party-options         { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .party-details-grid    { grid-template-columns: 1fr; }
  .attraction-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .also-consider-grid    { grid-template-columns: 1fr 1fr; }
  .attractions-hub-page .attractions-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .attraction-hero-detail { flex-direction: column; }
  .also-consider-grid { grid-template-columns: 1fr; }
  .cta-strip { padding: 28px 20px; }
  .cta-strip__actions { flex-direction: column; align-items: stretch; }
  .cta-strip__actions .btn { text-align: center; justify-content: center; }
  .attractions-hub-page .attractions-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════
   KADENCE BLOCKS COMPATIBILITY
   ════════════════════════════════════════════ */

/* Full-width Kadence page */
.page-full-width { width: 100%; }
.page-full-width .wp-block-kadence-rowlayout { max-width: none; }

/* Kadence block colour overrides — use brand palette */
.has-purple-color      { color: var(--purple) !important; }
.has-purple-background-color { background-color: var(--purple) !important; }
.has-gold-color        { color: var(--gold) !important; }
.has-gold-background-color { background-color: var(--gold) !important; }
.has-red-color         { color: var(--red) !important; }
.has-red-background-color { background-color: var(--red) !important; }
.has-off-white-background-color { background-color: var(--off-white) !important; }

/* Kadence advanced button — inherit brand feel */
.kb-btn-global-outline { border-width: 3px !important; }
.kb-btn { border-radius: var(--radius-pill) !important; font-family: 'Nunito', sans-serif !important; font-weight: 800 !important; }
.kb-btn:active { transform: scale(0.97) !important; }

/* Kadence accordion — match our FAQ style */
.kt-accordion-panel-inner { font-family: 'Nunito', sans-serif; }
.kt-accordion-header-wrap { font-family: 'Lilita One', sans-serif; }

/* Kadence heading — use Lilita One for display */
.wp-block-kadence-advancedheading { font-family: 'Lilita One', sans-serif; }

/* Row layout sections */
.wp-block-kadence-rowlayout { position: relative; }

/* Inner page Kadence sections get correct padding */
.page-full-width .wp-block-kadence-rowlayout.kt-row-layout-equal { padding: 60px 24px; }

/* ── Blog Archive ────────────────────────────────── */
.page-header__sub {
  margin-top: 10px;
  font-size: 1.1rem;
  opacity: 0.85;
}
.blog-archive { padding: 48px 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(63, 38, 110, 0.07);
  overflow: hidden;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card__body { padding: 28px; display: flex; flex-direction: column; height: 100%; }
.blog-card__cat {
  display: inline-block;
  background: var(--gold);
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  width: fit-content;
}
.blog-card__title {
  font-family: 'Lilita One', sans-serif;
  font-size: 1.2rem;
  line-height: 1.25;
  margin-bottom: 10px;
}
.blog-card__title a { color: var(--purple-dark); text-decoration: none; }
.blog-card__title a:hover { color: var(--red); }
.blog-card__excerpt { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; flex: 1; margin-bottom: 18px; }
.blog-card__footer { display: flex; justify-content: space-between; align-items: center; }
.blog-card__date { font-size: 0.8rem; color: var(--text-muted); }
.blog-card__read { font-size: 0.85rem; font-weight: 700; color: var(--purple); text-decoration: none; }
.blog-card__read:hover { color: var(--red); }

/* Pagination */
.nav-links { display: flex; gap: 8px; justify-content: center; margin-top: 48px; }
.page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.9rem;
  color: var(--purple); text-decoration: none;
  border: 2px solid rgba(63, 38, 110, 0.2);
  transition: all 0.18s;
}
.page-numbers:hover, .page-numbers.current {
  background: var(--purple); color: var(--white); border-color: var(--purple);
}

/* ── Blog / Single Post ──────────────────────────── */
.page-header--blog { padding: 60px 0 50px; }
.post-category-label {
  display: inline-block;
  background: var(--gold);
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.post-meta {
  margin-top: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { order: -1; }
}

/* Post body typography */
.post-body { min-width: 0; }
.post-body h2 {
  font-family: 'Lilita One', sans-serif;
  font-size: 1.65rem;
  color: var(--purple);
  margin: 2rem 0 0.75rem;
  line-height: 1.2;
}
.post-body h3 {
  font-family: 'Lilita One', sans-serif;
  font-size: 1.25rem;
  color: var(--purple-dark);
  margin: 1.5rem 0 0.5rem;
}
.post-body p { margin-bottom: 1.1rem; line-height: 1.75; }
.post-body ul, .post-body ol {
  margin: 0 0 1.1rem 1.5rem;
  line-height: 1.75;
}
.post-body li { margin-bottom: 0.4rem; }
.post-body strong { color: var(--purple-dark); font-weight: 800; }
.post-body a { color: var(--purple); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.post-body a:hover { color: var(--red); }
.post-body blockquote {
  border-left: 4px solid var(--gold);
  margin: 1.5rem 0;
  padding: 0.75rem 1.25rem;
  background: var(--purple-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
}

/* Post footer CTA */
.post-footer-cta {
  margin-top: 3rem;
  background: var(--purple);
  color: var(--white);
  padding: 36px 40px;
  border-radius: var(--radius-lg);
  text-align: center;
}
.post-footer-cta h3 {
  font-family: 'Lilita One', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.post-footer-cta p { opacity: 0.88; margin-bottom: 20px; }
.post-footer-cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Sidebar cards */
.post-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(63, 38, 110, 0.08);
}
.sidebar-card h3 {
  font-family: 'Lilita One', sans-serif;
  font-size: 1.05rem;
  color: var(--purple);
  margin-bottom: 14px;
}
.sidebar-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 14px; }

.sidebar-hours-table { width: 100%; border-collapse: collapse; }
.sidebar-hours-table td { padding: 5px 0; font-size: 0.88rem; }
.sidebar-hours-table td:last-child { text-align: right; font-weight: 700; color: var(--purple); }

.sidebar-card--nav ul { list-style: none; margin: 0; padding: 0; }
.sidebar-card--nav li { border-bottom: 1px solid rgba(63, 38, 110, 0.07); }
.sidebar-card--nav li:last-child { border-bottom: none; }
.sidebar-card--nav a {
  display: block;
  padding: 8px 0;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.18s;
}
.sidebar-card--nav a:hover { color: var(--purple); }
