/*


 */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/assets/inter-latin-var-007fce1bff9f7f37469fe61eff9ef62c033af63fccb0e65a2e94f4e0c14d9d6d.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
  src: url(/assets/playfair-display-latin-var-1d3e716e94d561c0e113273e107eba9028e0049ceddf18052a1a600808e23199.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --midnight-black: #0B0B0D;
  --casino-red: #B3131B;
  --velvet-crimson: #8F1016;
  --ivory-white: #F7F3EE;
  --charcoal-slate: #23252B;
  --smoke-gray: #6B7078;
  --antique-gold: #C6A15B;
  --graphite-line: #2F3138;
  --white: #FFFFFF;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--charcoal-slate);
  background: var(--ivory-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold {
  color: var(--antique-gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.btn-sm.btn-primary {
  padding-right: 44px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: var(--casino-red);
  color: var(--ivory-white);
  border-color: var(--casino-red);
  padding-right: 56px;
}

.btn-primary .btn-label {
  transition: opacity 0.5s ease;
}

.btn-primary .btn-chevron {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  width: 25%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  transition: width 0.5s ease;
  z-index: 1;
}

.btn-primary .btn-chevron svg {
  width: 16px;
  height: 16px;
  stroke: var(--ivory-white);
  stroke-width: 2;
  fill: none;
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-label {
  opacity: 0;
}

.btn-primary:hover .btn-chevron {
  width: calc(100% - 8px);
}

.btn-primary:active .btn-chevron {
  transform: scale(0.95);
}

.btn-primary:hover {
  background: var(--velvet-crimson);
  border-color: var(--velvet-crimson);
}

.btn-outline {
  background: transparent;
  color: var(--ivory-white);
  border-color: var(--ivory-white);
}

.btn-outline:hover {
  background: var(--ivory-white);
  color: var(--midnight-black);
}

.btn-outline-light {
  background: transparent;
  color: var(--ivory-white);
  border-color: rgba(247, 243, 238, 0.4);
}

.btn-outline-light:hover {
  background: var(--ivory-white);
  color: var(--midnight-black);
  border-color: var(--ivory-white);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 11, 13, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--graphite-line);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-brand {
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
}

.brand-casino {
  color: var(--casino-red);
}

.brand-party {
  color: var(--ivory-white);
}

.brand-dealers {
  color: var(--antique-gold);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: rgba(247, 243, 238, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--ivory-white);
}

.nav-phone {
  color: var(--antique-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ivory-white);
  transition: all 0.3s;
}

@keyframes aurora {
  from {
    background-position: 50% 50%, 50% 50%;
  }
  to {
    background-position: 350% 50%, 350% 50%;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--midnight-black);
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.42;
  filter: saturate(1.05) contrast(1.05);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 60%, transparent 0%, rgba(11, 11, 13, 0.55) 60%, rgba(11, 11, 13, 0.85) 100%),
    linear-gradient(180deg, rgba(11, 11, 13, 0.55) 0%, rgba(11, 11, 13, 0.25) 35%, rgba(11, 11, 13, 0.45) 70%, rgba(11, 11, 13, 0.9) 100%);
  pointer-events: none;
}

.aurora-bg {
  position: absolute;
  inset: -10px;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  opacity: 0.65;
}

.aurora-layer {
  position: absolute;
  inset: -10px;
  opacity: 0.5;
  will-change: transform;
  filter: blur(10px);
  background-image:
    repeating-linear-gradient(
      100deg,
      #0B0B0D 0%, #0B0B0D 7%, transparent 10%, transparent 12%, #0B0B0D 16%
    ),
    repeating-linear-gradient(
      100deg,
      #B3131B 10%, #C6A15B 15%, #8F1016 20%, #D4A85C 25%, #B3131B 30%
    );
  background-size: 300% 200%;
  background-position: 50% 50%, 50% 50%;
  animation: aurora 60s linear infinite;
}

.aurora-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      100deg,
      #0B0B0D 0%, #0B0B0D 7%, transparent 10%, transparent 12%, #0B0B0D 16%
    ),
    repeating-linear-gradient(
      100deg,
      #B3131B 10%, #C6A15B 15%, #8F1016 20%, #D4A85C 25%, #B3131B 30%
    );
  background-size: 200% 100%;
  animation: aurora 60s linear infinite;
  background-attachment: fixed;
  mix-blend-mode: difference;
}

.hero-radial-mask {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 100% 0%, black 10%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 820px;
  margin: 0 auto;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(198, 161, 91, 0.15);
  border: 1px solid rgba(198, 161, 91, 0.35);
  border-radius: 100px;
  color: var(--antique-gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: var(--ivory-white);
  margin-bottom: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(247, 243, 238, 0.7);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ── Logo Scroll ── */
.logo-scroll-section {
  background: var(--midnight-black);
  border-top: 1px solid var(--graphite-line);
  border-bottom: 1px solid var(--graphite-line);
  padding: 32px 0;
  overflow: hidden;
}

.logo-scroll-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.35);
  margin-bottom: 24px;
}

.logo-scroll-track-wrapper {
  position: relative;
  overflow: hidden;
}

.logo-scroll-track-wrapper::before,
.logo-scroll-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.logo-scroll-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--midnight-black), transparent);
}

.logo-scroll-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--midnight-black), transparent);
}

@keyframes logoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.logo-scroll-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: logoScroll 30s linear infinite;
}

.logo-scroll-item {
  padding: 0 48px;
  border-right: 1px solid var(--graphite-line);
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(247, 243, 238, 0.4);
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.logo-scroll-item:hover .logo-text {
  color: var(--antique-gold);
}

/* ── Pathways ── */
.pathways {
  padding: 100px 0;
  background: var(--ivory-white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--charcoal-slate);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--smoke-gray);
  max-width: 560px;
  margin: 0 auto;
}

.pathways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pathway-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(35, 37, 43, 0.08);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.pathway-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.pathway-card-featured {
  border-color: var(--casino-red);
  box-shadow: 0 4px 20px rgba(179, 19, 27, 0.1);
}

.pathway-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--casino-red);
  color: var(--ivory-white);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pathway-icon {
  margin-bottom: 20px;
}

.pathway-card h3 {
  font-size: 1.35rem;
  color: var(--charcoal-slate);
  margin-bottom: 12px;
}

.pathway-card p {
  color: var(--smoke-gray);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.65;
}

.pathway-benefits {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.pathway-benefits li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--charcoal-slate);
  position: relative;
  padding-left: 20px;
}

.pathway-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 8px;
  background: var(--antique-gold);
  border-radius: 50%;
}

.pathway-card .btn {
  width: 100%;
  justify-content: center;
  min-height: 48px;
}

.stats-bar {
  background: var(--midnight-black);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--antique-gold);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(247, 243, 238, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.how-it-works {
  padding: 100px 0;
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step-card {
  text-align: center;
  padding: 32px 24px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--midnight-black);
  color: var(--antique-gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 1.2rem;
  color: var(--charcoal-slate);
  margin-bottom: 12px;
}

.step-card p {
  color: var(--smoke-gray);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ── Testimonials Scrolling Columns ── */
.testimonials-scroll-section {
  padding: 100px 0 0;
  background: var(--ivory-white);
  overflow: hidden;
}

.testimonials-scroll-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-scroll-badge {
  display: inline-block;
  padding: 5px 18px;
  border: 1px solid rgba(35, 37, 43, 0.15);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--smoke-gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.testimonials-scroll-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--charcoal-slate);
  margin-bottom: 14px;
}

.testimonials-scroll-sub {
  font-size: 1rem;
  color: var(--smoke-gray);
  max-width: 520px;
  margin: 0 auto;
}

.testimonials-columns-wrapper {
  display: flex;
  gap: 24px;
  justify-content: center;
  max-height: 720px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  padding: 0 24px;
}

@keyframes scrollUp1 {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}
@keyframes scrollUp2 {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}
@keyframes scrollUp3 {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

.testimonials-col-track {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  max-width: 340px;
}

.testimonials-col-1 { animation: scrollUp1 20s linear infinite; }
.testimonials-col-2 { animation: scrollUp2 26s linear infinite; }
.testimonials-col-3 { animation: scrollUp3 22s linear infinite; }

.tcard {
  background: var(--white);
  border: 1px solid rgba(35, 37, 43, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  flex-shrink: 0;
}

.tcard-stars {
  color: var(--antique-gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.tcard p {
  font-size: 0.9rem;
  color: var(--charcoal-slate);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tcard-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.tcard-author strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal-slate);
  font-style: normal;
}

.tcard-author span {
  display: block;
  font-size: 0.775rem;
  color: var(--smoke-gray);
}

.faq-section {
  padding: 100px 0;
  background: var(--white);
}

.faq-list {
  max-width: 740px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(35, 37, 43, 0.1);
}

.faq-item summary {
  padding: 22px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal-slate);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.faq-item summary:hover {
  color: var(--casino-red);
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--smoke-gray);
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: var(--smoke-gray);
  line-height: 1.7;
}

.cta-section {
  padding: 100px 0;
  background: var(--midnight-black);
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ivory-white);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(247, 243, 238, 0.65);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer {
  background: var(--charcoal-slate);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(247, 243, 238, 0.1);
}

.footer-tagline {
  color: rgba(247, 243, 238, 0.5);
  font-size: 0.9rem;
  margin-top: 12px;
  font-style: italic;
}

.footer-phone {
  margin-top: 16px;
}

.footer-phone a {
  color: var(--antique-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
}

.footer-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ivory-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(247, 243, 238, 0.55);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--ivory-white);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(247, 243, 238, 0.35);
  font-size: 0.8rem;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
details summary:focus-visible {
  outline: 2px solid var(--antique-gold);
  outline-offset: 2px;
}

@media (max-width: 968px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .navbar-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(11, 11, 13, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--graphite-line);
  }

  .nav-open .navbar-nav {
    display: flex;
  }

  .pathways-grid,
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonials-col-2,
  .testimonials-col-3 {
    display: none;
  }

  .testimonials-columns-wrapper {
    max-height: 500px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
  }

  .hero-content {
    padding: 110px 16px 60px;
  }
}

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

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

  .hero-content {
    padding: 100px 16px 56px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-lg {
    width: 100%;
    max-width: 320px;
  }
}

/* ─────────────────────────────────────────
   SHARED PAGE ELEMENTS
───────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--casino-red);
  margin-bottom: 12px;
}

.page-hero {
  padding: 140px 0 80px;
  text-align: center;
}

.page-hero--dark {
  background: var(--midnight-black);
}

.page-hero--light {
  background: var(--ivory-white);
  border-bottom: 1px solid rgba(35, 37, 43, 0.08);
}

.page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--ivory-white);
  margin: 16px 0 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.page-hero-title--dark {
  color: var(--charcoal-slate);
}

.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(247, 243, 238, 0.7);
  max-width: 580px;
  line-height: 1.7;
}

.page-hero-sub--dark {
  color: var(--smoke-gray);
}

.hero-badge--dark {
  background: rgba(35, 37, 43, 0.07);
  border-color: rgba(35, 37, 43, 0.15);
  color: var(--charcoal-slate);
}

/* ─────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────── */
.about-mission {
  padding: 100px 0;
  background: var(--white);
}

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-mission-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--charcoal-slate);
  margin: 12px 0 20px;
}

.about-mission-text p {
  color: var(--smoke-gray);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-mission-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.about-stat {
  background: var(--ivory-white);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(35, 37, 43, 0.06);
}

.about-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--casino-red);
  margin-bottom: 6px;
}

.about-stat-label {
  font-size: 0.82rem;
  color: var(--smoke-gray);
  font-weight: 500;
  line-height: 1.4;
}

.about-story {
  padding: 100px 0;
  background: var(--midnight-black);
}

.about-story-inner {
  max-width: 760px;
  margin: 0 auto;
}

.about-story .section-eyebrow {
  color: var(--antique-gold);
}

.about-story h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ivory-white);
  margin: 12px 0 28px;
}

.about-story-body p {
  color: rgba(247, 243, 238, 0.7);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 18px;
}

.about-values {
  padding: 110px 0;
  background: var(--ivory-white);
}

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

.value-card {
  background: var(--white);
  border: 1px solid rgba(35, 37, 43, 0.07);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.value-icon {
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.1rem;
  color: var(--charcoal-slate);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--smoke-gray);
  line-height: 1.65;
}

.about-cta {
  padding: 100px 0;
  background: var(--midnight-black);
  text-align: center;
}

.about-cta .cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ivory-white);
  margin-bottom: 16px;
}

.about-cta .cta-content p {
  font-size: 1.1rem;
  color: rgba(247, 243, 238, 0.65);
  max-width: 480px;
  margin: 0 auto 36px;
}

/* ─────────────────────────────────────────
   JOIN / SQUEEZE PAGE
───────────────────────────────────────── */
.join-hero {
  position: relative;
  padding: 140px 0 80px;
  background: var(--midnight-black);
  overflow: hidden;
  text-align: center;
}

.join-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 30%, rgba(179,19,27,0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(198,161,91,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.join-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.join-hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--ivory-white);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 16px 0 20px;
  line-height: 1.1;
}

.join-hero-sub {
  font-size: 1.1rem;
  color: rgba(247, 243, 238, 0.72);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.join-trust-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.join-trust-item {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--antique-gold);
  letter-spacing: 0.01em;
}

.join-main {
  padding: 80px 0 100px;
  background: var(--ivory-white);
}

.join-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.join-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 40px;
  border: 1px solid rgba(35, 37, 43, 0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.join-form-card h2 {
  font-size: 1.8rem;
  color: var(--charcoal-slate);
  margin-bottom: 8px;
}

.join-form-sub {
  font-size: 0.95rem;
  color: var(--smoke-gray);
  margin-bottom: 28px;
}

.join-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal-slate);
}

.form-input {
  padding: 12px 16px;
  border: 1.5px solid rgba(35, 37, 43, 0.15);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--charcoal-slate);
  background: var(--ivory-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input:focus {
  border-color: var(--casino-red);
  box-shadow: 0 0 0 3px rgba(179, 19, 27, 0.1);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7078' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

.join-submit {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
}

.join-form-disclaimer {
  font-size: 0.78rem;
  color: var(--smoke-gray);
  text-align: center;
  line-height: 1.5;
  margin-top: 16px;
}

.join-form-embed {
  width: 100%;
  margin-top: 8px;
}

.join-form-embed iframe {
  width: 100%;
  min-height: 1020px;
  border: none;
  border-radius: 12px;
  display: block;
  background: transparent;
}

@media (max-width: 600px) {
  .join-form-embed iframe {
    min-height: 1180px;
  }
}

.join-form-disclaimer a {
  color: var(--casino-red);
  text-decoration: none;
}

.join-benefits-col h3 {
  font-size: 1.5rem;
  color: var(--charcoal-slate);
  margin-bottom: 28px;
}

.join-benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.join-benefits-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.jb-icon {
  font-size: 1rem;
  color: var(--antique-gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.join-benefits-list strong {
  display: block;
  font-size: 0.95rem;
  color: var(--charcoal-slate);
  margin-bottom: 4px;
}

.join-benefits-list p {
  font-size: 0.875rem;
  color: var(--smoke-gray);
  line-height: 1.6;
  margin: 0;
}

.join-testimonial {
  background: var(--midnight-black);
  border-radius: 12px;
  padding: 28px;
}

.join-test-stars {
  color: var(--antique-gold);
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.join-testimonial blockquote {
  font-size: 0.9rem;
  color: rgba(247, 243, 238, 0.82);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}

.join-test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.join-test-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.join-test-author strong {
  display: block;
  font-size: 0.875rem;
  color: var(--ivory-white);
}

.join-test-author span {
  font-size: 0.78rem;
  color: rgba(247, 243, 238, 0.5);
}

/* ─────────────────────────────────────────
   HOW IT WORKS PAGE
───────────────────────────────────────── */
.hiw-section {
  padding: 100px 0;
  background: var(--white);
}

.hiw-section--alt {
  background: var(--ivory-white);
}

.hiw-path-header {
  margin-bottom: 60px;
}

.hiw-path-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--charcoal-slate);
  margin: 10px 0 12px;
}

.hiw-path-header p {
  font-size: 1rem;
  color: var(--smoke-gray);
  max-width: 520px;
}

.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.hiw-steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 56px;
  bottom: 56px;
  width: 2px;
  background: linear-gradient(to bottom, var(--casino-red), var(--antique-gold));
  opacity: 0.25;
}

.hiw-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(35, 37, 43, 0.06);
  align-items: start;
}

.hiw-step:last-child {
  border-bottom: none;
}

.hiw-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--casino-red);
  line-height: 1;
  padding-top: 4px;
  text-align: center;
}

.hiw-step-content h3 {
  font-size: 1.2rem;
  color: var(--charcoal-slate);
  margin-bottom: 10px;
}

.hiw-step-content p {
  font-size: 0.95rem;
  color: var(--smoke-gray);
  line-height: 1.7;
  margin-bottom: 12px;
}

.hiw-step-content a {
  color: var(--casino-red);
  text-decoration: none;
}

.hiw-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hiw-detail-list li {
  font-size: 0.875rem;
  color: var(--charcoal-slate);
  padding-left: 18px;
  position: relative;
}

.hiw-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  background: var(--antique-gold);
  border-radius: 50%;
}

/* ─────────────────────────────────────────
   RESOURCES PAGE
───────────────────────────────────────── */
.resources-section {
  padding: 80px 0 100px;
  background: var(--ivory-white);
}

.resources-filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.resources-filter {
  padding: 8px 18px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  border: 1.5px solid rgba(35, 37, 43, 0.12);
  color: var(--smoke-gray);
  transition: all 0.2s;
  background: var(--white);
}

.resources-filter:hover,
.resources-filter.active {
  background: var(--midnight-black);
  color: var(--ivory-white);
  border-color: var(--midnight-black);
}

.resources-filter-count {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 8px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(35, 37, 43, 0.08);
  color: var(--smoke-gray);
  transition: all 0.2s;
}

.resources-filter:hover .resources-filter-count,
.resources-filter.active .resources-filter-count {
  background: rgba(247, 243, 238, 0.18);
  color: var(--ivory-white);
}

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

.resources-empty {
  margin-top: 32px;
  padding: 32px 24px;
  text-align: center;
  color: var(--smoke-gray);
  font-size: 1rem;
  background: var(--white);
  border: 1px dashed rgba(35, 37, 43, 0.15);
  border-radius: 12px;
}

.resources-empty[hidden] {
  display: none;
}

.resource-card {
  background: var(--white);
  border: 1px solid rgba(35, 37, 43, 0.07);
  border-radius: 14px;
  padding: 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.resource-card--featured {
  grid-column: span 2;
  background: var(--midnight-black);
  border-color: transparent;
}

.resource-card--featured .resource-card-tag {
  background: rgba(198, 161, 91, 0.2);
  color: var(--antique-gold);
  border-color: rgba(198, 161, 91, 0.3);
}

.resource-card.resource-card--featured h3 {
  color: var(--ivory-white);
}

.resource-card.resource-card--featured p {
  color: rgba(247, 243, 238, 0.7);
}

.resource-card--featured .resource-read-time {
  color: rgba(247, 243, 238, 0.45);
}

.resource-card--featured .resource-card-topics span {
  background: rgba(247, 243, 238, 0.08);
  color: rgba(247, 243, 238, 0.6);
}

.resource-card--featured .resource-level--beginner {
  background: rgba(74, 222, 128, 0.18);
  color: #4ade80;
}

.resource-card--featured .resource-level--intermediate {
  background: rgba(250, 204, 21, 0.2);
  color: #facc15;
}

.resource-card--featured .resource-level--advanced {
  background: rgba(248, 113, 113, 0.2);
  color: #f87171;
}

.resource-card-tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(179, 19, 27, 0.08);
  color: var(--casino-red);
  border: 1px solid rgba(179, 19, 27, 0.15);
  margin-bottom: 14px;
}

.resource-card h3 {
  font-size: 1.05rem;
  color: var(--charcoal-slate);
  margin-bottom: 10px;
  line-height: 1.4;
}

.resource-card p {
  font-size: 0.875rem;
  color: var(--smoke-gray);
  line-height: 1.65;
  margin-bottom: 16px;
}

.resource-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.resource-read-time {
  font-size: 0.78rem;
  color: var(--smoke-gray);
}

.resource-level {
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.resource-level--beginner { background: rgba(34, 197, 94, 0.1); color: #16a34a; }
.resource-level--intermediate { background: rgba(234, 179, 8, 0.1); color: #b45309; }
.resource-level--advanced { background: rgba(179, 19, 27, 0.1); color: var(--casino-red); }

.resource-card-topics {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.resource-card-topics span {
  padding: 3px 10px;
  background: var(--ivory-white);
  border-radius: 100px;
  font-size: 0.72rem;
  color: var(--smoke-gray);
  font-weight: 500;
}

.resource-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.resource-card-link--featured {
  grid-column: span 2;
}

.resource-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.resource-card-read-more {
  margin-top: auto;
  padding-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--casino-red);
  letter-spacing: 0.02em;
}

.resource-card--featured .resource-card-read-more {
  color: var(--antique-gold);
}

.resource-card-link:hover .resource-card-read-more {
  text-decoration: underline;
}

/* ─────────────────────────────────────────
   ARTICLE PAGE (individual resource)
───────────────────────────────────────── */
.article-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(11, 11, 13, 0.06);
  z-index: 100;
}

.article-progress span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--casino-red);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.05s linear;
}

.article-hero {
  background: var(--ivory-white);
  padding: 120px 0 40px;
}

.article-back {
  margin-bottom: 28px;
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--smoke-gray);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.2s;
}

.article-back-link:hover {
  color: var(--casino-red);
}

.article-meta-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.article-meta-top .resource-card-tag {
  margin-bottom: 0;
}

.article-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal-slate);
  margin-bottom: 18px;
  max-width: 820px;
  line-height: 1.15;
}

.article-excerpt {
  font-size: 1.15rem;
  color: var(--smoke-gray);
  line-height: 1.6;
  max-width: 720px;
}

.article-body {
  background: var(--white);
  padding: 60px 0 80px;
}

.article-content {
  max-width: 740px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal-slate);
}

.article-content h2 {
  font-size: 1.6rem;
  margin: 44px 0 16px;
  color: var(--midnight-black);
}

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

.article-content p {
  margin-bottom: 18px;
}

.article-content ul,
.article-content ol {
  margin: 0 0 22px 24px;
}

.article-content li {
  margin-bottom: 8px;
}

.article-content strong {
  color: var(--midnight-black);
  font-weight: 700;
}

.related-articles {
  background: var(--ivory-white);
  padding: 70px 0;
  border-top: 1px solid rgba(35, 37, 43, 0.07);
}

.related-articles-heading {
  font-size: 1.6rem;
  color: var(--midnight-black);
  margin-bottom: 28px;
  text-align: center;
}

.related-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .related-articles-grid {
    grid-template-columns: 1fr;
  }
}

.article-cta {
  background: var(--midnight-black);
  padding: 70px 0;
}

.article-cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.article-cta-inner h2 {
  font-size: 1.85rem;
  color: var(--ivory-white);
  margin-bottom: 12px;
}

.article-cta-inner p {
  color: rgba(247, 243, 238, 0.65);
  margin-bottom: 28px;
  line-height: 1.7;
}

.resources-cta {
  background: var(--midnight-black);
  padding: 80px 0;
}

.resources-cta-inner {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.resources-cta-inner h2 {
  font-size: 2rem;
  color: var(--ivory-white);
  margin-bottom: 12px;
}

.resources-cta-inner p {
  color: rgba(247, 243, 238, 0.65);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   LEGAL PAGES (Privacy & Terms)
───────────────────────────────────────── */
.legal-hero {
  background: var(--charcoal-slate);
  padding: 120px 0 60px;
}

.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ivory-white);
  margin-bottom: 10px;
}

.legal-updated {
  font-size: 0.875rem;
  color: rgba(247, 243, 238, 0.45);
}

.legal-body {
  padding: 80px 0 100px;
  background: var(--white);
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-intro {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(35, 37, 43, 0.08);
}

.legal-intro p {
  font-size: 1rem;
  color: var(--smoke-gray);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(35, 37, 43, 0.06);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 1.3rem;
  color: var(--charcoal-slate);
  margin-bottom: 16px;
}

.legal-section h3 {
  font-size: 1rem;
  color: var(--charcoal-slate);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  margin: 20px 0 10px;
}

.legal-section p {
  font-size: 0.95rem;
  color: var(--smoke-gray);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-section ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-section ul li {
  font-size: 0.95rem;
  color: var(--smoke-gray);
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-contact {
  background: var(--ivory-white);
  border-radius: 10px;
  padding: 24px;
  margin-top: 16px;
}

.legal-contact p {
  margin-bottom: 6px !important;
}

.legal-contact a {
  color: var(--casino-red);
  text-decoration: none;
}

/* ─────────────────────────────────────────
   PATHWAYS — TWO COLUMN VARIANT
───────────────────────────────────────── */
.pathways-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 980px;
  margin: 0 auto;
  gap: 32px;
}

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


/* ─────────────────────────────────────────
   JOIN CONFIRMATION PAGE
───────────────────────────────────────── */
.confirmation-section {
  position: relative;
  padding: 120px 0 100px;
  background: var(--midnight-black);
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.confirmation-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(198, 161, 91, 0.18), transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% 80%, rgba(179, 19, 27, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.confirmation-section .container {
  position: relative;
  z-index: 1;
}

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

.confirmation-icon {
  margin-bottom: 28px;
  display: inline-flex;
  padding: 10px;
  border-radius: 50%;
  background: rgba(198, 161, 91, 0.08);
  border: 1px solid rgba(198, 161, 91, 0.25);
}

.confirmation-headline {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  line-height: 1.05;
  color: var(--ivory-white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.sparkles-text {
  position: relative;
  display: inline-block;
}

.sparkles-text strong {
  font-weight: inherit;
  background: linear-gradient(180deg, #ffffff 0%, #f0e6d4 60%, #C6A15B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sparkle {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
  opacity: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 21'><path d='M9.825 0.844c0.23-0.629 1.12-0.629 1.35 0l0.687 1.876c0.539 1.472 0.53 3.672 1.638 4.78c1.108 1.108 3.308 1.099 4.78 1.638l1.876 0.687c0.63 0.23 0.63 1.12 0 1.35l-1.876 0.687c-1.472 0.539-3.672 0.53-4.78 1.638c-1.108 1.108-1.099 3.308-1.638 4.78l-0.687 1.876c-0.23 0.63-1.12 0.63-1.35 0l-0.687-1.876c-0.539-1.472-0.53-3.672-1.638-4.78c-1.108-1.108-3.308-1.099-4.78-1.638L0.844 11.175c-0.629-0.23-0.629-1.12 0-1.35l1.876-0.687c1.472-0.539 3.672-0.53 4.78-1.638c1.108-1.108 1.099-3.308 1.638-4.78z' fill='%23C6A15B'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  animation: sparkle-twinkle 1.6s ease-in-out infinite;
  filter: drop-shadow(0 0 4px rgba(198, 161, 91, 0.6));
}

.sparkle--1  { top: -10%;  left:  -2%; width: 12px; animation-delay: 0s;    }
.sparkle--2  { top:  20%;  left: -6%;  width: 10px; animation-delay: 0.3s;  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 21'><path d='M9.825 0.844c0.23-0.629 1.12-0.629 1.35 0l0.687 1.876c0.539 1.472 0.53 3.672 1.638 4.78c1.108 1.108 3.308 1.099 4.78 1.638l1.876 0.687c0.63 0.23 0.63 1.12 0 1.35l-1.876 0.687c-1.472 0.539-3.672 0.53-4.78 1.638c-1.108 1.108-1.099 3.308-1.638 4.78l-0.687 1.876c-0.23 0.63-1.12 0.63-1.35 0l-0.687-1.876c-0.539-1.472-0.53-3.672-1.638-4.78c-1.108-1.108-3.308-1.099-4.78-1.638L0.844 11.175c-0.629-0.23-0.629-1.12 0-1.35l1.876-0.687c1.472-0.539 3.672-0.53 4.78-1.638c1.108-1.108 1.099-3.308 1.638-4.78z' fill='%23F7F3EE'/></svg>"); }
.sparkle--3  { top: -18%; left:  22%; width: 16px; animation-delay: 0.7s;  }
.sparkle--4  { top:  60%;  left: -4%;  width: 11px; animation-delay: 1.1s;  }
.sparkle--5  { top: -14%; left:  48%; width: 13px; animation-delay: 0.5s;  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 21'><path d='M9.825 0.844c0.23-0.629 1.12-0.629 1.35 0l0.687 1.876c0.539 1.472 0.53 3.672 1.638 4.78c1.108 1.108 3.308 1.099 4.78 1.638l1.876 0.687c0.63 0.23 0.63 1.12 0 1.35l-1.876 0.687c-1.472 0.539-3.672 0.53-4.78 1.638c-1.108 1.108-1.099 3.308-1.638 4.78l-0.687 1.876c-0.23 0.63-1.12 0.63-1.35 0l-0.687-1.876c-0.539-1.472-0.53-3.672-1.638-4.78c-1.108-1.108-3.308-1.099-4.78-1.638L0.844 11.175c-0.629-0.23-0.629-1.12 0-1.35l1.876-0.687c1.472-0.539 3.672-0.53 4.78-1.638c1.108-1.108 1.099-3.308 1.638-4.78z' fill='%23F7F3EE'/></svg>"); }
.sparkle--6  { top:  90%;  left:  18%; width: 12px; animation-delay: 0.9s;  }
.sparkle--7  { top: -8%;  left:  72%; width: 10px; animation-delay: 0.2s;  }
.sparkle--8  { top:  35%;  left: 100%; width: 14px; animation-delay: 0.6s;  }
.sparkle--9  { top:  80%;  left:  88%; width: 11px; animation-delay: 1.3s;  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 21'><path d='M9.825 0.844c0.23-0.629 1.12-0.629 1.35 0l0.687 1.876c0.539 1.472 0.53 3.672 1.638 4.78c1.108 1.108 3.308 1.099 4.78 1.638l1.876 0.687c0.63 0.23 0.63 1.12 0 1.35l-1.876 0.687c-1.472 0.539-3.672 0.53-4.78 1.638c-1.108 1.108-1.099 3.308-1.638 4.78l-0.687 1.876c-0.23 0.63-1.12 0.63-1.35 0l-0.687-1.876c-0.539-1.472-0.53-3.672-1.638-4.78c-1.108-1.108-3.308-1.099-4.78-1.638L0.844 11.175c-0.629-0.23-0.629-1.12 0-1.35l1.876-0.687c1.472-0.539 3.672-0.53 4.78-1.638c1.108-1.108 1.099-3.308 1.638-4.78z' fill='%23F7F3EE'/></svg>"); }
.sparkle--10 { top: -12%; left: 105%; width: 13px; animation-delay: 1.0s;  }

@keyframes sparkle-twinkle {
  0%   { opacity: 0; transform: scale(0) rotate(75deg); }
  40%  { opacity: 1; transform: scale(1) rotate(120deg); }
  100% { opacity: 0; transform: scale(0) rotate(150deg); }
}

@media (prefers-reduced-motion: reduce) {
  .sparkle { animation: none; opacity: 0.6; transform: scale(1); }
}

.confirmation-sub {
  font-size: 1.1rem;
  color: rgba(247, 243, 238, 0.75);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.confirmation-sub strong {
  color: var(--antique-gold);
  font-weight: 700;
}

.confirmation-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: left;
  margin-bottom: 48px;
  background: rgba(247, 243, 238, 0.04);
  border-radius: 18px;
  padding: 36px;
  border: 1px solid rgba(198, 161, 91, 0.18);
  backdrop-filter: blur(8px);
}

.confirmation-detail-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.cdi-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(198, 161, 91, 0.25), rgba(198, 161, 91, 0.08));
  border: 1px solid rgba(198, 161, 91, 0.4);
  color: var(--antique-gold);
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.confirmation-detail-item strong {
  display: block;
  font-size: 1rem;
  color: var(--ivory-white);
  margin-bottom: 6px;
  font-weight: 600;
}

.confirmation-detail-item p {
  font-size: 0.9rem;
  color: rgba(247, 243, 238, 0.65);
  line-height: 1.6;
  margin: 0;
}

.confirmation-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.confirmation-actions .btn-outline {
  color: var(--ivory-white);
  border-color: rgba(247, 243, 238, 0.3);
  background: transparent;
}

.confirmation-actions .btn-outline:hover {
  background: rgba(247, 243, 238, 0.08);
  color: var(--ivory-white);
  border-color: rgba(198, 161, 91, 0.5);
}

@media (max-width: 640px) {
  .confirmation-section { padding: 90px 0 70px; }
  .confirmation-details { padding: 24px; }
  .confirmation-actions .btn { width: 100%; }
}

/* ─────────────────────────────────────────
   RESPONSIVE — NEW PAGES
───────────────────────────────────────── */
@media (max-width: 968px) {
  .about-mission-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .join-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .resources-grid {
    grid-template-columns: 1fr 1fr;
  }

  .resource-card--featured {
    grid-column: span 2;
  }

  .hiw-steps::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .page-hero {
    padding: 120px 0 60px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-mission-stats {
    grid-template-columns: 1fr 1fr;
  }

  .join-main > .container {
    padding: 0 8px;
  }

  .join-form-card {
    padding: 20px 10px;
    border-radius: 12px;
  }

  .join-trust-row {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }

  .resource-card--featured {
    grid-column: span 1;
  }

  .resources-filter-bar {
    gap: 8px;
  }

  .hiw-step {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }
}

/* ==========================================================================
   Imagery Styles
   ========================================================================== */

/* Pathway cards with images */
.pathway-card--with-image {
  padding-top: 0;
  overflow: hidden;
}

.pathway-card--with-image .pathway-badge {
  z-index: 2;
}

.pathway-image {
  margin: 0 -32px 28px;
  height: 220px;
  overflow: hidden;
  position: relative;
  border-bottom: 3px solid var(--antique-gold);
  background: var(--midnight-black);
}

.pathway-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.pathway-card--with-image:hover .pathway-image img {
  transform: scale(1.04);
}

/* About story image */
.about-story-image {
  margin: 0 auto 40px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(198, 161, 91, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  max-width: 760px;
}

.about-story-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Hero with background image */
.page-hero--imaged {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Join hero with image */
.join-hero--imaged {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.join-hero--imaged .join-hero-bg {
  opacity: 0.35;
}

/* CTA section with image backdrop */
.cta-section--imaged {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

@media (min-width: 1024px) {
  .cta-section--imaged {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  .pathway-image {
    height: 180px;
  }

  .about-story-image {
    margin-bottom: 28px;
  }
}

/* ==========================================================================
   CTA — Singular Focus Variant
   ========================================================================== */
.cta-buttons--single {
  display: flex;
  justify-content: center;
}

.cta-subline {
  margin-top: 18px;
  color: rgba(247, 243, 238, 0.62);
  font-size: 0.95rem;
}

.cta-subline a {
  color: var(--antique-gold);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dotted rgba(198, 161, 91, 0.5);
}

.cta-subline a:hover {
  border-bottom-color: var(--antique-gold);
}

/* On about page (light bg) the subline color shifts via inheritance, but force good contrast */
.about-cta .cta-subline {
  color: rgba(247, 243, 238, 0.62);
}

/* ==========================================================================
   Article Hero — Imaged
   ========================================================================== */
.article-hero--imaged {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.article-hero--imaged .article-title {
  color: var(--ivory-white);
}

.article-hero--imaged .article-excerpt {
  color: rgba(247, 243, 238, 0.82);
}

.article-hero--imaged .article-back-link {
  color: rgba(247, 243, 238, 0.7);
}

.article-hero--imaged .article-back-link:hover {
  color: var(--antique-gold);
}

.article-hero--imaged .resource-read-time {
  color: rgba(247, 243, 238, 0.75);
}

.article-hero--imaged .resource-level--beginner {
  background: rgba(74, 222, 128, 0.18);
  color: #4ade80;
}

.article-hero--imaged .resource-level--intermediate {
  background: rgba(250, 204, 21, 0.2);
  color: #facc15;
}

.article-hero--imaged .resource-level--advanced {
  background: rgba(248, 113, 113, 0.2);
  color: #f87171;
}

.article-hero--imaged .resource-card-tag {
  background: rgba(179, 19, 27, 0.2);
  color: #fca5a5;
  border-color: rgba(179, 19, 27, 0.4);
}

/* ==========================================================================
   FAQ Page (scoped to .faq-page to avoid clashing with home mini-FAQ rules)
   ========================================================================== */
.faq-page .faq-item summary::after {
  content: none;
}

.faq-page .faq-item[open] summary::after {
  transform: none;
}

.faq-page .faq-item p {
  padding: 0;
  font-size: inherit;
  color: inherit;
}

.faq-page .faq-section {
  padding: 80px 0 60px;
  background: var(--ivory-white);
}

.faq-toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto 32px;
  flex-wrap: wrap;
}

.faq-search {
  flex: 1;
  min-width: 240px;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  border: 2px solid rgba(35, 37, 43, 0.12);
  border-radius: 10px;
  color: var(--charcoal-slate);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-search:focus {
  outline: none;
  border-color: var(--casino-red);
  box-shadow: 0 0 0 3px rgba(179, 19, 27, 0.1);
}

.faq-search-meta {
  font-size: 0.9rem;
  color: rgba(35, 37, 43, 0.6);
  font-weight: 500;
}

.faq-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto 56px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(35, 37, 43, 0.08);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

.faq-toc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal-slate);
  background: var(--ivory-white);
  border: 1px solid rgba(35, 37, 43, 0.08);
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.faq-toc-link:hover {
  background: var(--casino-red);
  color: var(--ivory-white);
  border-color: var(--casino-red);
}

.faq-toc-count {
  color: rgba(35, 37, 43, 0.5);
  font-weight: 500;
  font-size: 0.85rem;
}

.faq-toc-link:hover .faq-toc-count {
  color: rgba(247, 243, 238, 0.75);
}

.faq-categories {
  max-width: 860px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 64px;
  scroll-margin-top: 80px;
}

.faq-category-header {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--antique-gold);
}

.faq-category-header h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--charcoal-slate);
  margin-bottom: 8px;
}

.faq-category-intro {
  color: rgba(35, 37, 43, 0.7);
  font-size: 1rem;
  margin: 0;
}

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

.faq-item {
  background: var(--white);
  border: 1px solid rgba(35, 37, 43, 0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(198, 161, 91, 0.4);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--charcoal-slate);
  line-height: 1.45;
  transition: background-color 0.15s ease;
}

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

.faq-question:hover {
  background-color: rgba(247, 243, 238, 0.7);
}

.faq-q-text {
  flex: 1;
}

.faq-q-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--casino-red);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-q-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 4px 22px 22px;
  color: rgba(35, 37, 43, 0.85);
  line-height: 1.7;
  font-size: 0.98rem;
}

.faq-answer p {
  margin: 0;
}

.faq-empty {
  text-align: center;
  padding: 40px 20px;
  color: rgba(35, 37, 43, 0.6);
  font-style: italic;
}

@media (max-width: 768px) {
  .faq-toc {
    padding: 16px;
  }

  .faq-toc-link {
    font-size: 0.85rem;
    padding: 6px 12px;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 0.98rem;
  }

  .faq-answer {
    padding: 4px 18px 18px;
  }

  .faq-category {
    margin-bottom: 48px;
  }
}

/* Hero single-CTA meta line */
.hero-ctas--single {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-cta-meta {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(247, 243, 238, 0.62);
  letter-spacing: 0.01em;
}

/* Why-deal feature grid */
.why-deal {
  padding: 96px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1140px;
  margin: 0 auto;
}

.why-card {
  background: var(--ivory-white);
  border: 1px solid rgba(35, 37, 43, 0.08);
  border-radius: 14px;
  padding: 32px 28px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  border-color: rgba(198, 161, 91, 0.4);
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(198, 161, 91, 0.12);
  margin-bottom: 18px;
}

.why-card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
  color: var(--charcoal-slate);
}

.why-card p {
  color: rgba(35, 37, 43, 0.72);
  line-height: 1.6;
  font-size: 0.96rem;
  margin: 0;
}

/* Inline text-link helper for "See all 219 answers" */
.text-link {
  color: var(--casino-red);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dotted rgba(179, 19, 27, 0.4);
}

.text-link:hover {
  border-bottom-color: var(--casino-red);
}

/* ─────────────────────────────────────────
   MOBILE OVERFLOW HARDENING (Resources + global)
───────────────────────────────────────── */
html, body {
  overflow-x: hidden;
}

img, svg, video {
  max-width: 100%;
  height: auto;
}

.page-hero-title,
.article-title,
.article-excerpt,
.page-hero-sub,
.resource-card h3,
.resource-card p,
.article-content,
.article-content p,
.article-content li,
.article-content h2,
.article-content h3 {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.article-content {
  max-width: 100%;
}

@media (max-width: 740px) {
  .article-content {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.75;
  }
  .article-content h2 {
    font-size: 1.35rem;
    margin: 32px 0 12px;
  }
  .article-hero {
    padding: 100px 0 28px;
  }
  .article-body {
    padding: 36px 0 56px;
  }
  .article-meta-top {
    gap: 8px;
  }
  .article-cta {
    padding: 50px 0;
  }
  .article-cta-inner h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 18px;
  }
  .page-hero {
    padding: 110px 0 50px;
  }
  .page-hero-title {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
    line-height: 1.15;
  }
  .page-hero-sub {
    font-size: 0.98rem;
  }
  .resources-section {
    padding: 48px 0 64px;
  }
  .resources-filter-bar {
    margin: 0 0 28px;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .resources-filter {
    padding: 7px 12px;
    font-size: 0.78rem;
    white-space: nowrap;
  }
  .resources-filter-count {
    margin-left: 5px;
    padding: 1px 6px;
    font-size: 0.68rem;
  }
  .resource-card {
    padding: 22px;
  }
  .resource-card h3 {
    font-size: 1rem;
  }
  .resources-cta-inner h2,
  .article-cta-inner h2 {
    font-size: 1.4rem;
  }
  .article-title {
    font-size: clamp(1.6rem, 7vw, 2.1rem);
  }
  .article-excerpt {
    font-size: 1rem;
  }
}

/* ─────────────────────────────────────────
   MARQUEE HERO — Reusable dark animated hero
   Used on /resources, /about, /how-it-works.
   Opt in with class="marquee-hero" on a <section>.
───────────────────────────────────────── */
.marquee-hero {
  position: relative;
  background: var(--midnight-black);
  color: var(--ivory-white);
  overflow: hidden;
  min-height: 92vh;
  padding: 140px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 60px;
}

.marquee-hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 60vh;
  background: radial-gradient(
    ellipse at center,
    rgba(198, 161, 91, 0.18) 0%,
    rgba(179, 19, 27, 0.08) 35%,
    transparent 70%
  );
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.marquee-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.marquee-hero-badge {
  margin-bottom: 22px;
}

.marquee-hero-title {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  color: var(--ivory-white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 900;
  margin: 0 0 22px;
}

.marquee-hero-sub {
  font-size: 1.15rem;
  color: rgba(247, 243, 238, 0.72);
  line-height: 1.7;
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto 36px;
}

.marquee-hero-cta {
  margin-bottom: 16px;
}

.marquee-hero-marquee {
  position: relative;
  width: 100%;
  height: 320px;
  flex-shrink: 0;
  overflow: hidden;
  z-index: 1;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.marquee-hero-marquee::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(11, 11, 13, 0.55) 0%,
    rgba(11, 11, 13, 0) 30%,
    rgba(11, 11, 13, 0) 70%,
    rgba(11, 11, 13, 0.65) 100%
  );
}

.marquee-hero-marquee-track {
  display: flex;
  gap: 22px;
  width: max-content;
  height: 100%;
  align-items: center;
  padding: 0 22px;
  animation: marquee-hero-scroll 55s linear infinite;
}

.marquee-hero-marquee:hover .marquee-hero-marquee-track {
  animation-play-state: paused;
}

.marquee-hero-card {
  flex-shrink: 0;
  width: 220px;
  height: 290px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(198, 161, 91, 0.18);
  transform: rotate(var(--rot, 0deg));
  background: rgba(247, 243, 238, 0.04);
}

.marquee-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes marquee-hero-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-hero-marquee-track {
    animation: none;
  }
}

@media (max-width: 900px) {
  .marquee-hero {
    min-height: auto;
    padding: 120px 20px 0;
    gap: 40px;
  }
  .marquee-hero-marquee {
    height: 240px;
  }
  .marquee-hero-card {
    width: 160px;
    height: 210px;
    border-radius: 16px;
  }
  .marquee-hero-marquee-track {
    gap: 14px;
    animation-duration: 40s;
  }
}

@media (max-width: 480px) {
  .marquee-hero {
    padding: 100px 18px 0;
    gap: 32px;
  }
  .marquee-hero-sub {
    font-size: 1rem;
    margin-bottom: 28px;
  }
  .marquee-hero-marquee {
    height: 200px;
  }
  .marquee-hero-card {
    width: 140px;
    height: 184px;
  }
}

/* ─────────────────────────────────────────
   FUN AT WORK — Sticky-scroll Photo Gallery
───────────────────────────────────────── */
.fun-gallery {
  background: var(--midnight-black);
  padding: 100px 0 0;
  color: var(--ivory-white);
  position: relative;
  overflow: hidden;
}

.fun-gallery-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.fun-gallery-header .hero-badge {
  margin-bottom: 18px;
}

.fun-gallery-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ivory-white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.fun-gallery-header p {
  color: rgba(247, 243, 238, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
}

.fun-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  padding: 0 14px;
  max-width: 1500px;
  margin: 0 auto;
  align-items: start;
}

.fun-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fun-col:nth-child(2) {
  margin-top: 36px;
}

.fun-figure {
  margin: 0;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(247, 243, 238, 0.04);
  position: relative;
}

.fun-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.fun-figure:hover img {
  transform: scale(1.03);
}

.fun-gallery-cta {
  text-align: center;
  padding: 70px 0 100px;
}

@media (max-width: 900px) {
  .fun-gallery {
    padding: 70px 0 0;
  }
  .fun-gallery-grid {
    grid-template-columns: 1fr;
    padding: 0 18px;
    gap: 12px;
  }
  .fun-col {
    gap: 12px;
  }
  .fun-col:nth-child(2) {
    margin-top: 0;
  }
  .fun-figure {
    aspect-ratio: 4 / 3;
  }
  .fun-gallery-cta {
    padding: 48px 0 70px;
  }
}

/* ─────────────────────────────────────────
   RESOURCE PAGES — Extra-small mobile polish
───────────────────────────────────────── */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .page-hero {
    padding: 96px 0 44px;
  }
  .page-hero-title {
    font-size: clamp(1.55rem, 8.5vw, 2.1rem);
  }
  .page-hero-sub {
    font-size: 0.92rem;
  }
  .resources-section {
    padding: 36px 0 56px;
  }
  .resources-grid {
    gap: 14px;
  }
  .resource-card {
    padding: 18px;
    border-radius: 12px;
  }
  .resource-card h3 {
    font-size: 0.98rem;
  }
  .resource-card p {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
  .resource-card-meta {
    gap: 8px;
    margin-bottom: 10px;
  }
  .resource-card--featured {
    padding: 22px;
  }
  .resources-filter-bar {
    margin: 0 0 22px;
    padding: 0;
    gap: 6px;
  }
  .resources-filter {
    padding: 6px 10px;
    font-size: 0.74rem;
  }
  .resources-filter-count {
    margin-left: 4px;
    padding: 1px 5px;
    font-size: 0.66rem;
  }
  .article-hero {
    padding: 90px 0 22px;
  }
  .article-title {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
  }
  .article-excerpt {
    font-size: 0.95rem;
  }
  .article-body {
    padding: 28px 0 44px;
  }
  .article-content {
    font-size: 0.97rem;
    line-height: 1.7;
  }
  .article-content h2 {
    font-size: 1.2rem;
    margin: 26px 0 10px;
  }
  .article-content ul,
  .article-content ol {
    margin-left: 20px;
  }
  .article-cta,
  .resources-cta {
    padding: 44px 0;
  }
  .article-cta-inner h2,
  .resources-cta-inner h2 {
    font-size: 1.25rem;
  }
  .article-cta-inner p,
  .resources-cta-inner p {
    font-size: 0.9rem;
  }
  .related-articles-grid {
    gap: 14px !important;
  }
}

/* Ensure related articles section (added by another task) stacks on mobile */
@media (max-width: 740px) {
  .related-articles-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   Events Page
   ========================================================================== */

.events-hero {
  position: relative;
  padding: 130px 0 80px;
  background: var(--midnight-black);
  color: var(--ivory-white);
  overflow: hidden;
}

.events-hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(198, 161, 91, 0.18), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.events-hero .container {
  position: relative;
  z-index: 1;
}

.events-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.events-hero-badge {
  background: rgba(198, 161, 91, 0.12);
  color: var(--antique-gold);
  border-color: rgba(198, 161, 91, 0.35);
}

.events-hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 18px 0 22px;
  color: var(--ivory-white);
}

.events-hero-headline .sparkles-text strong {
  font-weight: 800;
}

.events-hero-sub {
  font-size: 1.05rem;
  color: rgba(247, 243, 238, 0.78);
  line-height: 1.6;
  margin: 0 auto 24px;
  max-width: 620px;
}

.events-hero-sub strong {
  color: var(--antique-gold);
  font-weight: 600;
}

.events-hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  font-size: 0.88rem;
  color: rgba(247, 243, 238, 0.7);
}

.events-hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.events-hero-cta {
  margin-top: 4px;
}

/* ---- Main / Toolbar ---- */

.events-main {
  padding: 60px 0 80px;
  background: var(--ivory-white);
}

.events-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.events-toolbar-title {
  font-size: 1.5rem;
  color: var(--charcoal-slate);
  margin: 0;
}

.events-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.events-filter {
  padding: 8px 16px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid rgba(35, 37, 43, 0.12);
  color: var(--smoke-gray);
  background: var(--white);
  transition: all 0.2s;
}

.events-filter:hover,
.events-filter.active {
  background: var(--midnight-black);
  color: var(--ivory-white);
  border-color: var(--midnight-black);
}

.events-filter-count {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 8px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(35, 37, 43, 0.08);
  color: var(--smoke-gray);
  transition: all 0.2s;
}

.events-filter:hover .events-filter-count,
.events-filter.active .events-filter-count {
  background: rgba(247, 243, 238, 0.18);
  color: var(--ivory-white);
}

/* ---- Table ---- */

.events-table-wrap {
  background: var(--white);
  border: 1px solid rgba(35, 37, 43, 0.08);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.events-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.92rem;
  color: var(--charcoal-slate);
}

.events-table thead th {
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--smoke-gray);
  padding: 14px 12px;
  border-bottom: 1px solid rgba(35, 37, 43, 0.1);
}

.events-table tbody tr {
  transition: background-color 0.15s;
}

.events-table tbody tr:nth-child(even) {
  background: rgba(35, 37, 43, 0.02);
}

.events-table tbody tr:hover {
  background: rgba(198, 161, 91, 0.07);
}

.events-table td {
  padding: 18px 12px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(35, 37, 43, 0.05);
}

.events-table tbody tr:last-child td {
  border-bottom: none;
}

/* Date column */
.evt-col-date {
  width: 84px;
  text-align: center;
}

.evt-date-month {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--casino-red);
}

.evt-date-day {
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
  color: var(--charcoal-slate);
  margin-top: 2px;
}

.evt-date-dow {
  font-size: 0.72rem;
  color: var(--smoke-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.evt-time-mobile {
  display: none;
}

/* Event column */
.evt-event-name {
  font-weight: 600;
  color: var(--charcoal-slate);
  font-size: 0.98rem;
  line-height: 1.35;
}

.evt-event-time {
  font-size: 0.78rem;
  color: var(--smoke-gray);
  margin-top: 4px;
}

/* Location */
.evt-venue {
  font-weight: 500;
  color: var(--charcoal-slate);
}

.evt-city {
  font-size: 0.8rem;
  color: var(--smoke-gray);
  margin-top: 3px;
}

/* Games */
.evt-games-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.evt-game-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(198, 161, 91, 0.12);
  color: #8b6f3a;
  border: 1px solid rgba(198, 161, 91, 0.25);
}

/* Need */
.evt-col-need {
  text-align: center;
  width: 70px;
}

.evt-need-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal-slate);
  line-height: 1;
}

.evt-need-label {
  font-size: 0.7rem;
  color: var(--smoke-gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* Pay */
.evt-col-pay {
  font-weight: 600;
  color: var(--casino-red);
  white-space: nowrap;
}

/* Status */
.evt-status {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.evt-status--open {
  background: rgba(74, 222, 128, 0.16);
  color: #16a34a;
}

.evt-status--filling {
  background: rgba(250, 204, 21, 0.18);
  color: #b45309;
}

.evt-status--filled {
  background: rgba(35, 37, 43, 0.08);
  color: var(--smoke-gray);
}

/* CTA */
.evt-col-cta {
  text-align: right;
  white-space: nowrap;
}

.evt-apply-btn {
  padding: 7px 14px;
  font-size: 0.82rem;
}

/* Empty / disclaimer */
.events-empty {
  text-align: center;
  padding: 48px 16px;
  color: var(--smoke-gray);
  font-size: 0.95rem;
}

.events-disclaimer {
  margin-top: 24px;
  padding: 14px 18px;
  background: rgba(198, 161, 91, 0.06);
  border: 1px solid rgba(198, 161, 91, 0.18);
  border-radius: 10px;
}

.events-disclaimer p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--smoke-gray);
  line-height: 1.5;
}

/* ---- Bottom CTA ---- */

.events-cta {
  background: var(--midnight-black);
  padding: 80px 0;
  color: var(--ivory-white);
}

.events-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.events-cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--ivory-white);
  margin-bottom: 14px;
}

.events-cta-inner p {
  font-size: 1.02rem;
  color: rgba(247, 243, 238, 0.72);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ---- Mobile: convert rows to cards ---- */

@media (max-width: 900px) {
  .events-hero {
    padding: 110px 0 60px;
  }

  .events-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .events-table-wrap {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    overflow: visible;
  }

  .events-table {
    display: block;
  }

  .events-table thead {
    display: none;
  }

  .events-table tbody {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .events-table tbody tr,
  .events-table tbody tr:nth-child(even) {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "date    event"
      "date    location"
      "games   games"
      "meta    meta"
      "cta     cta";
    column-gap: 16px;
    row-gap: 10px;
    background: var(--white);
    border: 1px solid rgba(35, 37, 43, 0.08);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  }

  .events-table tbody tr:hover {
    background: var(--white);
  }

  .events-table tbody tr td {
    border-bottom: none;
    padding: 0;
  }

  .evt-col-date {
    grid-area: date;
    width: auto;
    min-width: 64px;
    padding: 6px 12px !important;
    background: rgba(179, 19, 27, 0.06);
    border-radius: 10px;
    align-self: start;
  }

  .evt-time-mobile {
    display: none;
  }

  .evt-col-event {
    grid-area: event;
    align-self: end;
  }

  .evt-col-location {
    grid-area: location;
  }

  .evt-col-games {
    grid-area: games;
  }

  .evt-col-need,
  .evt-col-pay,
  .evt-col-status {
    grid-area: unset;
  }

  .evt-col-need {
    display: none;
  }

  .evt-col-pay,
  .evt-col-status {
    display: inline-flex;
  }

  /* meta row: pay + status side by side */
  .events-table tbody tr {
    grid-template-areas:
      "date    event"
      "date    location"
      "games   games"
      "pay     status"
      "cta     cta";
  }

  .evt-col-pay {
    grid-area: pay;
    align-self: center;
    font-size: 1rem;
  }

  .evt-col-status {
    grid-area: status;
    text-align: right;
    justify-content: flex-end;
    align-self: center;
  }

  .evt-col-cta {
    grid-area: cta;
    text-align: stretch;
  }

  .evt-apply-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 14px;
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .events-main {
    padding: 40px 0 60px;
  }

  .events-cta {
    padding: 56px 0;
  }

  .evt-event-name {
    font-size: 0.94rem;
  }
}

/* ==========================================================================
   ADMIN PANEL (PIN-protected /admin/*)
   ========================================================================== */
.admin-body {
  background: #0f0f12;
  color: var(--ivory-white);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  margin: 0;
}
.admin-body * { box-sizing: border-box; }

.admin-header {
  background: #16161a;
  border-bottom: 1px solid rgba(198, 161, 91, 0.18);
  position: sticky;
  top: 0;
  z-index: 50;
}
.admin-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.admin-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.admin-brand .brand-casino { color: var(--casino-red); }
.admin-brand .brand-party  { color: var(--ivory-white); }
.admin-brand .brand-dealers { color: var(--antique-gold); }
.admin-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  background: var(--antique-gold);
  color: #111;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 8px;
  font-weight: 700;
}
.admin-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.admin-nav-link {
  color: rgba(247, 243, 238, 0.78);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.15s;
}
.admin-nav-link:hover { color: var(--antique-gold); }
.admin-signout-btn {
  background: transparent;
  border: 1px solid rgba(198, 161, 91, 0.4);
  color: var(--antique-gold);
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.admin-signout-btn:hover { background: rgba(198, 161, 91, 0.12); }
.admin-signout-btn form, form.button_to { margin: 0; display: inline; }

.admin-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.admin-flash {
  padding: 12px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 0.95rem;
}
.admin-flash--notice {
  background: rgba(46, 160, 67, 0.14);
  border: 1px solid rgba(46, 160, 67, 0.4);
  color: #6fdc8c;
}
.admin-flash--alert {
  background: rgba(179, 19, 27, 0.16);
  border: 1px solid rgba(179, 19, 27, 0.5);
  color: #ff8b91;
}

/* ---- Login screen ---- */
.admin-login-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.admin-login-card {
  background: #16161a;
  border: 1px solid rgba(198, 161, 91, 0.22);
  border-radius: 14px;
  padding: 48px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.admin-login-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.9rem;
  margin: 0 0 8px;
  color: var(--ivory-white);
}
.admin-login-sub {
  color: rgba(247, 243, 238, 0.6);
  font-size: 0.95rem;
  margin: 0 0 28px;
}
.admin-login-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.admin-pin-input {
  background: #0b0b0d;
  border: 1px solid rgba(198, 161, 91, 0.3);
  color: var(--ivory-white);
  font-size: 1.6rem;
  letter-spacing: 0.4em;
  text-align: center;
  padding: 16px 14px;
  border-radius: 10px;
  font-family: 'Inter', monospace;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.admin-pin-input:focus {
  border-color: var(--antique-gold);
  box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.18);
}
.admin-login-btn { width: 100%; }

/* ---- Page chrome ---- */
.admin-page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(198, 161, 91, 0.18);
}
.admin-page-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  margin: 0 0 4px;
  color: var(--ivory-white);
}
.admin-page-sub {
  color: rgba(247, 243, 238, 0.6);
  margin: 0;
  font-size: 0.95rem;
}

.admin-section { margin-top: 36px; }
.admin-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--antique-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 14px;
}
.admin-empty {
  background: #16161a;
  border: 1px dashed rgba(198, 161, 91, 0.25);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  color: rgba(247, 243, 238, 0.55);
}

/* ---- Tables ---- */
.admin-table-wrap {
  background: #16161a;
  border: 1px solid rgba(198, 161, 91, 0.16);
  border-radius: 12px;
  overflow-x: auto;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 800px;
}
.admin-table thead th {
  text-align: left;
  padding: 14px 16px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.5);
  border-bottom: 1px solid rgba(198, 161, 91, 0.18);
  background: #131316;
}
.admin-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: top;
}
.admin-table tbody tr:last-child td { border-bottom: none; }
.admin-table tbody tr:hover { background: rgba(198, 161, 91, 0.04); }
.admin-table--muted { opacity: 0.85; }

.admin-text-muted { color: rgba(247, 243, 238, 0.5); font-size: 0.85rem; }

.admin-pill {
  display: inline-block;
  background: rgba(198, 161, 91, 0.12);
  color: var(--antique-gold);
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  margin: 2px 3px 2px 0;
  font-weight: 500;
}

.admin-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.admin-status--open      { background: rgba(46, 160, 67, 0.18); color: #6fdc8c; }
.admin-status--filling   { background: rgba(255, 168, 38, 0.18); color: #ffc26b; }
.admin-status--filled    { background: rgba(120, 120, 130, 0.22); color: #c4c4cc; }
.admin-status--completed { background: rgba(80, 80, 90, 0.22); color: #888892; }

.admin-table-actions-col { width: 1%; white-space: nowrap; }
.admin-table-actions {
  white-space: nowrap;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.admin-table-actions form { display: inline; margin: 0; }

.admin-action {
  display: inline-block;
  background: var(--antique-gold);
  color: #111;
  padding: 7px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--antique-gold);
  cursor: pointer;
  font-family: inherit;
  transition: filter 0.15s;
}
.admin-action:hover { filter: brightness(1.1); }
.admin-action--ghost {
  background: transparent;
  color: var(--antique-gold);
  border-color: rgba(198, 161, 91, 0.4);
}
.admin-action--ghost:hover { background: rgba(198, 161, 91, 0.12); }
.admin-action--danger {
  background: transparent;
  color: #ff8b91;
  border-color: rgba(179, 19, 27, 0.5);
}
.admin-action--danger:hover { background: rgba(179, 19, 27, 0.18); }

/* ---- Forms ---- */
.admin-form {
  background: #16161a;
  border: 1px solid rgba(198, 161, 91, 0.16);
  border-radius: 12px;
  padding: 28px;
}
.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.admin-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.admin-form-group--span { grid-column: 1 / -1; }
.admin-form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(247, 243, 238, 0.85);
  letter-spacing: 0.02em;
}
.admin-input {
  background: #0b0b0d;
  border: 1px solid rgba(198, 161, 91, 0.22);
  color: var(--ivory-white);
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.admin-input:focus {
  border-color: var(--antique-gold);
  box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.15);
}
select.admin-input {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--antique-gold) 50%), linear-gradient(135deg, var(--antique-gold) 50%, transparent 50%);
  background-position: calc(100% - 18px) center, calc(100% - 13px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.admin-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 10px;
  background: #0b0b0d;
  border: 1px solid rgba(198, 161, 91, 0.2);
  border-radius: 8px;
  padding: 14px;
}
.admin-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: rgba(247, 243, 238, 0.88);
  cursor: pointer;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}
.admin-checkbox-label input[type="checkbox"] {
  accent-color: var(--antique-gold);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.admin-form-actions {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .admin-form-grid { grid-template-columns: 1fr; }
  .admin-page-title { font-size: 1.5rem; }
  .admin-main { padding: 20px 16px 60px; }
  .admin-form { padding: 20px; }
}

/* ==========================================================================
   BARISTAS LANDING PAGE (/baristas)
   ========================================================================== */
.baristas-hero .join-hero-title { font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.1; }

.baristas-why {
  background: var(--ivory-white);
  padding: 90px 0;
}
.baristas-why-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.baristas-why-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  color: var(--midnight-black);
  margin: 12px 0 14px;
}
.baristas-why-header p {
  color: var(--smoke-gray);
  font-size: 1.05rem;
  line-height: 1.65;
}
.baristas-skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.baristas-skill-card {
  background: #fff;
  border: 1px solid rgba(11, 11, 13, 0.08);
  border-radius: 14px;
  padding: 28px 26px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.baristas-skill-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(11, 11, 13, 0.08);
  border-color: rgba(198, 161, 91, 0.4);
}
.baristas-skill-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: inline-block;
}
.baristas-skill-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  color: var(--midnight-black);
  margin: 0 0 8px;
}
.baristas-skill-card p {
  color: var(--charcoal-slate);
  font-size: 0.96rem;
  line-height: 1.6;
  margin: 0;
}

.baristas-compare {
  background: var(--midnight-black);
  color: var(--ivory-white);
  padding: 90px 0;
}
.baristas-compare-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.baristas-compare-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  margin: 12px 0 12px;
  color: var(--ivory-white);
}
.baristas-compare-header p {
  color: rgba(247, 243, 238, 0.7);
  font-size: 1.05rem;
}
.baristas-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.baristas-compare-col {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(247, 243, 238, 0.1);
  border-radius: 14px;
  padding: 32px 28px;
}
.baristas-compare-col--cpd {
  border-color: rgba(198, 161, 91, 0.5);
  background: linear-gradient(180deg, rgba(198, 161, 91, 0.08), rgba(198, 161, 91, 0.02));
  position: relative;
  box-shadow: 0 20px 60px rgba(198, 161, 91, 0.12);
}
.baristas-compare-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(247, 243, 238, 0.1);
  color: rgba(247, 243, 238, 0.75);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.baristas-compare-tag--gold {
  background: var(--antique-gold);
  color: #111;
}
.baristas-compare-col h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  margin: 0 0 22px;
  color: var(--ivory-white);
}
.baristas-compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.baristas-compare-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(247, 243, 238, 0.07);
  font-size: 0.98rem;
}
.baristas-compare-list li:last-child {
  border-bottom: none;
  padding-top: 18px;
  margin-top: 6px;
  border-top: 1px solid rgba(247, 243, 238, 0.18);
  font-weight: 700;
}
.bc-label { color: rgba(247, 243, 238, 0.65); }
.bc-value { color: var(--ivory-white); font-weight: 600; }
.baristas-compare-col--cpd .baristas-compare-list li:last-child .bc-value { color: var(--antique-gold); font-size: 1.1rem; }
.baristas-compare-fineprint {
  text-align: center;
  margin: 32px auto 0;
  color: rgba(247, 243, 238, 0.45);
  font-size: 0.85rem;
  font-style: italic;
}

@media (max-width: 720px) {
  .baristas-compare-grid { grid-template-columns: 1fr; }
  .baristas-why, .baristas-compare { padding: 60px 0; }
}

.footer-bottom-admin {
  margin-top: 8px;
  font-size: 0.78rem;
  opacity: 0.45;
  text-align: center;
}
.footer-bottom-admin a {
  color: var(--antique-gold);
  text-decoration: none;
}
.footer-bottom-admin a:hover { opacity: 1; text-decoration: underline; }

/* ==========================================================================
   /admin/bust — Retro 64-bit Casino "BUST!" lockout screen
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap');

.bust-stage {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background:
    radial-gradient(ellipse at center, rgba(179, 19, 27, 0.18), transparent 65%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0 2px, transparent 2px 4px),
    #0b0b0d;
  position: relative;
  overflow: hidden;
}
.bust-stage::before, .bust-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 30%, rgba(198,161,91,0.08), transparent 35%),
    radial-gradient(circle at 82% 70%, rgba(179,19,27,0.12), transparent 40%);
}
.bust-stage::after {
  background: linear-gradient(180deg, transparent 0%, rgba(11,11,13,0.5) 100%);
}

.bust-saloon {
  position: relative;
  z-index: 2;
  max-width: 640px;
  width: 100%;
  padding: 50px 36px 38px;
  background: linear-gradient(180deg, #14110f 0%, #1a1714 100%);
  border: 4px solid var(--antique-gold);
  border-radius: 6px;
  box-shadow:
    0 0 0 4px #0b0b0d,
    0 0 0 6px var(--antique-gold),
    0 30px 80px rgba(0,0,0,0.7),
    inset 0 0 0 1px rgba(198,161,91,0.4);
  text-align: center;
  font-family: 'VT323', monospace;
  color: var(--ivory-white);
}

.bust-bulbs {
  position: absolute;
  top: -12px; left: 12px; right: 12px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.bust-bulb {
  width: 10px; height: 10px;
  background: var(--antique-gold);
  border-radius: 50%;
  box-shadow: 0 0 6px #ffd980, 0 0 12px rgba(255,217,128,0.6);
  animation: bustBlink 1.2s steps(2, end) infinite;
  animation-delay: calc(var(--i) * 0.1s);
}
@keyframes bustBlink {
  0%, 49%   { opacity: 1; background: var(--antique-gold); }
  50%, 100% { opacity: 0.25; background: #6a4d20; box-shadow: none; }
}

.bust-cards {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 18px;
}
.bust-card {
  width: 56px;
  height: 76px;
  background: var(--ivory-white);
  border: 3px solid #0b0b0d;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Press Start 2P', monospace;
  color: #0b0b0d;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
  position: relative;
  animation: bustCardWobble 2.4s ease-in-out infinite;
}
.bust-card--left  { transform: rotate(-12deg); animation-delay: 0s; }
.bust-card--right { transform: rotate(12deg);  animation-delay: 0.3s; color: var(--casino-red); }
.bust-card-rank {
  font-size: 1.05rem;
  line-height: 1;
  margin-bottom: 4px;
}
.bust-card-suit {
  font-family: 'Press Start 2P', monospace;
  font-size: 1.2rem;
  line-height: 1;
}
.bust-card--right .bust-card-suit { color: var(--casino-red); }
@keyframes bustCardWobble {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50%      { transform: rotate(-8deg)  translateY(-4px); }
}
.bust-card--right { animation-name: bustCardWobbleR; }
@keyframes bustCardWobbleR {
  0%, 100% { transform: rotate(12deg) translateY(0); }
  50%      { transform: rotate(8deg)  translateY(-4px); }
}

.bust-headline {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(2.4rem, 8vw, 4.4rem);
  line-height: 1;
  margin: 6px 0 22px;
  color: var(--casino-red);
  text-shadow:
    4px 0 0 #0b0b0d,
    -4px 0 0 #0b0b0d,
    0 4px 0 #0b0b0d,
    0 -4px 0 #0b0b0d,
    4px 4px 0 var(--antique-gold),
    8px 8px 0 rgba(0,0,0,0.4);
  letter-spacing: 0.04em;
  display: inline-block;
  animation: bustShake 0.6s ease-in-out 3;
}
.bust-letter {
  display: inline-block;
  animation: bustDrop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
  animation-delay: calc(var(--d) * 0.08s);
}
.bust-letter--bang {
  color: var(--antique-gold);
  animation: bustDrop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) backwards, bustBangPulse 0.9s ease-in-out infinite 0.6s;
  animation-delay: calc(var(--d) * 0.08s), 0.6s;
}
@keyframes bustDrop {
  0%   { transform: translateY(-120px) rotate(-12deg); opacity: 0; }
  60%  { transform: translateY(8px)   rotate(2deg);  opacity: 1; }
  100% { transform: translateY(0)     rotate(0);     opacity: 1; }
}
@keyframes bustShake {
  0%, 100% { transform: translateX(0); }
  20%      { transform: translateX(-8px) rotate(-1deg); }
  40%      { transform: translateX(8px)  rotate(1deg); }
  60%      { transform: translateX(-5px); }
  80%      { transform: translateX(5px); }
}
@keyframes bustBangPulse {
  0%, 100% { transform: scale(1) rotate(0); }
  50%      { transform: scale(1.18) rotate(6deg); }
}

.bust-subbanner {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--antique-gold);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.bust-subbanner-dot { color: var(--casino-red); margin: 0 8px; }

.bust-message {
  font-family: 'VT323', monospace;
  font-size: 1.55rem;
  line-height: 1.35;
  color: var(--ivory-white);
  max-width: 460px;
  margin: 0 auto 28px;
}
.bust-message strong { color: var(--antique-gold); font-weight: normal; }

.bust-timer-wrap {
  background: #0b0b0d;
  border: 3px solid var(--antique-gold);
  border-radius: 4px;
  padding: 14px 18px;
  display: inline-block;
  margin-bottom: 24px;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.6), 4px 4px 0 rgba(0,0,0,0.5);
  min-width: 220px;
}
.bust-timer-label {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: rgba(247,243,238,0.55);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.bust-timer {
  font-family: 'Press Start 2P', monospace;
  font-size: 1.7rem;
  color: var(--casino-red);
  text-shadow: 2px 2px 0 #0b0b0d, 0 0 8px rgba(179,19,27,0.6);
  animation: bustTimerPulse 1s ease-in-out infinite;
}
@keyframes bustTimerPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.55; }
}

.bust-retry-btn {
  display: inline-block;
  font-family: 'Press Start 2P', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  background: #2a1a0a;
  color: rgba(247,243,238,0.5);
  border: 3px solid #4a3a2a;
  padding: 14px 24px;
  border-radius: 4px;
  text-transform: uppercase;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s, color 0.2s, border-color 0.2s;
}
.bust-retry-btn[aria-disabled="true"] { opacity: 0.7; }
.bust-retry-btn--ready,
.bust-retry-btn:not([aria-disabled]) {
  background: var(--casino-red);
  color: var(--ivory-white);
  border-color: var(--antique-gold);
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 4px 4px 0 var(--antique-gold), 8px 8px 0 rgba(0,0,0,0.5);
  animation: bustReadyPulse 1.4s ease-in-out infinite;
}
.bust-retry-btn--ready:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--antique-gold), 10px 10px 0 rgba(0,0,0,0.5);
}
@keyframes bustReadyPulse {
  0%, 100% { box-shadow: 4px 4px 0 var(--antique-gold), 8px 8px 0 rgba(0,0,0,0.5); }
  50%      { box-shadow: 4px 4px 0 #ffd980, 8px 8px 0 rgba(0,0,0,0.5); }
}
.bust-retry-arrow {
  display: inline-block;
  margin-right: 6px;
  animation: bustArrowSlide 1s ease-in-out infinite;
}
@keyframes bustArrowSlide {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(-4px); }
}

.bust-fineprint {
  margin-top: 22px;
  font-family: 'VT323', monospace;
  font-size: 1.1rem;
  color: rgba(247,243,238,0.4);
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .bust-saloon { padding: 36px 20px 28px; }
  .bust-headline { font-size: clamp(2rem, 14vw, 3.2rem); }
  .bust-card { width: 48px; height: 66px; }
}

/* =====================================================
   SF Casino Parties — Light theme overrides (additive)
   ===================================================== */

:root {
  --paper:        #FFFFFF;
  --paper-warm:   #FAF7F2;
  --ink:          #1A1B20;
  --ink-soft:     #4A4E58;
  --rule:         #E6E1D7;
  --gold-soft:    #E7D6A8;
  --red-soft:     #F4DADC;
}

body { background: var(--paper-warm); color: var(--ink); }

/* ---------- Navbar (light) ---------- */
.navbar.navbar--light {
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid var(--rule);
}
.navbar.navbar--light .nav-link { color: var(--ink-soft); }
.navbar.navbar--light .nav-link:hover { color: var(--casino-red); }
.navbar.navbar--light .nav-phone { color: var(--casino-red); }
.navbar.navbar--light .hamburger-line { background: var(--ink); }
.navbar.navbar--light.nav-open .navbar-nav { background: var(--paper); border-top: 1px solid var(--rule); }
.navbar.navbar--light.nav-open .nav-link { color: var(--ink); }

.brand-sf {
  color: var(--casino-red);
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  margin-right: 6px;
}
.brand-casino-parties {
  color: var(--ink);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

/* ---------- Hero (light) ---------- */
.hero.hero--light {
  background: linear-gradient(180deg, #FAF7F2 0%, #F2EBDF 100%);
  color: var(--ink);
  padding: 140px 0 90px;
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  display: flex;
  align-items: center;
}
.hero.hero--light .hero-light-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(250,247,242,0.10) 0%, rgba(250,247,242,0.45) 55%, rgba(250,247,242,0.92) 100%);
  z-index: 1;
}
.hero.hero--light .hero-bg-image img,
.hero.hero--light .hero-bg-image source {
  filter: saturate(0.95) brightness(1.0);
}
.hero.hero--light .hero-bg-image {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero.hero--light .hero-bg-image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero.hero--light .hero-content { position: relative; z-index: 2; }
.hero-title.hero-title--light {
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 16px 0 18px;
  max-width: 850px;
}
.text-red { color: var(--casino-red); }
.hero-subtitle.hero-subtitle--light {
  color: var(--ink-soft);
  font-size: 1.18rem;
  max-width: 640px;
  margin-bottom: 28px;
}
.hero-cta-meta.hero-cta-meta--light {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.hero-badge.hero-badge--light {
  background: var(--red-soft);
  color: var(--casino-red);
  border: 1px solid rgba(179,19,27,0.2);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-block;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn-ghost-red {
  background: transparent;
  color: var(--casino-red);
  border: 2px solid var(--casino-red);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-ghost-red:hover { background: var(--casino-red); color: #fff; }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--casino-red);
  line-height: 1.1;
}
.trust-item span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}
@media (max-width: 720px) {
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

/* ---------- Section header eyebrow ---------- */
.section-eyebrow {
  display: inline-block;
  color: var(--casino-red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-header { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
.section-header p { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Services grid ---------- */
.services-overview { padding: 80px 0; background: var(--paper-warm); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  display: block;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -20px rgba(0,0,0,0.15);
  border-color: var(--gold-soft);
}
.service-card-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}
.service-card--text { padding-top: 6px; }
.service-card-body { padding: 22px 22px 26px; }
.service-card-body h2, .service-card-body h3, .service-card-title {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.service-card-body p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 10px; }
.service-card-meta { font-size: 0.82rem; color: var(--smoke-gray); margin-bottom: 8px; }
.service-card-link {
  color: var(--casino-red);
  font-weight: 600;
  font-size: 0.92rem;
}

/* ---------- Local SEO section ---------- */
.local-seo-section { padding: 80px 0; background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.local-seo-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.local-seo-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; }
.local-seo-text p { color: var(--ink-soft); margin-bottom: 14px; line-height: 1.7; }
.local-seo-areas h3 { font-size: 1.05rem; margin-bottom: 14px; color: var(--ink); }
.area-pill-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.area-pill-list li a {
  display: inline-block;
  padding: 8px 14px;
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s;
}
.area-pill-list li a:hover { background: var(--casino-red); color: #fff; border-color: var(--casino-red); }
.text-link-red { color: var(--casino-red); font-weight: 600; text-decoration: none; }
.text-link-red:hover { text-decoration: underline; }
@media (max-width: 880px) { .local-seo-inner { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- How it works (light) ---------- */
.how-it-works.how-it-works--light { background: var(--paper-warm); padding: 80px 0; }
.step-card.step-card--light {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 32px 28px;
  text-align: center;
}
.step-card.step-card--light .step-number {
  background: var(--casino-red);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: inline-grid; place-items: center;
  font-weight: 700; font-size: 1.2rem;
  margin-bottom: 16px;
}
.step-card.step-card--light h3 { color: var(--ink); margin-bottom: 10px; }
.step-card.step-card--light p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- HIW page steps (light) ---------- */
.hiw-section.hiw-section--light { background: var(--paper-warm); padding: 60px 0 80px; }
.hiw-section.hiw-section--light .hiw-step {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--casino-red);
  border-radius: 8px;
  padding: 28px;
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  align-items: start;
}
.hiw-section.hiw-section--light .hiw-step-num {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--casino-red);
}
.hiw-section.hiw-section--light .hiw-step-content h3 { color: var(--ink); margin-bottom: 8px; }
.hiw-section.hiw-section--light .hiw-step-content p { color: var(--ink-soft); }
@media (max-width: 600px) {
  .hiw-section.hiw-section--light .hiw-step { grid-template-columns: 1fr; gap: 6px; }
}

/* ---------- FAQ (light) ---------- */
.faq-section.faq-section--light { padding: 60px 0; background: var(--paper); }
.faq-item.faq-item--light {
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 18px 22px;
  margin-bottom: 12px;
}
.faq-item.faq-item--light summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item.faq-item--light summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--casino-red);
  font-weight: 400;
  line-height: 1;
}
.faq-item.faq-item--light[open] summary::after { content: "−"; }
.faq-item.faq-item--light p { margin-top: 12px; color: var(--ink-soft); }

/* ---------- About (light) ---------- */
.about-mission.about-mission--light { padding: 70px 0; background: var(--paper); }
.about-mission-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: start; }
.about-mission-text h2 { margin-bottom: 16px; font-size: clamp(1.8rem,3vw,2.4rem); }
.about-mission-text p { color: var(--ink-soft); margin-bottom: 14px; line-height: 1.7; }
.about-mission-text a { color: var(--casino-red); font-weight: 600; }
.about-mission-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-stat {
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 22px;
  text-align: center;
}
.about-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--casino-red);
  line-height: 1.1;
  margin-bottom: 6px;
}
.about-stat-label { color: var(--ink-soft); font-size: 0.85rem; }
@media (max-width: 880px) { .about-mission-grid { grid-template-columns: 1fr; gap: 40px; } }

.about-values { padding: 70px 0; background: var(--paper-warm); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.value-card.value-card--light {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--casino-red);
  border-radius: 8px;
  padding: 28px;
}
.value-card.value-card--light h3 { margin-bottom: 10px; color: var(--ink); font-size: 1.15rem; }
.value-card.value-card--light p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Page hero (light) ---------- */
.page-hero.page-hero--light {
  background: linear-gradient(180deg, #FAF7F2 0%, var(--paper-warm) 100%);
  padding: 130px 0 60px;
  border-bottom: 1px solid var(--rule);
}
.page-hero.page-hero--imaged-light {
  padding: 130px 0 60px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--rule);
}
.page-hero-inner { max-width: 820px; }
.page-hero-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--ink); margin: 14px 0 14px; line-height: 1.1; }
.page-hero-sub { font-size: 1.1rem; color: var(--ink-soft); margin-bottom: 22px; }
.breadcrumbs { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 14px; }
.breadcrumbs a { color: var(--casino-red); text-decoration: none; }
.breadcrumbs span { margin: 0 6px; color: var(--smoke-gray); }

/* ---------- Service detail page ---------- */
.service-detail { padding: 60px 0 80px; background: var(--paper); }
.service-detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 50px; align-items: start; }
.service-detail-main h2 { font-size: 1.6rem; margin-bottom: 14px; color: var(--ink); }
.service-detail-main h3 { font-size: 1.2rem; margin: 30px 0 14px; color: var(--ink); }
.service-detail-summary { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.7; margin-bottom: 14px; }
.checklist { list-style: none; padding: 0; margin: 0 0 8px; }
.checklist li {
  position: relative;
  padding: 8px 0 8px 30px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--rule);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--casino-red);
  font-weight: 700;
}
.checklist li a { color: var(--ink); font-weight: 600; }
.checklist li a:hover { color: var(--casino-red); }

.service-detail-aside { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 18px; }
.quote-card {
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
}
.quote-card h3 { font-size: 1.2rem; margin-bottom: 6px; color: var(--ink); }
.quote-card h4 { font-size: 1rem; margin-bottom: 12px; color: var(--ink); text-align: left; }
.quote-card p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 14px; }
.quote-card-or { margin-top: 12px !important; margin-bottom: 4px !important; font-size: 0.85rem; }
.quote-card-phone {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--casino-red);
  font-weight: 700;
  text-decoration: none;
  margin-top: 4px;
}
.quote-card--alt { text-align: left; }
.aside-link-list { list-style: none; padding: 0; margin: 0; }
.aside-link-list li { padding: 8px 0; border-bottom: 1px solid var(--rule); }
.aside-link-list li:last-child { border-bottom: none; }
.aside-link-list a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: 0.92rem; }
.aside-link-list a:hover { color: var(--casino-red); }

@media (max-width: 900px) {
  .service-detail-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-detail-aside { position: static; }
}

/* ---------- Contact page ---------- */
.contact-main { padding: 60px 0 80px; background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1.4fr 340px; gap: 50px; align-items: start; }
.contact-form-card {
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 36px;
}
.contact-form-card h2 { font-size: 1.6rem; margin-bottom: 22px; color: var(--ink); }
.contact-form label {
  display: block;
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--paper);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 400;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--casino-red);
  box-shadow: 0 0 0 3px var(--red-soft);
}
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .form-row label { margin-bottom: 0; }
.contact-form button { margin-top: 12px; }
.form-footnote { margin-top: 12px; font-size: 0.85rem; color: var(--smoke-gray); text-align: center; font-weight: 400; }
.contact-aside { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 90px; }
.ordered-list { list-style: decimal; padding-left: 18px; color: var(--ink-soft); font-size: 0.92rem; }
.ordered-list li { margin-bottom: 8px; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-aside { position: static; }
  .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- CTA section (light) ---------- */
.cta-section.cta-section--light {
  position: relative;
  background-color: #1A1B20;
  background-image:
    linear-gradient(135deg, rgba(20,10,12,0.78) 0%, rgba(143,16,22,0.72) 100%),
    url(/images/site/cta-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 90px 0;
}
.cta-section.cta-section--light .container { position: relative; z-index: 2; }
.cta-section.cta-section--light .cta-content { text-align: center; max-width: 720px; margin: 0 auto; }
.cta-section.cta-section--light h2 {
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin-bottom: 16px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}
.cta-section.cta-section--light p {
  color: rgba(255,255,255,0.92);
  font-size: 1.1rem;
  margin-bottom: 30px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.cta-section.cta-section--light .cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-section.cta-section--light .btn-primary {
  background: var(--casino-red);
  border-color: var(--casino-red);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.cta-section.cta-section--light .btn-primary:hover { background: var(--velvet-crimson, #8F1016); }
.cta-section.cta-section--light .btn-ghost-red {
  color: #fff;
  border-color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(2px);
}
.cta-section.cta-section--light .btn-ghost-red:hover { background: #fff; color: var(--casino-red); border-color: #fff; }

/* ---------- Service Areas dropdown ---------- */
.nav-item-has-dropdown { position: relative; }
.nav-item-has-dropdown > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-item-has-dropdown > .nav-link::after {
  content: "";
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 4px;
  opacity: 0.7;
  transition: transform 0.2s;
}
.nav-item-has-dropdown:hover > .nav-link::after,
.nav-item-has-dropdown:focus-within > .nav-link::after { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 50;
  list-style: none;
  margin: 0;
}
.nav-item-has-dropdown:hover > .nav-dropdown,
.nav-item-has-dropdown:focus-within > .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li { margin: 0; }
.nav-dropdown a {
  display: block;
  padding: 9px 14px;
  border-radius: 6px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:hover { background: var(--paper-warm); color: var(--casino-red); }
.nav-dropdown-divider { height: 1px; background: var(--rule); margin: 6px 4px; }
.nav-dropdown a.nav-dropdown-all { color: var(--casino-red); font-weight: 600; }

@media (max-width: 880px) {
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 4px 0 4px 14px;
    min-width: 0;
  }
  .nav-item-has-dropdown > .nav-link::after { display: none; }
  .nav-dropdown a { padding: 6px 0; color: var(--ink-soft); }
  .nav-dropdown a:hover { background: transparent; }
}

/* ---------- Fun gallery (light bg) ---------- */
.fun-gallery.fun-gallery--light { background: var(--paper-warm); padding: 70px 0; }
.fun-gallery.fun-gallery--light .fun-gallery-header { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.fun-gallery.fun-gallery--light .fun-gallery-header h2 { color: var(--ink); margin: 12px 0 10px; font-size: clamp(1.8rem,3.5vw,2.6rem); }
.fun-gallery.fun-gallery--light .fun-gallery-header p { color: var(--ink-soft); }

/* ---------- Footer (light) ---------- */
.footer.footer--light {
  background: #1A1B20;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 30px;
  margin-top: 0;
}
.footer.footer--light .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer.footer--light .footer-brand .brand-sf { color: var(--casino-red); }
.footer.footer--light .footer-brand .brand-casino-parties { color: #fff; }
.footer.footer--light .footer-tagline { margin: 14px 0 18px; color: rgba(255,255,255,0.7); font-size: 0.92rem; max-width: 320px; line-height: 1.6; }
.footer.footer--light .footer-phone { font-size: 1.2rem; margin-bottom: 10px; }
.footer.footer--light .footer-phone a { color: var(--antique-gold); text-decoration: none; font-weight: 700; font-family: 'Playfair Display', serif; }
.footer.footer--light .footer-address { font-size: 0.85rem; color: rgba(255,255,255,0.55); max-width: 320px; line-height: 1.6; }
.footer.footer--light .footer-links h4 { color: #fff; font-family: 'Inter', sans-serif; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer.footer--light .footer-links ul { list-style: none; padding: 0; }
.footer.footer--light .footer-links li { margin-bottom: 10px; }
.footer.footer--light .footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.92rem; transition: color 0.2s; }
.footer.footer--light .footer-links a:hover { color: var(--antique-gold); }
.footer.footer--light .footer-affiliate {
  background: rgba(198,161,91,0.08);
  border: 1px solid rgba(198,161,91,0.25);
  border-radius: 8px;
  padding: 18px 22px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}
.footer.footer--light .footer-affiliate strong { color: var(--antique-gold); }
.footer.footer--light .footer-affiliate a { color: var(--antique-gold); text-decoration: underline; }
.footer.footer--light .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
}
.footer.footer--light .footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer.footer--light .footer-bottom a:hover { color: var(--antique-gold); }
@media (max-width: 880px) {
  .footer.footer--light .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer.footer--light .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Mobile nav (light) ---------- */
@media (max-width: 880px) {
  .navbar.navbar--light .navbar-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    border-bottom: 1px solid var(--rule);
  }
  .navbar.navbar--light.nav-open .navbar-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

/* =====================================================
   FAQ Library (searchable interactive)
   ===================================================== */
.faq-library { padding: 50px 0 90px; background: var(--paper-warm); }

.faq-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.faq-search {
  position: relative;
  flex: 1 1 480px;
  max-width: 640px;
}
.faq-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--smoke-gray, #8a8e96);
  pointer-events: none;
}
.faq-search input[type="search"] {
  width: 100%;
  padding: 16px 48px 16px 48px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--paper);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  box-shadow: 0 4px 18px -10px rgba(0,0,0,0.1);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-search input[type="search"]:focus {
  outline: none;
  border-color: var(--casino-red);
  box-shadow: 0 0 0 3px var(--red-soft), 0 6px 22px -10px rgba(179,19,27,0.25);
}
.faq-search input::-webkit-search-decoration,
.faq-search input::-webkit-search-cancel-button { -webkit-appearance: none; }
.faq-search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border: none;
  background: var(--paper-warm);
  color: var(--ink-soft);
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.15s, color 0.15s;
}
.faq-search-clear:hover { background: var(--red-soft); color: var(--casino-red); }
.faq-meta {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.faq-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}
.faq-sidebar { position: sticky; top: 90px; }
.faq-sidebar-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--casino-red);
  margin-bottom: 12px;
}
.faq-cat-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 10px;
  overflow: hidden;
}
.faq-cat-list li + li { border-top: 1px solid var(--rule); }
.faq-cat-btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 11px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  transition: background 0.15s, color 0.15s;
}
.faq-cat-btn:hover { background: var(--paper-warm); color: var(--casino-red); }
.faq-cat-btn.is-active {
  background: var(--casino-red);
  color: #fff;
}
.faq-cat-btn.is-active .faq-cat-count { background: rgba(255,255,255,0.2); color: #fff; }
.faq-cat-count {
  background: var(--paper-warm);
  color: var(--ink-soft);
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
  min-width: 26px;
  text-align: center;
}

.faq-help-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.faq-help-card h3 { font-size: 1rem; margin-bottom: 6px; color: var(--ink); }
.faq-help-card p { font-size: 0.86rem; color: var(--ink-soft); margin-bottom: 14px; }
.faq-help-phone {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--casino-red);
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 8px;
}
.faq-help-phone:hover { color: var(--velvet-crimson, #8F1016); }

.faq-results { min-width: 0; }
.faq-cat-group { margin-bottom: 36px; }
.faq-cat-group[hidden] { display: none; }
.faq-cat-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--casino-red);
  scroll-margin-top: 90px;
}
.faq-cat-items { display: flex; flex-direction: column; gap: 10px; }

.faq-item.faq-item--library {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 16px 20px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.faq-item.faq-item--library[open] {
  border-color: var(--gold-soft);
  box-shadow: 0 8px 20px -16px rgba(0,0,0,0.18);
}
.faq-item.faq-item--library summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: 0.98rem;
}
.faq-item.faq-item--library summary::-webkit-details-marker { display: none; }
.faq-item.faq-item--library summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--casino-red);
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
}
.faq-item.faq-item--library[open] summary::after { content: "−"; }
.faq-answer {
  margin-top: 12px;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 0.95rem;
}
.faq-answer mark, .faq-item summary mark {
  background: #FFE680;
  color: var(--ink);
  padding: 0 2px;
  border-radius: 2px;
}

.faq-empty {
  background: var(--paper);
  border: 1px dashed var(--rule);
  border-radius: 10px;
  padding: 40px 24px;
  text-align: center;
}
.faq-empty h3 { color: var(--ink); margin-bottom: 8px; font-size: 1.15rem; }
.faq-empty p { color: var(--ink-soft); margin-bottom: 18px; }
.faq-empty a { color: var(--casino-red); font-weight: 600; }

@media (max-width: 880px) {
  .faq-layout { grid-template-columns: 1fr; gap: 24px; }
  .faq-sidebar { position: static; }
  .faq-cat-list {
    display: flex;
    overflow-x: auto;
    border-radius: 8px;
    padding: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .faq-cat-list li { flex: 0 0 auto; border: none !important; }
  .faq-cat-btn { padding: 8px 14px; white-space: nowrap; border-radius: 999px; }
  .faq-help-card { display: none; }
}

/* =====================================================
   How It Works enhancements
   ===================================================== */
.hiw-timeline-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 26px 0;
}
.hiw-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  counter-reset: tl;
  position: relative;
}
.hiw-timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--rule);
  z-index: 0;
}
.hiw-timeline li {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hiw-timeline .num {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--casino-red);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 0 0 4px var(--paper);
}
.hiw-timeline .lbl {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  margin-top: 4px;
}
.hiw-timeline .when {
  font-size: 0.76rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 720px) {
  .hiw-timeline { grid-template-columns: repeat(5, 1fr); gap: 4px; }
  .hiw-timeline::before { display: none; }
  .hiw-timeline .num { width: 36px; height: 36px; font-size: 0.85rem; }
  .hiw-timeline .lbl { font-size: 0.72rem; }
  .hiw-timeline .when { display: none; }
}

.hiw-steps-detailed { background: var(--paper-warm); padding: 70px 0; }
.hiw-step-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 70px;
}
.hiw-step-card:last-child { margin-bottom: 0; }
.hiw-step-card--reverse .hiw-step-visual { order: 2; }
.hiw-step-card--reverse .hiw-step-body { order: 1; }
.hiw-step-visual {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 28px 60px -30px rgba(0,0,0,0.3);
  background: var(--paper);
  aspect-ratio: 5/4;
}
.hiw-step-visual picture, .hiw-step-visual img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hiw-step-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(26,27,32,0.92);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.hiw-step-body h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: var(--ink);
  margin: 6px 0 14px;
}
.hiw-step-body > p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 16px;
}
.hiw-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hiw-bullets li {
  position: relative;
  padding: 6px 0 6px 28px;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--rule);
  font-size: 0.96rem;
}
.hiw-bullets li:last-child { border-bottom: none; }
.hiw-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--casino-red);
  font-weight: 700;
}
@media (max-width: 880px) {
  .hiw-step-card,
  .hiw-step-card--reverse { grid-template-columns: 1fr; gap: 24px; }
  .hiw-step-card--reverse .hiw-step-visual { order: 0; }
  .hiw-step-card--reverse .hiw-step-body { order: 0; }
}

/* Event-night timeline */
.hiw-event-timeline { background: var(--paper); padding: 80px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.timeline-rail {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding-left: 18px;
}
.timeline-rail::before {
  content: "";
  position: absolute;
  left: 92px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--rule);
}
.timeline-row {
  display: grid;
  grid-template-columns: 78px 26px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
}
.timeline-time {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  padding-top: 2px;
}
.timeline-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--casino-red);
  margin-top: 5px;
  margin-left: 6px;
  position: relative;
  z-index: 1;
}
.timeline-row--milestone .timeline-dot {
  background: var(--casino-red);
  box-shadow: 0 0 0 4px var(--red-soft);
  width: 16px; height: 16px;
  margin-top: 4px;
  margin-left: 5px;
}
.timeline-content {
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: 0.96rem;
}
.timeline-content strong { color: var(--ink); font-weight: 700; }
.timeline-row--milestone .timeline-content { color: var(--ink); }
@media (max-width: 600px) {
  .timeline-rail { padding-left: 0; }
  .timeline-rail::before { left: 62px; }
  .timeline-row { grid-template-columns: 56px 20px 1fr; gap: 8px; }
  .timeline-time { font-size: 0.85rem; }
}

/* What's included */
.hiw-included { background: var(--paper-warm); padding: 80px 0; }
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.included-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.included-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-soft);
  box-shadow: 0 14px 30px -18px rgba(0,0,0,0.18);
}
.included-icon {
  width: 44px; height: 44px;
  background: var(--red-soft);
  color: var(--casino-red);
  border-radius: 10px;
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.included-icon svg { width: 24px; height: 24px; }
.included-card h3 { font-size: 1.05rem; color: var(--ink); margin-bottom: 6px; }
.included-card p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.6; }

/* Compare you vs us */
.hiw-compare { background: var(--paper); padding: 80px 0; }
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.compare-col {
  border-radius: 12px;
  padding: 32px;
}
.compare-col h3 {
  font-size: 1.3rem;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid currentColor;
}
.compare-col ul { list-style: none; padding: 0; margin: 0; }
.compare-col li { padding: 9px 0; font-size: 0.98rem; }
.compare-col--you {
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  color: var(--ink-soft);
}
.compare-col--you h3 { color: var(--ink); }
.compare-col--you li::before { content: "○ "; color: var(--ink-soft); margin-right: 4px; }
.compare-col--us {
  background: linear-gradient(160deg, #1A1B20 0%, #2A1A1C 100%);
  color: rgba(255,255,255,0.85);
}
.compare-col--us h3 { color: #fff; }
.compare-col--us li::before { content: "✓ "; color: var(--antique-gold); font-weight: 700; margin-right: 4px; }
@media (max-width: 720px) {
  .compare-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   Caesars-style ecosystem footer
   ===================================================== */
.footer-ecosystem { font-family: 'Inter', sans-serif; }

/* Top dark band */
.fe-top {
  background: #0f1014;
  color: rgba(255,255,255,0.86);
  padding: 64px 0 36px;
}
.fe-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.1fr 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.fe-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  margin-bottom: 22px;
}
.fe-brand-monogram {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.7rem;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--casino-red);
  color: #fff;
  border-radius: 6px;
  line-height: 1;
}
.fe-brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}
.fe-brand-wordmark span:first-child { color: rgba(255,255,255,0.55); font-weight: 400; letter-spacing: 0.22em; }
.fe-address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 22px;
}
.fe-address a { color: #fff; text-decoration: none; }
.fe-address a:hover { color: var(--antique-gold); }
.fe-book-btn {
  display: inline-block;
  background: #fff;
  color: #0f1014;
  padding: 12px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.fe-book-btn:hover { background: var(--antique-gold); color: #0f1014; transform: translateY(-1px); }

.fe-col-title {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
}
.fe-col ul { list-style: none; padding: 0; margin: 0; }
.fe-col li { margin-bottom: 9px; }
.fe-col a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.15s;
}
.fe-col a:hover { color: var(--antique-gold); }

.fe-social { display: flex; flex-wrap: wrap; gap: 10px; }
.fe-social li { margin: 0; }
.fe-social a {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.fe-social a:hover { background: var(--antique-gold); color: #0f1014; transform: translateY(-1px); }
.fe-social svg { width: 16px; height: 16px; }

.fe-trust { list-style: none; padding: 0; margin: 0; }
.fe-trust li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.fe-trust-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--antique-gold);
  flex-shrink: 0;
}

.fe-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 50px;
  padding-top: 22px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.fe-disclaimer abbr { border-bottom: 1px dotted rgba(255,255,255,0.45); text-decoration: none; cursor: help; }

/* Light brand ecosystem section */
.fe-ecosystem { background: #fff; padding: 44px 0; border-top: 1px solid var(--rule); }
.fe-ecosystem-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: center;
}
.fe-parent { text-align: center; padding-right: 30px; border-right: 1px solid var(--rule); }
.fe-parent-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
}
.fe-parent-glyph {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--antique-gold);
}
.fe-parent-name {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  font-weight: 700;
  color: var(--ink);
}
.fe-parent-tag {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
.fe-parent-tag a { color: var(--casino-red); text-decoration: none; font-weight: 600; }
.fe-parent-tag a:hover { text-decoration: underline; }

.fe-brand-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.fe-brand-tile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 16px 12px;
  text-decoration: none;
  color: var(--ink);
  text-align: center;
  min-height: 92px;
  transition: border-color 0.15s, background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.fe-brand-tile:hover {
  border-color: var(--casino-red);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -16px rgba(0,0,0,0.2);
}
.fe-tile-pre {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.fe-tile-main {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: var(--ink);
}
.fe-tile-main em { color: var(--antique-gold); font-style: normal; }
.fe-tile-note {
  font-size: 0.7rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.fe-brand-tile--current {
  background: linear-gradient(180deg, #fff 0%, #FFF6F6 100%);
  border-color: var(--casino-red);
  position: relative;
}
.fe-brand-tile--current .fe-tile-note { color: var(--casino-red); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }

/* Legal bar */
.fe-legal { background: #fff; padding: 18px 0; border-top: 1px solid var(--rule); }
.fe-legal-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.fe-legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.fe-legal-links li { font-size: 0.78rem; color: var(--ink-soft); }
.fe-legal-links li + li::before { content: "|"; padding: 0 10px; color: var(--rule); }
.fe-legal-links a { color: var(--ink-soft); text-decoration: none; }
.fe-legal-links a:hover { color: var(--casino-red); }
.fe-copy { font-size: 0.78rem; color: var(--ink-soft); margin: 0; }

@media (max-width: 1080px) {
  .fe-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .fe-brand { grid-column: 1 / -1; }
  .fe-col--connect { grid-column: 1 / -1; }
  .fe-social { justify-content: flex-start; }
  .fe-brand-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .fe-top { padding: 44px 0 28px; }
  .fe-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .fe-brand { grid-column: 1 / -1; text-align: left; }
  .fe-col--connect { grid-column: 1 / -1; }
  .fe-ecosystem-inner { grid-template-columns: 1fr; gap: 26px; }
  .fe-parent { border-right: none; border-bottom: 1px solid var(--rule); padding-right: 0; padding-bottom: 20px; }
  .fe-brand-row { grid-template-columns: repeat(2, 1fr); }
  .fe-legal-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 480px) {
  .fe-grid { grid-template-columns: 1fr; gap: 22px; }
  .fe-brand-row { grid-template-columns: 1fr 1fr; }
  .fe-legal-links { gap: 4px 0; }
  .fe-legal-links li + li::before { padding: 0 6px; }
}

/* FAQ summary text wrap fix — prevent long questions from overflowing on mobile */
.faq-item.faq-item--library summary { min-width: 0; }
.faq-summary-text {
  flex: 1 1 auto;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.faq-library .container { overflow-x: hidden; }
@media (max-width: 480px) {
  .faq-item.faq-item--library { padding: 14px 14px; }
  .faq-item.faq-item--library summary { font-size: 0.94rem; gap: 10px; }
  .faq-cat-heading { font-size: 1.2rem; }
  .faq-library { padding: 30px 0 60px; }
}

/* =====================================================
   404 / Not Found page — branded with pixel-art card deck
   ===================================================== */
.nf-section {
  background: var(--paper-warm, #FAF7F2);
  padding: 60px 0 90px;
  text-align: center;
}
.nf-container { max-width: 920px; }
.nf-stage {
  position: relative;
  width: 100%;
  height: 240px;
  margin: 0 auto 28px;
  max-width: 540px;
}
.nf-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--casino-red);
  margin-bottom: 14px;
}
.nf-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
  max-width: 760px;
  margin: 0 auto 18px;
  color: var(--ink, #1A1B20);
}
.nf-sub {
  max-width: 580px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  color: var(--ink-soft, #4A4E58);
}
.nf-ctas {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 64px;
}
.nf-helpful { max-width: 880px; margin: 0 auto; }
.nf-helpful-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  margin-bottom: 18px;
  color: var(--ink, #1A1B20);
}
.nf-helpful-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  text-align: left;
  padding: 0;
}
.nf-helpful-grid a {
  display: block;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--rule, #E6E1D7);
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink, #1A1B20);
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.nf-helpful-grid a:hover {
  border-color: var(--casino-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -14px rgba(0,0,0,0.2);
}
.nf-helpful-grid strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.nf-helpful-grid span { font-size: 0.86rem; color: var(--ink-soft, #4A4E58); }

/* --- Pixel-art saloon card deck (chunky 16-bit feel) --- */
.saloon-deck {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.saloon-felt {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 78%;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(92,42,30,0.32) 0%, rgba(92,42,30,0) 70%);
  filter: blur(2px);
}
.saloon-card {
  position: absolute;
  width: 104px;
  height: 144px;
  transform-style: preserve-3d;
  animation: nfDeckBob 4s ease-in-out infinite;
}
.saloon-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}
.saloon-card-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 6px;
  box-shadow: 0 8px 18px -4px rgba(54,28,15,0.4), inset 0 0 0 2px #8B5A2B;
  overflow: hidden;
}
.saloon-card-face svg {
  width: 100%; height: 100%; display: block;
  shape-rendering: crispEdges;
  image-rendering: pixelated;
}
.saloon-card-back { transform: rotateY(180deg); }
.saloon-card-front.is-red   { color: #B3131B; }
.saloon-card-front.is-black { color: #1A1410; }

.saloon-card.card-1 { transform: translateX(-164px) rotate(-22deg); animation-delay: -0.4s; }
.saloon-card.card-2 { transform: translateX(-86px)  rotate(-11deg); animation-delay: -0.8s; z-index: 1; }
.saloon-card.card-3 { transform: translateX(0)      rotate(0deg);   animation-delay: -1.2s; z-index: 2; }
.saloon-card.card-4 { transform: translateX(86px)   rotate(11deg);  animation-delay: -1.6s; z-index: 1; }
.saloon-card.card-5 { transform: translateX(164px)  rotate(22deg);  animation-delay: -2.0s; }

.saloon-card--flip .saloon-card-inner {
  animation: nfCardFlip 5s ease-in-out infinite;
}

@keyframes nfDeckBob {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -6px; }
}
@keyframes nfCardFlip {
  0%, 38%  { transform: rotateY(0deg); }
  50%, 88% { transform: rotateY(180deg); }
  100%     { transform: rotateY(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .saloon-card, .saloon-card-inner { animation: none !important; transition: none !important; }
}
@media (max-width: 600px) {
  .saloon-card { width: 76px; height: 106px; }
  .saloon-card.card-1 { transform: translateX(-116px) rotate(-22deg); }
  .saloon-card.card-2 { transform: translateX(-60px)  rotate(-11deg); }
  .saloon-card.card-4 { transform: translateX(60px)   rotate(11deg); }
  .saloon-card.card-5 { transform: translateX(116px)  rotate(22deg); }
  .nf-stage { height: 200px; }
}
.saloon-rank-small { font-family: Georgia, serif; font-weight: 700; }

/* btn-ghost-red helper (reused on 404) */
.btn-ghost-red {
  background: transparent;
  color: var(--casino-red);
  border: 2px solid var(--casino-red);
}
.btn-ghost-red:hover {
  background: var(--casino-red);
  color: var(--paper-warm, #FAF7F2);
}

/* =====================================================
   Sticky mobile CTA bar
   ===================================================== */
.mobile-cta-bar {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  display: none;
  z-index: 950;
  background: #0f1014;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
  gap: 6px;
  transform: translateY(110%);
  transition: transform 0.35s ease;
  box-shadow: 0 -8px 24px -10px rgba(0,0,0,0.4);
}
.mobile-cta-bar.is-visible { transform: translateY(0); }

.mobile-cta-btn {
  flex: 1 1 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px;
  padding: 8px 6px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 8px;
  min-height: 52px;
  transition: transform 0.15s, background 0.15s, color 0.15s;
}
.mobile-cta-btn svg { width: 18px; height: 18px; }
.mobile-cta-btn--call  { background: rgba(198,161,91,0.18); color: var(--antique-gold, #C6A15B); }
.mobile-cta-btn--text  { background: rgba(255,255,255,0.08); color: #fff; }
.mobile-cta-btn--quote { background: var(--casino-red, #B3131B); color: var(--paper-warm, #FAF7F2); }
.mobile-cta-btn:active { transform: scale(0.96); }

@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  body:has(.mobile-cta-bar) { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
}

/* =====================================================
   Reviews & testimonials
   ===================================================== */
.reviews-section {
  background: var(--paper-warm, #FAF7F2);
  padding: 80px 0;
  border-top: 1px solid var(--rule, #E6E1D7);
  border-bottom: 1px solid var(--rule, #E6E1D7);
}
.reviews-header { margin-bottom: 44px; }
.reviews-agg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--rule, #E6E1D7);
  border-radius: 999px;
  font-size: 0.95rem;
  color: var(--ink, #1A1B20);
}
.reviews-agg strong { font-weight: 700; }
.reviews-agg span { color: var(--ink-soft, #4A4E58); }
.reviews-agg--hero {
  margin-top: 22px;
  padding: 10px 18px;
  font-size: 1.05rem;
}

.star-rating { display: inline-flex; gap: 2px; vertical-align: middle; line-height: 0; }
.star-rating .star { display: block; }
.star-rating .star.is-filled { fill: #C6A15B; }
.star-rating .star.is-empty  { fill: #E6E1D7; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.reviews-grid--index { gap: 22px 22px; }

.review-card {
  background: #fff;
  border: 1px solid var(--rule, #E6E1D7);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.review-card:hover {
  border-color: var(--casino-red, #B3131B);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -20px rgba(26, 27, 32, 0.25);
}
.review-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink, #1A1B20);
  font-style: italic;
  border: 0;
  margin: 0;
}
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 12px;
  border-top: 1px solid var(--rule, #E6E1D7);
  font-size: 0.88rem;
  color: var(--ink-soft, #4A4E58);
}
.review-author { color: var(--ink, #1A1B20); font-size: 0.95rem; }
.review-role { font-weight: 500; }
.review-line {
  margin-top: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--casino-red, #B3131B);
  font-weight: 600;
}

.reviews-cta {
  text-align: center;
  margin-top: 36px;
  font-size: 1rem;
  font-weight: 600;
}

.reviews-index {
  padding: 56px 0 70px;
  background: var(--paper-warm, #FAF7F2);
}
.reviews-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}
.reviews-filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid var(--rule, #E6E1D7);
  background: #fff;
  color: var(--ink, #1A1B20);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.reviews-filter-btn:hover {
  border-color: var(--casino-red, #B3131B);
  color: var(--casino-red, #B3131B);
}
.reviews-filter-btn.is-active {
  background: var(--casino-red, #B3131B);
  border-color: var(--casino-red, #B3131B);
  color: var(--paper-warm, #FAF7F2);
}
.reviews-empty {
  text-align: center;
  color: var(--ink-soft, #4A4E58);
  padding: 40px 0;
}
.reviews-disclaimer {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--rule, #E6E1D7);
  font-size: 0.82rem;
  color: var(--ink-soft, #4A4E58);
  text-align: center;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .reviews-section { padding: 60px 0; }
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .review-quote { font-size: 1rem; }
}

/* =====================================================
   Blog hub + articles
   ===================================================== */
.blog-index { padding: 56px 0 80px; background: var(--paper-warm, #FAF7F2); }
.blog-filter-bar {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-bottom: 40px;
}
.blog-filter-btn {
  display: inline-flex; align-items: center;
  padding: 8px 16px; font-size: 0.88rem; font-weight: 600;
  border: 1px solid var(--rule, #E6E1D7);
  background: #fff; color: var(--ink, #1A1B20);
  border-radius: 999px; text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.blog-filter-btn:hover { border-color: var(--casino-red, #B3131B); color: var(--casino-red, #B3131B); }
.blog-filter-btn.is-active {
  background: var(--casino-red, #B3131B);
  border-color: var(--casino-red, #B3131B);
  color: var(--paper-warm, #FAF7F2);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--rule, #E6E1D7);
  border-radius: 12px; overflow: hidden;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.blog-card:hover {
  border-color: var(--casino-red, #B3131B);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -22px rgba(26,27,32,0.30);
}
.blog-card-link { text-decoration: none; color: inherit; display: block; height: 100%; }
.blog-card-img {
  width: 100%; aspect-ratio: 16 / 9;
  background-size: cover; background-position: center;
  background-color: var(--rule, #E6E1D7);
  border-bottom: 1px solid var(--rule, #E6E1D7);
}
.blog-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; }
.blog-card-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.78rem; color: var(--ink-soft, #4A4E58);
}
.blog-card-cat {
  color: var(--casino-red, #B3131B);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
}
.blog-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem; line-height: 1.3;
  color: var(--ink, #1A1B20); margin: 4px 0 2px;
}
.blog-card-excerpt {
  font-size: 0.95rem; line-height: 1.55;
  color: var(--ink-soft, #4A4E58); margin: 0;
}
.blog-card-readmore {
  margin-top: 8px; font-weight: 600; font-size: 0.9rem;
  color: var(--casino-red, #B3131B);
}

/* Article view */
.blog-article-hero {
  padding: 120px 0 60px;
  background-size: cover; background-position: center;
  background-color: var(--paper-warm, #FAF7F2);
  border-bottom: 1px solid var(--rule, #E6E1D7);
}
.blog-article-cat {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--casino-red, #B3131B);
  margin: 14px 0 10px;
}
.blog-article-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.15; color: var(--ink, #1A1B20);
  margin: 0 0 20px; max-width: 920px;
}
.blog-article-byline {
  display: flex; flex-wrap: wrap; gap: 8px;
  font-size: 0.92rem; color: var(--ink-soft, #4A4E58);
}

.blog-article-grid { padding: 56px 24px 30px; }
.blog-article-body {
  max-width: 720px; margin: 0 auto;
}

.blog-toc {
  background: #fff;
  border: 1px solid var(--rule, #E6E1D7);
  border-left: 3px solid var(--casino-red, #B3131B);
  border-radius: 8px;
  padding: 20px 24px 22px;
  margin: 0 0 36px;
}
.blog-toc-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-soft, #4A4E58);
  margin: 0 0 12px;
}
.blog-toc ol { margin: 0; padding-left: 22px; }
.blog-toc li { margin-bottom: 6px; font-size: 0.95rem; }
.blog-toc a { color: var(--ink, #1A1B20); text-decoration: none; border-bottom: 1px dotted var(--rule, #E6E1D7); }
.blog-toc a:hover { color: var(--casino-red, #B3131B); border-bottom-color: var(--casino-red, #B3131B); }

.blog-prose {
  font-size: 1.06rem; line-height: 1.75;
  color: var(--ink, #1A1B20);
  max-width: 70ch;
}
.blog-prose p { margin: 0 0 22px; }
.blog-prose .lede { font-size: 1.18rem; line-height: 1.6; color: var(--ink, #1A1B20); }
.blog-prose h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem; line-height: 1.25;
  margin: 44px 0 16px; color: var(--ink, #1A1B20);
  scroll-margin-top: 90px;
}
.blog-prose h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.22rem; line-height: 1.3;
  margin: 30px 0 12px; color: var(--ink, #1A1B20);
}
.blog-prose ul, .blog-prose ol { margin: 0 0 22px 22px; padding: 0; }
.blog-prose li { margin-bottom: 8px; }
.blog-prose strong { color: var(--ink, #1A1B20); font-weight: 700; }
.blog-prose a {
  color: var(--casino-red, #B3131B);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.blog-prose a:hover { color: var(--velvet-crimson, #8F1016); }
.blog-prose .callout {
  background: #fff;
  border-left: 3px solid var(--antique-gold, #C6A15B);
  padding: 14px 18px; border-radius: 4px;
  font-size: 0.96rem; color: var(--ink-soft, #4A4E58);
  margin: 0 0 28px;
}

.blog-end-cta {
  margin-top: 56px; padding: 28px 28px 30px;
  background: #fff;
  border: 1px solid var(--rule, #E6E1D7);
  border-radius: 12px; text-align: center;
}
.blog-end-cta h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem; margin: 0 0 8px; color: var(--ink, #1A1B20);
}
.blog-end-cta p { color: var(--ink-soft, #4A4E58); margin: 0 0 18px; }
.blog-end-cta .cta-buttons { justify-content: center; }

.blog-related {
  padding: 60px 0 80px;
  background: var(--paper-warm, #FAF7F2);
  border-top: 1px solid var(--rule, #E6E1D7);
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
  .blog-article-hero { padding: 100px 0 50px; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; gap: 18px; }
  .blog-article-body { padding: 0; }
  .blog-prose { font-size: 1.02rem; }
  .blog-prose h2 { font-size: 1.4rem; }
}

/* === Related-blog strip (service + service-area pages) === */
.related-blog-list { list-style: none; padding: 0; margin: 0 0 14px; display: grid; gap: 14px; }
.related-blog-list li { padding: 16px 18px; background: #FFFFFF; border: 1px solid #E6E1D7; border-radius: 12px; }
.related-blog-list li a { color: #1A1B20; text-decoration: none; display: block; margin-bottom: 6px; line-height: 1.35; }
.related-blog-list li a:hover { color: #B3131B; }
.related-blog-list li p { margin: 0; color: #4A4E58; font-size: 0.96rem; line-height: 1.55; }

/* === Airbnb / STR in-villa experiences page === */
.airbnb-referral-banner {
  background: var(--ink);
  color: var(--paper-warm);
  padding: 96px 0 12px;
  text-align: center;
}
.page-hero.page-hero--light.airbnb-hero { padding-top: 56px; }
@media (max-width: 760px) {
  .airbnb-referral-banner { padding-top: 84px; }
}
.airbnb-referral-banner .container {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
}
.airbnb-referral-banner p { margin: 0; font-size: 0.95rem; }
.airbnb-referral-banner strong { color: var(--antique-gold); }
.airbnb-referral-tag {
  background: var(--casino-red); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.airbnb-trust-badge {
  margin-top: 22px; font-size: 0.95rem; color: var(--ink-soft);
}
.airbnb-trust-badge strong { color: var(--ink); }
.airbnb-trust-sep { margin: 0 10px; color: var(--rule); }

.airbnb-how, .airbnb-experiences, .airbnb-host { padding: 72px 0; }
.airbnb-how { background: var(--paper-warm); }
.airbnb-experiences { background: var(--ivory-white, #fff); }

.airbnb-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 36px;
}
.airbnb-steps--four { grid-template-columns: repeat(4, 1fr); }
.airbnb-step {
  background: #fff; border: 1px solid var(--rule); border-radius: 16px; padding: 32px 26px;
}
.airbnb-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--casino-red); color: #fff; font-weight: 700; font-size: 1.15rem;
  margin-bottom: 16px;
}
.airbnb-step h3 { margin: 0 0 8px; font-size: 1.2rem; }
.airbnb-step p { margin: 0; color: var(--ink-soft); }

.airbnb-exp-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 36px;
}
.airbnb-exp-grid--three { grid-template-columns: repeat(3, 1fr); }
.airbnb-exp-card {
  border: 1px solid var(--rule); border-radius: 16px; padding: 30px;
  background: var(--paper-warm); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.airbnb-exp-card h3 { margin: 0 0 10px; font-size: 1.25rem; }
.airbnb-exp-card p { margin: 0; color: var(--ink-soft); }
.airbnb-exp-suit {
  position: absolute; top: 14px; right: 20px; font-size: 2.6rem;
  color: var(--casino-red); opacity: 0.18; line-height: 1;
}
.airbnb-exp-tag {
  display: inline-block; align-self: flex-start;
  background: var(--casino-red); color: #fff;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 999px; margin-bottom: 14px;
}
.airbnb-exp-included-label {
  margin: 20px 0 10px !important; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink) !important;
}
.airbnb-exp-list { margin: 0; }
.airbnb-exp-list li { color: var(--ink-soft); }
.airbnb-cta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 40px; justify-content: center;
}

.airbnb-host { background: var(--paper-warm); }
.airbnb-host-inner {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center;
}
.airbnb-host-text h2 { margin: 10px 0 16px; }
.airbnb-host-list { background: #fff; border: 1px solid var(--rule); border-radius: 16px; padding: 26px 30px; }

.airbnb-pricing { padding: 72px 0; background: var(--paper-warm); }
.airbnb-pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; align-items: stretch;
}
.airbnb-pricing-card {
  background: #fff; border: 1px solid var(--rule); border-radius: 16px; padding: 32px 30px;
  display: flex; flex-direction: column;
}
.airbnb-pricing-card h3 { margin: 0 0 18px; font-size: 1.3rem; }
.airbnb-pricing-card--accent { border-color: var(--casino-red); border-width: 1.5px; }
.airbnb-var-list { list-style: none; margin: 0; padding: 0; }
.airbnb-var-list li {
  display: flex; flex-direction: column; gap: 3px;
  padding: 14px 0; border-bottom: 1px solid var(--rule);
}
.airbnb-var-list li:last-child { border-bottom: none; padding-bottom: 0; }
.airbnb-var-name { font-weight: 700; color: var(--ink); }
.airbnb-var-detail { color: var(--ink-soft); font-size: 0.95rem; }
.airbnb-includes-list { margin: 0 0 24px; }
.airbnb-includes-list li { color: var(--ink-soft); }
.airbnb-pricing-cta { margin-top: auto; align-self: flex-start; }
.airbnb-pricing-disclaimer {
  margin: 26px 0 0; text-align: center; font-size: 0.9rem; color: var(--ink-soft); font-style: italic;
}

.airbnb-trust {
  background: var(--ink); color: var(--paper-warm); padding: 36px 0; text-align: center;
}
.airbnb-trust-line { margin: 0 0 8px; font-size: 0.95rem; }
.airbnb-trust-line:last-child { margin-bottom: 0; }
.airbnb-trust-line strong { color: var(--antique-gold); }

@media (max-width: 860px) {
  .airbnb-steps, .airbnb-steps--four { grid-template-columns: 1fr; }
  .airbnb-exp-grid, .airbnb-exp-grid--three { grid-template-columns: 1fr; }
  .airbnb-host-inner { grid-template-columns: 1fr; gap: 28px; }
  .airbnb-pricing-grid { grid-template-columns: 1fr; }
}
