/* ══════════════════════════════════════════
   SMOKED MEATFEST 2026 — "Modern Smoke"
   Dark base, brand colors as interactive accents
   ══════════════════════════════════════════ */

:root {
  --base-darkest: #0F0F0F;
  --base-dark: #141414;
  --surface: #1E1E1E;
  --surface-hover: #262626;
  --surface-light: #2A2A2A;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(27,42,74,0.7);
  --red: #B22234;
  --red-hover: #8B1A28;
  --red-glow: rgba(178,34,52,0.3);
  --navy: #1B2A4A;
  --navy-light: #2A4070;
  --navy-glow: rgba(27,42,74,0.6);
  --gold: #D4942A;
  --text-primary: #F0EDE8;
  --text-secondary: #A0A0A0;
  --text-muted: #717171;
  --white: #FFFFFF;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-secondary);
  background: var(--base-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--base-darkest);
  padding: 0 2rem;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-logo img {
  width: 42px;
  height: 42px;
}

.header-logo-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.header-logo-text span { color: var(--red); }

nav { display: flex; align-items: center; gap: 0; }

.nav-item {
  position: relative;
  padding: 0 1rem;
}

.nav-item > a {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 24px 0;
}
.nav-item > a:hover { color: var(--white); }

.nav-item > a .arrow {
  font-size: 0.6rem;
  transition: transform 0.3s;
}
.nav-item:hover > a .arrow { transform: rotate(180deg); }

/* ── DROPDOWN MENUS (Reference-style hover) ── */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.nav-item:hover .dropdown { display: block; }

.dropdown-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--red);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px 4px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  margin: 2px 6px;
  border-radius: 4px;
}
.dropdown-item:hover {
  background: var(--surface-hover);
  border-left-color: var(--navy-light);
}

.dropdown-item .dd-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dropdown-item .dd-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 1.5;
  transition: stroke 0.3s ease;
}
.dropdown-item:hover .dd-icon svg { stroke: var(--red); }

.dropdown-item .dd-text { flex: 1; }
.dropdown-item .dd-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: block;
  transition: color 0.3s ease;
}
.dropdown-item:hover .dd-title { color: var(--white); }

.dropdown-item .dd-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  transition: color 0.3s ease;
}
.dropdown-item:hover .dd-desc { color: var(--text-secondary); }

.btn-register {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  background: var(--red);
  border: none;
  padding: 10px 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  margin-left: 1rem;
}
.btn-register:hover {
  background: var(--red-hover);
  box-shadow: 0 0 20px var(--red-glow);
}

.mobile-menu { display: none; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--base-dark);
}

/* Subtle smoke gradient animation */
.hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(178,34,52,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(212,148,42,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(27,42,74,0.05) 0%, transparent 40%);
  animation: smokeFloat 25s ease-in-out infinite;
}

@keyframes smokeFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(20px, -15px) rotate(0.5deg); }
  66% { transform: translate(-15px, 10px) rotate(-0.5deg); }
}

.smoke-wisp {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: wispFloat 18s ease-in-out infinite;
}
.smoke-wisp-1 { background: var(--red); width: 300px; height: 300px; top: 10%; left: 8%; opacity: 0.05; }
.smoke-wisp-2 { background: var(--gold); width: 200px; height: 200px; bottom: 20%; right: 12%; opacity: 0.04; animation-delay: -6s; }
.smoke-wisp-3 { background: var(--navy-light); width: 250px; height: 250px; top: 50%; left: 50%; opacity: 0.04; animation-delay: -12s; }

@keyframes wispFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero-logo-img {
  width: clamp(200px, 32vw, 280px);
  height: auto;
  filter: drop-shadow(0 4px 30px rgba(0,0,0,0.5));
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero-date {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--text-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.hero-location {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 2.5rem;
}

.hero-cta {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  background: var(--red);
  border: none;
  padding: 16px 52px;
  text-transform: uppercase;
  letter-spacing: 3px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.hero-cta:hover {
  background: var(--red-hover);
  box-shadow: 0 0 30px var(--red-glow);
  transform: translateY(-2px);
}

.hero-brought-by {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.brought-by-text {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.brought-by-logo {
  width: 100px;
  height: auto;
  opacity: 0.4;
  transition: opacity 0.3s;
  filter: brightness(1.3);
}
.brought-by-logo:hover { opacity: 0.8; }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 0.7rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bounceDown 2.5s ease-in-out infinite;
  opacity: 0.4;
}
.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: var(--text-muted);
  margin: 6px auto 0;
  opacity: 0.3;
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── SECTIONS ── */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--red);
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.section-alt { background: var(--base-darkest); }

/* Thin divider between sections */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

/* ── EVENT SNAPSHOT CARDS ── */
.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.snapshot-card {
  background: var(--surface);
  border-radius: 10px;
  padding: 2rem 1.8rem;
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}
.snapshot-card:hover {
  border-left-color: var(--navy-light);
  background: var(--surface-hover);
}

.snapshot-icon {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.snapshot-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 1.5;
  transition: stroke 0.3s ease;
}
.snapshot-card:hover .snapshot-icon svg { stroke: var(--red); }

.snapshot-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 0.2rem;
  transition: color 0.3s ease;
}
.snapshot-card:hover h3 { color: var(--white); }

.snapshot-card .highlight {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.snapshot-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── MERCH ── */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.merch-card {
  background: var(--surface);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.merch-card:hover {
  border-color: var(--navy-light);
  box-shadow: 0 0 20px var(--navy-glow);
}

.merch-image {
  height: 260px;
  background: linear-gradient(135deg, var(--surface), var(--base-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.merch-image::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 140px;
  border: 2px solid var(--border);
  border-radius: 6px;
}
.merch-image-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 1;
}
.merch-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--white);
  background: var(--red);
  padding: 4px 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
}

.merch-info { padding: 1.5rem; }
.merch-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
  transition: color 0.3s;
}
.merch-card:hover .merch-info h3 { color: var(--white); }

.merch-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.merch-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.merch-price {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--gold);
}
.btn-preorder {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--white);
  background: var(--red);
  border: none;
  padding: 8px 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-preorder:hover {
  background: var(--red-hover);
  box-shadow: 0 0 15px var(--red-glow);
}

/* ── PHOTO STRIP ── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 170px);
  gap: 6px;
}
.photo-block {
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
}
.photo-block:hover { transform: scale(1.02); opacity: 0.9; }

.photo-block-1 { background: linear-gradient(135deg, #5C3D2E, #8B5E3C); grid-column: 1/3; }
.photo-block-2 { background: linear-gradient(135deg, #4A3728, #6B5B4E); }
.photo-block-3 { background: linear-gradient(135deg, #6B3A2A, #8B5E3C); }
.photo-block-4 { background: linear-gradient(135deg, #3A3028, #5C4A3E); }
.photo-block-5 { background: linear-gradient(135deg, #5C3D2E, #7A5C4F); }
.photo-block-6 { background: linear-gradient(135deg, #4A3728, #6B5B4E); grid-column: 3/5; }

.gallery-link {
  text-align: center;
  margin-top: 2rem;
}
.gallery-link a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.gallery-link a:hover { color: var(--red); }

/* ── FAQ ── */
.faq-list { max-width: 750px; margin: 0 auto; }

.faq-item {
  background: var(--surface);
  border-radius: 8px;
  margin-bottom: 8px;
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-left-color: var(--navy-light);
  background: var(--surface-hover);
}

.faq-question {
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 1.5;
  transition: stroke 0.3s ease;
}
.faq-item:hover .faq-icon svg { stroke: var(--red); }
.faq-item.open .faq-icon svg { stroke: var(--red); }

.faq-question h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  flex: 1;
  transition: color 0.3s ease;
}
.faq-item:hover .faq-question h3 { color: var(--white); }

.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--surface-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-answer {
  padding: 0 1.4rem 1.1rem 3rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  display: none;
}

.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-toggle { background: var(--red); color: var(--white); transform: rotate(45deg); }
.faq-item.open { border-left-color: var(--navy-light); }
.faq-item.open .faq-icon { color: var(--red); }
.faq-item.open .faq-question h3 { color: var(--white); }

.faq-more {
  text-align: center;
  margin-top: 2rem;
}
.faq-more a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.faq-more a:hover { color: var(--red); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--red);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
}
.cta-banner-inner { position: relative; z-index: 2; }

.cta-banner h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.btn-cta-white {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  background: transparent;
  border: 2px solid var(--white);
  padding: 14px 44px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-cta-white:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-2px);
}

/* ── FOOTER ── */
.footer {
  background: var(--base-darkest);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo-lockup { display: flex; align-items: center; margin-bottom: 1rem; }
.footer-brand .footer-logo {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-brand .footer-logo span { color: var(--red); }

.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.2rem; }

.footer-brought-by { display: flex; flex-direction: column; margin-bottom: 1.5rem; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}
.footer-social a:hover {
  border-color: var(--navy-light);
  background: var(--surface-hover);
}
.footer-social a svg { width: 14px; height: 14px; }
.footer-social a:hover svg { stroke: var(--red); }

.footer h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }

.footer-event-info p { font-size: 0.85rem; margin-bottom: 0.4rem; color: var(--text-muted); }
.footer-event-info strong { color: var(--text-secondary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .header { padding: 0 1rem; }
  .header-inner { height: 56px; }
  nav { display: none; }
  .mobile-menu { display: flex; flex-direction: column; gap: 4px; cursor: pointer; padding: 8px; }
  .mobile-menu span { width: 22px; height: 2px; background: var(--text-secondary); display: block; }
  .hero { min-height: 80vh; }
  .section { padding: 3rem 1.2rem; }
  .snapshot-grid { grid-template-columns: 1fr; gap: 1rem; }
  .merch-grid { grid-template-columns: 1fr; gap: 1rem; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 130px); }
  .photo-block-1 { grid-column: 1/3; }
  .photo-block-6 { grid-column: 1/3; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .mobile-sticky-cta {
    display: block; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
    background: var(--base-darkest); padding: 10px 1rem; border-top: 1px solid var(--border);
  }
  .mobile-sticky-cta a {
    display: block; text-align: center; font-family: 'Oswald', sans-serif; font-weight: 700;
    font-size: 0.95rem; color: var(--white); background: var(--red); padding: 12px;
    text-transform: uppercase; letter-spacing: 2px; text-decoration: none;
  }
}
@media (min-width: 769px) { .mobile-sticky-cta { display: none; } }

/* ══════════════════════════════════════════
   ADDITIONAL STYLES — Inner Pages & Forms
   ══════════════════════════════════════════ */

/* ── PAGE LAYOUT (for inner pages) ── */
.page-header {
  background: var(--base-darkest);
  padding: 6rem 2rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-content {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* ── FORMS ── */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy-light);
  box-shadow: 0 0 0 2px rgba(42,64,112,0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238B8B8B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.form-error {
  font-size: 0.8rem;
  color: var(--red);
  margin-top: 0.3rem;
  display: none;
}

.btn-submit {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  background: var(--red);
  border: none;
  padding: 14px 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  text-decoration: none;
  width: 100%;
  text-align: center;
}

.btn-submit:hover {
  background: var(--red-hover);
  box-shadow: 0 0 20px var(--red-glow);
  transform: translateY(-2px);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-submit.is-loading {
  opacity: 0.6;
  cursor: wait;
}

/* ── CONFIRMATION PAGE ── */
.confirmation-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirmation-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

/* ── ADD-ONS CHECKBOXES ── */
.addon-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.addon-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
}

.addon-item:hover {
  border-color: var(--navy-light);
  background: var(--surface-hover);
}

.addon-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}

.addon-item .addon-name {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.addon-item .addon-price {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: var(--gold);
}

/* ── SIZE SELECTOR (for merch) ── */
.size-selector {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.size-btn {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 4px;
}

.size-btn:hover {
  border-color: var(--navy-light);
  color: var(--white);
}

.size-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ── LEGAL PAGES ── */
.legal-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-primary);
  margin: 2rem 0 1rem;
}

.legal-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin: 1.5rem 0 0.75rem;
}

.legal-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

/* ── MERCH PAGE (full product cards) ── */
.merch-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .merch-detail-grid { grid-template-columns: 1fr; }
}

.merch-detail-image {
  background: linear-gradient(135deg, var(--surface), var(--base-dark));
  border-radius: 10px;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.merch-detail-info h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.merch-detail-price {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

/* ── ALERT / NOTIFICATION ── */
.alert {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.alert-success {
  background: rgba(34, 178, 76, 0.1);
  border: 1px solid rgba(34, 178, 76, 0.3);
  color: #22B24C;
}

.alert-error {
  background: rgba(178, 34, 52, 0.1);
  border: 1px solid rgba(178, 34, 52, 0.3);
  color: var(--red);
}

/* ── MOBILE NAV OPEN STATE ── */
@media (max-width: 768px) {
  nav.nav-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--base-darkest);
    padding: 2rem;
    z-index: 999;
    gap: 0;
  }
  nav.nav-open .nav-item {
    padding: 0;
  }
  nav.nav-open .nav-item > a {
    padding: 16px 0;
    font-size: 1.1rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
  }
  nav.nav-open .nav-item > a:hover {
    color: var(--white);
  }
  nav.nav-open .nav-item > a .arrow {
    color: var(--red);
  }
  nav.nav-open .dropdown {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--navy-light);
    background: var(--surface);
    border-radius: 0 8px 8px 0;
    margin: 4px 0 8px 0;
    padding: 8px 0;
  }
  nav.nav-open .nav-item:hover .dropdown,
  nav.nav-open .nav-item.open .dropdown {
    display: block;
  }
  nav.nav-open .dropdown-label {
    color: var(--red);
  }
  nav.nav-open .dropdown-item {
    border-left: none;
  }
  nav.nav-open .dropdown-item:hover {
    background: var(--surface-hover);
  }
  nav.nav-open .dropdown-item:hover .dd-icon svg {
    stroke: var(--red);
  }
  nav.nav-open .dropdown-item:hover .dd-title {
    color: var(--white);
  }
  nav.nav-open .btn-register {
    margin: 2rem 0 0;
    text-align: center;
    display: block;
    background: var(--red);
    color: var(--white);
  }
  nav.nav-open .btn-register:hover {
    background: var(--red-hover);
    box-shadow: 0 0 20px var(--red-glow);
  }
  .mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .mobile-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
}

/* ══════════════════════════════════════════
   INNER PAGE STYLES
   ══════════════════════════════════════════ */

/* ── PAGE HEADER (inner pages) ── */
.page-header-inner {
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ── TIMELINE (details page) ── */
.timeline {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.5rem 0;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 75px;
  top: 1.8rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--red);
  z-index: 1;
}

.timeline-time {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold);
  min-width: 60px;
  text-align: right;
  letter-spacing: 1px;
  padding-top: 2px;
}

.timeline-content {
  flex: 1;
  padding-left: 1rem;
}

.timeline-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .timeline::before { left: 10px; }
  .timeline-item::before { left: 5px; }
  .timeline-time { min-width: auto; text-align: left; }
  .timeline-item { flex-direction: column; gap: 0.5rem; padding-left: 2rem; }
  .timeline-content { padding-left: 0; }
}

/* ── DETAILS TWO-COL LAYOUT ── */
.details-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 768px) {
  .details-two-col { grid-template-columns: 1fr; }
}

.map-embed-placeholder {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.map-embed-placeholder p {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.map-embed-placeholder span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── WHAT TO BRING LIST ── */
.bring-list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bring-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.bring-item:hover {
  border-left-color: var(--navy-light);
  background: var(--surface-hover);
}

.bring-icon {
  flex-shrink: 0;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bring-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 1.5;
  transition: stroke 0.3s ease;
}

.bring-item:hover .bring-icon svg {
  stroke: var(--red);
}

.bring-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 0.2rem;
  transition: color 0.3s;
}

.bring-item:hover h3 { color: var(--white); }

.bring-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── FORM CONTAINER ── */
.form-container {
  max-width: 680px;
  margin: 0 auto;
}

.form-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.form-section:last-of-type {
  border-bottom: none;
}

.form-section-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.form-section-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.required {
  color: var(--red);
}

.optional {
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  text-transform: none;
  letter-spacing: 0;
}

.form-submit {
  text-align: center;
  margin-top: 2rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.form-note a {
  color: var(--text-secondary);
  text-decoration: underline;
  transition: color 0.3s;
}

.form-note a:hover {
  color: var(--white);
}

/* ── SUBMIT OPTIONS (two buttons) ── */
.submit-options {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.submit-options .btn-submit {
  flex: 1;
}

.btn-interested {
  background: var(--navy) !important;
}

.btn-interested:hover {
  background: var(--navy-light) !important;
  box-shadow: 0 0 20px var(--navy-glow) !important;
}

@media (max-width: 768px) {
  .submit-options {
    flex-direction: column;
  }
}

/* ── COMMUNICATION OPT-INS ── */
.optin-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.optin-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
}

.optin-item:hover {
  border-color: var(--navy-light);
  background: var(--surface-hover);
}

.optin-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
  flex-shrink: 0;
}

.optin-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ── DISCLAIMER BOX ── */
.disclaimer-box {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}

.disclaimer-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.disclaimer-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.disclaimer-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-left: 1.2rem;
  position: relative;
}

.disclaimer-list li::before {
  content: '\2022';
  color: var(--gold);
  position: absolute;
  left: 0;
}

.disclaimer-check {
  border-color: var(--gold) !important;
  background: rgba(212,148,42,0.06) !important;
}

.disclaimer-check strong {
  color: var(--text-primary);
}

/* ── ADD-ON GRID (registration page) ── */
.addon-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.addon-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 1rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.addon-card:hover {
  border-left-color: var(--navy-light);
  background: var(--surface-hover);
}

.addon-card input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--red);
  flex-shrink: 0;
}

.addon-info {
  flex: 1;
}

.addon-name {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: block;
  transition: color 0.3s;
}

.addon-card:hover .addon-name { color: var(--white); }

.addon-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

.addon-price {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--gold);
  display: block;
  margin-top: 4px;
}

.addon-card.featured {
  border-left-color: var(--gold);
  flex-wrap: wrap;
}

.addon-card.featured .addon-name {
  color: var(--text-primary);
  font-size: 1.05rem;
}

.addon-qty {
  width: 100%;
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.addon-qty label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

.qty-select {
  padding: 6px 12px;
  background: var(--surface-hover);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  margin-left: 8px;
}

/* ── MERCH PAGE FULL CARDS ── */
.merch-grid-full {
  grid-template-columns: 1fr;
  gap: 2rem;
}

.merch-card-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.merch-card-full .merch-image-large {
  height: auto;
  min-height: 320px;
}

.merch-card-full .merch-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.merch-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.merch-card-full .merch-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.merch-card-full .merch-bottom {
  margin-top: 1rem;
}

.size-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-right: 0.5rem;
}

.size-buttons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.size-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 0.8rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .merch-card-full { grid-template-columns: 1fr; }
  .merch-card-full .merch-image-large { min-height: 220px; }
}

/* ── SIZE CHART ── */
.size-chart-wrapper {
  max-width: 600px;
  margin: 0 auto;
  overflow-x: auto;
}

.size-chart {
  width: 100%;
  border-collapse: collapse;
}

.size-chart th,
.size-chart td {
  padding: 12px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.size-chart th {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--surface);
}

.size-chart td {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.size-chart tbody tr:hover td {
  color: var(--text-secondary);
  background: var(--surface-hover);
}

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

/* ── CONTACT PAGE LAYOUT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.contact-layout .form-container {
  max-width: none;
}

.contact-sidebar .snapshot-card a {
  color: var(--text-secondary);
  text-decoration: underline;
  transition: color 0.3s;
}

.contact-sidebar .snapshot-card a:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* ── CONFIRMATION PAGE ── */
.confirmation-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.confirmation-card {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.confirmation-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.confirmation-message {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.confirmation-details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.confirmation-detail-item {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}

.confirmation-detail-item:last-child {
  border-bottom: none;
}

.confirmation-detail-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.confirmation-detail-value {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.confirmation-next {
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 2rem;
}

.confirmation-next h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.confirmation-next ul {
  list-style: none;
  padding: 0;
}

.confirmation-next li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.confirmation-next li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.confirmation-next li a {
  color: var(--text-secondary);
  text-decoration: underline;
  transition: color 0.3s;
}

.confirmation-next li a:hover { color: var(--white); }

/* ── LEGAL PAGES ── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content a {
  color: var(--text-secondary);
  text-decoration: underline;
  transition: color 0.3s;
}

.legal-content a:hover {
  color: var(--white);
}

.legal-content ul li {
  margin-bottom: 0.4rem;
}

.legal-content strong {
  color: var(--text-secondary);
}

/* ── FAQ PAGE LINKS ── */
.faq-answer a {
  color: var(--text-secondary);
  text-decoration: underline;
  transition: color 0.3s;
}

.faq-answer a:hover {
  color: var(--white);
}

/* ── FOOTER CONTACT LINK ── */
.footer-contact-link {
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-link:hover {
  color: var(--white);
}
