:root {
  --ink: #10251f;
  --muted: #64766f;
  --paper: #f7f3df;
  --panel: #fffdf4;
  --line: #ded6bb;
  --green: #168b6a;
  --mint: #2bbd8f;
  --gold: #f3c34d;
  --coral: #e85f4f;
  --blue: #1d4e89;
  --shadow: 0 18px 46px rgba(16, 37, 31, .14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
body.locked { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 900px; margin-bottom: 18px; font-size: clamp(40px, 6vw, 78px); line-height: .96; letter-spacing: 0; }
h2 { font-size: clamp(28px, 4vw, 46px); line-height: 1.08; letter-spacing: 0; }
h3 { line-height: 1.16; }
.age-gate, .brand-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(10, 18, 15, .82);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}
.brand-modal { z-index: 110; }
.age-gate.show, .brand-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.age-box, .brand-modal-box {
  width: min(520px, 100%);
  padding: 30px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  transform: translateY(18px) scale(.97);
  transition: transform .24s ease;
}
.age-gate.show .age-box, .brand-modal.show .brand-modal-box { transform: translateY(0) scale(1); }
.age-box { text-align: center; }
.brand-modal-box { position: relative; width: min(880px, 100%); }
.brand-modal-box {
  max-height: calc(100dvh - 36px);
  overflow: auto;
}
.age-badge {
  display: inline-grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 25px;
  font-weight: 900;
}
.age-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}
.modal-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.modal-brand-grid article {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.modal-brand-grid img { height: 74px; width: 100%; object-fit: contain; object-position: left center; }
.top-strip {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 8px 16px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 243, 223, .95);
  backdrop-filter: blur(12px);
}
.logo, .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
}
.logo img { width: 42px; height: 42px; }
nav { display: flex; gap: 6px; }
nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 7px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
}
nav a:hover, nav a.active { background: #e1f2ea; color: var(--green); }
.menu-button {
  display: none;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 9px 12px;
  background: var(--panel);
  color: var(--ink);
  font-weight: 900;
}
.button, .age-box button, .contact-form button, .cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0 18px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}
.button.secondary, .age-box button.secondary { background: var(--panel); color: var(--green); border-color: var(--line); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 14px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,253,244,.82);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(330px, 1.05fr);
  gap: 42px;
  align-items: center;
  padding: 64px clamp(18px, 5vw, 72px);
}
.hero p, .section-head p, .card p, .brand-card p, .brand-card small, .legal-copy p, .page-hero p, .table-row span, .brand-modal-box p { color: var(--muted); }
.hero-actions, .action-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.trust-row span, .pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.hero-visual { position: relative; }
.hero-visual img { border-radius: 8px; box-shadow: var(--shadow); }
.floating-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(280px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 8px;
  background: rgba(255,253,244,.94);
  box-shadow: var(--shadow);
}
.floating-note p { margin: 6px 0 0; color: var(--muted); }
.section, .page-hero { padding: 72px clamp(18px, 5vw, 72px); }
.content-band { background: #fff9e7; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 840px; margin-bottom: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.card, .brand-card, .contact-form, .legal-copy, .not-found-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 28px rgba(16, 37, 31, .08);
}
.card { padding: 24px; }
.card strong {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
}
.brand-grid { display: grid; gap: 18px; }
.brand-card {
  display: grid;
  grid-template-columns: 58px 170px minmax(0, 1fr) 230px;
  gap: 20px;
  align-items: start;
  padding: 22px;
}
.rank {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}
.brand-card img { width: 170px; border-radius: 8px; }
.rating { font-weight: 900; }
.stars { color: var(--gold); letter-spacing: 0; }
.offer, .licence {
  display: grid;
  gap: 6px;
  margin: 14px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.offer span, .licence span { color: var(--muted); font-size: 14px; }
.brand-card ul { margin: 10px 0 0; padding-left: 18px; color: var(--muted); }
.brand-side { display: grid; gap: 12px; }
.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.table-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr .9fr;
  gap: 14px;
  padding: 16px;
  border-top: 1px solid var(--line);
}
.table-row:first-child { border-top: 0; }
.table-row.head { background: var(--ink); color: #fff; }
.table-row a { color: var(--green); font-weight: 900; }
.responsible-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 42px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
}
.responsible-strip p { color: #dbe7e1; }
.faq details {
  margin-bottom: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.faq summary { cursor: pointer; font-weight: 900; }
.page-hero { background: #fff9e7; border-bottom: 1px solid var(--line); }
.two-col { display: grid; grid-template-columns: minmax(0, .95fr) minmax(280px, .55fr); gap: 22px; align-items: start; }
.legal-copy { padding: 26px; }
.legal-copy h2 { font-size: 30px; margin-top: 26px; }
.contact-form { display: grid; gap: 14px; padding: 24px; }
.contact-form label { display: grid; gap: 6px; font-weight: 900; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.site-footer {
  padding: 48px clamp(18px, 5vw, 72px);
  background: #0d1d18;
  color: #eaf2ec;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 28px; }
.site-footer a { color: #fff; }
.site-footer p, .site-footer li { color: #c8d7cf; }
.footer-links { display: grid; gap: 8px; }
.small-print { margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.18); font-size: 13px; }
.not-found-box { max-width: 720px; margin: 80px auto; padding: 34px; text-align: center; }
@media (max-width: 980px) {
  .hero, .two-col, .responsible-strip { grid-template-columns: 1fr; }
  .brand-card { grid-template-columns: 50px minmax(0, 1fr); }
  .brand-card img, .brand-side { grid-column: 2; }
  .table-row { grid-template-columns: 1fr 1fr; }
  .footer-grid, .grid-3, .modal-brand-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .top-strip { justify-content: flex-start; }
  .site-header { align-items: flex-start; }
  .menu-button { display: inline-flex; }
  nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 72px;
    display: none;
    flex-direction: column;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
  }
  nav.open { display: flex; }
  h1 { font-size: 42px; }
  .hero { min-height: auto; padding-top: 42px; }
  .floating-note { position: static; width: 100%; margin-top: 12px; }
  .table-row { grid-template-columns: 1fr; }
  .brand-card { grid-template-columns: 1fr; }
  .brand-card img, .brand-side { grid-column: auto; }
  .age-box, .brand-modal-box { padding: 24px; }
  .brand-modal { align-items: flex-start; }
  .brand-modal .modal-close {
    position: sticky;
    top: 0;
    z-index: 3;
    float: right;
    margin: -8px -8px 8px 10px;
  }
}
