:root {
  --ink: #080b0d;
  --ink-soft: #11171b;
  --blue: #123344;
  --blue-light: #587f91;
  --silver: #c7baa6;
  --mist: #15191b;
  --paper: #eeeae2;
  --white: #ffffff;
  --line: rgba(196, 181, 158, 0.3);
  --serif: "Cormorant Garamond", "Noto Serif JP", "Yu Mincho", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: 0.055em;
}

body::before {
  content: "";
  position: fixed;
  z-index: 999;
  inset: 0;
  pointer-events: none;
  opacity: 0.026;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

body.menu-open {
  overflow: hidden;
}

body.is-loading {
  overflow: hidden;
}

body.is-loading .hero *,
body.is-loading .hero *::before,
body.is-loading .hero *::after,
body.is-loading .site-header {
  animation-play-state: paused !important;
}

.site-loader {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 50% 45%, rgba(67,92,103,0.2), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(169,129,65,0.13), transparent 24%),
    linear-gradient(145deg, #030607, #071116 58%, #050708);
  transition: opacity 0.85s ease, visibility 0s linear 0.85s;
}

.site-loader::before,
.site-loader::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(190,164,111,0.09);
  border-radius: 50%;
}

.site-loader::before {
  right: -18vw;
  bottom: -28vw;
  width: 54vw;
  height: 54vw;
}

.site-loader::after {
  top: -23vw;
  left: -17vw;
  width: 43vw;
  height: 43vw;
}

.site-loader.is-leaving {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.site-loader-inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(320px, calc(100vw - 54px));
  flex-direction: column;
  align-items: center;
  transition: opacity 0.65s ease, transform 0.85s cubic-bezier(0.22,0.75,0.24,1);
}

.site-loader.is-leaving .site-loader-inner {
  opacity: 0;
  transform: translateY(-8px) scale(1.025);
}

.loader-emblem {
  position: relative;
  width: 112px;
  height: 112px;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
}

.loader-ring {
  position: absolute;
  inset: -1px;
  border: 1px solid transparent;
  border-top-color: #c4a36b;
  border-right-color: rgba(196,163,107,0.28);
  border-radius: 50%;
  animation: loaderRing 1.8s linear infinite;
}

.loader-hand {
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: 1px;
  height: 31px;
  background: rgba(255,255,255,0.8);
  transform-origin: 50% 100%;
  animation: loaderHand 2.8s cubic-bezier(0.65,0,0.35,1) infinite;
}

.loader-emblem i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  background: #b99860;
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.loader-location {
  margin: 0 0 16px;
  color: #b99860;
  font-family: var(--serif);
  font-size: 8px;
  letter-spacing: 0.38em;
}

.loader-wordmark {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 35px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.17em;
}

.loader-wordmark small {
  color: rgba(255,255,255,0.57);
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.28em;
}

.loader-wordmark strong {
  font-size: 31px;
  font-weight: 400;
}

.loader-progress {
  position: relative;
  width: 100%;
  height: 1px;
  overflow: hidden;
  background: rgba(255,255,255,0.12);
}

.loader-progress span {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #7e673f, #d4b77d, #f4e4bd);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}

.loader-percent {
  align-self: flex-end;
  margin: 10px 0 0;
  color: rgba(255,255,255,0.56);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.loader-percent b { font-weight: 400; }
.loader-percent small { margin-left: 3px; font-size: 7px; }

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

@keyframes loaderHand {
  0% { transform: rotate(0); }
  42% { transform: rotate(118deg); }
  68% { transform: rotate(242deg); }
  100% { transform: rotate(360deg); }
}

body.menu-open .site-header,
.site-header.is-menu-ready {
  opacity: 1;
  transform: none;
  animation: none;
}

body.menu-open .site-header {
  background: transparent;
  border-bottom-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.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;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 78px);
  color: white;
  transition: height 0.35s ease, background 0.35s ease, border 0.35s ease;
  animation: headerEntrance 1.2s 11s both;
}

.site-header.is-scrolled {
  height: 76px;
  background: rgba(6, 8, 9, 0.94);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  z-index: 102;
  display: flex;
  align-items: center;
  min-width: 112px;
}

.brand-logo {
  width: clamp(105px, 9vw, 138px);
  height: auto;
  max-height: 76px;
  object-fit: contain;
  filter: invert(1) sepia(0.05) drop-shadow(0 5px 16px rgba(0,0,0,0.28));
}

.header-wordmark {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: white;
  white-space: nowrap;
}

.header-wordmark small {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.24em;
}

.header-wordmark b {
  font-family: "Noto Serif JP", serif;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 0.13em;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(19px, 2.4vw, 40px);
}

.global-nav a {
  font-size: 11px;
  letter-spacing: 0.1em;
  transition: color 0.25s ease;
}

.global-nav a:hover {
  color: #cbbb9f;
}

.global-nav small {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,0.52);
  font-family: var(--serif);
  font-size: 9px;
  letter-spacing: 0.2em;
}

.global-nav .instagram-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.36);
  border-radius: 999px;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.global-nav .instagram-nav:hover,
.global-nav .instagram-nav:focus-visible {
  color: white;
  background: linear-gradient(135deg, rgba(140, 72, 133, 0.72), rgba(196, 92, 104, 0.76));
  border-color: rgba(255,255,255,0.68);
}

.instagram-nav svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.instagram-nav .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.instagram-nav span {
  line-height: 1;
}

.global-nav .instagram-nav small {
  margin-top: 4px;
  font-size: 7px;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  height: max(720px, 100svh);
  min-height: 680px;
  overflow: hidden;
  background: #050d14;
  color: white;
}

.hero-scenes,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-scenes {
  overflow: hidden;
}

.hero-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: opacity, transform;
}

.scene-noon {
  z-index: 1;
  filter: saturate(0.82) contrast(0.94);
  animation: noonScene 12s ease-in-out both;
}

.scene-sunset {
  z-index: 2;
  opacity: 0;
  filter: saturate(0.82) brightness(0.9);
  animation: sunsetScene 12s ease-in-out both;
}

.scene-night {
  z-index: 3;
  opacity: 0;
  object-position: center 46%;
  filter: saturate(0.62) contrast(1.08);
  animation: nightScene 12s ease-in-out both;
}

.hero-shade {
  z-index: 4;
  background:
    radial-gradient(circle at 66% 44%, rgba(143, 113, 69, 0.1), transparent 29%),
    linear-gradient(90deg, rgba(2, 4, 5, 0.9), rgba(4, 7, 9, 0.38) 58%, rgba(3, 4, 5, 0.7)),
    linear-gradient(0deg, rgba(3, 5, 6, 0.82), transparent 52%);
  animation: storyShade 12s ease-in-out both;
}

.hero-shade::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.34);
  animation: logoBackdrop 12s ease-in-out both;
}

.hero-story-ui {
  position: absolute;
  z-index: 5;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  animation: storyUiExit 12s ease-in-out both;
}

.story-frame {
  position: absolute;
  inset: 30px;
  border-top: 1px solid rgba(255,255,255,0.26);
  border-right: 1px solid rgba(255,255,255,0.14);
  border-left: 1px solid rgba(255,255,255,0.14);
  opacity: 0;
  animation: frameDraw 12s ease-in-out both;
}

.story-frame::before,
.story-frame::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 5px;
  height: 5px;
  border: 1px solid rgba(255,255,255,0.54);
  transform: rotate(45deg);
}

.story-frame::before { left: -3px; }
.story-frame::after { right: -3px; }

.story-light {
  position: absolute;
  top: -25%;
  left: -55%;
  width: 38%;
  height: 155%;
  opacity: 0;
  transform: rotate(12deg);
  background: linear-gradient(90deg, transparent, rgba(255, 225, 182, 0.24), rgba(255,255,255,0.13), transparent);
  filter: blur(28px);
  mix-blend-mode: screen;
}

.story-light-one {
  animation: lightPassOne 12s ease-in-out both;
}

.story-light-two {
  animation: lightPassTwo 12s ease-in-out both;
}

.story-clock {
  position: absolute;
  left: clamp(48px, 6vw, 92px);
  bottom: 117px;
  width: 230px;
  height: 42px;
}

.story-time {
  position: absolute;
  inset: 0 auto auto 0;
  display: flex;
  align-items: baseline;
  gap: 13px;
  color: white;
  opacity: 0;
}

.story-time b {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.story-time small {
  color: rgba(255,255,255,0.62);
  font-family: var(--serif);
  font-size: 8px;
  letter-spacing: 0.19em;
  white-space: nowrap;
}

.time-noon { animation: timeNoon 12s ease-in-out both; }
.time-sunset { animation: timeSunset 12s ease-in-out both; }
.time-night { animation: timeNight 12s ease-in-out both; }

.story-dial {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(166px, 15vw, 218px);
  aspect-ratio: 1;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.94);
  animation: storyDialReveal 12s cubic-bezier(0.22, 0.75, 0.24, 1) both;
}

.story-dial-face {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.74);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5,10,13,0.18) 0 52%, rgba(5,10,13,0.34) 100%);
  box-shadow:
    0 0 0 8px rgba(255,255,255,0.035),
    inset 0 0 35px rgba(255,255,255,0.05),
    0 20px 48px rgba(0,0,0,0.18);
  backdrop-filter: blur(1.5px);
}

.story-dial-face::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(201,184,149,0.32);
  border-radius: 50%;
}

.dial-ticks {
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: repeating-conic-gradient(from -0.7deg, rgba(255,255,255,0.72) 0 1.4deg, transparent 1.4deg 30deg);
  -webkit-mask: radial-gradient(circle, transparent 0 82%, #000 83% 100%);
  mask: radial-gradient(circle, transparent 0 82%, #000 83% 100%);
}

.dial-number {
  position: absolute;
  color: rgba(255,255,255,0.72);
  font-family: var(--serif);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
}

.dial-twelve { top: 17px; left: 50%; transform: translateX(-50%); }
.dial-three { top: 50%; right: 16px; transform: translateY(-50%); }
.dial-six { bottom: 16px; left: 50%; transform: translateX(-50%); }
.dial-nine { top: 50%; left: 16px; transform: translateY(-50%); }

.dial-hand {
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 7px rgba(255,255,255,0.28);
  transform-origin: 50% 100%;
}

.dial-hour {
  height: 25%;
  animation: dialHour 12s ease-in-out both;
}

.dial-minute {
  height: 35%;
  background: rgba(218,202,167,0.94);
  animation: dialMinute 12s ease-in-out both;
}

.dial-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 50%;
  background: #b9a071;
  box-shadow: 0 0 0 3px rgba(5,10,13,0.25);
  transform: translate(-50%, -50%);
}

.story-progress {
  position: absolute;
  left: clamp(48px, 6vw, 92px);
  bottom: 98px;
  width: min(270px, 32vw);
  height: 1px;
  background: rgba(255,255,255,0.22);
}

.story-progress i {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.92);
  animation: storyProgress 9.4s linear both;
}

.story-progress span {
  position: absolute;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
}

.story-progress span:nth-of-type(1) { left: 0; }
.story-progress span:nth-of-type(2) { left: 50%; transform: translateX(-50%); }
.story-progress span:nth-of-type(3) { right: 0; }

.hero-content {
  position: absolute;
  z-index: 6;
  left: 50%;
  top: 50%;
  width: clamp(280px, 30vw, 420px);
  max-width: calc(100vw - 48px);
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  animation: logoReveal 12s cubic-bezier(0.22, 0.75, 0.24, 1) both;
}

.hero-logo {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  margin: 0 auto;
  filter: invert(1) sepia(0.08) drop-shadow(0 16px 38px rgba(0,0,0,0.42));
}

.hero-location,
.hero-reading {
  margin: 0;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.4em;
}

.hero-location {
  margin-bottom: 25px;
  color: rgba(255,255,255,0.62);
}

.hero-content h1 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1;
}

.hero-content h1 small {
  display: block;
  margin-bottom: 15px;
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 23px);
  letter-spacing: 0.42em;
}

.hero-content h1 span {
  font-size: clamp(88px, 10vw, 145px);
  letter-spacing: 0.09em;
  text-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

.hero-reading {
  margin-top: 25px;
  color: #c9b895;
}

.hero-orbit {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(201, 184, 149, 0.18);
  border-radius: 50%;
  animation: lateDetail 12s ease-in-out both;
}

.orbit-one {
  width: 50vw;
  height: 50vw;
  right: -25vw;
  bottom: -15vw;
}

.orbit-two {
  width: 34vw;
  height: 34vw;
  right: -15vw;
  bottom: -10vw;
}

.scroll-sign {
  position: absolute;
  z-index: 7;
  right: auto;
  left: 50%;
  bottom: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 9px;
  letter-spacing: 0.3em;
  writing-mode: horizontal-tb;
  animation: lateDetail 12s ease-in-out both;
}

.scroll-sign i {
  width: 1px;
  height: 62px;
  overflow: hidden;
  background: rgba(255,255,255,0.25);
}

.scroll-sign i::after {
  content: "";
  display: block;
  width: 1px;
  height: 28px;
  background: white;
  animation: scrollLine 2.1s ease-in-out infinite;
}

.hero-curve,
.section-curve {
  position: absolute;
  z-index: 5;
  left: -1px;
  bottom: -1px;
  width: calc(100% + 2px);
  line-height: 0;
}

.hero-curve svg {
  width: 100%;
  height: 140px;
  fill: var(--ink);
}

.section-dark {
  color: white;
  background: var(--ink);
}

.section-shell {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

.welcome {
  position: relative;
  display: grid;
  min-height: min(820px, 92svh);
  place-items: center;
  overflow: hidden;
  padding: 170px 0 150px;
  background:
    radial-gradient(circle at 50% 42%, rgba(62, 96, 111, 0.2), transparent 31%),
    linear-gradient(145deg, #07090a 0%, #0b1114 62%, #10232c 100%);
}

.welcome::before {
  content: "CHURA";
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, 0.018);
  font-family: var(--serif);
  font-size: clamp(150px, 24vw, 360px);
  letter-spacing: 0.08em;
  transform: translate(-48%, -50%);
  white-space: nowrap;
}

.welcome-ring {
  position: absolute;
  border: 1px solid rgba(199, 181, 149, 0.12);
  border-radius: 50%;
}

.welcome-ring-one {
  width: min(720px, 68vw);
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.welcome-ring-two {
  width: min(510px, 50vw);
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.welcome-inner {
  position: relative;
  z-index: 1;
}

.welcome-kicker {
  margin: 0 0 42px;
  color: #b9a783;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-align: center;
}

.welcome-title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(34px, 5.5vw, 76px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.58;
  text-align: center;
}

.welcome-title span,
.welcome-title strong {
  display: block;
}

.welcome-title strong {
  color: #eee8dc;
  font-weight: 400;
}

.mobile-break {
  display: none;
}

.welcome-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 55px;
}

.welcome-detail i {
  width: 1px;
  height: 48px;
  margin-bottom: 30px;
  background: linear-gradient(#b6a17d, rgba(182, 161, 125, 0.08));
}

.welcome-detail p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 2.15;
  text-align: center;
}

.about {
  position: relative;
  padding: 100px 0 170px;
}

.about-grid {
  display: grid;
  grid-template-columns: 80px minmax(280px, 0.85fr) minmax(390px, 1.1fr);
  gap: clamp(35px, 6vw, 95px);
  align-items: center;
}

.section-index {
  align-self: start;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #b8a98d;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.section-index i {
  width: 1px;
  height: 70px;
  background: rgba(184, 169, 141, 0.48);
}

.eyebrow {
  margin: 0 0 19px;
  color: #8d7653;
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
}

.about-copy h2,
.section-heading h2,
.access-copy h2,
.contact h2 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.about-copy h2 {
  font-size: clamp(31px, 3.8vw, 49px);
}

.about-copy > p:last-child {
  margin: 38px 0 0;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  line-height: 2.25;
}

.about-photo {
  position: relative;
  margin: 0;
}

.about-photo::before {
  content: "";
  position: absolute;
  inset: -22px 28px 20px -22px;
  border: 1px solid rgba(199, 179, 144, 0.24);
  border-radius: 52% 48% 46% 54% / 44% 54% 46% 56%;
}

.about-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
  object-position: center 55%;
  border-radius: 50% 50% 46% 54% / 51% 46% 54% 49%;
  filter: saturate(0.72) contrast(1.03);
}

.about-photo figcaption {
  position: absolute;
  z-index: 2;
  right: -8px;
  bottom: 30px;
  padding: 10px 13px;
  color: #c9b895;
  background: rgba(8,10,11,0.88);
  font-family: var(--serif);
  font-size: 9px;
  letter-spacing: 0.22em;
}

.section-blue {
  position: relative;
  overflow: hidden;
  padding: 145px 0 245px;
  color: white;
  background:
    radial-gradient(circle at 13% 22%, rgba(55, 104, 124, 0.16), transparent 25%),
    radial-gradient(circle at 83% 74%, rgba(141, 104, 58, 0.08), transparent 26%),
    linear-gradient(145deg, #090c0e 0%, #10191e 58%, #102632 100%);
}

.water-ring {
  position: absolute;
  border: 1px solid rgba(198, 181, 150, 0.14);
  border-radius: 50%;
}

.ring-a {
  width: 540px;
  height: 540px;
  top: -250px;
  right: -140px;
}

.ring-b {
  width: 370px;
  height: 370px;
  top: -165px;
  right: -60px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 70px;
}

.section-heading h2,
.access-copy h2 {
  font-size: clamp(38px, 4.5vw, 62px);
}

.section-heading > p {
  max-width: 430px;
  margin: 0 0 7px;
  color: #627783;
  font-size: 12px;
  line-height: 2;
}

.section-heading.light > p {
  color: rgba(255,255,255,0.65);
}

.section-heading.light .eyebrow {
  color: #b9a783;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.33fr 0.77fr;
  grid-template-rows: 250px 250px;
  gap: 20px;
}

.gallery-main {
  position: relative;
  grid-row: 1 / 3;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 48% 48% 2px 2px / 21% 21% 2px 2px;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3,17,26,0.54), transparent 45%);
}

.gallery-main figcaption {
  position: absolute;
  z-index: 1;
  left: 15%;
  bottom: 14%;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.3em;
}

.gallery-video-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 10px;
  color: white;
  background: rgba(5, 7, 8, 0.68);
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  font: inherit;
  text-align: left;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.gallery-video-button:hover,
.gallery-video-button:focus-visible {
  background: rgba(126, 91, 44, 0.84);
  border-color: rgba(236, 218, 179, 0.8);
  transform: translate(-50%, -50%) scale(1.035);
}

.gallery-video-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.62);
  border-radius: 50%;
}

.gallery-video-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.gallery-video-button > span:last-child {
  font-size: 11px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.gallery-video-button small {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,0.6);
  font-family: var(--serif);
  font-size: 7px;
  letter-spacing: 0.22em;
}

.gallery-detail {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(199, 181, 149, 0.2);
}

.gallery-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.78) contrast(1.04);
  transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-detail:hover img {
  transform: scale(1.035);
}

.gallery-detail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 5, 6, 0.66), transparent 52%);
}

.gallery-detail figcaption {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.78);
  font-family: var(--serif);
  font-size: 9px;
  letter-spacing: 0.24em;
  white-space: nowrap;
}

.photo-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  overflow: hidden;
  color: rgba(255,255,255,0.62);
  background:
    radial-gradient(circle at 68% 29%, rgba(164, 135, 91, 0.09), transparent 19%),
    linear-gradient(135deg, rgba(10,13,14,0.95), rgba(23,38,45,0.86));
  border: 1px solid rgba(199, 181, 149, 0.2);
}

.photo-placeholder::before,
.photo-placeholder::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(196, 178, 146, 0.12);
  border-radius: 50%;
}

.photo-placeholder::before {
  width: 240px;
  height: 240px;
}

.photo-placeholder::after {
  width: 170px;
  height: 170px;
}

.photo-placeholder span,
.photo-placeholder small {
  position: relative;
  z-index: 1;
}

.photo-placeholder span {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.28em;
}

.photo-placeholder small {
  margin-top: 11px;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.gallery-sub {
  border-radius: 140px 140px 2px 2px;
}

.gallery-sub.second {
  border-radius: 2px 2px 140px 140px;
}

.section-curve svg {
  width: 100%;
  height: 150px;
  fill: var(--paper);
}

.section-light {
  background: var(--paper);
}

.cast {
  padding: 120px 0 155px;
}

.cast-list {
  --cast-gap: clamp(17px, 2.5vw, 34px);
  position: relative;
  display: flex;
  gap: var(--cast-gap);
  overflow-x: auto;
  padding: 5px 0 12px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

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

.cast-card {
  flex: 0 0 calc((100% - (var(--cast-gap) * 2)) / 3.2);
  margin: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.cast-slider-controls {
  display: flex;
  align-items: center;
  gap: 13px;
}

.cast-slider-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #75664f;
  background: transparent;
  border: 1px solid rgba(117,102,79,0.38);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 19px;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

.cast-slider-controls button:hover:not(:disabled) {
  color: white;
  background: #75664f;
}

.cast-slider-controls button:disabled {
  opacity: 0.28;
  cursor: default;
}

.cast-slider-progress {
  position: relative;
  width: 76px;
  height: 1px;
  overflow: hidden;
  background: rgba(117,102,79,0.24);
}

.cast-slider-progress i {
  position: absolute;
  inset: 0;
  background: #8e7550;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.cast-door {
  display: block;
  width: 100%;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
  perspective: 1400px;
}

.cast-door:focus-visible {
  outline: 1px solid #9f8357;
  outline-offset: 5px;
}

.cast-photo {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #d8d2c8;
  border-radius: 2px;
  transform-style: preserve-3d;
}

.cast-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(0.985);
  filter: brightness(0.78) saturate(0.9);
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1), filter 1.1s ease;
}

.cast-door[aria-expanded="true"] .cast-photo img {
  transform: scale(1.025);
  filter: brightness(1.04) saturate(1);
}

.placeholder-person {
  background:
    radial-gradient(circle at 50% 32%, #b2a99c 0 11%, transparent 11.5%),
    radial-gradient(ellipse at 50% 82%, #b2a99c 0 30%, transparent 30.5%),
    linear-gradient(145deg, #e2ddd4, #c7bfb3);
}

.placeholder-person.alt {
  background:
    radial-gradient(circle at 50% 32%, #948c81 0 11%, transparent 11.5%),
    radial-gradient(ellipse at 50% 82%, #948c81 0 30%, transparent 30.5%),
    linear-gradient(145deg, #d8d1c6, #b8aea0);
}

.placeholder-person.third {
  background:
    radial-gradient(circle at 50% 32%, #bcb2a4 0 11%, transparent 11.5%),
    radial-gradient(ellipse at 50% 82%, #bcb2a4 0 30%, transparent 30.5%),
    linear-gradient(145deg, #e5e0d7, #cbc2b5);
}

.cast-photo::after {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 18px;
  border: 1px solid rgba(203, 178, 124, 0.62);
  pointer-events: none;
}

.door-panel {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 50.1%;
  background-color: #11100e;
  background-image:
    linear-gradient(90deg, transparent 0 78%, rgba(204, 178, 121, 0.09) 86%, transparent 100%),
    repeating-linear-gradient(88deg, rgba(255,255,255,0.015) 0 2px, transparent 2px 10px),
    linear-gradient(145deg, #201b15 0%, #0b0d0e 52%, #17130f 100%);
  backface-visibility: hidden;
  box-shadow:
    inset 0 0 0 7px #0a0b0c,
    inset 0 0 0 8px rgba(194, 163, 103, 0.44),
    inset 0 0 38px rgba(0,0,0,0.66);
  transition:
    transform 1.25s cubic-bezier(0.22, 0.72, 0.2, 1),
    filter 0.45s ease,
    box-shadow 1.1s ease;
  will-change: transform;
}

.door-left {
  left: 0;
  border-right: 1px solid rgba(5, 4, 3, 0.86);
  transform-origin: left center;
}

.door-right {
  right: 0;
  border-left: 1px solid rgba(213, 181, 117, 0.22);
  transform-origin: right center;
}

.door-panel::after {
  content: "";
  position: absolute;
  top: 54%;
  width: 9px;
  height: 9px;
  background: radial-gradient(circle at 35% 30%, #f0dba8, #9c7438 68%, #5c401d);
  border: 1px solid rgba(255,245,216,0.66);
  border-radius: 50%;
  box-shadow: 0 2px 7px rgba(0,0,0,0.45);
}

.door-left::after { right: 10px; }
.door-right::after { left: 10px; }

.cast-door:hover .door-panel {
  filter: brightness(1.12);
}

.cast-door[aria-expanded="true"] .door-left {
  transform: rotateY(-104deg);
  box-shadow: 18px 0 36px rgba(0,0,0,0.28);
}

.cast-door[aria-expanded="true"] .door-right {
  transform: rotateY(104deg);
  box-shadow: -18px 0 36px rgba(0,0,0,0.28);
}

.door-hint {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 25px;
  min-width: 72px;
  padding: 8px 12px;
  color: white;
  background: rgba(8, 8, 7, 0.62);
  border: 1px solid rgba(220, 201, 161, 0.5);
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 8px;
  line-height: 1;
  letter-spacing: 0.24em;
  text-align: center;
  transition: opacity 0.35s ease, transform 0.45s ease;
  pointer-events: none;
}

.cast-door[aria-expanded="true"] .door-hint {
  opacity: 0;
  transform: translate(-50%, 7px);
}

.cast-card p {
  margin: 15px 0 0;
  color: #695e50;
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.14em;
}

.photo-note {
  margin: 45px 0 0;
  color: #75858d;
  font-size: 10px;
  text-align: right;
}

.section-mist {
  background: var(--mist);
}

.system {
  padding: 135px 0;
  color: white;
}

.system-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(50px, 9vw, 140px);
}

.section-heading.vertical {
  display: block;
  margin: 0;
}

.section-heading.vertical > p:last-child {
  margin: 32px 0 0;
  line-height: 2;
}

.system-card {
  padding: 12px 45px;
  background: rgba(255,255,255,0.035);
  border-top: 1px solid rgba(198, 181, 150, 0.46);
  border-bottom: 1px solid rgba(198, 181, 150, 0.46);
}

.system-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 75px;
  border-bottom: 1px solid rgba(197, 181, 154, 0.15);
}

.system-row span {
  color: #d1c7b8;
  font-size: 11px;
}

.system-row strong {
  color: #838b8e;
  font-size: 12px;
  font-weight: 400;
}

.system-caution {
  margin: 20px 0 10px;
  color: #73797c;
  font-size: 9px;
  line-height: 1.8;
}

.access {
  padding: 150px 0;
}

.access-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
}

.access-copy dl {
  margin: 48px 0 34px;
  border-top: 1px solid #c8d5da;
}

.access-copy dl > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  padding: 17px 0;
  border-bottom: 1px solid #c8d5da;
  font-size: 11px;
  line-height: 1.75;
}

.access-copy dt {
  color: #78909a;
}

.access-copy dd {
  margin: 0;
}

address {
  font-style: normal;
}

.text-link {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid #2e7893;
  color: #1c6681;
  font-size: 10px;
  font-weight: 500;
}

.map-panel {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: #d9d6ce;
  border: 1px solid rgba(106, 91, 67, 0.2);
  border-radius: 2px;
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
  filter: grayscale(0.72) saturate(0.7) contrast(1.04);
  transition: filter 0.45s ease;
}

.map-panel:hover iframe,
.map-panel:focus-within iframe {
  filter: grayscale(0.3) saturate(0.88) contrast(1.02);
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 145px 0 155px;
  color: white;
  background: #07090a;
  text-align: center;
}

.contact-glow {
  position: absolute;
  top: -300px;
  left: 50%;
  width: 700px;
  height: 500px;
  transform: translateX(-50%);
  border: 1px solid rgba(194, 176, 145, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 150px rgba(78, 112, 124, 0.12) inset;
}

.contact-content {
  position: relative;
}

.contact h2 {
  font-size: clamp(30px, 4vw, 51px);
}

.contact-content > p:nth-of-type(2) {
  margin: 27px 0 45px;
  color: rgba(255,255,255,0.58);
  font-size: 11px;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.contact-buttons span {
  width: 210px;
  padding: 18px 25px;
  color: #71858e;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.2);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.25em;
}

.contact-buttons small {
  margin-left: 13px;
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.site-footer {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 44px clamp(28px, 6vw, 90px);
  color: rgba(255,255,255,0.62);
  background: #030405;
  font-size: 9px;
}

.quick-actions {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: min(290px, calc(100vw - 44px));
  visibility: hidden;
  opacity: 0;
  border: 1px solid rgba(201, 184, 151, 0.34);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.34);
  transform: translateY(18px);
  pointer-events: none;
  transition:
    opacity 0.55s ease,
    transform 0.7s cubic-bezier(0.2, 0.75, 0.2, 1),
    visibility 0s linear 0.7s;
}

.quick-actions.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0s;
}

.quick-actions.is-footer-hidden {
  visibility: hidden;
  opacity: 0;
  transform: translateY(calc(100% + 28px));
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    transform 0.5s cubic-bezier(0.4, 0, 0.6, 1),
    visibility 0s linear 0.5s;
}

.quick-action {
  position: relative;
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 13px;
  align-items: center;
  min-height: 67px;
  padding: 11px 16px;
  overflow: hidden;
  color: white;
  background: rgba(8, 11, 13, 0.92);
  border: 0;
  border-bottom: 1px solid rgba(201, 184, 151, 0.2);
  font: inherit;
  text-align: left;
  cursor: pointer;
  backdrop-filter: blur(13px);
  transition: color 0.35s ease, background 0.35s ease;
}

.quick-action:last-child {
  border-bottom: 0;
}

.quick-action:nth-child(1) {
  background: linear-gradient(135deg, rgba(111, 77, 37, 0.97), rgba(151, 112, 58, 0.97));
  transform-origin: center;
  animation: taxiBellRing 15s linear infinite;
  animation-play-state: paused;
}

.quick-actions.is-visible .quick-action:nth-child(1) {
  animation-play-state: running;
}

.quick-action:nth-child(2) {
  color: #16120d;
  background: linear-gradient(135deg, rgba(223, 204, 159, 0.98), rgba(178, 143, 79, 0.98));
}

.quick-action:nth-child(3) {
  background:
    radial-gradient(circle at 14px 5px, transparent 0 5px, rgba(255,255,255,0.16) 5.5px 6.5px, transparent 7px) 0 0 / 28px 11px repeat-x,
    radial-gradient(circle at 14px calc(100% - 5px), transparent 0 5px, rgba(255,255,255,0.16) 5.5px 6.5px, transparent 7px) 0 100% / 28px 11px repeat-x,
    linear-gradient(135deg, rgba(126, 49, 79, 0.98), rgba(190, 94, 126, 0.98));
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
}

.quick-action:nth-child(3)::before {
  content: "";
  position: absolute;
  inset: 7px;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 2px;
}

.quick-action:nth-child(3) .quick-action-mark {
  color: rgba(255, 236, 242, 0.8);
}

.quick-action:nth-child(3) .quick-action-mark::after {
  content: "♡";
  display: block;
  margin-top: 3px;
  color: rgba(255,255,255,0.72);
  font-family: serif;
  font-size: 9px;
  letter-spacing: 0;
}

.quick-action:nth-child(3) .quick-action-copy strong {
  font-size: 11px;
  letter-spacing: 0.045em;
}

.quick-action:nth-child(3) .quick-action-copy small {
  color: rgba(255, 236, 243, 0.64);
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.22em;
}

.quick-action:nth-child(2) .quick-action-mark,
.quick-action:nth-child(2) .quick-action-copy small {
  color: rgba(24, 18, 10, 0.58);
}

.quick-action::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #c8b78f;
  transition: width 0.45s ease;
}

.quick-action:hover,
.quick-action:focus-visible {
  filter: brightness(1.13) saturate(1.06);
}

.quick-action:hover::after,
.quick-action:focus-visible::after {
  width: 100%;
}

.quick-action:focus-visible {
  outline: 1px solid #d3c39f;
  outline-offset: 2px;
}

.quick-action-mark {
  color: rgba(211, 195, 161, 0.72);
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.15em;
}

.taxi-bell svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.quick-action-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.quick-action-copy strong {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.5;
}

.quick-action-copy small {
  color: rgba(255,255,255,0.49);
  font-family: var(--serif);
  font-size: 8px;
  letter-spacing: 0.15em;
}

.quick-action-mobile {
  display: none;
}

.action-dialog {
  width: min(520px, calc(100% - 38px));
  padding: 62px clamp(28px, 6vw, 68px) 56px;
  color: white;
  background:
    radial-gradient(circle at 82% 0%, rgba(88, 127, 145, 0.17), transparent 31%),
    #0a0d0f;
  border: 1px solid rgba(203, 185, 151, 0.42);
  box-shadow: 0 30px 100px rgba(0,0,0,0.55);
  text-align: center;
}

.action-dialog::backdrop {
  background: rgba(2, 4, 5, 0.78);
  backdrop-filter: blur(5px);
}

.action-dialog[open] {
  animation: dialogOpen 0.45s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.action-dialog h2 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(23px, 4vw, 34px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.55;
}

.action-dialog-copy {
  display: grid;
  gap: 15px;
  margin: 28px 0 30px;
}

.action-dialog-copy p {
  margin: 0;
  color: rgba(255,255,255,0.59);
  font-size: 12px;
  line-height: 2.05;
}

.action-dialog-lead {
  margin: 0 0 13px;
  color: #bca57d;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.action-dialog-phone {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
  padding: 18px 22px;
  color: white;
  background: rgba(178, 139, 76, 0.11);
  border: 1px solid rgba(201, 181, 145, 0.42);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.action-dialog-phone:hover,
.action-dialog-phone:focus-visible {
  background: rgba(178, 139, 76, 0.2);
  border-color: rgba(222, 202, 162, 0.72);
}

.action-dialog-phone span {
  font-family: var(--serif);
  font-size: clamp(23px, 5vw, 31px);
  letter-spacing: 0.06em;
}

.action-dialog-phone small {
  color: rgba(255,255,255,0.58);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.video-dialog {
  width: min(430px, 43dvh, calc(100% - 38px));
  max-height: calc(100dvh - 30px);
  padding: 52px 16px 16px;
  overflow: hidden;
  color: white;
  background: #050708;
  border: 1px solid rgba(203, 185, 151, 0.42);
  box-shadow: 0 30px 110px rgba(0,0,0,0.68);
}

.video-dialog::backdrop {
  background: rgba(1, 2, 3, 0.88);
  backdrop-filter: blur(7px);
}

.video-dialog[open] {
  animation: dialogOpen 0.45s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.video-dialog-heading {
  margin-bottom: 22px;
  text-align: center;
}

.video-dialog-heading .eyebrow {
  margin-bottom: 10px;
}

.video-dialog-heading h2 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.video-frame {
  display: grid;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  place-items: center;
  overflow: hidden;
  background: black;
}

.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.coupon-dialog {
  width: min(680px, calc(100% - 38px));
}

.coupon-phone-form {
  margin-top: 28px;
}

.coupon-choice > p:first-child {
  margin: 25px 0 22px;
  color: rgba(255,255,255,0.58);
  font-size: 11px;
}

.coupon-choice-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.coupon-choice-button {
  position: relative;
  display: flex;
  min-height: 150px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 26px 18px;
  color: white;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(204, 185, 149, 0.35);
  font: inherit;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.coupon-choice-button:hover,
.coupon-choice-button:focus-visible {
  transform: translateY(-3px);
  background: rgba(190, 149, 80, 0.11);
  border-color: rgba(224, 204, 164, 0.72);
}

.coupon-choice-button small {
  color: #bda77f;
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.coupon-choice-button strong {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.coupon-choice-button em {
  color: rgba(255,255,255,0.4);
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.06em;
}

.coupon-choice-button.is-scratch {
  background:
    linear-gradient(135deg, rgba(126, 49, 79, 0.24), rgba(190, 94, 126, 0.1)),
    rgba(255,255,255,0.025);
}

.coupon-choice-note {
  margin: 18px 0 0;
  color: rgba(255,255,255,0.38);
  font-size: 9px;
  line-height: 1.7;
}

.coupon-result {
  position: relative;
  margin-top: 30px;
  overflow: hidden;
  padding: 42px 24px 36px;
  color: #17120b;
  background:
    radial-gradient(circle at 0 50%, transparent 0 8px, #dcc491 8.5px) 0 0 / 100% 22px no-repeat,
    linear-gradient(135deg, #ead7a8, #b99559);
  box-shadow: 0 18px 45px rgba(0,0,0,0.26);
}

.coupon-result::after {
  content: "";
  position: absolute;
  inset: 9px;
  pointer-events: none;
  border: 1px solid rgba(65, 45, 20, 0.25);
}

.coupon-result-label {
  margin: 0 0 13px;
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.32em;
}

.coupon-result > strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(50px, 9vw, 74px);
  font-weight: 500;
  line-height: 1;
}

.coupon-result > strong small {
  margin-left: 8px;
  font-size: 17px;
  letter-spacing: 0.08em;
}

.coupon-result > p:last-child {
  margin: 20px 0 0;
  font-size: 10px;
}

.scratch-area {
  margin-top: 28px;
}

.scratch-form label {
  display: block;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
}

.scratch-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.scratch-input-row input {
  min-width: 0;
  padding: 15px 16px;
  color: white;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(203, 185, 151, 0.32);
  border-radius: 0;
  font: inherit;
  font-size: 15px;
  letter-spacing: 0.08em;
  outline: 0;
}

.scratch-input-row input:focus {
  border-color: rgba(223, 199, 151, 0.78);
}

.scratch-input-row button {
  padding: 0 20px;
  color: #17110a;
  background: linear-gradient(135deg, #e2ca96, #ad8245);
  border: 0;
  font: inherit;
  font-size: 10px;
  cursor: pointer;
}

.scratch-form > p {
  margin: 10px 0 0;
  color: rgba(255,255,255,0.36);
  font-size: 8px;
  line-height: 1.7;
}

.scratch-error {
  min-height: 1.7em;
  margin: 10px 0 0;
  color: #e5a9b9;
  font-size: 9px;
  line-height: 1.7;
}

.scratch-ticket {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 0.92;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(224, 204, 164, 0.5);
  box-shadow: 0 20px 48px rgba(0,0,0,0.28);
}

.scratch-prize {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  color: #241709;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,0.45), transparent 22%),
    linear-gradient(135deg, #f0dba9, #bc8e4b 58%, #e0c184);
}

.scratch-prize small {
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.3em;
}

.scratch-prize strong {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(27px, 6vw, 46px);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.scratch-prize span {
  font-size: 10px;
  line-height: 1.7;
}

.scratch-ticket canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: crosshair;
  touch-action: none;
  transition: opacity 0.65s ease;
}

.scratch-ticket.is-revealed canvas {
  pointer-events: none;
  opacity: 0;
}

.scratch-guide {
  margin: 13px 0 0;
  color: rgba(255,255,255,0.48);
  font-size: 9px;
}

.coupon-phone-check {
  margin: 20px 0 0;
  color: #bca57d;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.action-dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.action-dialog-close::before,
.action-dialog-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  width: 23px;
  height: 1px;
  background: rgba(255,255,255,0.65);
}

.action-dialog-close::before { transform: rotate(45deg); }
.action-dialog-close::after { transform: rotate(-45deg); }

@keyframes dialogOpen {
  from { opacity: 0; transform: translateY(14px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes taxiBellRing {
  0%, 90%, 100% { transform: translateX(0) rotate(0); }
  91% { transform: translateX(-2px) rotate(-1.2deg); }
  92% { transform: translateX(3px) rotate(1.5deg); }
  93% { transform: translateX(-3px) rotate(-1.5deg); }
  94% { transform: translateX(3px) rotate(1.3deg); }
  95% { transform: translateX(-2px) rotate(-1deg); }
  96% { transform: translateX(1px) rotate(0.5deg); }
  97% { transform: translateX(0) rotate(0); }
}

.footer-brand {
  color: white;
}

.footer-brand .brand-logo {
  width: 150px;
  max-height: none;
}

.copyright {
  margin-left: auto;
  font-family: var(--serif);
  letter-spacing: 0.16em;
}

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

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

@keyframes noonScene {
  0% { opacity: 1; transform: scale(1.03) translate3d(-0.35%, 0, 0); filter: saturate(0.82) contrast(0.94) blur(0); }
  34% { opacity: 1; transform: scale(1.068) translate3d(0.3%, -0.1%, 0); filter: saturate(0.82) contrast(0.94) blur(0); }
  48%, 100% { opacity: 0; transform: scale(1.075) translate3d(0.4%, -0.15%, 0); filter: saturate(0.82) contrast(0.94) blur(3px); }
}

@keyframes sunsetScene {
  0%, 22% { opacity: 0; transform: scale(1.025) translate3d(0.25%, 0, 0); filter: saturate(0.78) brightness(0.92) blur(3px); }
  40% { opacity: 1; transform: scale(1.047) translate3d(0, 0, 0); filter: saturate(0.82) brightness(0.9) blur(0); }
  62%, 100% { opacity: 1; transform: scale(1.075) translate3d(-0.25%, -0.12%, 0); filter: saturate(0.82) brightness(0.9) blur(0); }
}

@keyframes nightScene {
  0%, 48% {
    opacity: 0;
    transform: scale(1.02) translate3d(0.18%, 0.25%, 0);
    filter: saturate(0.56) contrast(1.12) blur(3px);
    animation-timing-function: ease-in-out;
  }
  76% {
    opacity: 1;
    transform: scale(1.05) translate3d(0, 0, 0);
    filter: saturate(0.62) contrast(1.08) blur(0);
    animation-timing-function: ease-in-out;
  }
  92% {
    opacity: 1;
    transform: scale(1.057) translate3d(-0.04%, -0.03%, 0);
    filter: saturate(0.62) contrast(1.08) blur(0);
    animation-timing-function: ease-out;
  }
  100% {
    opacity: 1;
    transform: scale(1.06) translate3d(-0.06%, -0.04%, 0);
    filter: saturate(0.62) contrast(1.08) blur(0);
  }
}

@keyframes storyShade {
  0%, 47% { opacity: 0.08; }
  68% { opacity: 0.3; }
  100% { opacity: 1; }
}

@keyframes logoBackdrop {
  0%, 74% { opacity: 0; }
  92%, 100% { opacity: 1; }
}

@keyframes logoReveal {
  0%, 78% { opacity: 0; transform: translate(-50%, -46%) scale(0.985); filter: blur(8px); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); filter: blur(0); }
}

@keyframes lateDetail {
  0%, 78% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes headerEntrance {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes storyUiExit {
  0%, 78% { opacity: 1; }
  90%, 100% { opacity: 0; }
}

@keyframes frameDraw {
  0% { opacity: 0; clip-path: inset(0 100% 100% 0); }
  9% { opacity: 1; clip-path: inset(0 0 100% 0); }
  18%, 76% { opacity: 1; clip-path: inset(0 0 0 0); }
  88%, 100% { opacity: 0; clip-path: inset(0 0 0 0); }
}

@keyframes lightPassOne {
  0%, 23% { left: -55%; opacity: 0; }
  28% { opacity: 0.32; }
  42% { left: 125%; opacity: 0; }
  100% { left: 125%; opacity: 0; }
}

@keyframes lightPassTwo {
  0%, 51% { left: -55%; opacity: 0; }
  58% { opacity: 0.2; }
  72% { left: 125%; opacity: 0; }
  100% { left: 125%; opacity: 0; }
}

@keyframes timeNoon {
  0%, 29% { opacity: 1; transform: translateY(0); }
  37%, 100% { opacity: 0; transform: translateY(-6px); }
}

@keyframes timeSunset {
  0%, 29% { opacity: 0; transform: translateY(7px); }
  40%, 57% { opacity: 1; transform: translateY(0); }
  66%, 100% { opacity: 0; transform: translateY(-6px); }
}

@keyframes timeNight {
  0%, 57% { opacity: 0; transform: translateY(7px); }
  68%, 77% { opacity: 1; transform: translateY(0); }
  86%, 100% { opacity: 0; transform: translateY(-6px); }
}

@keyframes storyDialReveal {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.94); }
  10%, 72% { opacity: 0.88; transform: translate(-50%, -50%) scale(1); }
  84%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(1.025); }
}

@keyframes dialHour {
  0%, 29% { transform: rotate(0deg); }
  40%, 57% { transform: rotate(200deg); }
  68%, 100% { transform: rotate(270deg); }
}

@keyframes dialMinute {
  0%, 29% { transform: rotate(0deg); }
  40%, 57% { transform: rotate(240deg); }
  68%, 100% { transform: rotate(360deg); }
}

@keyframes storyProgress {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes scrollLine {
  0% { transform: translateY(-35px); }
  55%, 100% { transform: translateY(68px); }
}

@media (max-width: 900px) {
  .site-header {
    height: 76px;
    padding: 0 22px;
  }

  .menu-button {
    position: relative;
    z-index: 102;
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    place-content: center;
    gap: 8px;
    color: white;
    background: rgba(5, 10, 13, 0.5);
    border: 1px solid rgba(207, 182, 133, 0.55);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.18);
    backdrop-filter: blur(10px);
    transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  }

  .menu-button span {
    display: block;
    width: 27px;
    height: 1px;
    background: currentColor;
    transition: transform 0.3s ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .menu-button[aria-expanded="true"] {
    color: #fffdf8;
    background: linear-gradient(135deg, #b49359, #76552c);
    border-color: rgba(255,244,218,0.72);
    transform: rotate(90deg);
  }

  .global-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    padding: 168px clamp(27px, 9vw, 68px) 46px;
    visibility: hidden;
    opacity: 0;
    background:
      radial-gradient(circle at 90% 8%, rgba(183,143,78,0.27), transparent 27%),
      radial-gradient(circle at 7% 92%, rgba(85,129,145,0.2), transparent 31%),
      linear-gradient(155deg, rgba(4,8,10,0.985), rgba(8,22,28,0.99) 58%, rgba(10,14,16,0.99));
    counter-reset: mobile-navigation;
    transition: opacity 0.38s ease, visibility 0s linear 0.38s;
  }

  .global-nav::before {
    content: "MENU";
    position: absolute;
    top: 104px;
    left: clamp(27px, 9vw, 68px);
    color: #c5a56f;
    font-family: var(--serif);
    font-size: 10px;
    letter-spacing: 0.42em;
  }

  .global-nav::after {
    content: "美ら";
    position: absolute;
    right: -0.08em;
    bottom: -0.18em;
    color: rgba(255,255,255,0.025);
    font-family: "Noto Serif JP", serif;
    font-size: clamp(190px, 48vw, 340px);
    line-height: 1;
    pointer-events: none;
  }

  .global-nav.is-open {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
  }

  .global-nav > a {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateX(15px);
    transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.2,0.75,0.2,1), color 0.25s ease;
  }

  .global-nav.is-open > a {
    opacity: 1;
    transform: translateX(0);
  }

  .global-nav.is-open > a:nth-child(1) { transition-delay: 0.08s; }
  .global-nav.is-open > a:nth-child(2) { transition-delay: 0.13s; }
  .global-nav.is-open > a:nth-child(3) { transition-delay: 0.18s; }
  .global-nav.is-open > a:nth-child(4) { transition-delay: 0.23s; }
  .global-nav.is-open > a:nth-child(5) { transition-delay: 0.28s; }

  .global-nav > a:not(.instagram-nav) {
    display: flex;
    align-items: baseline;
    width: 100%;
    padding: 18px 4px;
    border-top: 1px solid rgba(211,190,153,0.18);
    font-family: "Noto Serif JP", serif;
    font-size: 18px;
    letter-spacing: 0.12em;
    counter-increment: mobile-navigation;
  }

  .global-nav > a:nth-child(4) {
    border-bottom: 1px solid rgba(211,190,153,0.18);
  }

  .global-nav > a:not(.instagram-nav)::before {
    content: "0" counter(mobile-navigation);
    flex: 0 0 38px;
    color: #b99860;
    font-family: var(--serif);
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .global-nav > a:not(.instagram-nav) small {
    margin: 0 0 0 auto;
    color: rgba(255,255,255,0.38);
    font-size: 8px;
  }

  .global-nav .instagram-nav {
    justify-content: center;
    width: 100%;
    margin-top: 24px;
    padding: 15px 18px;
    color: white;
    background: linear-gradient(135deg, rgba(116,61,137,0.92), rgba(188,70,111,0.94) 57%, rgba(205,137,62,0.94));
    border-color: rgba(255,255,255,0.34);
    border-radius: 4px;
    box-shadow: 0 15px 34px rgba(0,0,0,0.22);
    font-size: 15px;
  }

  .instagram-nav svg {
    width: 21px;
    height: 21px;
  }

  .about-grid {
    grid-template-columns: 45px 1fr;
  }

  .about-photo {
    grid-column: 2;
    margin-top: 25px;
  }

  .system-layout,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .map-panel {
    width: min(580px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: min(100% - 38px, 520px);
  }

  .brand-logo {
    width: 106px;
    max-height: 65px;
  }

  .hero {
    height: min(760px, 100svh);
    min-height: 0;
  }

  .scene-noon {
    object-position: 53% center;
  }

  .scene-sunset {
    object-position: 54% center;
  }

  .scene-night {
    object-position: 56% center;
  }

  .story-frame {
    inset: 18px;
  }

  .story-clock {
    left: 25px;
    bottom: 113px;
  }

  .story-dial {
    width: 164px;
  }

  .dial-number { font-size: 7px; }
  .dial-twelve { top: 13px; }
  .dial-three { right: 12px; }
  .dial-six { bottom: 12px; }
  .dial-nine { left: 12px; }

  .story-progress {
    left: 25px;
    bottom: 95px;
    width: 190px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(2,3,4,0.66), rgba(3,5,6,0.22)),
      linear-gradient(0deg, rgba(3,5,6,0.86), transparent 63%);
  }

  .hero-content {
    left: 50%;
    top: 50%;
    bottom: auto;
    width: min(72vw, 300px);
  }

  .scroll-sign {
    right: auto;
    left: 50%;
    bottom: 76px;
  }

  .hero-curve svg {
    height: 86px;
  }

  .welcome {
    min-height: 720px;
    padding: 130px 0 120px;
  }

  .welcome::before {
    font-size: 43vw;
    letter-spacing: 0.02em;
  }

  .welcome-ring-one {
    width: 116vw;
  }

  .welcome-ring-two {
    width: 80vw;
  }

  .welcome-kicker {
    margin-bottom: 34px;
    font-size: 9px;
  }

  .welcome-title {
    font-size: clamp(28px, 8.5vw, 38px);
    letter-spacing: 0.045em;
    line-height: 1.72;
  }

  .welcome-title span,
  .welcome-title strong {
    white-space: nowrap;
  }

  .mobile-break {
    display: block;
  }

  .welcome-detail {
    margin-top: 42px;
  }

  .welcome-detail i {
    height: 38px;
    margin-bottom: 24px;
  }

  .welcome-detail p {
    max-width: 330px;
    font-size: 11px;
    line-height: 2.05;
  }

  .welcome-detail br {
    display: none;
  }

  .about {
    padding: 78px 0 115px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 37px;
  }

  .section-index {
    display: none;
  }

  .about-photo {
    grid-column: auto;
    margin-top: 10px;
  }

  .about-copy > p:last-child br {
    display: none;
  }

  .section-blue {
    padding: 100px 0 185px;
  }

  .section-heading {
    display: block;
    margin-bottom: 45px;
  }

  .section-heading > p {
    margin-top: 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 190px;
    gap: 10px;
  }

  .gallery-main {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 390px;
  }

  .gallery-video-button {
    gap: 10px;
    padding: 8px 14px 8px 8px;
  }

  .gallery-video-icon {
    width: 36px;
    height: 36px;
  }

  .gallery-sub,
  .gallery-sub.second {
    min-height: 190px;
    border-radius: 100px 100px 2px 2px;
    text-align: center;
  }

  .photo-placeholder small {
    max-width: 110px;
    line-height: 1.6;
  }

  .section-curve svg {
    height: 85px;
  }

  .cast {
    padding: 80px 0 110px;
  }

  .cast-list {
    width: 100%;
    gap: 13px;
    padding-right: 0;
  }

  .cast-card {
    flex-basis: 78%;
  }

  .cast-slider-controls {
    gap: 9px;
  }

  .cast-slider-controls button {
    width: 37px;
    height: 37px;
  }

  .cast-slider-progress {
    width: 48px;
  }

  .photo-note {
    text-align: left;
    line-height: 1.8;
  }

  .system {
    padding: 90px 0;
  }

  .system-layout {
    gap: 43px;
  }

  .system-card {
    padding: 8px 20px;
  }

  .system-row {
    min-height: 67px;
  }

  .access {
    padding: 95px 0;
  }

  .access-grid {
    gap: 60px;
  }

  .map-panel {
    min-height: 360px;
  }

  .map-panel iframe {
    height: 360px;
  }

  .contact {
    padding: 100px 0 105px;
  }

  .contact-content > p:nth-of-type(2) {
    line-height: 1.9;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-buttons span {
    width: min(300px, 100%);
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    min-height: 280px;
    padding: 48px 24px calc(72px + env(safe-area-inset-bottom));
    line-height: 1.7;
  }

  .site-footer .footer-brand {
    position: relative;
    z-index: 2;
    margin-bottom: 3px;
  }

  .copyright {
    margin-left: 0;
  }

  .quick-actions {
    right: 0;
    bottom: 0;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    padding-bottom: env(safe-area-inset-bottom);
    background: #080a0b;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
  }

  .quick-action {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 66px;
    padding: 10px 5px;
    border-right: 1px solid rgba(201, 184, 151, 0.2);
    border-bottom: 0;
    text-align: center;
  }

  .quick-action:last-child {
    border-right: 0;
  }

  .quick-action-mark,
  .quick-action-copy {
    display: none;
  }

  .quick-action-mobile {
    display: block;
    font-size: 10px;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .quick-action:nth-child(3) .quick-action-mobile {
    font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
    letter-spacing: 0.035em;
  }

  .action-dialog {
    max-height: calc(100dvh - 28px);
    padding: 54px 20px 28px;
    overflow-y: auto;
  }

  .coupon-choice-buttons {
    grid-template-columns: 1fr;
  }

  .coupon-choice-button {
    min-height: 116px;
    padding: 20px 14px;
  }

  .scratch-input-row {
    grid-template-columns: 1fr;
  }

  .scratch-input-row button {
    min-height: 48px;
  }

  .scratch-ticket {
    aspect-ratio: 1.5;
  }

  .scratch-prize strong {
    font-size: clamp(24px, 8.5vw, 36px);
  }

  .video-dialog {
    width: min(94vw, 43dvh);
    max-height: calc(100dvh - 18px);
    padding: 48px 9px 9px;
  }

  .video-dialog-heading {
    margin-bottom: 15px;
  }

  .video-frame {
    height: auto;
  }
}

@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;
  }

  .scene-noon,
  .scene-sunset { opacity: 0; }
  .scene-night,
  .hero-content,
  .hero-orbit,
  .scroll-sign,
  .site-header { opacity: 1; }

  .quick-actions {
    transition-duration: 0.01ms;
  }
}
