/* ===========================================
   IWGP 2026 - Matsuri Refresh
   =========================================== */

@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@500;700;800&family=Noto+Sans+JP:wght@300;400;500;700;900&family=Reggae+One&family=Bodoni+Moda:ital,wght@0,500;0,700;0,800;1,500;1,700&family=DM+Serif+Display&display=swap");

:root {
  --ink-950: #0e0a07;
  --ink-900: #14100c;
  --ink-800: #1f1814;
  --ink-700: #2b221c;
  --ink-600: #3a2e25;
  --crimson: #c8102e;
  --crimson-deep: #8b0e1f;
  --crimson-bright: #e63946;
  --vermillion: #e2492a;
  --gold: #d4a036;
  --gold-bright: #efc75e;
  --gold-soft: #c9a24b;
  --paper: #f7efdd;
  --paper-warm: #fae6c3;
  --paper-deep: #ecdcb9;
  --paper-white: #fbf6e8;
  --indigo: #1b4965;
  --leaf: #4e6f3a;
  --mute: #8a7b66;

  /* note: --font-mincho retained as a variable name for compat; now resolves to a heavy gothic */
  --font-mincho: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-impact: "Reggae One", "Noto Sans JP", sans-serif;
  --font-en: "Bodoni Moda", serif;
  --font-en-display: "DM Serif Display", serif;
}

/* ============ root reset (scoped) ============ */
.iwgp {
  box-sizing: border-box;
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--paper);
  position: relative;
  overflow: hidden;
  line-height: 1.5;
  min-width: 320px;
}
.iwgp *,
.iwgp *::before,
.iwgp *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.iwgp img {
  display: block;
  max-width: 100%;
}
.iwgp button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}
.iwgp a {
  color: inherit;
  text-decoration: none;
}
.iwgp h1,
.iwgp h2,
.iwgp h3,
.iwgp h4 {
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ============ utility ============ */
.iwgp .container-d {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 56px;
}
.iwgp .container-m {
  padding: 0 20px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--crimson);
}
.eyebrow::after {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.eyebrow-jp {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--ink-600);
  font-weight: 500;
}

.section-title {
  font-family: var(--font-mincho);
  font-size: 56px;
  line-height: 1.1;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  font-weight: 900;
}
.section-title-jp {
  display: block;
  font-family: var(--font-mincho);
  font-size: 14px;
  color: var(--mute);
  letter-spacing: 0.4em;
  margin-top: 8px;
  font-weight: 500;
}

/* ============ button ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--crimson);
  color: var(--paper-white);
  box-shadow:
    0 8px 24px -8px rgba(200, 16, 46, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  position: relative;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  border: 1px solid rgba(255, 232, 184, 0.28);
  pointer-events: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(200, 16, 46, 0.7);
}
.btn-ghost {
  background: transparent;
  color: var(--paper);
  box-shadow: inset 0 0 0 1.5px rgba(247, 239, 221, 0.5);
}
.btn-ghost-dark {
  background: transparent;
  color: var(--ink-900);
  box-shadow: inset 0 0 0 1.5px rgba(20, 16, 12, 0.5);
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: var(--ink-900);
  box-shadow: 0 8px 22px -10px rgba(212, 160, 54, 0.65);
}

/* ============ top nav ============ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 56px;
  background: rgba(14, 10, 7, 0.92);
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 50;
  color: var(--paper);
  border-bottom: 1px solid rgba(212, 160, 54, 0.14);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--crimson);
  display: grid;
  place-items: center;
  font-family: var(--font-impact);
  color: var(--paper-warm);
  font-size: 18px;
  position: relative;
  box-shadow:
    0 2px 0 var(--crimson-deep),
    0 0 0 1px rgba(239, 199, 94, 0.25);
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 5px;
  border: 1px solid rgba(239, 199, 94, 0.45);
}
.brand-text {
  line-height: 1.1;
}
.brand-en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 17px;
  color: var(--gold-bright);
  letter-spacing: 0.04em;
}
.brand-jp {
  font-family: var(--font-mincho);
  font-size: 11px;
  color: var(--paper);
  letter-spacing: 0.2em;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--gold-bright);
}
.nav-links a .en {
  font-family: var(--font-en);
}
.nav-tail {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-toggle {
  font-size: 11px;
  letter-spacing: 0.2em;
  opacity: 0.7;
}
.lang-toggle b {
  color: var(--gold-bright);
  opacity: 1;
}
.nav .btn {
  padding: 11px 20px;
  font-size: 13px;
}

/* ============ hero ============ */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(10, 7, 5, 0.78) 0%, rgba(20, 16, 12, 0.62) 35%, rgba(10, 7, 5, 0.85) 100%),
    url("assets/hero-bg.jpeg") center/cover no-repeat,
    radial-gradient(ellipse at 70% 30%, #2a1a12 0%, #14100c 55%, #0a0705 100%);
  color: var(--paper);
  padding: 44px 56px 56px;
  overflow: hidden;
  isolation: isolate;
}
.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 50% 50%, rgba(239, 199, 94, 0.04) 0%, transparent 40%), repeating-linear-gradient(45deg, transparent 0 6px, rgba(247, 239, 221, 0.012) 6px 7px);
  z-index: 1;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(circle at 12% 18%, rgba(226, 73, 42, 0.18), transparent 28%), radial-gradient(circle at 88% 78%, rgba(212, 160, 54, 0.14), transparent 30%);
}
.hero-stars {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: radial-gradient(1.5px 1.5px at 17% 22%, rgba(239, 199, 94, 0.7), transparent), radial-gradient(1px 1px at 38% 12%, rgba(255, 236, 196, 0.5), transparent), radial-gradient(1.5px 1.5px at 62% 36%, rgba(226, 73, 42, 0.6), transparent), radial-gradient(1px 1px at 75% 14%, rgba(239, 199, 94, 0.55), transparent), radial-gradient(1.2px 1.2px at 11% 78%, rgba(247, 239, 221, 0.45), transparent), radial-gradient(1px 1px at 92% 48%, rgba(239, 199, 94, 0.6), transparent), radial-gradient(1.6px 1.6px at 48% 88%, rgba(226, 73, 42, 0.6), transparent);
}
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  pointer-events: none;
}
.hero-content > * {
  pointer-events: auto;
}

.hero-topline {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-topline .hero-dateline {
  font-family: var(--font-en-display);
  font-weight: 500;
  color: var(--gold-bright);
  letter-spacing: 0.08em;
  font-size: 18px;
}
.hero-topline .hero-dateline .en {
  font-weight: 700;
}

.hero-kv-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin: -10px 0;
}

.hero-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: -12px;
}
.hero-title-jp {
  font-family: var(--font-mincho);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-size: 48px;
  color: var(--paper-white);
  margin: 0;
  text-shadow:
    0 4px 14px rgba(0, 0, 0, 0.55),
    0 2px 4px rgba(0, 0, 0, 0.45);
}
.hero-title-jp .red {
  color: var(--crimson-bright);
}
.hero-title-jp .gold {
  color: var(--gold-bright);
}

.hero-left .senjafuda,
.senjafuda {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--crimson);
  color: var(--paper-white);
  padding: 8px 16px 8px 14px;
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  position: relative;
  box-shadow:
    inset 0 0 0 1px rgba(239, 199, 94, 0.45),
    2px 3px 0 rgba(0, 0, 0, 0.4);
}
.hero-left .senjafuda::before,
.hero-left .senjafuda::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: rgba(239, 199, 94, 0.7);
  border-radius: 50%;
}
.hero-left .senjafuda::before {
  left: 4px;
}
.hero-left .senjafuda::after {
  right: 4px;
}
.hero-left .senjafuda .en {
  font-family: var(--font-en);
  font-weight: 500;
  opacity: 0.8;
  font-size: 11px;
}

.hero-venue {
  font-family: var(--font-mincho);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--paper);
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-venue::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold-bright);
  border-radius: 50%;
}

.hero-tag {
  font-family: var(--font-mincho);
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--paper);
  line-height: 1.5;
  margin: 0;
}
.hero-tag b {
  color: var(--gold-bright);
  font-weight: 700;
  position: relative;
}
.hero-tag b::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: -4px;
  height: 6px;
  background: radial-gradient(ellipse, rgba(239, 199, 94, 0.5), transparent 70%);
}

.hero-meta {
  display: flex;
  gap: 0;
  align-items: stretch;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(247, 239, 221, 0.05), rgba(247, 239, 221, 0.02));
  border: 1px solid rgba(239, 199, 94, 0.22);
  border-radius: 4px;
  position: relative;
  margin: 0;
}
.hero-meta-item {
  padding: 0 20px;
  text-align: left;
}
.hero-meta::before,
.hero-meta::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--gold-bright);
}
.hero-meta::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}
.hero-meta::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}
.hero-meta .label {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold-bright);
  text-transform: uppercase;
}
.hero-meta .v {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 22px;
  color: var(--paper-white);
  line-height: 1.1;
  margin-top: 4px;
  letter-spacing: -0.01em;
}
.hero-meta .v small {
  font-size: 14px;
  font-family: var(--font-sans);
  font-weight: 500;
  opacity: 0.7;
  margin-left: 6px;
  letter-spacing: 0.05em;
}
.hero-meta-divider {
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(239, 199, 94, 0.35), transparent);
}

.hero-cta {
  display: flex;
  gap: 14px;
}

.hero-countdown {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 560px;
}
.hero-countdown .label {
  font-family: var(--font-mincho);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--paper);
  opacity: 0.7;
  writing-mode: vertical-rl;
  line-height: 1;
}
.hero-countdown .units {
  display: flex;
  gap: 12px;
  flex: 1;
}
.hero-countdown .unit {
  flex: 1;
  background: rgba(20, 16, 12, 0.5);
  border: 1px solid rgba(239, 199, 94, 0.22);
  padding: 12px 8px;
  text-align: center;
  border-radius: 2px;
  position: relative;
}
.hero-countdown .unit .n {
  font-family: var(--font-en-display);
  font-size: 36px;
  line-height: 1;
  color: var(--gold-bright);
  font-weight: 500;
}
.hero-countdown .unit .u {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--paper);
  opacity: 0.65;
  margin-top: 6px;
  text-transform: uppercase;
}

/* hero KV - now the centerpiece (1-column) */
.hero-right {
  display: none;
}
.hero-kv {
  position: relative;
  width: 100%;
  max-width: 620px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 80px rgba(226, 73, 42, 0.25));
  z-index: 2;
  animation: kv-float 6s ease-in-out infinite alternate;
}
.hero-kv img {
  width: 100%;
  height: auto;
  display: block;
}
@keyframes kv-float {
  from {
    transform: translateY(-8px) rotate(-0.5deg);
  }
  to {
    transform: translateY(8px) rotate(0.5deg);
  }
}
.hero-kv-stamp {
  position: absolute;
  right: -10px;
  bottom: 40px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--crimson);
  color: var(--paper-white);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-mincho);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.15;
  transform: rotate(-10deg);
  box-shadow:
    0 0 0 4px rgba(247, 239, 221, 0.95),
    0 14px 30px -10px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.4);
  z-index: 10;
}
.hero-kv-stamp small {
  display: block;
  font-family: var(--font-en-display);
  font-size: 22px;
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.hero-kv-stamp::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(247, 239, 221, 0.5);
  border-radius: 50%;
}
.hero-owl {
  position: absolute;
  right: -40px;
  top: -20px;
  width: 520px;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}
.photo-frame {
  position: absolute;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.7),
    0 0 0 6px var(--paper-white),
    0 0 0 8px var(--gold);
  background: var(--ink-800);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-frame .tag {
  position: absolute;
  left: 8px;
  bottom: 8px;
  background: rgba(20, 16, 12, 0.85);
  color: var(--paper-warm);
  font-family: var(--font-mincho);
  font-size: 11px;
  padding: 4px 8px;
  letter-spacing: 0.1em;
  border: 1px solid rgba(239, 199, 94, 0.3);
}

.pf-1 {
  top: 0;
  left: 20px;
  width: 200px;
  height: 240px;
  border-radius: 4px;
  transform: rotate(-4deg);
}
.pf-2 {
  top: 60px;
  right: 0;
  width: 240px;
  height: 200px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform: rotate(3deg);
}
.pf-3 {
  top: 240px;
  left: 60px;
  width: 240px;
  height: 280px;
  border-radius: 50%;
}
.pf-4 {
  top: 290px;
  right: 40px;
  width: 220px;
  height: 260px;
  border-radius: 4px;
  transform: rotate(5deg);
}
.pf-5 {
  top: 100px;
  left: 240px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  transform: rotate(0deg);
  box-shadow:
    0 20px 40px -10px rgba(0, 0, 0, 0.7),
    0 0 0 4px var(--crimson),
    0 0 0 6px var(--paper-white);
}

.hero-stamp {
  position: absolute;
  right: 0px;
  bottom: 80px;
  width: 96px;
  height: 96px;
  background: var(--crimson);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--paper-white);
  font-family: var(--font-mincho);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 0.02em;
  line-height: 1;
  transform: rotate(-12deg);
  box-shadow:
    0 0 0 4px rgba(247, 239, 221, 0.95),
    0 14px 30px -10px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.4);
  z-index: 10;
}
.hero-stamp::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(247, 239, 221, 0.5);
  border-radius: 50%;
}

/* chochin lanterns */
.chochin {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  animation: chochin-swing 2.6s ease-in-out infinite alternate;
  transform-origin: top center;
}
.chochin svg {
  display: block;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.5));
}
.chochin-1 {
  top: 0;
  left: 80px;
  animation-duration: 2.8s;
}
.chochin-2 {
  top: 0;
  left: 280px;
  animation-duration: 3.4s;
  animation-delay: -1s;
}
.chochin-3 {
  top: 0;
  right: 80px;
  animation-duration: 3s;
  animation-delay: -0.5s;
}
.chochin-4 {
  top: 0;
  right: 320px;
  animation-duration: 3.6s;
  animation-delay: -1.4s;
}
@keyframes chochin-swing {
  from {
    transform: rotate(-6deg);
  }
  to {
    transform: rotate(6deg);
  }
}

/* hero food photos — torn-collage flanking the KV */
.hero-food-stage {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1400px;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.hero-food {
  position: absolute;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow:
    0 24px 50px -18px rgba(0, 0, 0, 0.55),
    0 0 0 6px var(--paper-white);
  border-radius: 4px;
  pointer-events: auto;
}
.hf-1 {
  top: 6%;
  left: 160px;
  width: 280px;
  height: 210px;
  transform: rotate(-9deg);
}
.hf-2 {
  top: 30%;
  left: 60px;
  width: 340px;
  height: 255px;
  transform: rotate(5deg);
}
.hf-3 {
  top: calc(64% + 100px);
  left: 110px;
  width: 220px;
  height: 165px;
  transform: rotate(-8deg);
}
.hf-4 {
  top: 4%;
  right: 140px;
  width: 300px;
  height: 220px;
  transform: rotate(7deg);
}
.hf-5 {
  top: calc(32% - 55px);
  right: 60px;
  width: 340px;
  height: 255px;
  transform: rotate(-5deg);
}
.hf-6 {
  bottom: calc(7% + 195px);
  right: 100px;
  width: 220px;
  height: 165px;
  transform: rotate(4deg);
}
.hf-7 {
  top: calc(48% + 70px);
  left: 140px;
  width: 240px;
  height: 180px;
  transform: rotate(-4deg);
}
.hf-8 {
  top: calc(64% + 95px);
  right: 60px;
  width: 276px;
  height: 207px;
  transform: rotate(-6deg);
}

/* ============ marquee ticker ============ */
.ticker {
  background: var(--crimson);
  color: var(--paper-white);
  padding: 14px 0;
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--gold-bright);
  border-bottom: 2px solid var(--gold-bright);
  box-shadow: 0 0 30px -5px rgba(200, 16, 46, 0.5);
}
.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background-image: radial-gradient(circle, var(--gold-bright) 1.5px, transparent 1.5px);
  background-size: 16px 4px;
  opacity: 0.7;
}
.ticker::before {
  top: 6px;
}
.ticker::after {
  bottom: 6px;
}
.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
}
.ticker-item .star {
  color: var(--gold-bright);
  font-family: var(--font-en);
}
.ticker-item .en {
  font-family: var(--font-en);
  font-weight: 500;
  opacity: 0.85;
}
@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============ concept ============ */
.section-concept {
  padding: 120px 0 100px;
  background: var(--paper);
  position: relative;
}
.section-concept::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: radial-gradient(circle at 1px 1px, var(--ink-900) 1px, transparent 0);
  background-size: 24px 24px;
}
.concept-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.concept-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 200px;
  gap: 22px 28px;
  padding: 14px 8px;
}
.concept-photos .p {
  overflow: hidden;
  border-radius: 6px;
  box-shadow:
    0 20px 40px -16px rgba(0, 0, 0, 0.25),
    0 0 0 6px var(--paper-white);
}
.concept-photos .p img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cp-1 {
  transform: rotate(-3deg) scale(1.2);
  margin-left: -20px;
  margin-top: -20px;
}
.cp-2 {
  transform: rotate(2deg) scale(1.2);
  margin-top: 22px;
}
.cp-3 {
  transform: rotate(3deg) scale(1.08);
  margin-top: -10px;
}
.cp-4 {
  transform: rotate(-4deg) scale(1.02);
  margin-top: 14px;
}
.cp-5 {
  transform: rotate(-2deg) scale(1.2);
  margin-top: -8px;
  margin-left: -30px;
}
.cp-6 {
  transform: rotate(2deg) scale(1.2);
  margin-top: 3px;
}
.concept-stamp {
  position: absolute;
  top: 40%;
  left: 38%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(200, 16, 46, 0.95);
  display: grid;
  place-items: center;
  color: var(--paper-white);
  font-family: var(--font-mincho);
  font-weight: 800;
  font-size: 24px;
  transform: rotate(-15deg);
  box-shadow:
    0 0 0 1px var(--paper-white),
    0 0 0 3px rgba(200, 16, 46, 0.95);
  z-index: 5;
  line-height: 1.05;
  text-align: center;
}
.concept-stamp::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(247, 239, 221, 0.4);
  border-radius: 50%;
}

.concept-body h2 {
  font-family: var(--font-mincho);
  font-size: 92px;
  line-height: 1.1;
  color: var(--ink-900);
  font-weight: 900;
  letter-spacing: -0.03em;
}
.concept-body h2 .accent {
  color: var(--crimson);
  position: relative;
}
.concept-body h2 .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 12px;
  background-image: radial-gradient(circle, var(--gold-bright) 2px, transparent 2px);
  background-size: 10px 12px;
  opacity: 0.55;
}
.concept-lead {
  margin-top: 28px;
  font-family: var(--font-mincho);
  font-size: 18px;
  line-height: 1.9;
  color: var(--ink-700);
  max-width: 480px;
}
.concept-list {
  margin-top: 28px;
  display: grid;
  gap: 8px;
}
.concept-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--ink-700);
  list-style: none;
}
.concept-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--crimson);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.15);
}

/* ============ information cards ============ */
.section-info {
  padding: 100px 0;
  background: var(--paper-warm);
  color: var(--ink-900);
  position: relative;
  overflow: hidden;
}
.section-info::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(180deg, rgba(247, 239, 221, 0.5) 0%, rgba(247, 239, 221, 0.1) 100%), url("assets/event_02.jpg?v=3");
  background-size: cover;
  background-position: center;
}
.section-info > .container-d {
  position: relative;
  z-index: 1;
}
.section-info::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.09;
  background-image: radial-gradient(1px 1px at 20% 30%, var(--ink-900), transparent), radial-gradient(1px 1px at 60% 60%, var(--ink-900), transparent), radial-gradient(1px 1px at 80% 20%, var(--ink-900), transparent), radial-gradient(1px 1px at 30% 80%, var(--ink-900), transparent);
}
.info-head {
  text-align: center;
  margin-bottom: 60px;
}
.info-head .section-title {
  color: var(--ink-900);
}
.info-head .section-title-jp {
  color: rgba(20, 16, 12, 0.55);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.info-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86));
  border: 1px solid rgba(20, 16, 12, 0.18);
  padding: 36px 28px;
  position: relative;
  border-radius: 4px;
  text-align: center;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 16, 46, 0.45);
  box-shadow: 0 20px 40px -16px rgba(20, 16, 12, 0.18);
}
.info-card::before,
.info-card::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--gold-bright);
  opacity: 0.7;
}
.info-card::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}
.info-card::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}
.info-icon {
  width: 56px;
  height: 56px;
  background: var(--crimson);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.18);
  color: var(--paper-warm);
}
.info-label {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--crimson);
  text-transform: uppercase;
  display: inline-flex;
  justify-content: center;
}
.info-label-jp {
  font-family: var(--font-mincho);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--ink-700);
  opacity: 0.85;
  margin-top: 4px;
}
.info-value {
  font-family: var(--font-mincho);
  font-weight: 900;
  font-size: 30px;
  color: var(--ink-900);
  line-height: 1.2;
  margin-top: 14px;
  letter-spacing: -0.01em;
}
.info-value small {
  display: block;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-sans);
  color: var(--ink-700);
  opacity: 0.75;
  margin-top: 6px;
  letter-spacing: 0.05em;
}
.info-note {
  font-size: 11px;
  color: var(--ink-700);
  opacity: 0.65;
  margin-top: 14px;
  letter-spacing: 0.05em;
}

/* ============ gourmet ============ */
.section-gourmet {
  padding: 120px 0;
  background: var(--paper);
  position: relative;
}
.gourmet-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}
.gourmet-head .right {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  color: var(--mute);
}
.gourmet-head .right .nav-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--ink-900);
  display: grid;
  place-items: center;
  transition:
    background 0.2s,
    color 0.2s;
}
.gourmet-head .right .nav-arrow:hover {
  background: var(--ink-900);
  color: var(--paper);
}

.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.tab {
  padding: 12px 22px;
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  border-radius: 999px;
  background: var(--paper-white);
  color: var(--ink-700);
  box-shadow: inset 0 0 0 1px rgba(20, 16, 12, 0.12);
  transition: all 0.2s;
}
.tab:hover {
  background: var(--paper-warm);
}
.tab.active {
  background: var(--ink-900);
  color: var(--paper-warm);
  box-shadow:
    inset 0 0 0 1px var(--ink-900),
    0 0 0 3px rgba(20, 16, 12, 0.08);
}
.tab .count {
  font-family: var(--font-en);
  opacity: 0.55;
  margin-left: 6px;
  font-size: 12px;
}

.gourmet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.dish {
  background: var(--paper-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px -16px rgba(20, 16, 12, 0.18);
  position: relative;
  display: flex;
  flex-direction: column;
}
.dish-img {
  aspect-ratio: 1/1;
  background: var(--paper-deep);
  overflow: hidden;
  position: relative;
}
.dish-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dish-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--crimson);
  color: var(--paper-warm);
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 12px;
  padding: 5px 10px;
  letter-spacing: 0.15em;
  box-shadow: 1px 2px 0 rgba(20, 16, 12, 0.3);
}
.dish-rank {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(20, 16, 12, 0.85);
  color: var(--gold-bright);
  display: grid;
  place-items: center;
  font-family: var(--font-en-display);
  font-size: 16px;
  border: 1.5px solid var(--gold-bright);
}
.dish-rank small {
  font-family: var(--font-en);
  font-size: 7px;
  letter-spacing: 0.15em;
  display: block;
  margin-top: -3px;
  opacity: 0.7;
}
.dish-body {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dish-stall {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--mute);
  text-transform: uppercase;
  font-family: var(--font-en);
}
.dish-name {
  font-family: var(--font-mincho);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-900);
  margin-top: 4px;
  line-height: 1.35;
}
.dish-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.dish-tags .t {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--paper-deep);
  color: var(--ink-700);
  letter-spacing: 0.05em;
}
.dish-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed rgba(20, 16, 12, 0.18);
}
.dish-price {
  font-family: var(--font-en-display);
  font-size: 22px;
  color: var(--crimson);
  font-weight: 500;
  line-height: 1;
}
.dish-price small {
  font-size: 12px;
  color: var(--ink-700);
  font-family: var(--font-sans);
  margin-left: 2px;
  opacity: 0.6;
  font-weight: 400;
}
.dish-cta {
  font-size: 12px;
  color: var(--ink-900);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.1em;
}
.dish-cta::after {
  content: "→";
  font-family: var(--font-en);
}

.gourmet-foot {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

/* ============ stage ============ */
.section-stage {
  padding: 120px 0;
  background: var(--ink-900);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.section-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: repeating-linear-gradient(0deg, var(--gold-bright) 0 1px, transparent 1px 80px), repeating-linear-gradient(90deg, var(--gold-bright) 0 1px, transparent 1px 80px);
}
.stage-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}
.stage-head .section-title {
  color: var(--paper-warm);
}
.stage-head .section-title-jp {
  color: rgba(247, 239, 221, 0.55);
}
.day-tabs {
  display: flex;
  gap: 8px;
}
.day-tab {
  padding: 12px 22px;
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 14px;
  border-radius: 4px;
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(239, 199, 94, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
}
.day-tab.active {
  background: var(--crimson);
  color: var(--paper-warm);
  border-color: var(--crimson);
}
.day-tab .d {
  font-family: var(--font-en-display);
  font-size: 18px;
}
.day-tab .wd {
  font-size: 11px;
  opacity: 0.8;
}

.stage-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 2;
}
.timetable {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tt-row {
  display: grid;
  grid-template-columns: 120px 56px 1fr 120px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(239, 199, 94, 0.18);
  position: relative;
}
.tt-time {
  font-family: var(--font-en-display);
  font-size: 30px;
  color: var(--gold-bright);
  line-height: 1;
}
.tt-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--crimson);
  box-shadow: 0 0 0 5px rgba(200, 16, 46, 0.18);
  position: relative;
}
.tt-dot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 28px;
  width: 1px;
  height: 60px;
  background: rgba(239, 199, 94, 0.2);
}
.tt-row:last-child .tt-dot::after {
  display: none;
}
.tt-content {
  padding-left: 6px;
}
.tt-type {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold-bright);
  text-transform: uppercase;
}
.tt-name {
  font-family: var(--font-mincho);
  font-size: 22px;
  font-weight: 700;
  color: var(--paper-white);
  margin-top: 4px;
}
.tt-tag {
  justify-self: end;
  font-family: var(--font-mincho);
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 6px 12px;
  border: 1px solid rgba(239, 199, 94, 0.3);
  border-radius: 999px;
  color: var(--paper);
}
.tt-tag.live {
  background: var(--crimson);
  border-color: var(--crimson);
  color: var(--paper-warm);
}

.stage-feature {
  position: relative;
  background: linear-gradient(180deg, rgba(226, 73, 42, 0.12), rgba(200, 16, 46, 0.04));
  border: 1px solid rgba(239, 199, 94, 0.25);
  padding: 36px;
  border-radius: 6px;
  overflow: hidden;
}
.stage-feature::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(239, 199, 94, 0.18), transparent 60%);
}
.stage-feature .label {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold-bright);
  text-transform: uppercase;
}
.stage-feature h3 {
  font-family: var(--font-mincho);
  font-size: 36px;
  font-weight: 900;
  color: var(--paper-white);
  margin-top: 8px;
  line-height: 1.15;
}
.stage-feature p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--paper);
  opacity: 0.85;
}
.stage-feature .live-stamp {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--crimson);
  color: var(--paper-warm);
  display: grid;
  place-items: center;
  font-family: var(--font-en-display);
  font-size: 22px;
  letter-spacing: 0.05em;
  transform: rotate(8deg);
  border: 2px solid var(--paper-warm);
  box-shadow: 0 0 0 2px var(--crimson);
}
.stage-photo {
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 24px;
  box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.6);
}
.stage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ artist ============ */
.section-artist {
  padding: 120px 0;
  background: var(--paper);
}
.artist-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}
.artist-day-head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0 0 32px;
  color: var(--ink-900);
}
.artist-day-head .day-marker {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  padding: 10px 18px 10px 0;
  border-left: 3px solid var(--crimson);
  padding-left: 18px;
}
.artist-day-head .day-no {
  font-family: var(--font-en-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--crimson);
}
.artist-day-head .day-date {
  font-family: var(--font-en-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}
.artist-day-head .day-wd {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ink-900);
  opacity: 0.55;
}
.artist-day-head .day-rule {
  flex: 1;
  height: 1px;
  background: var(--ink-900);
  opacity: 0.15;
}
.artist-day-head .day-count {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-900);
  opacity: 0.55;
}
.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.artist {
  position: relative;
  background: var(--paper-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px -14px rgba(20, 16, 12, 0.2);
  transition: transform 0.25s;
}
.artist:hover {
  transform: translateY(-4px);
}
.artist-img {
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
  background: var(--ink-900);
}
.artist-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.artist-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20, 16, 12, 0.85) 100%);
}
.artist-stamp {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--crimson);
  color: var(--paper-warm);
  padding: 6px 12px;
  font-family: var(--font-mincho);
  font-size: 11px;
  letter-spacing: 0.2em;
  z-index: 2;
}
.artist-info {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  color: var(--paper-warm);
  z-index: 2;
}
.artist-info .en {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.1em;
  opacity: 0.7;
}
.artist-info .name {
  font-family: var(--font-mincho);
  font-weight: 900;
  font-size: 28px;
  margin-top: 2px;
  line-height: 1.1;
}
.artist-info .role {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 4px;
  letter-spacing: 0.1em;
}
.artist-body {
  padding: 20px 22px 24px;
}
.artist-body p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-700);
}
.artist-body .links {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.artist-body .links a {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--mute);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--mute);
  transition: color 0.2s;
}
.artist-body .links a:hover {
  color: var(--crimson);
  border-color: var(--crimson);
}

/* ============ instagram ============ */
.section-insta {
  padding: 100px 0;
  background: var(--paper);
  border-top: 1px dashed rgba(20, 16, 12, 0.15);
}
.insta-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}
.insta-head h2 {
  font-family: var(--font-en-display);
  font-size: 56px;
  line-height: 1;
  color: var(--ink-900);
  font-weight: 500;
}
.insta-head h2 .tag {
  font-family: var(--font-mincho);
  font-size: 30px;
  color: var(--crimson);
  letter-spacing: 0.02em;
  margin-left: 14px;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}
.insta-grid .img {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  background: var(--paper-deep);
  transition: transform 0.25s;
}
.insta-grid .img:hover {
  transform: scale(1.04);
}
.insta-grid .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ sponsors ============ */
.section-sponsors {
  padding: 100px 0 80px;
  background-color: var(--paper-warm);
  color: var(--ink-900);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section-sponsors::before {
  content: "";
  position: absolute;
  inset: -20px;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.4) 100%), url("assets/event_02.jpg?v=3");
  background-size: cover;
  background-position: center;
  filter: blur(6px);
  z-index: -1;
  pointer-events: none;
}
.section-sponsors .section-title {
  color: var(--ink-900) !important;
}
.section-sponsors .eyebrow {
  color: var(--crimson) !important;
}

/* dark variant (provisional release — matches stage section) */
.iwgp .section-sponsors.is-dark {
  background-color: var(--ink-900);
  color: var(--paper);
}
.iwgp .section-sponsors.is-dark::before {
  display: none;
}
.iwgp .section-sponsors.is-dark .section-title {
  color: var(--paper-warm) !important;
}
.iwgp .section-sponsors.is-dark .eyebrow {
  color: var(--gold-bright) !important;
}

/* no background photo (provisional release) — match other light sections */
.iwgp .section-sponsors.no-photo::before {
  display: none;
}
.iwgp .section-sponsors.no-photo {
  background-color: var(--paper);
}
.sponsors-note {
  margin-top: 18px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(20, 16, 12, 0.6);
}
.sponsors-legend {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin: 32px 0 4px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(20, 16, 12, 0.75);
}
.sponsors-legend .legend-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.sponsors-legend .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.sponsors-legend .dot-major {
  background: var(--paper-warm);
  box-shadow: 0 0 10px rgba(255, 232, 170, 0.55);
}
.sponsors-legend .dot-mid {
  background: #e8341b;
  box-shadow: 0 0 10px rgba(232, 52, 27, 0.55);
}
.sponsors-legend .dot-small {
  background: rgba(247, 239, 221, 0.32);
}

/* ----- marquee ----- */
.sponsors-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.sponsors-marquee.tier-row.major {
  margin: 24px 0 0;
  padding: 12px 0 12px;
  height: 360px;
}
.sponsors-marquee.tier-row.major::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 52, 27, 0.55), transparent);
  z-index: 1;
}
.sponsors-marquee.tier-row.mid {
  margin: 0 0 8px;
  padding: 12px 0 12px;
  height: 300px;
}
.sponsors-marquee.tier-row.mid::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 52, 27, 0.55), transparent);
  z-index: 1;
}
.sponsors-track {
  display: flex;
  align-items: flex-start;
  gap: 55px;
  width: max-content;
  padding: 0 60px;
  animation: sponsor-flow 75s linear infinite;
  will-change: transform;
}
.tier-row.mid .sponsors-track {
  gap: 40px;
}
.sponsors-marquee:hover .sponsors-track {
  animation-play-state: paused;
}
@keyframes sponsor-flow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ----- lantern (base, as <a>) ----- */
.sponsor-lantern {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  transform-origin: top center;
  animation: lantern-sway 5s ease-in-out infinite alternate;
  text-decoration: none;
  color: inherit;
  transition: filter 0.25s ease;
}
.sponsor-lantern:hover {
  filter: brightness(1.08) drop-shadow(0 0 16px rgba(255, 232, 170, 0.35));
}
.sponsor-lantern .string {
  display: none;
}
.sponsor-lantern .body {
  width: 90px;
  height: 103px;
  background: url("assets/chouchin.png") center/contain no-repeat;
  border-radius: 0;
  position: relative;
  display: grid;
  place-items: center;
  box-shadow: none;
  filter: none;
}
.sponsor-lantern .body::before,
.sponsor-lantern .body::after {
  display: none;
}
.sponsor-lantern .body .lines {
  display: none;
}
.sponsor-lantern .body .name {
  font-family: var(--font-mincho);
  font-weight: 800;
  color: var(--paper-warm);
  text-align: center;
  font-size: 12px;
  line-height: 1.3;
  padding: 0 10px;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.sponsor-lantern .tassel {
  display: none;
}

/* ----- logo plate (major only, overlapped on lantern body) ----- */
.sponsor-logo {
  position: absolute;
  top: 95px; /* vertically centered on the lantern body */
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 120px; /* 3:2 ratio matches the logo art */
  background: var(--paper-warm);
  border-radius: 3px;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.45),
    0 2px 6px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(20, 16, 12, 0.1);
  z-index: 4;
  pointer-events: none;
}
.sponsor-logo-inner {
  font-family: var(--font-mincho);
  font-weight: 800;
  font-size: 15px;
  color: var(--ink-900);
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.25;
  padding: 0 14px;
}
.sponsor-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.sponsor-logo-tag {
  position: absolute;
  top: 6px;
  right: 9px;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: rgba(20, 16, 12, 0.32);
}

/* ----- MAJOR : larger ----- */
.sponsor-lantern.tier-major .body {
  width: 271px;
  height: 310px;
  background: url("assets/chouchin.png") center/contain no-repeat;
  box-shadow: none;
  filter: none;
}
.sponsor-lantern.tier-major .body::before,
.sponsor-lantern.tier-major .body::after {
  background: var(--ink-900);
  width: 64%;
  height: 16px;
}
.sponsor-lantern.tier-major .body .lines {
  background-image: repeating-linear-gradient(0deg, transparent 0 22px, rgba(20, 16, 12, 0.2) 22px 23px);
  inset: 20px;
}
.sponsor-lantern.tier-major .body .name {
  display: none; /* replaced by overlapping logo plate */
}
.sponsor-lantern.tier-major .string {
  height: 22px;
}
.sponsor-lantern.tier-major .tassel {
  width: 6px;
  height: 26px;
}

/* ----- MID ----- */
.sponsor-lantern.tier-mid .body {
  width: 193px;
  height: 221px;
}
.sponsor-lantern.tier-mid .body .name {
  display: none; /* replaced by overlapping logo plate */
}
.sponsor-lantern.tier-mid .body::before,
.sponsor-lantern.tier-mid .body::after {
  height: 14px;
}
.sponsor-lantern.tier-mid .string {
  height: 22px;
}
.sponsor-lantern.tier-mid .tassel {
  width: 5px;
  height: 22px;
}

/* mid-tier overlap plate — sized to body, 3:2 */
.sponsor-lantern.tier-mid .sponsor-logo {
  width: 126px;
  height: 84px;
  top: 68px; /* vertically centered on the body */
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.5),
    0 2px 5px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(20, 16, 12, 0.1);
}

@keyframes lantern-sway {
  from {
    transform: rotate(-3deg);
  }
  to {
    transform: rotate(3deg);
  }
}

/* ----- small (text only) accordion ----- */
.sponsors-small {
  max-width: 880px;
  margin: 0 auto 0;
}
.iwgp .small-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(20, 16, 12, 0.45);
  border-radius: 4px;
  color: var(--ink-900);
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.small-toggle:hover {
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--ink-900);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.32);
}
.small-toggle .label {
  flex: 1;
  text-align: left;
  letter-spacing: 0.04em;
}
.small-toggle .count {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(20, 16, 12, 0.55);
}
.small-toggle .chev {
  display: inline-flex;
  transition: transform 0.3s ease;
  color: var(--gold-bright);
}
.small-toggle.open .chev {
  transform: rotate(180deg);
}
.small-panel {
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.5s ease,
    padding 0.5s ease;
}
.small-panel.open {
  max-height: 1200px;
  padding-top: 12px;
}
.small-grid {
  list-style: none;
  margin: 0;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 36px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(20, 16, 12, 0.15);
  border-radius: 4px;
}
.small-grid li {
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 14px;
  color: rgba(20, 16, 12, 0.85);
  padding: 10px 0;
  border-bottom: 1px dashed rgba(20, 16, 12, 0.15);
  letter-spacing: 0.02em;
}
.small-foot {
  margin-top: 14px;
  text-align: right;
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(20, 16, 12, 0.55);
  letter-spacing: 0.08em;
}

/* ============ map ============ */
.section-map {
  padding: 120px 0;
  background: var(--paper);
}
.map-head {
  text-align: center;
  margin-bottom: 50px;
}
.map-image-wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.map-image {
  display: block;
  width: 100%;
  height: auto;
}
.map-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}
.map-canvas {
  position: relative;
  aspect-ratio: 16/11;
  background: linear-gradient(135deg, #e4ead3 0%, #dde5c9 100%);
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 16px 40px -16px rgba(20, 16, 12, 0.15),
    inset 0 0 0 1px rgba(20, 16, 12, 0.06);
}
.map-canvas svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.map-zone {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  font-family: var(--font-mincho);
  font-weight: 700;
}
.map-zone .pill {
  background: var(--paper-white);
  border: 1.5px solid var(--ink-900);
  padding: 5px 12px;
  font-size: 12px;
  letter-spacing: 0.05em;
  border-radius: 4px;
  box-shadow: 1px 2px 0 rgba(20, 16, 12, 0.2);
  white-space: nowrap;
}
.map-zone .pill.red {
  background: var(--crimson);
  color: var(--paper-warm);
  border-color: var(--crimson);
}
.map-zone .pill.gold {
  background: var(--gold-bright);
  color: var(--ink-900);
  border-color: var(--ink-900);
}
.map-zone .pill.ink {
  background: var(--ink-900);
  color: var(--paper-warm);
  border-color: var(--ink-900);
}
.map-zone .sub {
  font-size: 10px;
  color: var(--ink-700);
}
.mz-stage {
  top: 38%;
  left: 42%;
}
.mz-food-1 {
  top: 12%;
  left: 18%;
}
.mz-food-2 {
  top: 12%;
  right: 18%;
}
.mz-kids {
  bottom: 18%;
  left: 24%;
}
.mz-info {
  bottom: 14%;
  right: 22%;
}

.map-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.map-side h3 {
  font-family: var(--font-mincho);
  font-size: 24px;
}
.map-info {
  background: var(--paper-white);
  border-radius: 6px;
  padding: 24px;
  box-shadow: 0 10px 24px -16px rgba(20, 16, 12, 0.18);
}
.map-info .row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(20, 16, 12, 0.15);
}
.map-info .row:last-child {
  border-bottom: none;
}
.map-info .k {
  font-family: var(--font-mincho);
  font-size: 13px;
  color: var(--mute);
  width: 80px;
  flex-shrink: 0;
}
.map-info .v {
  font-family: var(--font-mincho);
  font-size: 14px;
  color: var(--ink-900);
  font-weight: 700;
}
.map-legend {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.map-legend .row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-700);
}
.map-legend .dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}
.access-list {
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-700);
}
.access-list .row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.access-list .badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--leaf);
  color: var(--paper-warm);
  font-family: var(--font-en);
  font-size: 11px;
  display: grid;
  place-items: center;
  font-weight: 700;
}

/* ============ final CTA ============ */
.section-cta {
  padding: 120px 0;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.75) 100%), url("assets/cta-bg.jpg");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  color: var(--ink-900);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: radial-gradient(2px 2px at 17% 22%, rgba(239, 199, 94, 0.7), transparent), radial-gradient(1.4px 1.4px at 38% 12%, rgba(255, 236, 196, 0.6), transparent), radial-gradient(2px 2px at 62% 36%, rgba(239, 199, 94, 0.6), transparent), radial-gradient(1.4px 1.4px at 75% 14%, rgba(255, 236, 196, 0.6), transparent), radial-gradient(1.6px 1.6px at 11% 78%, rgba(255, 236, 196, 0.55), transparent), radial-gradient(1.4px 1.4px at 92% 48%, rgba(239, 199, 94, 0.65), transparent), radial-gradient(2px 2px at 48% 82%, rgba(239, 199, 94, 0.7), transparent), radial-gradient(1.4px 1.4px at 86% 86%, rgba(255, 236, 196, 0.55), transparent);
}
.cta-inner {
  position: relative;
  z-index: 2;
}
.cta-inner .eyebrow {
  color: var(--crimson);
}
.cta-inner h2 {
  font-family: var(--font-mincho);
  font-weight: 900;
  font-size: 76px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 20px;
  color: var(--ink-900);
}
/* CTA line-break points toggled per breakpoint (see @media blocks) */
.cta-inner h2 .cbr-a,
.cta-inner h2 .cbr-d {
  display: none;
}
.cta-inner h2 .stroke {
  -webkit-text-stroke: 2px var(--ink-900);
  color: transparent;
}
.cta-inner .sub {
  font-family: var(--font-en-display);
  font-size: 28px;
  margin-top: 22px;
  color: var(--crimson);
  letter-spacing: 0.02em;
}
.cta-inner .btn {
  margin-top: 40px;
  padding: 22px 44px;
  font-size: 16px;
}

/* ============ footer ============ */
.footer {
  background: var(--ink-950);
  color: var(--paper);
  padding: 60px 0 0;
  border-top: 3px solid var(--crimson);
  position: relative;
}

/* ============ last-year recap ============ */
.section-recap {
  padding: 120px 0 110px;
  background: var(--ink-900);
  color: var(--paper-warm);
  position: relative;
  overflow: hidden;
}
.section-recap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: radial-gradient(1px 1px at 18% 24%, var(--paper-warm), transparent), radial-gradient(1px 1px at 62% 58%, var(--paper-warm), transparent), radial-gradient(1px 1px at 84% 18%, var(--paper-warm), transparent), radial-gradient(1px 1px at 32% 78%, var(--paper-warm), transparent);
  background-size: 220px 220px;
}
.recap-head {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.recap-head .section-title {
  color: var(--paper-warm);
}
.recap-head .eyebrow {
  color: var(--gold-bright);
}
.recap-sub {
  margin: 22px auto 0;
  max-width: 620px;
  font-family: var(--font-mincho);
  font-size: 15px;
  line-height: 1.9;
  color: rgba(250, 230, 195, 0.72);
  letter-spacing: 0.02em;
}
.recap-video {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
}
.recap-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 24px 60px -20px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(239, 199, 94, 0.2),
    0 0 0 6px rgba(200, 16, 46, 0.12);
}
.recap-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background-image: repeating-linear-gradient(90deg, var(--crimson) 0 20px, var(--gold-bright) 20px 40px, var(--ink-900) 40px 60px);
  opacity: 0.85;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  justify-items: center;
  text-align: center;
}
.footer-grid h4 {
  font-family: var(--font-mincho);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold-bright);
  margin-bottom: 18px;
}
.footer-grid ul {
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 13px;
}
.footer-grid ul a {
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-grid ul a:hover {
  opacity: 1;
  color: var(--gold-bright);
}
.footer-brand {
  max-width: 560px;
}
.footer-brand .brand {
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-brand .brand-mark {
  width: 56px;
  height: 56px;
  font-size: 24px;
}
.footer-brand .brand-mark-fukurou {
  width: 180px;
  height: 180px;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}
.footer-brand .brand-mark-fukurou::after {
  display: none;
}
.footer-brand .brand-mark-fukurou img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.footer-brand .brand-en {
  font-size: 22px;
}
.footer-brand p {
  font-size: 13px;
  opacity: 0.7;
  line-height: 1.7;
  margin-top: 18px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}
.footer-socials .social-btn {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(247, 239, 221, 0.25);
  border-radius: 50%;
  color: var(--paper-warm);
  opacity: 0.8;
  transition: all 0.2s ease;
}
.footer-socials .social-btn:hover {
  opacity: 1;
  color: var(--ink-950);
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}
.footer-bottom {
  background: var(--crimson);
  color: var(--paper-white);
  margin-top: 50px;
  padding: 18px 0;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-align: center;
  opacity: 1;
}
.footer-bottom .container-d {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ============ photo placeholders (with Unsplash imagery) ============ */
.ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--paper-deep), var(--paper-warm));
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  color: var(--mute);
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.15em;
}
.ph::after {
  display: none;
}

/* === Unsplash photo backgrounds (free stock) === */
/* food */
.ph-unagi {
  background-image: url("https://images.unsplash.com/photo-1580822184713-fc5400e7fe10?w=900&auto=format&fit=crop");
  background-color: #5a2818;
}
.ph-beef {
  background-image: url("https://images.unsplash.com/photo-1546833999-b9f581a1996d?w=900&auto=format&fit=crop");
  background-color: #6b1f1f;
}
.ph-yakitori {
  background-image: url("https://images.unsplash.com/photo-1535473895227-bdecb20fb157?w=900&auto=format&fit=crop");
  background-color: #4a2a14;
}
.ph-pasta {
  background-image: url("https://images.unsplash.com/photo-1551892374-ecf8754cf8b0?w=900&auto=format&fit=crop");
  background-color: #b8771e;
}
.ph-sweet {
  background-image: url("https://images.unsplash.com/photo-1519676867240-f03562e64548?w=900&auto=format&fit=crop");
  background-color: #d1505a;
}
.ph-ramen {
  background-image: url("https://images.unsplash.com/photo-1569718212165-3a8278d5f624?w=900&auto=format&fit=crop");
  background-color: #5a3520;
}
.ph-tempura {
  background-image: url("https://images.unsplash.com/photo-1559925393-8be0ec4767c8?w=900&auto=format&fit=crop");
  background-color: #7a5018;
}
.ph-chinese {
  background-image: url("https://images.unsplash.com/photo-1582450871972-ab5ca641643d?w=900&auto=format&fit=crop");
  background-color: #5a1818;
}
.ph-sushi {
  background-image: url("https://images.unsplash.com/photo-1579871494447-9811cf80d66c?w=900&auto=format&fit=crop");
  background-color: #1a1410;
}
.ph-drink {
  background-image: url("https://images.unsplash.com/photo-1551024709-8f23befc6f87?w=900&auto=format&fit=crop");
  background-color: #1a4d4a;
}
.ph-food-portrait {
  background-image: url("https://images.unsplash.com/photo-1546069901-ba9599a7e63c?w=900&auto=format&fit=crop");
  background-color: #6a3818;
}
.ph-strawberry {
  background-image: url("https://images.unsplash.com/photo-1464965911861-746a04b4bca6?w=900&auto=format&fit=crop");
  background-color: #8b1a2a;
}

/* atmosphere — 提灯・屋台・夜祭・群衆 */
.ph-cheers {
  background-image: url("https://images.unsplash.com/photo-1436076863939-06870fe779c2?w=1100&auto=format&fit=crop");
  background-color: #a85a18;
}
.ph-night {
  background-image: url("https://images.unsplash.com/photo-1554797589-7241bb691973?w=1100&auto=format&fit=crop");
  background-color: #1a1410;
}
.ph-crowd {
  background-image: url("https://images.unsplash.com/photo-1542931287-023b922fa89b?w=1100&auto=format&fit=crop");
  background-color: #5a4030;
}
.ph-lantern {
  background-image: url("https://images.unsplash.com/photo-1528360983277-13d401cdc186?w=1100&auto=format&fit=crop");
  background-color: #8b0e1f;
}
.ph-stage {
  background-image: url("https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?w=1100&auto=format&fit=crop");
  background-color: #1a1014;
}

/* artists - portraits */
.ph-artist1 {
  background-image: url("assets/artist-kiyoharu.jpg");
  background-color: #1a1410;
  background-position: center 30%;
}
.ph-artist2 {
  background-image: url("assets/artist-gomihiroi.png");
  background-color: #5a3520;
  background-position: center 40%;
}
.ph-artist3 {
  background-image: url("assets/artist-kidsdance.jpg");
  background-color: #2d1a4a;
  background-position: center 35%;
}
.ph-artist4 {
  background: linear-gradient(140deg, #2a0f0c 0%, #6b1a14 55%, #8a2a1a 100%);
}
.ph-artist5 {
  background: linear-gradient(140deg, #2a1a10 0%, #5a3520 55%, #8a5a30 100%);
}
.ph-artist6 {
  background: linear-gradient(140deg, #14202a 0%, #1d4a5a 55%, #2a7a8a 100%);
}
.ph-artist4::before,
.ph-artist5::before,
.ph-artist6::before {
  content: "PORTRAIT";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: rgba(247, 239, 221, 0.35);
}

.ph::after {
  content: attr(data-label);
  font-family: var(--font-mincho);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 0 20px;
}

/* labels hidden — real images shown */

/* hover float for cards */
@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ============ Coming Soon (provisional release) ============ */
.iwgp .coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 76px 40px 80px;
  border: 1.5px dashed rgba(212, 160, 54, 0.5);
  border-radius: 4px;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 13px, rgba(212, 160, 54, 0.04) 13px, rgba(212, 160, 54, 0.04) 14px);
}
.iwgp .coming-soon .cs-mark {
  margin-bottom: 6px;
}
.iwgp .coming-soon .cs-badge {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--crimson);
}
.iwgp .coming-soon .cs-jp {
  font-family: var(--font-mincho);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.34em;
  color: var(--ink-900);
}
.iwgp .coming-soon .cs-note {
  max-width: 540px;
  font-size: 15px;
  line-height: 2;
  color: var(--mute);
  text-wrap: pretty;
}
.iwgp .coming-soon .cs-tag {
  margin-top: 8px;
  padding-top: 16px;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--gold-soft);
  border-top: 1px solid rgba(212, 160, 54, 0.4);
}
/* dark variant — stage section */
.iwgp .coming-soon.dark {
  border-color: rgba(239, 199, 94, 0.32);
}
.iwgp .coming-soon.dark .cs-badge {
  color: var(--gold-bright);
}
.iwgp .coming-soon.dark .cs-jp {
  color: var(--paper-warm);
}
.iwgp .coming-soon.dark .cs-note {
  color: rgba(247, 239, 221, 0.62);
}

/* ============ Recruitment (provisional release) ============ */
.iwgp .section-recruit {
  padding: 110px 0 100px;
  background: var(--ink-900);
  color: var(--paper);
  position: relative;
}
.iwgp .recruit-head {
  text-align: center;
  margin-bottom: 56px;
}
.iwgp .recruit-head .section-title {
  color: var(--paper-warm) !important;
}
.iwgp .recruit-sub {
  margin-top: 18px;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: rgba(247, 239, 221, 0.62);
}
.iwgp .recruit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 860px;
  margin: 0 auto;
}
.iwgp .recruit-card {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
  background: var(--paper-white);
  border-radius: 14px;
  padding: 28px 26px 28px 32px;
  color: var(--ink-900);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.iwgp .recruit-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--accent);
}
.iwgp .recruit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}
.iwgp .recruit-card .rc-icon {
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent) 13%, white);
  color: var(--accent);
}
.iwgp .recruit-card .rc-body {
  flex: 1 1 auto;
  min-width: 0;
}
.iwgp .recruit-card .rc-title {
  font-family: var(--font-mincho);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.iwgp .recruit-card .rc-desc {
  margin-top: 8px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--mute);
  text-wrap: pretty;
}
.iwgp .recruit-card .rc-arrow {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  transition: transform 0.25s ease;
}
.iwgp .recruit-card:hover .rc-arrow {
  transform: translateX(4px);
}
.iwgp .recruit-card.accent-crimson {
  --accent: var(--crimson);
}
.iwgp .recruit-card.accent-indigo {
  --accent: var(--indigo);
}
.iwgp .recruit-card.accent-gold {
  --accent: var(--gold);
}
.iwgp .recruit-card.accent-gold .rc-arrow {
  color: var(--ink-900);
}

/* ===========================================
   RESPONSIVE
   Bands:  ≤1023px = tablet / compact   ·   ≤639px = phone
   1024px and up keep the full desktop layout.
   =========================================== */

/* ---------- TABLET & BELOW (≤1023px) ---------- */
@media (max-width: 1023px) {
  .iwgp .container-d {
    padding: 0 32px;
  }

  /* hero */
  .iwgp .hero {
    padding: 40px 32px 48px;
  }
  /* hero — full-width collage container so photos can peek from the edges */
  .iwgp .hero-food-stage {
    left: 0;
    width: 100%;
    transform: none;
  }
  .iwgp .hf-7,
  .iwgp .hf-8 {
    display: none;
  } /* 3 photos down each side */
  .iwgp .hero-food {
    box-shadow:
      0 16px 32px -12px rgba(0, 0, 0, 0.5),
      0 0 0 4px var(--paper-white);
  }
  /* left column */
  .iwgp .hf-1 {
    top: 20px;
    left: -28px;
    right: auto;
    width: 158px;
    height: 120px;
    transform: rotate(-8deg);
  }
  .iwgp .hf-2 {
    top: 172px;
    left: -44px;
    right: auto;
    width: 168px;
    height: 128px;
    transform: rotate(5deg);
  }
  .iwgp .hf-3 {
    top: 330px;
    left: -30px;
    right: auto;
    width: 158px !important;
    height: 120px !important;
    transform: rotate(-6deg);
  }
  /* right column */
  .iwgp .hf-4 {
    top: 20px;
    right: -28px;
    left: auto;
    width: 158px;
    height: 120px;
    transform: rotate(7deg);
  }
  .iwgp .hf-5 {
    top: 172px;
    right: -46px;
    left: auto;
    width: 168px;
    height: 128px;
    transform: rotate(-5deg);
  }
  .iwgp .hf-6 {
    top: 330px;
    right: -30px;
    left: auto;
    width: 158px !important;
    height: 120px !important;
    transform: rotate(6deg);
  }
  .iwgp .chochin svg {
    width: 56px;
    height: 90px;
  }
  .iwgp .chochin-1 {
    left: 2%;
    right: auto;
  }
  .iwgp .chochin-2 {
    left: 13%;
    right: auto;
  }
  .iwgp .chochin-3 {
    left: auto;
    right: 13%;
  }
  .iwgp .chochin-4 {
    left: auto;
    right: 2%;
  }
  .iwgp .hero-title-jp {
    font-size: 44px;
  }
  .iwgp .hero-kv {
    max-width: 460px;
  }
  .iwgp .hero-meta {
    flex-wrap: wrap;
    gap: 0;
    padding: 16px;
    width: 100%;
    max-width: 560px;
  }
  .iwgp .hero-meta-item {
    flex: 1 1 44%;
    padding: 10px 16px;
  }
  .iwgp .hero-meta-divider {
    display: none;
  }
  .iwgp .hero-countdown {
    max-width: 560px;
  }
  .iwgp .hero-countdown .label {
    writing-mode: horizontal-tb;
  }

  /* section titles */
  .iwgp .section-title {
    font-size: 42px;
  }

  /* concept */
  .iwgp .section-concept {
    padding: 80px 0;
  }
  .iwgp .concept-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .iwgp .concept-body h2 {
    font-size: 56px;
    line-height: 1.15;
  }
  .iwgp .concept-body h2 br:nth-of-type(2) {
    display: none;
  } /* 食の光が、/ この街を照らす。 */
  .iwgp .concept-lead {
    font-size: 16px;
    max-width: none;
  }
  .iwgp .concept-photos {
    grid-auto-rows: 200px;
    gap: 18px 22px;
  }
  .iwgp .concept-photos .p {
    margin: 0 !important;
    box-shadow:
      0 14px 28px -12px rgba(0, 0, 0, 0.22),
      0 0 0 5px var(--paper-white);
  }
  /* tilt each photo (rotation only — no scale/overlap, so the grid stays intact) */
  .iwgp .cp-1 {
    transform: rotate(-3deg);
  }
  .iwgp .cp-2 {
    transform: rotate(2.5deg);
  }
  .iwgp .cp-3 {
    transform: rotate(-2deg);
  }
  .iwgp .cp-4 {
    transform: rotate(3deg);
  }
  .iwgp .cp-5 {
    transform: rotate(-2.5deg);
  }
  .iwgp .cp-6 {
    transform: rotate(2deg);
  }
  .iwgp .concept-stamp {
    display: none;
  }

  /* info */
  .iwgp .section-info {
    padding: 80px 0;
  }
  .iwgp .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* gourmet */
  .iwgp .section-gourmet {
    padding: 80px 0;
  }
  .iwgp .gourmet-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .iwgp .tabs {
    gap: 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
    margin: 0 -32px 28px;
    padding: 0 32px;
    -webkit-overflow-scrolling: touch;
  }
  .iwgp .tab {
    flex-shrink: 0;
  }
  .iwgp .gourmet-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  /* stage */
  .iwgp .section-stage {
    padding: 80px 0;
  }
  .iwgp .stage-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .iwgp .stage-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .iwgp .tt-row {
    grid-template-columns: 96px 48px 1fr;
  }
  .iwgp .tt-tag {
    display: none;
  }

  /* artist */
  .iwgp .section-artist {
    padding: 80px 0;
  }
  .iwgp .artist-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .iwgp .artist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* sponsors */
  .iwgp .small-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* map */
  .iwgp .section-map {
    padding: 80px 0;
  }
  .iwgp .map-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* recap */
  .iwgp .section-recap {
    padding: 90px 0;
  }
  .iwgp .recap-head {
    margin-bottom: 40px;
  }
  .iwgp .recap-video {
    padding: 0 32px;
  }

  /* cta */
  .iwgp .section-cta {
    padding: 90px 0;
  }
  .iwgp .cta-inner h2 {
    font-size: 54px;
  }
  .iwgp .cta-inner h2 .cbr-a {
    display: inline;
  }
  .iwgp .cta-inner h2 .cbr-b {
    display: none;
  }

  /* recruit */
  .iwgp .section-recruit {
    padding: 90px 0;
  }
}

/* ---------- PHONE (≤639px) ---------- */
@media (max-width: 639px) {
  .iwgp .container-d {
    padding: 0 20px;
  }

  /* hero */
  .iwgp .hero {
    padding: 32px 20px 40px;
  }
  /* show all four lanterns, smaller, spread across the top */
  .iwgp .chochin svg {
    width: 42px;
    height: 67px;
  }
  .iwgp .chochin-1 {
    left: 1%;
    right: auto;
  }
  .iwgp .chochin-2 {
    left: 15%;
    right: auto;
  }
  .iwgp .chochin-3 {
    left: auto;
    right: 15%;
  }
  .iwgp .chochin-4 {
    left: auto;
    right: 1%;
  }
  /* three photos down each side, smaller, behind the logo */
  .iwgp .hf-1 {
    top: 12px;
    left: -22px;
    width: 116px;
    height: 88px;
  }
  .iwgp .hf-2 {
    top: 128px;
    left: -30px;
    width: 124px;
    height: 94px;
  }
  .iwgp .hf-3 {
    top: 248px;
    left: -22px;
    width: 116px !important;
    height: 88px !important;
  }
  .iwgp .hf-4 {
    top: 12px;
    right: -22px;
    width: 116px;
    height: 88px;
  }
  .iwgp .hf-5 {
    top: 128px;
    right: -30px;
    width: 124px;
    height: 94px;
  }
  .iwgp .hf-6 {
    top: 248px;
    right: -22px;
    width: 116px !important;
    height: 88px !important;
  }
  .iwgp .hero-content {
    gap: 22px;
  }
  .iwgp .hero-title-jp {
    font-size: 46px;
  }
  .iwgp .hero-title-jp .red::before {
    content: "\A";
    white-space: pre;
  } /* break: 池袋ウエスト / グルメパーク */
  .iwgp .hero-tag {
    font-size: 15px;
  }
  .iwgp .hero-kv {
    max-width: 100%;
  }
  .iwgp .hero-kv-stamp {
    width: 72px;
    height: 72px;
    font-size: 14px;
    right: 8px;
    bottom: 16px;
  }
  .iwgp .hero-kv-stamp small {
    font-size: 16px;
  }
  .iwgp .hero-meta {
    padding: 14px;
  }
  .iwgp .hero-meta-item {
    flex: 1 1 44%;
    padding: 10px 12px;
  }
  .iwgp .hero-meta .v {
    font-size: 18px;
  }
  .iwgp .hero-meta .v small {
    font-size: 11px;
    margin-left: 4px;
  }
  .iwgp .hero-countdown {
    gap: 8px;
  }
  .iwgp .hero-countdown .units {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .iwgp .hero-countdown .unit .n {
    font-size: 26px;
  }

  /* section titles */
  .iwgp .section-title {
    font-size: 34px;
  }

  /* concept */
  .iwgp .section-concept {
    padding: 64px 0 56px;
  }
  .iwgp .concept-inner {
    gap: 40px;
  }
  .iwgp .concept-body h2 {
    font-size: 42px;
  }
  .iwgp .concept-lead {
    font-size: 15px;
    line-height: 1.85;
  }
  .iwgp .concept-photos {
    grid-auto-rows: 132px;
    gap: 12px 14px;
  }

  /* info */
  .iwgp .section-info {
    padding: 56px 0;
  }
  .iwgp .info-grid {
    gap: 12px;
  }
  .iwgp .info-card {
    padding: 22px 18px;
  }
  .iwgp .info-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
  }
  .iwgp .info-value {
    font-size: 20px;
  }
  .iwgp .info-value small {
    font-size: 11px;
  }

  /* gourmet */
  .iwgp .section-gourmet {
    padding: 64px 0;
  }
  .iwgp .tabs {
    margin: 0 -20px 24px;
    padding: 0 20px;
  }
  .iwgp .tab {
    font-size: 12px;
    padding: 9px 16px;
  }
  .iwgp .gourmet-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .iwgp .dish-body {
    padding: 12px 14px 16px;
  }
  .iwgp .dish-name {
    font-size: 14px;
  }
  .iwgp .dish-price {
    font-size: 18px;
  }
  .iwgp .dish-cta {
    display: none;
  }
  .iwgp .dish-badge {
    font-size: 10px;
    padding: 3px 7px;
    top: 10px;
    left: 10px;
  }
  .iwgp .dish-rank {
    width: 28px;
    height: 28px;
    font-size: 13px;
    top: 10px;
    right: 10px;
  }

  /* stage */
  .iwgp .section-stage {
    padding: 64px 0;
  }
  .iwgp .tt-row {
    grid-template-columns: 64px 32px 1fr;
    padding: 14px 0;
  }
  .iwgp .tt-time {
    font-size: 18px;
  }
  .iwgp .tt-name {
    font-size: 15px;
  }
  .iwgp .stage-feature {
    padding: 24px;
  }
  .iwgp .stage-feature h3 {
    font-size: 24px;
  }

  /* artist */
  .iwgp .section-artist {
    padding: 64px 0;
  }
  .iwgp .artist-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* sponsors */
  .iwgp .section-sponsors {
    padding: 56px 0 50px;
  }
  .iwgp .small-grid {
    grid-template-columns: 1fr;
  }

  /* map */
  .iwgp .section-map {
    padding: 64px 0;
  }

  /* recap */
  .iwgp .section-recap {
    padding: 64px 0;
  }
  .iwgp .recap-video {
    padding: 0 20px;
  }

  /* cta */
  .iwgp .section-cta {
    padding: 64px 0;
  }
  .iwgp .cta-inner h2 {
    font-size: 42px;
  }
  .iwgp .cta-inner h2 .cbr-d {
    display: inline;
  }
  .iwgp .cta-inner .sub {
    font-size: 18px;
  }
  .iwgp .cta-inner .btn {
    padding: 18px 30px;
    font-size: 14px;
  }

  /* footer */
  .iwgp .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* coming soon (provisional placeholders) */
  .iwgp .coming-soon {
    padding: 52px 22px 56px;
    gap: 14px;
  }
  .iwgp .coming-soon .cs-badge {
    font-size: 30px;
  }
  .iwgp .coming-soon .cs-jp {
    font-size: 18px;
  }
  .iwgp .coming-soon .cs-note {
    font-size: 14px;
  }

  /* recruit (provisional) */
  .iwgp .section-recruit {
    padding: 64px 0;
  }
  .iwgp .recruit-card {
    padding: 22px 20px;
    gap: 16px;
  }
  .iwgp .recruit-card .rc-icon {
    width: 50px;
    height: 50px;
  }
  .iwgp .recruit-card .rc-title {
    font-size: 19px;
  }
}

/* ===========================================
   SCROLL REVEAL ANIMATIONS
   =========================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.scroll-reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.scroll-reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered load for card grids and groups */
.scroll-reveal-group > * {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.scroll-reveal-group.revealed > * {
  opacity: 1;
  transform: translateY(0);
}
.scroll-reveal-group.revealed > *:nth-child(1) {
  transition-delay: 0.1s;
}
.scroll-reveal-group.revealed > *:nth-child(2) {
  transition-delay: 0.25s;
}
.scroll-reveal-group.revealed > *:nth-child(3) {
  transition-delay: 0.4s;
}
.scroll-reveal-group.revealed > *:nth-child(4) {
  transition-delay: 0.55s;
}
.scroll-reveal-group.revealed > *:nth-child(5) {
  transition-delay: 0.7s;
}
.scroll-reveal-group.revealed > *:nth-child(6) {
  transition-delay: 0.85s;
}
