/* ==========================================================================
   DREAM FESTIVAL 2027 — Official Site
   ========================================================================== */

:root {
  --night: #0A0A12;
  --night-2: #0E0E1C;
  --navy: #131328;
  --violet: #1B1533;
  --gold: #D4A24C;
  --gold-bright: #F0CE8A;
  --gold-soft: #F5DCA8;
  --gold-dim: #8A6A34;
  --gold-line: rgba(212, 162, 76, 0.28);
  --gold-line-soft: rgba(212, 162, 76, 0.14);
  --ink: #F2EFE9;
  --ink-dim: #A9A5B8;
  --ink-faint: #6E6A80;
  --font-display: "Cinzel", serif;
  --font-serif: "Noto Serif JP", serif;
  --font-body: "Noto Sans JP", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--night);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: 0.06em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

::selection { background: rgba(212, 162, 76, 0.35); color: #fff; }

/* ------------------------------------------------------------------ layout */

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(96px, 14vh, 160px) 0;
}

/* ------------------------------------------------------- section headings */

.sec-head { margin-bottom: clamp(48px, 7vh, 80px); }

.sec-label {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}

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

.sec-label span {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.42em;
  color: var(--gold);
}

.sec-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 5.4vw, 58px);
  letter-spacing: 0.14em;
  line-height: 1.25;
  color: var(--ink);
}

.sec-title .shimmer-text { display: inline-block; }

.sec-sub {
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
}

/* gold shimmer sweeping across display type */
.shimmer-text {
  background: linear-gradient(
    100deg,
    var(--gold-dim) 0%,
    var(--gold) 30%,
    #FBEBC4 48%,
    var(--gold-bright) 52%,
    var(--gold) 70%,
    var(--gold-dim) 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer-sweep 6.5s var(--ease-out) infinite;
}

@keyframes shimmer-sweep {
  0%   { background-position: 118% 0; }
  55%  { background-position: -18% 0; }
  100% { background-position: -18% 0; }
}

/* ------------------------------------------------------------------- nav */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.5s ease, backdrop-filter 0.5s ease, border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(10, 10, 18, 0.9);
  border-bottom-color: rgba(212, 162, 76, 0.12);
}

.nav-inner {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-brand img { height: 26px; width: auto; }

.nav-brand span {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--ink);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  position: relative;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--ink-dim);
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}

.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-link.is-current { color: var(--gold-bright); }
.nav-link.is-current::after { transform: scaleX(1); }

.nav-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.nav-ig svg { width: 15px; height: 15px; fill: var(--gold); transition: fill 0.3s ease; }

.nav-ig:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.nav-ig:hover svg { fill: var(--night); }

/* hamburger */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 110;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-toggle i {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 1.5px;
  background: var(--gold-bright);
  transition: transform 0.4s var(--ease-out), opacity 0.3s, top 0.4s var(--ease-out);
}
.nav-toggle i:nth-child(1) { top: 17px; }
.nav-toggle i:nth-child(2) { top: 26px; }

.nav-toggle[aria-expanded="true"] i:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] i:nth-child(2) { top: 21px; transform: rotate(-45deg); }

/* mobile menu overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: rgba(8, 8, 15, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.menu-overlay.is-open { opacity: 1; visibility: visible; }

.menu-overlay .nav-link {
  font-size: 17px;
  letter-spacing: 0.34em;
  padding: 16px 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s var(--ease-out), color 0.3s ease;
}

.menu-overlay.is-open .nav-link {
  opacity: 1;
  transform: translateY(0);
}
.menu-overlay.is-open .nav-link:nth-child(1) { transition-delay: 0.08s; }
.menu-overlay.is-open .nav-link:nth-child(2) { transition-delay: 0.16s; }
.menu-overlay.is-open .nav-link:nth-child(3) { transition-delay: 0.24s; }
.menu-overlay.is-open .nav-link:nth-child(4) { transition-delay: 0.32s; }

.menu-overlay .menu-ig {
  margin-top: 28px;
  opacity: 0;
  transition: opacity 0.5s ease 0.4s;
}
.menu-overlay.is-open .menu-ig { opacity: 1; }

/* ------------------------------------------------------------------ hero */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-sky {
  position: absolute;
  inset: -12% 0;
  background:
    radial-gradient(1100px 700px at 50% 118%, rgba(212, 162, 76, 0.14), transparent 62%),
    radial-gradient(900px 600px at 82% -8%, rgba(43, 34, 84, 0.5), transparent 60%),
    radial-gradient(800px 560px at 12% 8%, rgba(27, 21, 51, 0.6), transparent 60%),
    linear-gradient(180deg, #08080F 0%, #0C0C1A 55%, #0A0A12 100%);
}

.hero-nebula {
  position: absolute;
  inset: -8% 0;
  background-position: center;
  background-size: cover;
  opacity: 0.17;
  mix-blend-mode: screen;
  filter: saturate(0.72) brightness(0.82);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 90% at 50% 50%, transparent 55%, rgba(6, 6, 12, 0.7) 100%),
    linear-gradient(180deg, rgba(10,10,18,0.35) 0%, transparent 22%, transparent 72%, var(--night) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--nav-h) + 20px) 24px 118px;
  width: 100%;
}

.hero-logo {
  position: relative;
  width: min(360px, 62vw);
  margin: 0 auto;
}

.hero-logo img {
  width: 100%;
  filter: drop-shadow(0 0 44px rgba(212, 162, 76, 0.22));
}

/* specular sweep across the logo, masked by the logo itself */
.hero-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 244, 214, 0.0) 40%,
    rgba(255, 246, 220, 0.55) 50%,
    rgba(255, 244, 214, 0.0) 60%,
    transparent 70%
  );
  background-size: 260% 100%;
  -webkit-mask-image: var(--logo-mask);
  mask-image: var(--logo-mask);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  animation: logo-sweep 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes logo-sweep {
  0%   { background-position: 130% 0; }
  42%  { background-position: -30% 0; }
  100% { background-position: -30% 0; }
}

.hero-dates {
  margin-top: clamp(26px, 4.2vh, 44px);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 4.6vw, 44px);
  letter-spacing: 0.14em;
  line-height: 1.3;
}

.hero-dates .dow { font-size: 0.48em; letter-spacing: 0.22em; vertical-align: 0.14em; margin: 0 0.15em; }
.hero-dates .dash { margin: 0 0.28em; color: var(--gold); }

.hero-meta {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-family: var(--font-display);
  font-size: clamp(12px, 1.8vw, 15px);
  letter-spacing: 0.3em;
  color: var(--ink-dim);
}

.hero-meta i {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex: none;
}

/* countdown */
.countdown {
  margin: clamp(30px, 4.8vh, 50px) auto 0;
  display: inline-flex;
  align-items: stretch;
  gap: clamp(16px, 3.4vw, 36px);
}

.cd-cell { text-align: center; min-width: clamp(52px, 9vw, 84px); }

.cd-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.1;
  color: var(--gold-soft);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 30px rgba(212, 162, 76, 0.35);
}

.cd-label {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.34em;
  color: var(--ink-faint);
}

.cd-sep {
  align-self: center;
  padding-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(20px, 3.6vw, 32px);
  color: var(--gold-dim);
}

.cd-caption {
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--ink-faint);
}

/* scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-cue span {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.5em;
  color: var(--ink-faint);
}

.scroll-cue i {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, var(--gold), transparent);
  overflow: hidden;
  position: relative;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--gold-bright), transparent);
  animation: cue-drop 2.4s ease-in-out infinite;
}

@keyframes cue-drop {
  0% { transform: translateY(-100%); }
  55%, 100% { transform: translateY(100%); }
}

/* --------------------------------------------------------------- concept */

.concept { overflow: hidden; }

.concept-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 620px at 78% 30%, rgba(27, 21, 51, 0.55), transparent 65%),
    radial-gradient(700px 500px at 15% 75%, rgba(212, 162, 76, 0.05), transparent 60%);
  pointer-events: none;
}

.concept-statement {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(19px, 2.9vw, 28px);
  line-height: 2.5;
  letter-spacing: 0.12em;
  max-width: 34em;
}

.concept-statement .gold { color: var(--gold-bright); }

.concept-passage {
  margin-top: clamp(48px, 7vh, 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.concept-passage p {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 15px;
  line-height: 2.7;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
}

.concept-passage p strong {
  font-weight: 500;
  color: var(--ink);
}

.concept-sign {
  margin-top: clamp(48px, 7vh, 72px);
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.concept-sign span {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--gold);
}

/* ---------------------------------------------------------------- lineup */

.lineup-stage {
  position: relative;
  border: 1px solid var(--gold-line-soft);
  background:
    radial-gradient(680px 420px at 50% 115%, rgba(212, 162, 76, 0.1), transparent 65%),
    rgba(255, 255, 255, 0.012);
  padding: clamp(56px, 9vh, 104px) clamp(24px, 5vw, 72px);
  text-align: center;
  overflow: hidden;
}

.lineup-stage::before,
.lineup-stage::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  pointer-events: none;
}
.lineup-stage::before {
  top: -1px; left: -1px;
  border-top: 1px solid var(--gold-line);
  border-left: 1px solid var(--gold-line);
}
.lineup-stage::after {
  bottom: -1px; right: -1px;
  border-bottom: 1px solid var(--gold-line);
  border-right: 1px solid var(--gold-line);
}

.slot-row {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2.4vw, 28px);
  margin-bottom: clamp(12px, 2.4vw, 28px);
}

.slot {
  position: relative;
  height: clamp(52px, 8vw, 76px);
  flex: 1;
  max-width: 300px;
  border: 1px solid rgba(212, 162, 76, 0.12);
  background: rgba(212, 162, 76, 0.028);
  overflow: hidden;
}

.slot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 130% at 50% 50%, rgba(212, 162, 76, 0.16), transparent 70%);
  opacity: 0;
  animation: slot-breathe 5.2s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}

@keyframes slot-breathe {
  0%, 100% { opacity: 0.12; transform: scale(0.92); }
  50% { opacity: 0.85; transform: scale(1.04); }
}

.lineup-coming {
  margin: clamp(40px, 6vh, 64px) 0 0;
}

.coming-soon-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 4.6vw, 46px);
  letter-spacing: 0.3em;
  text-indent: 0.3em;
}

.coming-note {
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--ink-dim);
}

/* --------------------------------------------------------------- tickets */

.tickets-card {
  position: relative;
  border: 1px solid var(--gold-line-soft);
  padding: clamp(56px, 8vh, 88px) clamp(24px, 5vw, 72px);
  text-align: center;
  background:
    linear-gradient(120deg, rgba(212, 162, 76, 0.05), transparent 35%, transparent 65%, rgba(212, 162, 76, 0.05)),
    rgba(255, 255, 255, 0.012);
  overflow: hidden;
}

.tickets-card .orn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.tickets-card .orn::before,
.tickets-card .orn::after {
  content: "";
  width: clamp(50px, 10vw, 110px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line));
}
.tickets-card .orn::after { transform: scaleX(-1); }

.tickets-card .orn svg { width: 14px; height: 14px; fill: var(--gold); opacity: 0.9; }

.tickets-note {
  margin-top: 20px;
  font-size: 13.5px;
  line-height: 2.4;
  letter-spacing: 0.14em;
  color: var(--ink-dim);
}

/* ------------------------------------------------------------------ news */

.news-list {
  display: grid;
  gap: 1px;
  border-top: 1px solid var(--gold-line-soft);
}

.news-item {
  display: grid;
  grid-template-columns: 150px 92px 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  padding: 30px 8px;
  border-bottom: 1px solid var(--gold-line-soft);
  transition: background 0.35s ease, padding 0.35s ease;
}

.news-item:hover { background: rgba(212, 162, 76, 0.04); }

.news-date {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--ink-dim);
  font-variant-numeric: tabular-nums;
}

.news-cat {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.26em;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  text-align: center;
  padding: 5px 0 4px;
}

.news-title {
  font-size: 14.5px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.9;
}

.news-arrow {
  color: var(--gold-dim);
  font-family: var(--font-display);
  transition: transform 0.35s var(--ease-out), color 0.35s ease;
}

.news-item:hover .news-arrow { transform: translateX(6px); color: var(--gold-bright); }

/* full news page: expanded cards */
.news-article {
  border: 1px solid var(--gold-line-soft);
  background: rgba(255, 255, 255, 0.012);
  padding: clamp(32px, 5vw, 56px);
  margin-bottom: 28px;
  transition: border-color 0.4s ease;
}

.news-article:hover { border-color: var(--gold-line); }

.news-article .meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.news-article .news-cat { padding: 4px 16px; }

.news-article h2 {
  font-size: clamp(17px, 2.6vw, 21px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.9;
  margin-bottom: 16px;
}

.news-article .body {
  font-size: 14px;
  color: var(--ink-dim);
  letter-spacing: 0.08em;
}

/* ------------------------------------------------------------ road to dream */

.road-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-line-soft);
}

.road-preview .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.16);
  opacity: 0.5;
}

.road-preview .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 10, 18, 0.92) 25%, rgba(10, 10, 18, 0.45) 70%, rgba(10, 10, 18, 0.7));
}

.road-preview-inner {
  position: relative;
  z-index: 2;
  padding: clamp(56px, 9vh, 110px) clamp(28px, 5.5vw, 80px);
  max-width: 640px;
}

.road-preview-inner .catch {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(20px, 3.2vw, 30px);
  line-height: 2.1;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
}

.road-preview-inner .desc {
  font-size: 13.5px;
  line-height: 2.4;
  color: var(--ink-dim);
  letter-spacing: 0.1em;
  margin-bottom: 36px;
}

/* road page */
.road-hero {
  position: relative;
  padding: calc(var(--nav-h) + clamp(80px, 13vh, 150px)) 0 clamp(80px, 12vh, 140px);
  overflow: hidden;
}

.road-hero .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  opacity: 0.42;
  transform: scale(1.14);
}

.road-hero .scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,18,0.86) 0%, rgba(10,10,18,0.55) 45%, var(--night) 100%);
}

.road-hero .container { position: relative; z-index: 2; }

.road-lead {
  margin-top: clamp(40px, 6vh, 64px);
  max-width: 620px;
}

.road-lead p {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 2.8;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
}

.road-lead p + p { margin-top: 2em; }

.road-lead .catch {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(19px, 3vw, 26px);
  line-height: 2.2;
  color: var(--ink);
}

/* event cards */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.event-card {
  border: 1px solid var(--gold-line-soft);
  background: rgba(255, 255, 255, 0.014);
  padding: 36px 32px;
  transition: border-color 0.4s ease, transform 0.4s var(--ease-out), background 0.4s ease;
}

.event-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-4px);
  background: rgba(212, 162, 76, 0.03);
}

.event-card .ev-flyer {
  margin: -36px -32px 26px;
  overflow: hidden;
  border-bottom: 1px solid var(--gold-line-soft);
}

.event-card .ev-flyer img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.event-card:hover .ev-flyer img { transform: scale(1.02); }

.event-card .ev-note {
  font-size: 12px;
  line-height: 2.1;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  margin-bottom: 24px;
}

.event-card .ev-vol {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 14px;
}

.event-card h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin-bottom: 18px;
}

.event-card dl { display: grid; gap: 8px; margin-bottom: 22px; }

.event-card dl div { display: flex; gap: 16px; font-size: 13px; }

.event-card dt {
  flex: none;
  width: 64px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--ink-faint);
  padding-top: 3px;
}

.event-card dd { color: var(--ink-dim); letter-spacing: 0.06em; line-height: 1.9; }

/* empty state (第一弾、近日発表) */
.events-empty {
  position: relative;
  border: 1px solid var(--gold-line-soft);
  padding: clamp(72px, 12vh, 130px) 24px;
  text-align: center;
  background:
    radial-gradient(560px 320px at 50% 120%, rgba(212, 162, 76, 0.09), transparent 65%),
    rgba(255, 255, 255, 0.01);
  overflow: hidden;
}

.events-empty .glow-orb {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 162, 76, 0.1), transparent 65%);
  animation: orb-drift 11s ease-in-out infinite alternate;
  pointer-events: none;
}
.events-empty .glow-orb:nth-child(1) { top: -140px; left: 6%; }
.events-empty .glow-orb:nth-child(2) { bottom: -160px; right: 8%; animation-delay: -5s; }

@keyframes orb-drift {
  from { transform: translate(0, 0) scale(0.95); opacity: 0.6; }
  to   { transform: translate(40px, 24px) scale(1.1); opacity: 1; }
}

.events-empty .jp {
  position: relative;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(20px, 3.4vw, 30px);
  letter-spacing: 0.3em;
  text-indent: 0.3em;
}

.events-empty .en {
  position: relative;
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.44em;
  color: var(--gold);
}

/* --------------------------------------------------------------- follow */

.follow {
  position: relative;
  overflow: hidden;
}

.follow-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 500px at 50% 110%, rgba(212, 162, 76, 0.07), transparent 65%);
  pointer-events: none;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}

.ig-card {
  border: 1px solid var(--gold-line-soft);
  background: rgba(255, 255, 255, 0.014);
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.4s var(--ease-out);
}

.ig-card:hover { border-color: var(--gold-line); transform: translateY(-4px); }

.ig-card .thumb {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
}

.ig-card .cap {
  padding: 18px 20px 20px;
}

.ig-card .cap p {
  font-size: 12.5px;
  line-height: 2;
  color: var(--ink-dim);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ig-card .cap time {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
}

.follow-cta {
  text-align: center;
  padding: clamp(24px, 4vh, 40px) 0 0;
}

.follow-cta .jp-note {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2.6vw, 22px);
  letter-spacing: 0.2em;
  margin-bottom: 34px;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 46px;
  border: 1px solid var(--gold);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--gold-bright);
  position: relative;
  overflow: hidden;
  transition: color 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.btn-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--gold-dim), var(--gold), var(--gold-bright));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out);
  z-index: 0;
}

.btn-gold:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-gold:hover { color: var(--night); box-shadow: 0 8px 40px rgba(212, 162, 76, 0.3); }

.btn-gold span, .btn-gold svg { position: relative; z-index: 1; }
.btn-gold svg { width: 16px; height: 16px; fill: currentColor; }

.follow-handle {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--ink-faint);
}

/* ---------------------------------------------------------------- access */

.access {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.access .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 62%;
  transform: scale(1.18);
}

.access .scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--night) 0%, rgba(10, 10, 18, 0.42) 34%, rgba(10, 10, 18, 0.5) 70%, var(--night) 100%);
}

.access-inner {
  position: relative;
  z-index: 2;
  padding: clamp(120px, 20vh, 220px) 0;
  text-align: center;
}

.access-place {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 6.4vw, 68px);
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  line-height: 1.3;
}

.access-note {
  margin-top: 26px;
  font-size: 13.5px;
  line-height: 2.5;
  letter-spacing: 0.16em;
  color: rgba(242, 239, 233, 0.8);
}

/* ---------------------------------------------------------------- footer */

.footer {
  position: relative;
  border-top: 1px solid var(--gold-line-soft);
  padding: clamp(64px, 9vh, 96px) 0 40px;
  background: linear-gradient(180deg, var(--night) 0%, #07070E 100%);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.footer-mark { width: 84px; opacity: 0.92; }

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

.footer-nav a {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--ink-dim);
  transition: color 0.3s ease;
}

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

.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--ink-dim);
  transition: color 0.3s ease;
}
.footer-ig svg { width: 14px; height: 14px; fill: currentColor; }
.footer-ig:hover { color: var(--gold-bright); }

.footer-credit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
}

.footer-credit .fc-label {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.44em;
  text-indent: 0.44em;
  color: var(--gold-dim);
}

.footer-credit .fc-name {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  color: var(--ink-dim);
}

.footer-credit .fc-alias {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  color: var(--ink-faint);
}

.footer-copy {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.26em;
  color: var(--ink-faint);
}

/* ------------------------------------------------------------- page hero */

.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + clamp(72px, 12vh, 130px)) 0 clamp(56px, 9vh, 100px);
}

.breadcrumb {
  display: flex;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.26em;
  color: var(--ink-faint);
  margin-bottom: 28px;
}

.breadcrumb a { color: var(--ink-faint); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }

/* ------------------------------------------------------------------- 404 */

.nf {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.nf-inner { position: relative; z-index: 2; padding: 24px; }

.nf-code {
  font-family: var(--font-display);
  font-size: clamp(72px, 16vw, 150px);
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  line-height: 1;
}

.nf-msg {
  margin-top: 28px;
  font-family: var(--font-serif);
  font-size: clamp(15px, 2.4vw, 18px);
  letter-spacing: 0.18em;
  line-height: 2.4;
  color: var(--ink-dim);
}

.nf .btn-gold { margin-top: 48px; }

/* ------------------------------------------------------------ reveal etc */

[data-reveal] { opacity: 0; }

html.no-js [data-reveal],
html.reduced-motion [data-reveal] { opacity: 1; }

/* ------------------------------------------------------------ responsive */

@media (max-width: 860px) {
  body { font-size: 14px; }

  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .concept-passage { grid-template-columns: 1fr; }

  .news-item {
    grid-template-columns: auto auto 1fr;
    grid-template-rows: auto auto;
    row-gap: 10px;
    padding: 24px 4px;
  }
  .news-title { grid-column: 1 / -1; }
  .news-arrow { display: none; }
  .news-cat { padding: 4px 14px; }

  .slot-row .slot:nth-child(3) { display: none; }

  .hero-meta { flex-direction: row; flex-wrap: wrap; gap: 12px 18px; }
}

@media (max-width: 480px) {
  .cd-cell { min-width: 56px; }
  .countdown { gap: 10px; }
  .cd-sep { display: none; }
  .footer-nav { gap: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .shimmer-text, .hero-logo::after, .slot::after,
  .scroll-cue i::after, .events-empty .glow-orb { animation: none !important; }
  .shimmer-text {
    background-position: 50% 0;
    animation: none;
  }
  * { transition-duration: 0.01ms !important; }
}
