:root {
  --bg: #0b0709;
  --bg-soft: #130b0f;
  --panel: #181014;
  --panel-2: #211319;
  --text: #f7f3ee;
  --muted: #c0b3b6;
  --gold: #e6b85c;
  --gold-2: #ffdb8a;
  --red: #d92238;
  --red-deep: #8d1020;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --radius-sm: 14px;
  --header-h: 82px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
}
body.modal-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
  max-width: 100%;
}
button,
input,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.narrow {
  width: min(820px, 100%);
}
h1,
h2,
h3 {
  margin: 0 0 16px;
  font-family: "Cinzel", serif;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}
h2 {
  font-size: clamp(2.1rem, 3.7vw, 4rem);
}
h3 {
  font-size: 1.25rem;
}
p {
  margin: 0 0 16px;
  color: var(--muted);
}
.eyebrow {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.muted,
.fine-print {
  color: var(--muted);
}
.center {
  text-align: center;
}
.section {
  padding: 108px 0;
  background: #100a0d;
}
.section-dark {
  background: linear-gradient(145deg, #090608, #170a10);
}
.section-heading {
  max-width: 780px;
  margin-bottom: 46px;
}
.section-heading.center {
  margin-left: auto;
  margin-right: auto;
}
.section-heading p:last-child {
  font-size: 1.05rem;
}
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  color: #160708;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 12px 34px rgba(230, 184, 92, 0.23);
}
.btn-primary:hover {
  box-shadow: 0 16px 42px rgba(230, 184, 92, 0.34);
}
.btn-outline {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--gold);
}
.btn-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
}
.btn-sm {
  min-height: 42px;
  padding: 0 17px;
  font-size: 0.88rem;
}
.btn-block {
  width: 100%;
}
.site-header {
  position: fixed;
  top: 0;
  z-index: 60;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition:
    background 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}
.site-header.scrolled {
  background: rgba(8, 5, 7, 0.94);
  border-color: var(--line);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
.brand-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(230, 184, 92, 0.45);
  border-radius: 12px;
  color: var(--gold);
  background: rgba(230, 184, 92, 0.08);
}
.brand strong {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
}
.brand small {
  display: block;
  margin-top: -2px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 23px;
}
.main-nav > a:not(.btn) {
  position: relative;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ded5d7;
}
.main-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--gold);
  transition: right 0.2s ease;
}
.main-nav > a:not(.btn):hover::after {
  right: 0;
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #160d11;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  background-image:
    linear-gradient(
      90deg,
      rgba(5, 3, 4, 0.88) 0%,
      rgba(6, 3, 4, 0.62) 53%,
      rgba(6, 3, 4, 0.35) 100%
    ),
    url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(transparent, #100a0d);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 110px;
}
.hero-content h1 {
  max-width: 920px;
  text-shadow: 0 6px 35px rgba(0, 0, 0, 0.35);
}
.hero-lead {
  max-width: 700px;
  font-size: 1.14rem;
  color: #e5dddf;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
  color: #d6cccf;
  font-size: 0.88rem;
}
.hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-notes i {
  color: var(--gold);
}
.split-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 70px;
  align-items: center;
}
.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--panel);
}
.media-frame img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}
.stats-grid > div {
  padding: 20px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
}
.stats-grid strong {
  display: block;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 1.8rem;
}
.stats-grid span {
  color: var(--muted);
  font-size: 0.83rem;
}
.map-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 26px;
  align-items: stretch;
}
.map-placeholder {
  min-height: 490px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(217, 34, 56, 0.22),
      transparent 34%
    ),
    radial-gradient(
      circle at 68% 72%,
      rgba(230, 184, 92, 0.18),
      transparent 30%
    ),
    #140b0f;
  overflow: hidden;
}
.map-placeholder > div {
  max-width: 380px;
  padding: 32px;
}
.map-placeholder i {
  font-size: 3.2rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.map-list {
  display: grid;
  gap: 10px;
}
.map-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
  transition:
    border-color 0.2s,
    transform 0.2s,
    background 0.2s;
}
.map-list a:hover {
  transform: translateX(3px);
  border-color: rgba(230, 184, 92, 0.55);
  background: rgba(230, 184, 92, 0.06);
}
.map-list i {
  color: var(--red);
  font-size: 1.15rem;
}
.map-list strong,
.map-list small {
  display: block;
}
.map-list small {
  color: var(--muted);
}
.cards-grid {
  display: grid;
  gap: 22px;
}
.locations-grid {
  grid-template-columns: repeat(3, 1fr);
}
.location-card {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #1a1014, #100a0d);
  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}
.location-card:hover {
  transform: translateY(-5px);
  border-color: rgba(230, 184, 92, 0.42);
  box-shadow: var(--shadow);
}
.location-card p {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  font-size: 0.92rem;
}
.location-card p i {
  color: var(--gold);
  margin-top: 5px;
}
.location-city {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.location-city span {
  color: #d4c8cb;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.9rem;
}
.promo-grid {
  grid-template-columns: repeat(4, 1fr);
}
.promo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #160d11;
  transition:
    transform 0.25s,
    border-color 0.25s;
}
.promo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(230, 184, 92, 0.42);
}
.promo-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.promo-card > div {
  padding: 23px;
}
.pill {
  display: inline-flex;
  padding: 6px 10px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(217, 34, 56, 0.14);
  color: #ff8e9c;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.machine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.machine-card {
  position: relative;
  padding-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #171014;
}
.machine-card img {
  aspect-ratio: 1 / 0.86;
  object-fit: cover;
}
.machine-card h3,
.machine-card p {
  margin-left: 22px;
  margin-right: 22px;
}
.machine-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin: -26px 0 18px 22px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(230, 184, 92, 0.45);
  border-radius: 15px;
  background: #160c10;
  color: var(--gold);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}
.club-section {
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(230, 184, 92, 0.11),
      transparent 32%
    ),
    #100a0d;
}
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.tier-card {
  position: relative;
  min-height: 290px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.012)
  );
  overflow: hidden;
}
.tier-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  right: -80px;
  top: -70px;
  background: currentColor;
  opacity: 0.08;
  filter: blur(2px);
}
.tier-card > i {
  font-size: 1.7rem;
  color: var(--gold);
  margin-bottom: 45px;
}
.tier-card > span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.tier-card.vip {
  border-color: rgba(230, 184, 92, 0.45);
  box-shadow: inset 0 0 45px rgba(230, 184, 92, 0.05);
}
.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}
.testimonial-grid blockquote {
  margin: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}
.testimonial-grid blockquote p {
  font-size: 1.02rem;
}
.testimonial-grid blockquote footer {
  color: #f4ecee;
  font-weight: 700;
}
.stars {
  color: var(--gold);
  margin-bottom: 18px;
  letter-spacing: 3px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-weight: 800;
}
.faq-question i {
  color: var(--gold);
  transition: transform 0.25s;
}
.faq-item.open .faq-question i {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding: 0 42px 22px 0;
}
.contact-section {
  background: linear-gradient(160deg, #130a0e, #0c080a);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-points {
  display: grid;
  gap: 13px;
  margin-top: 28px;
}
.contact-points > * {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.022);
}
.contact-points > * > i {
  color: var(--gold);
  width: 24px;
  text-align: center;
}
.contact-points span strong,
.contact-points span a {
  display: block;
}
.contact-points span strong {
  font-size: 0.78rem;
  color: var(--muted);
}
.contact-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #170f13;
  box-shadow: var(--shadow);
}
.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
  color: #efe8ea;
  font-size: 0.86rem;
  font-weight: 700;
}
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0e090b;
  color: #fff;
  outline: none;
  padding: 14px 15px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
input:focus,
textarea:focus {
  border-color: rgba(230, 184, 92, 0.65);
  box-shadow: 0 0 0 3px rgba(230, 184, 92, 0.09);
}
.form-note,
.form-status {
  margin: 10px 0 0;
  font-size: 0.78rem;
}
.form-status {
  color: var(--gold);
}
.newsletter-box {
  margin-top: 46px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(230, 184, 92, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(
    120deg,
    rgba(230, 184, 92, 0.07),
    rgba(217, 34, 56, 0.06)
  );
}
.newsletter-form {
  display: flex;
  gap: 10px;
}
.site-footer {
  padding: 72px 0 25px;
  border-top: 1px solid var(--line);
  background: #080506;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.8fr 1fr;
  gap: 40px;
}
.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 9px;
}
.footer-grid h3 {
  font-family: "Inter", sans-serif;
  margin-bottom: 10px;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.footer-grid a {
  color: #d7cccf;
  font-size: 0.88rem;
}
.footer-grid a:hover {
  color: var(--gold);
}
.footer-brand p {
  max-width: 400px;
  margin-top: 20px;
  font-size: 0.9rem;
}
.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.age-badge strong {
  color: var(--gold);
  font-size: 1.05rem;
}
.age-badge span {
  color: var(--muted);
  font-size: 0.72rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 28px;
  margin-top: 50px;
  border-top: 1px solid var(--line);
}
.footer-bottom p {
  margin: 0;
  max-width: 680px;
  font-size: 0.76rem;
}
.age-gate,
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(4, 2, 3, 0.88);
  backdrop-filter: blur(12px);
}
.age-gate[hidden],
.modal-backdrop[hidden],
.cookie-banner[hidden] {
  display: none !important;
}
.age-card,
.cookie-modal-card {
  width: min(560px, 100%);
  padding: 38px;
  border: 1px solid rgba(230, 184, 92, 0.32);
  border-radius: 26px;
  background: linear-gradient(145deg, #1c1015, #0b0709);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}
.age-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 16px;
  background: rgba(230, 184, 92, 0.1);
  color: var(--gold);
  font-size: 1.5rem;
}
.age-card h2,
.cookie-modal-card h2 {
  font-size: 2rem;
}
.age-actions {
  display: flex;
  gap: 12px;
  margin: 26px 0 16px;
}
.age-card small {
  color: var(--muted);
}
.cookie-banner {
  position: fixed;
  z-index: 100;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 1180px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 22px;
  border: 1px solid rgba(230, 184, 92, 0.26);
  border-radius: 18px;
  background: rgba(15, 8, 11, 0.96);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
}
.cookie-banner p {
  margin: 4px 0 0;
  font-size: 0.82rem;
}
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-modal-card {
  position: relative;
}
.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: #fff;
}
.cookie-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}
.cookie-row strong,
.cookie-row span {
  display: block;
}
.cookie-row > div span {
  color: var(--muted);
  font-size: 0.8rem;
}
.switch {
  position: relative;
  width: 48px;
  height: 27px;
  flex: 0 0 48px;
}
.switch input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.switch > span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #413139;
  transition: background 0.2s;
}
.switch > span::after {
  content: "";
  position: absolute;
  width: 21px;
  height: 21px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s;
}
.switch input:checked + span {
  background: var(--gold);
}
.switch input:checked + span::after {
  transform: translateX(21px);
}
.cookie-settings-fab {
  position: fixed;
  z-index: 55;
  right: 18px;
  bottom: 18px;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(230, 184, 92, 0.35);
  border-radius: 50%;
  background: #160c10;
  color: var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.form-success-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(4, 2, 3, 0.86);
  backdrop-filter: blur(10px);
}
.form-success-modal[hidden] {
  display: none !important;
}
.form-success-card {
  width: min(440px, 100%);
  padding: 34px;
  text-align: center;
  border: 1px solid rgba(230, 184, 92, 0.34);
  border-radius: 24px;
  background: linear-gradient(145deg, #1c1015, #0b0709);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}
.form-success-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(230, 184, 92, 0.12);
  color: var(--gold);
  font-size: 1.65rem;
}
.form-success-card h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}
.form-success-card p {
  margin-bottom: 24px;
}

.legal-main {
  padding-top: var(--header-h);
}
.legal-page .site-header {
  background: rgba(8, 5, 7, 0.96);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.legal-page .section {
  padding: 72px 0 88px;
}
.legal-hero {
  padding: 42px 0 36px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(217, 34, 56, 0.16),
      transparent 30%
    ),
    linear-gradient(145deg, #15090f, #090607);
}
.legal-hero .narrow {
  width: min(900px, 100%);
}
.legal-hero h1 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.18;
}
.legal-hero p {
  max-width: 760px;
  margin-bottom: 8px;
  font-size: 0.96rem;
}
.legal-hero span {
  color: var(--gold);
  font-size: 0.78rem;
}
.legal-content {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.legal-content-with-toc {
  grid-template-columns: 230px minmax(0, 1fr);
}
.legal-content-single {
  display: block;
}
.legal-content-single article {
  width: min(920px, 100%);
  max-width: none;
  margin: 0 auto;
}
.legal-toc {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #140d10;
}
.legal-toc strong {
  margin-bottom: 5px;
  color: var(--gold);
}
.legal-toc a {
  color: var(--muted);
  font-size: 0.85rem;
}
.legal-content article {
  min-width: 0;
  max-width: 900px;
}
.legal-content article h2 {
  margin-top: 36px;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}
.legal-content article h2:first-child {
  margin-top: 0;
}
.legal-content article p,
.legal-content article li {
  font-size: 0.98rem;
}
.legal-content article ul {
  color: var(--muted);
  padding-left: 22px;
}
.legal-content article a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-table {
  margin: 26px 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.cookie-table > div {
  display: grid;
  grid-template-columns: 1.15fr 1.8fr 1.2fr 0.8fr;
}
.cookie-table span {
  padding: 13px;
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}
.cookie-table > div span:last-child {
  border-right: 0;
}
.cookie-table .cookie-table-head span {
  border-top: 0;
  color: #fff;
  font-weight: 800;
  background: #1b1115;
}
.responsible-hero {
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(230, 184, 92, 0.15),
      transparent 30%
    ),
    linear-gradient(145deg, #15090f, #090607);
}
.responsible-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rg-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}
.rg-card > i {
  color: var(--gold);
  font-size: 1.7rem;
  margin-bottom: 34px;
}
.rg-card h2 {
  font-size: 1.4rem;
}
.rg-callout {
  padding: 32px;
  border: 1px solid rgba(230, 184, 92, 0.28);
  border-radius: var(--radius);
  background: rgba(230, 184, 92, 0.055);
}
.rg-callout > i {
  font-size: 2.1rem;
  color: var(--gold);
  margin-bottom: 18px;
}
.rg-callout ul {
  color: var(--muted);
  padding-left: 20px;
}
.warning-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.warning-list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #150e11;
}
.warning-list i {
  color: #ff6979;
  margin-top: 4px;
}
.support-section {
  background: #0b0709;
}
.support-grid {
  grid-template-columns: repeat(3, 1fr);
}
.support-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #1b1115, #110a0d);
}
.support-grid article > i {
  color: var(--gold);
  font-size: 1.7rem;
  margin-bottom: 25px;
}
.support-grid article a {
  display: block;
  margin-top: 10px;
  color: var(--gold);
  font-weight: 800;
}
.emergency-note {
  margin-top: 24px;
  padding: 16px 18px;
  border-left: 3px solid var(--red);
  background: rgba(217, 34, 56, 0.07);
  color: var(--muted);
}

@media (max-width: 1200px) {
  .container {
    width: min(1080px, calc(100% - 42px));
  }
  .main-nav {
    gap: 16px;
  }
  .main-nav > a:not(.btn) {
    font-size: 0.84rem;
  }
  .promo-grid,
  .machine-grid,
  .tiers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  :root {
    --header-h: 74px;
  }
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 72;
  }
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .main-nav {
    position: fixed;
    z-index: 70;
    inset: 0 0 0 auto;
    width: min(410px, 92vw);
    padding: 104px 30px 40px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: translateX(105%);
    background: rgba(10, 6, 8, 0.98);
    border-left: 1px solid var(--line);
    box-shadow: -30px 0 80px rgba(0, 0, 0, 0.48);
    transition: transform 0.3s ease;
  }
  .main-nav.open {
    transform: translateX(0);
  }
  .main-nav > a:not(.btn) {
    padding: 16px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .main-nav > a:not(.btn)::after {
    display: none;
  }
  .nav-cta {
    margin-top: 22px;
  }
  .split-grid,
  .contact-grid,
  .map-layout,
  .newsletter-box {
    grid-template-columns: 1fr;
  }
  .split-grid {
    gap: 42px;
  }
  .map-placeholder {
    min-height: 390px;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1.3fr 0.8fr 0.8fr;
  }
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
  .legal-content,
  .legal-content-with-toc {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .legal-content-single {
    display: block;
  }
  .legal-toc {
    position: static;
  }
  .responsible-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .container {
    width: min(100% - 30px, 680px);
  }
  .section {
    padding: 80px 0;
  }
  h1 {
    font-size: clamp(2.35rem, 10vw, 3.8rem);
  }
  h2 {
    font-size: clamp(1.85rem, 8vw, 3rem);
  }
  .hero-content {
    padding-top: 90px;
  }
  .hero-notes {
    display: grid;
    gap: 10px;
  }
  .locations-grid,
  .promo-grid,
  .machine-grid,
  .tiers-grid,
  .warning-list {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }
  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .cookie-actions .btn-ghost {
    grid-column: 1 / -1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .cookie-table {
    overflow-x: auto;
  }
  .cookie-table > div {
    min-width: 700px;
  }
}
@media (max-width: 480px) {
  .container {
    width: calc(100% - 24px);
  }
  .brand {
    min-width: 0;
  }
  .brand small {
    font-size: 0.62rem;
  }
  .brand-icon {
    width: 38px;
    height: 38px;
  }
  .hero-actions,
  .age-actions {
    flex-direction: column;
  }
  .hero-actions .btn,
  .age-actions .btn {
    width: 100%;
  }
  .section {
    padding: 68px 0;
  }
  .location-card,
  .contact-form,
  .age-card,
  .cookie-modal-card {
    padding: 23px;
  }
  .map-placeholder {
    min-height: 320px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }
  .cookie-actions {
    grid-template-columns: 1fr;
  }
  .cookie-actions .btn-ghost {
    grid-column: auto;
  }
}

.interactive-map-wrap {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #140b0f;
  min-height: 490px;
}
.interactive-map {
  width: 100%;
  min-height: 490px;
  height: 100%;
  z-index: 1;
}
.map-credit {
  position: absolute;
  z-index: 500;
  left: 16px;
  bottom: 16px;
  max-width: calc(100% - 32px);
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(16, 8, 11, 0.88);
  color: #fff;
  font-size: 0.78rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}
.map-credit i {
  color: var(--gold);
  margin-right: 6px;
}
.interactive-map .leaflet-popup-content-wrapper,
.interactive-map .leaflet-popup-tip {
  background: #160d11;
  color: #fff;
}
.interactive-map .leaflet-popup-content {
  margin: 14px 16px;
  line-height: 1.5;
}
.interactive-map .leaflet-popup-content strong {
  color: var(--gold);
}
.interactive-map .leaflet-control-zoom a {
  background: #160d11;
  color: var(--gold);
  border-color: rgba(255, 255, 255, 0.12);
}
.interactive-map .leaflet-control-attribution {
  background: rgba(16, 8, 11, 0.78);
  color: #c9bec2;
}
.interactive-map .leaflet-control-attribution a {
  color: var(--gold);
}

@media (max-width: 992px) {
  .interactive-map-wrap,
  .interactive-map {
    min-height: 390px;
  }
}
@media (max-width: 768px) {
  .interactive-map-wrap,
  .interactive-map {
    min-height: 340px;
  }
}
@media (max-width: 480px) {
  .interactive-map-wrap,
  .interactive-map {
    min-height: 300px;
  }
  .map-credit {
    border-radius: 14px;
    font-size: 0.72rem;
  }
}

.map-section {
  padding-top: 70px;
  padding-bottom: 70px;
}
.compact-heading {
  margin-bottom: 28px;
}
.compact-heading h2 {
  margin-bottom: 8px;
}
.compact-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 20px;
  align-items: stretch;
}
.compact-map-card {
  position: relative;
  min-width: 0;
  height: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #140b0f;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}
.compact-map-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #171015;
}
.compact-map-status {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 28px);
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(16, 8, 11, 0.92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  pointer-events: none;
}
.compact-map-status i {
  flex: 0 0 auto;
  color: var(--gold);
}
.compact-map-status strong,
.compact-map-status small {
  display: block;
}
.compact-map-status strong {
  font-size: 0.86rem;
  color: #fff;
}
.compact-map-status small {
  margin-top: 2px;
  color: #cfc2c6;
  font-size: 0.72rem;
  line-height: 1.35;
}
.compact-location-list {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
}
.compact-location-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 15px;
  text-align: left;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}
.compact-location-item:hover {
  transform: translateX(2px);
  border-color: rgba(230, 184, 92, 0.45);
  background: rgba(230, 184, 92, 0.055);
}
.compact-location-item.is-active {
  border-color: rgba(230, 184, 92, 0.75);
  background: linear-gradient(
    135deg,
    rgba(230, 184, 92, 0.13),
    rgba(217, 34, 56, 0.08)
  );
  box-shadow: inset 3px 0 0 var(--gold);
}
.compact-location-item i {
  flex: 0 0 20px;
  color: var(--red);
  font-size: 1.05rem;
  text-align: center;
}
.compact-location-item.is-active i {
  color: var(--gold);
}
.compact-location-item span {
  min-width: 0;
}
.compact-location-item strong,
.compact-location-item small {
  display: block;
}
.compact-location-item strong {
  color: #fff;
  font-size: 0.88rem;
  margin-bottom: 3px;
}
.compact-location-item small {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}
.map-jump-link {
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}
.locations-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
  .compact-map-layout {
    grid-template-columns: 1fr;
  }
  .compact-map-card {
    height: 300px;
  }
  .compact-location-list {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }
  .compact-location-item {
    align-items: flex-start;
    min-height: 104px;
  }
}

@media (max-width: 768px) {
  .map-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .compact-map-card {
    height: 280px;
  }
  .compact-location-list {
    grid-template-columns: 1fr;
  }
  .compact-location-item {
    min-height: 0;
  }
  .compact-map-status {
    right: 12px;
    left: 12px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .compact-map-card {
    height: 245px;
    border-radius: 14px;
  }
  .compact-map-status {
    bottom: 10px;
    right: 10px;
    left: 10px;
    padding: 8px 10px;
  }
  .compact-map-status small {
    font-size: 0.68rem;
  }
}

@media (max-width: 768px) {
  .legal-page .section {
    padding: 54px 0 68px;
  }
  .legal-hero {
    padding: 30px 0 26px;
  }
  .legal-hero h1 {
    font-size: clamp(1.25rem, 6vw, 1.65rem);
  }
  .legal-content article h2 {
    margin-top: 30px;
    font-size: 1.3rem;
  }
}
