/**
 * 開催概要ページ
 * page-overview.php 専用。共通ページや投稿には影響させない。
 */

.tz-overview-page {
  --ov-red: #d71920;
  --ov-red-bright: #ff3138;
  --ov-ink: #050606;
  --ov-panel: #0d0d0d;
  --ov-paper: #f2eee8;
  --ov-muted: rgba(242, 238, 232, 0.7);
  --ov-line: rgba(255, 255, 255, 0.14);
  --ov-container: min(1280px, calc(100vw - 96px));
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #060707;
  background-size: 48px 48px;
  color: var(--ov-paper);
  isolation: isolate;
  overflow: clip;
}

.tz-overview-page::before {
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: max(22px, calc((100vw - 1480px) / 2));
  width: 1px;
  content: "";
  background: linear-gradient(transparent 8%, rgba(215, 25, 32, 0.24) 35%, rgba(255, 255, 255, 0.08) 80%, transparent);
  pointer-events: none;
}

.tz-overview-page *,
.tz-overview-page *::before,
.tz-overview-page *::after {
  box-sizing: border-box;
}

.tz-ov-container {
  width: var(--ov-container);
  margin-inline: auto;
}

.tz-ov-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  color: var(--ov-red-bright);
  font-family: var(--tz-font-mono);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

.tz-ov-eyebrow::before {
  width: 32px;
  height: 1px;
  content: "";
  background: currentColor;
}

.tz-ov-section-head {
  max-width: 800px;
  margin-bottom: clamp(44px, 6vw, 78px);
}

.tz-ov-section-head--wide {
  display: grid;
  max-width: none;
  align-items: end;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  column-gap: clamp(48px, 8vw, 120px);
}

.tz-ov-section-head--wide .tz-ov-eyebrow {
  grid-column: 1 / -1;
}

.tz-ov-section-head--wide .tz-ov-section-lead {
  margin: 0 0 0.25em;
}

.tz-ov-section-title {
  margin: 0;
  color: var(--ov-paper);
  font-family: var(--tz-font-title);
  font-size: clamp(2.6rem, 5.5vw, 5.9rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
}

.tz-ov-section-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--ov-muted);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 2;
}

.tz-ov-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 15px 22px 15px 26px;
  border: 1px solid transparent;
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-decoration: none !important;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.tz-ov-button::after,
.tz-ov-text-link::after {
  display: inline-block;
  width: auto;
  height: auto;
  flex: 0 0 auto;
  margin-left: 2px;
  content: "\2192";
  color: currentColor;
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1;
  background: none;
  transition: transform 180ms ease;
}

.tz-ov-button--primary {
  border-color: var(--ov-red);
  background: var(--ov-red);
  box-shadow: 0 14px 34px rgba(120, 0, 7, 0.3);
}

.tz-ov-button--ghost {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(5, 6, 6, 0.62);
  backdrop-filter: blur(8px);
}

.tz-ov-text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ov-paper) !important;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none !important;
}

/* Hero */
.tz-ov-hero {
  position: relative;
  min-height: min(860px, calc(100svh - 24px));
  padding: clamp(120px, 13vw, 188px) 0 0;
  border-bottom: 1px solid rgba(215, 25, 32, 0.42);
  background:
    linear-gradient(90deg, rgba(60, 0, 3, 0.42), transparent 42%),
    radial-gradient(circle at 76% 34%, rgba(215, 25, 32, 0.2), transparent 31%),
    linear-gradient(130deg, #100607 0%, #060707 48%, #020303 100%);
  overflow: hidden;
}

.tz-ov-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 13%, rgba(255, 255, 255, 0.035) 13% 13.08%, transparent 13.08% 87%, rgba(255, 255, 255, 0.035) 87% 87.08%, transparent 87.08%),
    repeating-linear-gradient(0deg, transparent 0 5px, rgba(255, 255, 255, 0.018) 6px);
  pointer-events: none;
}

.tz-ov-hero__texture {
  position: absolute;
  top: 0;
  right: 8%;
  width: 34vw;
  min-width: 440px;
  height: 100%;
  opacity: 0.48;
  background:
    linear-gradient(90deg, transparent 48%, rgba(215, 25, 32, 0.26) 49% 51%, transparent 52%) 0 0 / 96px 100%,
    linear-gradient(0deg, transparent 48%, rgba(255, 255, 255, 0.06) 49% 51%, transparent 52%) 0 0 / 100% 120px;
  transform: skewX(-8deg);
  pointer-events: none;
}

.tz-ov-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: var(--ov-container);
  margin: 0 auto;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(52px, 8vw, 128px);
}

.tz-ov-hero__copy {
  max-width: 760px;
}

.tz-ov-hero__title {
  margin: 0;
  font-family: var(--tz-font-title);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.tz-ov-hero__title > span {
  display: block;
  font-size: clamp(4.6rem, 9.5vw, 9.6rem);
  text-shadow: 0 0 46px rgba(215, 25, 32, 0.17);
}

.tz-ov-hero__title > small {
  display: block;
  margin-top: 24px;
  color: rgba(242, 238, 232, 0.86);
  font-size: clamp(1.3rem, 2.15vw, 2.2rem);
  font-weight: 500;
  line-height: 1.45;
}

.tz-ov-hero__lead {
  max-width: 690px;
  margin: 34px 0 0;
  color: var(--ov-muted);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 2;
}

.tz-ov-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.tz-ov-hero__visual {
  position: relative;
  display: flex;
  min-height: 470px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(150deg, transparent 30%, rgba(215, 25, 32, 0.15)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 13px),
    #090909;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5), inset 0 0 80px rgba(215, 25, 32, 0.08);
  color: var(--ov-paper);
  text-align: center;
}

.tz-ov-hero__visual::before,
.tz-ov-placeholder::before {
  position: absolute;
  inset: 14px;
  z-index: 2;
  content: "";
  border: 1px solid rgba(215, 25, 32, 0.3);
  pointer-events: none;
}

.tz-ov-hero__visual strong,
.tz-ov-placeholder strong {
  font-family: var(--tz-font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.42em;
}

.tz-ov-hero__visual small,
.tz-ov-placeholder small {
  margin-top: 11px;
  color: var(--ov-red-bright);
  font-family: var(--tz-font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
}

.tz-ov-placeholder__index {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 30px;
  color: rgba(242, 238, 232, 0.5);
  font-family: var(--tz-font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.18em;
}

.tz-ov-hero__facts {
  position: relative;
  z-index: 1;
  display: grid;
  width: var(--ov-container);
  margin: clamp(64px, 8vh, 100px) auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tz-ov-hero__facts > div {
  display: grid;
  min-height: 112px;
  align-content: center;
  padding: 22px clamp(20px, 3vw, 40px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  gap: 9px;
}

.tz-ov-hero__facts > div:first-child {
  padding-left: 0;
}

.tz-ov-hero__facts > div:last-child {
  border-right: 0;
}

.tz-ov-hero__facts dt {
  color: var(--ov-red-bright);
  font-family: var(--tz-font-mono);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.tz-ov-hero__facts dd {
  margin: 0;
  color: var(--ov-paper);
  font-size: clamp(0.92rem, 1.3vw, 1.08rem);
  font-weight: 700;
  line-height: 1.6;
}

/* Intro */
.tz-ov-intro {
  position: relative;
  padding: clamp(100px, 12vw, 180px) 0;
  background:
    radial-gradient(circle at 4% 50%, rgba(215, 25, 32, 0.14), transparent 30%),
    linear-gradient(180deg, #080909, #0a0808);
}

.tz-ov-intro__inner {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  gap: clamp(60px, 10vw, 150px);
}

.tz-ov-intro__inner .tz-ov-section-head {
  margin: 0;
}

.tz-ov-intro__body > p {
  margin: 0;
  color: var(--ov-muted);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 2.15;
}

.tz-ov-notice {
  margin-top: 36px;
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 2px solid var(--ov-red);
  background: rgba(255, 255, 255, 0.035);
}

.tz-ov-notice span {
  display: block;
  margin-bottom: 10px;
  color: var(--ov-red-bright);
  font-family: var(--tz-font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.tz-ov-notice p {
  margin: 0;
  color: rgba(242, 238, 232, 0.78);
  font-size: 0.9rem;
  line-height: 1.85;
}

/* Program summary and tab panels */
.tz-ov-programs {
  padding: clamp(110px, 13vw, 190px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(100deg, rgba(76, 0, 4, 0.18), transparent 32%),
    #060707;
}

.tz-ov-program-summary {
  display: grid;
  margin-bottom: clamp(86px, 10vw, 140px);
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}

.tz-ov-program-card {
  position: relative;
  min-height: 390px;
  padding: clamp(28px, 3.5vw, 48px);
  border: 1px solid var(--ov-line);
  background:
    linear-gradient(145deg, rgba(215, 25, 32, 0.08), transparent 46%),
    var(--ov-panel);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.tz-ov-program-card--adult {
  border-color: rgba(215, 25, 32, 0.44);
  background:
    radial-gradient(circle at 100% 0, rgba(215, 25, 32, 0.2), transparent 42%),
    var(--ov-panel);
}

.tz-ov-program-card--gym {
  min-height: 340px;
  margin-top: 50px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 55%),
    #101010;
}

.tz-ov-program-card__number {
  position: absolute;
  top: 16px;
  right: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.055);
  font-family: var(--tz-font-mono);
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 700;
  line-height: 1;
}

.tz-ov-program-card__category {
  margin: 0 0 20px;
  color: var(--ov-red-bright);
  font-family: var(--tz-font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.tz-ov-program-card h3 {
  margin: 0;
  color: var(--ov-paper);
  font-family: var(--tz-font-title);
  font-size: clamp(2.1rem, 3.5vw, 2.8rem);
  letter-spacing: 0;
  line-height: 1.2;
}

.tz-ov-program-card > p:not([class]) {
  max-width: 540px;
  margin: 24px 0 0;
  color: var(--ov-muted);
  font-size: 0.94rem;
  line-height: 1.9;
}

.tz-ov-program-card dl {
  display: grid;
  margin: 34px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tz-ov-program-card dl > div {
  padding: 18px 12px 0 0;
}

.tz-ov-program-card dt {
  color: rgba(242, 238, 232, 0.46);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.tz-ov-program-card dd {
  margin: 6px 0 0;
  color: var(--ov-paper);
  font-size: 0.91rem;
  font-weight: 700;
  line-height: 1.5;
}

.tz-tabs {
  position: relative;
  z-index: 2;
  display: grid;
  margin: 0 0 24px;
  border: 1px solid var(--ov-line);
  background: #080909;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tz-tabs__btn {
  position: relative;
  min-height: 68px;
  padding: 16px 20px;
  border: 0;
  border-right: 1px solid var(--ov-line);
  background: transparent;
  color: rgba(242, 238, 232, 0.6);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.tz-tabs__btn:last-child {
  border-right: 0;
}

.tz-tabs__btn::after {
  position: absolute;
  right: 20px;
  bottom: 0;
  left: 20px;
  height: 2px;
  content: "";
  background: var(--ov-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.tz-tabs__btn[aria-selected="true"] {
  background: rgba(215, 25, 32, 0.12);
  color: #fff;
}

.tz-tabs__btn[aria-selected="true"]::after {
  transform: scaleX(1);
}

.tz-tabs__btn:focus-visible {
  outline: 2px solid var(--ov-red-bright);
  outline-offset: -4px;
}

.tz-ov-panel {
  position: relative;
  padding: clamp(38px, 5vw, 72px);
  border: 1px solid var(--ov-line);
  background:
    radial-gradient(circle at 100% 0, rgba(215, 25, 32, 0.13), transparent 35%),
    linear-gradient(145deg, #121111, #090a0a);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.tz-ov-panel[hidden] {
  display: none;
}

.tz-ov-panel--adult {
  background:
    radial-gradient(circle at 90% 10%, rgba(215, 25, 32, 0.2), transparent 32%),
    linear-gradient(145deg, #160b0c, #080909 58%);
}

.tz-ov-panel--gym {
  background:
    radial-gradient(circle at 80% 0, rgba(255, 255, 255, 0.08), transparent 35%),
    linear-gradient(145deg, #141414, #090a0a);
}

.tz-ov-panel__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: clamp(42px, 6vw, 74px);
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.tz-ov-panel__header .tz-ov-eyebrow {
  margin-bottom: 12px;
}

.tz-ov-panel__category {
  margin: 0 0 8px;
  color: rgba(242, 238, 232, 0.54);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.tz-ov-panel__header h2 {
  margin: 0;
  color: var(--ov-paper);
  font-family: var(--tz-font-title);
  font-size: clamp(3rem, 6vw, 7.3rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.tz-ov-panel__subtitle {
  margin: 16px 0 0;
  color: rgba(242, 238, 232, 0.76);
  font-family: var(--tz-font-title);
  font-size: clamp(1rem, 1.7vw, 1.4rem);
  line-height: 1.55;
}

.tz-ov-panel__number {
  margin: 0;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--tz-font-mono);
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 700;
  line-height: 0.75;
}

.tz-ov-panel__layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: clamp(44px, 7vw, 100px);
}

.tz-ov-placeholder {
  position: relative;
  display: flex;
  min-height: 520px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(150deg, transparent 28%, rgba(215, 25, 32, 0.16)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 13px),
    #090909;
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.8);
  color: var(--ov-paper);
  overflow: hidden;
}

.tz-ov-placeholder--image {
  isolation: isolate;
  background: #090909;
}

.tz-ov-placeholder--image::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 18% 12%, rgba(215, 25, 32, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.48)),
    repeating-linear-gradient(135deg, transparent 0, transparent 18px, rgba(255, 255, 255, 0.035) 19px, rgba(255, 255, 255, 0.035) 20px);
  pointer-events: none;
}

.tz-ov-placeholder__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  filter: brightness(0.74) contrast(1.14) saturate(0.82) sepia(0.1);
  object-fit: cover;
  object-position: center center;
}

.tz-ov-placeholder--image .tz-ov-placeholder__index,
.tz-ov-placeholder--image small {
  z-index: 2;
}

.tz-ov-placeholder--image small {
  position: absolute;
  right: 30px;
  bottom: 28px;
  margin-top: 0;
  color: rgba(242, 238, 232, 0.78);
}

.tz-ov-panel--adult .tz-ov-placeholder {
  box-shadow: inset 0 0 100px rgba(100, 0, 5, 0.34);
}

.tz-ov-panel__lead {
  margin: 0 0 40px;
  color: var(--ov-paper);
  font-size: clamp(1.08rem, 1.7vw, 1.36rem);
  font-weight: 700;
  line-height: 1.9;
}

.tz-ov-story {
  padding: 34px 0 0 clamp(24px, 4vw, 52px);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 1px solid rgba(215, 25, 32, 0.38);
}

.tz-ov-story__label {
  margin: 0 0 16px;
  color: var(--ov-red-bright);
  font-family: var(--tz-font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.26em;
}

.tz-ov-story h3 {
  margin: 0 0 24px;
  color: var(--ov-paper);
  font-family: var(--tz-font-title);
  font-size: clamp(1.55rem, 2.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.45;
}

.tz-ov-story p:not(.tz-ov-story__label) {
  margin: 0 0 16px;
  color: var(--ov-muted);
  font-size: 0.96rem;
  line-height: 2;
}

.tz-ov-facts {
  display: grid;
  margin: clamp(46px, 7vw, 86px) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tz-ov-facts > div {
  min-height: 116px;
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
}

.tz-ov-facts dt {
  margin-bottom: 9px;
  color: var(--ov-red-bright);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.tz-ov-facts dd {
  margin: 0;
  color: var(--ov-paper);
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.65;
}

.tz-ov-panel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 32px;
}

.tz-ov-panel__footer > p {
  max-width: 780px;
  margin: 0;
  color: rgba(242, 238, 232, 0.64);
  font-size: 0.85rem;
  line-height: 1.8;
}

.tz-ov-panel__footer > p span {
  margin-right: 12px;
  color: var(--ov-red-bright);
  font-family: var(--tz-font-mono);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

/* Event information */
.tz-ov-event-info {
  padding: clamp(110px, 13vw, 190px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 92% 15%, rgba(215, 25, 32, 0.11), transparent 28%),
    #0a0a0a;
}

.tz-ov-info-board {
  border: 1px solid var(--ov-line);
  background:
    linear-gradient(120deg, rgba(215, 25, 32, 0.07), transparent 40%),
    var(--ov-panel);
}

.tz-ov-info-board dl {
  display: grid;
  margin: 0;
  grid-template-columns: 1fr 1fr;
}

.tz-ov-info-board dl > div {
  display: grid;
  min-height: 112px;
  align-items: center;
  padding: 24px clamp(24px, 4vw, 48px);
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  grid-template-columns: 110px 1fr;
  gap: 26px;
}

.tz-ov-info-board dl > div:nth-child(even) {
  border-right: 0;
}

.tz-ov-info-board dl > div:last-child {
  border-bottom: 0;
  grid-column: 1 / -1;
}

.tz-ov-info-board dt {
  color: var(--ov-red-bright);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.tz-ov-info-board dd {
  margin: 0;
  color: var(--ov-paper);
  font-size: clamp(0.92rem, 1.25vw, 1.04rem);
  font-weight: 600;
  line-height: 1.75;
}

/* Ticket CTA */
.tz-ov-ticket {
  position: relative;
  padding: clamp(90px, 11vw, 160px) 0;
  border-top: 1px solid rgba(215, 25, 32, 0.45);
  border-bottom: 1px solid rgba(215, 25, 32, 0.45);
  background:
    radial-gradient(circle at 18% 45%, rgba(255, 38, 45, 0.22), transparent 32%),
    linear-gradient(110deg, #3b0508 0%, #130708 42%, #070808 100%);
  overflow: hidden;
}

.tz-ov-ticket::before {
  position: absolute;
  inset: 0;
  content: "";
  background: repeating-linear-gradient(115deg, transparent 0 58px, rgba(255, 255, 255, 0.022) 59px 60px);
  pointer-events: none;
}

.tz-ov-ticket__inner {
  position: relative;
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.52fr);
  gap: clamp(60px, 10vw, 150px);
}

.tz-ov-ticket__copy h2 {
  margin: 0;
  color: var(--ov-paper);
  font-family: var(--tz-font-title);
  font-size: clamp(2.5rem, 5.4vw, 5.8rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.18;
}

.tz-ov-ticket__copy > p:last-child {
  max-width: 720px;
  margin: 30px 0 0;
  color: rgba(242, 238, 232, 0.72);
  font-size: 1rem;
  line-height: 2;
}

.tz-ov-ticket__action {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(3, 4, 4, 0.52);
  backdrop-filter: blur(8px);
}

.tz-ov-ticket__action p {
  margin: 0 0 24px;
  color: var(--ov-paper);
  font-size: 0.94rem;
  line-height: 1.7;
}

.tz-ov-ticket__action p span {
  display: block;
  margin-bottom: 6px;
  color: var(--ov-red-bright);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.tz-ov-ticket__action .tz-ov-button {
  width: 100%;
}

/* Visitor guide */
.tz-ov-visitor {
  padding: clamp(110px, 13vw, 190px) 0;
  background: #070808;
}

.tz-ov-guide-grid {
  display: grid;
  border-top: 1px solid var(--ov-line);
  border-left: 1px solid var(--ov-line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tz-ov-guide-card {
  display: flex;
  min-height: 330px;
  padding: clamp(26px, 3vw, 38px);
  border-right: 1px solid var(--ov-line);
  border-bottom: 1px solid var(--ov-line);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.035), transparent 62%);
  flex-direction: column;
}

.tz-ov-guide-card__mark {
  margin: 0 0 34px;
  color: var(--ov-red-bright);
  font-family: var(--tz-font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.tz-ov-guide-card h3 {
  margin: 0;
  color: var(--ov-paper);
  font-family: var(--tz-font-title);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 600;
  letter-spacing: 0;
}

.tz-ov-guide-card > p:not(.tz-ov-guide-card__mark) {
  margin: 20px 0 28px;
  color: var(--ov-muted);
  font-size: 0.9rem;
  line-height: 1.9;
}

.tz-ov-guide-card .tz-ov-text-link {
  margin-top: auto;
}

/* Placeholder archive */
.tz-ov-photo-section {
  padding: clamp(100px, 12vw, 170px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 0.1), transparent 25%),
    #0a0909;
}

.tz-ov-photo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.tz-ov-photo-card {
  margin: 0;
  overflow: hidden;
  background: #090909;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.tz-ov-photo-card__img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.tz-ov-photo-card:first-child {
  grid-row: span 2;
}

.tz-ov-photo-card:first-child .tz-ov-photo-card__img {
  height: 698px;
}

.tz-ov-photo-card .tz-ov-placeholder {
  min-height: 340px;
}

.tz-ov-photo-card:first-child .tz-ov-placeholder {
  min-height: 698px;
}

/* Bottom CTA */
.tz-ov-bottom-cta {
  padding: clamp(88px, 10vw, 140px) 0;
  border-top: 1px solid rgba(215, 25, 32, 0.5);
  background:
    radial-gradient(circle at 88% 50%, rgba(215, 25, 32, 0.2), transparent 32%),
    linear-gradient(115deg, #140708, #050606 54%);
}

.tz-ov-bottom-cta__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.tz-ov-bottom-cta h2 {
  margin: 0;
  color: var(--ov-paper);
  font-family: var(--tz-font-title);
  font-size: clamp(2.6rem, 5vw, 5.6rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.15;
}

.tz-ov-bottom-cta__links {
  display: flex;
  min-width: min(100%, 560px);
  gap: 12px;
}

.tz-ov-bottom-cta__links .tz-ov-button {
  flex: 1 1 0;
}

@media (hover: hover) and (pointer: fine) {
  .tz-ov-button:hover {
    transform: translateY(-2px);
  }

  .tz-ov-button--primary:hover {
    border-color: var(--ov-red-bright);
    background: var(--ov-red-bright);
  }

  .tz-ov-button--ghost:hover {
    border-color: var(--ov-red);
    background: rgba(215, 25, 32, 0.1);
  }

  .tz-ov-button:hover::after,
  .tz-ov-text-link:hover::after {
    transform: translateX(3px);
  }

  .tz-tabs__btn:hover {
    background: rgba(255, 255, 255, 0.045);
    color: #fff;
  }

  .tz-ov-guide-card {
    transition: background-color 180ms ease, border-color 180ms ease;
  }

  .tz-ov-guide-card:hover {
    border-color: rgba(215, 25, 32, 0.48);
    background-color: rgba(215, 25, 32, 0.055);
  }
}

@media (max-width: 1100px) {
  .tz-overview-page {
    --ov-container: min(100% - 48px, 1080px);
  }

  .tz-ov-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
    gap: 48px;
  }

  .tz-ov-hero__visual {
    min-height: 410px;
  }

  .tz-ov-program-summary {
    grid-template-columns: 1fr 1fr;
  }

  .tz-ov-program-card--gym {
    min-height: auto;
    margin-top: 0;
    grid-column: 1 / -1;
  }

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

  .tz-ov-guide-card {
    min-height: 280px;
  }

  .tz-ov-bottom-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .tz-overview-page {
    --ov-container: calc(100% - 36px);
    background-size: 32px 32px;
  }

  .tz-overview-page::before {
    display: none;
  }

  .tz-ov-eyebrow {
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.59rem;
    letter-spacing: 0.17em;
  }

  .tz-ov-eyebrow::before {
    width: 22px;
  }

  .tz-ov-section-head,
  .tz-ov-section-head--wide {
    display: block;
    max-width: none;
    margin-bottom: 38px;
  }

  .tz-ov-section-title {
    font-size: clamp(2.35rem, 11vw, 3.7rem);
    line-height: 1.12;
  }

  .tz-ov-section-lead,
  .tz-ov-section-head--wide .tz-ov-section-lead {
    margin-top: 20px;
    font-size: 0.94rem;
    line-height: 1.9;
  }

  .tz-ov-button {
    width: 100%;
    min-height: 56px;
    gap: 20px;
  }

  .tz-ov-hero {
    min-height: auto;
    padding-top: 98px;
  }

  .tz-ov-hero__texture {
    display: none;
  }

  .tz-ov-hero__inner {
    display: flex;
    gap: 44px;
    flex-direction: column;
  }

  .tz-ov-hero__title > span {
    font-size: clamp(4rem, 20vw, 5.8rem);
  }

  .tz-ov-hero__title > small {
    margin-top: 18px;
    font-size: 1.25rem;
  }

  .tz-ov-hero__lead {
    margin-top: 24px;
    font-size: 0.95rem;
    line-height: 1.9;
  }

  .tz-ov-hero__actions {
    display: grid;
    margin-top: 28px;
    grid-template-columns: 1fr;
  }

  .tz-ov-hero__visual {
    width: 100%;
    min-height: 62svh;
  }

  .tz-ov-hero__facts {
    margin-top: 46px;
    grid-template-columns: 1fr;
  }

  .tz-ov-hero__facts > div,
  .tz-ov-hero__facts > div:first-child {
    min-height: auto;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .tz-ov-hero__facts > div:last-child {
    border-bottom: 0;
  }

  .tz-ov-intro,
  .tz-ov-programs,
  .tz-ov-event-info,
  .tz-ov-visitor,
  .tz-ov-photo-section {
    padding: 82px 0;
  }

  .tz-ov-intro__inner {
    display: block;
  }

  .tz-ov-intro__inner .tz-ov-section-head {
    margin-bottom: 34px;
  }

  .tz-ov-intro__body > p {
    font-size: 0.96rem;
    line-height: 2;
  }

  .tz-ov-notice {
    padding: 20px;
  }

  .tz-ov-program-summary {
    display: grid;
    margin-bottom: 70px;
    grid-template-columns: 1fr;
  }

  .tz-ov-program-card,
  .tz-ov-program-card--gym {
    min-height: auto;
    padding: 28px 24px;
    grid-column: auto;
  }

  .tz-ov-program-card h3 {
    font-size: 2.4rem;
  }

  .tz-ov-program-card dl {
    grid-template-columns: 1fr;
  }

  .tz-ov-program-card dl > div {
    display: flex;
    justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    gap: 20px;
  }

  .tz-tabs {
    position: sticky;
    z-index: 5;
    top: var(--swl-headerH, 49px);
  }

  .tz-tabs__btn {
    min-height: 58px;
    padding: 12px 8px;
    font-size: 0.76rem;
    letter-spacing: 0.04em;
  }

  .tz-tabs__btn::after {
    right: 8px;
    left: 8px;
  }

  .tz-ov-panel {
    padding: 28px 20px;
  }

  .tz-ov-panel__header {
    align-items: flex-start;
    margin-bottom: 32px;
    padding-bottom: 24px;
  }

  .tz-ov-panel__header h2 {
    font-size: clamp(2.8rem, 15vw, 4.4rem);
  }

  .tz-ov-panel__number {
    display: none;
  }

  .tz-ov-panel__layout {
    display: flex;
    gap: 34px;
    flex-direction: column;
  }

  .tz-ov-panel__visual,
  .tz-ov-panel__content {
    width: 100%;
  }

  .tz-ov-placeholder {
    min-height: 390px;
  }

  .tz-ov-panel__lead {
    margin-bottom: 30px;
    font-size: 1.02rem;
  }

  .tz-ov-story {
    padding: 26px 0 0 20px;
  }

  .tz-ov-story h3 {
    font-size: 1.55rem;
  }

  .tz-ov-facts {
    margin-top: 38px;
    grid-template-columns: 1fr;
  }

  .tz-ov-facts > div {
    display: grid;
    min-height: auto;
    padding: 16px;
    grid-template-columns: 86px 1fr;
    gap: 14px;
  }

  .tz-ov-panel__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .tz-ov-info-board dl {
    grid-template-columns: 1fr;
  }

  .tz-ov-info-board dl > div,
  .tz-ov-info-board dl > div:last-child {
    min-height: auto;
    padding: 20px;
    border-right: 0;
    grid-column: auto;
    grid-template-columns: 78px 1fr;
    gap: 16px;
  }

  .tz-ov-ticket {
    padding: 78px 0;
  }

  .tz-ov-ticket__inner {
    display: flex;
    gap: 40px;
    flex-direction: column;
  }

  .tz-ov-ticket__copy h2 {
    font-size: clamp(2.3rem, 11vw, 3.55rem);
  }

  .tz-ov-ticket__action {
    width: 100%;
    padding: 24px 20px;
  }

  .tz-ov-guide-grid {
    grid-template-columns: 1fr;
  }

  .tz-ov-guide-card {
    min-height: 260px;
    padding: 26px 24px;
  }

  .tz-ov-photo-grid {
    display: flex;
    gap: 14px;
    margin-right: -18px;
    padding-right: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .tz-ov-photo-card,
  .tz-ov-photo-card:first-child {
    width: min(82vw, 340px);
    flex: 0 0 min(82vw, 340px);
    grid-row: auto;
    scroll-snap-align: start;
  }

  .tz-ov-photo-card .tz-ov-placeholder,
  .tz-ov-photo-card:first-child .tz-ov-placeholder {
    min-height: 440px;
  }

  .tz-ov-photo-card__img,
  .tz-ov-photo-card:first-child .tz-ov-photo-card__img {
    height: 440px;
  }

  .tz-ov-bottom-cta {
    padding: 76px 0 104px;
  }

  .tz-ov-bottom-cta__inner {
    gap: 38px;
  }

  .tz-ov-bottom-cta h2 {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }

  .tz-ov-bottom-cta__links {
    width: 100%;
    min-width: 0;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tz-overview-page *,
  .tz-overview-page *::before,
  .tz-overview-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
