:root {
  --bg: #0a0204;
  --gold: #c9a96a;
  --gold-bright: #e6c98a;
  --gold-dim: #8a7547;
  --pink: #d6336c;
  --text: #f4ece0;
  --text-dim: rgba(244, 236, 224, 0.7);
}

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

html,
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  list-style: none;
}

/* ============ Header / Nav ============ */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 28px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

/* brand text (left) */
.site-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.site-brand:hover {
  opacity: 0.8;
}

.site-brand__main {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold-bright);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.site-brand__dot {
  color: var(--gold);
  margin: 0 2px;
}

.site-brand__sub {
  font-size: 10px;
  letter-spacing: 0.55em;
  color: var(--text-dim);
  padding-left: 2px;
}

.global-nav ul {
  display: flex;
  gap: 44px;
}

.global-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.18em;
  color: var(--text);
  transition: color 0.3s ease;
}

.global-nav a:hover {
  color: var(--gold-bright);
}

.global-nav .en {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
}

.global-nav .ja {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  font-family: "Shippori Mincho", serif;
}

/* ============ KV ============ */
.kv {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
}

.kv__bg {
  position: absolute;
  inset: 0;
  background-image: url("kv.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.kv__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse at center,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.35) 60%,
      rgba(0, 0, 0, 0.65) 100%
    ),
    linear-gradient(180deg, rgba(10, 2, 4, 0.4) 0%, rgba(10, 2, 4, 0) 30%, rgba(10, 2, 4, 0.5) 100%);
}

.kv__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

/* ornament above catch */
.kv__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.kv__ornament .diamond {
  width: 10px;
  height: 10px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(201, 169, 106, 0.8);
}

.kv__ornament::before,
.kv__ornament::after {
  content: "";
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}

.kv__ornament::before {
  margin-right: 14px;
}

.kv__ornament::after {
  margin-left: 14px;
}

/* catch copy */
.kv__catch {
  font-family: "Shippori Mincho", "游明朝", serif;
  font-weight: 600;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.7;
  letter-spacing: 0.12em;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.8), 0 0 40px rgba(214, 51, 108, 0.15);
}

.kv__catch span {
  display: block;
}

/* sub line: NEW GENERATION ✦ HOST CLUB */
.kv__sub {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(14px, 1.6vw, 20px);
  letter-spacing: 0.45em;
  color: var(--gold-bright);
  position: relative;
}

.kv__sub::before,
.kv__sub::after {
  content: "";
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.kv__sub-mark {
  color: var(--gold);
  font-size: 0.9em;
}

/* reserve button */
.kv__reserve {
  margin-top: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: clamp(280px, 32vw, 380px);
  padding: 22px 36px;
  border: 1px solid rgba(201, 169, 106, 0.7);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(2px);
  position: relative;
  transition: all 0.4s ease;
}

.kv__reserve::before,
.kv__reserve::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
}

.kv__reserve::before {
  top: -4px;
  left: -4px;
  border-right: none;
  border-bottom: none;
}

.kv__reserve::after {
  bottom: -4px;
  right: -4px;
  border-left: none;
  border-top: none;
}

.kv__reserve:hover {
  background: rgba(201, 169, 106, 0.12);
  border-color: var(--gold-bright);
  letter-spacing: 0.3em;
}

.kv__reserve-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gold-bright);
}

.kv__reserve-ja {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}

.kv__reserve-arrow {
  position: absolute;
  right: 24px;
  color: var(--gold);
  font-size: 22px;
  font-family: "Cormorant Garamond", serif;
}

/* scroll indicator */
.kv__scroll {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--text-dim);
}

.kv__scroll-line {
  position: relative;
  width: 1px;
  height: 60px;
  background: rgba(201, 169, 106, 0.3);
  overflow: hidden;
}

.kv__scroll-line::after {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--gold-bright));
  animation: scrollFlow 2.4s ease-in-out infinite;
}

@keyframes scrollFlow {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(120px);
  }
}

/* bottom ribbon */
.kv__ribbon {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 18px 0;
  background: rgba(0, 0, 0, 0.55);
  border-top: 1px solid rgba(201, 169, 106, 0.35);
  border-bottom: 1px solid rgba(201, 169, 106, 0.35);
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.45em;
  color: var(--text);
  z-index: 2;
}

.kv__ribbon span {
  display: inline-block;
  position: relative;
  padding: 0 36px;
}

.kv__ribbon span::before,
.kv__ribbon span::after {
  content: "—";
  color: var(--gold);
  margin: 0 12px;
}

/* ============ System (Price) ============ */
.system {
  position: relative;
  padding: 120px 24px 140px;
  overflow: hidden;
  background: var(--bg);
}

.system__bg {
  position: absolute;
  inset: 0;
  background-image: url("kv.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.85;
  z-index: 0;
}

.system__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse at center,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.75) 70%,
      rgba(0, 0, 0, 0.85) 100%
    );
}

.system__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

/* heading */
.system__heading {
  text-align: center;
  margin-bottom: 72px;
}

.system__crest {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.system__crest-line {
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.system__crest-mark {
  color: var(--gold-bright);
  font-size: 18px;
  text-shadow: 0 0 12px rgba(201, 169, 106, 0.6);
}

.system__title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 0.18em;
  background: linear-gradient(180deg, #f5deaa 0%, #c9a96a 50%, #8a6f3a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.system__subtitle {
  margin-top: 18px;
  font-size: 14px;
  letter-spacing: 0.55em;
  color: var(--gold);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.system__subtitle span {
  position: relative;
  padding: 0 24px;
}

.system__subtitle span::before,
.system__subtitle span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 110px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 106, 0.6), transparent);
}

.system__subtitle span::before {
  right: 100%;
}

.system__subtitle span::after {
  left: 100%;
}

.system__divider {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.system__divider .diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(201, 169, 106, 0.7);
}

.system__divider::before,
.system__divider::after {
  content: "";
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 12px;
}

/* card frame (shared) */
.price-card,
.menu-card,
.option-card {
  position: relative;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(201, 169, 106, 0.55);
  backdrop-filter: blur(2px);
  padding: 28px 24px;
}

.price-card::before,
.price-card::after,
.menu-card::before,
.menu-card::after,
.option-card::before,
.option-card::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid var(--gold-bright);
}

.price-card::before,
.menu-card::before,
.option-card::before {
  top: -5px;
  left: -5px;
  border-right: none;
  border-bottom: none;
}

.price-card::after,
.menu-card::after,
.option-card::after {
  bottom: -5px;
  right: -5px;
  border-left: none;
  border-top: none;
}

/* price grid (3 cards) */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.price-card {
  text-align: center;
  padding: 32px 20px 28px;
}

.price-card__label {
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--text);
  margin-bottom: 14px;
}

.price-card__time {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  margin-bottom: 14px;
  min-height: 1.2em;
}

.price-card__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  font-family: "Cormorant Garamond", serif;
  color: var(--gold-bright);
}

.price-card__amount .yen {
  font-size: 28px;
  font-weight: 500;
}

.price-card__amount .num {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
}

.price-card__amount .unit {
  font-family: "Shippori Mincho", serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-left: 4px;
  align-self: flex-end;
  padding-bottom: 4px;
}

/* menu grid (2 cards) */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}

.menu-card,
.option-card {
  padding: 32px 36px 32px;
}

.menu-card__title {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.42em;
  color: var(--gold-bright);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-card__title span {
  position: relative;
  padding: 0 18px;
}

.menu-card__title span::before,
.menu-card__title span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.menu-card__title span::before {
  right: 100%;
}

.menu-card__title span::after {
  left: 100%;
}

/* menu list (with dotted leader) */
.menu-list {
  list-style: none;
}

.menu-list li {
  display: flex;
  align-items: baseline;
  padding: 9px 0;
  font-size: 14px;
  color: var(--text);
}

.menu-list__item {
  flex: 0 0 auto;
  letter-spacing: 0.06em;
}

.menu-list__dots {
  flex: 1 1 auto;
  margin: 0 10px;
  border-bottom: 1px dotted rgba(201, 169, 106, 0.55);
  position: relative;
  bottom: 4px;
}

.menu-list__price {
  flex: 0 0 auto;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--gold-bright);
}

/* option (2-column list) */
.option-card {
  max-width: 720px;
  margin: 0 auto;
}

.option-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 56px;
}

/* note */
.system__note {
  margin-top: 40px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--text-dim);
}

/* ============ Cast ============ */
.cast {
  position: relative;
  padding: 120px 24px 140px;
  overflow: hidden;
  background: var(--bg);
}

.cast__bg {
  position: absolute;
  inset: 0;
  background-image: url("kv.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scaleX(-1);
  opacity: 0.7;
  z-index: 0;
}

.cast__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse at center,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.85) 70%,
      rgba(0, 0, 0, 0.92) 100%
    );
}

.cast__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

.cast__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 48px;
}

/* card */
.cast-card {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(20, 6, 12, 0.85) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  border: 1px solid rgba(201, 169, 106, 0.55);
  padding: 64px 40px 48px;
  text-align: center;
  overflow: hidden;
  backdrop-filter: blur(2px);
}

.cast-card::before,
.cast-card::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--gold-bright);
}

.cast-card::before {
  top: -6px;
  left: -6px;
  border-right: none;
  border-bottom: none;
}

.cast-card::after {
  bottom: -6px;
  right: -6px;
  border-left: none;
  border-top: none;
}

/* No badge */
.cast-card__no {
  position: absolute;
  top: 22px;
  left: 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--text-dim);
}

.cast-card__no span {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold-bright);
  margin-left: 4px;
}

/* monogram */
.cast-card__monogram {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 180px;
  line-height: 1;
  color: rgba(201, 169, 106, 0.18);
  letter-spacing: 0;
  pointer-events: none;
  user-select: none;
  text-shadow: 0 0 40px rgba(201, 169, 106, 0.12);
}

/* portrait (photo / initial) */
.cast-card__portrait {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 28px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 106, 0.7);
  padding: 6px;
  box-shadow: 0 0 24px rgba(201, 169, 106, 0.25), inset 0 0 0 1px rgba(201, 169, 106, 0.2);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
}

.cast-card__portrait::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 106, 0.4);
  pointer-events: none;
  z-index: 2;
}

.cast-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  filter: grayscale(1) contrast(1.08) brightness(0.92);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.cast-card:hover .cast-card__photo {
  filter: grayscale(0.6) contrast(1.05) brightness(0.98);
  transform: scale(1.04);
}

.cast-card__portrait--initial {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cast-card__portrait--initial > span {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 110px;
  line-height: 1;
  color: var(--gold-bright);
  text-shadow: 0 0 24px rgba(201, 169, 106, 0.5);
}

/* rank / role */
.cast-card__rank {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.45em;
  color: var(--gold-bright);
  margin-bottom: 6px;
}

.cast-card__role {
  font-size: 11px;
  letter-spacing: 0.45em;
  color: var(--text-dim);
  margin-bottom: 28px;
}

/* name */
.cast-card__name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cast-card__name-ja {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: 0.18em;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
}

.cast-card__name-en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.25em;
  color: var(--gold);
}

/* divider in card */
.cast-card__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0 24px;
}

.cast-card__divider .diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

.cast-card__divider::before,
.cast-card__divider::after {
  content: "";
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 10px;
}

/* tags */
.cast-card__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}

.cast-card__tags li {
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold-bright);
  padding: 6px 14px;
  border: 1px solid rgba(201, 169, 106, 0.5);
  background: rgba(201, 169, 106, 0.06);
}

/* bio */
.cast-card__bio {
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 28px;
}

/* profile dl */
.cast-card__profile {
  text-align: left;
  border-top: 1px solid rgba(201, 169, 106, 0.3);
  padding-top: 22px;
}

.cast-card__profile div {
  display: flex;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dotted rgba(201, 169, 106, 0.25);
  gap: 16px;
}

.cast-card__profile div:last-child {
  border-bottom: none;
}

.cast-card__profile dt {
  flex: 0 0 110px;
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.cast-card__profile dd {
  flex: 1;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--text);
  text-align: right;
}

/* helper */
.sp-only {
  display: none;
}

/* ============ Flower band (decorative strip) ============ */
.flower-band {
  position: relative;
  width: 100%;
  height: 90px;
  background-image: url("flower-pattern.png");
  background-size: 480px auto;
  background-repeat: repeat;
  border-top: 1px solid rgba(201, 169, 106, 0.5);
  border-bottom: 1px solid rgba(201, 169, 106, 0.5);
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.55);
}

.flower-band::before,
.flower-band::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 24px;
  pointer-events: none;
}

.flower-band::before {
  top: 0;
  background: linear-gradient(180deg, rgba(10, 2, 4, 0.7), transparent);
}

.flower-band::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(10, 2, 4, 0.7), transparent);
}

.flower-band--thin {
  height: 50px;
  background-size: 320px auto;
}

/* ============ Access ============ */
.access {
  position: relative;
  padding: 120px 24px 140px;
  overflow: hidden;
  background: var(--bg);
}

.access__bg {
  position: absolute;
  inset: 0;
  background-image: url("flower-pattern.png");
  background-size: 720px auto;
  background-repeat: repeat;
  opacity: 0.18;
  z-index: 0;
}

.access__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse at center,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.85) 70%,
      rgba(10, 2, 4, 0.95) 100%
    );
}

.access__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

.access__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 32px;
  align-items: stretch;
}

.access-card {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(20, 6, 12, 0.85) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );
  border: 1px solid rgba(201, 169, 106, 0.55);
  padding: 48px 40px;
  text-align: center;
  backdrop-filter: blur(2px);
}

.access-card::before,
.access-card::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--gold-bright);
}

.access-card::before {
  top: -6px;
  left: -6px;
  border-right: none;
  border-bottom: none;
}

.access-card::after {
  bottom: -6px;
  right: -6px;
  border-left: none;
  border-top: none;
}

.access-card__name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--gold-bright);
  margin-bottom: 8px;
}

.access-card__name-jp {
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--text-dim);
}

.access-info {
  text-align: left;
  margin: 0 auto;
  max-width: 420px;
}

.access-info > div {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px dotted rgba(201, 169, 106, 0.3);
}

.access-info dt {
  flex: 0 0 100px;
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gold);
}

.access-info dd {
  flex: 1;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: var(--text);
}

.access-info dd a {
  color: var(--gold-bright);
  letter-spacing: 0.1em;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  transition: opacity 0.3s ease;
}

.access-info dd a:hover {
  opacity: 0.7;
}

.access-card__cta {
  margin: 36px auto 0;
  width: 100%;
  max-width: 360px;
}

.access-card__sns {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.access-card__sns a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--gold);
  padding: 8px 18px;
  border-bottom: 1px solid rgba(201, 169, 106, 0.4);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.access-card__sns a:hover {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}

.access-card__sns .kv__reserve-arrow {
  position: static;
  font-size: 16px;
}

.access-badges {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.access-badges li {
  font-family: "Cormorant Garamond", serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold-bright);
  padding: 6px 12px;
  border: 1px solid rgba(201, 169, 106, 0.4);
  background: rgba(201, 169, 106, 0.05);
}

/* map */
.access-card--map {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.access-map {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 380px;
  border: 1px solid rgba(201, 169, 106, 0.4);
  overflow: hidden;
  filter: grayscale(0.3) contrast(0.95) brightness(0.85);
}

.access-card__note {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-align: center;
}

/* ============ Footer ============ */
.site-footer {
  background: var(--bg);
  position: relative;
}

.site-footer__inner {
  text-align: center;
  padding: 48px 24px 36px;
}

.site-footer__brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  letter-spacing: 0.22em;
  color: var(--gold-bright);
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.site-footer__sub {
  font-size: 10px;
  letter-spacing: 0.55em;
  color: var(--text-dim);
}

.site-footer__copy {
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-dim);
}

/* ============ Responsive ============ */
@media (max-width: 768px) {
  .site-header {
    padding: 14px 16px;
    gap: 12px;
  }

  .site-brand__main {
    font-size: 13px;
    letter-spacing: 0.15em;
  }

  .site-brand__sub {
    font-size: 8px;
    letter-spacing: 0.4em;
  }

  .global-nav ul {
    gap: 14px;
  }

  .global-nav .en {
    font-size: 11px;
  }

  .global-nav .ja {
    font-size: 8px;
  }

  .kv {
    min-height: 600px;
  }

  .kv__catch {
    font-size: clamp(26px, 8vw, 40px);
    line-height: 1.8;
  }

  .kv__sub::before,
  .kv__sub::after {
    width: 30px;
  }

  .kv__sub {
    gap: 10px;
    letter-spacing: 0.3em;
  }

  .kv__reserve {
    margin-top: 40px;
    width: 280px;
    padding: 18px 24px;
  }

  .kv__scroll {
    bottom: 70px;
  }

  .kv__ribbon {
    font-size: 11px;
    letter-spacing: 0.25em;
    padding: 14px 12px;
  }

  .kv__ribbon span::before,
  .kv__ribbon span::after {
    margin: 0 6px;
  }

  /* system mobile */
  .system {
    padding: 80px 16px 100px;
  }

  .system__heading {
    margin-bottom: 48px;
  }

  .system__crest-line {
    width: 50px;
  }

  .system__subtitle span::before,
  .system__subtitle span::after {
    width: 40px;
  }

  .price-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 40px;
  }

  .price-card {
    padding: 24px 16px 22px;
  }

  .price-card__amount .num {
    font-size: 44px;
  }

  .price-card__amount .yen {
    font-size: 22px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 24px;
  }

  .menu-card,
  .option-card {
    padding: 26px 20px;
  }

  .menu-card__title span::before,
  .menu-card__title span::after {
    width: 30px;
  }

  .menu-list li {
    font-size: 13px;
  }

  .menu-list__price {
    font-size: 14px;
  }

  .option-list {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .system__note {
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  /* cast mobile */
  .cast {
    padding: 80px 16px 100px;
  }

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

  .cast-card {
    padding: 56px 24px 36px;
  }

  .cast-card__monogram {
    font-size: 130px;
    top: 20px;
    right: 16px;
  }

  .cast-card__portrait {
    width: 140px;
    height: 140px;
    margin-bottom: 22px;
  }

  .cast-card__portrait--initial > span {
    font-size: 84px;
  }

  .cast-card__name-ja {
    font-size: 26px;
  }

  .cast-card__name-en {
    font-size: 12px;
  }

  .cast-card__bio {
    font-size: 12.5px;
    line-height: 1.95;
  }

  .cast-card__profile dt {
    flex: 0 0 90px;
    font-size: 10px;
  }

  .cast-card__profile dd {
    font-size: 12px;
  }

  .sp-only {
    display: inline;
  }

  /* flower band mobile */
  .flower-band {
    height: 60px;
    background-size: 280px auto;
  }

  .flower-band--thin {
    height: 36px;
    background-size: 220px auto;
  }

  /* access mobile */
  .access {
    padding: 80px 16px 100px;
  }

  .access__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .access-card {
    padding: 36px 22px;
  }

  .access-info > div {
    flex-direction: column;
    gap: 4px;
  }

  .access-info dt {
    flex: 0 0 auto;
    font-size: 10px;
  }

  .access-info dd {
    font-size: 13px;
  }

  .access-info dd a {
    font-size: 16px;
  }

  .access-map {
    min-height: 280px;
  }

  .site-footer__inner {
    padding: 36px 16px 28px;
  }

  .site-footer__brand {
    font-size: 14px;
    letter-spacing: 0.18em;
  }
}
