/* =========================================================
   GrenzenlosCasino — main.css
   Light theme · Teal accent · Fraunces (display) + Manrope (body)
   ========================================================= */

/* ----- CSS Reset (modern) ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: transparent; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; list-style: none; }

/* ----- Design tokens ----- */
:root {
  /* Brand palette — teal accent */
  --primary:        #0d9488;
  --primary-hover:  #0f766e;
  --primary-deep:   #115e59;
  --primary-light:  #f0fdfa;
  --primary-soft:   #ccfbf1;

  /* Surfaces */
  --bg:        #ffffff;
  --bg-soft:   #f8fafc;
  --bg-card:   #ffffff;

  /* Text */
  --text:        #0f172a;
  --text-muted:  #475569;
  --text-dim:    #64748b;
  --text-soft:   #94a3b8;

  /* Borders & dividers */
  --border:       #e2e8f0;
  --border-soft:  #f1f5f9;

  /* Accents */
  --amber:   #f59e0b;
  --amber-soft: #fef3c7;
  --red:     #dc2626;
  --red-soft: #fee2e2;
  --green:   #16a34a;

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

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow:    0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 8px rgba(15, 23, 42, 0.06), 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 24px rgba(15, 23, 42, 0.08), 0 4px 8px rgba(15, 23, 42, 0.04);

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

  /* Typography */
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body:    'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ----- Base typography ----- */
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  font-weight: 400;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 4vw + 1rem, 3.25rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 2vw + 0.75rem, 2.125rem); }
h3 { font-size: clamp(1.2rem, 1vw + 0.85rem, 1.4rem); }
h4 { font-size: 1.075rem; }

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

a:not([class]) {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(13, 148, 136, 0.35);
  text-underline-offset: 3px;
  transition: color .15s ease, text-decoration-color .15s ease;
}
a:not([class]):hover {
  color: var(--primary-hover);
  text-decoration-color: var(--primary-hover);
}

/* ----- Layout helpers ----- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow {
  max-width: var(--max-w-content);
}

/* ----- Skip link (a11y) ----- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 10px 16px;
  z-index: 9999;
}
.skip-link:focus { top: 0; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.site-header .container {
  display: flex;
  align-items: center;
  height: 100%;
}
.site-header nav {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 24px;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.225rem;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-right: auto;
}
.nav__logo:hover { color: var(--primary); }
.nav__logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 1rem;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__links a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color .15s ease, background .15s ease;
}
.nav__links a:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
}
.nav__burger:hover { background: var(--bg-soft); }
.nav__burger span,
.nav__burger span::before,
.nav__burger span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: relative;
  transition: transform .2s ease;
}
.nav__burger span::before { content: ""; position: absolute; top: -7px; left: 0; }
.nav__burger span::after  { content: ""; position: absolute; top:  7px; left: 0; }

/* ----- Mobile drawer (sibling of header) ----- */
.mobile-drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  transform: translateY(-110%);
  transition: transform .25s ease;
  box-shadow: var(--shadow-lg);
}
.mobile-drawer.is-open { transform: translateY(0); }
.mobile-drawer__list {
  display: flex;
  flex-direction: column;
  padding: 12px 24px 20px;
  gap: 4px;
}
.mobile-drawer__list a {
  display: block;
  padding: 14px 12px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--border-soft);
}
.mobile-drawer__list a:last-child { border-bottom: 0; }
.mobile-drawer__list a:hover {
  color: var(--primary);
  background: var(--primary-light);
}

/* =========================================================
   HERO (compact)
   ========================================================= */
.hero {
  padding: 56px 0 40px;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border-soft);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--primary-soft);
  color: var(--primary-deep);
  border-radius: 999px;
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
.hero__badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.hero h1 {
  max-width: 800px;
  margin-bottom: 18px;
}
.hero__lead {
  font-size: 1.075rem;
  max-width: 720px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* Inline stats rail (small, not big cards) */
.hero__rail {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 36px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.hero__rail-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__rail-item strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.hero__rail-item span {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* =========================================================
   COMPACT LISTING (10 rows)
   ========================================================= */
.section {
  padding: 64px 0;
}
.section--soft {
  background: var(--bg-soft);
}
.section__head {
  margin-bottom: 32px;
}
.section__head h2 {
  margin-bottom: 10px;
}
.section__head p {
  max-width: 700px;
  font-size: 1.025rem;
}

.toplist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.toplist__row {
  display: grid;
  grid-template-columns: 40px 88px 1fr auto auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-soft);
  transition: background .15s ease;
}
.toplist__row:last-child { border-bottom: 0; }
.toplist__row:hover { background: var(--primary-light); }

.toplist__rank {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
}
.toplist__logo {
  display: block;
  width: 88px;
  height: 36px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.toplist__name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}
.toplist__bonus {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.toplist__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
}
.toplist__rating-star {
  color: var(--amber);
  font-size: 1rem;
  line-height: 1;
}
.toplist__details {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
}
.toplist__details:hover {
  color: var(--primary);
  background: var(--primary-soft);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.925rem;
  letter-spacing: 0.005em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
  font-family: var(--font-body);
}
.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 1px 2px rgba(13, 148, 136, 0.25);
}
.btn--primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.35);
}
.btn--ghost {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btn--lg {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}
.btn--block {
  display: flex;
  width: 100%;
}

/* =========================================================
   DETAILED CARDS (10 detail cards for top brands)
   ========================================================= */
.details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
.detail-card {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease;
  scroll-margin-top: 92px;
}
.detail-card:hover {
  box-shadow: var(--shadow-md);
}
.detail-card__shot {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  overflow: hidden;
}
.detail-card__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.detail-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.detail-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}
.detail-card__rank {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.detail-card__title {
  font-size: 1.5rem;
  margin: 0;
}
.detail-card__bonus {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--amber-soft);
  color: #92400e;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  align-self: flex-start;
}
.detail-card__desc {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.detail-card__desc p + p { margin-top: 12px; }
.detail-card__cta {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

/* =========================================================
   PROSE SECTIONS (main content)
   ========================================================= */
.prose {
  max-width: var(--max-w-content);
  margin-inline: auto;
}
.prose h2 {
  margin-top: 56px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}
.prose p {
  margin-bottom: 16px;
  font-size: 1.025rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.prose ul {
  list-style: none;
  margin-bottom: 18px;
}
.prose ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 1.025rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}
.prose strong { color: var(--text); font-weight: 600; }

/* ----- Comparison table ----- */
.table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: top;
}
.compare-table thead th {
  background: var(--primary-light);
  color: var(--primary-deep);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.95rem;
  border-bottom: 2px solid var(--primary-soft);
}
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table tbody td:first-child {
  font-weight: 600;
  color: var(--text);
}

/* Pros / Cons table */
.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.proscons__col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.proscons__col h4 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.proscons__col--pro h4 { color: var(--green); }
.proscons__col--con h4 { color: var(--red); }
.proscons__col ul li {
  padding-left: 24px;
  margin-bottom: 10px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.proscons__col--pro ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 700;
}
.proscons__col--con ul li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 700;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  max-width: var(--max-w-content);
  margin-inline: auto;
}
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 14px;
}
.faq__item h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text);
}
.faq__item p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* =========================================================
   RESPONSIBLE GAMBLING BANNER
   ========================================================= */
.rg-banner {
  background: linear-gradient(135deg, #fff7ed 0%, var(--bg) 100%);
  border: 1px solid #fed7aa;
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: var(--max-w-content);
  margin: 48px auto 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.rg-banner__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fb923c;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.rg-banner h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #9a3412;
}
.rg-banner p {
  font-size: 0.975rem;
  color: #7c2d12;
  margin: 0;
}
.rg-banner a {
  color: #9a3412;
  font-weight: 600;
  text-decoration: underline;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 56px 0 24px;
  margin-top: 80px;
}
.site-footer a {
  color: #cbd5e1;
  transition: color .15s ease;
}
.site-footer a:hover { color: #5eead4; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: #f1f5f9;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.footer-col p {
  color: #94a3b8;
  font-size: 0.925rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.925rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: #f1f5f9;
}
.footer-18 {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 0.825rem;
  margin-right: 12px;
}
.footer-rg-line {
  display: flex;
  align-items: center;
  margin-top: 18px;
  padding: 12px 14px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.25);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: #fca5a5;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: #64748b;
}
.footer-bottom__legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* =========================================================
   SERVICE PAGES (kontakt / impressum / datenschutz / cookie)
   ========================================================= */
.page-hero {
  padding: 56px 0 32px;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border-soft);
}
.page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--primary-soft);
  color: var(--primary-deep);
  border-radius: 999px;
  font-size: 0.825rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.page-hero h1 {
  font-size: clamp(1.85rem, 3vw + 0.8rem, 2.6rem);
  margin-bottom: 14px;
  max-width: 720px;
}
.page-hero__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
}

.breadcrumbs {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 14px 0;
}
.breadcrumbs ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-dim);
}
.breadcrumbs ol li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.breadcrumbs ol li::after {
  content: "›";
  color: var(--text-soft);
  margin-left: 4px;
}
.breadcrumbs ol li:last-child::after { display: none; }
.breadcrumbs a { color: var(--primary); }
.breadcrumbs a:hover { color: var(--primary-hover); text-decoration: underline; }
.breadcrumbs ol li[aria-current="page"] {
  color: var(--text);
  font-weight: 500;
}

.section-prose {
  padding: 48px 0 64px;
}
.section-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-bottom: 18px;
  max-width: var(--max-w-content);
  margin-inline: auto;
  margin-bottom: 18px;
}
.section-card h2 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--text);
}
.section-card p { font-size: 1rem; line-height: 1.65; margin-bottom: 12px; }
.section-card p:last-child { margin-bottom: 0; }
.section-card ul { margin: 8px 0 12px; }
.section-card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.975rem;
}
.section-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

/* =========================================================
   CONTACT FORM (mailto)
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  max-width: var(--max-w-content);
  margin-inline: auto;
}
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form h2 { font-size: 1.4rem; margin-bottom: 8px; }
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  font-size: 0.975rem;
  color: var(--text);
  font-family: var(--font-body);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.field__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.field__check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
}
.contact-tile h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text);
}
.contact-tile p {
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}
.contact-tile a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: underline;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero { padding: 40px 0 32px; }
  .hero__rail { gap: 20px 28px; }
  .hero__rail-item strong { font-size: 1.25rem; }

  .toplist__row {
    grid-template-columns: 32px 64px 1fr auto;
    gap: 12px;
    padding: 12px 14px;
  }
  .toplist__rating,
  .toplist__details { display: none; }
  .toplist__logo { width: 64px; height: 28px; }
  .toplist__name { font-size: 0.95rem; }
  .toplist__bonus { font-size: 0.8rem; }

  .detail-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px;
  }
  .detail-card__shot { min-height: 180px; }
  .detail-card__title { font-size: 1.3rem; }

  .proscons { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }

  .rg-banner {
    padding: 22px;
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 560px) {
  .container { padding-inline: 18px; }
  .hero { padding: 32px 0 24px; }
  .hero h1 { font-size: 1.85rem; }
  .hero__lead { font-size: 0.975rem; margin-bottom: 22px; }
  .hero__rail {
    gap: 16px 24px;
    padding-top: 14px;
  }
  .hero__rail-item strong { font-size: 1.15rem; }
  .hero__rail-item span { font-size: 0.78rem; }

  .section { padding: 40px 0; }
  .section__head h2 { font-size: 1.5rem; }

  .toplist__row {
    grid-template-columns: 28px 56px 1fr;
    gap: 10px;
    padding: 12px;
  }
  .toplist__rank { font-size: 1.05rem; }
  .toplist__logo { width: 56px; height: 24px; }
  .toplist__row .btn { display: none; }

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

  .section-card { padding: 22px; }
  .page-hero { padding: 36px 0 24px; }
}

/* ----- Print-friendly tweaks ----- */
@media print {
  .site-header, .mobile-drawer, .site-footer, .btn, .rg-banner { display: none; }
  body { color: #000; background: #fff; }
}