:root {
  --blue: #3da2ca;
  --blue-deep: #167fa9;
  --pink: #ee8186;
  --yellow: #ffd43f;
  --cream: #fff2d4;
  --paper: #fffaf1;
  --ink: #173d50;
  --muted: #6e7d82;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(23, 61, 80, 0.14);
  --radius-lg: 42px;
  --radius-md: 28px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 212, 63, 0.13), transparent 23rem),
    radial-gradient(circle at 96% 48%, rgba(238, 129, 134, 0.12), transparent 26rem),
    var(--paper);
  font-family: "Nunito", "M PLUS Rounded 1c", system-ui, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; }
button, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:active, .button:active, .portal-card:active { transform: scale(.97); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.not-found-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}
.not-found-card {
  position: relative;
  width: min(720px, 100%);
  overflow: hidden;
  padding: clamp(42px, 7vw, 72px) clamp(24px, 6vw, 64px);
  text-align: center;
  border: 1px solid rgba(23,61,80,.08);
  border-radius: clamp(28px, 5vw, 46px);
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
}
.not-found-logo { width: min(330px, 76%); height: auto; }
.not-found-mark {
  position: absolute;
  right: -28px;
  bottom: -38px;
  width: 155px;
  opacity: .12;
  transform: rotate(9deg);
}
.not-found-code { margin: 28px 0 8px; color: var(--pink); font-size: 14px; font-weight: 900; letter-spacing: .3em; }
.not-found-card h1 { margin: 0; font-size: clamp(28px, 4.2vw, 43px); line-height: 1.35; }
.not-found-card > p:not(.not-found-code) { margin: 18px auto 30px; color: var(--muted); font-weight: 600; line-height: 1.8; }
.not-found-card .button { position: relative; z-index: 1; }

.site-shell { min-height: 100vh; transition: filter 280ms var(--ease-out), transform 280ms var(--ease-out); }
.site-shell.gate-blur { filter: blur(8px); transform: scale(1.015); height: 100vh; overflow: hidden; }
.top-strip {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 20px;
  color: white;
  background: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
}
.top-strip a { color: white; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 72px);
  background: rgba(255,250,241,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23,61,80,.07);
}
.admin-bar .site-header { top: 32px; }
.brand { width: min(270px, 36vw); display: block; }
.brand img { width: 100%; display: block; }
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.desktop-nav a { text-decoration: none; font-size: 13px; font-weight: 800; letter-spacing: .06em; position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 3px; border-radius: 99px; background: var(--pink); transition: right 180ms var(--ease-out); }
.desktop-nav a:hover::after { right: 0; }
.language-select { justify-self: end; }
.language-select select {
  appearance: none;
  min-width: 112px;
  border: 1px solid rgba(23,61,80,.12);
  border-radius: 999px;
  padding: 10px 34px 10px 16px;
  color: var(--ink);
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='none' stroke='%23173d50' stroke-linecap='round' stroke-width='2' d='m1 1 5 5 5-5'/%3E%3C/svg%3E") no-repeat right 13px center;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: start;
  padding: clamp(24px, 4vw, 56px) clamp(20px, 5.5vw, 96px) clamp(78px, 9vw, 130px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -150px;
  top: 12%;
  border: 58px solid rgba(61,162,202,.1);
  border-radius: 48% 52% 60% 40%;
  transform: rotate(21deg);
}
.hero-slider-wrap {
  position: relative;
  width: min(1400px, 100%);
  margin: 0 auto;
  min-width: 0;
}
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: clamp(22px, 3vw, 42px);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream);
}
.hero-slider-mobile { display: none; }
.hero-track { position: relative; width: 100%; height: 100%; }
.hero-slide { position: absolute; inset: 0; z-index: 0; opacity: 0; pointer-events: none; transition: opacity 500ms ease; }
.hero-slide.is-active { z-index: 1; opacity: 1; pointer-events: auto; }
.hero-slide > a, .hero-slide > img, .hero-slide a > img { width: 100%; height: 100%; display: block; }
.hero-slide img { object-fit: contain; background: var(--cream); }
.hero-arrow { position: absolute; z-index: 3; top: 50%; width: 46px; height: 46px; display: grid; place-items: center; border: 0; border-radius: 50%; color: white; background: rgba(23,61,80,.54); box-shadow: 0 8px 22px rgba(23,61,80,.2); font-size: 34px; line-height: 1; cursor: pointer; transform: translateY(-50%); transition: background 160ms ease, transform 160ms ease; }
.hero-arrow:hover { background: rgba(23,61,80,.78); transform: translateY(-50%) scale(1.05); }
.hero-prev { left: 18px; }
.hero-next { right: 18px; }
.hero-dots { position: absolute; z-index: 3; left: 50%; bottom: 16px; display: flex; gap: 9px; padding: 8px 11px; border-radius: 999px; background: rgba(23,61,80,.35); transform: translateX(-50%); backdrop-filter: blur(8px); }
.hero-dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.55); cursor: pointer; transition: width 160ms ease, background 160ms ease; }
.hero-dots button.is-active { width: 24px; border-radius: 999px; background: white; }
.hero-copy { position: relative; z-index: 2; width: min(980px, 100%); max-width: none; margin: 0 auto; padding: 0; }
.eyebrow { margin: 0 0 18px; color: var(--blue-deep); font-size: 12px; font-weight: 900; letter-spacing: .24em; }
.hero h1 { margin: 0; max-width: 820px; font-size: clamp(42px, 5.2vw, 72px); line-height: 1.16; letter-spacing: -.035em; font-weight: 800; word-break: keep-all; overflow-wrap: anywhere; }
.hero-intro { max-width: 590px; margin: 28px 0 0; color: var(--muted); font-size: clamp(15px, 1.4vw, 19px); line-height: 2; font-weight: 600; }
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 24px; min-height: 58px; padding: 0 24px; border-radius: 999px; text-decoration: none; font-weight: 800; transition: transform 160ms var(--ease-out), box-shadow 180ms var(--ease-out), background 180ms var(--ease-out); }
.button-primary { color: white; background: var(--pink); box-shadow: 0 14px 30px rgba(238,129,134,.28); }
.button-primary:hover { background: #e66f76; box-shadow: 0 18px 36px rgba(238,129,134,.34); }
.button span { font-size: 20px; line-height: 1; }
.open-badge { font-size: 12px; font-weight: 800; letter-spacing: .06em; }
.hero-mark { position: absolute; z-index: 3; right: clamp(12px, 3vw, 52px); bottom: 34px; width: clamp(90px, 10vw, 150px); transform: rotate(7deg); filter: drop-shadow(0 16px 20px rgba(23,61,80,.14)); }

.section { padding: clamp(78px, 10vw, 144px) clamp(20px, 6vw, 110px); }
.section-heading { max-width: 860px; margin-bottom: 44px; }
.section-heading h2, .price-heading h2, .access-copy h2 { margin: 0; font-size: clamp(30px, 4vw, 54px); line-height: 1.35; letter-spacing: -.025em; }
.menu-section { position: relative; background: white; }
.menu-section::before { content: ""; position: absolute; left: -60px; top: -58px; width: 160px; height: 160px; border-radius: 50%; background: var(--yellow); opacity: .88; }
.portal-grid { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.portal-card { min-height: 190px; display: flex; flex-direction: column; justify-content: space-between; padding: 24px; color: var(--ink); background: var(--paper); border-radius: var(--radius-md); text-decoration: none; box-shadow: inset 0 0 0 1px rgba(23,61,80,.05); transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), background 180ms var(--ease-out); }
.portal-card:nth-child(2n) { background: #fff2f2; }
.portal-card:hover { transform: translateY(-7px) rotate(-1deg); box-shadow: 0 20px 40px rgba(23,61,80,.12); }
.portal-number { font-size: 11px; font-weight: 900; letter-spacing: .18em; color: var(--pink); }
.portal-card small { display: block; margin-bottom: 7px; color: var(--blue-deep); font-size: 10px; font-weight: 900; letter-spacing: .18em; }
.portal-card strong { display: block; font-size: clamp(16px, 1.5vw, 22px); line-height: 1.35; }
.portal-arrow { align-self: flex-end; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; color: white; background: var(--blue); }
.movie-section { background: var(--cream); }
.movie-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.movie-card { overflow: hidden; border-radius: 28px; background: var(--paper); box-shadow: var(--shadow); }
.movie-card video, .movie-card img { width: 100%; height: auto; display: block; object-fit: contain; }
.movie-card video { background: var(--ink); }
.gallery-video-media { background: var(--ink); }
.gallery-video-trigger { position: relative; width: 100%; height: clamp(280px, 32vw, 460px); display: grid; place-items: center; overflow: hidden; padding: 0; border: 0; color: white; background: var(--ink); cursor: pointer; }
.gallery-video-trigger > img { width: auto; height: auto; max-width: 100%; max-height: clamp(280px, 32vw, 460px); object-fit: contain; background: var(--ink); }
.gallery-video-fallback { width: 100%; height: 100%; display: grid; place-items: center; align-content: center; gap: 12px; background: linear-gradient(145deg, #143b4c, #245e72); }
.gallery-video-fallback img { width: min(180px, 44%); height: auto; opacity: .92; }
.gallery-video-fallback small { font-size: 11px; font-weight: 900; letter-spacing: .22em; }
.gallery-play-icon { position: absolute; left: 50%; top: 50%; width: 74px; height: 74px; display: grid; place-items: center; padding-left: 5px; border: 3px solid rgba(255,255,255,.9); border-radius: 50%; color: white; background: rgba(23,61,80,.64); box-shadow: 0 12px 34px rgba(0,0,0,.28); transform: translate(-50%, -50%); font-size: 25px; transition: transform 180ms var(--ease-out), background 180ms var(--ease-out); }
.gallery-video-trigger:hover .gallery-play-icon, .gallery-video-trigger:focus-visible .gallery-play-icon { background: var(--pink); transform: translate(-50%, -50%) scale(1.08); }
.gallery-inline-video { display: none !important; }
.gallery-image-link { display: block; text-decoration: none; }
.gallery-image-link img { transition: transform 280ms var(--ease-out); }
.gallery-image-link:hover img { transform: scale(1.015); }
.movie-card h3 { margin: 0; padding: 17px 20px 19px; color: var(--blue-deep); font-size: clamp(15px, 1.5vw, 20px); line-height: 1.5; font-weight: 900; }
@media (min-width: 761px) {
  .movie-grid { align-items: stretch; }
  .movie-card.gallery-image, .movie-card.gallery-video { display: flex; flex-direction: column; }
  .gallery-image .gallery-image-media, .gallery-video .gallery-video-media { min-height: clamp(280px, 32vw, 460px); display: grid; flex: 1 1 auto; place-items: center; overflow: hidden; }
  .gallery-image .gallery-image-media { background: var(--paper); }
  .gallery-image .gallery-image-media > img, .gallery-image .gallery-image-link img { width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain; }
  .gallery-image .gallery-image-link { width: 100%; height: 100%; display: grid; place-items: center; }
  .gallery-video .gallery-video-trigger { height: auto; min-height: clamp(280px, 32vw, 460px); flex: 1 1 auto; }
  .gallery-video .gallery-video-trigger > img { align-self: center; justify-self: center; }
  .gallery-image > h3, .gallery-video > h3 { flex: 0 0 auto; }
}
.video-modal[hidden] { display: none; }
.video-modal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 28px; }
.video-modal-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: rgba(9,29,38,.84); backdrop-filter: blur(8px); cursor: pointer; }
.video-modal-dialog { position: relative; z-index: 1; width: min(1180px, calc(100vw - 56px)); max-height: calc(100vh - 56px); display: flex; flex-direction: column; overflow: hidden; border-radius: 24px; background: #102f3c; box-shadow: 0 34px 90px rgba(0,0,0,.48); }
.video-modal-heading { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 10px 14px 10px 22px; color: white; background: #102f3c; }
.video-modal-heading h2 { margin: 0; overflow: hidden; font-size: 17px; line-height: 1.4; text-overflow: ellipsis; white-space: nowrap; }
.video-modal-close { width: 40px; height: 40px; display: grid; place-items: center; flex: 0 0 auto; padding: 0; border: 0; border-radius: 50%; color: white; background: rgba(255,255,255,.12); font-size: 30px; line-height: 1; cursor: pointer; }
.video-modal-dialog video { width: 100%; max-width: 100%; height: auto; max-height: calc(100vh - 114px); display: block; object-fit: contain; background: #000; }
body.video-modal-open { overflow: hidden; }

.price-section { position: relative; overflow: hidden; background: var(--blue); }
.price-section::before { content: ""; position: absolute; inset: 0; opacity: .2; background-image: radial-gradient(circle, white 1.2px, transparent 1.2px); background-size: 22px 22px; }
.price-card { position: relative; z-index: 2; width: min(900px, 100%); margin: 0 auto; padding: clamp(30px, 5vw, 68px); border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow); }
.price-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.price-heading > span { margin-bottom: 8px; padding: 8px 14px; border-radius: 999px; color: #a85960; background: #ffe9ea; font-size: 11px; font-weight: 800; }
.price-course + .price-course { margin-top: 48px; padding-top: 4px; border-top: 1px solid rgba(23,61,80,.08); }
.course-name { display: flex; align-items: center; gap: 18px; margin: 46px 0 12px; color: var(--pink); font-size: clamp(22px, 2.6vw, 32px); font-weight: 900; line-height: 1.4; letter-spacing: .035em; text-align: center; }
.price-course + .price-course .course-name { margin-top: 32px; }
.course-name span { height: 2px; flex: 1; background: rgba(238,129,134,.24); }
.price-row { display: grid; grid-template-columns: auto 1fr auto; align-items: baseline; gap: 20px; padding: 20px 2px; border-bottom: 1px solid rgba(23,61,80,.1); }
.duration strong { font-size: clamp(24px, 3vw, 36px); }
.duration span, .price span { margin-left: 6px; font-size: 12px; font-weight: 800; color: var(--muted); }
.dots { border-bottom: 3px dotted rgba(23,61,80,.14); }
.price strong { color: var(--blue-deep); font-size: clamp(30px, 4vw, 48px); letter-spacing: -.02em; }
.price-note { margin: 24px 0 0; color: var(--muted); font-size: 13px; line-height: 1.8; text-align: center; }
.price-details-action { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; margin-top: 24px; }
.price-details-button, .price-coupon-button { width: min(340px, 100%); }
.price-decoration { position: absolute; width: 180px; height: 80px; border: 24px solid var(--yellow); border-top-color: transparent; border-left-color: transparent; border-radius: 0 0 120px 0; opacity: .9; }
.banana-one { left: -28px; top: 24%; transform: rotate(28deg); }
.banana-two { right: -30px; bottom: 14%; transform: scale(.75) rotate(-150deg); }

.access-section { background: var(--cream); }
.access-card { width: min(1120px, 100%); margin: 0 auto; display: grid; grid-template-columns: 1.2fr .8fr; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.access-card-no-phone { grid-template-columns: 1fr; }
.access-copy { padding: clamp(34px, 5vw, 72px); background: white; }
.access-copy dl { margin: 36px 0; }
.access-copy dl div { display: grid; grid-template-columns: 100px 1fr; gap: 20px; padding: 15px 0; border-bottom: 1px solid rgba(23,61,80,.09); }
.access-copy dt { color: var(--muted); font-size: 12px; font-weight: 800; }
.access-copy dd { margin: 0; font-size: 15px; font-weight: 700; }
.button-light { color: var(--ink); background: var(--cream); box-shadow: inset 0 0 0 1px rgba(23,61,80,.06); }
.button-light:hover { background: var(--yellow); }
.chat-inquiry-note { max-width: 620px; margin: 24px 0 0; padding: 15px 18px; border-left: 5px solid var(--pink); border-radius: 0 14px 14px 0; color: var(--ink); background: #fff2f2; font-size: 14px; font-weight: 800; line-height: 1.8; }
.phone-card { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 430px; padding: 50px 28px; text-align: center; color: white; background: var(--pink); }
.phone-card img { width: min(220px, 62%); margin-bottom: 20px; filter: drop-shadow(0 12px 18px rgba(23,61,80,.15)); }
.phone-card span { font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.phone-card a { margin-top: 8px; color: white; font-size: clamp(24px, 3vw, 38px); font-weight: 900; text-decoration: none; }

footer { padding: 70px 24px 98px; color: white; text-align: center; background: var(--ink); }
footer > img { width: min(350px, 70vw); filter: brightness(0) invert(1); opacity: .92; }
footer p { margin: 26px 0 0; font-size: 13px; line-height: 1.9; }
footer .age-notice { color: #bcd0da; font-size: 11px; }
footer small { display: block; margin-top: 28px; color: #8eacb9; font-size: 10px; letter-spacing: .1em; }
.floating-call { display: none; }

.gate { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 22px; background: rgba(23,61,80,.48); backdrop-filter: blur(14px); }
.gate-card { width: min(980px, 100%); min-height: 590px; display: grid; grid-template-columns: .88fr 1.12fr; overflow: hidden; border-radius: 44px; background: var(--paper); box-shadow: 0 40px 100px rgba(7,35,48,.34); animation: gate-in 420ms var(--ease-out) both; }
.gate-art { position: relative; display: grid; place-items: center; overflow: hidden; background: var(--blue); }
.gate-art::before, .gate-art::after { content: ""; position: absolute; width: 250px; height: 250px; border: 38px solid rgba(255,255,255,.2); border-radius: 46% 54% 64% 36%; }
.gate-art::before { left: -110px; top: -80px; transform: rotate(20deg); }
.gate-art::after { right: -100px; bottom: -110px; transform: rotate(120deg); }
.gate-mark { position: relative; z-index: 2; width: min(360px, 78%); filter: drop-shadow(0 25px 30px rgba(23,61,80,.23)); animation: float 4s ease-in-out infinite; }
.spark { position: absolute; width: 34px; height: 34px; background: var(--yellow); transform: rotate(45deg); }
.spark::before, .spark::after { content: ""; position: absolute; inset: 9px -10px; background: var(--yellow); border-radius: 50%; }
.spark::after { inset: -10px 9px; }
.spark-one { left: 18%; top: 17%; }
.spark-two { right: 13%; bottom: 18%; transform: rotate(45deg) scale(.6); }
.gate-content { padding: clamp(30px, 5vw, 64px); display: flex; flex-direction: column; justify-content: center; }
.gate-word { width: min(390px, 90%); margin-bottom: 26px; }
.gate-kicker { margin: 0 0 7px; color: var(--pink); font-size: 10px; font-weight: 900; letter-spacing: .2em; }
.gate-content h1 { margin: 0; font-size: clamp(26px, 3.1vw, 40px); line-height: 1.3; }
.gate-description { margin: 15px 0 20px; color: var(--muted); font-size: 12px; line-height: 1.8; }
.language-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.language-grid button { min-height: 58px; display: flex; align-items: center; gap: 12px; border: 0; border-radius: 16px; padding: 9px 14px; color: var(--ink); background: white; box-shadow: inset 0 0 0 1px rgba(23,61,80,.09); text-align: left; cursor: pointer; transition: transform 150ms var(--ease-out), background 180ms var(--ease-out), opacity 180ms var(--ease-out); }
.language-grid button strong { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: white; background: var(--pink); font-size: 10px; letter-spacing: .04em; }
.language-grid button span { font-size: 13px; font-weight: 800; }
.language-grid button:hover:not(:disabled) { color: white; background: var(--blue); }
.language-grid button:disabled { opacity: .38; cursor: not-allowed; }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 500ms var(--ease-out) var(--delay, 0ms), transform 500ms var(--ease-out) var(--delay, 0ms); }
.reveal.is-shown { opacity: 1; transform: translateY(0); }

@keyframes gate-in { from { opacity: 0; transform: translateY(20px) scale(.975); } to { opacity: 1; transform: none; } }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-12px) rotate(2deg); } }

@media (max-width: 1050px) {
  .portal-grid { grid-template-columns: repeat(3, 1fr); }
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
}

@media (max-width: 760px) {
  .admin-bar .site-header { top: 46px; }
  .top-strip { height: 30px; justify-content: space-between; gap: 8px; font-size: 9px; letter-spacing: .04em; }
  .site-header { height: 68px; padding: 0 16px; }
  .brand { width: 176px; }
  .language-select select { min-width: 74px; max-width: 92px; padding: 8px 27px 8px 11px; font-size: 10px; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 30px; padding: 16px 16px 70px; }
  .hero-slider-wrap { grid-row: 1; width: 100%; }
  .hero-slider { border-radius: 28px; }
  .hero-slider-desktop { display: none; }
  .hero-slider-mobile { display: block; aspect-ratio: 1 / 1; }
  .hero-arrow { width: 38px; height: 38px; font-size: 28px; }
  .hero-prev { left: 10px; }
  .hero-next { right: 10px; }
  .hero-dots { bottom: 10px; }
  .hero-copy { z-index: 4; width: 100%; margin: 0; padding: 6px 6px 0; border-radius: 0; background: transparent; backdrop-filter: none; box-shadow: none; }
  .hero h1 { font-size: clamp(30px, 8.6vw, 44px); }
  .hero-intro { margin-top: 18px; font-size: 14px; line-height: 1.8; }
  .hero-actions { margin-top: 24px; }
  .button { min-height: 54px; }
  .hero-mark { display: none; }
  .section { padding: 74px 16px; }
  .menu-section::before { width: 100px; height: 100px; top: -35px; }
  .portal-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .portal-card { min-height: 152px; padding: 18px; border-radius: 22px; }
  .portal-card:last-child:nth-child(odd) { grid-column: 1 / -1; min-height: 118px; }
	  .movie-grid { grid-template-columns: 1fr; }
	  .movie-card { border-radius: 22px; }
	  .gallery-video-trigger { display: none; }
	  .gallery-inline-video { width: 100%; height: auto; max-height: none; display: block !important; }
	  .video-modal { display: none !important; }
  .price-card { padding: 30px 20px; border-radius: 30px; }
  .price-heading { align-items: flex-start; }
  .course-name { gap: 12px; margin-top: 34px; font-size: clamp(20px, 6.3vw, 26px); }
  .price-row { gap: 10px; padding: 18px 0; }
  .price strong { font-size: 30px; }
  .access-card { grid-template-columns: 1fr; border-radius: 30px; }
  .access-copy { padding: 36px 24px; }
  .access-copy dl div { grid-template-columns: 78px 1fr; gap: 12px; }
  .phone-card { min-height: 330px; }
  footer { padding-bottom: 78px; }
  .bhs-lang-jp footer { padding-bottom: 120px; }
  .floating-call { position: fixed; z-index: 30; left: 14px; right: 14px; bottom: max(12px, env(safe-area-inset-bottom)); height: 60px; display: flex; align-items: center; justify-content: center; gap: 16px; color: white; background: var(--pink); border-radius: 999px; box-shadow: 0 12px 34px rgba(238,129,134,.42); text-decoration: none; }
  .floating-call span { font-size: 10px; font-weight: 900; letter-spacing: .14em; }
  .floating-call strong { font-size: 17px; }
  .gate { padding: 12px; align-items: center; }
  .gate-card { min-height: auto; max-height: calc(100svh - 24px); grid-template-columns: 1fr; border-radius: 30px; overflow-y: auto; }
  .gate-art { min-height: 182px; }
  .gate-mark { width: 150px; }
  .gate-content { padding: 26px 22px 28px; }
  .gate-word { width: 270px; margin: 0 auto 18px; }
  .gate-content h1 { font-size: 25px; }
  .gate-description { margin: 10px 0 14px; }
	  .language-grid { gap: 7px; }
  .language-grid button { min-height: 52px; padding: 7px 10px; }
}

@media (max-width: 390px) {
  .brand { width: 152px; }
  .portal-grid { grid-template-columns: 1fr; }
  .portal-card, .portal-card:last-child:nth-child(odd) { grid-column: auto; min-height: 112px; }
  .price-heading { display: block; }
  .price-heading > span { display: inline-block; margin-top: 12px; }
  .language-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Official website coupon */
.button-coupon { color: var(--ink); background: var(--yellow); box-shadow: 0 14px 30px rgba(244,196,63,.28); }
.button-coupon:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(244,196,63,.34); }
.coupon-page { background: var(--cream); }
.coupon-hero { min-height: calc(100vh - 128px); padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 110px) clamp(90px, 10vw, 140px); }
.coupon-wrap { width: min(820px, 100%); margin: 0 auto; }
.coupon-wrap > h1 { margin: 0; font-size: clamp(38px, 6vw, 68px); line-height: 1.2; letter-spacing: -.035em; }
.coupon-lead { margin: 20px 0 38px; color: var(--muted); font-weight: 700; }
.coupon-ticket { overflow: hidden; border-radius: 34px; background: var(--paper); box-shadow: var(--shadow); border: 2px solid rgba(23,61,80,.07); }
.coupon-ticket-top { display: flex; align-items: center; gap: 22px; padding: clamp(26px, 4vw, 42px); background: linear-gradient(135deg, #fff4a8 0%, #ffe8a0 46%, #ffd7da 100%); }
.coupon-ticket-top img { width: clamp(88px, 14vw, 128px); height: auto; transform: rotate(-5deg); }
.coupon-ticket-top span { display: block; margin-bottom: 8px; color: var(--blue-deep); font-size: 11px; font-weight: 900; letter-spacing: .18em; }
.coupon-ticket-top strong { display: block; color: var(--ink); font-size: clamp(36px, 7vw, 64px); line-height: 1.08; letter-spacing: -.04em; }
.coupon-ticket-body { padding: clamp(28px, 5vw, 48px); }
.coupon-present { margin: 0; text-align: center; color: var(--muted); font-size: clamp(16px, 2vw, 20px); line-height: 1.8; font-weight: 700; }
.coupon-present strong { color: var(--pink); font-size: clamp(36px, 7vw, 62px); letter-spacing: -.03em; }
.coupon-rules { margin-top: 34px; padding-top: 30px; border-top: 1px dashed rgba(23,61,80,.2); }
.coupon-rules h2 { margin: 0 0 16px; font-size: 18px; }
.coupon-rules ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.coupon-rules li { position: relative; padding: 15px 18px 15px 46px; border-radius: 16px; background: #fff7e8; font-weight: 800; }
.coupon-rules li::before { content: "✓"; position: absolute; left: 18px; top: 14px; color: var(--blue); font-weight: 900; }
.coupon-actions { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.coupon-back { color: var(--ink); background: white; box-shadow: inset 0 0 0 1px rgba(23,61,80,.12); }

@media (max-width: 760px) {
  .coupon-hero { padding: 48px 16px 100px; }
  .coupon-lead { margin-bottom: 26px; }
  .coupon-ticket { border-radius: 26px; }
  .coupon-ticket-top { gap: 14px; padding: 24px 20px; }
  .coupon-ticket-top img { width: 76px; }
  .coupon-ticket-body { padding: 26px 20px; }
  .coupon-rules li { font-size: 14px; }
  .coupon-actions { align-items: stretch; flex-direction: column; }
  .coupon-actions .button { width: 100%; }
  .hero-actions .open-badge { width: 100%; }
}


/* Today's schedule (all language top pages) */
.today-schedule-section { padding-top: clamp(48px, 7vw, 88px); }
.today-schedule-section .section-heading { margin-bottom: 24px; }
.today-schedule-date { margin: 10px 0 0; color: var(--muted); font-weight: 800; letter-spacing: .04em; }
.today-schedule-card { width: min(1040px, 100%); margin: 0 auto; padding: clamp(18px, 3vw, 30px); border-radius: 28px; background: var(--paper); box-shadow: var(--shadow); border: 1px solid rgba(23,61,80,.07); }
.today-schedule-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(12px, 2vw, 22px); }
.today-schedule-person { overflow: hidden; border-radius: 22px; background: #fff; border: 1px solid rgba(23,61,80,.08); box-shadow: 0 10px 30px rgba(23,61,80,.07); }
.today-schedule-person--linked { display: block; color: inherit; text-decoration: none; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease; }
.today-schedule-person--linked:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(23,61,80,.12); }
.today-schedule-person--linked:focus-visible { outline: 3px solid rgba(255,183,0,.65); outline-offset: 3px; }
.today-schedule-photo-wrap { position: relative; width: 100%; aspect-ratio: 3 / 4; overflow: hidden; background: #fff8eb; }
.today-schedule-photo { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.today-schedule-person-body { display: grid; gap: 4px; padding: 14px 12px 16px; text-align: center; }
.today-schedule-person-body strong { font-size: clamp(17px, 2vw, 21px); line-height: 1.35; }
.today-schedule-person-body span { color: var(--blue-deep); font-size: clamp(15px, 1.8vw, 18px); font-weight: 900; white-space: nowrap; }
.today-schedule-empty { margin: 0; text-align: center; color: var(--muted); font-weight: 800; }
.today-schedule-action { display: flex; justify-content: center; margin-top: 18px; }
.today-schedule-details-button { width: min(340px, 100%); }

@media (max-width: 900px) {
  .today-schedule-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .today-schedule-card { padding: 16px; border-radius: 24px; }
  .today-schedule-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .today-schedule-person { border-radius: 18px; }
  .today-schedule-person-body { padding: 12px 8px 14px; }
  .today-schedule-person-body strong { font-size: 16px; }
  .today-schedule-person-body span { font-size: 15px; }
}


/* Multilingual cast directory */
.cast-page { background: var(--cream); }
.cast-hero { min-height: calc(100vh - 128px); padding: clamp(56px, 8vw, 100px) clamp(20px, 6vw, 110px) clamp(90px, 10vw, 140px); }
.cast-wrap { width: min(1120px, 100%); margin: 0 auto; }
.cast-heading { margin-bottom: 34px; }
.cast-heading h1 { margin: 0; font-size: clamp(38px, 6vw, 68px); line-height: 1.15; letter-spacing: -.035em; }
.cast-heading > p:last-child { margin: 14px 0 0; color: var(--muted); font-weight: 700; }
.cast-directory-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 2vw, 24px); }
.cast-directory-card { overflow: hidden; border-radius: 22px; background: #fff; border: 1px solid rgba(23,61,80,.08); box-shadow: 0 10px 30px rgba(23,61,80,.07); }
.cast-directory-card--linked { display: block; color: inherit; text-decoration: none; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease; }
.cast-directory-card--linked:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(23,61,80,.12); }
.cast-directory-card--linked:focus-visible { outline: 3px solid rgba(255,183,0,.65); outline-offset: 3px; }
.cast-directory-photo-wrap { width: 100%; aspect-ratio: 3 / 4; overflow: hidden; background: #fff8eb; }
.cast-directory-photo { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.cast-directory-body { padding: 15px 12px 17px; text-align: center; }
.cast-directory-body strong { font-size: clamp(17px, 2vw, 21px); line-height: 1.35; }
.cast-directory-message { padding: 34px 20px; border-radius: 24px; background: var(--paper); box-shadow: var(--shadow); text-align: center; color: var(--muted); font-weight: 800; }
.cast-directory-actions { display: flex; justify-content: center; margin-top: 34px; }
.cast-directory-actions .button { width: min(340px, 100%); }

@media (max-width: 900px) {
  .cast-directory-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .cast-hero { padding: 44px 16px 100px; }
  .cast-directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .cast-directory-card { border-radius: 18px; }
  .cast-directory-body { padding: 12px 8px 14px; }
  .cast-directory-body strong { font-size: 16px; }
}
