/* ==========================================================================
   ONLINE CASINO OHNE LIMIT — main.css
   Design: Slate dark + Crimson accent
   Display: Bricolage Grotesque | Body: DM Sans
   ========================================================================== */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Core colors */
  --primary:        #e11d48;
  --primary-hover:  #be123c;
  --primary-light:  rgba(225, 29, 72, 0.12);
  --primary-glow:   rgba(225, 29, 72, 0.22);

  /* Backgrounds */
  --bg:             #0d1117;
  --bg-soft:        #161b22;
  --bg-card:        #1c2333;
  --bg-card-hover:  #20293d;

  /* Text */
  --text:           #e2e8f0;
  --text-muted:     #8b949e;
  --text-dim:       #6b7280;

  /* Borders */
  --border:         #30363d;
  --border-soft:    #21262d;

  /* Semantic */
  --amber:          #f59e0b;
  --green:          #22c55e;

  /* Typography */
  --font-display:   'Bricolage Grotesque', sans-serif;
  --font-body:      'DM Sans', sans-serif;

  /* Shape */
  --radius-sm:  6px;
  --radius:     10px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  /* Layout */
  --max-w:         1200px;
  --max-w-content: 920px;
  --nav-h:         72px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0, 0, 0, .45);
  --shadow:     0 4px 16px rgba(0, 0, 0, .55);
  --shadow-lg:  0 12px 40px rgba(0, 0, 0, .65);
  --shadow-red: 0 4px 22px rgba(225, 29, 72, .30);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color .2s;
}
a:hover { color: var(--primary-hover); }

ul, ol { list-style: none; }

/* ---------- 3. TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.3rem,  3vw, 1.875rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.05rem, 2.5vw, 1.25rem); }
h4 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; color: var(--text); }

/* ---------- 4. LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.container--content {
  max-width: var(--max-w-content);
  margin-inline: auto;
}

.section { padding-block: 3.5rem; }
.section--alt { background: var(--bg-soft); }

/* ---------- 5. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .625rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn--primary:hover {
  background: var(--primary-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(225, 29, 72, .38);
}

.btn--outline {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.btn--sm {
  padding: .45rem 1rem;
  font-size: .82rem;
}

.btn--full { width: 100%; }

/* ---------- 6. HEADER / NAV ---------- */
.site-header {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(13, 17, 23, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  z-index: 900;
}

.site-header .container {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 1.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  white-space: nowrap;
  margin-right: auto;
  flex-shrink: 0;
}
.nav__logo:hover { color: var(--text); }

.nav__logo-icon {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-red);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: .15rem;
}

.nav__links a {
  padding: .4rem .75rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
}
.nav__links a:hover {
  color: var(--text);
  background: var(--bg-card);
}

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 7px;
  flex-shrink: 0;
}
.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s;
}

/* ---------- 7. MOBILE DRAWER — sibling to <header>, NOT inside ---------- */
.mobile-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  z-index: 850;
  padding: 1rem 1.25rem 1.25rem;
  transform: translateY(-6px);
  opacity: 0;
  transition: transform .2s ease, opacity .2s ease;
  pointer-events: none;
}
.mobile-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer__list {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.mobile-drawer__list a {
  display: block;
  padding: .7rem 1rem;
  color: var(--text-muted);
  font-size: .95rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all .2s;
}
.mobile-drawer__list a:hover {
  background: var(--bg-card);
  color: var(--text);
}

/* ---------- 8. HERO ---------- */
.hero {
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 2.5rem;
  background: linear-gradient(155deg, var(--bg) 55%, rgba(225, 29, 72, .05) 100%);
  border-bottom: 1px solid var(--border-soft);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem .9rem;
  background: var(--primary-light);
  border: 1px solid rgba(225, 29, 72, .25);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1.25rem;
}

.hero__title {
  max-width: 800px;
  margin-bottom: 1rem;
}

.hero__lead {
  max-width: 680px;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 1.75rem;
  margin-top: 1.75rem;
  border-top: 1px solid var(--border-soft);
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.hero__stat-label {
  font-size: .77rem;
  color: var(--text-muted);
  margin-top: .3rem;
  font-weight: 500;
}

/* ---------- 9. TABLE OF CONTENTS ---------- */
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.5rem;
}

.toc__title {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.toc__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .35rem .75rem;
}

.toc__list li { /* nothing extra needed */ }

.toc__list a {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  color: var(--text-muted);
  font-size: .875rem;
  text-decoration: none;
  transition: color .2s;
  line-height: 1.45;
  padding: .2rem 0;
}
.toc__list a:hover { color: var(--primary); }

.toc__num {
  font-size: .72rem;
  font-weight: 700;
  color: var(--primary);
  min-width: 1.3rem;
  flex-shrink: 0;
  font-family: var(--font-display);
}

/* ---------- 10. COMPACT LISTING ---------- */
.listing-table {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.listing-header {
  display: grid;
  grid-template-columns: 2.5rem 116px 1fr 5rem 5.5rem;
  align-items: center;
  gap: .75rem;
  padding: .6rem 1.25rem;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-muted);
}

.listing-row {
  display: grid;
  grid-template-columns: 2.5rem 116px 1fr 5rem 5.5rem;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1.25rem;
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-card);
  transition: background .2s;
}
.listing-row:last-child { border-bottom: none; }
.listing-row:hover { background: var(--bg-card-hover); }

.listing-row__rank {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
}

.listing-row__logo a {
  display: flex;
  align-items: center;
}
.listing-row__logo img {
  width: 104px;
  height: 42px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.listing-row__info { display: flex; flex-direction: column; gap: .1rem; }
.listing-row__name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
}
.listing-row__bonus {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.listing-row__stars {
  color: var(--amber);
  font-size: .82rem;
  white-space: nowrap;
  text-align: right;
  letter-spacing: 1px;
}

/* ---------- 11. DETAIL CARDS ---------- */
.detail-cards { display: flex; flex-direction: column; gap: 2rem; }

.detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .25s;
}
.detail-card:hover { box-shadow: var(--shadow-lg); }

.detail-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
}

.detail-card__rank {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  opacity: .18;
  line-height: 1;
  user-select: none;
  flex-shrink: 0;
}

.detail-card__title-block { flex: 1; }

.detail-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.detail-card__subtitle {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: .2rem;
}

.detail-card__screenshot-link { display: block; }
.detail-card__screenshot {
  display: block;
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  object-position: top;
  transition: opacity .2s;
}
.detail-card__screenshot:hover { opacity: .88; }

.detail-card__body {
  padding: 1.5rem;
}

.detail-card__body p {
  font-size: .925rem;
  color: var(--text-muted);
  margin-bottom: .875rem;
}

.detail-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 1.25rem;
}

.meta-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .25rem .65rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .77rem;
  font-weight: 600;
  color: var(--text-muted);
}
.meta-badge--red {
  background: var(--primary-light);
  border-color: rgba(225, 29, 72, .22);
  color: var(--primary);
}
.meta-badge--amber {
  background: rgba(245, 158, 11, .1);
  border-color: rgba(245, 158, 11, .2);
  color: var(--amber);
}

.detail-card__ctas {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

/* ---------- 12. INTRO BLOCK (after listing) ---------- */
.intro-block {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.intro-block p { font-size: .95rem; }
.intro-block p:last-child { margin-bottom: 0; }

/* ---------- 13. PROSE SECTIONS ---------- */
.prose-section {
  padding-block: 2.25rem;
  border-bottom: 1px solid var(--border-soft);
}
.prose-section:last-child { border-bottom: none; }

.prose-section h2 {
  margin-bottom: 1rem;
  color: var(--text);
}

.prose-section p { color: var(--text-muted); margin-bottom: .875rem; }
.prose-section p:last-child { margin-bottom: 0; }

.prose-section ul,
.prose-section ol {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}
.prose-section ul li,
.prose-section ol li {
  color: var(--text-muted);
  margin-bottom: .45rem;
  font-size: .95rem;
}
.prose-section ul li strong,
.prose-section ol li strong {
  color: var(--text);
}
.prose-section ol { list-style: decimal; }

/* TIP / PRAXISTIPP BOX */
.tip-box {
  background: rgba(245, 158, 11, .07);
  border: 1px solid rgba(245, 158, 11, .2);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-block: 1.5rem;
}
.tip-box h3 {
  color: var(--amber);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: .6rem;
}
.tip-box p,
.tip-box ul li {
  font-size: .875rem;
  color: var(--text-muted);
}
.tip-box ul {
  list-style: disc;
  padding-left: 1.25rem;
}
.tip-box ul li { margin-bottom: .3rem; }

/* ---------- 14. COMPARISON TABLES ---------- */
.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-block: 1.5rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
  min-width: 580px;
}

.comparison-table th {
  background: var(--bg-soft);
  padding: .7rem 1rem;
  text-align: left;
  font-weight: 700;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.comparison-table td {
  padding: .7rem 1rem;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-muted);
  vertical-align: top;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--bg-soft); }
.comparison-table td:first-child {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.comparison-table td.highlight {
  color: var(--primary);
  font-weight: 600;
}
.comparison-table td.check { color: var(--green); font-weight: 700; }
.comparison-table td.cross  { color: var(--text-dim); }

/* ---------- 15. FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 1rem; }

.faq-item {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .625rem;
  padding-left: 1rem;
  border-left: 3px solid var(--primary);
  line-height: 1.35;
}

.faq-item p {
  font-size: .9rem;
  color: var(--text-muted);
  margin: 0;
  padding-left: 1rem;
}

/* ---------- 16. RESPONSIBLE GAMBLING BANNER ---------- */
.rg-banner {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-block: 2rem;
}

.rg-banner__icon {
  width: 42px;
  height: 42px;
  background: rgba(245, 158, 11, .1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.rg-banner__content h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .35rem;
}
.rg-banner__content p {
  font-size: .82rem;
  color: var(--text-muted);
  margin: 0;
}
.rg-banner__content a {
  color: var(--primary);
}

/* ---------- 17. FOOTER ---------- */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-soft);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: .5rem;
}
.footer__brand-desc {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.footer__age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--primary);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: .875rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.footer__col ul a {
  font-size: .84rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}
.footer__col ul a:hover { color: var(--text); }

.footer__bottom {
  padding-block: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer__copyright {
  font-size: .77rem;
  color: var(--text-dim);
}

.footer__legal-links {
  display: flex;
  gap: 1.25rem;
}
.footer__legal-links a {
  font-size: .77rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color .2s;
}
.footer__legal-links a:hover { color: var(--text-muted); }

/* ---------- 18. LEGAL / SERVICE PAGES ---------- */
.page-hero {
  padding-top: calc(var(--nav-h) + 2.5rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-soft);
}

.page-hero .hero-badge {
  display: inline-flex;
  padding: .3rem .8rem;
  background: var(--primary-light);
  border: 1px solid rgba(225, 29, 72, .2);
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--primary);
  margin-bottom: .875rem;
}
.page-hero h1 { margin-bottom: .5rem; }
.page-hero .page-lead {
  color: var(--text-muted);
  font-size: .95rem;
  margin: 0;
}

/* Breadcrumbs (legal pages only) */
.breadcrumbs {
  padding-block: .875rem;
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-soft);
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .82rem;
  color: var(--text-dim);
}
.breadcrumbs__list a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}
.breadcrumbs__list a:hover { color: var(--primary); }
.breadcrumbs__sep { color: var(--text-dim); }

/* Section cards (legal pages) */
.section-prose { padding-block: 2.5rem; }

.section-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}
.section-card:last-child { margin-bottom: 0; }

.section-card h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--border-soft);
}
.section-card h3 {
  font-size: .95rem;
  margin-top: 1.25rem;
  margin-bottom: .5rem;
}
.section-card p {
  color: var(--text-muted);
  font-size: .9rem;
}
.section-card ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: .75rem;
}
.section-card ul li {
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: .35rem;
}
.section-card a { color: var(--primary); }

/* ---------- 19. CONTACT FORM ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}

.form-group { margin-bottom: 1.1rem; }

.form-label {
  display: block;
  font-size: .84rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: .4rem;
}

.form-control {
  width: 100%;
  padding: .65rem 1rem;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: .9rem;
  transition: border-color .2s, background .2s;
  resize: vertical;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg-card);
}
.form-control::placeholder { color: var(--text-dim); }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .82rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}
.form-checkbox input[type="checkbox"] {
  margin-top: .15rem;
  accent-color: var(--primary);
  flex-shrink: 0;
}
.form-checkbox a { color: var(--primary); }

.honeypot { display: none !important; visibility: hidden !important; }

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.contact-info-card h3 {
  font-size: .95rem;
  margin-bottom: .875rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--border-soft);
}
.contact-info-card p {
  font-size: .87rem;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.contact-info-card p:last-child { margin-bottom: 0; }

/* ---------- 20. UTILITY CLASSES ---------- */
.text-primary  { color: var(--primary) !important; }
.text-muted    { color: var(--text-muted) !important; }
.text-dim      { color: var(--text-dim) !important; }
.text-center   { text-align: center; }
.fw-700        { font-weight: 700; }
.font-display  { font-family: var(--font-display); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ---------- 21. RESPONSIVE ---------- */
@media (max-width: 960px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .toc__list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Show burger, hide links */
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .mobile-drawer { display: block; }

  .hero { padding-top: calc(var(--nav-h) + 1.75rem); padding-bottom: 2rem; }
  .hero__stats { gap: 1.25rem; }

  /* Listing: hide stars col, keep CTA button */
  .listing-header { display: none; }
  .listing-row {
    grid-template-columns: 2.5rem 90px 1fr auto;
    padding: .75rem 1rem;
    gap: .6rem;
  }
  .listing-row__stars { display: none; }
  .listing-row .btn {
    padding: .4rem .65rem;
    font-size: .75rem;
  }

  /* Detail card CTAs stack */
  .detail-card__ctas { flex-direction: column; }
  .detail-card__ctas .btn { width: 100%; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  :root { --nav-h: 64px; }
  .container { padding-inline: 1rem; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.25rem; }
  .hero__stat-value { font-size: 1.3rem; }
  .detail-card__body { padding: 1.25rem; }
  .section-card { padding: 1.25rem; }
  .toc { padding: 1.25rem; }
  .rg-banner { flex-direction: column; }
}

/* ---------- 22. ACCESSIBILITY ---------- */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}