:root {
  --bg: #2E1065;
  --surface: #4C1D95;
  --text: #F5F3FF;
  --muted: #C4B5FD;
  --primary: #F472B6;
  --secondary: #5B21B6;
  --accent: #EC4899;
  --border: rgba(255,255,255,0.12);
  --bauhaus: bauhaus;
  --geometric: geometric;
  --primary-colors: primary colors;
  --abstract: abstract;
  --design-theory: design theory;
  --bauhaus-red: var(--accent);
  --bauhaus-yellow: var(--primary);
  --bauhaus-blue: var(--secondary);
  --bauhaus-black: var(--bg);
  --font-geo: "Avenir Next", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --nav-h: 50px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-geo);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

body.bauhaus.geometric.primary-colors.abstract.design-theory::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 8% 12%, rgba(244, 114, 182, 0.14) 0 48px, transparent 49px),
    radial-gradient(circle at 92% 78%, rgba(236, 72, 153, 0.1) 0 64px, transparent 65px),
    linear-gradient(90deg, rgba(91, 33, 182, 0.35) 0 18px, transparent 18px),
    linear-gradient(0deg, rgba(76, 29, 149, 0.25) 0 18px, transparent 18px);
  background-size: auto, auto, 72px 72px, 72px 72px;
  background-position: 0 0, 0 0, 0 0, 0 0;
}

body.bauhaus.geometric.primary-colors.abstract.design-theory::after {
  content: "";
  position: fixed;
  width: 120px;
  height: 120px;
  right: 4%;
  top: 28%;
  border: 4px solid var(--bauhaus-black);
  background: var(--bauhaus-yellow);
  opacity: 0.08;
  transform: rotate(18deg);
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

main {
  flex: 1 0 auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

.disclosure-banner {
  width: 100%;
  background: transparent;
  padding: 0 16px;
}

.disclosure-banner__inner {
  max-width: 1100px;
  margin: 8px auto;
  padding: 8px 20px;
  border-radius: 10px;
  background: rgba(244, 114, 182, 0.05);
  border: 1px solid rgba(244, 114, 182, 0.1);
  color: var(--text);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--bg);
  border-bottom: 3px solid var(--bauhaus-black);
}

.navbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.navbar-logo img {
  height: 32px;
  width: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.navbar-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  opacity: 0.6;
  color: var(--text);
  position: relative;
}

.navbar-links a:hover,
.navbar-links a:focus-visible {
  opacity: 1;
}

.navbar-links a svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.navbar-links a[data-tip]::after {
  content: attr(data-tip);
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  color: var(--text);
  font-size: 11px;
  padding: 4px 8px;
  border: 2px solid var(--bauhaus-black);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 5;
}

.navbar-links a[data-tip]:hover::after,
.navbar-links a[data-tip]:focus-visible::after {
  opacity: 1;
}

.nav-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.burger-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: 3px solid var(--bauhaus-black);
  background: var(--bauhaus-yellow);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.burger-btn span {
  display: block;
  width: 18px;
  height: 3px;
  background: var(--bauhaus-black);
}

.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(46, 16, 101, 0.72);
  z-index: 250;
}

.drawer-overlay.open {
  display: block;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--surface);
  border-left: 4px solid var(--bauhaus-black);
  z-index: 260;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  color: var(--text);
  font-size: 16px;
  text-transform: lowercase;
  padding: 10px 12px;
  border-bottom: 2px solid var(--border);
}

.mobile-nav-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  border: 3px solid var(--bauhaus-black);
  background: var(--bauhaus-red);
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
  margin-bottom: 8px;
}

.site-footer {
  background: var(--surface);
  border-top: 4px solid var(--bauhaus-black);
  padding: 48px 20px 32px;
  margin-top: 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.footer-brand img {
  height: 36px;
  width: auto;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
}

.footer-badges a,
.footer-badges span {
  display: inline-flex;
  align-items: center;
}

.footer-badges img {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  list-style: none;
  margin-bottom: 24px;
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
  text-transform: lowercase;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-requisites {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer-legal {
  color: rgba(196, 181, 253, 0.85);
  font-size: 11px;
  line-height: 1.55;
  max-width: 920px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 2px solid var(--border);
}

.age-gate {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(46, 16, 101, 0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-gate.active {
  display: flex;
}

.age-gate__modal {
  background: var(--surface);
  border: 4px solid var(--bauhaus-black);
  max-width: 420px;
  width: 100%;
  padding: 28px 24px;
  text-align: center;
  position: relative;
}

.age-gate__modal::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  top: -10px;
  left: -10px;
  background: var(--bauhaus-red);
  border: 3px solid var(--bauhaus-black);
}

.age-gate__modal::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 28px solid var(--bauhaus-yellow);
  bottom: -14px;
  right: 18px;
}

.age-gate__modal h2 {
  font-size: 22px;
  text-transform: lowercase;
  margin-bottom: 12px;
}

.age-gate__modal p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 20px;
}

.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 3px solid var(--bauhaus-black);
  background: var(--bauhaus-blue);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  text-transform: lowercase;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg);
}

.btn-accent {
  background: var(--accent);
  color: var(--text);
}

.cookie-banner {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 900;
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface);
  border: 4px solid var(--bauhaus-black);
  padding: 18px 20px;
}

.cookie-banner.active {
  display: block;
}

.cookie-banner p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 14px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  background: var(--bg);
  padding: 48px 20px 40px;
  border-bottom: 4px solid var(--bauhaus-black);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(26px, 4vw, 40px);
  text-transform: lowercase;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.page-hero p {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}

.content-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.content-wrap h1 {
  font-size: clamp(26px, 4vw, 36px);
  text-transform: lowercase;
  margin-bottom: 18px;
  border-left: 8px solid var(--bauhaus-red);
  padding-left: 14px;
}

.content-wrap h2 {
  font-size: 20px;
  text-transform: lowercase;
  margin: 28px 0 12px;
  color: var(--primary);
}

.content-wrap h3 {
  font-size: 17px;
  text-transform: lowercase;
  margin: 20px 0 10px;
}

.content-wrap p {
  margin-bottom: 14px;
  color: var(--text);
}

.content-wrap ul {
  margin: 0 0 16px 20px;
}

.content-wrap li {
  margin-bottom: 8px;
  color: var(--muted);
}

.contact-form {
  margin-top: 28px;
  padding: 24px;
  background: var(--surface);
  border: 3px solid var(--bauhaus-black);
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  text-transform: lowercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 3px solid var(--bauhaus-black);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.email-error {
  display: none;
  color: var(--accent);
  font-size: 13px;
}

.email-error.visible {
  display: block;
}

.form-success {
  display: none;
  margin-top: 24px;
  padding: 20px;
  border: 3px solid var(--bauhaus-black);
  background: rgba(244, 114, 182, 0.12);
  color: var(--text);
}

.form-success.visible {
  display: block;
}

.decor-img {
  max-width: min(500px, 100%);
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: cover;
  border: 3px solid var(--bauhaus-black);
}

.decor-wrap {
  overflow: hidden;
  max-width: 100%;
  width: 100%;
}

@media (max-width: 480px) {
  .decor-wrap {
    overflow: hidden;
    max-width: 100%;
  }

  .decor-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 200px;
  }
}

.shape-circle {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bauhaus-red);
  border: 2px solid var(--bauhaus-black);
  margin-right: 8px;
  vertical-align: middle;
}

.shape-square {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--bauhaus-yellow);
  border: 2px solid var(--bauhaus-black);
  margin-right: 8px;
  vertical-align: middle;
}

.shape-triangle {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 12px solid var(--bauhaus-blue);
  margin-right: 8px;
  vertical-align: middle;
}

@media (max-width: 900px) {
  .navbar-links {
    display: none;
  }

  .burger-btn {
    display: flex;
  }
}

@media (min-width: 901px) {
  .mobile-nav,
  .drawer-overlay,
  .burger-btn {
    display: none !important;
  }
}
