:root {
  --ink: #070707;
  --ink-raised: #11100f;
  --wine: #37111f;
  --sakura: #dca3b1;
  --gold: #d5b06a;
  --ivory: #f3ead9;
  --muted: #b9ad9c;
  --line: rgba(213, 176, 106, 0.28);
  --focus: #f2cf88;
  --font-display: "Songti SC", "STSong", "SimSun", "Noto Serif CJK SC", serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --content-width: 1180px;
  --z-fixed: 20;
  --z-header: 30;
  --z-skip: 40;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
}

body.age-locked {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #070707;
}

.age-gate[hidden] {
  display: none;
}

.age-gate__panel {
  width: min(100%, 520px);
  padding: clamp(34px, 7vw, 64px);
  border: 1px solid var(--gold);
  background: var(--wine);
  text-align: center;
}

.age-gate__brand {
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--font-display);
  letter-spacing: 0.12em;
}

.age-gate h1 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 6vw, 3.25rem);
}

.age-gate__panel > p:not(.age-gate__brand) {
  margin-bottom: 30px;
  color: var(--muted);
}

.age-gate__actions {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  gap: 12px;
}

.sakura-fall {
  position: fixed;
  z-index: 25;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.sakura-fall i {
  --drift: 9vw;
  position: absolute;
  top: -10vh;
  left: 8%;
  width: 11px;
  height: 8px;
  border-radius: 70% 30% 70% 30%;
  background: var(--sakura);
  opacity: 0;
  animation: sakura-fall 13s linear infinite;
  will-change: transform, opacity;
}

.sakura-fall i:nth-child(2) { left: 18%; width: 8px; height: 6px; animation-delay: -8s; animation-duration: 16s; }
.sakura-fall i:nth-child(3) { left: 29%; --drift: -7vw; animation-delay: -3s; animation-duration: 14s; }
.sakura-fall i:nth-child(4) { left: 41%; width: 9px; height: 7px; animation-delay: -11s; animation-duration: 18s; }
.sakura-fall i:nth-child(5) { left: 52%; --drift: -10vw; animation-delay: -6s; animation-duration: 15s; }
.sakura-fall i:nth-child(6) { left: 63%; width: 8px; height: 6px; animation-delay: -1s; animation-duration: 17s; }
.sakura-fall i:nth-child(7) { left: 72%; --drift: 6vw; animation-delay: -10s; animation-duration: 14s; }
.sakura-fall i:nth-child(8) { left: 82%; width: 9px; height: 7px; animation-delay: -4s; animation-duration: 19s; }
.sakura-fall i:nth-child(9) { left: 91%; --drift: -8vw; animation-delay: -13s; animation-duration: 16s; }
.sakura-fall i:nth-child(10) { left: 12%; --drift: -5vw; animation-delay: -15s; animation-duration: 20s; }
.sakura-fall i:nth-child(11) { left: 48%; --drift: 12vw; animation-delay: -9s; animation-duration: 21s; }
.sakura-fall i:nth-child(12) { left: 77%; --drift: -11vw; animation-delay: -17s; animation-duration: 22s; }

@keyframes sakura-fall {
  0% { transform: translate3d(0, -12vh, 0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.72; }
  88% { opacity: 0.58; }
  100% { transform: translate3d(var(--drift), 112vh, 0) rotate(420deg); opacity: 0; }
}

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

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

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

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  text-wrap: balance;
}

p,
dd,
li {
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: var(--z-skip);
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border: 1px solid var(--gold);
  background: var(--ink);
  color: var(--ivory);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: var(--z-header);
  top: 0;
  display: grid;
  grid-template-columns: minmax(max-content, 1fr) auto minmax(max-content, 1fr);
  align-items: center;
  gap: 30px;
  min-height: 76px;
  padding: 12px max(24px, calc((100% - var(--content-width)) / 2));
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.wordmark {
  justify-self: start;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  color: var(--muted);
  font-size: 0.84rem;
}

.primary-nav a {
  padding-block: 10px;
}

.site-header > .contact-control {
  justify-self: end;
}

.contact-control {
  position: relative;
}

.contact-control--header .contact-status {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: max-content;
  max-width: 260px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: var(--ink-raised);
}

.contact-status:empty {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 650;
}

.button--gold {
  background: var(--gold);
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  min-height: min(780px, calc(100dvh - 76px));
  max-width: var(--content-width);
  margin-inline: auto;
  padding: 54px 24px 80px;
}

.hero__copy {
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  padding: 54px clamp(30px, 4.8vw, 76px) 54px 0;
}

.hero__visual {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-height: 590px;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-raised);
}

.hero__visual::after {
  position: absolute;
  inset-block: 7%;
  left: -8%;
  width: 70%;
  border: 1px solid var(--gold);
  content: "";
  pointer-events: none;
}

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

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 30px;
  font-size: clamp(2.5rem, 4.6vw, 4.4rem);
}

.hero h1 span {
  display: block;
  margin-top: 10px;
  color: var(--gold);
}

.hero__location {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 36px;
  border-block: 1px solid var(--line);
}

.hero-facts div {
  padding: 17px 18px 17px 0;
}

.hero-facts div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.hero-facts dt {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.hero-facts dd {
  margin: 0;
  font-variant-numeric: tabular-nums;
  font-weight: 650;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section {
  width: min(calc(100% - 48px), var(--content-width));
  margin-inline: auto;
  padding-block: clamp(74px, 9vw, 124px);
  border-top: 1px solid var(--line);
}

.section--compact {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  align-items: end;
  padding-block: 58px;
}

.section__heading {
  max-width: 560px;
  margin-bottom: 48px;
}

.section--compact .section__heading {
  margin-bottom: 0;
}

.section__heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3.6vw, 3.35rem);
}

.section__note {
  margin: 0;
  padding: 20px 0 8px clamp(24px, 5vw, 72px);
  border-left: 1px solid var(--gold);
  color: var(--muted);
}

.cast-empty {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: clamp(36px, 7vw, 96px);
  row-gap: 8px;
  max-width: 900px;
}

.cast-empty__frame,
.cast-card__placeholder {
  aspect-ratio: 3 / 4;
  border: 1px solid var(--gold);
  background: var(--ink-raised);
}

.cast-empty__frame {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.cast-empty p {
  align-self: end;
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.cast-empty span {
  align-self: start;
  grid-column: 2;
  grid-row: 2;
  color: var(--muted);
}

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

.cast-card {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.cast-card__media {
  aspect-ratio: 3 / 4;
  margin-bottom: 20px;
  overflow: hidden;
  background: var(--ink-raised);
}

.cast-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cast-card h3 {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 1.3rem;
}

.cast-card p {
  margin-bottom: 4px;
  color: var(--muted);
}

.section--wine {
  position: relative;
}

.section--wine::before {
  position: absolute;
  inset: 42px 0;
  z-index: -1;
  border-block: 1px solid var(--line);
  background: var(--wine);
  content: "";
}

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

.price-card {
  min-width: 0;
  padding: clamp(28px, 4vw, 48px);
  background: var(--wine);
}

.price-card + .price-card {
  border-left: 1px solid var(--line);
}

.price-card h3 {
  margin-bottom: 24px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
}

.price-card p {
  margin: 0;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  counter-reset: flow;
  list-style: none;
}

.flow-list li {
  min-height: 148px;
  padding: 28px;
  border-block: 1px solid var(--line);
  counter-increment: flow;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.flow-list li + li {
  border-left: 1px solid var(--line);
}

.flow-list li::before {
  display: block;
  margin-bottom: 25px;
  color: var(--gold);
  content: counter(flow, decimal-leading-zero);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
}

.section--area {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  align-items: end;
}

.section--hotel {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
}

.section--hotel .section__heading {
  margin-bottom: 0;
}

.hotel-guidance {
  padding: 24px 0 4px clamp(24px, 5vw, 72px);
  border-left: 1px solid var(--gold);
}

.hotel-guidance p {
  margin-bottom: 8px;
}

.hotel-guidance p + p {
  color: var(--muted);
}

.section--area .section__heading {
  margin-bottom: 0;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.area-list li {
  padding: 24px 8px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
}

.area-list li + li {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 1fr) auto;
  align-items: start;
  gap: 40px;
  padding: 50px max(24px, calc((100% - var(--content-width)) / 2));
  border-top: 1px solid var(--line);
  background: var(--ink-raised);
  color: var(--muted);
}

.footer__details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
}

.footer__details p,
.contact-status {
  margin: 0;
}

.footer__notice {
  max-width: 460px;
}

.footer__notice h2 {
  margin-bottom: 8px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.92rem;
}

.footer__notice p {
  margin-bottom: 3px;
  font-size: 0.84rem;
}

.footer__contact {
  display: grid;
  min-width: 180px;
  justify-items: stretch;
  gap: 8px;
}

.contact-status {
  min-height: 1.75em;
  color: var(--ivory);
  font-size: 0.84rem;
  text-align: center;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: max-content 1fr max-content;
    gap: 18px;
  }

  .primary-nav {
    justify-content: center;
    gap: 18px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .hero__copy {
    padding-right: 38px;
  }

  .hero__visual {
    min-height: 540px;
  }

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

@media (max-width: 767px) {
  html {
    scroll-padding-top: 68px;
  }

  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .age-gate__actions {
    grid-template-columns: 1fr;
  }

  .sakura-fall i:nth-child(n + 8) {
    display: none;
  }

  .site-header {
    grid-template-columns: max-content minmax(0, 1fr);
    min-height: 64px;
    padding: 8px 18px;
  }

  .wordmark {
    font-size: 1.05rem;
  }

  .primary-nav {
    justify-content: flex-end;
    gap: 16px;
    font-size: 0.78rem;
  }

  .primary-nav a:nth-child(2),
  .primary-nav a:nth-child(4),
  .contact-control--header {
    display: none;
  }

  .hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
    padding: 24px 18px 72px;
  }

  .hero__visual {
    order: 0;
    width: calc(100% - 28px);
    min-height: 0;
    aspect-ratio: 4 / 5;
    margin-left: 28px;
  }

  .hero__visual::after {
    inset-block: 7%;
    left: -24px;
    width: 70%;
  }

  .hero__media img {
    object-position: 50% center;
  }

  .hero__copy {
    order: 1;
    padding: 46px 0 0;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .hero__location {
    font-size: 0.94rem;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    padding: 14px 0;
  }

  .hero-facts div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero__actions .button {
    flex: 1 1 130px;
  }

  .section {
    width: calc(100% - 36px);
    padding-block: 72px;
  }

  .section--compact,
  .section--area,
  .section--hotel {
    grid-template-columns: 1fr;
  }

  .section--compact {
    gap: 28px;
    padding-block: 48px;
  }

  .section__heading {
    margin-bottom: 36px;
  }

  .section__note {
    padding: 4px 0 4px 18px;
  }

  .cast-empty {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 8px;
    max-width: 280px;
  }

  .cast-empty__frame {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 20px;
  }

  .cast-empty p {
    grid-column: 1;
    grid-row: 2;
  }

  .cast-empty span {
    grid-column: 1;
    grid-row: 3;
  }

  .price-grid,
  .flow-list,
  .area-list {
    grid-template-columns: 1fr;
  }

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

  .cast-card {
    padding-bottom: 16px;
  }

  .cast-card__media {
    margin-bottom: 12px;
  }

  .cast-card h3 {
    margin-bottom: 8px;
    font-size: 1.05rem;
  }

  .cast-card p {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .price-card + .price-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .flow-list li {
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    min-height: 0;
    padding: 22px 0;
  }

  .flow-list li + li {
    border-top: 0;
    border-left: 0;
  }

  .flow-list li::before {
    margin: 0;
  }

  .section--area {
    gap: 32px;
  }

  .section--hotel {
    gap: 28px;
  }

  .hotel-guidance {
    padding: 4px 0 4px 18px;
  }

  .area-list li {
    padding: 18px 0;
  }

  .area-list li + li {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .site-footer {
    display: block;
    padding: 40px 18px;
  }

  .footer__details {
    display: grid;
    gap: 6px;
  }

  .footer__contact {
    position: fixed;
    z-index: var(--z-fixed);
    right: 0;
    bottom: 0;
    left: 0;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 10px 18px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: var(--ink-raised);
  }

  .footer__contact .button {
    width: 100%;
  }

  .contact-status {
    min-height: 0;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sakura-fall {
    display: none;
  }
}
