/*
 * LEONBET POKER — "Midnight Felt" Design System
 * ================================================
 * Design Movement: Editorial Casino Noir
 * Color Philosophy: Deep green felt (#0a1a10) + Crimson gold (#c9a84c) + Off-white (#f0ece0)
 * Typography: Playfair Display (headings) + Source Sans 3 (body)
 * Layout: Left-rail accent line, asymmetric hero, card-based game grid
 * Signature Elements: Suit-symbol watermarks, gold underlines, green felt texture
 * Hover: Soft lift + gold border glow
 * Responsive: Mobile-first, hamburger at 900px
 */

/* ─── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
  background: #0a1a10;
  color: #e8e4d8;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #c9a84c; text-decoration: none; transition: color .2s; }
a:hover { color: #e8c96a; }

/* ─── TYPOGRAPHY ────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: #f0ece0;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin-bottom: 1rem; color: #c8c4b8; }
strong { color: #f0ece0; }

/* ─── CONTAINER ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }

/* ─── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 4px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform .18s, box-shadow .18s, background .18s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 60%, #b8922e 100%);
  color: #0a1a10;
  box-shadow: 0 4px 20px rgba(201,168,76,.35);
}
.btn-primary:hover { box-shadow: 0 6px 28px rgba(201,168,76,.55); color: #0a1a10; }
.btn-register {
  background: linear-gradient(135deg, #7c3aed 0%, #9d5cf0 60%, #6d28d9 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,.4);
}
.btn-register:hover { box-shadow: 0 6px 28px rgba(124,58,237,.6); color: #fff; }
.btn-secondary {
  background: transparent;
  color: #c9a84c;
  border: 1.5px solid #c9a84c;
}
.btn-secondary:hover { background: rgba(201,168,76,.08); color: #e8c96a; }
.btn-outline {
  background: transparent;
  color: #c9a84c;
  border: 1.5px solid rgba(201,168,76,.5);
}
.btn-outline:hover { background: rgba(201,168,76,.08); color: #e8c96a; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: .5rem 1rem; font-size: .85rem; }
.btn-nav-cta {
  background: linear-gradient(135deg, #c9a84c, #e8c96a);
  color: #0a1a10;
  padding: .45rem 1.1rem;
  font-size: .82rem;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.btn-nav-cta:hover { color: #0a1a10; box-shadow: 0 4px 16px rgba(201,168,76,.4); }
.btn-sticky {
  background: linear-gradient(135deg, #7c3aed, #9d5cf0);
  color: #fff;
  padding: .5rem 1.25rem;
  font-size: .85rem;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn-sticky:hover { color: #fff; box-shadow: 0 4px 16px rgba(124,58,237,.5); }

/* ─── NAVBAR ────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8,20,12,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,.15);
  padding: .75rem 0;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) { .nav-container { padding: 0 2rem; } }

/* Brand logo in navbar */
.nav-brand {
  display: flex;
  align-items: center;
  gap: .45rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-icon {
  font-size: 1.4rem;
  color: #c9a84c;
  line-height: 1;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f0ece0;
  letter-spacing: .04em;
  line-height: 1;
}
.brand-accent { color: #c9a84c; }
.brand-sub {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #7a7870;
  align-self: flex-end;
  padding-bottom: .05rem;
}

/* Nav menu (desktop) */
.nav-menu {
  display: flex;
  align-items: center;
  gap: .2rem;
  flex-wrap: nowrap;
}
.nav-link {
  display: block;
  padding: .4rem .7rem;
  color: #c8c4b8;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .03em;
  border-radius: 3px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: #c9a84c;
  background: rgba(201,168,76,.08);
}

/* Language Switcher */
.lang-switcher {
  position: relative;
  margin: 0 .25rem;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: .3rem;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  color: #c9a84c;
  padding: .38rem .7rem;
  border-radius: 4px;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
  font-family: 'Source Sans 3', sans-serif;
}
.lang-toggle:hover { background: rgba(201,168,76,.18); }
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #0f2318;
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 6px;
  min-width: 130px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  z-index: 200;
  overflow: hidden;
}
.lang-switcher.open .lang-dropdown { display: block; }
.lang-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1rem;
  color: #c8c4b8;
  font-size: .83rem;
  font-weight: 600;
  transition: background .15s, color .15s;
}
.lang-item:hover { background: rgba(201,168,76,.1); color: #c9a84c; }
.lang-item.active { color: #c9a84c; background: rgba(201,168,76,.07); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #c9a84c;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8,20,12,.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 2rem 1rem;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #f0ece0;
    padding: .65rem 2rem;
    border-bottom: 1px solid rgba(201,168,76,.1);
    width: 100%;
    text-align: center;
  }
  .mobile-menu a:hover { color: #c9a84c; }
  .mobile-close {
    position: absolute;
    top: 1.25rem; right: 1.25rem;
    font-size: 1.75rem;
    color: #c9a84c;
    background: none;
    border: none;
    cursor: pointer;
  }
}

/* ─── HERO ──────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #051209 0%, #0d2518 50%, #0a1a10 100%);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '♠';
  position: absolute;
  right: -2rem;
  top: -2rem;
  font-size: 18rem;
  color: rgba(201,168,76,.04);
  pointer-events: none;
  line-height: 1;
}
.hero-inner {
  padding: 2.5rem 0 2rem;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) { .hero-container { padding: 0 2rem; } }
@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-logo-panel { display: none; }
}
.hero-content { min-width: 0; }
.hero-eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: .75rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #f0ece0;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: #a8a49a;
  margin-bottom: 1.5rem;
  max-width: 560px;
}
.hero-bonus-badge {
  display: inline-block;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 4px;
  padding: .5rem 1.1rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #c9a84c;
  margin-bottom: 1.5rem;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero right panel */
.hero-logo-panel {
  background: linear-gradient(160deg, rgba(201,168,76,.08) 0%, rgba(8,20,12,.6) 100%);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  min-width: 0;
}
.hlp-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
}
.hlp-icon {
  font-size: 2.8rem;
  color: #c9a84c;
  line-height: 1;
}
.hlp-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #f0ece0;
  letter-spacing: .08em;
  line-height: 1;
}
.hlp-accent { color: #c9a84c; }
.hlp-sub {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #7a7870;
}
.hlp-stats {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  width: 100%;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0,0,0,.2);
  border-radius: 4px;
  padding: .6rem .75rem;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #c9a84c;
  line-height: 1;
}
.stat-label {
  font-size: .72rem;
  color: #7a7870;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: .2rem;
}

/* ─── SECTIONS ──────────────────────────────────────── */
.section { padding: 4rem 0; }
.section-dark { background: #071410; }
.section-mid { background: #0d1f17; }
.section-light { background: #0f2318; }
.section-about { background: #0d1f17; }
.section-games { background: #0a1a10; }
.section-screenshot { background: #071410; }
.section-sports { background: #0d1f17; }
.section-payments { background: #0a1a10; }
.section-mobile-teaser { background: #071410; }
.section-faq { background: #0d1f17; }
.section-cta-banner { background: #051209; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #f0ece0;
  margin-bottom: 1.75rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid rgba(201,168,76,.2);
  position: relative;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #c9a84c, #e8c96a);
}

/* ─── GAME CARDS ────────────────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.game-card {
  background: #0f2318;
  border: 1px solid rgba(201,168,76,.1);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .22s, border-color .22s, box-shadow .22s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,.4);
  box-shadow: 0 8px 32px rgba(0,0,0,.4), 0 0 0 1px rgba(201,168,76,.15);
}
.game-thumb {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.game-info {
  padding: .85rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.game-name {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 700;
  color: #f0ece0;
  margin-bottom: .3rem;
}
.game-name a { color: #f0ece0; }
.game-name a:hover { color: #c9a84c; }
.game-desc {
  font-size: .82rem;
  color: #7a7870;
  line-height: 1.5;
  flex: 1;
  margin-bottom: .75rem;
}
.game-card .btn { width: 100%; justify-content: center; padding: .55rem; font-size: .82rem; }

/* ─── SCREENSHOT ────────────────────────────────────── */
.screenshot-block {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.15);
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
}
.screenshot-img {
  width: 100%;
  height: auto;
  display: block;
}
.screenshot-caption {
  background: #0f2318;
  padding: .75rem 1rem;
  font-size: .82rem;
  color: #7a7870;
  text-align: center;
  margin: 0;
  border-top: 1px solid rgba(201,168,76,.1);
}

/* ─── SPORTS CHIPS ──────────────────────────────────── */
.sports-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.25rem;
}
.chip {
  background: #0f2318;
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 20px;
  padding: .35rem .9rem;
  font-size: .82rem;
  font-weight: 600;
  color: #c8c4b8;
  white-space: nowrap;
}

/* ─── DATA TABLE ────────────────────────────────────── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  margin-bottom: 1.5rem;
}
.data-table th {
  background: #0f2318;
  color: #c9a84c;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: .75rem 1rem;
  text-align: left;
  border-bottom: 2px solid rgba(201,168,76,.2);
}
.data-table td {
  padding: .7rem 1rem;
  color: #c8c4b8;
  border-bottom: 1px solid rgba(201,168,76,.07);
}
.data-table tr:hover td { background: rgba(201,168,76,.04); }
.data-table tr:last-child td { border-bottom: none; }

/* ─── MOBILE TEASER ─────────────────────────────────── */
.mobile-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: #0f2318;
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 8px;
  padding: 2.5rem;
}
.mt-text { flex: 1; }
.mt-text h2 { margin-bottom: .75rem; }
.mt-text p { margin-bottom: 1.25rem; }
.mt-icon {
  font-size: 5rem;
  line-height: 1;
  opacity: .7;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .mobile-teaser { flex-direction: column; text-align: center; }
  .mt-icon { font-size: 3.5rem; }
}

/* ─── FAQ ───────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: .5rem; }
.faq-item {
  background: #0f2318;
  border: 1px solid rgba(201,168,76,.1);
  border-radius: 6px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  color: #f0ece0;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color .2s;
}
.faq-question:hover { color: #c9a84c; }
.faq-icon {
  font-size: 1.2rem;
  color: #c9a84c;
  font-weight: 400;
  transition: transform .25s;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 1.25rem 1rem;
  color: #a8a49a;
  font-size: .9rem;
  line-height: 1.65;
}
.faq-item.open .faq-answer { display: block; }

/* ─── CTA BANNER ────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0d2518 0%, #051209 100%);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #c9a84c;
}

/* ─── BONUS CARDS ───────────────────────────────────── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.bonus-card {
  background: #0f2318;
  border: 1px solid rgba(201,168,76,.12);
  border-radius: 8px;
  padding: 1.75rem;
  position: relative;
  transition: border-color .22s, transform .22s;
}
.bonus-card:hover { border-color: rgba(201,168,76,.35); transform: translateY(-3px); }
.bonus-card.featured {
  border-color: rgba(201,168,76,.4);
  background: linear-gradient(160deg, rgba(201,168,76,.06) 0%, #0f2318 100%);
}
.bonus-badge {
  position: absolute;
  top: -10px; right: 1.25rem;
  background: linear-gradient(135deg, #c9a84c, #e8c96a);
  color: #0a1a10;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 3px;
}
.bonus-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #c9a84c;
  margin-bottom: .5rem;
}
.bonus-name {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #7a7870;
  margin-bottom: 1rem;
}
.bonus-desc { font-size: .88rem; color: #a8a49a; margin-bottom: 1.25rem; }

/* ─── FOOTER ────────────────────────────────────────── */
.footer {
  background: #051209;
  border-top: 1px solid rgba(201,168,76,.1);
  padding: 2.5rem 0 1.5rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) { .footer-container { padding: 0 2rem; } }
.footer-brand {
  display: flex;
  align-items: center;
  gap: .45rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem .5rem;
}
.footer-nav a {
  font-size: .85rem;
  color: #5a5850;
  padding: .2rem .5rem;
  transition: color .2s;
}
.footer-nav a:hover { color: #c9a84c; }
.footer-legal {
  font-size: .78rem;
  color: #3a3830;
  line-height: 1.6;
}
.footer-legal a { color: #5a5850; }
.footer-legal a:hover { color: #c9a84c; }
.footer-legal p { color: #3a3830; margin-bottom: .35rem; }

/* ─── STICKY BAR ────────────────────────────────────── */
.sticky-bar {
  position: fixed;
  bottom: -80px;
  left: 0; right: 0;
  z-index: 900;
  background: rgba(5,18,9,.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201,168,76,.2);
  padding: .65rem 0;
  transition: bottom .35s cubic-bezier(.4,0,.2,1);
}
.sticky-bar.visible { bottom: 0; }
.sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) { .sticky-inner { padding: 0 2rem; } }
.sticky-brand {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #f0ece0;
}
.sticky-bonus { font-size: .88rem; color: #c9a84c; font-weight: 700; }
.sticky-rating { font-size: .82rem; color: #7a7870; }
@media (max-width: 600px) {
  .sticky-brand, .sticky-rating { display: none; }
}

/* ─── TRUST BAR ─────────────────────────────────────── */
.trust-bar {
  background: #071410;
  border-top: 1px solid rgba(201,168,76,.08);
  border-bottom: 1px solid rgba(201,168,76,.08);
  padding: 1.25rem 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: #5a5850;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.trust-item .icon { font-size: 1.1rem; color: #c9a84c; }

/* ─── PAYMENT METHODS ───────────────────────────────── */
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}
.payment-chip {
  background: #0f2318;
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 4px;
  padding: .5rem 1rem;
  font-size: .82rem;
  font-weight: 700;
  color: #c8c4b8;
  letter-spacing: .04em;
  transition: border-color .2s, color .2s;
}
.payment-chip:hover { border-color: rgba(201,168,76,.4); color: #c9a84c; }

/* ─── INTERNAL LINK CARDS ───────────────────────────── */
.link-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.link-card {
  background: #0f2318;
  border: 1px solid rgba(201,168,76,.1);
  border-radius: 8px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  transition: border-color .22s, transform .22s;
  text-decoration: none;
}
.link-card:hover { border-color: rgba(201,168,76,.4); transform: translateY(-3px); color: inherit; }
.link-card-icon { font-size: 1.5rem; }
.link-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #f0ece0;
}
.link-card-desc { font-size: .82rem; color: #7a7870; margin: 0; }
.link-card-arrow { color: #c9a84c; font-size: .85rem; margin-top: auto; }

/* ─── BREADCRUMB ────────────────────────────────────── */
.breadcrumb {
  padding: .75rem 0;
  font-size: .82rem;
  color: #5a5850;
}
.breadcrumb a { color: #7a7870; }
.breadcrumb a:hover { color: #c9a84c; }
.breadcrumb span { margin: 0 .4rem; }

/* ─── UTILITIES ─────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: #c9a84c; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }
.accent-line {
  display: inline-block;
  width: 48px; height: 3px;
  background: linear-gradient(90deg, #c9a84c, #e8c96a);
  border-radius: 2px;
  margin-bottom: 1rem;
}
