/* Inner pages */
.inner-page .page-main {
  position: relative;
  z-index: 1;
  padding: 48px 0 88px;
}
.page-head {
  margin-bottom: 36px;
}
.page-head h1 {
  font-family: var(--font-heading);
  font-size: var(--title-size);
  font-weight: 700;
  font-style: italic;
  color: #111;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 14px;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 15.6px; /* 13px + 20% */
  color: #000;
}
.breadcrumbs a {
  color: #000;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #FF1A1A;
}
.breadcrumbs span {
  color: #000;
}
.page-content {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
  overflow: visible;
}
/* News list page: strips sit on metal, no tile panel */
.page-content.page-content--news {
  background: transparent;
  border: 0;
  padding: 0;
  overflow: visible;
  box-shadow: none !important;
}
.page-content--news:hover {
  border-color: transparent !important;
  box-shadow: none !important;
}
.page-content--news .page-content-inner {
  padding: 0;
  background: transparent;
}
.page-content--news .news-card {
  background: #000;
}

/* News list — compact strips */
.page-news-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.news-row {
  display: grid;
  grid-template-columns: minmax(110px, 150px) minmax(0, 1fr) auto;
  gap: 12px 24px;
  align-items: center;
  padding: 16px 20px 16px 18px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid #FF1A1A;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
  transition:
    border-color 0.28s ease,
    background 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}
.news-row:hover {
  border-color: rgba(255, 26, 26, 0.45);
  background: #0a0a0a;
  transform: translateX(4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  text-decoration: none;
}
.news-row:hover .news-row-title {
  color: #fff;
}
.news-row:hover .news-row-more {
  color: #FF1A1A;
  border-bottom-color: #FF1A1A;
}
.news-row-date {
  margin: 0;
  color: #FF1A1A;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.35;
  white-space: nowrap;
}
.news-row-main {
  min-width: 0;
}
.news-row-title {
  margin: 0;
  color: #f2f2f2;
  font-family: var(--font-heading);
  font-size: clamp(15px, 1.7vw, 18px);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.news-row-excerpt {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-row-more {
  flex-shrink: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  border-bottom: 2px solid var(--gold, #c9a227);
  padding-bottom: 1px;
  white-space: nowrap;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.news-row[hidden] {
  display: none !important;
}
@media (max-width: 760px) {
  .news-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "date more"
      "main main";
    gap: 8px 16px;
    padding: 14px 16px 14px 14px;
  }
  .news-row-date { grid-area: date; }
  .news-row-main { grid-area: main; }
  .news-row-more { grid-area: more; align-self: start; }
  .news-row:hover { transform: none; }
}

.news-list-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: center;
  margin: 28px 0 8px;
}
.news-list-nav[hidden] {
  display: none !important;
}
.news-list-prev,
.news-list-next,
.news-list-all {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  color: #111;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  text-transform: lowercase;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.news-list-prev:hover,
.news-list-next:hover,
.news-list-all:hover {
  color: #FF1A1A;
  border-bottom-color: #FF1A1A;
}
.news-list-prev[hidden],
.news-list-next[hidden] {
  display: none !important;
}
.page-content.page-content--docs {
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid var(--border);
  box-shadow: none !important;
}
.page-content--docs:hover {
  border-color: var(--border) !important;
  box-shadow: none !important;
}
.page-content--docs .page-content-inner {
  background: transparent;
}
.page-content--docs .doc-item {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.page-content-inner {
  padding: clamp(24px, 4vw, 48px);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1.7;
}
.page-content-inner h1,
.page-content-inner h2,
.page-content-inner h3,
.page-content-inner h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 1.4em 0 0.6em;
}
.page-content-inner h2 { font-size: clamp(22px, 3vw, 32px); }
.page-content-inner h3 { font-size: clamp(18px, 2.4vw, 24px); }
.page-content-inner p { margin: 0 0 1em; }
.page-content-inner a {
  color: #FF1A1A;
  text-decoration: none;
}
.page-content-inner a:hover { text-decoration: underline; }
.page-content-inner ul,
.page-content-inner ol {
  margin: 0 0 1.2em;
  padding-left: 1.3em;
}
.page-content-inner li { margin-bottom: 0.4em; }
.page-content-inner img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1em 0;
  border-radius: 2px;
}
.page-content-inner table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  font-size: 14px;
}
.page-content-inner th,
.page-content-inner td {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.page-content-inner th {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.page-content-inner iframe {
  max-width: 100%;
}
.page-content-inner .wpcf7 input,
.page-content-inner .wpcf7 textarea,
.page-content-inner input[type="text"],
.page-content-inner input[type="email"],
.page-content-inner input[type="tel"],
.page-content-inner textarea,
.page-content-inner select {
  width: 100%;
  max-width: 480px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-family: var(--font-heading);
  margin-bottom: 10px;
}
.page-content-inner input[type="submit"],
.page-content-inner button[type="submit"] {
  padding: 12px 22px;
  background: linear-gradient(135deg, #fff, #ddd);
  color: #000;
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
}
@media (max-width: 992px) {
  .inner-page .page-main { padding: 28px 0 56px; }
}

.page-content-inner,
.page-content-inner p,
.page-content-inner li,
.page-content-inner td,
.page-content-inner span {
  color: #fff;
}


/* Equipment catalog — vision layout */
.page-equip .page-content { display: none; }
.page-equip .page-head { margin-bottom: 28px; }
.equip-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  gap: 36px 40px;
  align-items: stretch;
  margin-bottom: 40px;
}
.equip-left {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.equip-facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}
.equip-panel {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  height: 100%;
  align-self: stretch;
  padding: 16px 18px !important;
}
.equip-panel h2 {
  margin: 0 0 4px !important;
  font-size: clamp(20px, 2.2vw, 24px) !important;
}
.equip-panel .join-panel-note {
  margin: 0 0 10px;
  font-size: 13px;
}
.equip-kicker {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FF1A1A;
  margin: 0 0 12px;
}
.equip-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.1;
  color: #111 !important;
  margin: 0 0 18px !important;
}
.equip-info-tile {
  display: none;
}
.equip-lead {
  font-family: var(--font-heading);
  font-size: 14px;
  line-height: 1.45;
  color: #fff !important;
  margin: 0;
}
.equip-fact {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.12);
  flex: 1 1 0;
  min-height: 72px;
  box-sizing: border-box;
}
.equip-fact--intro .equip-fact-num {
  opacity: 0.35;
}
.equip-fact-num {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
  color: #FF1A1A;
  line-height: 1.1;
}
.equip-fact strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  color: #fff !important;
  margin-bottom: 4px;
}
.equip-fact p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #fff !important;
}
.equip-panel .equip-phone {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: #fff !important;
  text-decoration: none !important;
  margin: 0 0 8px;
  transition: color 0.2s ease;
}
.equip-panel .equip-phone:hover { color: #FF1A1A !important; }
.equip-panel-hint {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
}
.equip-panel-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}
.equip-panel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 12px;
  background: linear-gradient(135deg, #fff, #ddd);
  color: #000 !important;
  text-decoration: none !important;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.equip-panel-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.equip-panel-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff !important;
}
.equip-panel-btn--ghost:hover {
  border-color: #FF1A1A;
  color: #FF1A1A !important;
  filter: none;
}

.equip-catalog-head {
  margin-bottom: 18px;
}
.equip-catalog-head h2 {
  margin: 0 0 6px !important;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: #111 !important;
}
.equip-catalog-head p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 15px;
  color: #111;
}
.equip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}
.equip-tile {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  min-width: 0;
}
.equip-tile-media {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid transparent;
  text-decoration: none;
  transition: box-shadow 0.45s ease, border-color 0.45s ease;
}
.equip-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10%;
  box-sizing: border-box;
  display: block;
  margin: 0 !important;
  transition: transform 0.35s ease;
}
.equip-tile-media:hover {
  border-color: rgba(255, 26, 26, 0.95);
  box-shadow:
    0 0 0 1px rgba(255, 26, 26, 0.95),
    0 0 18px rgba(255, 26, 26, 0.55),
    0 0 40px rgba(255, 26, 26, 0.3);
}
.equip-tile-media:hover img {
  transform: scale(1.04);
}
.equip-tile-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #000;
}
.equip-tile-body h3 {
  margin: 0 0 10px !important;
  font-family: var(--font-heading);
  font-size: 16px !important;
  font-weight: 700;
  font-style: italic;
  text-transform: none !important;
  color: #fff !important;
  line-height: 1.3;
}
.equip-tile-body p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88) !important;
  flex: 1;
}

.equip-tile-body ol {
  margin: 0 0 12px 18px;
  padding: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}
.equip-tile-body li {
  margin: 0 0 6px;
}
.equip-tile-price {
  margin: 0 !important;
  font-family: var(--font-heading);
  font-size: 16px !important;
  font-weight: 700;
  color: #FF1A1A !important;
}
@media (max-width: 960px) {
  .equip-layout { grid-template-columns: 1fr; }
  .equip-panel { order: -1; }
  .equip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .equip-grid { grid-template-columns: 1fr; }
  .equip-panel-actions { grid-template-columns: 1fr; }
}

/* Legacy equip (unused on new page) */
.equip-intro { margin-bottom: 28px; }
.equip-intro p { color: #fff; }
.equip-contact { margin-top: 18px; }
.equip-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  align-items: start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 16px;
}
.equip-card-media {
  width: 160px;
  height: 160px;
  overflow: hidden;
  background: #111;
}
.equip-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  border-radius: 0;
}
.equip-card-body h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #fff;
  text-transform: none;
  font-style: italic;
}
.equip-card-body p { color: #fff; margin: 0 0 10px; font-size: 14px; line-height: 1.55; }
.equip-card-price {
  color: #FF1A1A !important;
  font-weight: 700;
  margin: 0 !important;
}
.equip-note { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.12); }
.equip-note p { color: #fff; }
@media (max-width: 900px) {
  .equip-card { grid-template-columns: 120px 1fr; }
  .equip-card-media { width: 120px; height: 120px; }
}
@media (max-width: 560px) {
  .equip-card { grid-template-columns: 1fr; }
  .equip-card-media { width: 100%; height: 220px; }
}


/* News article pages */
.page-news-article .page-content { display: none; }
.page-news-article .news-date {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: #FF1A1A;
  margin: 0 0 18px;
}
.page-news-article .disc-page-text-inner a {
  color: #FF1A1A;
  text-decoration: none;
}
.page-news-article .disc-page-text-inner a:hover {
  text-decoration: underline;
}
.page-news-article .news-back {
  margin-top: 28px;
  margin-bottom: 0;
}
.page-news-article .news-back a { color: #FF1A1A; }
.page-news-article .disc-page-photo img {
  opacity: 1;
  visibility: visible;
}
.page-news-article .news-photos {
  margin-top: 8px;
  margin-bottom: 8px;
  width: 100%;
  box-sizing: border-box;
}
.page-news-article .news-photos.disc-page-photos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 900px) {
  .page-news-article .news-photos.disc-page-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .page-news-article .news-photos.disc-page-photos {
    grid-template-columns: 1fr;
  }
}

/* legacy single-article markup (if any remains) */
.news-article time {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: #FF1A1A;
  margin-bottom: 18px;
}
.news-article-body { color: #fff; }
.news-article-body p { color: #fff; }
.news-back { margin-top: 28px; }
.news-back a { color: #FF1A1A; }


/* Halls page */
.page-halls .page-content { display: none; }
.page-halls .hall-text-spaced {
  margin-top: 40px;
}
.page-halls .hall-photos {
  margin-bottom: 8px;
  width: 100%;
  box-sizing: border-box;
}
.page-halls .hall-photos.disc-page-photos {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 900px) {
  .page-halls .hall-photos.disc-page-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .page-halls .hall-photos.disc-page-photos {
    grid-template-columns: 1fr;
  }
}
.hall-block { margin-bottom: 48px; }
.hall-block:last-child { margin-bottom: 0; }
.hall-block h2 {
  margin: 0 0 16px !important;
  color: #fff !important;
}
.hall-block p { color: #fff; }
.hall-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.hall-gallery a {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
}
.hall-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0 !important;
  border-radius: 0 !important;
}
@media (max-width: 900px) {
  .hall-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.inner-page .page-main .container {
  max-width: min(1500px, calc(100vw - 32px));
}


/* Documents list */
.doc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.doc-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px 20px;
  align-items: center;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.doc-main {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  text-decoration: none !important;
  color: #fff !important;
  min-width: 0;
}
.doc-main:hover .doc-title { color: #FF1A1A !important; }
.doc-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: #FF1A1A;
  color: #fff;
  flex-shrink: 0;
}
.doc-icon-svg { width: 24px; height: 24px; display: block; }
.doc-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  color: #fff !important;
  margin: 0 !important;
  text-transform: none !important;
  font-style: normal !important;
}
.doc-type {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
}
.doc-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
}
.doc-btn {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.28);
  background: transparent;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  padding: 10px 14px;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.doc-btn--icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  flex-shrink: 0;
}
.doc-btn-svg {
  width: 20px;
  height: 20px;
  display: block;
}
.doc-btn:hover {
  border-color: #FF1A1A;
  color: #FF1A1A;
  background: rgba(255, 26, 26, 0.08);
}
.doc-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(12px);
  background: #111;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px 16px;
  font-family: var(--font-heading);
  font-size: 14px;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.doc-toast.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 820px) {
  .doc-item {
    grid-template-columns: 1fr;
  }
  .doc-actions { justify-content: flex-start; }
}


/* Poster gallery (media / literature) — on metal background, 4 per row */
.page-gallery.page-photo .page-content { display: none; }

/* Photo albums from admin */
.page-photo .photo-album {
  margin: 0 0 40px;
}
.page-photo .photo-album[hidden] {
  display: none !important;
}
.page-photo .photo-album:last-child {
  margin-bottom: 8px;
}
.page-photo .photo-album-title {
  margin: 0 0 14px;
  color: #000;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
}
.page-photo .photo-album-comment {
  margin: 0 0 18px;
  padding: 14px 18px;
  background: rgba(90, 90, 90, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 1.55;
}
.page-photo .photo-album-grid.disc-page-photos {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}
.page-photo .photo-empty {
  display: none;
}
.page-photo .photo-albums-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: center;
  margin: 8px 0 24px;
}
.page-photo .photo-albums-nav[hidden] {
  display: none !important;
}
.page-photo .photo-albums-prev,
.page-photo .photo-albums-next,
.page-photo .photo-albums-all {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  color: #111;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  text-transform: lowercase;
  cursor: pointer;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.page-photo .photo-albums-prev:hover,
.page-photo .photo-albums-next:hover,
.page-photo .photo-albums-all:hover {
  color: #FF1A1A;
  border-bottom-color: #FF1A1A;
}
.page-photo .photo-albums-prev[hidden],
.page-photo .photo-albums-next[hidden] {
  display: none !important;
}
@media (max-width: 900px) {
  .page-photo .photo-album-grid.disc-page-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .page-photo .photo-album-grid.disc-page-photos {
    grid-template-columns: 1fr;
  }
}

.gallery-plain {
  margin-top: 8px;
}
.poster-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}
.poster-cell {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: transparent;
  border: none;
  text-decoration: none;
}
.poster-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  margin: 0 !important;
  border-radius: 0 !important;
  transition: transform 0.35s ease;
}
.poster-cell:hover img {
  transform: scale(1.04);
}
/* Literature: show full cover, don't crop titles */
.poster-grid--books .poster-cell {
  aspect-ratio: 2 / 3;
  overflow: visible;
  background: transparent;
}
.poster-grid--books .poster-cell img {
  object-fit: contain;
  object-position: center center;
  background: transparent;
}
.poster-grid--books .poster-cell:hover img {
  transform: none;
}
@media (max-width: 900px) {
  .poster-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
}
@media (max-width: 520px) {
  .poster-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
}


/* Video gallery — 2 per row on metal background */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 24px;
  width: 100%;
}
.video-cell {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: transparent;
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  border: 1px solid transparent;
  transition: box-shadow 0.45s ease, border-color 0.45s ease;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  transition: transform 0.35s ease;
}
.page-video .video-frame:hover {
  border-color: rgba(255, 26, 26, 0.95);
  box-shadow:
    0 0 0 1px rgba(255, 26, 26, 0.95),
    0 0 18px rgba(255, 26, 26, 0.6),
    0 0 40px rgba(255, 26, 26, 0.35),
    0 0 70px rgba(255, 26, 26, 0.15);
}
.page-video .video-frame:hover iframe {
  transform: scale(1.04);
}
.video-caption {
  margin: 0 !important;
  color: #111 !important;
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: none !important;
  font-style: normal !important;
}
.page-video .video-cell[hidden] {
  display: none !important;
}
.page-video .video-grid-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: center;
  margin: 28px 0 8px;
}
.page-video .video-grid-nav[hidden] {
  display: none !important;
}
.page-video .video-grid-prev,
.page-video .video-grid-next,
.page-video .video-grid-all {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  color: #111;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  text-transform: lowercase;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.page-video .video-grid-prev:hover,
.page-video .video-grid-next:hover,
.page-video .video-grid-all:hover {
  color: #FF1A1A;
  border-bottom-color: #FF1A1A;
}
.page-video .video-grid-prev[hidden],
.page-video .video-grid-next[hidden] {
  display: none !important;
}
@media (max-width: 700px) {
  .video-grid { grid-template-columns: 1fr; gap: 22px; }
}


/* Trainers page */
.page-trainers .page-content { display: none; }
.trainer-hero {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  gap: 28px 36px;
  align-items: start;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(20px, 3vw, 36px);
  margin-bottom: 40px;
}
.trainer-hero-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #111;
}
.trainer-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin: 0 !important;
}
.trainer-hero-text {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1.65;
}
.trainer-hero-text h2 {
  margin: 0 0 8px !important;
  color: #fff !important;
  font-size: clamp(22px, 3vw, 32px) !important;
  text-transform: uppercase;
  font-style: italic;
}
.trainer-hero-text .trainer-role {
  color: #FF1A1A !important;
  font-weight: 700;
  margin: 0 0 18px !important;
}
.trainer-hero-text p,
.trainer-hero-text li {
  color: #fff !important;
}
.trainer-hero-text p { margin: 0 0 14px !important; }
.trainer-creds {
  list-style: disc;
  margin: 0 0 16px;
  padding-left: 1.2em;
}
.trainer-creds li { margin-bottom: 8px; }
.trainer-extra-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
  max-width: none;
  margin: 0;
  justify-content: stretch;
  align-items: stretch;
  box-sizing: border-box;
}
.trainer-extra-cell {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: transparent;
  border: 1px solid transparent;
  text-decoration: none;
  transition: box-shadow 0.45s ease, border-color 0.45s ease;
}
.trainer-extra-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0 !important;
  border-radius: 0 !important;
  background: transparent;
  transition: transform 0.35s ease;
}
.trainer-extra-cell:hover {
  border-color: rgba(255, 26, 26, 0.95);
  box-shadow:
    0 0 0 1px rgba(255, 26, 26, 0.95),
    0 0 18px rgba(255, 26, 26, 0.6),
    0 0 40px rgba(255, 26, 26, 0.35),
    0 0 70px rgba(255, 26, 26, 0.15);
}
.trainer-extra-cell:hover img {
  transform: scale(1.04);
}
@media (max-width: 860px) {
  .trainer-hero {
    grid-template-columns: 1fr;
  }
  .trainer-hero-photo {
    max-width: 320px;
  }
  .trainer-extra-photos {
    grid-template-columns: 1fr;
  }
}


/* Legal documents */
.legal-doc h2 {
  margin-top: 1.6em !important;
}
.legal-doc p, .legal-doc li {
  color: #fff;
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 10000;
  max-width: 720px;
  margin: 0 auto;
  background: #0a0a0a;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  padding: 18px 20px;
  font-family: var(--font-heading);
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.55;
  color: #fff;
}
.cookie-banner a {
  color: #FF1A1A;
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-btn {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.28);
  background: transparent;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cookie-btn--accept {
  background: #FF1A1A;
  border-color: #FF1A1A;
  color: #fff;
}
.cookie-btn:hover { filter: brightness(1.08); }
@media (max-width: 560px) {
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; }
}


/* Join club page — vision layout */
.page-join .page-content { display: none; }
.page-join .page-head {
  margin-bottom: 28px;
}
.join-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 36px 40px;
  align-items: start;
  margin-top: 0;
}
.join-left {
  min-width: 0;
}
.join-intro { color: #111; }
.join-kicker {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FF1A1A;
  margin: 0 0 12px;
}
.join-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.1;
  color: #111 !important;
  margin: 0 0 18px !important;
}
.join-info-tile {
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 18px 18px 16px;
  margin: 0 0 14px;
  box-sizing: border-box;
  width: 100%;
}
.join-lead {
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1.55;
  color: #fff !important;
  margin: 0 0 18px;
  max-width: none;
}
.join-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.join-steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
}
.join-step-num {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
  color: #FF1A1A;
  line-height: 1.1;
}
.join-steps strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  color: #fff !important;
  margin-bottom: 4px;
}
.join-steps p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #fff !important;
}
.join-halls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
  width: 100%;
}
.join-hall {
  display: block;
  padding: 14px 16px;
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid rgba(0,0,0,0.12);
  text-decoration: none !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.join-hall:hover {
  border-color: rgba(255, 26, 26, 0.95);
  box-shadow: 0 0 0 1px rgba(255, 26, 26, 0.95), 0 0 18px rgba(255, 26, 26, 0.35);
}
.join-hall-name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 4px;
}
.join-hall-addr {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.35;
}
.join-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
}
.join-quick a {
  color: #111 !important;
  text-decoration: none !important;
}
.join-quick a:hover { color: #FF1A1A !important; }

.join-panel {
  background: #000;
  border: 1px solid rgba(255,255,255,0.1);
  padding: clamp(22px, 3vw, 32px);
  color: #fff;
}
.join-panel h2 {
  margin: 0 0 6px !important;
  color: #fff !important;
  font-size: clamp(22px, 2.6vw, 28px) !important;
  text-transform: uppercase;
  font-style: italic;
}
.join-panel-note {
  margin: 0 0 22px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.join-form { display: flex; flex-direction: column; gap: 14px; }
.join-row { display: grid; gap: 12px; }
.join-row--2 { grid-template-columns: 1fr 1fr; }
.join-field span,
.join-fieldset legend {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 7px;
}
.join-fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.join-field input[type="text"],
.join-field input[type="email"],
.join-field input[type="tel"],
.join-field input[type="number"],
.join-field textarea {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 15px;
  margin: 0;
}
.join-field textarea { resize: vertical; min-height: 96px; }
.join-field input:focus,
.join-field textarea:focus {
  outline: none;
  border-color: #FF1A1A;
}
.join-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.join-chip {
  cursor: pointer;
}
.join-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.join-chip span {
  display: inline-block;
  margin: 0 !important;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.join-chip input:checked + span,
.join-chip:hover span {
  border-color: #FF1A1A;
  background: rgba(255, 26, 26, 0.15);
  color: #fff !important;
}
.join-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
}
.join-consent input { margin-top: 3px; }
.join-consent a { color: #FF1A1A !important; }
.join-submit {
  appearance: none;
  border: none;
  cursor: pointer;
  margin-top: 6px;
  padding: 14px 22px;
  background: linear-gradient(135deg, #fff, #ddd);
  color: #000;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.join-submit:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.join-form-status {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.45;
}
.join-form-status.is-ok { color: #fff; }
@media (max-width: 960px) {
  .join-layout { grid-template-columns: 1fr; }
  .join-panel { order: -1; }
}
@media (max-width: 560px) {
  .join-row--2,
  .join-halls { grid-template-columns: 1fr; }
}


/* Contacts page — vision layout */
.page-contacts .page-content { display: none; }
.page-contacts .page-head {
  margin-bottom: 28px;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 36px 40px;
  align-items: start;
  margin-top: 0;
}
.contact-left { min-width: 0; }
.contact-intro { color: #111; }
.contact-kicker {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FF1A1A;
  margin: 0 0 12px;
}
.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.1;
  color: #111 !important;
  margin: 0 0 18px !important;
}
.contact-info-tile {
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 18px 18px 16px;
  margin: 0 0 14px;
  box-sizing: border-box;
  width: 100%;
}
.contact-lead {
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1.55;
  color: #fff !important;
  margin: 0;
  max-width: none;
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.contact-channel {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.12);
  text-decoration: none !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.contact-channel:hover {
  border-color: rgba(255, 26, 26, 0.95);
  box-shadow: 0 0 0 1px rgba(255, 26, 26, 0.95), 0 0 18px rgba(255, 26, 26, 0.35);
}
.contact-channel-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FF1A1A;
}
.contact-channel-value {
  font-family: var(--font-heading);
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 700;
  color: #fff !important;
  line-height: 1.2;
}
.contact-halls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
  width: 100%;
}
.contact-hall {
  display: block;
  padding: 14px 16px;
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.12);
  text-decoration: none !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.contact-hall:hover {
  border-color: rgba(255, 26, 26, 0.95);
  box-shadow: 0 0 0 1px rgba(255, 26, 26, 0.95), 0 0 18px rgba(255, 26, 26, 0.35);
}
.contact-hall-name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 4px;
}
.contact-hall-addr {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.35;
}
.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 20px;
}
.contact-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.12);
  text-decoration: none !important;
  color: #fff !important;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.contact-social a:hover {
  border-color: rgba(255, 26, 26, 0.95);
  box-shadow: 0 0 0 1px rgba(255, 26, 26, 0.95), 0 0 14px rgba(255, 26, 26, 0.3);
}
.contact-social img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.contact-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
}
.contact-quick a {
  color: #111 !important;
  text-decoration: none !important;
}
.contact-quick a:hover { color: #FF1A1A !important; }

.contact-map {
  margin-top: 40px;
}
.contact-map-head {
  margin-bottom: 14px;
}
.contact-map-head h2 {
  margin: 0 0 6px !important;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: #111 !important;
}
.contact-map-head p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 15px;
  color: #111;
}
.contact-map-frame {
  background: #000;
  border: 1px solid rgba(0, 0, 0, 0.2);
  overflow: hidden;
  line-height: 0;
}
.contact-map-frame iframe {
  display: block;
  width: 100%;
  min-height: 380px;
  border: 0;
}

@media (max-width: 960px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-panel { order: -1; }
}
@media (max-width: 560px) {
  .contact-halls { grid-template-columns: 1fr; }
  .contact-channel {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* Schedule pages (dvorec / rostok) */
.page-schedule .page-content { display: none; }
.page-schedule .page-head { margin-bottom: 22px; }
.sched-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  gap: 36px 40px;
  align-items: start;
}
.sched-left { min-width: 0; }
.sched-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 22px;
}
.sched-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 48px;
  padding: 12px 14px;
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #fff !important;
  text-decoration: none !important;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.sched-tab:hover {
  border-color: rgba(255, 26, 26, 0.7);
}
.sched-tab.is-active {
  background: #000;
  border-color: #FF1A1A;
  box-shadow: 0 0 0 1px #FF1A1A, 0 0 16px rgba(255, 26, 26, 0.35);
  color: #fff !important;
}
.sched-intro { color: #111; }
.sched-kicker {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FF1A1A;
  margin: 0 0 12px;
}
.sched-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.1;
  color: #111 !important;
  margin: 0 0 18px !important;
}
.sched-info-tile {
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 18px 18px 16px;
  margin: 0 0 14px;
  box-sizing: border-box;
  width: 100%;
}
.sched-lead {
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1.55;
  color: #fff !important;
  margin: 0;
}
.sched-facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 14px;
}
.sched-fact {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.sched-fact-num {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
  color: #FF1A1A;
  line-height: 1.1;
}
.sched-fact strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  color: #fff !important;
  margin-bottom: 4px;
}
.sched-fact p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #fff !important;
}
.sched-hall {
  display: block;
  padding: 14px 16px;
  margin: 0 0 18px;
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.12);
  text-decoration: none !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.sched-hall:hover {
  border-color: rgba(255, 26, 26, 0.95);
  box-shadow: 0 0 0 1px rgba(255, 26, 26, 0.95), 0 0 18px rgba(255, 26, 26, 0.35);
}
.sched-hall-name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 4px;
}
.sched-hall-addr {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.35;
}
.sched-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
}
.sched-quick a {
  color: #111 !important;
  text-decoration: none !important;
}
.sched-quick a:hover { color: #FF1A1A !important; }

.sched-panel .sched-side-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sched-side-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.sched-side-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.sched-side-list strong {
  font-family: var(--font-heading);
  font-size: 15px;
  color: #fff;
}
.sched-side-list span {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.75);
}
.sched-side-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sched-side-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #fff, #ddd);
  color: #000 !important;
  text-decoration: none !important;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.sched-side-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.sched-side-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff !important;
}
.sched-side-btn--ghost:hover {
  border-color: #FF1A1A;
  color: #FF1A1A !important;
  filter: none;
}

.sched-calendar { margin-top: 40px; }
.sched-calendar-head { margin-bottom: 14px; }
.sched-calendar-head h2 {
  margin: 0 0 6px !important;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: #111 !important;
}
.sched-calendar-head p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 15px;
  color: #111;
}
.sched-calendar-frame {
  background: #000;
  border: 1px solid rgba(0, 0, 0, 0.2);
  overflow: hidden;
  line-height: 0;
}
.sched-calendar-frame iframe {
  display: block;
  width: 100%;
  min-height: 640px;
  border: 0;
}

@media (max-width: 960px) {
  .sched-layout { grid-template-columns: 1fr; }
  .sched-panel { order: -1; }
}
@media (max-width: 560px) {
  .sched-tabs,
  .sched-side-actions { grid-template-columns: 1fr; }
}

/* Discipline pages (sambo / box / arb) */
.page-discipline .page-content { display: none; }
.disc-page-text {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 28px;
}
.disc-page-text-inner {
  padding: clamp(24px, 4vw, 48px);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1.7;
}
.disc-page-text-inner h2 {
  color: #fff !important;
  margin: 0 0 14px !important;
  font-size: clamp(20px, 2.6vw, 28px) !important;
  text-transform: uppercase;
  font-style: italic;
}
.disc-page-text-inner p {
  color: #fff !important;
  margin: 0 0 1em;
}
.disc-page-text-inner p:last-child { margin-bottom: 0; }
.disc-page-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}
.disc-page-photo {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: transparent;
  border: 1px solid transparent;
  text-decoration: none;
  transition: box-shadow 0.45s ease, border-color 0.45s ease;
}
.disc-page-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0 !important;
  border-radius: 0 !important;
  transition: transform 0.35s ease;
}
.disc-page-photo:hover {
  border-color: rgba(255, 26, 26, 0.95);
  box-shadow:
    0 0 0 1px rgba(255, 26, 26, 0.95),
    0 0 18px rgba(255, 26, 26, 0.6),
    0 0 40px rgba(255, 26, 26, 0.35),
    0 0 70px rgba(255, 26, 26, 0.15);
}
.disc-page-photo:hover img {
  transform: scale(1.04);
}
@media (max-width: 700px) {
  .disc-page-photos { grid-template-columns: 1fr; }
}

/* Photo lightbox (trainers / disciplines) */
.photo-lb {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 64px;
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.photo-lb.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.photo-lb-stage {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-lb-img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, calc(100vw - 128px));
  max-height: calc(100vh - 112px);
  object-fit: contain;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.55);
}
.photo-lb-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.photo-lb-close:hover {
  color: #FF1A1A;
  border-color: #FF1A1A;
}
.photo-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.photo-lb-nav:hover {
  color: #FF1A1A;
  border-color: #FF1A1A;
}
.photo-lb-prev { left: 12px; }
.photo-lb-next { right: 12px; }
.photo-lb-nav[hidden],
.photo-lb-close[hidden] { display: none !important; }
body.photo-lb-lock { overflow: hidden; }
@media (max-width: 700px) {
  .photo-lb { padding: 52px 16px 16px; }
  .photo-lb-img {
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 96px);
  }
  .photo-lb-nav {
    width: 40px;
    height: 40px;
    font-size: 26px;
  }
  .photo-lb-prev { left: 4px; }
  .photo-lb-next { right: 4px; }
}

/* ===== Equip catalog redesign (equip13) ===== */
.equip-about {
  position: relative;
  margin: 0 0 34px;
  padding: 22px 24px 22px 26px;
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid #FF1A1A;
}
.equip-about p { margin: 0 0 12px; color: #fff !important; }
.equip-about p:last-child { margin-bottom: 0; }
.equip-about-lead {
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.5;
}
.equip-about-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86) !important;
}
.equip-about-cta {
  font-family: var(--font-heading);
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.45;
  color: #FF1A1A !important;
}

.equip-catalog-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 16px;
  margin-bottom: 16px;
}
.equip-catalog-head h2 { margin: 0 !important; }

.equip-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}
.equip-chip {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(20, 20, 20, 0.5);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 9px 15px;
  min-height: 40px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.equip-chip:hover { border-color: #FF1A1A; color: #FF1A1A; }
.equip-chip.is-active {
  background: linear-gradient(135deg, #fff, #ddd);
  border-color: transparent;
  color: #000;
}
.equip-tile[hidden] { display: none !important; }

.equip-grid {
  align-items: start;
  gap: 18px;
}
.equip-tile {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.equip-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 26, 26, 0.45);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}
.equip-tile-media { position: relative; }
.equip-tile-zoom {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.equip-tile-zoom svg { width: 17px; height: 17px; }
.equip-tile-media:hover .equip-tile-zoom { opacity: 1; transform: translateY(0); }

.equip-tile-body { min-height: 132px; }
.equip-tile-teaser {
  margin: 0 0 12px !important;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82) !important;
  flex: 0 0 auto !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.equip-tile-more { margin: 0 0 4px; }
.equip-tile-more > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FF1A1A;
  min-height: 34px;
}
.equip-tile-more > summary::-webkit-details-marker { display: none; }
.equip-tile-more > summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}
.equip-tile-more[open] > summary::after { transform: rotate(-135deg) translateY(1px); }
.equip-tile-more[open] > summary { margin-bottom: 6px; }
.equip-tile-detail p,
.equip-tile-detail ol {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86) !important;
}
.equip-tile-detail p { margin: 0 0 10px !important; flex: none !important; }
.equip-tile-detail > :last-child { margin-bottom: 0 !important; }
.equip-tile-price {
  margin: auto 0 0 !important;
  padding-top: 12px;
}
@media (max-width: 960px) {
  .equip-grid { gap: 14px; }
}
@media (max-width: 560px) {
  .equip-about { padding: 18px 16px 18px 18px; }
  .equip-filters { gap: 6px; }
  .equip-chip { flex: 1 1 calc(50% - 3px); padding: 9px 10px; font-size: 11px; }
  .equip-tile-body { padding: 14px 14px 16px; }
  .equip-tile-zoom { opacity: 1; transform: none; }
}

/* equip15: wider fact strips, full text visible on mobile */
.equip-facts { height: auto !important; }
.equip-fact {
  flex: 0 0 auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  grid-template-columns: 52px minmax(0, 1fr) !important;
  align-items: start !important;
}
.equip-fact > div { min-width: 0; overflow-wrap: break-word; }
@media (max-width: 960px) {
  .equip-left {
    margin-left: -16px !important;
    margin-right: -16px !important;
    width: calc(100% + 32px) !important;
    max-width: none !important;
  }
  .equip-facts { gap: 10px !important; }
  .equip-fact {
    border-left: none !important;
    border-right: none !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}
@media (max-width: 560px) {
  .equip-fact {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    padding: 14px 16px !important;
  }
  .equip-fact--intro .equip-fact-num { display: none !important; }
  .equip-fact-num { font-size: 16px !important; }
  .equip-lead,
  .equip-fact p { font-size: 13px !important; line-height: 1.55 !important; }
  .equip-fact strong { font-size: 15px !important; }
}

.sched-calendar-note {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 13px;
  line-height: 1.45;
  color: rgba(17, 17, 17, 0.72);
}
.sched-calendar-fallback-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  background: #111;
  border: 1px solid #FF1A1A;
  color: #fff !important;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.sched-calendar-fallback-btn:hover {
  box-shadow: 0 0 16px rgba(255, 26, 26, 0.35);
  transform: translateY(-1px);
}
.sched-calendar-fallback {
  margin: 12px 0 0;
  font-family: var(--font-heading);
  font-size: 14px;
}
.sched-calendar-fallback a {
  color: #FF1A1A !important;
  text-decoration: none;
}
.sched-calendar-fallback a:hover { text-decoration: underline; }
