/*
Theme Name: PEACE STOCK Theme
Theme URI: https://peacestock.jp/
Author: PEACE STOCK
Description: PEACE STOCK のTOP/下層ページ用カスタムテーマ。
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.1
Text Domain: peacestock
*/

:root {
  --bg: #f6efe4;
  --bg-soft: #efe5d8;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --text: #182129;
  --text-soft: #536173;
  --line: rgba(24, 33, 41, 0.12);
  --line-strong: rgba(255, 255, 255, 0.18);
  --dark: #0c1420;
  --dark-soft: #162231;
  --orange: #ff7b30;
  --pink: #f1488f;
  --blue: #3f77ff;
  --yellow: #ffd861;
  --lime: #caef68;
  --shadow: 0 28px 70px rgba(13, 24, 39, 0.16);
  --shadow-soft: 0 20px 54px rgba(13, 24, 39, 0.1);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --container: min(1240px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: #0b121a;
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

body.is-splash-active {
  overflow: hidden;
}

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #000;
  opacity: 1;
  visibility: visible;
  clip-path: inset(0 0 0 0);
  transition:
    opacity 0.45s ease,
    visibility 0s linear 0.45s;
}

.splash-screen.is-opening {
  pointer-events: none;
  animation: splashOpenFromBottom 0.92s cubic-bezier(0.22, 0.84, 0.28, 1) forwards;
}

.splash-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-screen__title {
  margin: 0;
  color: #fff;
  text-align: center;
  display: grid;
  gap: 0.02em;
  justify-items: center;
  font-family: "Bebas Neue", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.6rem, 8.2vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: 0.08em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.splash-screen__content {
  display: grid;
  justify-items: center;
  gap: clamp(14px, 2.8vw, 24px);
}

.splash-heartline {
  width: min(82vw, 620px);
  height: clamp(24px, 4.2vw, 34px);
  overflow: visible;
}

.splash-heartline__base {
  fill: none;
  stroke: rgba(255, 255, 255, 0.24);
  stroke-width: 1.6;
}

.splash-heartline__pulse {
  fill: none;
  stroke: #fff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 320 1400;
  transform-origin: center;
  filter:
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.7))
    drop-shadow(0 0 12px rgba(63, 119, 255, 0.5));
  animation:
    splashEcgSweep 2.4s linear infinite,
    splashEcgBeat 2.4s ease-in-out infinite;
}

.splash-line {
  display: block;
  white-space: nowrap;
}

.splash-line:first-child {
  font-size: 0.62em;
  letter-spacing: 0.05em;
}

.splash-line + .splash-line {
  margin-top: 0.18em;
}

.splash-char {
  display: inline-block;
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 0.36em, 0) rotateX(68deg) scale(0.86);
  transform-origin: 50% 90%;
  will-change: transform, opacity, filter, text-shadow;
  animation:
    splashCharReveal var(--splash-char-reveal, 0.52s) cubic-bezier(0.17, 0.84, 0.35, 1) forwards,
    splashCharGlow 2.4s ease-in-out infinite;
  animation-delay:
    calc(var(--char-index) * var(--splash-char-stagger, 0.045s)),
    calc(
      var(--char-index) * var(--splash-char-stagger, 0.045s) +
        var(--splash-char-reveal, 0.52s)
    );
}

img,
video {
  display: block;
  max-width: 100%;
}

video {
  object-fit: cover;
}

button,
a {
  font: inherit;
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.28s ease,
    background-color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    color 0.28s ease,
    opacity 0.28s ease;
}

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

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.page-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.32)),
    var(--peacestock-bg-main, url("assets/media/S__97542186_0.jpg")) center top / cover no-repeat;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image:
    linear-gradient(transparent 0 49%, rgba(0, 0, 0, 0.08) 49% 51%, transparent 51%),
    linear-gradient(90deg, transparent 0 49%, rgba(0, 0, 0, 0.06) 49% 51%, transparent 51%);
  background-size: 5px 5px;
}

.ambient {
  position: fixed;
  z-index: 0;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.6;
}

.ambient--one {
  top: 10vh;
  left: -100px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 216, 97, 0.84), rgba(255, 216, 97, 0));
  animation: floaty 12s ease-in-out infinite;
}

.ambient--two {
  top: 38vh;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(241, 72, 143, 0.72), rgba(241, 72, 143, 0));
  animation: floaty 16s ease-in-out infinite reverse;
}

.ambient--three {
  bottom: 8vh;
  left: 40%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(63, 119, 255, 0.68), rgba(63, 119, 255, 0));
  animation: floaty 18s ease-in-out infinite;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 16px 0;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, -120%, 0);
  pointer-events: none;
  transition:
    opacity 0.32s ease,
    transform 0.32s ease,
    visibility 0s linear 0.32s;
}

.site-header.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
  transition:
    opacity 0.32s ease,
    transform 0.32s ease,
    visibility 0s linear 0s;
}

.header-shell {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 20px 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(12, 20, 32, 0.35);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(8, 13, 21, 0.12);
}

.site-header.is-scrolled .header-shell {
  background: rgba(12, 20, 32, 0.7);
  box-shadow: 0 16px 42px rgba(8, 13, 21, 0.22);
}

.brand,
.brand-main,
.brand-sub,
.eyebrow,
.section-kicker,
.hero-status,
.mini-kicker,
.media-label,
.schedule-series,
.location-series,
.news-category,
.footer-brand,
.keyword-row span {
  font-family: "Bebas Neue", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand {
  display: inline-grid;
  gap: 2px;
  flex-shrink: 0;
  color: #fff;
}

.brand-main {
  font-size: 2rem;
  line-height: 0.92;
}

.brand-sub {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.72);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

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

.sns-circle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sns-circle a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
}

.sns-circle a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.site-nav a,
.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
}

.site-nav a:hover,
.footer-nav a:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  white-space: nowrap;
}

.pill-button--primary {
  color: #fff;
  background: linear-gradient(120deg, var(--orange), var(--pink));
  box-shadow: 0 16px 32px rgba(241, 72, 143, 0.28);
}

.pill-button--light {
  color: var(--dark);
  background: #fff;
}

.pill-button--dark {
  color: #fff;
  background: var(--dark);
}

.pill-button--outline {
  border-color: rgba(24, 33, 41, 0.18);
  background: transparent;
}

.news .section-heading .pill-button--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
}

.pill-button--ghost-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 100svh;
  margin-top: 0;
  padding-top: clamp(88px, 11vh, 132px);
  padding-bottom: clamp(20px, 4vh, 44px);
  isolation: isolate;
}

.hero-media,
.hero-gridlines {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

.hero-video {
  width: 100%;
  height: 100%;
}

.hero-gridlines {
  z-index: 2;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 86%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
  align-content: start;
  min-height: calc(100svh - clamp(124px, 17vh, 176px));
}

.hero-copy {
  padding-bottom: 0;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 1.15rem;
  color: var(--yellow);
}

.hero h1,
.section-heading h2,
.statement-band__inner h2,
.media-card h3,
.logo-card h3,
.news-card h3,
.contact-card h2,
.location-card h3,
.feature-story h3,
.feature-story h2,
.floating-card h2 {
  font-family: "Bebas Neue", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0.02em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4rem, 9.2vw, 7.4rem);
  line-height: 0.86;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 10px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-status span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 216, 97, 0.2);
  border: 1px solid rgba(255, 216, 97, 0.34);
  color: #fff;
}

.hero-lead {
  max-width: 46ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.hero-countdown {
  margin-top: clamp(28px, 7vh, 90px);
  max-width: min(100%, 520px);
}

.hero-countdown__label {
  display: grid;
  gap: 6px;
  margin: 0 0 14px;
  line-height: 1;
}

.hero-countdown__label-date {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.hero-countdown__label-highlight {
  font-size: clamp(1.42rem, 3.4vw, 2.28rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  color: rgba(255, 216, 97, 0.98);
  text-shadow:
    0 0 12px rgba(255, 216, 97, 0.38),
    0 0 28px rgba(255, 216, 97, 0.24);
}

.hero-countdown__timer {
  display: grid;
  grid-template-columns: repeat(4, minmax(66px, 1fr));
  gap: 10px;
}

.hero-countdown__unit {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 86px;
  padding: 12px 8px 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(8, 15, 24, 0.44);
  backdrop-filter: blur(10px);
}

.hero-countdown__value {
  display: block;
  font-family: "Bebas Neue", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  letter-spacing: 0.03em;
  line-height: 0.86;
  color: #fff;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.24);
}

.hero-countdown__value.is-ticking {
  animation: heroCountdownTick 0.42s cubic-bezier(0.17, 0.84, 0.35, 1);
}

.hero-countdown__unit-label {
  margin-top: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.74);
}

.hero-countdown.is-finished .hero-countdown__label-date {
  border-color: rgba(255, 216, 97, 0.68);
  background: rgba(255, 216, 97, 0.2);
}

.hero-countdown.is-finished .hero-countdown__label-highlight {
  color: rgba(255, 232, 166, 0.98);
  text-shadow:
    0 0 12px rgba(255, 216, 97, 0.46),
    0 0 28px rgba(255, 216, 97, 0.3);
}

.hero-countdown.is-finished .hero-countdown__unit {
  border-color: rgba(255, 216, 97, 0.58);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.92);
}

.hero-floating {
  display: grid;
  align-content: start;
  gap: 14px;
  justify-items: end;
  padding-bottom: 0;
}

.floating-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 420px);
  padding: 24px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(9, 15, 22, 0.38);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  color: #fff;
  transform-style: preserve-3d;
}

.floating-card::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 216, 97, 0.42), transparent 70%);
}

.floating-card--info p {
  margin: 0;
}

.floating-card h2 {
  margin: 10px 0 8px;
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  line-height: 0.92;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 4;
  width: 92px;
  height: 92px;
  margin-left: -46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  color: #fff;
}

.scroll-cue span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
}

.scroll-cue::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.75);
  transform: translateX(-50%);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(63, 119, 255, 0.98), rgba(241, 72, 143, 0.98));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), inset 0 -1px 0 rgba(255, 255, 255, 0.16);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 30px;
  padding: 16px 0;
  animation: marqueeScroll 34s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.45rem, 3.6vw, 2.1rem);
  line-height: 1;
}

.marquee-item::after {
  content: "✦";
  opacity: 0.82;
}

.section {
  position: relative;
  z-index: 2;
  padding: 92px 0;
}

body.subpage .site-header {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  transition: none;
}

body.subpage .header-shell {
  background: rgba(12, 20, 32, 0.72);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 34px rgba(8, 13, 21, 0.24);
}

.subpage-main {
  padding-top: 118px;
}

.subpage-hero {
  display: grid;
  gap: 20px;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb li + li::before {
  content: "/";
  opacity: 0.55;
  margin-right: 2px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.88);
}

.breadcrumb a:hover {
  color: #fff;
}

.subpage-hero__panel {
  padding: clamp(24px, 4vw, 40px);
}

.subpage-hero__panel h1 {
  margin: 10px 0 12px;
  color: #fff;
  font-size: clamp(3rem, 7.2vw, 5.4rem);
  line-height: 0.92;
}

.subpage-hero__panel p {
  margin: 0;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.88);
}

.subpage-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.subpage-meta-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.94);
}

.subpage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 22px;
}

.subpage-article,
.subpage-aside {
  padding: clamp(24px, 4vw, 34px);
}

.subpage-article h2,
.subpage-article h3 {
  margin: 0;
  color: #101b28;
}

.subpage-article h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.subpage-article h3 {
  margin-top: 28px;
  font-size: clamp(1.4rem, 3.1vw, 2rem);
}

.subpage-article p {
  margin: 12px 0 0;
}

.contact-page-content {
  color: #101b28;
}

.contact-page-content .has-text-align-center {
  text-align: center;
}

.contact-page-content .wpcf7 form,
.contact-page-content .wpcf7-form,
.contact-page-content .ps-contact-form,
.contact-page-content form {
  max-width: min(100%, 760px);
  margin: 24px auto 0;
  display: grid;
  gap: 14px;
}

.contact-page-content .screen-reader-response,
.contact-page-content .wpcf7-response-output,
.contact-page-content .hidden-fields-container {
  display: none;
}

.contact-page-content .ps-form-group {
  margin: 0;
}

.contact-page-content .ps-label,
.contact-page-content label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: #101b28;
}

.contact-page-content .ps-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.contact-page-content .wpcf7-list-item {
  margin: 0;
}

.contact-page-content .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.contact-page-content input[type="text"],
.contact-page-content input[type="email"],
.contact-page-content textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(16, 27, 40, 0.2);
  background: rgba(255, 255, 255, 0.9);
  color: #101b28;
}

.contact-page-content textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-page-content .ps-submit-wrap {
  margin: 4px 0 0;
}

.contact-page-content .wpcf7-submit,
.contact-page-content .ps-submit-wrap button,
.contact-page-content .ps-submit-wrap input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #fb663f, #f83d95);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.contact-page-content .ps-accept .wpcf7-list-item-label {
  color: rgba(16, 27, 40, 0.9);
  font-weight: 500;
}

.contact-page-content .ps-accept a {
  color: #102f7f;
}

body.page-id-13 #page-content > *,
body.page-id-14 #page-content > *,
body.page-id-15 #page-content > * {
  max-width: min(100%, 980px);
  margin-left: auto;
  margin-right: auto;
}

#page-content .subpage-focus-section,
#page-content .subpage-focus-item {
  max-width: min(100%, 760px);
  margin-left: auto;
  margin-right: auto;
}

#page-content .subpage-focus-section,
#page-content .subpage-focus-item.heading-ja {
  text-align: center;
}

#page-content .subpage-focus-item.wp-block-columns {
  justify-content: center;
  gap: 18px;
}

#page-content .subpage-focus-item.wp-block-image,
#page-content .subpage-focus-item .wp-block-image {
  display: flex;
  justify-content: center;
}

#page-content .subpage-focus-item.wp-block-columns > .wp-block-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#page-content .subpage-focus-item figure,
#page-content .subpage-focus-item .wp-block-image figure {
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (min-width: 782px) {
  #page-content .subpage-focus-item.wp-block-columns > .wp-block-column {
    flex: 0 1 240px;
    max-width: 240px;
  }
}

.subpage-checklist {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.subpage-checklist li {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(16, 27, 40, 0.06);
  border: 1px solid rgba(16, 27, 40, 0.1);
}

.subpage-highlights {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.subpage-highlight {
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(16, 27, 40, 0.12);
}

.subpage-highlight .section-kicker {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(16, 27, 40, 0.72);
  text-shadow: none;
}

.subpage-highlight h3 {
  margin: 6px 0 0;
}

.subpage-highlight p {
  margin: 8px 0 0;
  color: rgba(16, 27, 40, 0.78);
}

.subpage-aside h3 {
  margin: 0 0 16px;
}

.subpage-facts {
  margin: 0;
  display: grid;
  gap: 10px;
}

.subpage-facts div {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(16, 27, 40, 0.08);
}

.subpage-facts dt {
  font-weight: 700;
}

.subpage-facts dd {
  margin: 4px 0 0;
}

#guide .subpage-facts dd {
  margin: 0;
}

#guide .subpage-facts dd a {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

#guide .subpage-facts dd a:hover {
  opacity: 0.78;
}

#guide .subpage-facts > div {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  background: transparent;
}

#guide .subpage-facts > div:first-child {
  padding-top: 0;
}

#guide .subpage-facts > div:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

#guide .subpage-facts dt {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

#guide .guide-place {
  display: inline-block;
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: underline;
  text-underline-offset: 0.16em;
  text-decoration-thickness: 2px;
}

#guide .guide-note {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.82);
}

.subpage-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.subpage-gallery-card {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.subpage-gallery-card img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.subpage-cta {
  display: grid;
  gap: 14px;
  justify-items: start;
  padding: clamp(24px, 4vw, 34px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(63, 119, 255, 0.52), rgba(241, 72, 143, 0.5)),
    rgba(9, 15, 22, 0.78);
}

.subpage-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3rem);
}

.subpage-cta p {
  margin: 0;
  max-width: 64ch;
  color: rgba(255, 255, 255, 0.88);
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}

.section-heading--inline {
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px;
}

.section-kicker {
  margin: 0;
  font-size: 1.08rem;
  color: #fff;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.34);
}

.section-kicker--light {
  color: #fff;
}

.section-heading h2,
.statement-band__inner h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(3rem, 6.4vw, 4.2rem);
  line-height: 0.92;
}

.section-heading h2 {
  color: #fff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.media-title-nowrap {
  font-size: clamp(1rem, 4.8vw, 2.8rem) !important;
  white-space: nowrap;
}

.card {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.card--glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58));
  border: 1px solid rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(20px);
}

.card--dark {
  color: #fff;
  background: linear-gradient(155deg, rgba(12, 20, 32, 0.98), rgba(23, 36, 54, 0.96));
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  gap: 28px;
  align-items: center;
}

.intro-copy {
  padding: clamp(26px, 4vw, 36px);
  font-size: 1.05rem;
}

.intro-copy p {
  margin: 0;
}

.intro-copy p + p {
  margin-top: 16px;
}

.mission-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.mission-points div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(24, 33, 41, 0.08);
}

.mission-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--orange), var(--pink));
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
}

.mission-points p {
  margin: 0;
  font-weight: 700;
}

.photo-stack {
  position: relative;
  min-height: 620px;
}

.photo-card {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.7s ease;
}

.photo-stack:hover .photo-card img {
  transform: scale(1.08);
}

.photo-card--one {
  top: 0;
  left: 0;
  width: min(62%, 420px);
  aspect-ratio: 1.05 / 1.15;
  transform: rotate(-6deg);
}

.photo-card--two {
  top: 44px;
  right: 0;
  width: min(64%, 440px);
  aspect-ratio: 1.2 / 0.9;
  transform: rotate(5deg);
}

.photo-card--three {
  bottom: 0;
  left: 16%;
  width: min(44%, 300px);
  aspect-ratio: 0.76 / 1;
  transform: rotate(4deg);
}

.character-sticker {
  position: absolute;
  right: 10%;
  bottom: -12px;
  width: min(170px, 28%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 216, 97, 0.94), rgba(241, 72, 143, 0.96));
  box-shadow: 0 18px 40px rgba(241, 72, 143, 0.28);
  display: grid;
  place-items: center;
  animation: floaty 8s ease-in-out infinite;
}

.character-sticker img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.feature-story {
  overflow: hidden;
}

.feature-image {
  position: relative;
  aspect-ratio: 1.8 / 1;
}

.feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 15, 22, 0.1), rgba(9, 15, 22, 0.75));
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-content {
  padding: clamp(28px, 4vw, 38px);
}

.feature-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.feature-copy + .feature-copy {
  margin-top: 14px;
}

.feature-meta {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
}

.feature-meta div {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-meta dt {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.62);
}

.feature-meta dd {
  margin: 0;
  font-size: 1.08rem;
}

.feature-schedule {
  display: none;
}

.stack-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.schedule-item {
  display: grid;
  gap: 10px;
  padding: 18px 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(24, 33, 41, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 239, 228, 0.84));
  box-shadow: var(--shadow-soft);
}

.schedule-series,
.location-series,
.news-category,
.mini-kicker,
.media-label {
  margin: 0;
  font-size: 1rem;
  color: var(--orange);
}

.schedule-item h3,
.location-card h3,
.news-card h3,
.media-card h3,
.logo-card h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 0.96;
}

.schedule-meta,
.location-status,
.news-date,
.news-excerpt {
  color: var(--text-soft);
}

.schedule-meta {
  margin: 0;
}

.schedule-link,
.news-link {
  font-weight: 700;
}

.statement-band {
  position: relative;
  min-height: 72vh;
  padding: 0;
  color: #fff;
  overflow: hidden;
}

.statement-band__media,
.statement-band__overlay {
  position: absolute;
  inset: 0;
}

.statement-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.statement-band__overlay {
  background:
    linear-gradient(180deg, rgba(8, 13, 21, 0.2), rgba(8, 13, 21, 0.84)),
    radial-gradient(circle at 15% 20%, rgba(255, 123, 48, 0.28), transparent 26%),
    radial-gradient(circle at 84% 28%, rgba(241, 72, 143, 0.24), transparent 28%);
}

.statement-band__inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 72vh;
  padding-block: 90px;
}

.statement-band__inner p {
  max-width: 52ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.keyword-row span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.09);
  font-size: 1.1rem;
}

.locations-grid,
.logo-wall,
.media-grid {
  display: grid;
  gap: 24px;
}

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

.location-card {
  position: relative;
  display: grid;
  gap: 16px;
  min-height: 280px;
  padding: 28px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.8);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 216, 97, 0.35), transparent 34%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.62));
  box-shadow: var(--shadow-soft);
}

.location-card::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(63, 119, 255, 0.24), rgba(241, 72, 143, 0.2));
}

.location-card:nth-child(2n)::before {
  background: linear-gradient(135deg, rgba(255, 216, 97, 0.28), rgba(255, 123, 48, 0.24));
}

.location-card h3 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.location-status {
  margin: 0;
}

.location-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

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

.news-archive-grid {
  margin-bottom: 18px;
  align-items: stretch;
}

.news-archive-grid .news-card,
.news-archive-grid .news-card:nth-child(4),
.news-archive-grid .news-card:nth-child(5) {
  grid-column: span 4;
  height: 100%;
}

.news-archive-grid .news-body {
  display: grid;
  gap: 12px;
  align-content: start;
  grid-template-rows: auto auto 1fr;
}

.news-archive-grid .news-card h3 {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.32;
  min-height: calc(1.32em * 2);
}

.news-archive-grid .news-link {
  margin-top: auto;
}

.news-archive-pagination ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  text-decoration: none;
  background: rgba(10, 18, 29, 0.4);
}

.news-archive-pagination .page-numbers.current {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.92);
  color: #101b28;
}

.news-single-image {
  margin: 0 0 22px;
  border-radius: 18px;
  overflow: hidden;
}

.news-single-image img {
  width: 100%;
  height: auto;
  display: block;
}

.news-single-main #news-content .subpage-article img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.news-single-main #news-content .subpage-article figure,
.news-single-main #news-content .subpage-article .wp-block-image,
.news-single-main #news-content .subpage-article .ps-article-thumb {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}

.news-single-main #news-content .subpage-article .alignleft,
.news-single-main #news-content .subpage-article .alignright {
  float: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.news-card {
  grid-column: span 4;
  overflow: hidden;
  display: grid;
  align-content: start;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.news-card:nth-child(4),
.news-card:nth-child(5) {
  grid-column: span 6;
}

.news-card:hover .news-thumb img {
  transform: scale(1.08);
}

.news-thumb {
  position: relative;
  aspect-ratio: 1.2 / 0.86;
  overflow: hidden;
}

.news-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 15, 22, 0.04), rgba(9, 15, 22, 0.42));
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.news-body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.news-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.news-date {
  margin: 0;
  font-weight: 700;
}

.news-card h3 {
  font-size: 1.9rem;
}

.news-excerpt {
  margin: 0;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 120px;
  gap: 16px;
  margin-bottom: 24px;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-tile:hover img {
  transform: scale(1.08);
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 15, 22, 0.02), rgba(9, 15, 22, 0.44));
}

.gallery-tile figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: #fff;
  font-weight: 700;
}

.gallery-tile--tall {
  grid-row: span 3;
}

.gallery-tile--wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-tile--square {
  grid-row: span 2;
}

.media-grid {
  grid-template-columns: minmax(0, 0.95fr) repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.media-card {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.media-card img {
  width: 100%;
  border-radius: 20px;
}

.media-card--movie {
  align-content: space-between;
  min-height: 360px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(9, 15, 22, 0.28), rgba(9, 15, 22, 0.72)),
    var(--peacestock-media-movie-bg, url("assets/media/S__97542189_0.jpg")) center / cover;
  box-shadow: var(--shadow);
}

.media-card--movie .media-label,
.media-card--movie h3 {
  color: #fff;
}

.logo-wall {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.logo-card {
  display: grid;
  gap: 22px;
  align-content: start;
  padding: clamp(24px, 4vw, 34px);
}

.logo-card img {
  width: 100%;
  border-radius: 18px;
  background: #fff;
}

.logo-list {
  display: grid;
  gap: 12px;
}

.logo-list--supporter,
.logo-list--partner {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.logo-list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
}

.logo-list--organizer .logo-list__item {
  min-height: 128px;
}

.logo-list__item img {
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
}

.logo-list__item--with-note {
  gap: 8px;
  padding: 10px 10px 12px;
}

.logo-list__item--with-note img {
  max-height: 68px;
}

.logo-list__note {
  font-size: 0.72rem;
  line-height: 1.45;
  text-align: center;
  letter-spacing: 0.01em;
  color: rgba(15, 23, 35, 0.92);
  font-weight: 700;
}

.sponsor-stack {
  display: grid;
  gap: 16px;
}

.thanks-cloud {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: clamp(24px, 4vw, 34px);
  overflow: hidden;
}

.thanks-cloud::before,
.thanks-cloud::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.thanks-cloud::before {
  top: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 216, 97, 0.28), transparent 70%);
}

.thanks-cloud::after {
  right: -30px;
  bottom: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(63, 119, 255, 0.22), transparent 70%);
}

.thanks-tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 4vw, 40px);
  color: #fff;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 216, 97, 0.22), transparent 26%),
    radial-gradient(circle at 100% 0%, rgba(255, 123, 48, 0.22), transparent 30%),
    linear-gradient(140deg, rgba(11, 17, 28, 0.64), rgba(11, 17, 28, 0.92)),
    var(--peacestock-contact-bg, url("assets/media/S__97550347_0.jpg")) center / cover;
}

.contact-card p {
  max-width: 44ch;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  position: relative;
  z-index: 2;
  padding: 0 0 50px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 26px 28px;
  border-top: 1px solid rgba(24, 33, 41, 0.12);
}

.footer-brand {
  margin: 0 0 6px;
  font-size: 1.2rem;
  color: #fff;
}

.footer-inner p {
  margin: 0;
  color: #fff;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.footer-nav a {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.2, 0.7, 0, 1);
}

.reveal.is-visible,
.reveal.is-visible-on-load {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.18s;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -18px, 0);
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.3;
  }
  50% {
    transform: translateX(-50%) translateY(8px);
    opacity: 1;
  }
}

@keyframes heroCountdownTick {
  0% {
    opacity: 0.42;
    transform: translate3d(0, 16%, 0) scale(0.9);
    filter: blur(2px);
  }
  62% {
    opacity: 1;
    transform: translate3d(0, -3%, 0) scale(1.06);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes slowZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.1);
  }
}

@keyframes splashCharReveal {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(0, 0.36em, 0) rotateX(68deg) scale(0.86);
  }
  60% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, -0.05em, 0) rotateX(0deg) scale(1.04);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotateX(0deg) scale(1);
  }
}

@keyframes splashCharGlow {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
  50% {
    text-shadow:
      0 0 12px rgba(255, 255, 255, 0.45),
      0 0 26px rgba(63, 119, 255, 0.3);
  }
}

@keyframes splashEcgSweep {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -1720;
  }
}

@keyframes splashEcgBeat {
  0%,
  14%,
  100% {
    opacity: 0.62;
    transform: scaleY(0.82);
  }
  30% {
    opacity: 0.9;
    transform: scaleY(1);
  }
  52% {
    opacity: 1;
    transform: scaleY(1.16);
  }
  70% {
    opacity: 0.78;
    transform: scaleY(0.9);
  }
}

@keyframes splashOpenFromBottom {
  0% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  100% {
    clip-path: inset(0 0 100% 0);
    opacity: 1;
  }
}

@media (max-width: 1140px) {
  .hero-inner,
  .intro-layout,
  .feature-layout,
  .media-grid,
  .logo-wall,
  .contact-card,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100svh;
    padding-top: clamp(84px, 10vh, 112px);
    padding-bottom: 48px;
  }

  .hero-inner {
    min-height: auto;
    align-content: start;
  }

  .hero-floating {
    align-content: start;
    justify-items: start;
  }

  .news-card,
  .news-card:nth-child(4),
  .news-card:nth-child(5) {
    grid-column: span 6;
  }

  .contact-actions,
  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 920px) {
  .header-shell {
    border-radius: 30px;
  }

  .menu-toggle {
    display: inline-block;
    order: 3;
  }

  .header-cta {
    display: none;
  }

  .header-sns {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: grid;
    gap: 4px;
    padding: 12px;
    border-radius: 24px;
    background: rgba(12, 20, 32, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .hero {
    margin-top: 0;
  }

  .hero-inner {
    gap: 24px;
  }

  .photo-stack {
    min-height: 520px;
  }

  .locations-grid,
  .news-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .news-card,
  .news-card:nth-child(4),
  .news-card:nth-child(5),
  .gallery-tile,
  .gallery-tile--tall,
  .gallery-tile--wide,
  .gallery-tile--square {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-strip {
    grid-auto-rows: 240px;
  }

  .subpage-main {
    padding-top: 104px;
  }

  .subpage-layout,
  .subpage-highlights,
  .subpage-gallery-grid {
    grid-template-columns: 1fr;
  }

  .subpage-hero__panel h1 {
    font-size: clamp(2.7rem, 10vw, 4.2rem);
  }

  .splash-screen {
    padding-inline: 12px;
  }

  .splash-screen__title {
    line-height: 1.06;
    letter-spacing: 0.015em;
  }

  .splash-screen__title .splash-line:first-child,
  .splash-screen__title .splash-line:nth-child(2) {
    font-size: clamp(1.28rem, 5.8vw, 1.86rem) !important;
    letter-spacing: 0 !important;
  }

  .splash-screen__title .splash-line:nth-child(3) {
    font-size: clamp(1.64rem, 8.2vw, 2.52rem) !important;
    letter-spacing: 0.03em !important;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 22px, 100%);
    --radius-xl: 28px;
    --radius-lg: 22px;
  }

  .site-header {
    padding: 10px 0;
  }

  .header-shell {
    gap: 12px;
    padding: 10px 12px 10px 16px;
  }

  .brand-main {
    font-size: 1.72rem;
  }

  .hero {
    min-height: calc(100svh - 62px);
    padding-top: 40px;
    padding-bottom: 16px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 18vw, 5.6rem);
  }

  .hero-inner {
    gap: 14px;
  }

  .hero-status {
    margin: 12px 0 8px;
  }

  .hero-lead {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 14px;
  }

  .hero-countdown {
    margin-top: 16px;
  }

  .hero-countdown__timer {
    gap: 8px;
  }

  .hero-countdown__label {
    gap: 5px;
    margin-bottom: 10px;
  }

  .hero-countdown__label-date {
    min-height: 30px;
    padding: 4px 10px;
    font-size: clamp(0.92rem, 4.6vw, 1.08rem);
    letter-spacing: 0.03em;
  }

  .hero-countdown__label-highlight {
    font-size: clamp(1.16rem, 6.8vw, 1.64rem);
    letter-spacing: 0.02em;
  }

  .hero-countdown__unit {
    min-height: 74px;
    padding: 10px 6px 8px;
    border-radius: 14px;
  }

  .hero-countdown__value {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .hero-countdown__unit-label {
    margin-top: 6px;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .hero-actions .pill-button {
    min-height: 44px;
  }

  .hero-floating {
    gap: 8px;
  }

  .floating-card {
    padding: 16px 18px;
  }

  .floating-card h2 {
    margin: 6px 0;
    font-size: clamp(1.5rem, 6.8vw, 2rem);
  }

  .marquee-track {
    gap: 24px;
    padding: 10px 0;
  }

  .marquee-item {
    gap: 20px;
    font-size: clamp(1.2rem, 5vw, 1.5rem);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .pill-button {
    width: 100%;
  }

  .floating-card {
    width: 100%;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading--inline {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .subpage-main {
    padding-top: 92px;
  }

  .subpage-hero {
    gap: 14px;
  }

  .subpage-hero__panel,
  .subpage-article,
  .subpage-aside,
  .subpage-cta {
    padding: 20px;
  }

  .subpage-hero__panel h1 {
    font-size: clamp(2.3rem, 10.6vw, 3.4rem);
  }

  .breadcrumb {
    gap: 8px;
    font-size: 0.92rem;
  }

  .photo-stack {
    min-height: 460px;
  }

  .photo-card--one {
    top: 0;
    left: 0;
    width: min(68%, 300px);
    aspect-ratio: 1.05 / 1.15;
    transform: rotate(-4deg);
  }

  .photo-card--two {
    top: 36px;
    right: 0;
    width: min(72%, 320px);
    aspect-ratio: 1.2 / 0.9;
    transform: rotate(4deg);
  }

  .photo-card--three {
    bottom: 0;
    left: 14%;
    width: min(52%, 220px);
    aspect-ratio: 0.76 / 1;
    transform: rotate(3deg);
  }

  .character-sticker {
    right: 12px;
    bottom: 12px;
    width: 110px;
  }

  .news-body,
  .feature-content,
  .feature-schedule,
  .intro-copy,
  .media-card,
  .logo-card,
  .location-card,
  .contact-card {
    padding: 22px;
  }

  .statement-band {
    min-height: 62vh;
  }

  .statement-band__inner {
    min-height: 62vh;
    padding-block: 70px;
  }

  .scroll-cue {
    display: none;
  }

  .ambient {
    display: none;
  }

  .splash-screen {
    padding-inline: 10px;
  }

  .splash-screen__title {
    font-size: 1rem;
    line-height: 1.06;
    letter-spacing: 0.02em;
    gap: 0.16em;
  }

  .splash-screen__title .splash-line:first-child,
  .splash-screen__title .splash-line:nth-child(2) {
    font-size: clamp(1.32rem, 6.3vw, 1.82rem) !important;
    letter-spacing: 0 !important;
  }

  .splash-screen__title .splash-line:nth-child(3) {
    font-size: clamp(1.72rem, 8.8vw, 2.44rem) !important;
    letter-spacing: 0.03em !important;
  }

  .splash-heartline {
    width: min(90vw, 360px);
  }
}

@media (max-width: 400px) {
  .splash-screen {
    padding-inline: 8px;
  }

  .splash-screen__title .splash-line:first-child,
  .splash-screen__title .splash-line:nth-child(2) {
    font-size: 2.24rem !important;
    letter-spacing: 0 !important;
  }

  .splash-screen__title .splash-line:nth-child(3) {
    font-size: 3.66rem !important;
    letter-spacing: 0.026em !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
