/* ===== SECTIONS ===== */
.section { padding: 70px 0; }
.section--compact { padding: 56px 0 64px; }

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.section__title { margin: 0; font-size: 34px; letter-spacing: -.4px; }
.section__sub { margin: 0; color: var(--muted); max-width: 62ch; line-height: 1.55; }

/* Schedule grid */
.grid { display: grid; gap: 14px; }
.schedule { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }

.cardx {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  padding: 16px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.30);
  position: relative;
  overflow: hidden;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.cardx::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(500px 200px at 10% 0%, rgba(247, 201, 101, 0.16), transparent 60%),
    radial-gradient(420px 200px at 90% 0%, rgba(22, 243, 179, 0.14), transparent 55%);
  opacity: .55;
  pointer-events: none;
}

.cardx__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; position: relative; z-index: 1; }
.cardx__day { font-size: 12px; text-transform: uppercase; letter-spacing: .9px; color: var(--muted2); }

.cardx__icon {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.cardx__title { margin: 10px 0 0; font-size: 18px; letter-spacing: .2px; position: relative; z-index: 1; }
.cardx__text { margin: 10px 0 0; color: var(--muted); line-height: 1.65; position: relative; z-index: 1; font-size: 14px; flex: 1; }

.clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cardx:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
}

/* Details inside cards */
.cardx__details { margin-top: 12px; position: relative; z-index: 1; }

.cardx__more {
  cursor: pointer;
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  width: fit-content;
}

.cardx__more::after { content: "▾"; opacity: .75; }
.cardx__details[open] .cardx__more::after { content: "▴"; }

.cardx__detailsBody { margin-top: 10px; color: var(--muted); line-height: 1.6; font-size: 14px; }
.cardx__detailsBody p { margin: 0 0 10px; }
.cardx__detailsBody ul { margin: 0; padding-left: 18px; }
.cardx__detailsBody li { margin: 0 0 8px; }

.note {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.22);
}

.note__icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(247, 201, 101, 0.16);
  border: 1px solid rgba(247, 201, 101, 0.25);
}

.note__text { color: var(--muted); line-height: 1.5; }

.note__cta {
  margin-left: auto;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}
.note__cta:hover { background: rgba(255, 255, 255, 0.08); }

/* Ratings panel */
.panel {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel__toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.field { display: flex; flex-direction: column; gap: 8px; min-width: min(460px, 100%); }
.field__label { font-size: 12px; color: var(--muted2); text-transform: uppercase; letter-spacing: .8px; }

.field__input {
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  padding: 0 14px;
  outline: none;
}

.field__input:focus {
  border-color: rgba(247, 201, 101, 0.35);
  box-shadow: 0 0 0 4px rgba(247, 201, 101, 0.12);
}

.toolbar__right { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.seg {
  height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 900;
  letter-spacing: .2px;
  cursor: pointer;
}

.seg[aria-pressed="true"] {
  background: rgba(247, 201, 101, 0.18);
  border-color: rgba(247, 201, 101, 0.35);
}
.seg:hover { background: rgba(255, 255, 255, 0.06); }

.table-wrap { overflow: auto; }

.rating-table { width: 100%; border-collapse: collapse; min-width: 760px; }

.rating-table thead th {
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: var(--muted2);
  padding: 14px 18px;
  position: sticky;
  top: 0;
  background: rgba(10, 10, 18, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rating-table tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.90);
}

.rating-table tbody tr:nth-child(odd) { background: rgba(255, 255, 255, 0.02); }
.rating-table tbody tr:hover { background: rgba(247, 201, 101, 0.07); }

.col-place { width: 80px; }
.col-nick { width: 210px; }
.col-points { width: 140px; text-align: right; }
.rating-table tbody td.col-points { text-align: right; font-weight: 900; }

.place-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 32px;
  padding: 0 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 900;
}

.place-1 { background: rgba(247, 201, 101, 0.18); border-color: rgba(247, 201, 101, 0.35); }
.place-2 { background: rgba(255, 255, 255, 0.10); }
.place-3 { background: rgba(22, 243, 179, 0.12); border-color: rgba(22, 243, 179, 0.25); }

.panel__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  color: var(--muted);
}

/* Map section */
.map-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 18px; align-items: stretch; }

.map-card {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.40);
  min-height: 380px;
}

.map-iframe { width: 100%; height: 100%; min-height: 380px; display: block; }

.map-info {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.40);
  padding: 18px;
}

.map-info__title { font-weight: 1000; letter-spacing: .10em; text-transform: uppercase; margin-bottom: 12px; }

.map-info__line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.84);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.map-info__line span { color: rgba(255, 255, 255, 0.55); }

.map-info__btns { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }

.map-info__note {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.5;
}

/* Contact card */
.contact-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.contact-card__title { margin: 0; font-size: 28px; letter-spacing: .4px; }
.contact-card__sub { margin: 8px 0 0; color: var(--muted); }

.contact-card__links {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.18);
}

.contact-pill__icon {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.contact-pill__text { color: rgba(255, 255, 255, 0.88); font-weight: 700; }

/* Footer */
.footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.60);
  font-size: 13px;
}
.footer__right { color: rgba(255, 255, 255, 0.45); }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__right { display: none; }
  .schedule { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-card { grid-template-columns: 1fr; }
  .field { min-width: 100%; }
  .map-grid { grid-template-columns: 1fr; }
  .map-card, .map-iframe { min-height: 320px; }
  .hero-photo__img { min-height: 320px; }
}

@media (max-width: 720px) {
  .header__inner--split { height: 126px; }
  .brand-split { height: 100px; gap: 12px; }
  .brand-split__logoWrap { width: 200px; height: 100px; }
  .brand-split__joker { width: 200px; height: 100px; }
  .brand-split__side { font-size: 24px; }
}

@media (max-width: 560px) {
  .header__inner { height: 98px; }
  .header__inner--split { height: 112px; }

  .brand-split { height: 92px; gap: 8px; }
  .brand-split__logoWrap { width: 160px; height: 92px; }
  .brand-split__joker { width: 160px; height: 92px; }
  .brand-split__side { font-size: 17px; letter-spacing: .22em; }

  .hero { padding-top: 28px; }
  .hero__meta { grid-template-columns: 1fr; }
  .schedule { grid-template-columns: 1fr; }
  .cardx { min-height: 176px; }
  .section__title { font-size: 28px; }

  .note { flex-wrap: wrap; }
  .note__cta { margin-left: 0; width: 100%; text-align: center; }
}
