/* =============================================================================
   YEP CASINO LATVIJA – style.css
   Domain: yep-lv-casino.click | Language: lv | Geo: LV
   Western / Wild West theme matching the hero banner artwork.
   ============================================================================= */

/* -----------------------------------------------------------------------------
   DESIGN TOKENS – colours, spacing, typography
   ----------------------------------------------------------------------------- */
:root {
  --clr-bg-deep:      #0a0505;
  --clr-bg-card:      rgba(20, 8, 8, 0.75);
  --clr-bg-card-hover:rgba(40, 15, 10, 0.9);
  --clr-crimson:      #8b1a1a;
  --clr-crimson-dark: #5c0a0a;
  --clr-gold:         #ffef00;
  --clr-gold-dark:    #d4a800;
  --clr-gold-glow:    rgba(255, 239, 0, 0.35);
  --clr-sunset:       #ff6b35;
  --clr-text:         #f5ebe0;
  --clr-text-muted:   #b8a090;
  --clr-border:       rgba(255, 239, 0, 0.18);
  --clr-border-glow:  rgba(255, 239, 0, 0.45);
  --clr-overlay:      rgba(10, 5, 5, 0.78);
  --font-display:     'Rye', 'Georgia', serif;
  --font-body:        'Inter', system-ui, -apple-system, sans-serif;
  --r-sm:             8px;
  --r-md:             14px;
  --r-lg:             22px;
  --r-notch:          4px;
  --shadow-gold:      0 4px 24px var(--clr-gold-glow);
  --shadow-card:      0 8px 32px rgba(0, 0, 0, 0.55);
  --tr:               0.3s ease;
  --max-w:            1180px;
  --header-h:         68px;
  --mobile-sticky-h:  64px;
}

/* -----------------------------------------------------------------------------
   RESET & BASE
   ----------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background-color: var(--clr-bg-deep);
  color: var(--clr-text);
  line-height: 1.75;
  min-height: 100vh;
  /* Subtle desert-sunset radial glow behind content */
  background-image:
    radial-gradient(ellipse 900px 500px at 70% -80px, rgba(139, 26, 26, 0.35) 0%, transparent 65%),
    radial-gradient(ellipse 600px 400px at 10% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 55%);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--clr-gold); transition: color var(--tr), opacity var(--tr); }
a:hover { color: #fff8a0; }

/* Skip link – WCAG 2.4.1 keyboard access */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 10px 18px;
  background: var(--clr-gold);
  color: var(--clr-bg-deep);
  font-weight: 700;
  border-radius: var(--r-sm);
  text-decoration: none;
}
.skip-link:focus { top: 12px; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* -----------------------------------------------------------------------------
   LAYOUT – centred container
   ----------------------------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* -----------------------------------------------------------------------------
   HEADER – fixed on mobile to "pin" the screen top (per spec)
   ----------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(10, 5, 5, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--clr-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 12px;
}

.site-logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 10px var(--clr-gold-glow));
}

.header-cta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

/* Hamburger – visible only on mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--clr-border);
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 8px;
}
.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clr-gold);
  border-radius: 2px;
  transition: transform var(--tr), opacity var(--tr);
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav { display: flex; align-items: center; gap: 8px; }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.nav-link {
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  text-decoration: none;
  border-radius: var(--r-sm);
  transition: color var(--tr), background var(--tr);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus-visible {
  color: var(--clr-gold);
  background: rgba(255, 239, 0, 0.06);
}

/* -----------------------------------------------------------------------------
   BUTTONS – all CTAs link to /go/, /go/50fs/, /promo/
   ----------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  white-space: nowrap;
  touch-action: manipulation;
  transition: transform var(--tr), box-shadow var(--tr), background var(--tr);
  /* Western notched corner accent via clip-path on primary */
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  color: #1a0800;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px var(--clr-gold-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--clr-gold);
  border: 2px solid var(--clr-gold);
}
.btn-secondary:hover {
  background: rgba(255, 239, 0, 0.1);
  transform: translateY(-2px);
}

.btn-crimson {
  background: linear-gradient(135deg, var(--clr-crimson), var(--clr-sunset));
  color: #fff;
  box-shadow: 0 4px 20px rgba(139, 26, 26, 0.5);
}
.btn-crimson:hover { transform: translateY(-2px); }

.btn-sm { padding: 8px 18px; font-size: 0.82rem; }

/* -----------------------------------------------------------------------------
   HERO – single banner.png for desktop AND mobile (per spec)
   Semi-transparent centred CTA block
   ----------------------------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* One banner image for all breakpoints */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/banner/banner.png');
  background-size: cover;
  background-position: center right;
}

/* Gradient overlay for text readability over banner */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 5, 5, 0.88) 0%,
    rgba(10, 5, 5, 0.55) 45%,
    rgba(10, 5, 5, 0.25) 100%
  );
  z-index: 1;
}

/* Semi-transparent CTA box – centred on web and mobile */
.hero-cta-box {
  position: relative;
  z-index: 2;
  background: var(--clr-overlay);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 2px solid var(--clr-border);
  /* Western frame: gold corners via box-shadow layers */
  box-shadow:
    inset 0 0 0 1px rgba(255, 239, 0, 0.1),
    0 12px 48px rgba(0, 0, 0, 0.65),
    var(--shadow-gold);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  text-align: center;
  max-width: 580px;
  width: 92%;
  animation: heroFadeIn 0.8s ease both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-label {
  display: inline-block;
  background: linear-gradient(90deg, var(--clr-crimson), var(--clr-sunset));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.hero-cta-box h1 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 2.1rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--clr-gold);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  margin-bottom: 20px;
}

.hero-bonus-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 22px;
}

.bonus-badge {
  background: rgba(139, 26, 26, 0.4);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: 10px 16px;
  min-width: 110px;
}
.badge-amount {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-gold);
}
.badge-label {
  font-size: 0.72rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 12px;
}

.cta-disclaimer {
  font-size: 0.72rem;
  color: rgba(184, 160, 144, 0.7);
}

/* -----------------------------------------------------------------------------
   BREADCRUMBS
   ----------------------------------------------------------------------------- */
.breadcrumbs-wrap {
  padding: 20px 0 8px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

.breadcrumbs li { display: flex; align-items: center; gap: 8px; }
.breadcrumbs li:not(:last-child)::after {
  content: '›';
  color: var(--clr-gold-dark);
  opacity: 0.7;
}
.breadcrumbs a {
  color: var(--clr-text-muted);
  text-decoration: none;
}
.breadcrumbs a:hover { color: var(--clr-gold); }
.breadcrumbs [aria-current="page"] { color: var(--clr-text); }

/* -----------------------------------------------------------------------------
   CONTENT SECTIONS
   ----------------------------------------------------------------------------- */
main { position: relative; z-index: 2; }

.content-section {
  padding: 56px 0;
  border-bottom: 1px solid rgba(255, 239, 0, 0.06);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--clr-gold);
  margin-bottom: 10px;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  margin-bottom: 28px;
  max-width: 720px;
}

.prose p {
  margin-bottom: 16px;
  color: var(--clr-text-muted);
  font-size: 0.95rem;
}
.prose p strong,
.text-gold { color: var(--clr-gold); }

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

/* -----------------------------------------------------------------------------
   TABLES – desktop: standard rows; mobile: card layout (≤600px)
   ----------------------------------------------------------------------------- */
.table-wrap {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table thead {
  background: rgba(139, 26, 26, 0.35);
}

.data-table th {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-gold);
  border-bottom: 1px solid var(--clr-border);
}

.data-table td {
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--clr-text-muted);
}

.data-table td:first-child {
  font-weight: 600;
  color: var(--clr-text);
  white-space: nowrap;
}

.data-table tbody tr:hover td {
  background: rgba(255, 239, 0, 0.03);
}

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

/* Info table (two-column key/value) */
.info-table td:first-child { width: 42%; }

/* -----------------------------------------------------------------------------
   SLOTS GRID – popular games from img/slots/
   ----------------------------------------------------------------------------- */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.slot-card {
  position: relative;
  display: block;
  text-decoration: none;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  aspect-ratio: 1;
  transition: transform var(--tr), box-shadow var(--tr);
}
.slot-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-gold);
  border-color: var(--clr-border-glow);
}
.slot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slot-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,5,5,0.9) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 10px;
  opacity: 0;
  transition: opacity var(--tr);
}
.slot-card:hover .slot-card__overlay { opacity: 1; }
.slot-card__play {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-gold);
}

/* Game category pills */
.game-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.game-cat-pill {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
  cursor: pointer;
  transition: all var(--tr);
}
.game-cat-pill:hover,
.game-cat-pill.active {
  background: rgba(255, 239, 0, 0.12);
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

/* -----------------------------------------------------------------------------
   BONUS CARDS – welcome, no-deposit, VIP highlights
   ----------------------------------------------------------------------------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.bonus-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: 24px;
  text-align: center;
  transition: border-color var(--tr), transform var(--tr);
}
.bonus-card:hover {
  border-color: var(--clr-border-glow);
  transform: translateY(-4px);
}
.bonus-card__icon { font-size: 2rem; margin-bottom: 10px; }
.bonus-card h3 {
  font-size: 1rem;
  color: var(--clr-gold);
  margin-bottom: 8px;
}
.bonus-card p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-bottom: 16px;
}

/* -----------------------------------------------------------------------------
   PAYMENTS – icon strip
   ----------------------------------------------------------------------------- */
.payments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.payment-item {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-sm);
  padding: 10px 16px;
  height: 52px;
  min-width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--tr);
}
.payment-item:hover { border-color: var(--clr-border-glow); }
.payment-item img {
  height: 26px;
  width: auto;
  max-width: 72px;
  object-fit: contain;
  filter: brightness(0.9);
}

/* -----------------------------------------------------------------------------
   FAQ – native details/summary accordion
   ----------------------------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-sm);
  overflow: hidden;
}

.faq-question {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--clr-text);
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--clr-gold);
  transition: transform var(--tr);
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  padding: 0 20px 16px;
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  line-height: 1.7;
}

/* -----------------------------------------------------------------------------
   FOOTER
   ----------------------------------------------------------------------------- */
.site-footer {
  background: rgba(0, 0, 0, 0.6);
  border-top: 2px solid var(--clr-border);
  padding: 48px 0 28px;
  margin-top: 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 32px;
}

.footer-brand img { height: 38px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.82rem; color: var(--clr-text-muted); }

.footer-nav h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-gold);
  margin-bottom: 12px;
}
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 8px; }
.footer-nav a {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  text-decoration: none;
}
.footer-nav a:hover { color: var(--clr-gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--clr-text-muted);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.75rem;
}

.footer-disclaimer {
  margin-top: 20px;
  font-size: 0.72rem;
  color: rgba(184, 160, 144, 0.55);
  line-height: 1.6;
}

/* -----------------------------------------------------------------------------
   MOBILE STICKY CTA – pins action buttons to bottom on mobile
   ----------------------------------------------------------------------------- */
.mobile-sticky-cta { display: none; }

/* -----------------------------------------------------------------------------
   UTILITY
   ----------------------------------------------------------------------------- */
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.flex-center { display: flex; justify-content: center; }

.callout {
  background: rgba(139, 26, 26, 0.2);
  border-left: 4px solid var(--clr-gold);
  border-radius: var(--r-sm);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

/* Decorative star field (CSS-only) */
.stars-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  animation: twinkle var(--dur, 4s) infinite var(--delay, 0s);
}
@keyframes twinkle {
  0%, 100% { opacity: 0; }
  50% { opacity: var(--max-op, 0.6); }
}

/* -----------------------------------------------------------------------------
   RESPONSIVE – tablet
   ----------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .overview-grid { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* -----------------------------------------------------------------------------
   RESPONSIVE – mobile (≤768px): pin header, sticky CTA, compact hero
   ----------------------------------------------------------------------------- */
@media (max-width: 768px) {
  /* Pin header to viewport top */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }

  body {
    padding-top: var(--header-h);
    padding-bottom: calc(var(--mobile-sticky-h) + env(safe-area-inset-bottom, 0px));
  }

  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(10, 5, 5, 0.98);
    border-bottom: 1px solid var(--clr-border);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--tr), visibility var(--tr), transform var(--tr);
  }
  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-link {
    padding: 14px 20px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 239, 0, 0.06);
  }

  .header-cta .btn-secondary { display: none; }

  .hero {
    min-height: 420px;
    margin-top: 0;
  }
  .hero-bg { background-position: 65% center; }
  .hero-cta-box { padding: 24px 20px; }
  .hero-bonus-highlight { gap: 8px; }
  .bonus-badge { min-width: 90px; padding: 8px 12px; }

  .content-section { padding: 40px 0; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cards-grid { grid-template-columns: 1fr; }

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

  /* Mobile sticky CTA bar – pinned bottom */
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    height: var(--mobile-sticky-h);
    background: rgba(10, 5, 5, 0.97);
    backdrop-filter: blur(12px);
    border-top: 2px solid var(--clr-border);
    gap: 8px;
    padding: 8px 12px;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
  }
  .mobile-sticky-cta__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.03em;
  }
  .mobile-sticky-cta__btn--primary {
    background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
    color: #1a0800;
  }
  .mobile-sticky-cta__btn--secondary {
    background: linear-gradient(135deg, var(--clr-crimson), var(--clr-sunset));
    color: #fff;
  }
}

/* -----------------------------------------------------------------------------
   RESPONSIVE – small mobile (≤600px): table → card layout
   ----------------------------------------------------------------------------- */
@media (max-width: 600px) {
  .data-table { min-width: unset; }
  .data-table thead { display: none; }

  .data-table tbody tr {
    display: block;
    background: var(--clr-bg-card);
    border-radius: var(--r-md);
    margin-bottom: 12px;
    border: 1px solid var(--clr-border);
    overflow: hidden;
  }

  .data-table td {
    display: flex;
    flex-direction: column;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    white-space: normal;
  }
  .data-table td:last-child { border-bottom: none; }

  /* Column labels from data-label attribute */
  .data-table td::before {
    content: attr(data-label);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--clr-gold);
    margin-bottom: 4px;
  }

  /* Two-column info table: first cell is section title */
  .info-table td:first-child::before { content: none; }
  .info-table td:first-child {
    background: rgba(139, 26, 26, 0.25);
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; }
}

@media print {
  .site-header, .hero, .mobile-sticky-cta, .site-footer { display: none; }
  body { background: #fff; color: #000; padding: 0; }
}
