:root {
  --ink: #063f2f;
  --muted: #5f776e;
  --paper: #eaf8ee;
  --surface: #ffffff;
  --line: #d5eadc;
  --lime: #96e868;
  --gold: #d7a92f;
  --gold-soft: #fff0b9;
  --emerald: #12a66a;
  --deep-green: #006044;
  --shadow: 0 22px 54px rgba(0, 86, 59, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 4%, rgba(236, 204, 95, 0.24), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(30, 190, 116, 0.26), transparent 28%),
    linear-gradient(180deg, rgba(4, 32, 24, 0.94) 0 620px, rgba(18, 166, 106, 0.14) 620px, transparent 980px),
    var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
}

.account-page {
  background:
    radial-gradient(circle at 12% 4%, rgba(236, 204, 95, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(4, 32, 24, 0.94) 0 360px, rgba(18, 166, 106, 0.14) 360px, transparent 720px),
    var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 18px;
  right: 0;
  left: 0;
  z-index: 10;
  padding: 0 clamp(14px, 4vw, 48px);
  pointer-events: none;
}

.header-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1180px;
  min-height: 72px;
  margin: 0 auto;
  padding: 10px 12px 10px 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 226, 128, 0.5);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38)),
    linear-gradient(90deg, rgba(0, 150, 92, 0.18), rgba(215, 169, 47, 0.2));
  box-shadow:
    0 24px 64px rgba(0, 86, 59, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  pointer-events: auto;
}

.header-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.72), transparent 28%),
    radial-gradient(circle at 20% 0, rgba(255, 255, 255, 0.64), transparent 22%);
  pointer-events: none;
}

.header-shell > * {
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 226, 128, 0.7);
  border-radius: 13px;
  background: var(--deep-green);
  box-shadow: 0 10px 22px rgba(0, 96, 68, 0.22);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-copy strong {
  color: var(--deep-green);
  font-size: 16px;
}

.brand-copy small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 226, 128, 0.42);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.38);
  color: rgba(6, 63, 47, 0.78);
  font-size: 14px;
  font-weight: 900;
  box-shadow: inset 0 1px 12px rgba(255, 255, 255, 0.42);
}

.nav a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 12px;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(255, 240, 185, 0.9);
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(0, 86, 59, 0.12);
  transform: translateY(-1px);
  outline: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-link,
.login-link,
.ticket-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.login-link {
  padding: 0 16px;
  border: 1px solid rgba(255, 226, 128, 0.42);
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink);
  cursor: pointer;
}

.phone-link {
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink);
}

.ticket-link {
  padding: 0 18px;
  background: linear-gradient(135deg, #f4d568, #b88616);
  color: #1d2c16;
  box-shadow: 0 12px 24px rgba(184, 134, 22, 0.24);
}

.icon-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.menu-button {
  display: none;
}

.menu-button span {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: calc(92vh - 72px);
  padding: clamp(120px, 12vw, 150px) clamp(18px, 5vw, 72px) 48px;
  background:
    radial-gradient(circle at 76% 24%, rgba(215, 169, 47, 0.3), transparent 28%),
    radial-gradient(circle at 18% 18%, rgba(18, 166, 106, 0.34), transparent 32%),
    linear-gradient(135deg, rgba(5, 28, 22, 0.78), rgba(6, 63, 47, 0.18) 58%, transparent);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--deep-green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-family: "Russo One", sans-serif;
  font-size: clamp(40px, 6.3vw, 82px);
  line-height: 0.98;
}

.hero h1 {
  color: #fff7df;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
}

h2 {
  margin-bottom: 18px;
  font-family: "Russo One", sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-text,
.section p {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-text {
  color: rgba(255, 247, 223, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.button.primary {
  background: linear-gradient(135deg, #f4d568, #b88616);
  color: #19351f;
  box-shadow: 0 12px 24px rgba(184, 134, 22, 0.24);
}

.button.secondary {
  background: var(--surface);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}

.button.ghost {
  background: rgba(247, 245, 238, 0.08);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}

.is-hidden {
  display: none !important;
}

.button:hover {
  transform: translateY(-2px);
}

.hero-stage {
  position: relative;
  min-height: 520px;
}

.hero-card,
.hero-note {
  position: absolute;
}

.hero-card {
  overflow: hidden;
  border: 1px solid rgba(215, 169, 47, 0.62);
  border-radius: 18px;
  background: #0b130f;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.hero-card:hover {
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.4);
}

.hero-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card_main {
  top: 0;
  right: 16%;
  width: min(64vw, 330px);
  height: 455px;
}

.hero-card_side {
  right: 0;
  bottom: 18px;
  width: min(48vw, 255px);
  height: 360px;
  transform: rotate(3deg);
}

.hero-note {
  bottom: 44px;
  left: 0;
  z-index: 2;
  display: flex;
  width: min(78vw, 330px);
  align-items: center;
  gap: 13px;
  padding: 13px;
  border: 1px solid rgba(215, 169, 47, 0.54);
  border-radius: 18px;
  background: rgba(6, 63, 47, 0.78);
  color: #fff7df;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-note img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  object-fit: cover;
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note strong {
  font-size: 15px;
  font-weight: 900;
}

.hero-note span {
  margin-top: 3px;
  color: rgba(255, 247, 223, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.disc {
  position: absolute;
  inset: 34px 0 auto auto;
  width: min(84vw, 430px);
  aspect-ratio: 1;
  border: 18px solid var(--deep-green);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--paper) 0 11%, var(--gold) 12% 20%, transparent 21%),
    conic-gradient(from 30deg, #0a8f61, var(--lime), var(--gold), #00855c, #0a8f61);
  box-shadow: var(--shadow);
}

.event-board {
  position: absolute;
  right: min(10vw, 90px);
  bottom: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(58px, 1fr));
  width: min(92vw, 420px);
  gap: 8px;
  padding: 18px;
  border: 0;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
}

.event-board span,
.event-board strong {
  display: grid;
  min-height: 56px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: var(--paper);
}

.event-board span {
  background: var(--deep-green);
  color: var(--gold-soft);
  font-family: "Russo One", sans-serif;
  font-size: 28px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 clamp(18px, 5vw, 72px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 32px rgba(58, 26, 78, 0.08);
}

.stats article {
  padding: 28px clamp(18px, 5vw, 72px);
  border-right: 1px solid var(--line);
}

.stats article:last-child {
  border-right: 0;
}

.stats strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Russo One", sans-serif;
  font-size: 34px;
}

.stats span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 3vw, 56px);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 18px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin-bottom: 0;
}

.section-head p {
  margin: 0;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 24px);
  align-items: stretch;
}

.date-filter {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 10px;
  align-items: center;
  margin: 0 0 26px;
}

.date-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(215, 169, 47, 0.7) transparent;
}

.date-strip::-webkit-scrollbar {
  height: 6px;
}

.date-strip::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(215, 169, 47, 0.7);
}

.date-cell {
  display: grid;
  flex: 0 0 118px;
  min-height: 86px;
  align-content: center;
  justify-items: start;
  gap: 3px;
  border: 1px solid rgba(215, 169, 47, 0.42);
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  text-align: left;
  box-shadow: 0 10px 24px rgba(0, 86, 59, 0.08);
  cursor: pointer;
}

.date-cell strong {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.date-cell span {
  color: #5f776e;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.date-cell small {
  color: rgba(6, 63, 47, 0.64);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.date-cell.is-active {
  border-color: #d7a92f;
  background: linear-gradient(135deg, #f2d66c, #bd8618);
  color: #1e3018;
  box-shadow: 0 16px 34px rgba(184, 134, 22, 0.22);
}

.date-cell.is-active span,
.date-cell.is-active small {
  color: rgba(30, 48, 24, 0.75);
}

.date-scroll {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(215, 169, 47, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
  color: var(--deep-green);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 86, 59, 0.08);
}

.event-card {
  display: flex;
  flex-direction: column;
  height: auto;
  min-width: 0;
  overflow: hidden;
  border: 2px solid rgba(215, 169, 47, 0.42);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(0, 86, 59, 0.08);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.event-card_featured {
  border-color: #d7a92f;
  box-shadow:
    0 0 0 1px #d7a92f,
    0 18px 38px rgba(215, 169, 47, 0.16);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(0, 86, 59, 0.18);
}

.event-poster {
  position: relative;
  flex: 0 0 360px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.event-poster::before,
.event-poster::after {
  content: "";
  position: absolute;
  inset: 0;
}

.event-poster::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 34%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 42%),
    radial-gradient(circle at 50% 40%, transparent 0 28%, rgba(0, 0, 0, 0.22) 70%);
}

.event-poster::after {
  background: rgba(0, 0, 0, 0.08);
}

.event-venue {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  padding: 22px 12px 0;
  text-align: center;
  text-transform: uppercase;
}

.event-venue strong {
  max-width: 100%;
  font-family: "Manrope", Arial, sans-serif;
  overflow: hidden;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event-venue span {
  margin-top: 6px;
  font-size: clamp(13px, 1vw, 18px);
  font-weight: 900;
  line-height: 1;
}

.event-time-pill {
  position: absolute;
  right: 50%;
  bottom: 48px;
  z-index: 1;
  display: inline-flex;
  min-width: 180px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 999px;
  color: #fff;
  transform: translateX(50%);
}

.event-time-pill strong,
.event-time-pill span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
}

.event-time-pill strong {
  min-width: 94px;
  background: #fff;
  color: #242424;
}

.event-brand {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  z-index: 1;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: center;
}

.event-card p {
  line-height: 1.35;
}

.event-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  padding: 8px 18px 18px;
  background: #fff;
}

.event-card-description {
  display: block;
  width: calc(100% + 18px);
  max-width: none;
  height: 48px;
  margin: 0 -18px 8px 0;
  overflow: hidden;
  color: #24352e;
  font-size: 11px;
  font-weight: 900;
  line-height: 16px;
  text-transform: uppercase;
}

.event-secondary-actions {
  display: flex;
  min-height: 44px;
  margin-top: 10px;
}

.event-secondary-actions button,
.event-secondary-actions span {
  width: 100%;
  min-height: 44px;
}

.event-secondary-actions button {
  border: 2px solid #d7a92f;
  border-radius: 12px;
  background: #fff;
  color: #a07816;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}

.event-status {
  align-self: flex-start;
  margin-top: 14px;
  padding: 4px 10px;
  border-radius: 8px;
  background: #c9f7c7;
  color: #1b7338;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
}

.event-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
  color: #070707;
  font-size: clamp(13px, 0.95vw, 16px);
  line-height: 1.2;
}

.event-meta i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d7a92f;
}

.event-button {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f2d66c, #bd8618);
  color: #1e3018;
  font-size: clamp(15px, 1.1vw, 18px);
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: none;
}

.event-address {
  display: -webkit-box;
  margin: 8px 0 0;
  overflow: hidden;
  color: #929292;
  font-size: 13px;
  line-height: 1.22;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.rules-band {
  background: linear-gradient(135deg, #063f2f, #00865d);
  color: #fff;
}

.rules-band .eyebrow {
  color: var(--gold-soft);
}

.rules-band p {
  color: rgba(255, 255, 255, 0.72);
}

.rules-band .section-head {
  display: grid;
  gap: 10px;
  max-width: none;
}

.rules-band .section-head .eyebrow {
  margin-bottom: 0;
}

.report-headline-row {
  display: block;
}

.report-headline-row .report-title,
.report-headline-row p {
  display: inline;
  margin: 0;
  max-width: none;
}

.report-headline-row .report-title {
  margin-right: 18px;
}

.report-title {
  white-space: nowrap;
}

.report-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: start;
}

.report-group {
  display: grid;
  gap: 18px;
}

.report-group-title {
  margin-bottom: 0;
  color: #fff0b9;
  font-family: "Russo One", sans-serif;
  font-size: 28px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.report-stack {
  position: relative;
  min-height: 520px;
  margin-top: 10px;
}

.report-stack-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 240, 185, 0.3);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    z-index 0.22s ease;
}

.report-stack-card img,
.report-stack-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.report-stack-card span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  color: #fff7df;
  font-size: 12px;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.42);
}

.report-stack-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.58));
}

.report-stack-card > * {
  position: relative;
  z-index: 1;
}

.report-stack-card:hover {
  z-index: 10;
  box-shadow: 0 36px 84px rgba(0, 0, 0, 0.34);
}

.report-stack-card_1 {
  top: 18px;
  left: 0;
  width: 300px;
  height: 400px;
  transform: rotate(-8deg);
}

.report-stack-card_1:hover {
  transform: translateY(-14px) rotate(-3deg);
}

.report-stack-card_2 {
  top: 8px;
  left: 210px;
  width: 260px;
  height: 360px;
  transform: rotate(5deg);
}

.report-stack-card_2:hover {
  transform: translateY(-16px) rotate(1deg);
}

.report-stack-card_3 {
  top: 42px;
  left: 392px;
  width: 250px;
  height: 330px;
  transform: rotate(-4deg);
}

.report-stack-card_3:hover {
  transform: translateY(-14px) rotate(0deg);
}

.report-stack-card_4 {
  top: 150px;
  left: 130px;
  width: 260px;
  height: 340px;
  transform: rotate(7deg);
}

.report-stack-card_4:hover {
  transform: translateY(-16px) rotate(2deg);
}

.report-stack-card_5 {
  top: 186px;
  left: 360px;
  width: 250px;
  height: 310px;
  transform: rotate(-6deg);
}

.report-stack-card_5:hover {
  transform: translateY(-16px) rotate(-2deg);
}

.report-stack_party .report-stack-card_1 {
  top: 10px;
  left: 18px;
  width: 270px;
  height: 360px;
  transform: rotate(-6deg);
}

.report-stack_party .report-stack-card_2 {
  top: 4px;
  left: 200px;
  width: 250px;
  height: 340px;
  transform: rotate(7deg);
}

.report-stack_party .report-stack-card_3 {
  top: 170px;
  left: 110px;
  width: 280px;
  height: 320px;
  transform: rotate(-4deg);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 1fr);
  gap: 42px;
  align-items: start;
}

.reviews-section {
  display: grid;
  gap: 30px;
  background:
    linear-gradient(135deg, rgba(6, 63, 47, 0.06), rgba(215, 169, 47, 0.12)),
    var(--paper);
}

.reviews-copy {
  max-width: 1080px;
}

.reviews-panel {
  display: grid;
  gap: 18px;
  min-width: 0;
  width: 100%;
}

.reviews-slider-wrap {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 14px;
  align-items: center;
}

.reviews-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(215, 169, 47, 0.5);
  border-radius: 50%;
  background: linear-gradient(135deg, #f4d568, #b88616);
  color: #19351f;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(184, 134, 22, 0.2);
}

.reviews-arrow:disabled {
  opacity: 0.4;
  cursor: default;
}

.reviews-viewport {
  overflow: hidden;
  min-width: 0;
}

.reviews-track {
  display: flex;
  gap: 18px;
}

.review-card {
  display: grid;
  align-content: start;
  flex: 0 0 calc((100% - 54px) / 4);
  min-height: 360px;
  padding: 24px 22px 20px;
  border: 1px solid rgba(215, 169, 47, 0.42);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 240, 185, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(6, 63, 47, 0.12);
}

.review-card-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}

.review-avatar {
  display: inline-grid;
  width: 62px;
  height: 62px;
  place-items: center;
  flex: 0 0 62px;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
}

.review-avatar.is-ai {
  background: #7c4dff;
}

.review-avatar.is-soft {
  background: #d9edf6;
  color: #3f5166;
}

.review-avatar.is-blue {
  background: #6a95dc;
}

.review-avatar.is-photo {
  background: linear-gradient(135deg, #c8b8a2, #7f6851);
}

.review-avatar.is-gold {
  background: linear-gradient(135deg, #e8cc76, #b9851c);
  color: #3e3210;
}

.review-avatar.is-green {
  background: linear-gradient(135deg, #0f9f67, #0b6946);
}

.review-author-block {
  display: grid;
  gap: 4px;
}

.review-stars {
  color: #ffcf47;
  font-size: 16px;
  letter-spacing: 0.08em;
}

.review-author-block strong {
  color: #1d2740;
  font-size: 18px;
  font-weight: 900;
}

.review-author-block span {
  color: #9aa7bc;
  font-size: 15px;
  font-weight: 700;
}

.review-text {
  margin: 0;
  color: #53637c;
  font-size: 18px;
  line-height: 1.45;
}

.review-source {
  margin-top: auto;
  padding-top: 24px;
  color: #a07816;
  font-size: 15px;
  font-weight: 800;
  text-decoration: underline;
}

.reviews-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.reviews-dot {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  background: #dbe1ea;
  cursor: pointer;
}

.reviews-dot.is-active {
  background: #2c3147;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 930px;
}

.faq-item {
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 20px 22px;
  color: var(--muted);
  line-height: 1.65;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.contacts {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 42px;
  border-top: 1px solid var(--line);
}

.account-section {
  display: grid;
  gap: 28px;
  padding-top: clamp(28px, 4vw, 52px);
  background:
    radial-gradient(circle at 88% 12%, rgba(215, 169, 47, 0.2), transparent 24%),
    linear-gradient(135deg, rgba(6, 63, 47, 0.08), rgba(18, 166, 106, 0.12)),
    var(--paper);
}

.account-main {
  padding-top: 112px;
}

.account-section.is-hidden {
  display: none;
}

.account-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 28px;
  align-items: end;
}

.account-hero h1 {
  max-width: 980px;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 68px);
}

.clover-balance {
  display: grid;
  min-height: 190px;
  place-items: center;
  padding: 24px;
  border: 1px solid rgba(215, 169, 47, 0.46);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 240, 185, 0.76), transparent 36%),
    linear-gradient(135deg, #063f2f, #00865d);
  color: #fff7df;
  text-align: center;
  box-shadow: var(--shadow);
}

.clover-balance span,
.clover-balance small {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clover-balance strong {
  color: #f4d568;
  font-family: "Russo One", sans-serif;
  font-size: 58px;
  line-height: 1;
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.admin-stats article {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(215, 169, 47, 0.38);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(6, 63, 47, 0.08);
}

.admin-stats strong {
  color: var(--ink);
  font-family: "Russo One", sans-serif;
  font-size: 34px;
}

.admin-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.account-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(215, 169, 47, 0.38);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 38px rgba(6, 63, 47, 0.1);
}

.account-card_wide {
  grid-column: span 8;
}

.account-card_tickets {
  grid-column: span 7;
}

.account-card_visited {
  grid-column: span 5;
}

.account-card_bonus {
  grid-column: span 4;
}

.account-card_reviews {
  grid-column: span 8;
}

.account-card_auth {
  grid-column: span 12;
  min-height: auto;
}

.admin-card_wide {
  grid-column: span 8;
}

.admin-card_side {
  grid-column: span 4;
}

.admin-card_full {
  grid-column: span 12;
}

.admin-row-split {
  display: grid;
  grid-column: span 12;
  grid-template-columns: 4fr 3fr 3fr;
  gap: 18px;
}

.account-card h3 {
  margin-bottom: 4px;
  color: var(--ink);
  font-family: "Russo One", sans-serif;
  font-size: 24px;
}

.account-review-form {
  display: grid;
  gap: 14px;
}

.admin-form,
.admin-event-list,
.admin-review-list,
.admin-tool-list {
  display: grid;
  gap: 14px;
}

.admin-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-form-grid > label {
  min-width: 0;
}

.admin-form-grid input,
.admin-form-grid select,
.admin-form-grid textarea {
  max-width: 100%;
}

.date-preview {
  padding: 12px 14px;
  border: 1px solid rgba(215, 169, 47, 0.34);
  border-radius: 8px;
  background: #f4fbf6;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.admin-image-preview {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(215, 169, 47, 0.34);
  border-radius: 12px;
  background: #f4fbf6;
}

.admin-image-preview img {
  display: block;
  width: 100%;
  max-height: 260px;
  border-radius: 10px;
  object-fit: cover;
}

.admin-image-preview span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.admin-project-editor {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: start;
}

.admin-project-button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: #f4fbf6;
  color: var(--ink);
  text-align: left;
}

.admin-project-button.is-active {
  border-color: rgba(215, 169, 47, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 240, 185, 0.32), transparent),
    #f4fbf6;
}

.admin-project-button span,
.admin-project-button small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.admin-project-button strong {
  font-size: 16px;
  font-weight: 900;
}

.admin-project-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.admin-review-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 12px;
  background: #f4fbf6;
}

.admin-review-item strong,
.admin-review-item span {
  display: block;
}

.admin-review-item strong {
  color: var(--ink);
  font-weight: 900;
}

.admin-review-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.admin-review-item p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.admin-tool-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 12px;
  background: #f4fbf6;
}

.admin-tool-item strong,
.admin-tool-item span {
  display: block;
}

.admin-tool-item strong {
  color: var(--ink);
  font-weight: 900;
}

.admin-tool-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.admin-tool-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.admin-icon-edit {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(215, 169, 47, 0.46);
  border-radius: 12px;
  background: rgba(255, 240, 185, 0.42);
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.review-event-lock {
  display: grid;
  gap: 7px;
  padding: 13px 14px;
  border: 2px solid rgba(215, 169, 47, 0.42);
  border-radius: 8px;
  background: var(--paper);
}

.review-event-lock span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.review-event-lock strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.account-review-list {
  display: grid;
  gap: 10px;
}

.account-empty {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.ticket-item,
.visited-item,
.bonus-row {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 12px;
  background: #f4fbf6;
}

.ticket-item {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.visited-item {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.ticket-item > div:first-child {
  display: grid;
  gap: 4px;
}

.visited-item > div:first-child {
  display: grid;
  gap: 4px;
}

.ticket-item span,
.visited-item span,
.bonus-row small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.ticket-item strong,
.visited-item strong,
.bonus-row strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.ticket-item small {
  color: var(--muted);
  font-size: 14px;
}

.ticket-actions {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.identity-list,
#accountIdentityList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.identity-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 14px;
  border-radius: 12px;
  background: #f4fbf6;
}

.identity-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.identity-copy strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.identity-copy span {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.identity-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(18, 166, 106, 0.12);
  color: var(--deep-green);
  font-size: 13px;
  font-weight: 900;
}

.ticket-actions b {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.ticket-open-button {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f4d568, #b88616);
  color: #19351f;
  font-size: 13px;
  text-transform: uppercase;
  box-shadow: none;
}

.visited-review-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #f4d568, #b88616);
  color: #19351f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.bonus-row {
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
}

.bonus-row span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  grid-row: span 2;
  border-radius: 50%;
  background: linear-gradient(135deg, #f4d568, #b88616);
  color: #19351f;
  font-weight: 900;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  font-weight: 900;
}

.lead-form,
.booking {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(116, 23, 200, 0.14);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  min-width: 0;
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: var(--paper);
  color: var(--ink);
  outline: 0;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
}

select {
  width: 100%;
  min-width: 0;
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: var(--paper);
  color: var(--ink);
  outline: 0;
}

select:focus {
  border-color: var(--gold);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--deep-green);
  font-weight: 800;
}

.booking-dialog {
  width: min(94vw, 520px);
  padding: 0;
  border: 0;
  background: transparent;
}

.promo-activate-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.booking-breakdown {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px 12px;
  padding: 12px;
  border: 1px solid rgba(215, 169, 47, 0.32);
  border-radius: 10px;
  background: #f4fbf6;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.booking-breakdown strong {
  color: var(--ink);
  text-align: right;
}

.login-dialog,
.review-dialog,
.project-dialog {
  width: min(94vw, 480px);
  padding: 0;
  border: 0;
  background: transparent;
}

.project-dialog {
  width: min(94vw, 780px);
}

.admin-small-dialog {
  width: min(94vw, 560px);
}

.ticket-dialog {
  width: min(94vw, 480px);
  padding: 0;
  border: 0;
  background: transparent;
}

.booking-dialog::backdrop,
.login-dialog::backdrop,
.review-dialog::backdrop,
.project-dialog::backdrop,
.ticket-dialog::backdrop,
.details-dialog::backdrop {
  background: rgba(28, 27, 33, 0.52);
  backdrop-filter: blur(7px);
}

.booking,
.login-modal {
  position: relative;
}

.login-modal,
.review-modal,
.project-modal {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(215, 169, 47, 0.46);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 240, 185, 0.18), transparent 38%),
    var(--surface);
  box-shadow: var(--shadow);
}

.login-modal h2,
.review-modal h2,
.project-modal h2 {
  margin-bottom: 2px;
}

.project-modal {
  max-height: min(86vh, 900px);
  overflow: auto;
}

.ticket-modal {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(215, 169, 47, 0.54);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 240, 185, 0.54), transparent 32%),
    linear-gradient(135deg, rgba(8, 34, 26, 0.98), rgba(9, 58, 43, 0.96));
  color: #fff7df;
  text-align: center;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.ticket-modal .eyebrow,
.ticket-modal h2,
.ticket-modal p {
  margin-bottom: 0;
}

.ticket-modal .eyebrow {
  color: var(--gold-soft);
}

.ticket-modal h2 {
  color: #fff7df;
}

.ticket-modal-meta {
  max-width: 340px;
  color: rgba(255, 247, 223, 0.76);
  line-height: 1.5;
}

.ticket-qr-wrap {
  display: grid;
  width: 252px;
  height: 252px;
  place-items: center;
  border: 1px solid rgba(215, 169, 47, 0.38);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.ticket-qr-wrap canvas {
  display: block;
  width: 220px;
  height: 220px;
}

.ticket-switcher {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px;
  border: 1px solid rgba(255, 240, 185, 0.18);
  border-radius: 999px;
  background: rgba(255, 240, 185, 0.08);
}

.ticket-switcher[hidden] {
  display: none;
}

.ticket-switcher button {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #f4d568, #b88616);
  color: #19351f;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.ticket-switcher button:disabled {
  opacity: 0.42;
  cursor: default;
}

.ticket-switcher span {
  min-width: 54px;
  color: #fff7df;
  font-size: 14px;
  font-weight: 900;
}

.ticket-modal-footer {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 240, 185, 0.16);
  color: rgba(255, 247, 223, 0.72);
  font-size: 13px;
  font-weight: 900;
}

.ticket-modal-footer strong {
  color: #f4d568;
  font-size: 18px;
}

.details-dialog {
  width: min(94vw, 980px);
  padding: 0;
  border: 0;
  background: transparent;
}

.details-modal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  border: 1px solid rgba(215, 169, 47, 0.54);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(8, 34, 26, 0.98), rgba(9, 58, 43, 0.96));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.details-media {
  min-height: 620px;
  background: #08140f;
}

.details-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.details-copy {
  display: grid;
  gap: 18px;
  padding: 28px 28px 30px;
  color: #fff7df;
}

.details-copy .eyebrow {
  margin-bottom: 0;
  color: var(--gold-soft);
}

.details-copy h2 {
  margin-bottom: 0;
  color: #fff7df;
}

.details-meta {
  margin: 0;
  color: rgba(255, 247, 223, 0.78);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.details-lead {
  margin: 0;
  color: #fff7df;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.details-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.details-facts span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 240, 185, 0.12);
  color: #fff0b9;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.details-section {
  display: grid;
  gap: 10px;
}

.details-section h3 {
  margin-bottom: 0;
  color: var(--gold-soft);
  font-size: 18px;
  text-transform: uppercase;
}

.details-section p {
  margin: 0;
  color: rgba(255, 247, 223, 0.84);
  line-height: 1.65;
}

.details-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 247, 223, 0.84);
}

.details-actions {
  padding-top: 6px;
}

.details-actions .button {
  min-width: 220px;
}

.report-dialog {
  width: min(94vw, 980px);
  padding: 0;
  border: 0;
  background: transparent;
}

.report-modal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(260px, 0.9fr);
  overflow: hidden;
  border: 1px solid rgba(215, 169, 47, 0.54);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(8, 34, 26, 0.98), rgba(9, 58, 43, 0.96));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.report-modal-media {
  min-height: 620px;
  background: #08140f;
}

.report-modal-media img,
.report-modal-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.report-modal-copy {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px 28px 30px;
  color: #fff7df;
}

.report-modal-copy .eyebrow {
  margin-bottom: 0;
  color: var(--gold-soft);
}

.report-project-filter {
  display: grid;
  gap: 7px;
  color: rgba(255, 247, 223, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.report-project-filter select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(215, 169, 47, 0.52);
  border-radius: 12px;
  padding: 0 14px;
  background: rgba(255, 247, 223, 0.96);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 900;
}

.report-modal-copy h2 {
  margin-bottom: 0;
  color: #fff7df;
}

.report-modal-text {
  margin: 0;
  color: rgba(255, 247, 223, 0.84);
  line-height: 1.6;
}

.report-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.report-thumb {
  overflow: hidden;
  height: 88px;
  border: 1px solid rgba(255, 240, 185, 0.22);
  border-radius: 12px;
  padding: 0;
  background: #10231b;
  cursor: pointer;
}

.report-thumb.is-active {
  border-color: #d7a92f;
  box-shadow: 0 0 0 1px #d7a92f;
}

.report-thumb img,
.report-thumb video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.close-button {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 26px;
}

.booking-meta {
  color: var(--muted);
  line-height: 1.5;
}

.counter-row,
.total-row,
.checkbox-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.counter {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
}

.counter button {
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
}

.counter strong {
  min-width: 46px;
  text-align: center;
}

.checkbox-row {
  justify-content: start;
  color: var(--ink);
}

.checkbox-row input[type="checkbox"] {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin: 0;
  border: 2px solid rgba(6, 63, 47, 0.34);
  border-radius: 7px;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(234, 248, 238, 0.82)),
    var(--paper);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 18px rgba(6, 63, 47, 0.08);
  cursor: pointer;
}

.checkbox-row input[type="checkbox"]::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 6px;
  height: 11px;
  border: solid #183319;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: rotate(42deg) scale(0.72);
  transition:
    opacity 0.14s ease,
    transform 0.14s ease;
}

.checkbox-row input[type="checkbox"]:checked {
  border-color: rgba(184, 134, 22, 0.76);
  background: linear-gradient(135deg, #f4d568, #b88616);
}

.checkbox-row input[type="checkbox"]:checked::after {
  opacity: 1;
  transform: rotate(42deg) scale(1);
}

.checkbox-row input[type="checkbox"]:focus-visible {
  outline: 3px solid rgba(215, 169, 47, 0.34);
  outline-offset: 3px;
}

.checkbox-row span {
  align-self: center;
}

.consent-row {
  align-items: center;
  justify-content: start;
  font-size: 13px;
  line-height: 1.35;
}

.consent-row span {
  color: var(--muted);
}

.booking-consent-row {
  margin-top: -6px;
  padding-top: 4px;
}

.cookie-banner {
  position: fixed;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: min(560px, calc(100vw - 28px));
  padding: 16px;
  border: 1px solid rgba(215, 169, 47, 0.52);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 240, 185, 0.22), transparent),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(6, 63, 47, 0.18);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.scroll-top-button {
  position: fixed;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(88px, 8vw, 112px);
  z-index: 24;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(215, 169, 47, 0.58);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 240, 185, 0.94), rgba(255, 255, 255, 0.96));
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(6, 63, 47, 0.18);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-button:hover {
  box-shadow: 0 18px 40px rgba(6, 63, 47, 0.24);
  transform: translateY(-2px);
}

.total-row {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 22px;
  font-weight: 900;
}

@media (max-width: 940px) {
  .scroll-top-button {
    right: 14px;
    bottom: 82px;
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .site-header {
    top: 12px;
    padding: 0 12px;
  }

  .header-shell {
    min-height: 66px;
    border-radius: 20px;
  }

  .brand {
    min-width: auto;
  }

  .brand-copy small {
    display: none;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 18px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.5)),
      rgba(255, 247, 239, 0.78);
    box-shadow: 0 24px 54px rgba(58, 26, 78, 0.2);
    backdrop-filter: blur(22px) saturate(145%);
    -webkit-backdrop-filter: blur(22px) saturate(145%);
  }

  .nav.is-open {
    display: grid;
  }

  .nav a {
    justify-content: flex-start;
    min-height: 44px;
    padding: 0 16px;
    border-bottom: 0;
  }

  .menu-button {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .phone-link {
    display: none;
  }

  .hero,
  .split,
  .contacts,
  .account-hero,
  .details-modal,
  .report-modal {
    grid-template-columns: 1fr;
  }

  .account-grid {
    grid-template-columns: 1fr;
  }

  .admin-grid,
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .admin-project-editor,
  .admin-form-grid,
  .admin-row-split {
    grid-template-columns: 1fr;
  }

  .account-card_wide {
    grid-column: auto;
  }

  .account-card_tickets,
  .account-card_visited,
  .account-card_bonus,
  .account-card_reviews,
  .account-card_auth,
  .admin-card_wide,
  .admin-card_side,
  .admin-card_full,
  .admin-row-split {
    grid-column: auto;
  }

  .hero-stage {
    min-height: 560px;
  }

  .report-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .report-stack {
    min-height: 720px;
  }

  .report-stack-card_1 {
    top: 0;
    left: 0;
  }

  .report-stack-card_2 {
    top: 18px;
    left: 170px;
  }

  .report-stack-card_3 {
    top: 64px;
    left: 68px;
  }

  .report-stack-card_4 {
    top: 336px;
    left: 26px;
  }

  .report-stack-card_5 {
    top: 368px;
    left: 226px;
  }

  .report-stack_party .report-stack-card_1,
  .report-stack_party .report-stack-card_2,
  .report-stack_party .report-stack-card_3 {
    width: 260px;
  }

  .report-stack_party .report-stack-card_1 {
    top: 10px;
    left: 0;
  }

  .report-stack_party .report-stack-card_2 {
    top: 40px;
    left: 156px;
  }

  .report-stack_party .report-stack-card_3 {
    top: 304px;
    left: 64px;
  }

  .event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-slider-wrap {
    grid-template-columns: 1fr;
  }

  .reviews-arrow {
    display: none;
  }

  .header-actions .ticket-link {
    display: none;
  }

  .reviews-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .reviews-viewport::-webkit-scrollbar {
    display: none;
  }

  .reviews-track {
    gap: 14px;
  }

  .review-card {
    flex-basis: calc((100% - 14px) / 2);
    min-height: 340px;
    scroll-snap-align: start;
  }

  .details-media {
    min-height: 320px;
  }

  .report-modal-media {
    min-height: 320px;
  }

  .date-filter {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
  }

  .date-scroll {
    width: 36px;
    height: 36px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .stats article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .review-card {
    flex-basis: 100%;
    min-height: 330px;
    padding: 22px 20px 18px;
    border-radius: 24px;
  }

  .review-text {
    font-size: 16px;
  }

  .ticket-item {
    grid-template-columns: 1fr;
  }

  .ticket-actions {
    justify-items: stretch;
  }

  .ticket-actions b {
    text-align: left;
  }

  .visited-item {
    grid-template-columns: 1fr;
  }

  .identity-item {
    grid-template-columns: 1fr;
  }

  .identity-status {
    width: 100%;
  }

  .visited-review-button {
    width: 100%;
  }

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

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .admin-project-button {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .admin-project-actions {
    justify-content: stretch;
  }

  .admin-project-actions .visited-review-button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .header-shell {
    gap: 8px;
    padding: 9px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    max-width: none;
    overflow: visible;
    text-overflow: clip;
    white-space: nowrap;
  }

  .ticket-link {
    min-height: 38px;
    padding: 0 12px;
  }

  .header-shell {
    justify-content: flex-start;
  }

  .header-actions {
    margin-left: auto;
  }

  input[type="date"] {
    min-width: 0;
    -webkit-appearance: none;
    appearance: none;
  }

  .hero {
    min-height: auto;
    padding-top: 108px;
  }

  .hero-stage {
    min-height: 520px;
  }

  .hero-card_main {
    right: 18%;
    width: 255px;
    height: 360px;
  }

  .hero-card_side {
    right: 0;
    bottom: 72px;
    width: 190px;
    height: 275px;
  }

  .hero-note {
    bottom: 10px;
    width: min(100%, 315px);
  }

  .disc {
    width: 290px;
    border-width: 16px;
  }

  .event-board {
    right: 8px;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    padding: 10px;
  }

  .event-board span,
  .event-board strong {
    min-height: 42px;
    font-size: 12px;
  }

  .event-board span {
    font-size: 20px;
  }

  .event-grid {
    grid-template-columns: 1fr;
  }

  .report-stack {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .report-group-title {
    font-size: 22px;
  }

  .report-stack-card,
  .report-stack-card_1,
  .report-stack-card_2,
  .report-stack-card_3,
  .report-stack-card_4,
  .report-stack-card_5,
  .report-stack_party .report-stack-card_1,
  .report-stack_party .report-stack-card_2,
  .report-stack_party .report-stack-card_3 {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 240px;
    transform: none;
  }

  .report-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .date-filter {
    grid-template-columns: 1fr;
  }

  .date-scroll {
    display: none;
  }

  .date-cell {
    flex-basis: 104px;
  }

  .event-card {
    height: auto;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }
}
