/* =========================================
   Category 5 Pickleball — Main Stylesheet
   ========================================= */

/* Skip to main content (accessibility) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--brand-lime);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; }

/* =========================================
   Design Tokens
   ========================================= */
:root {
  --brand-navy:  #1F3A6E;
  --brand-lime:  #96C93D;
  --white:       #FFFFFF;
  --court-blue:  #4A7FC1;
  --text-dark:   #333333;
  --text-light:  #666666;
  --bg-light:    #F5F6F8;
  --border:      #E0E0E0;

  --shadow:      0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover:0 12px 40px rgba(0,0,0,0.18);
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  0.3s ease;

  --font-display: 'Bebas Neue', Impact, Arial Narrow, sans-serif;
  --font-heading: 'Barlow Condensed', Arial Narrow, sans-serif;
  --font-body:    'Barlow', Arial, sans-serif;

  --container: 1200px;
  --header-h:  72px;
}

/* =========================================
   Base
   ========================================= */
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* =========================================
   Utilities
   ========================================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section        { padding: 5rem 1.5rem; }
.section-sm     { padding: 3rem 1.5rem; }
.section--dark   { background: var(--brand-navy); color: var(--white); }
.section--light { background: var(--bg-light); }
.text-center    { text-align: center; }
.text-lime      { color: var(--brand-lime); }
.text-navy      { color: var(--brand-navy); }

/* =========================================
   Buttons
   ========================================= */
.btn {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--brand-lime);
  color: var(--white);
  border-color: var(--brand-lime);
}
.btn-primary:hover {
  background: transparent;
  color: var(--brand-lime);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--brand-navy);
}

.btn-navy {
  background: var(--brand-navy);
  color: var(--white);
  border-color: var(--brand-navy);
}
.btn-navy:hover {
  background: transparent;
  color: var(--brand-navy);
}

.btn-outline-navy {
  background: transparent;
  color: var(--brand-navy);
  border-color: var(--brand-navy);
}
.btn-outline-navy:hover {
  background: var(--brand-navy);
  color: var(--white);
}

/* =========================================
   Header / Nav
   ========================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--brand-navy);
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img { height: 44px; width: auto; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 10;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--brand-navy);
  padding: 1rem 1.5rem 2rem;
  gap: 0.1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.site-nav.open { display: flex; }

.nav-link {
  color: rgba(255,255,255,0.82);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.6rem 0;
  transition: color var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-link:hover, .nav-link.active { color: var(--brand-lime); }
.nav-link:last-child { border-bottom: none; }

@media (min-width: 768px) {
  .hamburger { display: none; }
  .site-nav {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    gap: 0;
    border-top: none;
    align-items: center;
  }
  .nav-link {
    font-size: 0.82rem;
    padding: 0.4rem 0.65rem;
    border-bottom: none;
  }
}

@media (min-width: 1100px) {
  .nav-link { font-size: 0.92rem; padding: 0.4rem 0.85rem; }
}

/* =========================================
   Page Wrapper
   ========================================= */
.page-wrapper { padding-top: var(--header-h); }

/* =========================================
   Hero (Homepage)
   ========================================= */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brand-navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(31,58,110,0.85) 0%, rgba(31,58,110,0.5) 60%, rgba(31,58,110,0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 3rem;
  color: var(--white);
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-lime);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9.5vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hero h1 .lime { color: var(--brand-lime); }

.hero-divider {
  width: 48px;
  height: 3px;
  background: var(--brand-lime);
  margin: 1rem 0;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-logo {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: clamp(160px, 18vw, 260px);
  z-index: 2;
  filter: brightness(0) invert(1);
}

/* =========================================
   Page Hero (inner pages)
   ========================================= */
.page-hero {
  background: linear-gradient(160deg, #162d58 0%, var(--brand-navy) 100%);
  padding: 5.5rem 1.5rem 6rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Diagonal lime accent stripe */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-lime) 0%, rgba(150,201,61,0.4) 60%, transparent 100%);
}

/* Subtle texture overlay */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(150,201,61,0.08) 0%, transparent 60%),
                    radial-gradient(circle at 20% 80%, rgba(150,201,61,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand-lime);
  font-weight: 700;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.page-hero-eyebrow::before,
.page-hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--brand-lime);
  opacity: 0.7;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6.5rem);
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  max-width: 560px;
  margin: 1.5rem auto 0;
  line-height: 1.75;
}

/* =========================================
   Section Headers
   ========================================= */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--brand-navy);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section--dark .section-header h2 { color: var(--white); }

.section-header .underline {
  width: 52px;
  height: 4px;
  background: var(--brand-lime);
  margin: 0.75rem auto 1.25rem;
  border-radius: 2px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section--dark .section-header p { color: rgba(255,255,255,0.7); }

/* =========================================
   CTA Banner
   ========================================= */
.cta-banner {
  background: var(--brand-navy);
  color: var(--white);
  padding: 5rem 1.5rem;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.cta-banner .btn { margin: 0 0.5rem; }

/* =========================================
   Booking Steps
   ========================================= */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

.step-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.step-card:hover {
  border-color: var(--brand-lime);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.step-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--brand-lime);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--brand-navy);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.step-card p { color: var(--text-light); font-size: 0.95rem; }

/* =========================================
   Promo Banner (Anniversary)
   ========================================= */
.promo-banner {
  position: relative;
  background: #070e1c;
  border-bottom: 1px solid rgba(150, 201, 61, 0.28);
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: stretch;
  height: 72px;
}

/* Dot-hole texture */
.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(150,201,61,0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
}

/* Sweeping shimmer */
.pb-shimmer {
  position: absolute;
  top: 0; bottom: 0;
  left: -440px;
  width: 440px;
  background: linear-gradient(90deg, transparent 0%, rgba(150,201,61,0.07) 50%, transparent 100%);
  animation: pb-sweep 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes pb-sweep {
  0%   { left: -440px; }
  100% { left: calc(100% + 440px); }
}

/* Fixed left: badge container */
.pb-fixed {
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(150, 201, 61, 0.18);
  background: rgba(150, 201, 61, 0.055);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

/* Badge */
.pb-badge {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--brand-lime);
  color: var(--brand-navy);
  padding: 0.4rem 0.9rem 0.4rem 0.6rem;
  border-radius: 6px;
  flex-shrink: 0;
  animation: pb-ping 3s ease-out infinite;
}

@keyframes pb-ping {
  0%   { box-shadow: 0 0 0 0 rgba(150,201,61,0.6); }
  60%  { box-shadow: 0 0 0 11px rgba(150,201,61,0); }
  100% { box-shadow: 0 0 0 0 rgba(150,201,61,0); }
}

.pb-badge-paddle {
  width: 20px;
  height: 30px;
  flex-shrink: 0;
  color: var(--brand-navy);
}

.pb-badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--brand-navy);
}

.pb-badge-label {
  font-family: var(--font-heading);
  font-size: 0.57rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  line-height: 1.35;
  color: rgba(31, 58, 110, 0.8);
}

/* Scrolling area */
.pb-scroll {
  flex: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
}

/* Fade edges */
.pb-scroll::before,
.pb-scroll::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}
.pb-scroll::before {
  left: 0;
  background: linear-gradient(to right, #070e1c, transparent);
}
.pb-scroll::after {
  right: 0;
  background: linear-gradient(to left, #070e1c, transparent);
}

/* Scrolling track */
.pb-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: pb-ticker 32s linear infinite;
  will-change: transform;
}

.pb-track:hover { animation-play-state: paused; }

@keyframes pb-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.pbt-item {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  padding: 0 2.25rem;
}

.pb-lime {
  color: var(--brand-lime);
  text-shadow: 0 0 18px rgba(150, 201, 61, 0.5);
}

.pbt-sep {
  color: var(--brand-lime);
  font-size: 0.38rem;
  opacity: 0.45;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 640px) {
  .promo-banner { height: auto; }
  .pb-fixed { padding: 0.7rem 1rem; }
  .pb-badge-paddle { display: none; }
  .pbt-item { font-size: 0.7rem; padding: 0 1.5rem; letter-spacing: 0.15em; }
}

/* =========================================
   Contact Band
   ========================================= */
.contact-band {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.contact-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 0% 50%, rgba(150,201,61,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(31,58,110,0.04) 0%, transparent 55%);
  pointer-events: none;
}

.contact-band::after {
  content: '?';
  position: absolute;
  font-family: var(--font-display);
  font-size: 42rem;
  line-height: 1;
  color: rgba(31,58,110,0.04);
  right: -4rem;
  bottom: -8rem;
  pointer-events: none;
  user-select: none;
}

.contact-band-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 6rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .contact-band-inner { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.cb-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-lime);
  margin-bottom: 1.25rem;
}

.cb-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  color: var(--brand-navy);
  text-transform: uppercase;
  line-height: 1.02;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.cb-sub {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 2.5rem;
}

.cb-info { display: flex; flex-direction: column; gap: 0.875rem; }

.cb-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.cb-info-item svg { color: var(--brand-lime); flex-shrink: 0; }
.cb-info-item a { color: inherit; text-decoration: none; transition: color 0.2s; }
.cb-info-item a:hover { color: var(--brand-navy); }

/* Contact Card */
.cb-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.75rem 2.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}

.cb-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-navy);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(31,58,110,0.12);
}

.cb-field { margin-bottom: 1.5rem; }

.cb-field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(31,58,110,0.6);
  margin-bottom: 0.35rem;
}

.cb-field input,
.cb-field textarea,
.cb-field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(31,58,110,0.2);
  border-radius: 0;
  padding: 0.55rem 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--brand-navy);
  outline: none;
  transition: border-color 0.2s;
}

.cb-field input:focus,
.cb-field textarea:focus,
.cb-field select:focus { border-bottom-color: var(--brand-lime); outline: none; }
.cb-field select { cursor: pointer; }

.cb-field textarea { resize: none; min-height: 88px; }

.cb-submit {
  margin-top: 1.5rem;
  width: 100%;
  background: var(--brand-lime);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.9rem 2rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.cb-submit:hover {
  background: #7db52e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(150,201,61,0.35);
}

.cb-form-error {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #e05252;
  text-align: center;
}

/* =========================================
   Footer
   ========================================= */
.site-footer {
  background: #0d1824;
  color: var(--white);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 5rem 1.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 3.5rem; }
}

.footer-logo { height: 36px; width: auto; display: block; margin-bottom: 1.25rem; filter: brightness(0) invert(1); }

.footer-tagline {
  color: rgba(255,255,255,0.48);
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 268px;
  margin-bottom: 2rem;
}

.footer-newsletter { }

.fn-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.fn-row {
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 0.75rem;
  transition: border-color 0.2s;
}

.fn-row:focus-within { border-color: rgba(150,201,61,0.5); }

.fn-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  padding: 0.72rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--white);
  outline: none;
}

.fn-input::placeholder { color: rgba(255,255,255,0.35); }

.fn-btn {
  background: var(--brand-lime);
  color: var(--white);
  border: none;
  padding: 0.72rem 1.35rem;
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 0 50px 50px 0;
  transition: background 0.2s;
}

.fn-btn:hover { background: #7db52e; }

.fn-fine {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.55;
}

.fn-fine a { color: rgba(255,255,255,0.52); text-decoration: underline; transition: color 0.2s; }
.fn-fine a:hover { color: rgba(255,255,255,0.8); }

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--brand-lime);
  display: inline-block;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.52);
  font-size: 0.9rem;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-col p {
  color: rgba(255,255,255,0.52);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Social links with icons */
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social-link:hover { color: var(--white); }

.fsl-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.footer-social-link:hover .fsl-icon {
  background: rgba(150,201,61,0.15);
  border-color: rgba(150,201,61,0.45);
  color: var(--brand-lime);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.75rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom > p {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
  margin: 0;
}

.footer-legal { display: flex; gap: 1.5rem; }

.footer-legal a {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--white); }

/* =========================================
   Scroll Reveal
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =========================================
   HEADER REDESIGN — 3-Zone Layout
   Logo LEFT · Nav CENTER · CTA RIGHT
   Matches Pickl Park structure with Cat 5 identity
   ========================================= */

/* Enhanced header background */
.site-header {
  background: linear-gradient(180deg, #19315f 0%, var(--brand-navy) 100%);
  border-bottom: 1px solid rgba(150, 201, 61, 0.18);
}

/* 3-zone grid on desktop */
@media (min-width: 768px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
  }

  /* Zone 1: Logo */
  .header-logo { grid-column: 1; }

  /* Zone 2: Nav — shrink to content, center in 1fr zone */
  .site-nav {
    grid-column: 2;
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    gap: 0;
    border-top: none;
    align-items: center;
    justify-content: center;
    justify-self: center;
    width: fit-content;
  }

  /* Zone 3: CTA */
  .header-cta-btn {
    grid-column: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--brand-lime);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    white-space: nowrap;
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
    box-shadow: 0 2px 12px rgba(150,201,61,0.3);
  }

  .header-cta-btn:hover {
    background: #7faa2d;
    box-shadow: 0 4px 20px rgba(150,201,61,0.45);
    transform: translateY(-1px);
  }

  .cta-arrow {
    display: inline-block;
    font-size: 0.95rem;
    transition: transform var(--transition);
    line-height: 1;
  }

  .header-cta-btn:hover .cta-arrow {
    transform: translate(2px, -2px);
  }

  /* Nav — no container border, links float freely */
  .site-nav {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    gap: 0.25rem;
  }

  /* Nav links — plain, title case, clean */
  .nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.01em;
    padding: 0.45rem 1rem;
    border-bottom: none;
    position: static;
    color: rgba(255,255,255,0.78);
    border-radius: 6px;
    transition: color var(--transition), background var(--transition);
  }

  .nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
  }

  .nav-link.active {
    color: var(--brand-lime);
    background: none;
    font-weight: 600;
  }

  /* Suppress old underline */
  .nav-link::after { display: none; }

}

/* Mobile: keep hamburger right, hide desktop CTA */
@media (max-width: 767px) {
  .header-cta-btn { display: none; }
}

/* Logo: white filter so icon is visible on dark navy header */
.header-logo img {
  height: 48px;
  filter: brightness(0) invert(1);
}

/* =========================================
   Nav Dropdown
   ========================================= */
.nav-dropdown { position: relative; }

/* Button reset so trigger inherits nav-link styles exactly */
.nav-dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  width: 100%; /* full-width tap target on mobile */
}

@media (min-width: 768px) { .nav-dropdown-trigger { width: auto; } }

/* CSS triangle chevron — font-agnostic, always renders */
.nav-chevron {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 0.2rem;
  position: relative;
  top: 1px;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.nav-dropdown.open .nav-chevron { transform: rotate(180deg); }

/* Dropdown card — desktop absolute */
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(150, 201, 61, 0.18);
  border-top: 2px solid var(--brand-lime);
  box-shadow: 0 10px 40px rgba(0,0,0,0.16), 0 0 0 0 rgba(150,201,61,0), 0 6px 24px rgba(150,201,61,0.08);
  min-width: 200px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s 0.22s;
  z-index: 500;
  pointer-events: none;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: auto;
}

.nav-dropdown-item {
  display: block;
  padding: 0.83rem 1.5rem;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}

.nav-dropdown-item:hover {
  background: var(--bg-light);
  color: var(--brand-navy);
  font-weight: 600;
}

/* Mobile: flat accordion expansion */
@media (max-width: 767px) {
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    background: rgba(255,255,255,0.05);
    min-width: auto;
    padding: 0;
    display: none;
    opacity: 1;
    visibility: visible;
    transition: none;
    pointer-events: auto;
    margin-bottom: 0.25rem;
  }

  .nav-dropdown.open .nav-dropdown-menu { display: block; }

  .nav-dropdown-item {
    color: rgba(255,255,255,0.68);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.4rem 0 0.4rem 1.25rem;
  }

  .nav-dropdown-item:hover {
    background: transparent;
    color: var(--brand-lime);
    font-weight: 600;
  }
}

/* =========================================
   Welcome 2-col with photo strip (Pickl Park layout)
   ========================================= */
.welcome-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: flex-start;
  max-width: var(--container);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .welcome-cols { grid-template-columns: 1.25fr 0.75fr; gap: 4rem; }
}

.welcome-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--brand-navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.welcome-text .underline-bar {
  width: 52px;
  height: 4px;
  background: var(--brand-lime);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.welcome-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.welcome-text .feature-list { margin: 1.25rem 0 2rem; }

/* =========================================
   Welcome Carousel
   ========================================= */
.welcome-carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 460px;
  background: var(--brand-navy);
  box-shadow: 0 12px 40px rgba(31,58,110,0.18);
}

.wc-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.wc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.wc-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.wc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient overlay at bottom for dots legibility */
.welcome-carousel::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(10,22,48,0.65) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.wc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, opacity 0.25s, transform 0.25s;
  z-index: 3;
  opacity: 0;
}

.welcome-carousel:hover .wc-btn { opacity: 1; }
.wc-btn:hover {
  background: rgba(150,201,61,0.3);
  border-color: rgba(150,201,61,0.5);
  transform: translateY(-50%) scale(1.08);
}

.wc-prev { left: 14px; }
.wc-next { right: 14px; }

.wc-dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
  z-index: 3;
}

.wc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.38);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s, width 0.25s;
}

.wc-dot.active {
  background: var(--brand-lime);
  transform: scale(1.25);
  width: 20px;
  border-radius: 4px;
}

/* =========================================
   Ways to Play icon-cards (dark section)
   ========================================= */
.ways-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: var(--container);
  margin: 0 auto;
}

@media (min-width: 640px)  { .ways-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ways-grid { grid-template-columns: repeat(3, 1fr); } }

.ways-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.ways-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.28);
}

.ways-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(150,201,61,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  color: var(--brand-lime);
}

.ways-card h3 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.65rem;
}

.ways-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: 1.5rem;
  line-height: 1.72;
}

.ways-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--brand-lime);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: 0 2px 12px rgba(150,201,61,0.3);
  margin-top: auto;
  align-self: stretch;
  justify-content: space-between;
}

.ways-card-link:hover {
  background: #7faa2d;
  box-shadow: 0 4px 20px rgba(150,201,61,0.45);
  transform: translateY(-1px);
}

.ways-card-link::after {
  content: '↗';
  font-size: 0.95rem;
  line-height: 1;
  transition: transform var(--transition);
}

.ways-card-link:hover::after { transform: translate(2px, -2px); }

/* =========================================
   Event Showcase Panels (host-an-event)
   ========================================= */
.event-showcase {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

@media (min-width: 768px) {
  .event-showcase { grid-template-columns: 58% 42%; min-height: 520px; }
  .event-showcase.es-reverse { grid-template-columns: 42% 58%; }
  .event-showcase.es-reverse .es-img { order: 2; }
  .event-showcase.es-reverse .es-content { order: 1; }
}

.es-img {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
.es-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.event-showcase:hover .es-img img { transform: scale(1.04); }

.es-content {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--brand-navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.es-content.es-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.es-ghost {
  font-family: var(--font-display);
  font-size: 14rem;
  color: var(--brand-lime);
  opacity: 0.05;
  line-height: 1;
  position: absolute;
  bottom: -3rem;
  right: -1rem;
  pointer-events: none;
}
.es-content.es-light .es-ghost { opacity: 0.08; color: var(--brand-navy); }

.es-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-lime);
  margin-bottom: 0.75rem;
}
.es-content.es-light .es-eyebrow { color: var(--brand-lime); }

.es-content h3 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1rem;
  color: var(--white);
}
.es-content.es-light h3 { color: var(--brand-navy); }

.es-content p { color: rgba(255,255,255,0.72); font-size: 0.95rem; line-height: 1.78; margin-bottom: 0.75rem; }
.es-content.es-light p { color: var(--text-light); }

.es-features {
  list-style: none;
  margin: 1rem 0 2rem;
}
.es-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.3rem 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.es-features li::before {
  content: '—';
  color: var(--brand-lime);
  flex-shrink: 0;
  font-weight: 700;
}
.es-content.es-light .es-features li { color: var(--text-light); }

/* Venue stat chips */
.venue-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.venue-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand-navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  text-transform: uppercase;
}
.venue-chip-icon {
  width: 28px;
  height: 28px;
  background: var(--brand-lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* =========================================
   Upcoming Events — enhanced cards
   ========================================= */
.event-card-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .event-card-list { grid-template-columns: repeat(3, 1fr); }
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.14); }

.event-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.event-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.event-card:hover .event-card-img img { transform: scale(1.05); }

.event-card-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--brand-lime);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
}

.event-card-body {
  padding: 1.4rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.event-card-type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}
.event-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brand-navy);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  line-height: 1.1;
}
.event-card-body p { font-size: 0.88rem; color: var(--text-light); flex: 1; margin-bottom: 1.25rem; }
.event-card-body .btn { align-self: flex-start; }

/* Featured event block */
.featured-event {
  background: var(--brand-navy);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  max-width: 860px;
  margin: 0 auto 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.featured-event::before {
  content: '★';
  font-size: 14rem;
  color: var(--brand-lime);
  opacity: 0.04;
  position: absolute;
  right: -2rem;
  top: -3rem;
  line-height: 1;
  pointer-events: none;
}
.featured-event-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-lime);
  margin-bottom: 0.5rem;
}
.featured-event h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1rem;
}
.featured-event p { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 1.5rem; font-size: 0.95rem; }
.featured-event-code {
  display: inline-block;
  background: var(--brand-lime);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.4rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.75rem;
}

/* =========================================
   Membership Tiers (shared: index + memberships page)
   ========================================= */
.mem-section { background: var(--brand-navy); padding: 4rem 1.5rem; }

/* Inner wrapper */
.mem-inner { max-width: 900px; margin: 0 auto; }

/* Header */
.mem-header { text-align: center; margin-bottom: 2.5rem; }
.mem-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.mem-subhead { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-bottom: 2rem; }

/* Toggle pill */
.mem-toggle {
  display: inline-flex;
  align-items: center;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 5px;
  gap: 4px;
}
.mem-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.75rem;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.mem-toggle-btn.active {
  background: var(--brand-lime);
  color: var(--white);
}
.mem-toggle-btn:not(.active):hover { color: rgba(255,255,255,0.78); }

.mem-save-pill {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75);
  padding: 0.15rem 0.55rem;
  border-radius: 50px;
  white-space: nowrap;
}
.mem-toggle-btn.active .mem-save-pill {
  background: rgba(255,255,255,0.28);
  color: var(--white);
}

/* Panels */
.mem-panel { display: none; }
.mem-panel.active {
  display: block;
  animation: mem-slide-in 0.32s ease;
}
@keyframes mem-slide-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mem-tier {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  max-width: 900px;
  margin: 0 auto 2rem;
  text-align: center;
}

.mem-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(150,201,61,0.18);
  border: 1px solid rgba(150,201,61,0.35);
  color: #b2e05a;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.9rem;
}
.mem-tier-badge::before { content: '•'; font-size: 1rem; }

.mem-tier-note {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-bottom: 1.75rem;
  text-align: center;
}

.mem-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  text-align: left;
}
@media (max-width: 680px) { .mem-cards { grid-template-columns: 1fr; } }
.mem-cards--single { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

.mem-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.mem-card-badge {
  display: inline-block;
  background: var(--brand-lime);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.22rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.9rem;
  align-self: flex-start;
}

.mem-card-title {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: none;
  margin-bottom: 0.35rem;
}

.mem-card-price {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 0.15rem;
}
.mem-card-price span { font-size: 1rem; font-weight: 500; color: var(--text-light); }

.mem-card-sub {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.mem-features {
  list-style: none;
  margin-bottom: 1.5rem;
  flex: 1;
}
.mem-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.38rem 0;
  font-size: 0.875rem;
  color: #444;
  border-bottom: 1px solid #f2f2f2;
}
.mem-features li:last-child { border-bottom: none; }
.mem-features li::before {
  content: '✓';
  color: var(--brand-lime);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05em;
}

.mem-cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--brand-lime);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.78rem 1.1rem;
  border-radius: 50px;
  transition: background 0.25s ease;
  margin-top: auto;
}
.mem-cta-btn:hover { background: #7faa2d; }
.mem-cta-btn::after {
  content: '↗';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.mem-tier-footer {
  color: rgba(255,255,255,0.42);
  font-size: 0.78rem;
  margin-top: 1.5rem;
  text-align: center;
}

/* ── Summer Membership Card ──────────────────────────────── */
.mem-card--summer {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #E86B00 0%, #FFB800 55%, #FFD84D 100%);
  border-radius: 18px;
  padding: 2rem 2.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2.5rem;
  align-items: start;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(232,107,0,0.35);
}
.mem-card--summer::before,
.mem-card--summer::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.mem-card--summer::before {
  width: 260px; height: 260px;
  top: -80px; right: -60px;
  background: rgba(255,255,255,0.10);
}
.mem-card--summer::after {
  width: 180px; height: 180px;
  bottom: -70px; left: 30%;
  background: rgba(255,255,255,0.06);
}
.summer-card-left { display: flex; flex-direction: column; }
.summer-card-right { display: flex; flex-direction: column; }
.summer-badge-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}
.summer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(0,0,0,0.18);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.summer-expiry {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255,255,255,0.22);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}
.mem-card--summer .mem-card-title {
  color: #fff;
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}
.mem-card--summer .mem-card-price {
  color: #fff;
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.15rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.mem-card--summer .mem-card-price span {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}
.mem-card--summer .mem-card-sub {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  margin-bottom: 0;
  margin-top: 0.25rem;
}
.mem-card--summer .mem-features {
  margin-bottom: 1.25rem;
  flex: 1;
}
.mem-card--summer .mem-features li {
  color: rgba(255,255,255,0.95);
  border-bottom-color: rgba(255,255,255,0.18);
  font-weight: 500;
}
.mem-card--summer .mem-features li::before {
  color: #fff;
}
.mem-cta-btn--navy {
  background: #1F3A6E;
  color: #fff;
  margin-top: 0;
}
.mem-cta-btn--navy:hover { background: #152d5a; }
@media (max-width: 680px) {
  .mem-card--summer {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* =========================================
   Frictionless Booking section
   ========================================= */
.fr-section {
  background: var(--white);
  padding: 4rem 1.5rem;
  border-top: 1px solid #eef0f4;
}
.fr-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) {
  .fr-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .fr-phone-wrap { display: flex; justify-content: center; }
}

.fr-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-navy);
  margin-bottom: 2rem;
  line-height: 1.05;
}
.fr-lime { color: var(--brand-lime); }

.fr-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 2rem; }
.fr-step {
  padding: 1rem 0 1rem 1.25rem;
  border-left: 3px solid #e8eaf0;
  transition: border-color 0.2s;
}
.fr-step--active { border-left-color: var(--brand-lime); }
.fr-step h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}
.fr-step p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin: 0; }

.fr-sub {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0.85rem;
}

.fr-store-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.fr-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border: 1.5px solid var(--brand-navy);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-navy);
  transition: all 0.18s;
}
.fr-store-btn:hover { background: var(--brand-navy); color: var(--white); }

/* App demo video */
.fr-video-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fr-video {
  max-height: 420px;
  width: auto;
  max-width: 100%;
  display: block;
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0px, black 80px, black calc(100% - 80px), transparent 100%),
    linear-gradient(to bottom, transparent 0px, black 80px, black calc(100% - 80px), transparent 100%);
  mask-image:
    linear-gradient(to right,  transparent 0px, black 80px, black calc(100% - 80px), transparent 100%),
    linear-gradient(to bottom, transparent 0px, black 80px, black calc(100% - 80px), transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

/* =========================================
   Find Us section (homepage)
   ========================================= */
.find-us-section {
  background: var(--brand-navy);
  padding: 5rem 1.5rem 4rem;
}

.find-us-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto 3rem;
  align-items: start;
}
@media (max-width: 680px) {
  .find-us-top { grid-template-columns: 1fr; gap: 2rem; }
}

.find-us-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.find-us-items { display: flex; flex-direction: column; gap: 1.5rem; }

.find-us-item { display: flex; align-items: flex-start; gap: 0.9rem; }

.find-us-item-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--brand-lime);
  margin-top: 0.1rem;
}

.find-us-item-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.2rem;
}

.find-us-item-value {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  line-height: 1.5;
}
.find-us-item-value a { color: var(--brand-lime); font-weight: 600; }
.find-us-item-value a:hover { text-decoration: underline; }

.find-us-map {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}
.find-us-map iframe { display: block; width: 100%; height: 380px; border: 0; }

/* =========================================
   Combined Events + Host Section
   ========================================= */
.combined-section {
  background: var(--white);
  padding: 5rem 1.5rem 4.5rem;
  position: relative;
  overflow: hidden;
  color: var(--text-dark);
}

.cs-ghost {
  position: absolute;
  font-family: var(--font-display);
  font-size: 22rem;
  color: rgba(31,58,110,0.04);
  top: -3rem;
  right: -3rem;
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

.cs-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}
.cs-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-lime);
  margin-bottom: 0.65rem;
}
.cs-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-transform: uppercase;
  line-height: 1;
  color: var(--brand-navy);
  margin-bottom: 0.75rem;
}
.cs-header h2 .lime { color: var(--brand-lime); }
.cs-header p { color: var(--text-light); font-size: 0.95rem; }

/* Bento grid */
.cs-bento {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.85rem;
  max-width: var(--container);
  margin: 0 auto 0.85rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .cs-bento { grid-template-columns: 1fr; grid-template-rows: auto; }
}

/* Featured card */
.cs-card-featured {
  grid-row: 1 / 3;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  min-height: 440px;
}
.cs-card-featured .cs-img {
  position: absolute;
  inset: 0;
}
.cs-card-featured .cs-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.cs-card-featured:hover .cs-img img { transform: scale(1.06); }
.cs-card-featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,27,58,0.97) 0%, rgba(15,27,58,0.45) 55%, transparent 100%);
  pointer-events: none;
}
.cs-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 2rem 2.25rem;
  z-index: 1;
}
.cs-overlay h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.5rem;
}
.cs-overlay p { color: rgba(255,255,255,0.72); font-size: 0.9rem; margin-bottom: 1.1rem; }

/* Small cards */
.cs-card-small {
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 130px 1fr;
  background: var(--bg-light);
  border: 1px solid var(--border);
  transition: background 0.25s ease, border-color 0.25s ease;
}
@media (max-width: 480px) { .cs-card-small { grid-template-columns: 100px 1fr; } }
.cs-card-small:hover {
  background: #eef4e6;
  border-color: rgba(150,201,61,0.5);
}
.cs-card-small .cs-img { overflow: hidden; }
.cs-card-small .cs-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cs-card-small:hover .cs-img img { transform: scale(1.07); }
.cs-card-body {
  padding: 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cs-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--brand-navy);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.cs-card-body p { color: var(--text-light); font-size: 0.82rem; margin-bottom: 0.85rem; flex: 1; }

/* Shared badge */
.cs-badge {
  display: inline-block;
  background: var(--brand-lime);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.18rem 0.65rem;
  border-radius: 50px;
  margin-bottom: 0.55rem;
}

.cs-type {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.35rem;
}

/* CTA buttons */
.cs-btn {
  display: inline-flex;
  align-items: center;
  background: var(--brand-lime);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  transition: background 0.22s ease;
  align-self: flex-start;
}
.cs-btn:hover { background: #7faa2d; }

.cs-link {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-lime);
  align-self: flex-start;
  transition: letter-spacing 0.2s ease;
}
.cs-link:hover { letter-spacing: 0.15em; }

/* Host Band */
.cs-host {
  display: grid;
  grid-template-columns: 50% 50%;
  border-radius: 14px;
  overflow: hidden;
  max-width: var(--container);
  margin: 0 auto;
  min-height: 320px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) { .cs-host { grid-template-columns: 1fr; } }

.cs-host-img { position: relative; overflow: hidden; min-height: 240px; }
.cs-host-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.cs-host:hover .cs-host-img img { transform: scale(1.04); }
.cs-host-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,27,58,0.3);
}

.cs-host-content {
  padding: 3rem 2.75rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-left: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.cs-host-ghost {
  font-family: var(--font-display);
  font-size: 9rem;
  color: rgba(150,201,61,0.06);
  position: absolute;
  bottom: -1.5rem;
  right: -0.5rem;
  line-height: 1;
  pointer-events: none;
}
.cs-host-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  text-transform: uppercase;
  color: var(--brand-navy);
  line-height: 1.05;
  margin-bottom: 0.75rem;
  position: relative;
}
.cs-host-content p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 0; position: relative; }

.cs-host-list {
  list-style: none;
  margin: 1rem 0 1.75rem;
  position: relative;
}
.cs-host-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-light);
  padding: 0.22rem 0;
}
.cs-host-list li::before { content: '—'; color: var(--brand-lime); font-weight: 700; }

/* Footer row */
.cs-footer {
  text-align: center;
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
}
.cs-footer-line {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  margin-bottom: 1.25rem;
}
.cs-footer-line::before,
.cs-footer-line::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

/* =========================================
   Court & Open Play Pricing section
   ========================================= */
.pricing-section { background: #f0ede7; padding: 5rem 1.5rem; }

.pricing-section .section-header h2 { color: var(--text-dark); font-family: var(--font-body); font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; text-transform: none; letter-spacing: 0; }
.pricing-section .section-header p { font-style: italic; }

.pricing-cards-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 680px) { .pricing-cards-wrap { grid-template-columns: 1fr; } }

.pricing-card-block {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 2rem 1.75rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}

.pricing-card-title {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.pricing-card-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.pricing-row {
  padding: 0.85rem 0 0;
  border-top: 1px solid #f2f2f2;
}

.pricing-row-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.pricing-row-label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.pricing-row-price {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-dark);
  white-space: nowrap;
  flex-shrink: 0;
}
.pricing-row-price sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
  vertical-align: baseline;
}

.pricing-row-sub {
  font-size: 0.77rem;
  color: var(--text-light);
  margin-top: 0.15rem;
  padding-bottom: 0.5rem;
}

.pricing-info-pill {
  display: block;
  background: rgba(150,201,61,0.1);
  border: 1px solid rgba(150,201,61,0.28);
  color: #3a5c12;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.58;
  padding: 0.65rem 0.95rem;
  border-radius: 8px;
  margin-top: 1.25rem;
}
.pricing-info-pill strong { font-weight: 700; }


/* =========================================
   Upcoming Events — page-specific
   ========================================= */
.event-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.event-date-badge {
  background: var(--brand-lime);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}
.event-type {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.all-events-link { text-align: center; margin-top: 3rem; }
.highlight-box {
  background: linear-gradient(135deg, var(--brand-navy) 0%, #2a4d8e 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.highlight-box::before {
  content: '🎉';
  position: absolute;
  font-size: 8rem;
  opacity: 0.06;
  right: -1rem;
  top: -1rem;
}
.highlight-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.highlight-box .date-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-lime);
  font-weight: 700;
  margin-bottom: 1rem;
}
.highlight-box p { color: rgba(255,255,255,0.8); max-width: 500px; margin: 0 auto 1.5rem; }
.code-pill {
  display: inline-block;
  background: var(--brand-lime);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  padding: 0.4rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

/* =========================================
   Privacy Policy (privacy-policy.html)
   ========================================= */
.policy-wrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  max-width: 1080px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
  align-items: start;
}
@media (max-width: 900px) {
  .policy-wrap { grid-template-columns: 1fr; gap: 0; padding: 2.5rem 1.25rem 4rem; }
  .policy-toc  { display: none; }
}
.policy-toc {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}
.ptoc-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.85rem;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid var(--brand-lime);
}
.ptoc-list { list-style: none; padding: 0; margin: 0; }
.ptoc-list li { margin-bottom: 0.1rem; }
.ptoc-list a {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-light);
  text-decoration: none;
  padding: 0.32rem 0.65rem;
  border-radius: 4px;
  border-left: 2px solid transparent;
  transition: all 0.18s;
  line-height: 1.4;
}
.ptoc-list a:hover {
  color: var(--brand-navy);
  background: rgba(150,201,61,0.09);
  border-left-color: var(--brand-lime);
}
.policy-body { min-width: 0; }
.policy-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(150,201,61,0.1);
  border: 1px solid rgba(150,201,61,0.28);
  border-radius: 100px;
  padding: 0.28rem 0.9rem;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-navy);
  margin-bottom: 2rem;
}
.policy-meta::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-lime);
  flex-shrink: 0;
}
.policy-intro { font-size: 0.97rem; color: var(--text-dark); line-height: 1.82; margin-bottom: 0.85rem; }
.policy-intro strong { color: var(--brand-navy); }
.policy-intro-list { margin: 0.6rem 0 1rem 1.4rem; }
.policy-intro-list li { font-size: 0.95rem; color: var(--text-dark); line-height: 1.75; margin-bottom: 0.45rem; }
.policy-section {
  margin-top: 2.75rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  scroll-margin-top: calc(var(--header-h) + 2rem);
}
.policy-section h2 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-navy);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.policy-section h2::before {
  content: '';
  width: 3px; height: 1.1em;
  background: var(--brand-lime);
  border-radius: 2px;
  flex-shrink: 0;
}
.policy-section p { font-size: 0.95rem; color: var(--text-dark); line-height: 1.82; margin-bottom: 0.85rem; }
.policy-section p:last-child { margin-bottom: 0; }
.policy-section ul { margin: 0.6rem 0 1rem 1.4rem; }
.policy-section ul li { font-size: 0.95rem; color: var(--text-dark); line-height: 1.75; margin-bottom: 0.5rem; }
.policy-section ul li strong { color: var(--brand-navy); }
.policy-link {
  color: var(--brand-navy);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(150,201,61,0.45);
  transition: color 0.18s, border-color 0.18s;
}
.policy-link:hover { color: #5c8a1e; border-bottom-color: var(--brand-lime); }

/* =========================================
   Booking App (booking-app.html)
   ========================================= */
.app-notice {
  background: linear-gradient(135deg, var(--brand-lime) 0%, #7faa2d 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.app-notice h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.app-notice p { color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; }
.podplay-logo-area { max-width: 500px; margin: 0 auto 2rem; text-align: center; }
.podplay-logo-area p { font-size: 1.1rem; color: var(--text-light); margin-top: 1rem; }
.features-list-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  max-width: 700px;
  margin: 0 auto;
}
@media (min-width: 640px) { .features-list-2col { grid-template-columns: 1fr 1fr; } }
.features-list-2col li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text-dark);
}
.features-list-2col li::before { content: '✓'; color: var(--brand-lime); font-weight: 700; flex-shrink: 0; }
.quick-links-bar { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.5rem; }
