.vipPage {
  --hero-ratio-pc: 16 / 4.5;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.04), transparent 36%),
    #050505;
}

/* =========================
   Hero
========================= */

.vipHero {
  position: relative;
  display: flex;
  align-items: flex-end;
  aspect-ratio: var(--hero-ratio-pc);
  overflow: hidden;
  background: #050505;
}

.vipHero__media,
.vipHero__media picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.vipHero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vipHero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.5) 38%,
      rgba(0, 0, 0, 0.18) 68%,
      rgba(0, 0, 0, 0.08) 100%
    ),
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.42) 0%,
      rgba(0, 0, 0, 0.14) 42%,
      rgba(0, 0, 0, 0.12) 100%
    );
  pointer-events: none;
}

.vipHero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 56px;
}

.vipHero__copy {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.vipHero .sectionEyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.vipHero__title {
  margin: 0;
  color: #fff;
  font-family: var(--font-en);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.vipHero__lead {
  max-width: 640px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.9;
}

/* =========================
   Intro
========================= */

.vipIntro {
  padding-top: 88px;
  padding-bottom: 28px;
}

.vipIntro__text {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  line-height: 1.9;
}

/* =========================
   Gallery
========================= */

.vipGallery {
  padding-top: 28px;
  padding-bottom: 112px;
}

.vipGroup {
  max-width: 1120px;
  margin: 0 auto 42px;
}

.vipGroup:last-child {
  margin-bottom: 0;
}

.vipGroup__head {
  margin-bottom: 16px;
}

.vipGroup__title {
  margin: 0;
  color: #fff;
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.vipGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}

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

.vipGrid--single .vipItem {
  grid-column: 1 / 3;
  justify-self: center;
  width: 100%;
  max-width: calc((100% - 22px) / 2);
}

.vipItem {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.vipItem:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

.vipItem:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 4px;
}

.vipItem img {
  display: block;
  width: 100%;
  height: auto;
}

.vipItem::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.12) 34%,
    rgba(0, 0, 0, 0) 60%
  );
  pointer-events: none;
}

.vipItem__label {
  position: absolute;
  z-index: 2;
  bottom: 16px;
  left: 18px;
  color: #fff;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: left;
}

/* =========================
   Lightbox
========================= */

.vipLightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.vipLightbox.is-open {
  display: block;
}

.vipLightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(4px);
}

.vipLightbox__dialog {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 86px;
}

.vipLightbox__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: min(1280px, 100%);
  max-height: 100%;
  margin: 0;
}

.vipLightbox__img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 140px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.vipLightbox__caption {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-align: center;
}

.vipLightbox__close,
.vipLightbox__nav {
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition:
    background 0.24s ease,
    transform 0.24s ease;
}

.vipLightbox__close:hover,
.vipLightbox__nav:hover {
  background: rgba(255, 255, 255, 0.18);
}

.vipLightbox__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 52px;
  height: 52px;
  font-size: 34px;
  line-height: 1;
}

.vipLightbox__nav {
  position: absolute;
  top: 50%;
  width: 58px;
  height: 58px;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.vipLightbox__prev {
  left: 20px;
}

.vipLightbox__next {
  right: 20px;
}

body.vipLightboxOpen {
  overflow: hidden;
}

/* =========================
   Attention
========================= */

.vipAttention {
  padding: 0;
  background: #fff;
}

.vipAttention .container {
  width: min(1120px, calc(100% - 48px));
}

.vipAttention__inner {
  width: 100%;
  margin: 0;
  padding: 56px 0 52px;
  background: transparent;
}

.vipAttention__head {
  text-align: center;
}

.vipAttention__title {
  margin: 0;
  color: #8E3B2E;
  font-family: var(--font-en);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.1em;
}

.vipAttention__body {
  margin-top: 20px;
  text-align: center;
}

.vipAttention__body p {
  margin: 0 0 8px;
  color: #222;
  font-size: 14px;
  line-height: 1.8;
}

.vipAttention__body p:last-child {
  margin-bottom: 0;
}

/* =========================
   Reservation
========================= */

.vipReservation {
  padding-top: 0;
  padding-bottom: 112px;
}

.vipReservation__inner {
  width: 100%;
  margin: 0 auto;
  padding: 56px 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.vipReservation__title {
  color: #fff;
}

.vipReservation__lead {
  max-width: 720px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
  line-height: 1.9;
}

.vipForm {
  margin-top: 38px;
}

.vipForm__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 18px;
}

.vipField {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vipField--full {
  grid-column: 1 / -1;
}

.vipField label {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.vipField label span {
  margin-left: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.vipField input,
.vipField select,
.vipField textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  appearance: none;
}

.vipField input::placeholder,
.vipField textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.vipField input:focus,
.vipField select:focus,
.vipField textarea:focus {
  border-color: #8E3B2E;
  background: rgba(255, 255, 255, 0.12);
}

.vipField textarea {
  min-height: 150px;
  resize: vertical;
}

.vipTimeSelect {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vipTimeSelect select {
  flex: 1;
}

.vipTimeSelect span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.vipPolicy {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vipCheck {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.vipCheck input {
  width: 18px;
  height: 18px;
  accent-color: #8E3B2E;
}

.vipPolicy__note {
  margin-top: 16px;
}

.vipPolicy__note p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.8;
}

.vipPolicy__note p:last-child {
  margin-bottom: 0;
}

.vipForm__actions {
  margin-top: 28px;
  text-align: center;
}

.vipForm__submit {
  min-width: 280px;
  padding: 16px 28px;
  border: 1px solid #8E3B2E;
  background: #8E3B2E;
  color: #fff;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.vipForm__submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.vipForm__submit--secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
}

/* =========================
   Confirm / Thanks
========================= */

.vipReservationPage,
.vipThanks {
  padding-top: 160px;
  padding-bottom: 112px;
}

.vipReservationPage__inner,
.vipThanks__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.vipReservationPage__lead,
.vipThanks__lead {
  max-width: 720px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
  line-height: 1.9;
}

.vipFormStatus {
  margin: 28px auto 24px;
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.8;
}

.vipFormStatus--error {
  border: 1px solid rgba(142, 59, 46, 0.4);
  background: rgba(142, 59, 46, 0.12);
  color: #fff;
}

.vipConfirm {
  margin-top: 18px;
}

.vipConfirm__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.vipConfirm__row:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.vipConfirm__label,
.vipConfirm__value {
  padding: 18px 20px;
  color: #fff;
  font-size: 14px;
  line-height: 1.9;
}

.vipConfirm__label {
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.vipConfirm__value {
  background: rgba(255, 255, 255, 0.03);
}

.vipConfirm__error {
  margin: 0 0 10px;
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
}

.vipConfirm__actions,
.vipThanks__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.vipThanks__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* =========================
   Responsive
========================= */

@media (max-width: 767px) {
  .vipHero {
    aspect-ratio: auto;
    align-items: flex-end;
    min-height: 68vh;
  }

  .vipHero__inner {
    padding-bottom: 42px;
  }

  .vipHero__copy {
    width: min(100%, calc(100% - 40px));
  }

  .vipHero .sectionEyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.vipHero__title {
  margin: 0;
  color: #fff;
  font-family: var(--font-en);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

  .vipHero__lead {
    max-width: none;
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.8;
  }

  .vipIntro {
    padding-top: 68px;
    padding-bottom: 20px;
  }

  .vipIntro__text {
    margin-top: 14px;
    font-size: 14px;
    text-align: left;
  }

  .vipGallery {
    padding-top: 20px;
    padding-bottom: 76px;
  }

  .vipGroup {
    margin-bottom: 28px;
  }

  .vipGroup__head {
    margin-bottom: 12px;
  }

  .vipGroup__title {
    font-size: 15px;
  }

  .vipGrid,
  .vipGrid--single {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .vipGrid--single .vipItem {
    grid-column: auto;
    max-width: none;
  }

  .vipItem__label {
    bottom: 12px;
    left: 14px;
    font-size: 12px;
  }

  .vipLightbox__dialog {
    padding: 26px 16px 84px;
  }

  .vipLightbox__img {
    max-height: calc(100vh - 170px);
  }

  .vipLightbox__caption {
    font-size: 12px;
    line-height: 1.7;
  }

  .vipLightbox__close {
    top: 14px;
    right: 14px;
    width: 46px;
    height: 46px;
    font-size: 30px;
  }

  .vipLightbox__nav {
    top: auto;
    bottom: 18px;
    width: 54px;
    height: 54px;
    font-size: 30px;
    transform: none;
  }

  .vipLightbox__prev {
    left: calc(50% - 68px);
  }

  .vipLightbox__next {
    right: calc(50% - 68px);
  }

  .vipAttention .container {
    width: min(100%, calc(100% - 32px));
  }

  .vipAttention__inner {
    padding: 34px 0 32px;
  }

  .vipAttention__title {
    font-size: 24px;
    letter-spacing: 0.08em;
  }

  .vipAttention__body {
    margin-top: 14px;
  }

  .vipAttention__body p {
    font-size: 13px;
    line-height: 1.75;
  }

  .vipReservation {
    padding-bottom: 76px;
  }

  .vipReservation__inner {
    padding: 32px 18px;
  }

  .vipForm {
    margin-top: 28px;
  }

  .vipForm__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vipField--full {
    grid-column: auto;
  }

  .vipField input,
  .vipField select,
  .vipField textarea {
    padding: 13px 14px;
    font-size: 14px;
  }

  .vipPolicy {
    margin-top: 22px;
    padding-top: 20px;
  }

  .vipForm__submit {
    width: 100%;
    min-width: 0;
  }

  .vipReservationPage,
  .vipThanks {
    padding-top: 128px;
    padding-bottom: 76px;
  }

  .vipReservationPage__inner,
  .vipThanks__inner {
    padding: 30px 18px;
  }

  .vipConfirm__row {
    grid-template-columns: 1fr;
  }

  .vipConfirm__label,
  .vipConfirm__value {
    padding: 14px 14px;
    font-size: 13px;
  }
}

.vipPolicy__box {
  max-height: 180px;
  overflow-y: auto;
  padding: 16px;
  background: #f4f6f5;
  color: #213946;
  font-size: 13px;
  line-height: 1.7;
  border-radius: 6px;
  margin-bottom: 12px;
}

.vipPolicy__content h3 {
  font-size: 14px;
  margin-bottom: 8px;
}

.vipPolicy__content p {
  margin-bottom: 10px;
}

.vipPolicy__content ul {
  padding-left: 16px;
  margin-bottom: 10px;
}

.vipCheck--disabled {
  opacity: 0.4;
  pointer-events: none;
}