:root {
  --bg: #050505;
  --black: #070707;
  --black2: #101010;
  --gold: #caa66a;
  --gold2: #8f6b37;
  --white: #fff;
  --muted: rgba(255,255,255,.68);
  --border: rgba(202,166,106,.36);
  --bottom-nav-height: 66px;
  --header-height: 72px;
  --shadow: 0 26px 70px rgba(0,0,0,.55);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;
  background: #050505;
  color: #fff;
  font-family:
    "Hiragino Mincho ProN",
    "Yu Mincho",
    "YuMincho",
    "Hiragino Sans",
    "Yu Gothic",
    serif;
  overflow-x: hidden;
  padding-bottom: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom));
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  width: 100%;
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

/* loading */
.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #030303;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .45s ease, visibility .45s ease;
}

.loading.hidden {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.16);
  border-top: 1px solid var(--gold);
  border-radius: 50%;
  animation: spin .95s linear infinite;
  box-shadow: 0 0 34px rgba(202,166,106,.25);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.84),
    rgba(0,0,0,.24)
  );
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(202,166,106,.12);
}

body.animations-ready .site-header {
  animation: headerFloatIn .9s ease both;
}

.header-logo-link {
  width: 142px;
  display: grid;
  gap: 2px;
  text-decoration: none;
}

.header-logo {
  width: 128px;
  filter: drop-shadow(0 10px 26px rgba(0,0,0,.7));
}

.header-logo-link span {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-left: 3px;
  white-space: nowrap;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: rgba(0,0,0,.1);
  border: 0;
  cursor: pointer;
}

.menu-button span {
  width: 27px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), #f0d99a);
  border-radius: 99px;
}

/* drawer menu */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: .28s;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 84%;
  max-width: 360px;
  height: 100svh;
  z-index: 1300;
  background: linear-gradient(
    180deg,
    rgba(18,18,18,.99),
    rgba(3,3,3,.99)
  );
  border-left: 1px solid var(--border);
  box-shadow: -28px 0 80px rgba(0,0,0,.62);
  padding: 32px 24px calc(34px + env(safe-area-inset-bottom));
  transform: translateX(100%);
  transition: transform .34s cubic-bezier(.16,1,.3,1);
  overflow-y: auto;
}

.drawer-menu.active {
  transform: translateX(0);
}

.menu-close-button {
  position: absolute;
  top: 17px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.drawer-logo {
  width: 150px;
  margin: 28px 0 42px;
}

.drawer-logo p {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 2px;
  margin-top: 5px;
}

.drawer-list {
  list-style: none;
}

.drawer-list li {
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.drawer-list a {
  display: block;
  padding: 18px 0;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2.6px;
}

.drawer-buttons {
  margin-top: 34px;
  display: grid;
  gap: 12px;
}

.drawer-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border-radius: 0;
  padding: 15px;
  font-weight: 700;
  box-shadow: 0 18px 38px rgba(0,0,0,.35);
}

.drawer-call {
  background: linear-gradient(135deg,#d6b375,#8c642f);
}

/* hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #050505;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("img/background.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.12);
  filter: brightness(.52) contrast(1.22) saturate(.88);
  will-change: transform, filter;
}

body.animations-ready .hero-bg {
  animation: bgGrandReveal 2.4s cubic-bezier(.16,1,.3,1) both, bgSlowZoom 18s 2.4s cubic-bezier(.16,1,.3,1) forwards;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 48%, rgba(232,191,116,.34), transparent 19%),
    radial-gradient(circle at 72% 18%, rgba(255,255,255,.14), transparent 22%),
    linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,.12) 46%, rgba(0,0,0,.76));
  opacity: 1;
}

body.animations-ready .hero::before {
  animation: heroCurtain 3s .18s ease-out both;
}

.hero-content::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 50%;
  width: min(420px,70vw);
  height: min(420px,70vw);
  pointer-events: none;
  background: radial-gradient(circle,rgba(202,166,106,.22),transparent 58%);
  opacity: 0;
  transform: translateY(-50%) scale(.62);
  filter: blur(12px);
}

body.animations-ready .hero-content::before {
  animation: heroAura 2.2s .55s ease-out both;
}

.hero::after,
.cast-hero-page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      rgba(232,191,116,0) 0%,
      rgba(232,191,116,0) 34%,
      rgba(255,255,255,.08) 45%,
      rgba(202,166,106,.10) 48%,
      rgba(232,191,116,0) 60%,
      rgba(232,191,116,0) 100%
    );
  opacity: 0;
  transform: translateX(-36%);
}

body.animations-ready .hero::after,
body.animations-ready .cast-hero-page::after {
  animation: heroSheen 5.8s .88s ease-out both;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.88) 0%,
      rgba(0,0,0,.68) 36%,
      rgba(0,0,0,.18) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0,0,0,.38),
      rgba(0,0,0,.78) 78%,
      rgba(0,0,0,.96)
    );
}

.hero-content {
  position: relative;
  z-index: 4;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 36px 145px;
}

.hero-lead {
  font-size: 30px;
  line-height: 1.55;
  letter-spacing: 1px;
  text-shadow:
    0 18px 38px rgba(0,0,0,.82),
    0 0 26px rgba(202,166,106,.12);
  margin-bottom: 18px;
}

.gold-line {
  width: 86px;
  height: 1px;
  background: linear-gradient(to right,var(--gold),transparent);
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  transform-origin: left center;
}

.hero .gold-line {
  width: min(210px, 58vw);
}

.gold-line::after,
.ornament-line::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 34px;
  background: linear-gradient(to right,transparent,rgba(255,255,255,.9),transparent);
  transform: translateX(-110%);
}

body.animations-ready .gold-line::after,
body.animations-ready .ornament-line::before {
  animation: goldGlint 3.8s 1s ease-in-out infinite;
}

.hero-top-text {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 9px;
}

.hero-logo {
  width: 225px;
  max-width: 78%;
  filter: drop-shadow(0 18px 42px rgba(0,0,0,.7));
  margin-bottom: 8px;
}

.hero-sub-text {
  font-size: 12px;
  letter-spacing: 1.6px;
  color: #e4c98d;
  margin-bottom: 28px;
}

.hero-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 240px;
}

.hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .5px;
  box-shadow: 0 18px 42px rgba(0,0,0,.42);
  transition: .22s;
  position: relative;
  overflow: hidden;
}

.hero-btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -46%;
  width: 42%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.26), transparent);
  transform: skewX(-18deg);
}

body.animations-ready .hero-btn::after {
  animation: buttonSheen 4.6s 1.8s ease-in-out infinite;
}

.hero-btn:active {
  transform: scale(.97);
}

.call-btn {
  background: linear-gradient(135deg,#d7b676,#93682f);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 112px;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 4px;
}

.scroll-indicator span:last-child {
  width: 1px;
  height: 26px;
  margin-top: 8px;
  background: var(--gold);
}

body.animations-ready .scroll-indicator span:last-child {
  animation: scrollLine 1.6s infinite;
}

@keyframes bgSlowZoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.03);
  }
}

@keyframes scrollLine {
  0%,
  100% {
    height: 20px;
    opacity: .35;
  }

  50% {
    height: 34px;
    opacity: 1;
  }
}

/* feature sections */
.feature-section {
  position: relative;
  min-height: 58svh;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: #050505;
}

.feature-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 1.8s ease, filter 1.8s ease;
}

.feature-section.is-visible .feature-image {
  transform: scale(1.12);
}

.feature-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.72) 0%,
      rgba(0,0,0,.50) 36%,
      rgba(0,0,0,.10) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0,0,0,.08),
      rgba(0,0,0,.38)
    );
  z-index: 1;
}

.feature-floor .feature-image {
  background-image: url("img/floor.jpg");
  background-position: 58% center;
  filter: brightness(1.18) contrast(1.05) saturate(1.05);
}

.feature-floor::before {
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.66) 0%,
      rgba(0,0,0,.42) 36%,
      rgba(0,0,0,.06) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0,0,0,.04),
      rgba(0,0,0,.28)
    );
}

.feature-vip .feature-image {
  background-image: url("img/vip.jpg");
  background-position: 58% center;
  filter: brightness(1.08) contrast(1.04) saturate(1.03);
}

.feature-entrance .feature-image {
  background-image: url("img/entrance.jpg");
  background-position: 55% center;
  filter: brightness(1.08) contrast(1.04) saturate(1.04);
}

.feature-panel {
  position: relative;
  z-index: 2;
  min-height: 58svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 36px;
  max-width: 360px;
}

.section-kicker {
  font-size: 30px;
  letter-spacing: 2px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}

.ornament-line {
  width: 138px;
  height: 1px;
  background: linear-gradient(to right,var(--gold),transparent);
  position: relative;
  margin-bottom: 24px;
}

.ornament-line::after {
  content: "";
  position: absolute;
  left: 72px;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

.feature-copy {
  font-size: 21px;
  line-height: 1.9;
  text-shadow: 0 16px 34px rgba(0,0,0,.85);
  margin-bottom: 34px;
}

.outline-link {
  width: 210px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--gold);
  color: #f2dca5;
  text-decoration: none;
  padding: 15px 20px;
  font-size: 14px;
  letter-spacing: 1.5px;
}

.outline-link::after {
  content: "›";
  font-size: 28px;
  line-height: 1;
}

/* normal sections */
.section {
  position: relative;
  padding: 76px 20px;
  background:
    radial-gradient(circle at 10% 0%,rgba(202,166,106,.12),transparent 34%),
    #050505;
  scroll-margin-top: 82px;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(to right,transparent,var(--border),transparent);
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 24px;
}

.section-title {
  font-size: 26px;
  line-height: 1.35;
  font-weight: 600;
  margin-top: 10px;
}

.text-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  white-space: nowrap;
}

.glass-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg,rgba(255,255,255,.14),transparent 28%,transparent 72%,rgba(202,166,106,.08));
  opacity: .5;
}

/* cast */
.cast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.cast-card {
  overflow: hidden;
  background: #151515;
  border: 1px solid rgba(255,255,255,.10);
  text-decoration: none;
  color: #fff;
  box-shadow: 0 18px 44px rgba(0,0,0,.38);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.cast-card:active {
  transform: scale(.97);
}

.cast-card:hover {
  transform: translateY(-4px);
  border-color: rgba(202,166,106,.34);
  box-shadow: 0 24px 62px rgba(0,0,0,.48), 0 0 0 1px rgba(202,166,106,.06);
}

.cast-image-wrap {
  overflow: hidden;
}

.cast-card img {
  aspect-ratio: 3 / 4.1;
  object-fit: cover;
  transition: transform 1.2s ease, filter 1.2s ease;
}

.cast-card:hover img {
  transform: scale(1.045);
  filter: brightness(1.07) contrast(1.04);
}

.cast-info {
  padding: 14px;
}

.cast-label {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.cast-info h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.cast-info p:last-child {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,.68);
}

/* system */
.system-card,
.shop-card {
  padding: 24px;
}

.system-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.system-row:first-child {
  padding-top: 0;
}

.system-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.system-row span {
  color: rgba(255,255,255,.74);
}

.system-row strong {
  text-align: right;
  font-weight: 600;
}

/* shop */
.shop-list {
  display: grid;
  gap: 16px;
}

.shop-list div {
  display: grid;
  gap: 4px;
}

.shop-list dt {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
}

.shop-list dd {
  line-height: 1.7;
  color: rgba(255,255,255,.88);
}

.map-embed {
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: #111;
  min-height: 260px;
}

.map-embed iframe {
  display: block;
  width: 100%;
}

.map-button {
  display: block;
  margin-top: 16px;
  background: linear-gradient(135deg,#d6b375,#8c642f);
  color: #fff;
  text-align: center;
  padding: 15px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(0,0,0,.28);
}

/* footer */
.footer {
  padding: 28px 20px 92px;
  text-align: center;
  color: rgba(255,255,255,.42);
  background: #050505;
}

.footer-brand {
  display: grid;
  gap: 4px;
  justify-items: center;
}

.footer-name {
  font-size: 16px;
  letter-spacing: 1.8px;
  color: rgba(255,255,255,.74);
}

.footer-sub {
  font-size: 10px;
  letter-spacing: 2.2px;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-copy {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 1.4px;
  color: rgba(255,255,255,.36);
}

.footer-logo {
  width: 68px;
  margin: 0 auto 10px;
  opacity: .65;
}

/* bottom nav */
.bottom-fixed-buttons {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(0,1fr));
  padding-bottom: env(safe-area-inset-bottom);
  background: rgba(0,0,0,.90);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(202,166,106,.22);
}

.bottom-btn {
  min-height: var(--bottom-nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px;
  border-right: 1px solid rgba(255,255,255,.12);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

.bottom-btn:last-child {
  border-right: 0;
}

.bottom-btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -48%;
  width: 44%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.24), transparent);
  transform: skewX(-18deg);
}

body.animations-ready .bottom-btn::after {
  animation: buttonSheen 4.8s 2.2s ease-in-out infinite;
}

.phone-fixed {
  background: linear-gradient(135deg,#d7b676,#93682f);
}

.cast-fixed {
  background: linear-gradient(135deg,#302514,#151515);
  color: #f2dca5;
}

/* cast page */
.cast-hero-page {
  position: relative;
  min-height: 58svh;
  overflow: hidden;
  background: #050505;
}

.cast-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("img/background.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  filter: brightness(.58);
  will-change: transform;
}

body.animations-ready .cast-hero-bg {
  animation: bgSlowZoom 16s ease-out forwards;
}

.sub-hero-content {
  position: relative;
  z-index: 2;
  min-height: 58svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 28px 60px;
}

.sub-title {
  font-size: 54px;
  letter-spacing: 6px;
  line-height: 1;
  margin-bottom: 18px;
  color: var(--gold);
}

.hero-description {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,.88);
}

.cast-list-section {
  padding-top: 42px;
}

.cast-list-note {
  margin-bottom: 24px;
  color: rgba(255,255,255,.66);
  font-size: 13px;
  line-height: 1.8;
}

.cast-profile-card {
  overflow: hidden;
  margin-bottom: 28px;
  background: linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}

.cast-profile-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.cast-profile-body {
  padding: 22px;
}

.cast-profile-body h2 {
  font-size: 31px;
  margin-bottom: 8px;
}

.cast-profile-tag {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 14px;
}

.cast-profile-text {
  color: rgba(255,255,255,.78);
  line-height: 1.8;
  margin-bottom: 20px;
}

.cast-profile-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.sns-button {
  text-align: center;
  padding: 14px 10px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(0,0,0,.28);
  position: relative;
  overflow: hidden;
}

.sns-button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -48%;
  width: 44%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.24), transparent);
  transform: skewX(-18deg);
}

body.animations-ready .sns-button::after {
  animation: buttonSheen 4.8s 2.2s ease-in-out infinite;
}

.instagram-button {
  background: linear-gradient(45deg,#833ab4,#c13584,#f77737);
}

.night-button {
  background: linear-gradient(135deg,#d7b676,#93682f);
}

/* animation */
.animate-on-load {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(7px);
}

body.animations-ready .animate-on-load {
  animation: fadeUp .96s cubic-bezier(.16,1,.3,1) forwards;
}

.delay-1 {
  animation-delay: .12s;
}

.delay-2 {
  animation-delay: .22s;
}

.delay-3 {
  animation-delay: .32s;
}

.delay-4 {
  animation-delay: .42s;
}

.delay-5 {
  animation-delay: .52s;
}

body.animations-ready .hero-logo.animate-on-load {
  animation-name: heroLogoReveal, logoGlow;
  animation-duration: 1.28s, 5.6s;
  animation-delay: .72s, 2.05s;
  animation-timing-function: cubic-bezier(.16,1,.3,1), ease-in-out;
  animation-fill-mode: forwards, both;
  animation-iteration-count: 1, infinite;
}

body.animations-ready .gold-line.animate-on-load {
  animation-name: goldLineReveal;
  animation-duration: 1.05s;
  animation-timing-function: cubic-bezier(.16,1,.3,1);
  animation-fill-mode: forwards;
}

.hero .hero-lead.animate-on-load {
  animation-delay: .36s;
}

.hero .gold-line.animate-on-load {
  animation-delay: .66s;
}

.hero .hero-top-text.animate-on-load {
  animation-delay: .78s;
}

.hero .hero-sub-text.animate-on-load {
  animation-delay: 1.1s;
}

.hero .hero-buttons.animate-on-load {
  animation-delay: 1.34s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(8px);
  transition:
    opacity 1s cubic-bezier(.16,1,.3,1),
    transform 1s cubic-bezier(.16,1,.3,1),
    filter 1s cubic-bezier(.16,1,.3,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@keyframes headerFloatIn {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroCurtain {
  0% {
    opacity: 1;
    transform: scale(1.04);
  }

  42% {
    opacity: .78;
  }

  70% {
    opacity: .34;
  }

  100% {
    opacity: .10;
    transform: scale(1);
  }
}

@keyframes bgGrandReveal {
  0% {
    transform: scale(1.12);
    filter: brightness(.52) contrast(1.22) saturate(.88);
  }

  54% {
    transform: scale(1.1);
    filter: brightness(1.08) contrast(1.12) saturate(1.12);
  }

  100% {
    transform: scale(1.08);
    filter: brightness(.86) contrast(1.06) saturate(1.04);
  }
}

@keyframes heroAura {
  0% {
    opacity: 0;
    transform: translateY(-50%) scale(.62);
  }

  45% {
    opacity: .9;
  }

  100% {
    opacity: .24;
    transform: translateY(-50%) scale(1.18);
  }
}

@keyframes heroSheen {
  0% {
    opacity: 0;
    transform: translateX(-42%);
  }

  24% {
    opacity: .82;
  }

  100% {
    opacity: 0;
    transform: translateX(42%);
  }
}

@keyframes lineBloom {
  from {
    opacity: 0;
    transform: scaleX(.12);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes heroLogoReveal {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(.84);
    filter: blur(14px) drop-shadow(0 18px 42px rgba(0,0,0,.7));
  }

  58% {
    opacity: 1;
    transform: translateY(0) scale(1.08);
    filter: blur(0) drop-shadow(0 18px 42px rgba(0,0,0,.7)) drop-shadow(0 0 36px rgba(232,191,116,.54));
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0) drop-shadow(0 18px 42px rgba(0,0,0,.7));
  }
}

@keyframes goldLineReveal {
  from {
    opacity: 0;
    transform: translateY(10px) scaleX(.12);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scaleX(1);
    filter: blur(0);
  }
}

@keyframes goldGlint {
  0%,
  55% {
    transform: translateX(-120%);
    opacity: 0;
  }

  70% {
    opacity: .8;
  }

  100% {
    transform: translateX(260%);
    opacity: 0;
  }
}

@keyframes logoGlow {
  0%,
  100% {
    filter: drop-shadow(0 18px 42px rgba(0,0,0,.7));
  }

  50% {
    filter: drop-shadow(0 18px 42px rgba(0,0,0,.7)) drop-shadow(0 0 18px rgba(202,166,106,.26));
  }
}

@keyframes buttonSheen {
  0%,
  58% {
    left: -46%;
    opacity: 0;
  }

  68% {
    opacity: 1;
  }

  86%,
  100% {
    left: 112%;
    opacity: 0;
  }
}

@media (max-width: 767px) {
  body.animations-ready .hero-bg {
    animation:
      mobileBgGrandReveal 2.55s cubic-bezier(.16,1,.3,1) both,
      mobileBgSlowZoom 18s 2.55s cubic-bezier(.16,1,.3,1) forwards;
  }

  .hero::before {
    background:
      radial-gradient(circle at 30% 45%, rgba(232,191,116,.48), transparent 22%),
      radial-gradient(circle at 80% 18%, rgba(255,255,255,.18), transparent 24%),
      linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,.08) 43%, rgba(0,0,0,.78));
  }

  body.animations-ready .hero::before {
    animation: mobileHeroCurtain 3.05s .12s ease-out both;
  }

  .hero::after {
    background:
      linear-gradient(
        112deg,
        rgba(232,191,116,0) 0%,
        rgba(232,191,116,0) 28%,
        rgba(255,255,255,.12) 43%,
        rgba(232,191,116,.22) 48%,
        rgba(232,191,116,0) 64%,
        rgba(232,191,116,0) 100%
      );
    background-size: 240% 100%;
    background-position: 115% 0;
    transform: none;
  }

  body.animations-ready .hero::after {
    animation: mobileHeroSheen 4.8s .78s ease-out both;
  }

  .hero-content::before {
    left: 50%;
    width: min(480px,112vw);
    height: min(480px,112vw);
    background:
      radial-gradient(circle, rgba(232,191,116,.32), rgba(202,166,106,.16) 34%, transparent 64%);
  }

  body.animations-ready .hero-content::before {
    animation: mobileHeroAura 2.5s .44s ease-out both;
  }

  body.animations-ready .hero-logo.animate-on-load {
    animation-duration: 1.45s, 4.8s;
    animation-delay: .64s, 1.86s;
  }
}

@keyframes mobileBgGrandReveal {
  0% {
    transform: scale(1.18);
    filter: brightness(.42) contrast(1.28) saturate(.84);
  }

  48% {
    transform: scale(1.13);
    filter: brightness(1.14) contrast(1.16) saturate(1.18);
  }

  100% {
    transform: scale(1.08);
    filter: brightness(.88) contrast(1.08) saturate(1.06);
  }
}

@keyframes mobileBgSlowZoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.02);
  }
}

@keyframes mobileHeroCurtain {
  0% {
    opacity: 1;
    transform: scale(1.08);
  }

  38% {
    opacity: .86;
  }

  68% {
    opacity: .24;
  }

  100% {
    opacity: .06;
    transform: scale(1);
  }
}

@keyframes mobileHeroAura {
  0% {
    opacity: 0;
    transform: translate(-50%,-50%) scale(.46);
    filter: blur(18px);
  }

  45% {
    opacity: 1;
  }

  100% {
    opacity: .36;
    transform: translate(-50%,-50%) scale(1.24);
    filter: blur(14px);
  }
}

@keyframes mobileHeroSheen {
  0% {
    opacity: 0;
    background-position: 115% 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    background-position: -15% 0;
  }
}

/* pc */
@media (min-width: 768px) {
  .site-header {
    padding: 13px 32px;
  }

  .header-logo-link {
    width: 170px;
  }

  .header-logo {
    width: 150px;
  }

  .hero-content {
    padding-left: 7%;
    max-width: 520px;
  }

  .hero-lead {
    font-size: 44px;
  }

  .hero-logo {
    width: 300px;
  }

  .feature-panel {
    padding-left: 7%;
  }

  .section {
    padding: 96px 32px;
  }

  .cast-grid {
    grid-template-columns: repeat(4,1fr);
  }

  .cast-profile-card {
    display: grid;
    grid-template-columns: minmax(260px,38%) 1fr;
  }

  .cast-profile-image img {
    height: 100%;
  }

}

/* cast gallery additions */
.cast-photo-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: #090909;
}

.cast-photo-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.cast-photo-gallery img + img {
  border-top: 1px solid rgba(255,255,255,.08);
}


/* horizontal cast photo slider */
.cast-slider {
  width: 100%;
  aspect-ratio: 3 / 4.1;
  overflow: hidden;
  position: relative;
  background: #090909;
}

.cast-slider.has-multiple::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.62), transparent);
}

.cast-profile-image .cast-slider {
  aspect-ratio: 4 / 5;
}

.cast-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.cast-track::-webkit-scrollbar {
  display: none;
}

.cast-track img {
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  object-fit: cover;
  scroll-snap-align: start;
  display: block;
}

.cast-slider-ui {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  z-index: 2;
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

.cast-slider-arrow {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,.85);
  cursor: pointer;
  pointer-events: auto;
  user-select: none;
}

.cast-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 0;
}

.cast-slider-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.46);
  box-shadow: 0 1px 8px rgba(0,0,0,.65);
  transition: width .2s ease, background-color .2s ease;
}

.cast-slider-dot.is-active {
  width: 14px;
  border-radius: 99px;
  background: var(--gold);
}

.cast-image-wrap .cast-slider,
.cast-profile-image .cast-slider {
  border-radius: 0;
}

.cast-image-wrap,
.cast-profile-image {
  overflow: hidden;
}

@media (min-width: 768px) {
  .cast-profile-image .cast-slider {
    height: 100%;
    aspect-ratio: auto;
  }

  .cast-profile-image .cast-track img {
    height: 100%;
  }
}

/* recruit page */
.recruit-section {
  padding-top: 64px;
}

.recruit-grid {
  display: grid;
  gap: 24px;
}

.recruit-card {
  padding: 26px 22px;
}

.recruit-label {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 3px;
}

.recruit-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.45;
}

.recruit-lead {
  margin-bottom: 22px;
  color: rgba(255,255,255,.82);
  line-height: 1.8;
}

.recruit-list {
  display: grid;
  gap: 14px;
}

.recruit-list div {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.recruit-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.recruit-list dt {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
}

.recruit-list dd {
  color: rgba(255,255,255,.90);
  line-height: 1.7;
}

.recruit-note {
  margin-top: 22px;
  color: rgba(255,255,255,.66);
  font-size: 13px;
  line-height: 1.8;
}

.recruit-contact-card {
  margin-top: 28px;
  padding: 26px 22px;
}

.recruit-contact-card p {
  color: rgba(255,255,255,.78);
  line-height: 1.8;
}

.recruit-phone {
  margin-top: 12px;
  font-size: 24px;
  letter-spacing: 1px;
}

.recruit-phone a {
  color: #f2dca5;
  text-decoration: none;
}

.recruit-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 22px;
}

/* index recruit section */
.index-recruit-card {
  padding: 24px;
}

.index-recruit-lead {
  margin-bottom: 22px;
  color: rgba(255,255,255,.82);
  line-height: 1.8;
}

.index-recruit-grid {
  display: grid;
  gap: 18px;
}

.index-recruit-grid div {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.10);
}

.index-recruit-label {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
}

.index-recruit-grid h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.index-recruit-grid p:last-child {
  color: rgba(255,255,255,.74);
  line-height: 1.7;
}

.index-recruit-button {
  margin-top: 22px;
}

@media (min-width: 768px) {
  .recruit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .recruit-card,
  .recruit-contact-card {
    padding: 34px;
  }

  .recruit-buttons {
    grid-template-columns: 240px;
  }

  .index-recruit-card {
    padding: 30px;
  }

  .index-recruit-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .index-recruit-grid div {
    padding: 0;
    border-top: 0;
  }
}
