:root {
  color-scheme: dark;
  --ink: #f8f4ea;
  --muted: #b9c4dd;
  --paper: #070814;
  --panel: #111326;
  --panel-2: #171a31;
  --line: rgba(255, 255, 255, 0.12);
  --gold: #55ddff;
  --coral: #ff3dbd;
  --accent: #ff3dbd;
  --teal: #1687ff;
  --violet: #7a35ff;
  --white-led: #f5fbff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(11, 10, 15, 0.75);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: transform 0.3s ease;
}

.site-header.hidden {
  transform: translateY(-100%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(85, 221, 255, 0.55);
  background: #0d1024;
  color: var(--gold);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(12px, 2.2vw, 28px);
  color: #ded9cf;
  font-size: 14px;
  row-gap: 4px;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  border-color: var(--gold);
  color: #fff;
}

.button,
.line-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid rgba(85, 221, 255, 0.45);
  background: linear-gradient(135deg, var(--gold), var(--coral));
  color: #03040a;
  font-weight: 800;
  white-space: nowrap;
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid rgba(85, 221, 255, 0.45);
  color: #03040a;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta.primary {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  border-color: transparent;
  color: #fff;
}

.header-cta.secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--white-led);
}

.header-cta-tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--white-led);
  font-size: 0.95em;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.header-cta-tel:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.header-cta-tel-icon {
  font-size: 1.1em;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 140px clamp(18px, 5vw, 76px) 54px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background: url("assets/counter-view-b.jpg") center 42% / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 6, 17, 0.98) 0%, rgba(8, 10, 25, 0.74) 44%, rgba(7, 10, 24, 0.18) 100%),
    linear-gradient(0deg, var(--paper) 0%, rgba(7, 8, 20, 0) 34%),
    radial-gradient(circle at 78% 42%, rgba(255, 61, 189, 0.2), transparent 32%);
}

.hero-content {
  max-width: 980px;
}

.eyebrow,
.panel-kicker,
.plan {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(48px, 9vw, 116px);
  line-height: 0.98;
  font-weight: 900;
}

.hero-copy {
  max-width: 760px;
  color: #eee7dc;
  font-size: clamp(16px, 2vw, 22px);
}

.hero-actions,
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.26);
}

.button.alert {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(239, 68, 68, 0.35);
  font-weight: 700;
}

.button.alert:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.45);
  transform: translateY(-1px);
}

.hero-facts span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  background: rgba(12, 12, 17, 0.52);
  color: #efe9df;
  font-size: 13px;
}

.dynamic-manifest {
  padding-top: 70px;
  padding-bottom: 70px;
}

.manifest-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: end;
}

.manifest-copy {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
}

.manifest-copy strong {
  color: var(--white-led);
}

.lock-strip,
.fee-row,
.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.lock-strip span,
.fee-row span,
.legend,
.badge,
.save-badge,
.urgency {
  padding: 10px 13px;
  border: 1px solid rgba(85, 221, 255, 0.26);
  background: rgba(85, 221, 255, 0.08);
  color: var(--white-led);
  font-size: 13px;
  font-weight: 900;
}

.save-badge {
  display: inline-flex;
  margin: 0 0 14px;
  border-color: rgba(38, 220, 127, 0.48);
  background: rgba(38, 220, 127, 0.13);
  color: #85ffbd;
}

.urgency.soon {
  border-color: rgba(255, 184, 77, 0.65);
  background: rgba(255, 184, 77, 0.15);
}

.urgency.final {
  border-color: rgba(255, 68, 94, 0.72);
  background: rgba(255, 68, 94, 0.16);
}

section {
  padding: 88px clamp(18px, 5vw, 76px);
}

.page-main {
  padding-top: 74px;
}

.band {
  background: #0d1020;
}

.band.dark {
  background:
    radial-gradient(circle at 18% 0%, rgba(85, 221, 255, 0.16), transparent 34%),
    radial-gradient(circle at 84% 12%, rgba(255, 61, 189, 0.16), transparent 36%),
    linear-gradient(180deg, #070916, #101326);
}

.section-head {
  max-width: 900px;
  margin-bottom: 34px;
}

.section-head.compact {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.2;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.35;
}

.section-head p:not(.eyebrow),
.dual-panel p,
.feature-card p,
.price-card p,
.model-card p,
.spec-list p,
.calendar-panel p,
.gallery-grid p,
.route li,
.faq p,
.site-footer p {
  color: var(--muted);
}

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

.dual-panel,
.feature-card,
.price-card,
.model-card,
.calendar-panel,
.contact-form,
.route,
.gallery-grid article {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.dual-panel {
  min-height: 360px;
  padding: clamp(24px, 4vw, 44px);
}

.dual-panel.organizer {
  border-top: 4px solid var(--gold);
}

.dual-panel.artist {
  border-top: 4px solid var(--coral);
}

.check-list,
.price-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li,
.price-card li {
  position: relative;
  padding-left: 24px;
  color: #eee9dd;
}

.check-list li::before,
.price-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
}

.feature-grid,
.price-grid,
.model-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.price-card,
.model-card,
.gallery-grid article {
  padding: 26px;
}

.num {
  display: block;
  margin-bottom: 34px;
  color: rgba(85, 221, 255, 0.8);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}

.venue-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 24px;
  align-items: stretch;
}

.venue-main {
  margin: 0;
}

.venue-main img,
.photo-strip img,
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-main img {
  max-height: 400px;
  min-height: 300px;
}

.venue-main figcaption {
  padding-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

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

.spec-list article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.photo-strip img {
  aspect-ratio: 4 / 3;
}

.price-card.featured {
  border-color: rgba(255, 61, 189, 0.62);
  background: linear-gradient(180deg, rgba(22, 135, 255, 0.16), rgba(255, 61, 189, 0.08));
}

.price-card strong {
  color: var(--gold);
  font-size: 1.18em;
}

.price-card s,
.modal-price s,
.day s {
  color: rgba(248, 244, 234, 0.52);
  text-decoration-color: var(--coral);
  text-decoration-thickness: 2px;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--gold);
  font-weight: 900;
  border-bottom: 1px solid currentColor;
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.ops-grid article,
.early-fee,
.coupon-panel,
.month-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(22, 135, 255, 0.1), rgba(255, 61, 189, 0.045));
  box-shadow: var(--shadow);
}

.ops-grid article,
.early-fee,
.coupon-panel {
  padding: 24px;
}

.ops-grid p,
.early-fee p,
.coupon-panel p {
  color: var(--muted);
}

.early-fee {
  margin-top: 14px;
}

.calculator {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.58fr) auto;
  gap: 24px;
  align-items: end;
  margin-top: 26px;
  padding: 26px;
  border: 1px solid rgba(85, 221, 255, 0.34);
  background: #0b0d1e;
}

.calc-form {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 12px;
}

label {
  display: grid;
  gap: 8px;
  color: #eee8dc;
  font-size: 13px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #0c0c11;
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 0;
}

textarea {
  resize: vertical;
}

.estimate {
  color: var(--gold);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  white-space: nowrap;
}

.estimate-box {
  display: grid;
  gap: 6px;
  justify-items: end;
}

.estimate-box span {
  padding: 7px 10px;
  background: rgba(255, 61, 189, 0.16);
  border: 1px solid rgba(255, 61, 189, 0.38);
  color: var(--white-led);
  font-size: 12px;
  font-weight: 900;
}

.estimate-box small {
  color: var(--muted);
}

.calendar-section .button {
  margin-top: 24px;
}

.month-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.calendar-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.calendar-controls strong {
  text-align: center;
  color: var(--white-led);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 900;
}

.calendar-controls button {
  min-height: 42px;
  border: 1px solid rgba(85, 221, 255, 0.34);
  background: rgba(85, 221, 255, 0.08);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.calendar-controls button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.month-card {
  padding: 20px;
}

.month-head,
.month-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.month-head {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.day {
  position: relative;
  min-height: 70px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 10px 6px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  cursor: pointer;
}

.day:disabled {
  cursor: default;
}

.day.blank {
  border-color: transparent;
  background: transparent;
  cursor: default;
}

.day b {
  display: block;
  text-align: center;
  line-height: 1.2;
  font-size: 14px;
  font-weight: 900;
}

.day em {
  display: block;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-style: normal;
  line-height: 1.15;
  color: var(--white-led);
  font-size: clamp(10px, 1.2vw, 13px);
  font-weight: 900;
}

.day.weekday {
  border-color: rgba(85, 221, 255, 0.35);
}

.day.friday {
  border-color: rgba(255, 159, 67, 0.72);
  background: rgba(255, 159, 67, 0.18);
}

.day.weekend {
  border-color: rgba(255, 68, 94, 0.78);
  background: rgba(255, 68, 94, 0.18);
}

.day.special-period {
  border: 2px solid #f59e0b;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(239, 68, 68, 0.15));
}

.day.special-period::after {
  content: "★";
  position: absolute;
  top: 4px;
  right: 4px;
  color: #f59e0b;
  font-size: 0.8em;
  font-weight: 900;
}

.day.booked {
  border-color: rgba(255, 255, 255, 0.22);
  background: #2a2d38;
  color: var(--white-led);
  cursor: default;
}

.day.booked em {
  color: var(--white-led);
}

.day.past {
  opacity: 0.34;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  cursor: default;
}

.day.past b,
.day.past em {
  color: rgba(248, 244, 234, 0.54);
}

.day.past em {
  display: none;
}

.legend.weekday {
  border-color: rgba(85, 221, 255, 0.5);
}

.legend.friday {
  border-color: rgba(255, 159, 67, 0.72);
  background: rgba(255, 159, 67, 0.16);
}

.legend.weekend {
  border-color: rgba(255, 68, 94, 0.78);
  background: rgba(255, 68, 94, 0.16);
}

.legend.special {
  border-color: #f59e0b;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(239, 68, 68, 0.14));
}

.legend.booked {
  border-color: rgba(255, 255, 255, 0.22);
  background: #2a2d38;
  color: var(--white-led);
}

.live-schedule {
  background: #090b18;
}

.schedule-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.schedule-arrows {
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.schedule-tabs button {
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.schedule-tabs button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.schedule-tabs button.active {
  border-color: rgba(255, 61, 189, 0.7);
  background: linear-gradient(135deg, rgba(85, 221, 255, 0.18), rgba(255, 61, 189, 0.2));
}

.schedule-tabs strong {
  color: var(--white-led);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 900;
}

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

.show-list {
  display: grid;
  gap: 18px;
}

.show-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(22, 135, 255, 0.04));
  box-shadow: var(--shadow);
}

.show-row {
  display: grid;
  grid-template-columns: 132px minmax(160px, 220px) minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(85, 221, 255, 0.08), rgba(255, 61, 189, 0.06));
  box-shadow: var(--shadow);
}

.show-date {
  display: grid;
  min-height: 158px;
  align-content: center;
  padding: 16px;
  border: 1px solid rgba(85, 221, 255, 0.36);
  background:
    linear-gradient(180deg, rgba(4, 7, 24, 0.92), rgba(16, 20, 48, 0.92)),
    radial-gradient(circle at 70% 24%, rgba(255, 61, 189, 0.28), transparent 42%);
}

.show-date span,
.show-date em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.show-date strong {
  color: var(--white-led);
  font-size: clamp(52px, 7vw, 78px);
  line-height: 0.9;
  text-shadow: 0 0 22px rgba(85, 221, 255, 0.38);
}

.show-flyer {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
}

.show-detail h3 {
  margin-bottom: 8px;
  font-size: clamp(22px, 3vw, 34px);
}

.show-card p,
.show-row p,
.show-meta {
  color: var(--muted);
}

.show-card .button {
  min-height: 40px;
  margin-top: 8px;
  padding: 8px 12px;
}

.show-card .show-date {
  min-height: 120px;
}

.show-card .show-flyer {
  aspect-ratio: 4 / 3;
}

.show-card .show-detail h3 {
  font-size: 22px;
}

.show-reserve {
  align-self: center;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 24px;
  border: 1px solid var(--line);
  color: var(--muted);
}

.reservation-modal {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: none;
}

.reservation-modal.open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 10, 0.78);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(940px, calc(100vw - 28px));
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  overflow: auto;
  border: 1px solid rgba(85, 221, 255, 0.36);
  background: #090b18;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 38px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.modal-price {
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.modal-price strong {
  color: var(--gold);
  font-size: clamp(30px, 6vw, 58px);
}

.modal-hours {
  margin: 16px 0;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.modal-section-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.85em;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.modal-mode-toggle {
  margin: 0 0 24px;
}

.mode-toggle-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.mode-toggle-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border: 2px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mode-toggle-option:has(input:checked) {
  border-color: #a855f7;
  background: rgba(168, 85, 247, 0.1);
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.25);
}

.mode-toggle-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mode-toggle-label strong {
  font-size: 1.05em;
  font-weight: 700;
}

.mode-toggle-label small {
  color: var(--muted);
  font-size: 0.85em;
}

.modal-hours-options {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.modal-time-row {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  margin-top: 12px;
}

.modal-time-select {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
  font-size: 0.9em;
  font-weight: 700;
}

.modal-time-select select {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white-led);
}

.modal-end-time {
  color: var(--muted);
  font-size: 0.95em;
  text-align: right;
}

.modal-hours-radio {
  display: inline-flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.modal-hours-radio:has(input[type="radio"]:checked) {
  border-color: #a855f7;
  background: rgba(168, 85, 247, 0.1);
}

.modal-hours-radio input[type="radio"]:checked + span {
  color: #c084fc;
  font-weight: 700;
}

.modal-extension-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 6px;
  background: rgba(245, 158, 11, 0.08);
  cursor: pointer;
  font-size: 0.95em;
  margin-top: 12px;
}

.modal-extension-toggle input[type="checkbox"] {
  accent-color: #f59e0b;
}

.modal-extension-detail {
  margin-top: 8px;
  padding: 12px;
  border-left: 3px solid #f59e0b;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
}

.modal-extension-detail label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.9em;
}

.modal-extension-detail select {
  margin-top: 4px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white-led);
  font-size: 0.95em;
}

.extension-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.8em;
}

.extension-night-note {
  display: inline-block;
  margin: 10px 0 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.13);
  color: #fbbf24;
  font-size: 0.82em;
  font-weight: 800;
}

.extension-subtotal {
  margin: 8px 0 0;
  color: var(--gold);
  font-weight: 900;
}

.quote-summary {
  margin: 18px 0;
  padding: 18px;
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.08);
}

.quote-summary h3 {
  margin: 0 0 10px;
  color: var(--white-led);
}

.quote-summary h3 strong {
  color: var(--gold);
  font-size: clamp(26px, 4vw, 42px);
}

.quote-summary ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.modal-form-mode-block {
  display: contents;
}

.performance-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  grid-column: 1 / -1;
  margin: 16px 0;
}

[data-mode-block][hidden] {
  display: none !important;
}

.performance-intro-note {
  margin: 0;
  padding: 10px 12px;
  border-left: 3px solid #a855f7;
  border-radius: 6px;
  background: rgba(168, 85, 247, 0.08);
  color: var(--muted);
  font-size: 0.9em;
}

.performance-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.performance-field select,
.performance-field input[type="text"],
.performance-field input[type="url"],
.performance-field textarea {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font-size: 1em;
}

.field-hint {
  color: var(--muted);
  font-size: 0.82em;
}

.performance-switch-note {
  margin-top: 8px;
  font-size: 0.9em;
}

.performance-switch-note a {
  color: #a855f7;
  text-decoration: underline;
}

.special-period-badge {
  display: inline-block;
  padding: 8px 14px;
  margin: 8px 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  font-size: 0.95em;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.plan-select {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.plan-card {
  padding: 16px;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}

.plan-card[aria-selected="true"] {
  border-color: #a855f7;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.15));
}

.plan-card:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.plan-card .plan-name {
  margin: 0 0 4px;
  font-size: 1.05em;
  font-weight: 700;
}

.plan-card .plan-amount {
  margin: 4px 0;
  color: var(--white-led);
  font-size: 1.4em;
  font-weight: 900;
}

.plan-card .plan-percent {
  margin: 4px 0;
  color: #f59e0b;
  font-size: 0.85em;
  font-weight: 700;
}

.plan-card .plan-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.8em;
}

.form-status {
  color: var(--muted);
}

.modal-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.modal-form-heading {
  grid-column: 1 / -1;
  margin: 24px 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
  color: var(--white-led);
  font-size: 1.05em;
}

.modal-form label:has(textarea),
.modal-form button,
.modal-form .form-status,
.modal-form .form-note,
.form-consent {
  grid-column: 1 / -1;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  padding: 16px;
  border-left: 3px solid #f59e0b;
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.08);
  font-size: 0.92em;
  line-height: 1.5;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #f59e0b;
}

.form-consent a {
  color: #f59e0b;
  text-decoration: underline;
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.85em;
  text-align: center;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.admin-table th,
.admin-table td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
}

.equipment-detail-grid {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.equipment-block {
  display: grid;
  grid-template-columns: minmax(170px, 0.26fr) minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

.equipment-block:last-child {
  border-bottom: 0;
}

.equipment-block h3 {
  display: grid;
  align-content: start;
  margin: 0;
  padding: 22px;
  border-right: 1px solid var(--line);
  color: var(--gold);
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 900;
  line-height: 1.18;
}

.equipment-list {
  padding: 16px 22px;
}

.equipment-list p {
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.55;
}

.equipment-list p:last-child {
  border-bottom: 0;
}

.equipment-block.is-alert h3,
.equipment-block.is-alert p {
  color: #ff5f7b;
}

.equipment-block.is-alert {
  background: rgba(255, 68, 94, 0.08);
}

.coupon {
  padding-top: 70px;
  padding-bottom: 70px;
}

.coupon.band {
  background: linear-gradient(135deg, #1a0f00 0%, #2b1a05 100%);
  border-top: 2px dashed #f59e0b;
  border-bottom: 2px dashed #f59e0b;
}

.coupon-panel {
  max-width: 1040px;
  margin: 0;
  padding: 32px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.coupon-panel h2 {
  max-width: 900px;
}

.coupon-panel .eyebrow {
  color: #f59e0b;
}

.coupon-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.coupon-cards.coupon-cards-or {
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}

.coupon-or {
  color: #f59e0b;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
  text-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.coupon-card {
  position: relative;
  padding: 28px 24px;
  border: 2px dashed #f59e0b;
  border-radius: 14px;
  background: #fff8e7;
  color: #1a0f00;
  text-align: center;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25);
}

.coupon-card.highlight {
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.5);
  background: linear-gradient(135deg, #f59e0b, #ec4899);
  color: #fff;
}

.coupon-card-icon {
  margin-bottom: 8px;
  font-size: 38px;
  line-height: 1;
}

.coupon-card .coupon-card-tag {
  margin: 0 0 8px;
  color: #92400e;
  font-size: 0.85em;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.coupon-card.highlight .coupon-card-tag {
  color: rgba(255, 255, 255, 0.95);
}

.coupon-card-title {
  margin: 4px 0 10px;
  color: inherit;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 900;
}

.coupon-card .coupon-card-note {
  margin: 0;
  color: inherit;
  font-size: 0.9em;
  opacity: 0.85;
}

.coupon-footnote {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9em;
}

@media (max-width: 768px) {
  .coupon-cards {
    grid-template-columns: 1fr;
  }

  .coupon-cards.coupon-cards-or {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .coupon-or {
    font-size: 28px;
  }
}

.section-button {
  margin-top: 24px;
}

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

.model-card dl {
  display: grid;
  gap: 1px;
  margin: 24px 0 0;
}

.model-card div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.model-card dt {
  color: var(--gold);
  font-weight: 900;
}

.model-card dd {
  margin: 0;
  color: #eee8dc;
}

.artist-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.artist-strip span {
  padding: 10px 14px;
  background: #0b0e1e;
  border: 1px solid var(--line);
  color: #eee7dc;
  font-weight: 700;
}

.booking .section-head,
.booking-concept,
.booking-pricing,
.booking-info {
  max-width: 1040px;
  margin-inline: 0;
  text-align: left;
}

.booking-concept,
.booking-pricing,
.booking-info {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.booking .section-head {
  margin-inline: 0;
}

#booking,
#booking * {
  text-align: left;
}

.hero-catchcopy {
  max-width: 1040px;
  margin: 24px 0;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  line-height: 1.45;
  color: var(--accent);
  text-align: left;
}

.booking-table-wrap {
  max-width: 1040px;
  margin: 28px 0 0;
  overflow-x: auto;
}

.booking-rocky-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.booking-rocky-table th,
.booking-rocky-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.booking-rocky-table th {
  width: 210px;
  color: var(--white-led);
  font-weight: 900;
  background: rgba(85, 221, 255, 0.08);
}

.booking-rocky-table td {
  color: var(--muted);
}

.booking-rocky-table strong {
  color: var(--white-led);
}

.booking-rocky-table tr:hover {
  background: rgba(255, 255, 255, 0.045);
}

.booking-concept {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.booking-concept .check-list {
  margin-top: 0;
}

.booking-concept strong {
  color: var(--white-led);
}

.booking-strengths {
  max-width: 1040px;
  margin: 22px 0 0;
}

.booking-strengths.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.booking-strengths .feature-card {
  min-height: 210px;
}

.booking-pricing h3 {
  margin-bottom: 16px;
}

.booking-pricing > p:not(.eyebrow),
.lock-note,
.booking-note,
.booking-ops-note,
.booking-condition p,
.booking-drink-guarantee p {
  color: var(--muted);
}

.booking-pricing strong,
.lock-note strong,
.booking-note strong,
.booking-ops-note strong,
.booking-condition strong,
.booking-drink-guarantee strong {
  color: var(--white-led);
}

.booking-drink-guarantee {
  margin-top: 28px;
  padding: 24px;
  border-left: 4px solid #f59e0b;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.08);
}

.booking-drink-guarantee .eyebrow {
  margin-bottom: 8px;
  color: #f59e0b;
}

.booking-drink-guarantee h4 {
  margin: 0 0 10px;
  color: var(--white-led);
  font-size: 1.1em;
  line-height: 1.55;
}

.booking-drink-guarantee p {
  margin: 0;
  opacity: 0.95;
}

.booking-examples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 22px 0;
}

.example-card {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.example-card .plan {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 900;
}

.example-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.example-card th,
.example-card td {
  padding: 11px 10px;
  border: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

.example-card th {
  background: rgba(85, 221, 255, 0.1);
  color: var(--white-led);
}

.example-card small {
  color: var(--muted);
}

.booking-fee-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  overflow: hidden;
}

.booking-fee-table th,
.booking-fee-table td {
  padding: 14px 16px;
  border: 1px solid var(--line);
  text-align: left;
}

.booking-fee-table th {
  background: rgba(85, 221, 255, 0.1);
  color: var(--white-led);
  font-weight: 900;
}

.booking-fee-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.035);
}

.booking-shock-banner {
  max-width: 1040px;
  margin: 32px 0 0;
  padding: 32px;
  border-radius: 16px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: #fff;
  text-align: left;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.booking-shock-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.booking-shock-banner p:first-child {
  margin-bottom: 8px;
  font-size: 0.9em;
  opacity: 0.85;
}

.booking-shock-banner h3 {
  margin: 8px 0 12px;
  color: #fff;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.4;
}

.lock-note {
  margin: 0 0 12px;
  padding: 14px 16px;
  border-left: 4px solid var(--accent);
  background: rgba(255, 61, 189, 0.08);
}

.booking-note {
  margin: 16px 0 12px;
  font-size: 0.9em;
  opacity: 0.85;
}

.booking-ops-note {
  margin: 0 0 18px;
  font-size: 14px;
}

.booking-condition {
  margin: 18px 0;
  padding: 18px;
  border: 1px solid rgba(85, 221, 255, 0.32);
  background:
    linear-gradient(135deg, rgba(85, 221, 255, 0.12), rgba(255, 61, 189, 0.08)),
    rgba(255, 255, 255, 0.035);
}

.booking-condition p {
  margin: 0;
}

.booking-condition p + p {
  margin-top: 8px;
}

.booking-condition-note {
  margin-top: 12px;
  font-size: 0.95em;
}

.booking-info {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}

.booking-info p {
  margin: 0;
  color: var(--muted);
}

.booking-info .booking-alert {
  color: #ef4444;
}

.reserve-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 22px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.contact-form .button {
  width: fit-content;
  border-radius: 0;
  cursor: pointer;
}

.calendar-panel {
  padding: 26px;
}

.reserve-info {
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.reserve-info-heading {
  margin: 0 0 16px;
  color: var(--white-led);
  font-size: 1.1em;
}

.reserve-info-line {
  margin: 8px 0;
  color: var(--muted);
  font-size: 0.95em;
  line-height: 1.6;
}

.reserve-info-line strong {
  color: var(--white-led);
}

.reserve-info-line a,
.footer-tel a {
  color: var(--white-led);
  text-decoration: none;
}

.reserve-info-line a:hover,
.footer-tel a:hover {
  opacity: 0.75;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(34px, 1fr));
  gap: 8px;
  margin: 18px 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.timeline span {
  padding: 14px;
  border: 1px solid rgba(85, 221, 255, 0.3);
  background: rgba(85, 221, 255, 0.08);
  color: var(--white-led);
  font-weight: 900;
  text-align: center;
}

.coupon-timeline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 28px 0 0;
}

.lock-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(85, 221, 255, 0.3);
  background: rgba(85, 221, 255, 0.08);
  color: var(--white-led);
  font-weight: 900;
}

.lock-pill.highlight {
  border-color: rgba(255, 61, 189, 0.6);
  background: linear-gradient(135deg, rgba(122, 53, 255, 0.42), rgba(255, 61, 189, 0.38));
}

.arrow {
  color: var(--gold);
  font-weight: 900;
}

.phase-hidden {
  display: none;
}

.calendar span,
.calendar button {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  background: #0c0c11;
  color: #eee7dc;
  font-weight: 800;
}

.calendar span {
  color: var(--muted);
  font-size: 12px;
}

.calendar button:nth-child(13),
.calendar button:nth-child(20),
.calendar button:nth-child(27) {
  color: var(--coral);
}

.line-link {
  width: 100%;
  margin-top: 10px;
  background: #32c45f;
  border-color: #32c45f;
  color: #071107;
}

.gallery-grid article {
  padding: 0;
  overflow: hidden;
}

.gallery-grid img {
  aspect-ratio: 5 / 3;
}

.gallery-grid h3,
.gallery-grid p {
  padding-inline: 22px;
}

.gallery-grid h3 {
  padding-top: 20px;
}

.gallery-grid p {
  padding-bottom: 22px;
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: 22px;
}

.route {
  padding: 28px;
}

.route ol {
  padding-left: 20px;
  margin: 0;
}

.access iframe {
  width: 100%;
  min-height: 420px;
  border: 1px solid var(--line);
  filter: grayscale(0.18) contrast(0.95);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 920px;
  margin-inline: auto;
}

.faq-highlight {
  border-left: 3px solid #f59e0b;
  padding-left: 12px;
}

.faq-highlight summary {
  color: #f59e0b;
  font-weight: 700;
}

.faq-list details ul {
  margin: 12px 0;
  padding-left: 20px;
}

.faq-list details li {
  margin: 6px 0;
  line-height: 1.6;
}

details {
  border: 1px solid var(--line);
  background: #0f1016;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.site-footer {
  display: grid;
  padding: 48px clamp(18px, 5vw, 76px) 24px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 32px;
  width: 100%;
}

.footer-brand {
  display: block;
  margin-bottom: 4px;
  color: var(--white-led);
  font-size: 1.5em;
}

.footer-tagline {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.95em;
}

.footer-hours {
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
}

.footer-hours li {
  margin: 8px 0;
  font-size: 0.95em;
  line-height: 1.6;
}

.footer-address {
  margin: 12px 0;
  font-size: 0.95em;
  font-style: normal;
  line-height: 1.6;
}

.footer-tel {
  margin: 8px 0;
  color: var(--white-led);
  font-size: 1.05em;
  font-weight: 700;
}

.footer-links-heading {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.95em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a {
  color: var(--white-led);
  font-size: 0.95em;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}

.pr-line {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--gold);
  font-weight: 900;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--muted);
  font-size: 0.85em;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s, visibility 0s 0.3s;
  visibility: hidden;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s, transform 0.3s, visibility 0s 0s;
  visibility: visible;
}

.back-to-top:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
    min-height: 42px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    background: #111018;
    color: var(--ink);
    font-weight: 800;
  }

  .site-nav {
    display: none;
  }

  .header-ctas {
    display: flex;
    justify-self: end;
    order: 2;
  }

  .header-cta {
    display: none;
  }

  .header-cta-tel-num {
    display: none;
  }

  .header-cta-tel {
    padding: 8px 12px;
  }

  .site-nav.open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 2px;
    order: 4;
    padding-top: 8px;
  }

  .site-nav.open a {
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 0;
  }

  .dual-grid,
  .feature-grid,
  .price-grid,
  .ops-grid,
  .month-grid,
  .show-grid,
  .manifest-grid,
  .venue-layout,
  .booking-concept,
  .booking-examples,
  .model-grid,
  .reserve-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  body {
    line-height: 1.7;
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand strong {
    font-size: 14px;
  }

  .hero {
    min-height: 88vh;
    padding: 118px 18px 34px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 7, 10, 0.96), rgba(9, 9, 14, 0.6)),
      linear-gradient(0deg, var(--paper) 0%, rgba(16, 15, 19, 0) 42%);
  }

  section {
    padding: 62px 18px;
  }

  .hero-actions .button,
  .header-cta {
    width: 100%;
  }

  .hero-facts {
    gap: 8px;
  }

  .spec-list,
  .photo-strip,
  .calc-form,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .month-grid,
  .ops-grid,
  .booking-strengths.feature-grid,
  .show-grid,
  .show-row {
    grid-template-columns: 1fr;
  }

  .show-card {
    grid-template-columns: 1fr;
  }

  .equipment-block {
    grid-template-columns: 1fr;
  }

  .equipment-block h3 {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .schedule-arrows {
    justify-content: stretch;
  }

  .schedule-arrows strong {
    width: 100%;
    order: -1;
    text-align: center;
  }

  .schedule-arrows button {
    flex: 1;
  }

  .show-reserve {
    width: 100%;
  }

  .plan-select,
  .modal-form,
  .timeline {
    grid-template-columns: 1fr;
  }

  .modal-hours-options {
    flex-direction: column;
  }

  .modal-time-row {
    grid-template-columns: 1fr;
  }

  .modal-end-time {
    text-align: left;
  }

  .mode-toggle-options {
    grid-template-columns: 1fr;
  }

  .coupon-timeline {
    align-items: stretch;
    flex-direction: column;
  }

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

  .arrow {
    transform: rotate(90deg);
  }

  .estimate-box {
    justify-items: start;
  }

  .venue-main img {
    min-height: 260px;
  }

  .model-card div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-footer {
    display: grid;
  }
}

/* 価格変動ルールの説明ノート（2026-07-02 追加） */
.calendar-rule-note {
  margin-top: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(85, 221, 255, 0.35);
  border-radius: 10px;
  background: rgba(85, 221, 255, 0.08);
  font-size: 0.85rem;
  line-height: 1.7;
  color: #cfe9ff;
}
.calendar-rule-note strong { color: #55ddff; }

/* カレンダー価格のモバイル最適化（2026-07-02 追加）
   PC: フル表記（￥30,000〜）/ 680px以下: コンパクト表記（3万〜） */
.day em .p-mini { display: none; }
@media (max-width: 680px) {
  .day em .p-full { display: none; }
  .day em .p-mini { display: inline; font-size: 10px; letter-spacing: 0; }
  .day { min-height: 56px; padding: 8px 2px; }
}
