:root {
  --bg: #1C1C1C;
  --surface: #262626;
  --text: #FFFFFF;
  --muted: #A0A0A0;
  --primary: #C5B358;
  --secondary: #D4AF37;
  --accent: #E6E6E6;
  --border: rgba(197,179,88,0.2);
  --offer-bg: #1a1a1a;
  --offer-border: #2a2a2a;
  --offer-bonus: #ffd700;
  --offer-cta-bg: #22c55e;
  --offer-cta-text: #ffffff;
  --max: 1200px;
  --font-display: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --font-body: "Trebuchet MS", "Segoe UI", Geneva, Verdana, sans-serif;
  --font-hand: "Segoe Print", "Bradley Hand", "Comic Sans MS", cursive;
  --font-zine: Impact, Haettenschweiler, "Arial Black", sans-serif;
  --kw-zine: zine;
  --kw-underground: underground;
  --kw-punk: punk;
  --kw-diy: diy;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(160deg, var(--bg) 0%, rgba(197, 179, 88, 0.07) 42%, var(--bg) 78%),
    radial-gradient(ellipse 80% 55% at 10% -10%, rgba(212, 175, 55, 0.14), transparent 55%);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: var(--kw-zine) " " var(--kw-underground);
  position: fixed;
  inset: 0;
  font-size: 0;
  line-height: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      -8deg,
      transparent,
      transparent 11px,
      rgba(230, 230, 230, 0.018) 11px,
      rgba(230, 230, 230, 0.018) 12px
    ),
    radial-gradient(circle at 85% 20%, rgba(197, 179, 88, 0.08), transparent 40%);
  opacity: 0.95;
}

body::after {
  content: var(--kw-punk) " " var(--kw-diy);
  position: fixed;
  inset: 0;
  font-size: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.28;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}

body > * {
  position: relative;
  z-index: 1;
}

main {
  flex: 1 0 auto;
}

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

a {
  color: var(--primary);
}

.disclosure-banner {
  width: 100%;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  padding: 8px 16px;
  border: none;
  line-height: 1.4;
}

.site-nav {
  position: sticky;
  top: 16px;
  z-index: 100;
  margin: 0 16px;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 32px);
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.brand-lockup img {
  width: 36px;
  height: 36px;
  display: block;
}

.brand-name {
  font-family: var(--font-zine);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  justify-content: flex-end;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 8px;
}

.nav-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(28, 28, 28, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 48px 24px;
}

.nav-overlay.is-open {
  display: flex;
}

.nav-overlay a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-zine);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.nav-overlay a:hover {
  opacity: 1;
  color: var(--primary);
}

.nav-overlay-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 20px 48px;
  overflow: hidden;
  background-color: var(--surface);
  background-image:
    linear-gradient(180deg, rgba(28, 28, 28, 0.72) 0%, rgba(28, 28, 28, 0.88) 100%),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(0, 0, 0, 0.08) 40px,
      rgba(0, 0, 0, 0.08) 41px
    );
  pointer-events: none;
  mix-blend-mode: multiply;
}

.hero-ribbon {
  position: relative;
  z-index: 2;
  width: min(920px, 94vw);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  transform: rotate(-2deg);
  box-shadow: 6px 8px 0 rgba(0, 0, 0, 0.45);
  margin-bottom: 22px;
}

.hero-ribbon h1 {
  font-family: var(--font-zine);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: #fff;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 16px;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.35);
}

.hero-sub {
  position: relative;
  z-index: 2;
  max-width: 640px;
  text-align: center;
  color: #fff;
  font-size: 1.05rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  font-family: var(--font-hand);
}

.hero-hand {
  position: absolute;
  bottom: 18px;
  right: 8%;
  z-index: 2;
  font-family: var(--font-hand);
  color: var(--primary);
  font-size: 0.95rem;
  transform: rotate(6deg);
  opacity: 0.9;
}

.offers-section {
  position: relative;
  padding: 56px 20px 64px;
  background-color: var(--surface);
  background-image:
    linear-gradient(180deg, rgba(28, 28, 28, 0.82), rgba(38, 38, 38, 0.9)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.offers-section::before {
  content: "COLLAGE · DIY";
  position: absolute;
  top: 18px;
  left: 12px;
  font-family: var(--font-hand);
  font-size: 0.75rem;
  color: var(--primary);
  transform: rotate(-8deg);
  opacity: 0.7;
}

.offers-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.offers-head {
  text-align: center;
  margin-bottom: 32px;
}

.offers-head h2 {
  font-family: var(--font-zine);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  transform: rotate(-1deg);
}

.offers-head p {
  color: var(--muted);
  margin-top: 8px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.offer-card {
  background: var(--offer-bg);
  border: 1px solid var(--offer-border);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.offer-card:nth-child(odd) {
  transform: rotate(-0.6deg);
}

.offer-card:nth-child(even) {
  transform: rotate(0.5deg);
}

.offer-logo {
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 12px;
  background: #0d0d0d;
  padding: 10px;
}

.offer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: none;
}

.offer-name {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.offer-bonus-group {
  text-align: center;
}

.offer-bonus {
  margin: 0;
  color: var(--offer-bonus);
  font-weight: 700;
  font-size: clamp(0.82rem, 2.4vw, 1rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.offer-terms {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  color: #9ca3af;
}

.offer-cta {
  display: block;
  margin-top: auto;
  padding: 12px 16px;
  background: var(--offer-cta-bg);
  color: var(--offer-cta-text);
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  cursor: pointer;
}

.offer-cta:hover {
  filter: brightness(1.08);
  color: var(--offer-cta-text);
}

.info-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 24px;
  position: relative;
}

.info-section h2 {
  font-family: var(--font-zine);
  font-size: clamp(1.35rem, 3vw, 2rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--primary);
}

.info-section p {
  color: var(--accent);
  margin-bottom: 14px;
}

.info-section ul,
.info-section ol {
  margin: 12px 0 18px 1.2rem;
  color: var(--muted);
}

.info-section li {
  margin-bottom: 8px;
}

.info-cta {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  background: var(--primary);
  color: #1c1c1c;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transform: rotate(-1deg);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.4);
}

.info-cta:hover {
  filter: brightness(1.05);
  color: #1c1c1c;
}

.layout-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.layout-checklist {
  list-style: none;
  margin-left: 0;
  padding: 16px;
  background: var(--surface);
  border: 1px dashed var(--border);
  transform: rotate(1deg);
}

.layout-checklist li {
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px solid rgba(197, 179, 88, 0.12);
}

.layout-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

.layout-quote {
  border-left: 4px solid var(--primary);
  padding: 12px 18px;
  margin: 20px 0;
  font-family: var(--font-hand);
  font-size: 1.15rem;
  color: var(--secondary);
  background: rgba(197, 179, 88, 0.06);
  transform: rotate(-0.8deg);
}

.layout-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.layout-card {
  background: var(--surface);
  border: 2px solid var(--border);
  padding: 16px;
  transform: rotate(-1deg);
}

.layout-card:nth-child(2) {
  transform: rotate(1.2deg);
}

.layout-card:nth-child(3) {
  transform: rotate(-0.4deg);
}

.layout-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.layout-card p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--muted);
}

.layout-steps {
  counter-reset: step;
  list-style: none;
  margin-left: 0;
}

.layout-steps li {
  counter-increment: step;
  position: relative;
  padding: 14px 14px 14px 56px;
  margin-bottom: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.layout-steps li::before {
  content: counter(step);
  position: absolute;
  left: 12px;
  top: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #1c1c1c;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-zine);
}

.layout-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.stat-cell {
  text-align: center;
  padding: 18px 10px;
  background: var(--surface);
  border-top: 3px solid var(--secondary);
  transform: skewX(-2deg);
}

.stat-cell strong {
  display: block;
  font-family: var(--font-zine);
  font-size: 1.4rem;
  color: var(--primary);
}

.stat-cell span {
  font-size: 0.8rem;
  color: var(--muted);
}

.layout-alt {
  display: grid;
  gap: 12px;
}

.alt-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  padding: 12px;
  background: rgba(38, 38, 38, 0.8);
  border-left: 3px solid var(--primary);
}

.alt-row:nth-child(even) {
  border-left-color: var(--secondary);
  margin-left: 24px;
}

.alt-label {
  font-family: var(--font-zine);
  font-size: 0.85rem;
  color: var(--primary);
  text-transform: uppercase;
}

.layout-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.compare-box {
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.compare-box h3 {
  font-family: var(--font-hand);
  color: var(--secondary);
  margin-bottom: 8px;
}

.layout-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 16px;
}

.mosaic-visual {
  min-height: 180px;
  background-size: cover;
  background-position: center;
  border: 3px solid var(--accent);
  transform: rotate(-2deg);
  box-shadow: 8px 10px 0 rgba(0, 0, 0, 0.35);
  max-width: 100%;
  overflow: hidden;
}

.layout-bullets {
  columns: 2;
  column-gap: 28px;
  margin-top: 12px;
}

.layout-bullets li {
  break-inside: avoid;
}

.layout-timeline {
  position: relative;
  margin: 24px 0 8px;
  padding-left: 28px;
  border-left: 2px solid var(--primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 22px;
  padding-left: 12px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--secondary);
  border: 2px solid var(--bg);
  border-radius: 50%;
}

.timeline-item h3 {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.decor-img {
  display: block;
  max-width: min(500px, 100%);
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: cover;
  margin: 16px 0;
  border: 2px solid var(--border);
  transform: rotate(-1.5deg);
  box-shadow: 5px 6px 0 rgba(0, 0, 0, 0.35);
}

.decor-wrap {
  max-width: 100%;
  overflow: hidden;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
  margin-top: 40px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  margin-bottom: 20px;
}

.footer-brand img {
  width: 32px;
  height: 32px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 24px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}

.footer-badges a,
.footer-badges span {
  display: inline-flex;
  align-items: center;
}

.footer-badges img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.footer-compliance,
.footer-regulator,
.footer-helpline,
.footer-updated,
.footer-requisites,
.footer-copy {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 10px;
  max-width: 900px;
}

.footer-compliance a,
.footer-regulator a,
.footer-helpline a {
  color: var(--primary);
}

.page-hero {
  padding: 48px 24px 28px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -30px;
  width: 160px;
  height: 160px;
  border: 8px solid rgba(197, 179, 88, 0.15);
  transform: rotate(18deg);
}

.page-hero h1,
.page-kicker {
  font-family: var(--font-zine);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--primary);
  text-transform: uppercase;
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero p {
  max-width: var(--max);
  margin: 10px auto 0;
  color: var(--muted);
}

.legal-content,
.subpage-content,
.contact-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}

.legal-content h2,
.subpage-content h2 {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.25rem;
  margin: 28px 0 10px;
}

.legal-content h3,
.subpage-content h3 {
  font-family: var(--font-body);
  color: var(--secondary);
  font-size: 1.05rem;
  margin: 20px 0 8px;
}

.legal-content p,
.subpage-content p,
.contact-content p {
  margin-bottom: 12px;
  color: var(--accent);
}

.legal-content ul,
.subpage-content ul,
.legal-content ol,
.subpage-content ol {
  margin: 10px 0 16px 1.2rem;
  color: var(--muted);
}

.legal-content li,
.subpage-content li {
  margin-bottom: 6px;
}

.contact-form {
  margin-top: 28px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: grid;
  gap: 14px;
  max-width: 520px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 6px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  padding: 12px 20px;
  background: var(--primary);
  color: #1c1c1c;
  border: none;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-zine);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-error {
  display: none;
  color: #f87171;
  font-size: 0.85rem;
}

.form-error.visible {
  display: block;
}

.form-success {
  display: none;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--accent);
  margin-top: 20px;
}

.form-success.visible {
  display: block;
}

.age-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.88);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-overlay.active {
  display: flex;
}

.age-dialog {
  background: var(--surface);
  border: 2px solid var(--primary);
  padding: 32px 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 8px 10px 0 rgba(0, 0, 0, 0.5);
  transform: rotate(-1deg);
}

.age-dialog h2 {
  font-family: var(--font-zine);
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.age-dialog p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.age-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-confirm,
.btn-decline {
  padding: 10px 18px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-body);
}

.btn-confirm {
  background: var(--primary);
  color: #1c1c1c;
}

.btn-decline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.age-blocked {
  display: none;
  color: #fff;
  text-align: center;
  max-width: 360px;
}

.age-blocked.visible {
  display: block;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.cookie-banner.active {
  display: block;
}

.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.cookie-inner p {
  flex: 1 1 260px;
  font-size: 0.88rem;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 10px 16px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

#cookie-accept {
  background: var(--primary);
  color: #1c1c1c;
}

#cookie-reject {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.go-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.go-ad {
  font-family: var(--font-zine);
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

.go-page h1 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.go-page p {
  color: var(--muted);
  max-width: 420px;
}

.go-spinner {
  width: 42px;
  height: 42px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  margin: 28px auto;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.go-compliance {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--muted);
}

.go-compliance a {
  color: var(--primary);
}

.error-page {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
}

.error-page h1 {
  font-family: var(--font-zine);
  font-size: 4rem;
  color: var(--primary);
  transform: rotate(-3deg);
}

.error-page p {
  color: var(--muted);
  margin: 16px 0 24px;
}

.error-page a {
  display: inline-block;
  padding: 12px 22px;
  background: var(--primary);
  color: #1c1c1c;
  text-decoration: none;
  font-weight: 700;
}

.sub-rail {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 24px 64px;
  align-items: start;
}

.sub-rail-aside {
  position: sticky;
  top: 96px;
  padding: 18px;
  background: var(--surface);
  border: 1px dashed var(--border);
  transform: rotate(1deg);
}

.sub-rail-aside p {
  font-family: var(--font-hand);
  color: var(--secondary);
  font-size: 0.95rem;
}

.sub-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 24px;
}

.sub-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 24px;
}

.sub-band-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pull-quote-block {
  max-width: 720px;
  margin: 32px auto;
  padding: 28px;
  font-family: var(--font-hand);
  font-size: 1.35rem;
  color: var(--primary);
  text-align: center;
  border: 2px solid var(--border);
  transform: rotate(-1deg);
  background: rgba(197, 179, 88, 0.05);
}

.img-rail {
  display: flex;
  gap: 12px;
  overflow: hidden;
  max-width: var(--max);
  margin: 24px auto;
  padding: 0 24px;
}

.img-rail .decor-img {
  flex: 0 1 auto;
  margin: 0;
}

@keyframes ribbon-in {
  from {
    opacity: 0;
    transform: rotate(-2deg) translateY(20px);
  }
  to {
    opacity: 1;
    transform: rotate(-2deg) translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stamp-in {
  from {
    opacity: 0;
    transform: scale(0.85) rotate(-8deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(-1.5deg);
  }
}

.hero-ribbon {
  animation: ribbon-in 0.7s ease-out both;
}

.hero-sub {
  animation: fade-up 0.8s ease-out 0.2s both;
}

.offer-card {
  animation: fade-up 0.6s ease-out both;
}

.offer-card:nth-child(2) {
  animation-delay: 0.08s;
}

.offer-card:nth-child(3) {
  animation-delay: 0.16s;
}

.offer-card:nth-child(4) {
  animation-delay: 0.24s;
}

.decor-img {
  animation: stamp-in 0.7s ease-out both;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .site-nav {
    margin: 0;
    width: 100%;
    max-width: none;
    border-radius: 0;
    top: 0;
  }

  .hero {
    min-height: 220px;
    padding: 48px 16px 36px;
  }

  .hero-ribbon {
    transform: none;
    height: auto;
    min-height: 56px;
    padding: 10px 8px;
  }

  .hero-ribbon h1 {
    font-size: 1.25rem;
  }

  .hero-hand {
    display: none;
  }

  .layout-split,
  .layout-cards,
  .layout-stats,
  .layout-compare,
  .layout-mosaic,
  .sub-rail,
  .sub-split,
  .sub-band-inner {
    grid-template-columns: 1fr;
  }

  .layout-bullets {
    columns: 1;
  }

  .alt-row {
    grid-template-columns: 1fr;
  }

  .alt-row:nth-child(even) {
    margin-left: 0;
  }

  .offers-section {
    background-attachment: scroll;
  }

  .offer-logo {
    width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    max-width: none;
  }

  .decor-wrap {
    max-width: 100%;
    overflow: hidden;
  }

  .decor-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: cover;
  }

  .mosaic-visual {
    max-width: 100%;
    width: 100%;
    min-height: 140px;
  }

  .offer-card {
    transform: none;
  }
}

@media (max-width: 480px) {
  .offer-logo {
    width: 140px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    max-width: none;
  }

  .decor-img {
    max-width: 100%;
    max-height: 180px;
  }

  .offers-grid {
    gap: 14px;
  }

  .info-section {
    padding: 40px 16px;
    overflow-x: hidden;
  }
}
