:root {
  color-scheme: dark;
  --bg: #080607;
  --panel: #120d10;
  --panel-2: #1a1115;
  --text: #fff8ea;
  --muted: #cfc0a7;
  --gold: #d8af5c;
  --gold-2: #ffe0a0;
  --pink: #e44b8d;
  --line: rgba(255, 224, 160, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 8%, rgba(228, 75, 141, 0.18), transparent 28rem),
    linear-gradient(180deg, #0a0608 0%, #080607 42%, #110b0d 100%);
  color: var(--text);
  line-height: 1.8;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 100% 4px;
  opacity: 0.35;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 6, 7, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--gold-2);
  text-decoration: none;
  white-space: nowrap;
}

.brand span {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 500;
}

.global-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.global-nav a {
  text-decoration: none;
}

.global-nav a:hover,
.global-nav a[aria-current="page"] {
  color: var(--gold-2);
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero picture,
.hero picture img,
.sub-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 6, 7, 0.92), rgba(8, 6, 7, 0.58) 44%, rgba(8, 6, 7, 0.16)),
    linear-gradient(0deg, rgba(8, 6, 7, 0.95), transparent 48%);
}

.hero-inner {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(80px, 14vh, 150px) 0 clamp(44px, 8vh, 78px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.22;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 11vw, 8.5rem);
  font-weight: 500;
  color: var(--gold-2);
  text-shadow: 0 0 20px rgba(228, 75, 141, 0.42);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3.25rem);
}

.lead {
  margin: 14px 0 0;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700;
}

.hero-copy {
  max-width: 640px;
  margin: 8px 0 0;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 224, 160, 0.55);
  background: rgba(255, 255, 255, 0.1);
}

.button-primary {
  border-color: transparent;
  background: linear-gradient(135deg, #f7d98b, #be8537 54%, #f5d98f);
  color: #1a1010;
  box-shadow: 0 0 28px rgba(216, 175, 92, 0.25);
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 116px) 0;
}

.split,
.access-layout,
.instagram-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.section-copy p:not(.eyebrow),
.section-heading + p,
.system-card p,
.price-panel p,
.sub-hero p {
  color: var(--muted);
}

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

.feature-grid div,
.price-panel,
.system-card,
.info-list,
.info-table,
.faq-list details {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.feature-grid div {
  min-height: 210px;
  padding: 24px;
}

.feature-grid span {
  color: var(--pink);
  font-family: Georgia, "Times New Roman", serif;
}

.feature-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--gold-2);
  font-size: 1.25rem;
}

.feature-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.price-band {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.price-panel,
.system-card {
  padding: clamp(24px, 5vw, 42px);
}

.price-label {
  margin: 0;
  color: var(--pink);
  font-weight: 700;
}

.price-main {
  margin: 10px 0 12px;
  color: var(--text);
  font-size: clamp(1.4rem, 4vw, 2.5rem);
  font-weight: 700;
}

.price-main strong {
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45em;
  font-weight: 500;
}

.price-main small {
  display: inline-block;
  margin-left: 10px;
  color: var(--muted);
  font-size: 0.45em;
  vertical-align: middle;
}

.note,
small {
  color: rgba(207, 192, 167, 0.82);
  font-size: 0.86rem;
}

.text-link {
  color: var(--gold-2);
  font-weight: 700;
  text-underline-offset: 5px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(210px, 1fr));
  gap: 14px;
}

figure {
  position: relative;
  min-height: 240px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 5px 11px;
  border: 1px solid rgba(255, 224, 160, 0.24);
  background: rgba(8, 6, 7, 0.72);
  color: var(--gold-2);
  font-size: 0.84rem;
  backdrop-filter: blur(10px);
}

.photo-large {
  grid-row: span 2;
}

.seat-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 14px;
  border: 1px solid var(--line);
  background: var(--line);
}

.seat-summary div {
  padding: 18px;
  background: rgba(18, 13, 16, 0.88);
}

.seat-summary strong,
.seat-summary span {
  display: block;
}

.seat-summary span {
  color: var(--muted);
}

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

.insta-mosaic img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
}

.info-list {
  padding: 28px;
}

dl {
  margin: 0;
}

.info-list div,
.info-table div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.info-list div:first-child,
.info-table div:first-child {
  padding-top: 0;
}

.info-list div:last-child,
.info-table div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

dt {
  color: var(--gold);
  font-weight: 700;
}

dd {
  margin: 0;
  color: var(--muted);
}

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

.footer-cta {
  padding: clamp(54px, 8vw, 86px) 18px 30px;
  text-align: center;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(228, 75, 141, 0.11), transparent 38%),
    #080607;
}

.footer-cta .cta-row {
  justify-content: center;
}

.footer-cta p {
  color: var(--gold);
  font-weight: 700;
}

.footer-cta small {
  display: block;
  margin-top: 34px;
}

.sub-hero {
  position: relative;
  min-height: 58svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px clamp(18px, 4vw, 56px) 56px;
}

.sub-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 6, 7, 0.92), rgba(8, 6, 7, 0.56)),
    linear-gradient(0deg, rgba(8, 6, 7, 0.95), transparent 54%);
}

.sub-hero > div {
  position: relative;
  width: min(980px, 100%);
}

.sub-hero h1 {
  font-size: clamp(2.8rem, 8vw, 6rem);
}

.sub-hero p:last-child {
  max-width: 720px;
}

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

.system-card.highlight {
  border-color: rgba(216, 175, 92, 0.42);
}

.system-card h2 {
  font-size: clamp(1.45rem, 3vw, 2.3rem);
}

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

.drink-list span {
  padding: 13px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-2);
  border-radius: 999px;
  font-weight: 700;
}

.food-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.food-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
}

.info-table {
  padding: clamp(24px, 5vw, 42px);
}

.faq-list {
  overflow: hidden;
}

.faq-list details {
  padding: 0;
  border-width: 0 0 1px;
  box-shadow: none;
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--gold-2);
  font-weight: 700;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .global-nav {
    justify-content: flex-start;
    font-size: 0.82rem;
  }

  .hero {
    min-height: calc(100svh - 116px);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 6, 7, 0.88), rgba(8, 6, 7, 0.52)),
      linear-gradient(0deg, rgba(8, 6, 7, 0.96), transparent 54%);
  }

  .split,
  .price-band,
  .access-layout,
  .instagram-section,
  .system-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .seat-summary,
  .food-strip {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .photo-large {
    grid-row: auto;
  }

  figure {
    min-height: 260px;
  }

  .info-list div,
  .info-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 560px) {
  .hero-inner {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: clamp(3.1rem, 18vw, 5.2rem);
  }

  .cta-row,
  .button {
    width: 100%;
  }

  .insta-mosaic {
    gap: 8px;
  }

  .feature-grid div {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
