/* ============================================================
   CAPITAL BLASTERS — style.css
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* --- Variables --- */
:root {
  --orange:      #F47C2D;
  --orange-dark: #D86A1C;
  --navy:        #0D1B2A;
  --navy-mid:    #16263D;
  --white:       #FFFFFF;
  --light:       #F8F9FA;
  --text:        #1F2937;
  --muted:       #6B7280;
  --border:      #E5E7EB;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 4px 16px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.14);
}

/* --- Container --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-nav {
  background: var(--orange);
  color: var(--white) !important;
  border-color: var(--orange);
  padding: 10px 22px;
  font-size: 0.9rem;
}
.btn-nav:hover { background: var(--orange-dark); }

/* --- Section Common --- */
section { padding: 88px 0; }
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
h2 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 580px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.9rem;
  color: var(--white);
  letter-spacing: 0.04em;
}
.nav-brand span { color: var(--orange); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--navy);
  padding: 8px 24px 24px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,0.8);
  padding: 13px 0;
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--orange); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,42,0.88) 0%,
    rgba(13,27,42,0.65) 50%,
    rgba(13,27,42,0.40) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.hero-content h1 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(3.6rem, 9vw, 6.8rem);
  color: var(--white);
  line-height: 0.94;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.hero-tagline {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   WHY US
   ============================================================ */
#why-us {
  background: var(--navy);
  padding: 64px 0;
}
.cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform 0.25s, border-color 0.25s;
}
.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244,124,45,0.5);
}
.why-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.why-card h3 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.55rem;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.why-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#how-it-works { background: var(--light); }
#how-it-works h2,
#how-it-works .section-label { text-align: center; }
#how-it-works .section-sub { text-align: center; margin: 0 auto 52px; }
.steps { display: flex; flex-direction: column; gap: 24px; }
.step {
  display: grid;
  grid-template-columns: 72px 1fr 200px;
  gap: 28px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s;
}
.step:hover { box-shadow: var(--shadow-md); }
.step-num {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 4.5rem;
  color: var(--orange);
  opacity: 0.35;
  line-height: 1;
  text-align: center;
}
.step-text h3 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.55rem;
  color: var(--navy);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.step-text p { color: var(--muted); line-height: 1.7; font-size: 0.95rem; }
.step-img {
  width: 200px;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
}

/* ============================================================
   WHERE WE PLAY
   ============================================================ */
#where-we-play { background: var(--white); }
#where-we-play h2,
#where-we-play .section-label { text-align: center; }
#where-we-play .section-sub { text-align: center; margin: 0 auto 48px; }
.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.venue-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 340px;
}
.venue-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.venue-card:hover img { transform: scale(1.06); }
.venue-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.15) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}
.venue-overlay h3 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.venue-overlay p { color: rgba(255,255,255,0.78); font-size: 0.88rem; line-height: 1.6; }

/* ============================================================
   WHAT'S INCLUDED
   ============================================================ */
#whats-included { background: var(--navy); }
.included-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
#whats-included .section-label { color: var(--orange); }
#whats-included h2 { color: var(--white); }
.included-desc {
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.7;
}
.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255,255,255,0.82);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.94rem;
  line-height: 1.55;
}
.included-list li:last-child { border-bottom: none; }
.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.7rem;
  color: var(--white);
}
.included-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 460px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

/* ============================================================
   PACKAGES
   ============================================================ */
#packages { background: var(--light); }
#packages h2,
#packages .section-label { text-align: center; }
#packages .section-sub { text-align: center; margin: 0 auto 48px; }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
  align-items: start;
}
.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  position: relative;
  border: 2px solid transparent;
  transition: transform 0.25s;
}
.package-card:hover { transform: translateY(-5px); }
.package-card.featured {
  background: var(--navy);
  border-color: var(--orange);
  padding-top: 48px;
}
.package-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.package-card h3 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  color: var(--navy);
}
.package-card.featured h3 { color: var(--white); }
.package-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 2px;
  line-height: 1;
}
.package-details {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.package-card.featured .package-details { color: rgba(255,255,255,0.45); }
.package-features { margin-bottom: 28px; }
.package-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.package-card.featured .package-features li {
  color: rgba(255,255,255,0.8);
  border-bottom-color: rgba(255,255,255,0.09);
}
.package-features li:last-child { border-bottom: none; }
.package-features li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}
.package-card .btn { width: 100%; text-align: center; }
.packages-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}
.packages-note a { color: var(--orange); }
.packages-note a:hover { text-decoration: underline; }

/* ============================================================
   GALLERY
   ============================================================ */
#gallery { background: var(--white); }
#gallery h2,
#gallery .section-label { text-align: center; }
#gallery h2 { margin-bottom: 40px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.3s, opacity 0.3s;
  cursor: zoom-in;
}
.gallery-grid img:hover { transform: scale(1.03); opacity: 0.92; }
.gallery-grid img:nth-child(1) { grid-column: span 2; height: 290px; }
.gallery-grid img:nth-child(7) { grid-column: span 2; }

/* ============================================================
   FAQ
   ============================================================ */
#faq { background: var(--light); }
#faq h2,
#faq .section-label { text-align: center; }
#faq h2 { margin-bottom: 40px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text);
  gap: 16px;
  user-select: none;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  font-size: 1.5rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-weight: 300;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}
.faq-item.open .faq-answer { max-height: 260px; }
.faq-answer p {
  padding-bottom: 20px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.94rem;
}

/* ============================================================
   QUOTE FORM
   ============================================================ */
#quote { background: var(--navy); }
.quote-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.quote-intro .section-label { color: var(--orange); }
.quote-intro h2 { color: var(--white); }
.quote-intro > p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  line-height: 1.75;
  font-size: 0.95rem;
}
.contact-items { margin-top: 36px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.75);
  font-size: 0.94rem;
  line-height: 1.5;
}
.contact-item strong { color: var(--white); display: block; }
.contact-emoji { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.quote-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.94rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: auto;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,124,45,0.12);
}
.form-group textarea { resize: vertical; min-height: 96px; }
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 4px;
}
.form-submit:hover { background: var(--orange-dark); transform: translateY(-1px); }
.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.form-success p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #07101A; padding: 56px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}
.footer-brand-name {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.9rem;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.footer-brand-name span { color: var(--orange); }
.footer-brand p {
  color: rgba(255,255,255,0.42);
  font-size: 0.87rem;
  line-height: 1.65;
  max-width: 240px;
  margin-bottom: 6px;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.58);
  font-size: 0.87rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-col p {
  color: rgba(255,255,255,0.58);
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { color: rgba(255,255,255,0.28); font-size: 0.78rem; }

/* --- Pre-launch banner --- */
.pre-launch-banner {
  background: #FFF8E1;
  border-bottom: 2px solid #FFC107;
  color: #7B5800;
  padding: 10px 20px;
  font-size: 0.82rem;
  text-align: center;
}
.pre-launch-banner strong { font-weight: 700; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .safety-grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 900px) {
  .venue-grid { grid-template-columns: 1fr 1fr; }
  .venue-grid .venue-card:last-child { grid-column: span 2; }
  .packages-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto 28px; }
  .step { grid-template-columns: 56px 1fr; }
  .step-img { display: none; }
  .included-layout { grid-template-columns: 1fr; }
  .included-image { order: -1; }
  .included-image img { height: 280px; }
  .quote-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .safety-grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content h1 { font-size: 3.4rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }
  .cards-3 { grid-template-columns: 1fr; }
  .steps { gap: 16px; }
  .step { grid-template-columns: 48px 1fr; gap: 16px; padding: 24px 20px; }
  .step-num { font-size: 3rem; }
  .venue-grid { grid-template-columns: 1fr; }
  .venue-grid .venue-card:last-child { grid-column: span 1; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-grid img { height: 160px; }
  .gallery-grid img:nth-child(1) { height: 200px; }
  .gallery-grid img:nth-child(7) { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .quote-form-wrap { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .safety-grid { grid-template-columns: 1fr; gap: 16px; }
  .waiver-form-cols { grid-template-columns: 1fr; }
  .waiver-meta-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SAFETY SECTION
   ============================================================ */
#safety { background: var(--white); }
#safety h2,
#safety .section-label { text-align: center; }
#safety .section-sub { text-align: center; margin: 0 auto 48px; }
.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.safety-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
  overflow: hidden;
}
.safety-item > div { min-width: 0; }
.safety-item:hover {
  border-color: rgba(244,124,45,0.4);
  transform: translateY(-3px);
}
.safety-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.safety-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.safety-item p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}
.safety-waiver-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--orange);
  transition: color 0.2s;
}
.safety-waiver-link:hover { color: var(--orange-dark); text-decoration: underline; }

@media (max-width: 900px) {
  .safety-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   WAIVER PAGE
   ============================================================ */
.waiver-page-nav {
  background: var(--navy);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}
.waiver-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.waiver-hero {
  background: var(--navy);
  padding: 72px 0 56px;
  text-align: center;
}
.waiver-hero h1 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.waiver-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.waiver-warning {
  background: #FFF3CD;
  border: 2px solid #FFC107;
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-bottom: 32px;
  font-size: 0.88rem;
  color: #7B5800;
  text-align: center;
}
.waiver-warning strong { font-weight: 700; }
.waiver-body {
  background: var(--light);
  padding: 56px 0;
}
.waiver-layout {
  max-width: 860px;
  margin: 0 auto;
}
.waiver-legal-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-bottom: 36px;
  max-height: 380px;
  overflow-y: auto;
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--text);
  scroll-behavior: smooth;
}
.waiver-legal-box::-webkit-scrollbar { width: 6px; }
.waiver-legal-box::-webkit-scrollbar-track { background: var(--light); }
.waiver-legal-box::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.waiver-legal-box h2 {
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin: 20px 0 6px;
  letter-spacing: 0;
}
.waiver-legal-box h2:first-child { margin-top: 0; }
.waiver-legal-box p { margin-bottom: 10px; }
.waiver-legal-box ol,
.waiver-legal-box ul { padding-left: 20px; margin-bottom: 10px; }
.waiver-legal-box li { margin-bottom: 4px; }
.waiver-legal-scroll-hint {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.waiver-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.waiver-section-title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.4rem;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light);
}
.waiver-form-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.waiver-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.waiver-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}
.minor-toggle-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
}
.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.25s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.25s;
}
.toggle-switch input:checked + .toggle-slider { background: var(--orange); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }
.minors-section { display: none; }
.minors-section.visible { display: block; }
.minor-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 12px;
}
.btn-remove-minor {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--muted);
  cursor: pointer;
  font-size: 1rem;
  transition: border-color 0.2s, color 0.2s;
  line-height: 1;
}
.btn-remove-minor:hover { border-color: #dc3545; color: #dc3545; }
.btn-add-minor {
  background: none;
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  padding: 10px 18px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  margin-top: 4px;
}
.btn-add-minor:hover { border-color: var(--orange); color: var(--orange); }
.sig-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.sig-clear-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: underline;
  display: none;
}
.sig-clear-btn:hover { color: #dc3545; }
.sig-wrap {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: #fafafa;
  position: relative;
  height: 160px;
  cursor: crosshair;
  transition: border-color 0.2s;
  overflow: hidden;
}
.sig-wrap:hover { border-color: #adb5bd; }
.sig-wrap.error { border-color: #dc3545; }
.sig-wrap.signed { border-color: var(--orange); }
.sig-canvas {
  width: 100%;
  height: 100%;
  touch-action: none;
  display: block;
}
.sig-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ced4da;
  font-size: 1rem;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.sig-hint {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 6px;
}
.sig-error-msg {
  display: none;
  color: #dc3545;
  font-size: 0.82rem;
  margin-top: 6px;
}
.waiver-checks { display: flex; flex-direction: column; gap: 14px; }
.waiver-check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.55;
}
.waiver-check-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--orange);
  cursor: pointer;
}
.waiver-check-row a { color: var(--orange); text-decoration: underline; }
.waiver-submit {
  width: 100%;
  padding: 16px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 24px;
}
.waiver-submit:hover { background: var(--orange-dark); transform: translateY(-1px); }
.waiver-submit:disabled { background: var(--border); cursor: not-allowed; transform: none; }
.waiver-success {
  display: none;
  text-align: center;
  padding: 56px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.waiver-success .success-icon { font-size: 3.5rem; margin-bottom: 20px; }
.waiver-success h2 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 12px;
  text-align: center;
}
.waiver-success p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 8px; }
.waiver-success .back-btn { margin-top: 24px; display: inline-block; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
  user-select: none;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  padding: 4px 8px;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: var(--radius);
  opacity: 0.7;
  transition: opacity 0.2s, background 0.2s;
  user-select: none;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; background: rgba(255,255,255,0.2); }
@media (max-width: 640px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-prev, .lightbox-next { font-size: 1.8rem; padding: 8px 12px; }
}
