/* =============================================================
   PIN UP CASINO AZ — landing page styles
   Palette: deep green/charcoal (#0e1a13 / #112218) + red (#e63946)
   Typography: Rubik (self-hosted WOFF2, latin + latin-ext)
   ============================================================= */

/* ---------- 1. Fonts (self-hosted, font-display: swap) ---------- */
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/rubik-latin-ext.woff2") format("woff2-variations"),
       url("/assets/fonts/rubik-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/rubik-latin.woff2") format("woff2-variations"),
       url("/assets/fonts/rubik-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- 2. CSS reset + tokens ---------- */
:root {
  --bg-deep: #0a140e;
  --bg: #0e1a13;
  --bg-soft: #112218;
  --bg-card: #16261d;
  --bg-card-hover: #1d3127;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --accent: #e63946;
  --accent-hover: #ff4955;
  --accent-soft: rgba(230, 57, 70, 0.15);
  --green-ok: #2ecc71;
  --gold-soft: #ffc857;

  --text: #f5f7f6;
  --text-mute: #b9c3bd;
  --text-faint: #7d8a82;
  --link: #ff7a87;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;
  --container-max: 1224px;
  --section-gap: 56px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Rubik", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; }

a { color: var(--link); text-decoration: none; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }

/* ---------- 3. Layout primitives ---------- */
.container {
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.bg-deep { background: var(--bg-deep); }
.section-gap { padding: 32px 0; }
.space-between { display: flex; align-items: center; justify-content: space-between; }
.d-flex-center { display: flex; align-items: center; gap: 8px; }

/* ---------- 4. Typography ---------- */
h1, h2, h3, h4 { color: var(--text); margin: 0 0 14px; font-weight: 700; line-height: 1.25; }
h1 {
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -0.01em;
}
h1::after {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-top: 14px;
  border-radius: 2px;
}
h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin-top: 36px;
  position: relative;
  padding-left: 18px;
}
h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: linear-gradient(180deg, var(--accent) 0%, #8b1a23 100%);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(230, 57, 70, 0.35);
}
h3 {
  font-size: clamp(18px, 2.2vw, 22px);
  color: #ffd5d8;
  margin-top: 24px;
}
p { margin: 0 0 14px; }
strong { color: #fff; font-weight: 600; }

/* Article-style lists (gold/red bullets + numbered counters) */
.article ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 16px;
}
.article ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
}
.article ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--accent);
  font-size: 12px;
  text-shadow: 0 0 6px rgba(230, 57, 70, 0.5);
}
.article ol {
  list-style: none;
  counter-reset: pn-counter;
  padding-left: 0;
  margin: 0 0 16px;
}
.article ol li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 10px;
  counter-increment: pn-counter;
  min-height: 26px;
}
.article ol li::before {
  content: counter(pn-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  background: linear-gradient(135deg, var(--accent) 0%, #b32230 100%);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(230, 57, 70, 0.4);
}

/* Tables */
.article table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  background: rgba(13, 27, 19, 0.4);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.article th {
  background: linear-gradient(180deg, rgba(230, 57, 70, 0.2) 0%, rgba(230, 57, 70, 0.06) 100%);
  color: #ffd5d8;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 14px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(230, 57, 70, 0.3);
}
.article td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 14px;
}
.article tr:last-child td { border-bottom: none; }
.article tr:hover td { background: rgba(230, 57, 70, 0.04); }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, #b32230 100%);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.35);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--accent-hover) 0%, #c93341 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(230, 57, 70, 0.5);
  color: #fff;
}
.btn--secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--secondary:hover {
  background: var(--bg-card);
  border-color: var(--accent);
  color: var(--accent-hover);
}
.btn--big { height: 54px; padding: 0 32px; font-size: 15px; }
.btn--block { width: 100%; }
.btn-center {
  display: flex;
  justify-content: center;
  margin: 18px 0;
}

/* ---------- 6. Header ---------- */
.site-header {
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}
.site-header__logo img {
  height: 38px;
  width: auto;
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.site-header__nav a {
  color: var(--text-mute);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
}
.site-header__nav a:hover,
.site-header__nav a.is-active {
  color: var(--accent);
  background: var(--accent-soft);
}
.site-header__cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.site-header__burger {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.site-header__burger svg { stroke: var(--accent); }

/* Mobile menu (drawer) */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  z-index: 100;
  padding: 24px 20px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.mobile-menu__close {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}
.mobile-menu__nav a {
  display: block;
  padding: 14px 16px;
  color: var(--text);
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu__nav a:hover { color: var(--accent); }
.mobile-menu__cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ---------- 7. Hero ---------- */
.hero {
  padding: 36px 0 28px;
  background:
    radial-gradient(ellipse at top right, rgba(230, 57, 70, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(46, 204, 113, 0.08) 0%, transparent 60%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.hero__row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 36px;
}
.hero__body p.lead {
  font-size: 17px;
  color: var(--text-mute);
  margin: 0 0 22px;
  max-width: 56ch;
}
.hero__bonus {
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.16) 0%, rgba(230, 57, 70, 0.06) 100%);
  border: 1px solid rgba(230, 57, 70, 0.3);
  padding: 20px 22px;
  border-radius: var(--radius);
  margin: 20px 0 24px;
}
.hero__bonus-title {
  color: var(--gold-soft);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 6px;
}
.hero__bonus-amount {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #fff;
}
.hero__bonus-note { font-size: 13px; color: var(--text-mute); margin: 0; }
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-strong);
}
.hero__image img { width: 100%; height: auto; display: block; }

/* Quick category links under hero */
.quick-nav {
  background: var(--bg-soft);
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.quick-nav__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.quick-nav__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.quick-nav__item a:hover {
  border-color: var(--accent);
  color: var(--accent-hover);
  transform: translateY(-2px);
}
.quick-nav__icon {
  font-size: 22px;
  line-height: 1;
}

/* ---------- 8. Article block (long-form content) ---------- */
.article {
  padding: 28px 0 32px;
}
.article__inner {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.article__inner::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
}

/* TOC (collapsible, hidden by default) */
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 22px 0;
  overflow: hidden;
}
.toc[open] { background: var(--bg-card-hover); }
.toc__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--text);
  user-select: none;
}
.toc__summary::-webkit-details-marker { display: none; }
.toc__summary::after {
  content: '';
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.toc[open] .toc__summary::after { transform: rotate(-135deg); }
.toc__list {
  list-style: none;
  margin: 0;
  padding: 0 20px 18px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 6px;
}
.toc__list a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--text-mute);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.toc__list a:hover {
  color: var(--accent-hover);
  background: rgba(230, 57, 70, 0.06);
  border-color: rgba(230, 57, 70, 0.25);
}

/* Two-col text+image block */
.text-image {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin: 24px 0 16px;
}
.text-image--reverse { grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); }
.text-image--reverse .text-image__img { order: -1; }
.text-image__img img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  width: 100%;
  height: auto;
}

/* ---------- 9. Games grid ---------- */
.games {
  padding: 30px 0;
}
.games__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 12px;
}
.games__title { margin: 0; font-size: 22px; }
.games__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.games__item {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s ease;
  aspect-ratio: 164 / 94;
}
.games__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.games__item:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}
.games__item:hover img { transform: scale(1.05); filter: brightness(0.55); }
.games__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.games__item:hover .games__overlay { opacity: 1; }
.games__play {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.5);
}
.games__name {
  position: absolute;
  bottom: 6px;
  left: 8px;
  right: 8px;
  font-size: 11px;
  text-align: center;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  padding: 3px 4px;
  background: rgba(10, 20, 14, 0.7);
  border-radius: 4px;
  pointer-events: none;
}

/* ---------- 10. Stat block (about table) ---------- */
.about-table {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 18px 0;
}
.about-table__label {
  background: rgba(230, 57, 70, 0.08);
  padding: 14px 18px;
  font-weight: 600;
  color: #ffd5d8;
  font-size: 14px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-table__value {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
}
.about-table > div:nth-last-child(-n+2) { border-bottom: 0; }
.about-table__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.about-table__tags li {
  background: rgba(255, 255, 255, 0.05);
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 13px;
  color: var(--text);
  border: 1px solid var(--border);
}
.about-table__pays {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}
.about-table__pays li {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  height: 36px;
  display: flex;
  align-items: center;
}
.about-table__pays img { height: 18px; width: auto; }

/* ---------- 11. How-to / steps ---------- */
.how-to {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  counter-reset: ht-counter;
}
.how-to__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 18px;
  counter-increment: ht-counter;
  position: relative;
}
.how-to__item::before {
  content: counter(ht-counter);
  position: absolute;
  top: 18px;
  left: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #b32230 100%);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(230, 57, 70, 0.4);
  z-index: 1;
}
.how-to__content { padding-left: 56px; }
.how-to__content h3 { margin-top: 0; }
.how-to__img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}
.how-to__item:nth-child(even) .how-to__img { order: -1; }

/* ---------- 12. Advantages grid ---------- */
.advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 22px 0;
}
.advantages__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: all 0.2s ease;
}
.advantages__item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.advantages__icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(230,57,70,0.25), rgba(230,57,70,0.1));
  border: 1px solid rgba(230,57,70,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 0 12px;
  color: var(--accent);
}
.advantages__item h3 {
  font-size: 15px;
  margin: 0 0 6px;
  color: #fff;
}
.advantages__item p {
  margin: 0;
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.5;
}

/* ---------- 13. Author card ---------- */
.author {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  margin: 22px 0;
}
.author__avatar img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.author__name {
  font-weight: 600;
  color: #fff;
  margin: 0 0 2px;
}
.author__role {
  font-size: 13px;
  color: var(--text-mute);
  margin: 0;
}

/* ---------- 14. FAQ ---------- */
.faq {
  margin: 28px 0;
}
.faq__title {
  text-align: center;
  margin-bottom: 22px;
}
.faq__title::before { display: none; }
.faq__title::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 2px;
}
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq__item[open] { border-color: rgba(230, 57, 70, 0.35); }
.faq__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  color: var(--text);
  user-select: none;
  gap: 16px;
}
.faq__summary::-webkit-details-marker { display: none; }
.faq__summary h3 {
  margin: 0;
  font-size: 15px;
  color: inherit;
  font-weight: 500;
}
.faq__summary::after {
  content: '+';
  font-size: 22px;
  color: var(--accent);
  font-weight: 300;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq__item[open] .faq__summary::after { transform: rotate(45deg); }
.faq__body {
  padding: 0 22px 18px;
  color: var(--text-mute);
  font-size: 14px;
  line-height: 1.6;
}
.faq__body p:last-child { margin-bottom: 0; }

/* ---------- 15. Reviews ---------- */
.reviews {
  padding: 12px 0 28px;
}
.reviews__title { text-align: center; }
.reviews__title::before { display: none; }
.reviews__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 22px;
}
.review {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(230,57,70,0.3);
  flex-shrink: 0;
}
.review__avatar img { width: 100%; height: 100%; object-fit: cover; }
.review__name {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  margin: 0;
}
.review__date {
  font-size: 12px;
  color: var(--text-faint);
  margin: 2px 0 0;
}
.review__stars {
  display: flex;
  gap: 2px;
  margin-left: auto;
}
.review__stars svg { width: 16px; height: 16px; fill: var(--gold-soft); }
.review__text {
  margin: 0;
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.55;
}

/* ---------- 16. CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, #b32230 0%, var(--accent) 100%);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.25);
}
.cta-banner__title {
  margin: 0 0 6px;
  color: #fff;
  font-size: 22px;
}
.cta-banner__title::before { display: none; }
.cta-banner__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}
.cta-banner .btn--primary {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}
.cta-banner .btn--primary:hover {
  background: #0e1a13;
  color: #fff;
  border-color: #0e1a13;
}

/* ---------- 17. Footer ---------- */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 36px 0 22px;
  margin-top: 36px;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 26px;
}
.site-footer__brand img {
  height: 42px;
  width: auto;
  margin-bottom: 14px;
}
.site-footer__brand p {
  font-size: 13px;
  color: var(--text-mute);
  max-width: 36ch;
}
.site-footer__nav h4 {
  font-size: 14px;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-mute);
}
.site-footer__nav ul { list-style: none; margin: 0; padding: 0; }
.site-footer__nav li { margin-bottom: 8px; }
.site-footer__nav a {
  color: var(--text);
  font-size: 14px;
  transition: color 0.2s ease;
}
.site-footer__nav a:hover { color: var(--accent-hover); }
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: var(--text-faint);
}
.site-footer__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
}
.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- 18. Accessibility / utility ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
