:root {
  /* Background - almost white with lavender tint */
  --bg: #fbf9fc;
  --bg-soft: #f6f1f7;
  --bg-card: #f1eaf4;
  --bg-card-2: #ebe1ef;

  /* Ink - deep lavender-purple instead of black */
  --ink: #4a3a5c;
  --ink-soft: #6e5d82;
  --ink-mute: #9d91ad;
  --ink-dim: #c4bcd0;

  /* Lavender palette */
  --lav: #b9a5d0;
  --lav-deep: #8e7aa8;
  --lav-soft: #d6c6e3;
  --lav-pale: #ede3f3;
  --rose: #e9b8c6;
  --rose-soft: #f5dde4;
  --highlight: #d599a8;

  /* Lines */
  --line: rgba(74, 58, 92, 0.1);
  --line-soft: rgba(74, 58, 92, 0.06);
  --line-strong: rgba(74, 58, 92, 0.2);

  /* Fonts */
  --mincho: "Shippori Mincho", serif;
  --roman: "Cormorant Garamond", serif;
  --script: "Dancing Script", cursive;
  --sans: "Zen Kaku Gothic New", sans-serif;
  --en-sans: "Montserrat", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.9;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.04em;
}

/* Fine paper noise */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.55  0 0 0 0 0.45  0 0 0 0 0.65  0 0 0 0.035 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  background: rgba(251, 249, 252, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.nav-logo-mark {
  width: 40px;
  height: 40px;
  position: relative;
}

.nav-logo-mark svg {
  width: 100%;
  height: 100%;
  stroke: var(--lav-deep);
  fill: none;
  stroke-width: 1.2;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}

.nav-logo-text-jp {
  font-family: var(--mincho);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.08em;
}

.nav-logo-text-en {
  font-family: var(--en-sans);
  font-size: 9px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.35em;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  justify-content: center;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--en-sans);
  font-size: 13px;
  letter-spacing: 0.25em;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
  padding: 8px 2px;
}

.nav-links a:hover { color: var(--lav-deep); }

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ink);
}

.nav-ticket {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 82px;
  height: 82px;
  margin-top: 30px;
  background: var(--lav-soft);
  border-radius: 0 0 50% 50%;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.3s;
  padding-top: 12px;
  position: relative;
}

.nav-ticket:hover {
  background: var(--lav);
  color: white;
}

.nav-ticket-icon {
  width: 24px;
  height: 16px;
  border: 1.2px solid currentColor;
  border-radius: 3px;
  position: relative;
}

.nav-ticket-icon::before,
.nav-ticket-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 3px;
  height: 8px;
  background: var(--lav-soft);
  transform: translateY(-50%);
  transition: background 0.3s;
}

.nav-ticket:hover .nav-ticket-icon::before,
.nav-ticket:hover .nav-ticket-icon::after { background: var(--lav); }

.nav-ticket-icon::before { left: -1.5px; border-radius: 0 4px 4px 0; }
.nav-ticket-icon::after { right: -1.5px; border-radius: 4px 0 0 4px; }

.nav-ticket-label-en {
  font-family: var(--en-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 600;
}

.nav-ticket-label-jp {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 8px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: all 0.3s;
}

/* ============ RIGHT VERTICAL BAR ============ */
.side-vertical {
  position: fixed;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.side-vertical-text {
  writing-mode: vertical-rl;
  font-family: var(--mincho);
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0.6em;
  line-height: 1.2;
  font-weight: 400;
}

.side-sns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-sns a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  text-decoration: none;
  transition: all 0.3s;
  background: var(--bg);
}

.side-sns a:hover {
  background: var(--lav);
  color: white;
  border-color: var(--lav);
}

.side-sns svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  z-index: 3;
  padding: 130px 40px 80px;
  padding-right: 80px;
  min-height: 88vh;
  background: linear-gradient(135deg, #f8f4f9 0%, #ebe1ef 45%, #e5d5ea 80%, #ddd5e8 100%);
  overflow: hidden;
}

.hero-bg-sparkle {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 75% 35%, rgba(255, 255, 255, 0.4), transparent 35%),
    radial-gradient(circle at 25% 80%, rgba(229, 213, 234, 0.6), transparent 50%);
}

.hero-inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: calc(88vh - 210px);
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 30px;
}

.hero-script {
  font-family: var(--script);
  font-size: 42px;
  color: var(--lav-deep);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: 60px;
  margin-bottom: -12px;
  transform: rotate(-2deg);
}

.hero-script::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b9a5d0' stroke-width='1.5'><path d='M12 21s-7-4.5-7-11a4 4 0 0 1 7-2.7A4 4 0 0 1 19 10c0 6.5-7 11-7 11z'/></svg>") no-repeat center/contain;
}

.hero-title {
  font-family: var(--mincho);
  font-weight: 500;
  font-size: clamp(44px, 5.8vw, 82px);
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.hero-title .accent { color: var(--highlight); }

.hero-small-tagline {
  font-family: var(--mincho);
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0.12em;
  padding: 14px 0 10px;
  border-top: 1px solid var(--line-strong);
  max-width: 460px;
  margin-top: 12px;
}

.hero-festival-name {
  font-family: var(--mincho);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.12em;
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-festival-name .en {
  font-family: var(--en-sans);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--ink);
}

.hero-festival-name .year {
  font-family: var(--en-sans);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink);
}

.hero-date {
  font-family: var(--roman);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.02em;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-date .year {
  font-family: var(--roman);
  font-size: 0.75em;
  font-style: italic;
}

.hero-date .day {
  font-family: var(--roman);
  font-style: italic;
  font-size: 0.55em;
  color: var(--ink-soft);
}

.hero-date .sep {
  font-family: var(--roman);
  font-size: 0.9em;
  color: var(--ink-soft);
  margin: 0 4px;
}

.hero-venue {
  font-family: var(--mincho);
  font-size: 15px;
  color: var(--ink);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-venue::before {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--ink);
}

/* Hero right - character visual (decorative abstract) */
.hero-right {
  position: relative;
  aspect-ratio: 3/4;
  justify-self: end;
  width: 100%;
  max-width: 560px;
}

.hero-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-svg {
  width: 100%;
  height: 100%;
}

.hero-quote-bubble {
  position: absolute;
  bottom: 18%;
  right: 6%;
  font-family: var(--mincho);
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
  text-align: center;
  z-index: 5;
}

.hero-quote-bubble::after {
  content: " ?";
  color: var(--highlight);
  font-size: 12px;
}

.hero-quote-bubble .line1 { display: block; }
.hero-quote-bubble .line2 { display: block; margin-top: 2px; }

/* ============ SECTIONS ============ */
section {
  position: relative;
  z-index: 3;
  padding: 110px 80px;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
}

/* ============ ABOUT / NEWS / TICKET GRID ============ */
.overview {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 36px;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

/* Section heading with icon */
.section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.section-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--lav-deep);
  fill: none;
  stroke-width: 1;
}

.section-heading-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 2px;
}

.section-heading-en {
  font-family: var(--en-sans);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--ink);
}

.section-heading-jp {
  font-family: var(--mincho);
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.3em;
}

/* About column */
.about-col { padding-top: 20px; }

.about-lead {
  font-family: var(--mincho);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.about-text {
  font-size: 13px;
  line-height: 2;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 40px;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--mincho);
  font-size: 14px;
  letter-spacing: 0.2em;
  border: 1px solid var(--line-strong);
  border-radius: 50px;
  transition: all 0.3s;
  position: relative;
}

.btn-pill::after {
  content: "?";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--roman);
  font-size: 18px;
  transition: transform 0.3s;
}

.btn-pill:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.btn-pill:hover::after { transform: translateY(-50%) translateX(4px); }

/* News column */
.news-col {
  background: var(--bg-card);
  border-radius: 8px;
  padding: 32px 36px;
}

.news-col-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.news-col-head .section-heading { margin-bottom: 0; }

.view-all {
  font-family: var(--en-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-strong);
  transition: all 0.3s;
  font-weight: 500;
}

.view-all:hover { color: var(--lav-deep); border-color: var(--lav-deep); }

.news-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.news-row {
  display: grid;
  grid-template-columns: 85px 72px 1fr;
  gap: 12px;
  align-items: center;
  padding: 6px 0;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

.news-row:hover { opacity: 0.7; }

.news-date {
  font-family: var(--en-sans);
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  font-weight: 500;
}

.news-tag {
  font-family: var(--en-sans);
  font-size: 9px;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  padding: 4px 0;
  text-align: center;
  border-radius: 2px;
}

.news-title {
  font-family: var(--mincho);
  font-size: 13px;
  color: var(--ink);
  line-height: 1.5;
  font-weight: 500;
}

/* Ticket column */
.ticket-col {
  background: var(--bg-card-2);
  border-radius: 8px;
  padding: 32px 32px;
}

.ticket-col-head {
  font-family: var(--mincho);
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  font-weight: 600;
}

.ticket-col-deadline {
  font-family: var(--roman);
  font-size: 38px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.ticket-col-deadline .date-num { font-size: 46px; }
.ticket-col-deadline .small { font-family: var(--mincho); font-size: 14px; color: var(--ink-soft); }
.ticket-col-deadline .sun { font-family: var(--roman); font-style: italic; font-size: 18px; color: var(--ink-soft); }

.ticket-col-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  padding: 14px 20px;
  background: var(--bg);
  border-radius: 50px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--mincho);
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 22px;
  transition: all 0.3s;
  border: 1px solid transparent;
  position: relative;
}

.ticket-col-btn::after {
  content: "?";
  position: absolute;
  right: 22px;
  font-family: var(--roman);
  font-size: 18px;
}

.ticket-col-btn:hover {
  background: var(--ink);
  color: white;
}

.ticket-col-price {
  background: var(--bg-card);
  border-radius: 6px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 20px;
  align-items: center;
}

.ticket-col-price-label {
  font-family: var(--mincho);
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
  padding: 8px 0;
  border-right: 1px solid var(--line);
}

.ticket-col-price-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ticket-col-price-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mincho);
  font-size: 13px;
  color: var(--ink);
}

.ticket-col-price-item .price {
  font-family: var(--roman);
  font-size: 17px;
  letter-spacing: 0.02em;
}

.ticket-col-price-item .tax {
  font-size: 9px;
  color: var(--ink-mute);
  margin-left: 2px;
}

.ticket-col-note {
  margin-top: 14px;
  text-align: center;
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}

/* ============ LINE UP ============ */
.lineup { padding-top: 120px; }

.lineup-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.lineup-head-left {
  display: flex;
  align-items: baseline;
  gap: 24px;
}

.lineup-title-en {
  font-family: var(--en-sans);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--ink);
}

.lineup-title-jp {
  font-family: var(--mincho);
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.2em;
}

.lineup-wrap { position: relative; }

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.film-card {
  background: var(--bg);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s;
}

.film-card:hover { transform: translateY(-6px); }

.film-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}

.film-card-img-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  position: relative;
}

.film-card-img-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(74, 58, 92, 0.35) 100%);
}

.film-card-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--lav-deep);
  color: white;
  font-family: var(--mincho);
  font-size: 10px;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  z-index: 2;
}

.film-card-body {
  padding: 18px 16px 20px;
  text-align: center;
}

.film-card-title {
  font-family: var(--mincho);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.film-card-desc {
  font-family: var(--mincho);
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.film-card-year {
  font-family: var(--en-sans);
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.15em;
  font-weight: 500;
}

.lineup-arrow {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  transition: all 0.3s;
  font-family: var(--roman);
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
}

.lineup-arrow:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.lineup-arrow.prev { left: -60px; }
.lineup-arrow.next { right: -60px; }

.lineup-note {
  margin-top: 24px;
  text-align: right;
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}

/* ============ FEATURES ============ */
.features {
  margin-top: 80px;
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 36px 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.feature-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  padding-right: 20px;
  border-right: 1px solid var(--line);
}

.feature-item:last-of-type { border-right: none; }

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--lav-deep);
  fill: none;
  stroke-width: 1;
}

.feature-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-title {
  font-family: var(--mincho);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.feature-desc {
  font-family: var(--mincho);
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.feature-script {
  font-family: var(--script);
  font-size: 28px;
  color: var(--lav-deep);
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}

.feature-script::after {
  content: " ?";
  color: var(--highlight);
}

/* ============ DATA SECTIONS ============ */
.data-section { padding: 110px 80px; }

.data-section.alt-bg { background: var(--bg-soft); }

.data-head {
  text-align: center;
  margin-bottom: 72px;
}

.data-head-script {
  font-family: var(--script);
  font-size: 34px;
  color: var(--lav-deep);
  display: inline-block;
  margin-bottom: 8px;
}

.data-head-en {
  font-family: var(--en-sans);
  font-size: 26px;
  letter-spacing: 0.3em;
  color: var(--ink);
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}

.data-head-jp {
  font-family: var(--mincho);
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.2em;
  display: block;
}

.data-head-lead {
  font-family: var(--mincho);
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 24px auto 0;
  line-height: 2;
}

/* Entry detail */
.entry-detail {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.entry-lead-block {
  position: sticky;
  top: 120px;
}

.entry-lead-jp {
  font-family: var(--mincho);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.7;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.entry-lead-jp em {
  font-style: normal;
  color: var(--highlight);
  font-weight: 700;
}

.entry-lead-desc {
  font-family: var(--mincho);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 2;
  letter-spacing: 0.06em;
}

.entry-lead-script {
  margin-top: 32px;
  font-family: var(--script);
  font-size: 26px;
  color: var(--lav-deep);
}

.entry-lead-script::after {
  content: " ?";
  color: var(--highlight);
}

.entry-spec-list {
  background: var(--bg);
  border-radius: 8px;
  padding: 8px 36px;
}

.entry-spec-list dl {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px dashed var(--line);
  align-items: start;
}

.entry-spec-list dl:last-child { border-bottom: none; }

.entry-spec-list dt {
  font-family: var(--en-sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--lav-deep);
  font-weight: 600;
  padding-top: 4px;
}

.entry-spec-list dd {
  font-family: var(--mincho);
  font-size: 14px;
  color: var(--ink);
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.entry-cta-row {
  margin-top: 48px;
  text-align: center;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 48px;
  background: var(--ink);
  color: white;
  text-decoration: none;
  font-family: var(--mincho);
  font-size: 14px;
  letter-spacing: 0.2em;
  border-radius: 50px;
  transition: all 0.3s;
  border: 1px solid var(--ink);
  cursor: pointer;
}

.btn-main:hover {
  background: var(--lav-deep);
  border-color: var(--lav-deep);
  transform: translateY(-2px);
}

.btn-main::after {
  content: "?";
  font-family: var(--roman);
  font-size: 18px;
}

/* ============ SCHEDULE ============ */
.schedule-days {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.schedule-day {
  background: var(--bg);
  border-radius: 8px;
  padding: 40px 36px;
  border: 1px solid var(--line-soft);
}

.schedule-day-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}

.schedule-day-date {
  font-family: var(--roman);
  font-size: 52px;
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: 0.01em;
  font-weight: 400;
}

.schedule-day-date .small {
  display: block;
  font-family: var(--en-sans);
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.25em;
  margin-top: 8px;
  font-weight: 500;
}

.schedule-day-label {
  font-family: var(--script);
  font-size: 26px;
  color: var(--lav-deep);
}

.schedule-slot {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  align-items: start;
}

.schedule-slot:last-child { border-bottom: none; }

.schedule-time {
  font-family: var(--roman);
  font-size: 18px;
  color: var(--lav-deep);
  letter-spacing: 0.02em;
  padding-top: 2px;
}

.schedule-title-sm {
  font-family: var(--mincho);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.schedule-desc {
  font-family: var(--mincho);
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.schedule-note {
  margin-top: 32px;
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
  letter-spacing: 0.05em;
}

/* ============ TICKETS ============ */
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ticket-card {
  background: var(--bg);
  border-radius: 8px;
  padding: 40px 32px;
  position: relative;
  transition: transform 0.4s;
  border: 1px solid var(--line-soft);
}

.ticket-card.featured {
  background: var(--bg-card);
  border-color: var(--lav);
}

.ticket-card:hover { transform: translateY(-6px); }

.ticket-label-en {
  font-family: var(--en-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--lav-deep);
  margin-bottom: 10px;
  font-weight: 600;
}

.ticket-name {
  font-family: var(--mincho);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: 0.06em;
}

.ticket-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
  justify-content: center;
}

.ticket-price-num {
  font-family: var(--roman);
  font-size: 44px;
  color: var(--ink);
  line-height: 1;
  font-weight: 400;
}

.ticket-price-unit {
  font-family: var(--mincho);
  font-size: 12px;
  color: var(--ink-soft);
}

.ticket-feat {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.ticket-feat li {
  font-family: var(--mincho);
  font-size: 12px;
  color: var(--ink-soft);
  padding-left: 16px;
  position: relative;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.ticket-feat li::before {
  content: "?";
  position: absolute;
  left: 0;
  color: var(--highlight);
  font-size: 10px;
}

.ticket-btn { width: 100%; }

.ticket-badge {
  position: absolute;
  top: -10px;
  right: 24px;
  background: var(--lav-deep);
  color: white;
  font-family: var(--script);
  font-size: 18px;
  padding: 2px 14px;
  border-radius: 50px;
}

/* ============ ACCESS ============ */
.access-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.access-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.access-venue {
  font-family: var(--mincho);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.access-venue em {
  font-family: var(--roman);
  font-style: italic;
  font-size: 16px;
  color: var(--lav-deep);
  font-weight: 400;
  display: block;
  letter-spacing: 0.04em;
  margin-top: 6px;
}

.access-address {
  font-family: var(--mincho);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.access-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}

.access-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
}

.access-list dt {
  font-family: var(--en-sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--lav-deep);
  font-weight: 600;
  padding-top: 4px;
}

.access-list dd {
  font-family: var(--mincho);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.access-map {
  aspect-ratio: 4/5;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg);
}

.access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.75) contrast(0.95) opacity(0.9);
}

/* ============ CTA FINAL ============ */
.cta-final {
  padding: 140px 80px;
  text-align: center;
  background: linear-gradient(135deg, #f8f4f9 0%, #ebe1ef 60%, #e5d5ea 100%);
}

.cta-final-script {
  font-family: var(--script);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--lav-deep);
  margin-bottom: 8px;
  display: inline-block;
}

.cta-final-script::after { content: " ?"; color: var(--highlight); }

.cta-final h2 {
  font-family: var(--mincho);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: 0.08em;
}

.cta-final h2 em {
  font-style: normal;
  color: var(--highlight);
}

.cta-final p {
  font-family: var(--mincho);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 2;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-soft);
  padding: 70px 80px 40px;
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--line-soft);
}

.footer-top {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-logo-mark svg {
  width: 48px;
  height: 48px;
  stroke: var(--lav-deep);
  fill: none;
  stroke-width: 1.2;
}

.footer-logo-text-jp {
  font-family: var(--mincho);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.08em;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.footer-logo-text-en {
  font-family: var(--en-sans);
  font-size: 9px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.35em;
  display: block;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.footer-nav a {
  font-family: var(--en-sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-nav a:hover { color: var(--lav-deep); }

.footer-sub {
  max-width: 1320px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-sub-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-sub-links a {
  font-family: var(--mincho);
  font-size: 11px;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: 0.08em;
}

.footer-sub-links a:hover { color: var(--lav-deep); }

.footer-copy {
  font-family: var(--en-sans);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
  font-weight: 400;
}

/* ============ PAGE HERO (sub pages) ============ */
.page-hero {
  position: relative;
  z-index: 3;
  padding: 160px 40px 90px;
  background: linear-gradient(135deg, #f8f4f9 0%, #ebe1ef 60%, #e5d5ea 100%);
  text-align: center;
  overflow: hidden;
}

.page-hero-inner {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  z-index: 2;
}

.page-hero-script {
  font-family: var(--script);
  font-size: clamp(28px, 3.6vw, 42px);
  color: var(--lav-deep);
  display: inline-block;
  margin-bottom: 8px;
}

.page-hero-script::after { content: " ?"; color: var(--highlight); }

.page-hero-en {
  font-family: var(--en-sans);
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: 0.3em;
  color: var(--ink);
  font-weight: 500;
  display: block;
  margin-bottom: 14px;
}

.page-hero-jp {
  font-family: var(--mincho);
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ink-soft);
  letter-spacing: 0.25em;
  display: block;
  margin-bottom: 26px;
}

.page-hero-lead {
  font-family: var(--mincho);
  font-size: 14px;
  color: var(--ink);
  line-height: 2;
  letter-spacing: 0.08em;
  max-width: 640px;
  margin: 0 auto;
}

.breadcrumb {
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--en-sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ink-soft);
  font-weight: 500;
  z-index: 2;
}

.breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover { color: var(--lav-deep); }

.breadcrumb-sep { color: var(--ink-mute); }

/* ============ FILTER BAR ============ */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--bg);
  color: var(--ink-soft);
  text-decoration: none;
  font-family: var(--en-sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  font-weight: 500;
  border: 1px solid var(--line-strong);
  border-radius: 50px;
  transition: all 0.3s;
  cursor: pointer;
}

.filter-chip:hover { color: var(--lav-deep); border-color: var(--lav-deep); }

.filter-chip.active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.filter-chip .count {
  font-size: 10px;
  color: var(--lav-deep);
  font-weight: 600;
}

.filter-chip.active .count { color: var(--lav-soft); }

/* ============ FILM DETAIL CARDS (Lineup page) ============ */
.lineup-grid-detail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.film-card-detail {
  background: var(--bg);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line-soft);
}

.film-card-detail:hover { transform: translateY(-6px); }

.film-card-detail .film-card-img { aspect-ratio: 3/4; }

.film-card-detail .film-card-body {
  padding: 20px;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.film-card-genre {
  display: inline-flex;
  align-items: center;
  font-family: var(--en-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--lav-deep);
  font-weight: 600;
}

.film-card-meta {
  font-family: var(--en-sans);
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.12em;
  font-weight: 500;
  margin-top: auto;
}

.film-card-cast {
  font-family: var(--mincho);
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.film-card-cast strong {
  display: block;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--lav-deep);
  font-weight: 600;
  margin-bottom: 4px;
  font-family: var(--en-sans);
}

.lineup-section-title {
  font-family: var(--mincho);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin: 64px 0 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 16px;
  letter-spacing: 0.08em;
}

.lineup-section-title .en {
  font-family: var(--en-sans);
  font-size: 11px;
  color: var(--lav-deep);
  letter-spacing: 0.25em;
  font-weight: 600;
}

/* ============ FORMS ============ */
.form-section {
  padding: 110px 80px;
  background: var(--bg-soft);
}

.form-wrap {
  max-width: 880px;
  margin: 0 auto;
  background: var(--bg);
  border-radius: 12px;
  padding: 64px 72px;
  border: 1px solid var(--line-soft);
}

.form-step-bar {
  display: grid;
  grid-auto-flow: column;
  gap: 12px;
  margin-bottom: 48px;
}

.form-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  position: relative;
}

.form-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--roman);
  font-size: 14px;
  color: var(--ink-soft);
  background: var(--bg);
}

.form-step.active .form-step-num,
.form-step.done .form-step-num {
  background: var(--lav-deep);
  border-color: var(--lav-deep);
  color: white;
}

.form-step-label {
  font-family: var(--en-sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--ink-soft);
  font-weight: 500;
}

.form-step.active .form-step-label { color: var(--ink); }

.form-step-bar .form-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 16px;
  left: calc(50% + 22px);
  right: calc(-50% + 22px);
  height: 1px;
  background: var(--line-strong);
}

.form-block {
  margin-bottom: 36px;
}

.form-block:last-of-type { margin-bottom: 0; }

.form-block-title {
  font-family: var(--mincho);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.1em;
  padding-bottom: 12px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.form-block-title .en {
  font-family: var(--en-sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--lav-deep);
  font-weight: 600;
}

.form-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px dashed var(--line);
}

.form-row:last-child { border-bottom: none; }

.form-row.stacked { grid-template-columns: 1fr; gap: 8px; }

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-label {
  font-family: var(--mincho);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.08em;
  padding-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-label-required {
  font-family: var(--en-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  background: var(--highlight);
  color: white;
  padding: 2px 8px;
  border-radius: 3px;
}

.form-label-optional {
  font-family: var(--en-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  background: var(--bg-card);
  color: var(--ink-soft);
  padding: 2px 8px;
  border-radius: 3px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 16px;
  letter-spacing: 0.04em;
  transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--lav-deep);
  background: var(--bg);
  box-shadow: 0 0 0 3px rgba(142, 122, 168, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.7;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%238e7aa8' stroke-width='1.5'><path d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
  cursor: pointer;
}

.form-help {
  font-family: var(--mincho);
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-top: 6px;
  letter-spacing: 0.04em;
}

.form-radio-group,
.form-check-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-radio-group.inline,
.form-check-group.inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
}

.form-radio,
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: var(--mincho);
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.04em;
  padding: 10px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: all 0.3s;
}

.form-radio:hover,
.form-check:hover {
  border-color: var(--lav-deep);
  background: var(--bg);
}

.form-radio input,
.form-check input {
  accent-color: var(--lav-deep);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.form-radio:has(input:checked),
.form-check:has(input:checked) {
  border-color: var(--lav-deep);
  background: var(--lav-pale);
  color: var(--ink);
  font-weight: 600;
}

.form-file {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  border: 1px dashed var(--line-strong);
  border-radius: 6px;
  background: var(--bg-soft);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.form-file:hover { border-color: var(--lav-deep); background: var(--lav-pale); }

.form-file input { display: none; }

.form-file-icon {
  width: 28px;
  height: 28px;
  margin: 0 auto;
  color: var(--lav-deep);
}

.form-file-text {
  font-family: var(--mincho);
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
}

.form-file-hint {
  font-family: var(--mincho);
  font-size: 11px;
  color: var(--ink-soft);
}

.form-cta-row {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.form-confirm-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  background: var(--bg-soft);
  border-radius: 6px;
  border: 1px solid var(--line);
}

.form-confirm-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 8px 0;
  font-family: var(--mincho);
  font-size: 13px;
  border-bottom: 1px dashed var(--line);
}

.form-confirm-row:last-child { border-bottom: none; }

.form-confirm-label {
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.15em;
  font-family: var(--en-sans);
  font-weight: 600;
  padding-top: 2px;
}

.form-agreement {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px 26px;
  margin-top: 32px;
  font-family: var(--mincho);
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.9;
  max-height: 220px;
  overflow-y: auto;
}

.form-agreement h4 {
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 8px;
  font-weight: 700;
}

.form-agreement p { margin-bottom: 10px; }

.form-agreement ul { padding-left: 20px; margin-bottom: 10px; }

/* Ticket order box */
.order-summary {
  background: var(--bg-card);
  border: 1px solid var(--lav);
  border-radius: 8px;
  padding: 28px 32px;
  margin: 32px 0;
}

.order-summary-title {
  font-family: var(--mincho);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line-strong);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.order-summary-title .en {
  font-family: var(--en-sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--lav-deep);
  font-weight: 600;
}

.order-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 10px 0;
  font-family: var(--mincho);
  font-size: 13px;
}

.order-row.total {
  margin-top: 14px;
  padding-top: 18px;
  border-top: 2px solid var(--ink);
  font-weight: 700;
  font-size: 18px;
  align-items: baseline;
}

.order-row.total .num {
  font-family: var(--roman);
  font-size: 28px;
  color: var(--ink);
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50px;
  background: var(--bg);
  overflow: hidden;
}

.qty-stepper button {
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  color: var(--ink);
  font-family: var(--roman);
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.qty-stepper button:hover:not(:disabled) { background: var(--lav-pale); }
.qty-stepper button:disabled { color: var(--ink-mute); cursor: not-allowed; }

.qty-stepper-input {
  width: 44px;
  text-align: center;
  border: none;
  background: transparent;
  font-family: var(--roman);
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
  -moz-appearance: textfield;
}

.qty-stepper-input::-webkit-outer-spin-button,
.qty-stepper-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.ticket-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 22px 26px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-bottom: 12px;
  transition: all 0.3s;
}

.ticket-row.active {
  border-color: var(--lav-deep);
  background: var(--lav-pale);
}

.ticket-row-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ticket-row-name {
  font-family: var(--mincho);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.06em;
}

.ticket-row-desc {
  font-family: var(--mincho);
  font-size: 11px;
  color: var(--ink-soft);
}

.ticket-row-price {
  font-family: var(--roman);
  font-size: 22px;
  color: var(--ink);
  text-align: right;
  white-space: nowrap;
}

.ticket-row-price .unit {
  font-family: var(--mincho);
  font-size: 10px;
  color: var(--ink-soft);
  margin-left: 2px;
}

/* ============ FAQ (used on multiple pages) ============ */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  overflow: hidden;
}

.faq-question {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-q-mark {
  font-family: var(--roman);
  font-size: 24px;
  font-style: italic;
  color: var(--lav-deep);
}

.faq-q-text {
  font-family: var(--mincho);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.06em;
}

.faq-toggle {
  width: 22px;
  height: 22px;
  position: relative;
  transition: transform 0.3s;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--ink);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-toggle::before { width: 14px; height: 1px; }
.faq-toggle::after { width: 1px; height: 14px; transition: transform 0.3s; }

.faq-item.open .faq-toggle::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-answer {
  padding: 0 28px 0 70px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-family: var(--mincho);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.9;
  letter-spacing: 0.05em;
}

.faq-item.open .faq-answer {
  padding: 0 28px 22px 70px;
  max-height: 600px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
  .overview { grid-template-columns: 1fr; gap: 28px; }
  .lineup-grid { grid-template-columns: repeat(3, 1fr); }
  .lineup-grid-detail { grid-template-columns: repeat(3, 1fr); }
  .lineup-arrow { display: none; }
  .features { grid-template-columns: 1fr 1fr; }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-script { grid-column: 1 / -1; text-align: center; }
  .side-vertical { display: none; }
  .hero { padding-right: 40px; }
  .form-wrap { padding: 48px 40px; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { max-width: 100%; }
  .entry-detail,
  .access-wrap { grid-template-columns: 1fr; gap: 40px; }
  .entry-lead-block { position: static; }
  .schedule-days,
  .ticket-grid { grid-template-columns: 1fr; gap: 20px; }
  .features { grid-template-columns: 1fr; gap: 20px; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 20px; padding-right: 0; }
  .feature-item:nth-last-of-type(1) { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; gap: 20px; }
  .lineup-grid { grid-template-columns: repeat(2, 1fr); }
  .lineup-grid-detail { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; gap: 8px; }
  .form-label { padding-top: 0; }
  .form-row-2col { grid-template-columns: 1fr; }
  .ticket-row { grid-template-columns: 1fr; gap: 12px; }
  .ticket-row-price { text-align: left; }
}

@media (max-width: 768px) {
  .nav { padding: 14px 20px; gap: 16px; grid-template-columns: auto auto; }
  .nav-links { display: none; }
  .nav-ticket { display: none; }
  .nav-burger { display: flex; }
  section { padding: 70px 20px; }
  .data-section,
  .form-section { padding: 70px 20px; }
  .cta-final { padding: 90px 20px; }
  .footer { padding: 50px 20px 30px; }
  .hero { padding: 110px 20px 60px; }
  .page-hero { padding: 130px 20px 70px; }
  .hero-script { margin-left: 20px; font-size: 32px; }
  .news-col,
  .ticket-col,
  .schedule-day,
  .ticket-card { padding: 24px; }
  .entry-spec-list { padding: 0 24px; }
  .entry-spec-list dl { grid-template-columns: 1fr; gap: 6px; }
  .access-list li { grid-template-columns: 1fr; gap: 4px; }
  .lineup-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .lineup-grid-detail { grid-template-columns: 1fr 1fr; gap: 14px; }
  .lineup-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .lineup-head-left { flex-direction: column; gap: 4px; }
  .news-row { grid-template-columns: 80px 60px 1fr; gap: 8px; }
  .news-title { font-size: 12px; }
  .hero-title { font-size: 38px; line-height: 1.4; }
  .hero-festival-name { font-size: 18px; }
  .hero-festival-name .en { font-size: 13px; }
  .hero-date { font-size: 24px; }
  .hero-quote-bubble { display: none; }
  .form-wrap { padding: 32px 20px; }
  .form-confirm-row { grid-template-columns: 1fr; gap: 4px; }
  .form-step-bar { gap: 4px; }
  .form-step-label { font-size: 8px; letter-spacing: 0.15em; }
  .form-step-bar .form-step:not(:last-child)::after { display: none; }
  .breadcrumb { font-size: 9px; letter-spacing: 0.2em; top: 90px; }
  .filter-bar { gap: 8px; }
  .filter-chip { padding: 8px 16px; font-size: 10px; letter-spacing: 0.18em; }
  .lineup-section-title { flex-direction: column; align-items: flex-start; gap: 4px; font-size: 18px; }
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
