/* ===== ROOT & RESET ===== */
:root {
  --bg: #050b14;
  --bg2: #070f1c;
  --panel: rgba(6, 15, 30, 0.78);
  --line: rgba(80, 180, 255, 0.28);
  --line2: rgba(80, 180, 255, 0.12);
  --blue: #0abaff;
  --blue2: #1a40f0;
  --blue3: #0e6cdd;
  --gold: #f5c842;
  --gold2: #e8a800;
  --text: #fff;
  --muted: #8ba8c4;
  --muted2: #c4d8ee;
  --max: 1200px;
  --radius: 4px;
  --ease: cubic-bezier(.22, .68, 0, 1.2);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Noto Sans JP', system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== LAYOUT ===== */
.container { width: min(1120px, calc(100% - 48px)); margin-inline: auto; }
.narrow { max-width: 580px; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border-bottom: 1px solid var(--line2);
  background: rgba(5, 10, 20, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color .3s, background .3s;
}
.site-header.is-scrolled {
  background: rgba(4, 8, 16, 0.96);
  border-bottom-color: var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 32px 0 28px;
  flex-shrink: 0;
  border-right: 1px solid var(--line2);
  align-self: stretch;
}
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  line-height: .9;
  letter-spacing: .18em;
  color: #fff;
}

.global-nav {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.global-nav a {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 0 20px;
  font-family: 'Bebas Neue';
  font-size: 16px;
  letter-spacing: .14em;
  color: var(--muted2);
  position: relative;
  transition: color .2s;
}
.global-nav a::after {
  content: '';
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 12px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform .25s var(--ease);
}
.global-nav a:hover { color: #fff; }
.global-nav a:hover::after { transform: scaleX(1); }

.header-cta {
  align-self: stretch;
  min-width: 140px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue2), var(--blue));
  font-family: 'Bebas Neue';
  font-size: 20px;
  letter-spacing: .16em;
  flex-shrink: 0;
  transition: opacity .2s;
}
.header-cta:hover { opacity: .85; }

.menu-button {
  display: none;
  margin-left: auto;
  margin-right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.menu-button span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .25s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 860px;
  padding-top: 70px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(105deg, rgba(5,11,20,.92) 0%, rgba(5,11,20,.55) 45%, rgba(5,11,20,.80) 100%),
    url('../images/hero_bg.jpg');
  background-size: cover;
  background-position: center;
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  opacity: .6;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 80%, rgba(10, 186, 255, .13), transparent),
    linear-gradient(180deg, transparent 60%, var(--bg) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr .85fr .95fr;
  gap: 36px;
  align-items: center;
  min-height: 780px;
}

.eyebrow {
  font-family: 'Bebas Neue';
  font-size: 13px;
  letter-spacing: .3em;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-eyebrow {
  font-family: 'Bebas Neue';
  font-size: 13px;
  letter-spacing: .3em;
  color: var(--blue);
  margin-bottom: 8px;
}

.hero-copy h1 {
  font-size: clamp(46px, 7.5vw, 88px);
  line-height: 1.06;
  font-weight: 900;
  text-shadow: 0 4px 40px rgba(0, 0, 0, .7);
  margin: .1em 0 .3em;
}
.hero-copy h1 span {
  font-family: 'Bebas Neue';
  font-size: 1.25em;
  letter-spacing: .06em;
  background: linear-gradient(135deg, #fff 40%, var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  font-size: 20px;
  color: var(--muted2);
  letter-spacing: .08em;
  margin-bottom: 20px;
}

.event-meta { margin-bottom: 28px; }
.event-meta .date {
  font-family: 'Bebas Neue';
  font-size: 52px;
  letter-spacing: .08em;
  line-height: 1;
  margin-bottom: 4px;
}
.event-meta .date span {
  font-size: 22px;
  margin-left: 14px;
  color: var(--muted2);
}
.event-meta > p {
  font-size: 16px;
  color: var(--muted2);
  margin-top: 4px;
}
.venue {
  font-size: 18px;
  color: var(--blue);
  font-weight: 700;
  margin-top: 2px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  margin-top: 4px;
  background: linear-gradient(135deg, var(--blue2) 0%, var(--blue) 100%);
  font-family: 'Bebas Neue';
  font-size: 26px;
  letter-spacing: .18em;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 0 40px rgba(10, 186, 255, .25);
}
.primary-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,.18));
  opacity: 0;
  transition: opacity .2s;
}
.primary-button:hover { transform: translateY(-2px); box-shadow: 0 8px 48px rgba(10,186,255,.38); }
.primary-button:hover::before { opacity: 1; }

.hero-logo {
  display: grid;
  place-items: center;
}
.hero-logo img {
  width: min(280px, 100%);
  filter: drop-shadow(0 0 48px rgba(10, 186, 255, .42)) drop-shadow(0 0 100px rgba(10, 186, 255, .18));
}

.hero-panel {
  background: linear-gradient(160deg, rgba(8, 22, 50, .72), rgba(4, 12, 28, .55));
  border: 1px solid var(--line);
  padding: 28px 26px;
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-panel h2 {
  font-family: 'Bebas Neue';
  font-size: 48px;
  letter-spacing: .1em;
  line-height: .95;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #fff 50%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-panel > p {
  font-size: 14px;
  color: var(--muted2);
  line-height: 1.9;
  margin-bottom: 0;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 20px 0 22px;
}
.countdown div {
  border: 1px solid var(--line);
  padding: 12px 6px;
  text-align: center;
  background: rgba(5, 15, 38, .65);
  border-radius: var(--radius);
}
.countdown strong {
  font-family: 'Bebas Neue';
  font-size: 36px;
  letter-spacing: .04em;
  color: var(--blue);
  display: block;
  line-height: 1;
}
.countdown span {
  display: block;
  font-size: 9px;
  letter-spacing: .2em;
  color: var(--muted);
  margin-top: 4px;
}

.movie-card {
  position: relative;
  display: block;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.movie-card:hover { border-color: var(--blue); }
.movie-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  opacity: .75;
  transition: opacity .3s, transform .3s;
}
.movie-card:hover img { opacity: .9; transform: scale(1.03); }
.movie-card .play {
  position: absolute;
  left: 50%;
  top: 42px;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  background: rgba(0, 0, 0, .32);
  padding-left: 4px;
  transition: background .2s;
}
.movie-card:hover .play { background: rgba(10, 186, 255, .35); }
.vimeo-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Bebas Neue';
  font-size: 12px;
  letter-spacing: .28em;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-cue::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollLine 1.6s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: .4; }
}

/* ===== SECTION COMMON ===== */
.section-title-row {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line2);
  padding-bottom: 16px;
}
.section-title-row h2 {
  font-family: 'Bebas Neue';
  font-size: 48px;
  letter-spacing: .14em;
  line-height: 1;
  margin: 0;
}
.section-title-row a {
  font-family: 'Bebas Neue';
  font-size: 14px;
  letter-spacing: .16em;
  color: var(--muted);
  margin-bottom: 6px;
  transition: color .2s;
}
.section-title-row a:hover { color: var(--blue); }

.center-title {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 40px;
}
.section-sub {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: .1em;
}

/* ===== NEWS ===== */
.news { padding: 80px 0; }
.news-list { display: grid; gap: 0; }
.news-list article {
  display: grid;
  grid-template-columns: 110px 72px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line2);
  transition: background .2s;
}
.news-list article:hover { background: rgba(10, 186, 255, .04); }
.news-list time { font-size: 13px; color: var(--muted); letter-spacing: .06em; }
.tag {
  font-family: 'Bebas Neue';
  font-size: 12px;
  letter-spacing: .14em;
  padding: 4px 10px;
  text-align: center;
  border-radius: 2px;
}
.tag--info { background: rgba(10, 186, 255, .2); color: var(--blue); border: 1px solid rgba(10,186,255,.3); }
.tag--artist { background: rgba(245, 200, 66, .18); color: var(--gold); border: 1px solid rgba(245,200,66,.3); }
.tag--ticket { background: rgba(100, 220, 120, .18); color: #6fdc82; border: 1px solid rgba(100,220,120,.3); }
.news-list p { margin: 0; font-size: 14px; color: var(--muted2); }

/* ===== ABOUT ===== */
.image-section {
  position: relative;
  min-height: 480px;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.image-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(10, 186, 255, .1), transparent),
    linear-gradient(180deg, transparent 50%, var(--bg) 100%);
  pointer-events: none;
}
.about-bg {
  background-image:
    linear-gradient(100deg, rgba(5,11,20,.95) 0%, rgba(5,11,20,.75) 48%, rgba(5,11,20,.2) 100%),
    url('../images/about_bg.jpg');
}

.about .container {
  position: relative;
  z-index: 2;
  margin-left: max(24px, calc((100% - 1120px) / 2));
  padding: 72px 0;
}
.about h2 {
  font-family: 'Bebas Neue';
  font-size: 52px;
  letter-spacing: .1em;
  line-height: 1.1;
  margin: 10px 0 20px;
}
.about p {
  font-size: 15px;
  line-height: 2;
  color: var(--muted2);
  margin-bottom: 8px;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 13px 28px;
  border: 1px solid rgba(255, 255, 255, .5);
  font-family: 'Bebas Neue';
  font-size: 16px;
  letter-spacing: .18em;
  color: var(--muted2);
  transition: border-color .2s, color .2s, background .2s;
}
.outline-button:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(10, 186, 255, .06);
}

/* ===== ARTIST ===== */
.artist { padding: 80px 0; }
.artist-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.artist-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line2);
  border-radius: var(--radius);
  background: #061018;
  aspect-ratio: 3 / 4;
  transition: border-color .3s;
}
.artist-grid article:hover { border-color: var(--line); }
.artist-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s, opacity .3s;
  opacity: .8;
}
.artist-grid article:hover img { transform: scale(1.07); opacity: 1; }
.artist-info {
  position: absolute;
  inset: auto 0 0;
  padding: 32px 14px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .88));
  text-align: center;
}
.artist-info b {
  font-family: 'Bebas Neue';
  font-size: 15px;
  letter-spacing: .16em;
  color: var(--muted2);
}

/* ===== TIMETABLE ===== */
.timetable { padding: 80px 0; }
.timeline-wrap { overflow-x: auto; padding-bottom: 16px; }
.timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  min-width: 600px;
  position: relative;
}
/* line center at top:10px = half of 20px dot */
.timeline::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--line) 8%, var(--line) 92%, transparent);
}
.timeline li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  position: relative;
  padding-top: 38px; /* 20px dot + 18px gap before content */
}
/* dot top:0 → center at 10px, aligns with ::before top:10px */
.tl-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--muted);
  z-index: 1;
}
.timeline .active .tl-dot {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 14px rgba(10, 186, 255, .85);
}
.timeline .highlight .tl-dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 14px rgba(245, 200, 66, .85);
  width: 26px;
  height: 26px;
  top: -3px;
  left: calc(50% - 3px);
}
.timeline time {
  font-family: 'Bebas Neue';
  font-size: 30px;
  letter-spacing: .06em;
  color: var(--muted2);
  line-height: 1;
}
.timeline span {
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--muted);
  line-height: 1.4;
}
.timeline .active time,
.timeline .active span { color: var(--blue); }
.timeline .highlight time { color: var(--gold); font-size: 32px; }
.timeline .highlight span { color: var(--gold2); }

/* ===== CONTENTS ===== */
.contents-section {
  padding: 80px 0;
}
.tickets-bg {
  background-image:
    linear-gradient(135deg, rgba(5,11,20,.88) 0%, rgba(5,11,20,.65) 100%),
    url('../images/tickets_bg.jpg');
}
.contents-section .container {
  position: relative;
  z-index: 2;
}
.contents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.content-card {
  background: rgba(6, 16, 36, .72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color .3s, transform .3s, background .3s;
}
.content-card:hover {
  border-color: var(--blue);
  background: rgba(10, 186, 255, .06);
  transform: translateY(-4px);
}
.content-card-icon {
  width: 48px;
  height: 48px;
  color: var(--blue);
  margin-bottom: 18px;
}
.content-card-icon svg { width: 100%; height: 100%; }
.content-card h3 {
  font-family: 'Bebas Neue';
  font-size: 24px;
  letter-spacing: .16em;
  margin-bottom: 12px;
  color: #fff;
}
.content-card p {
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.9;
}
.content-card--soon {
  border-color: var(--line2);
  opacity: .55;
}
.content-card--soon .content-card-icon { color: var(--muted); }
.content-card--soon h3 { color: var(--muted); letter-spacing: .3em; }
.content-card--soon p { color: var(--muted); }
.content-card--soon:hover {
  opacity: .75;
  border-color: var(--line);
  background: rgba(6, 16, 36, .72);
  transform: none;
}

/* ===== SPONSOR ===== */
.sponsor-section {
  padding: 80px 0;
  border-top: 1px solid var(--line2);
}
.sponsor-coming {
  text-align: center;
  padding: 72px 0;
  border: 1px solid var(--line2);
  border-radius: var(--radius);
}
.sponsor-coming-label {
  font-family: 'Bebas Neue';
  font-size: 52px;
  letter-spacing: .28em;
  color: var(--muted);
  margin-bottom: 12px;
}
.sponsor-coming p:last-child {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: .08em;
}

/* ===== ACCESS ===== */
.access { padding: 80px 0; }
.access-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
}
.map-wrap {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 320px;
  background: #061827;
}
.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: invert(90%) hue-rotate(190deg) saturate(0.8) brightness(0.85);
}
.access-cards { display: grid; gap: 14px; }
.access-cards article {
  border: 1px solid var(--line2);
  background: rgba(6, 16, 36, .6);
  padding: 20px 22px;
  border-radius: var(--radius);
  transition: border-color .2s;
}
.access-cards article:hover { border-color: var(--line); }
.access-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.access-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  flex-shrink: 0;
}
.access-cards b { font-size: 14px; color: var(--blue); }
.access-cards p { font-size: 13px; color: var(--muted2); line-height: 1.8; }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--line2);
  background: linear-gradient(180deg, #060f1e, var(--bg));
  padding: 48px 0 32px;
}
.footer-inner { display: flex; flex-direction: column; gap: 28px; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img { width: 44px; opacity: .9; }
.footer-brand span {
  font-family: 'Bebas Neue';
  font-size: 18px;
  letter-spacing: .16em;
  color: var(--muted2);
}
.footer-sns { text-align: right; }
.footer-sns > p {
  font-family: 'Bebas Neue';
  font-size: 11px;
  letter-spacing: .28em;
  color: var(--muted);
  margin-bottom: 10px;
}
.sns-links {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.sns-links a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: 'Bebas Neue';
  font-size: 13px;
  color: var(--muted2);
  transition: border-color .2s, color .2s;
}
.sns-links a:hover { border-color: var(--blue); color: var(--blue); }

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-family: 'Bebas Neue';
  font-size: 15px;
  letter-spacing: .14em;
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
  padding: 20px 0;
}
.footer-nav a { color: var(--muted); transition: color .2s; }
.footer-nav a:hover { color: var(--blue); }

.contact-info {
  border-top: 1px solid var(--line2);
  padding-top: 28px;
}
.contact-heading {
  font-family: 'Bebas Neue';
  font-size: 13px;
  letter-spacing: .3em;
  color: var(--blue);
  margin-bottom: 20px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.contact-org {
  font-size: 15px;
  font-weight: 700;
  color: var(--muted2);
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted2);
  transition: color .2s;
}
.contact-link:hover { color: var(--blue); }
.contact-label {
  font-family: 'Bebas Neue';
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--muted);
  background: var(--line2);
  border: 1px solid var(--line);
  padding: 2px 8px;
  min-width: 44px;
  text-align: center;
  flex-shrink: 0;
}
.contact-members {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-members > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px;
  align-items: baseline;
  font-size: 13px;
}
.contact-members dt {
  color: var(--muted);
  letter-spacing: .04em;
  font-weight: 500;
}
.contact-members dd {
  color: var(--muted2);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-address {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .08em;
}
.footer-bottom small { font-size: 12px; color: var(--muted); }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .15s; }
.delay-2 { transition-delay: .3s; }

/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 980px) {
  .global-nav, .header-cta { display: none; }
  .menu-button { display: flex; }
  .site-header { padding-right: 0; }

  .global-nav.is-open {
    display: flex;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    height: auto;
    flex-direction: column;
    background: rgba(5, 10, 20, .97);
    border-bottom: 1px solid var(--line);
    z-index: 99;
  }
  .global-nav.is-open a {
    width: 100%;
    height: auto;
    padding: 17px 28px;
    border-bottom: 1px solid var(--line2);
  }
  .global-nav.is-open a::after { display: none; }

  .hero { min-height: auto; }
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 60px 0 100px;
    gap: 40px;
  }
  .hero-logo { order: -1; justify-items: center; }
  .hero-logo img { max-width: 240px; }
  .hero-panel { max-width: 540px; }

  .artist-grid { grid-template-columns: repeat(3, 1fr); }
  .contents-grid { grid-template-columns: repeat(2, 1fr); }

  .timeline {
    grid-template-columns: 1fr;
    min-width: 0;
    padding-left: 44px;
  }
  .timeline::before {
    top: 0;
    bottom: 0;
    left: 10px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(to bottom, transparent, var(--line) 8%, var(--line) 92%, transparent);
  }
  .timeline li {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding-top: 0;
    padding-bottom: 24px;
  }
  .timeline li:last-child { padding-bottom: 0; }
  .tl-dot {
    top: 3px;
    left: -34px; /* center at 10px from timeline left: 44-34=10 ✓ */
    transform: none;
  }
  .timeline .highlight .tl-dot {
    left: -37px;
    top: 0;
  }

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

/* ===== RESPONSIVE: MOBILE ===== */
@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1120px); }

  .brand span { font-size: 17px; }
  .brand img { width: 38px; height: 38px; }

  .hero-copy h1 { font-size: 46px; }
  .event-meta .date { font-size: 40px; }
  .lead { font-size: 17px; }

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

  .section-title-row h2 { font-size: 38px; }

  .news-list article {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 0;
  }

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

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

  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-sns { text-align: left; }
  .sns-links { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
}
