/* ─── Reset & Variables ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --deep-ink: #1B2A4A;
  --ivory: #FAF7F0;
  --gold: #C4A265;
  --gold-hover: #d4b275;
  --bordeaux: #8B2252;
  --warm-gray: #6B6560;
  --light-gray: #E8E4DE;
  --serif-en: 'Cormorant Garamond', serif;
  --serif-ja: 'Shippori Mincho', serif;
  --sans-ja: 'Noto Sans JP', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans-ja);
  background: var(--ivory);
  color: var(--deep-ink);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--gold); color: var(--deep-ink); }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }
ul, li { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── Animations ─── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes gentlePulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.7; } }
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ─── Ink Texture ─── */
.ink-texture { position: relative; }
.ink-texture::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1;
}

/* ─── Header ─── */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all 0.4s ease; }
.site-header.scrolled { background: rgba(27,42,74,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(196,162,101,0.2); }
.header-inner { max-width: 1320px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; height: 80px; transition: height 0.4s ease; }
.site-header.scrolled .header-inner { height: 64px; }

.logo { cursor: pointer; }
.logo a { display: block; text-decoration: none; color: inherit; }
.logo-main { font-family: var(--serif-en); font-weight: 600; font-size: 22px; color: #fff; letter-spacing: 0.15em; transition: font-size 0.4s; }
.site-header.scrolled .logo-main { font-size: 18px; }
.logo-sub { font-family: var(--serif-en); font-size: 9px; color: var(--gold); letter-spacing: 0.35em; margin-top: -2px; font-weight: 400; }

.desktop-nav { display: flex; align-items: center; gap: 32px; }
.desktop-nav ul { display: flex; gap: 32px; }
.desktop-nav a { font-family: var(--serif-en); font-size: 13px; color: rgba(255,255,255,0.75); letter-spacing: 0.1em; font-weight: 400; padding-bottom: 2px; border-bottom: 1px solid transparent; transition: all 0.3s; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--gold); border-bottom-color: var(--gold); }

.header-right { display: flex; align-items: center; gap: 16px; }
.header-sns-link { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.4); color: rgba(255,255,255,0.8); transition: all 0.3s; }
.header-sns-link:hover { border-color: var(--gold); color: var(--gold); }
.scrolled .header-sns-link { border-color: rgba(27,42,74,0.3); color: rgba(27,42,74,0.6); }
.scrolled .header-sns-link:hover { border-color: var(--gold); color: var(--gold); }
.btn-ticket { font-family: var(--serif-en); font-size: 12px; background: var(--gold); color: var(--deep-ink); border: none; padding: 8px 20px; letter-spacing: 0.15em; cursor: pointer; font-weight: 600; transition: all 0.3s; display: inline-block; }
.btn-ticket:hover { background: var(--gold-hover); transform: translateY(-1px); }

.mobile-menu-btn { display: none; cursor: pointer; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.mobile-menu-btn span { width: 24px; height: 1.5px; background: #fff; display: block; transition: all 0.3s; }
.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4.5px); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4.5px); }

.mobile-nav { display: none; background: rgba(27,42,74,0.98); padding: 24px 32px; flex-direction: column; gap: 20px; animation: fadeIn 0.3s ease; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--serif-en); font-size: 16px; color: rgba(255,255,255,0.8); letter-spacing: 0.1em; }
.mobile-nav a:hover { color: var(--gold); }

/* ─── Buttons ─── */
.btn-gold { font-family: var(--serif-en); font-size: 14px; background: var(--gold); color: var(--deep-ink); border: none; padding: 14px 40px; letter-spacing: 0.2em; cursor: pointer; font-weight: 600; transition: all 0.3s; display: inline-block; }
.btn-gold:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(196,162,101,0.3); }
.btn-gold.sm { font-size: 12px; padding: 10px 28px; }

.btn-outline { font-family: var(--serif-en); font-size: 12px; background: transparent; color: var(--deep-ink); border: 1px solid var(--deep-ink); padding: 10px 28px; letter-spacing: 0.15em; cursor: pointer; font-weight: 500; transition: all 0.3s; display: inline-block; }
.btn-outline:hover { background: var(--deep-ink); color: #fff; }

/* ─── Section Label ─── */
.section-label-en { font-family: var(--serif-en); font-size: 11px; color: var(--gold); letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 4px; font-weight: 500; }
.section-label-ja { font-family: var(--serif-ja); font-size: 28px; font-weight: 600; letter-spacing: 0.05em; color: var(--deep-ink); }
.section-label-line { width: 40px; height: 1.5px; background: var(--gold); margin-top: 12px; margin-bottom: 40px; }

/* ─── Hero ─── */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; filter: brightness(0.35); }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(27,42,74,0.4) 0%, rgba(27,42,74,0.7) 100%); }
.hero-orb { position: absolute; bottom: -100px; right: -50px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(196,162,101,0.08) 0%, transparent 70%); z-index: 1; animation: gentlePulse 6s ease-in-out infinite; }
.hero-content { position: relative; z-index: 2; text-align: center; color: #fff; padding: 0 24px; }
.hero-logo { width: clamp(240px, 35vw, 360px); height: auto; margin-bottom: 40px; animation: fadeInUp 0.8s ease-out forwards; opacity: 0; filter: drop-shadow(0 4px 24px rgba(0,0,0,0.3)); }
.hero-cta { animation: fadeInUp 0.8s ease-out 0.4s forwards; opacity: 0; }

.scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; text-align: center; }
.scroll-indicator-line { width: 1px; height: 40px; background: rgba(255,255,255,0.3); margin: 0 auto; animation: scrollLine 2s ease-in-out infinite; }
.scroll-indicator-text { font-family: var(--serif-en); font-size: 9px; color: rgba(255,255,255,0.4); letter-spacing: 0.3em; margin-top: 8px; }

/* ─── About ─── */
.about { position: relative; padding: 100px 32px; max-width: 900px; margin: 0 auto; text-align: center; }
.about-eyebrow { font-family: var(--serif-en); font-size: 11px; color: var(--gold); letter-spacing: 0.4em; margin-bottom: 20px; font-weight: 500; }
.about-heading { font-family: var(--serif-ja); font-size: clamp(20px, 3vw, 30px); font-weight: 600; line-height: 1.8; margin-bottom: 32px; letter-spacing: 0.05em; }
.about-body { font-family: var(--sans-ja); font-size: 14px; line-height: 2.2; color: var(--warm-gray); max-width: 640px; margin: 0 auto; font-weight: 300; }

/* ─── Overview Bar ─── */
.overview-bar { padding: 80px 32px; background: var(--deep-ink); color: #fff; }
.overview-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; text-align: center; }
.overview-bar .eyebrow { font-family: var(--serif-en); font-size: 11px; color: var(--gold); letter-spacing: 0.4em; margin-bottom: 40px; font-weight: 500; text-align: center; }
.overview-item-label { font-family: var(--serif-en); font-size: 10px; color: var(--gold); letter-spacing: 0.3em; margin-bottom: 8px; }
.overview-item-value { font-family: var(--serif-ja); font-size: 18px; font-weight: 500; margin-bottom: 4px; }
.overview-item-sub { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 300; }

/* ─── Exclusives ─── */
.exclusives { padding: 100px 32px; }
.exclusives-inner { max-width: 1200px; margin: 0 auto; }
.exclusives-desc { font-family: var(--sans-ja); font-size: 14px; color: var(--warm-gray); margin-bottom: 48px; max-width: 560px; line-height: 2; font-weight: 300; }
.exclusives-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.exclusive-card { background: #fff; overflow: hidden; border: 1px solid var(--light-gray); transition: all 0.4s ease; }
.exclusive-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(27,42,74,0.1); }
.exclusive-card a { display: block; text-decoration: none; color: inherit; }
.exclusive-swatch { display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; height: 180px; }
.exclusive-swatch .orb { width: 80px; height: 80px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%); animation: gentlePulse 4s ease-in-out infinite; }
.exclusive-swatch .badge { position: absolute; top: 12px; right: 12px; font-family: var(--serif-en); font-size: 9px; color: rgba(255,255,255,0.7); letter-spacing: 0.2em; background: rgba(0,0,0,0.2); padding: 4px 10px; }
.exclusive-swatch img { width: 100%; height: 100%; object-fit: cover; }
.exclusive-body { padding: 20px 24px; }
.exclusive-name { font-family: var(--serif-ja); font-size: 15px; font-weight: 600; margin-bottom: 4px; line-height: 1.6; }
.exclusive-maker { font-size: 12px; color: var(--gold); margin-bottom: 8px; }
.exclusive-price { font-family: var(--serif-en); font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.exclusive-desc { font-size: 12px; color: var(--warm-gray); line-height: 1.8; font-weight: 300; }
.exclusive-soldout { display: inline-block; background: var(--bordeaux); color: #fff; font-family: var(--serif-en); font-size: 10px; letter-spacing: 0.15em; padding: 4px 12px; margin-top: 8px; }

/* ─── Exhibitor Highlights ─── */
.exhibitor-highlights { padding: 100px 32px; background: #fff; }
.exhibitor-highlights-inner { max-width: 1200px; margin: 0 auto; }
.exhibitor-hl-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.exhibitor-hl-card { overflow: hidden; transition: all 0.4s; }
.exhibitor-hl-card a { display: block; text-decoration: none; color: inherit; }
.exhibitor-hl-card:hover { transform: translateY(-3px); }
.exhibitor-hl-img { height: 200px; background: var(--cream, #faf8f5); margin-bottom: 12px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.exhibitor-hl-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.exhibitor-hl-tag { font-family: var(--serif-en); font-size: 9px; color: var(--gold); letter-spacing: 0.2em; margin-bottom: 4px; }
.exhibitor-hl-name { font-family: var(--serif-ja); font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.exhibitor-hl-desc { font-size: 12px; color: var(--warm-gray); line-height: 1.7; font-weight: 300; }
.exhibitor-hl-cta { text-align: center; margin-top: 48px; }

/* ─── Gallery ─── */
.gallery { padding: 100px 32px; }
.gallery-inner { max-width: 1200px; margin: 0 auto; }
.gallery-desc { font-size: 14px; color: var(--warm-gray); margin-bottom: 40px; font-weight: 300; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.gallery-item { background-size: cover; background-position: center; cursor: pointer; transition: all 0.5s; filter: grayscale(20%); aspect-ratio: 1/1; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 1.5/1; }
.gallery-item:hover { filter: grayscale(0%); transform: scale(1.02); }

/* ─── News ─── */
.news-section { padding: 80px 32px; background: #fff; }
.news-inner { max-width: 800px; margin: 0 auto; }
.news-item { display: flex; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--light-gray); align-items: baseline; transition: padding-left 0.3s; }
.news-item:hover { padding-left: 8px; }
.news-item a { display: flex; gap: 24px; align-items: baseline; width: 100%; }
.news-date { font-family: var(--serif-en); font-size: 12px; color: var(--warm-gray); letter-spacing: 0.05em; flex-shrink: 0; font-weight: 400; }
.news-title { font-family: var(--sans-ja); font-size: 14px; font-weight: 400; }
.news-more { text-align: center; margin-top: 40px; }

/* ─── Page Hero ─── */
.page-hero { padding: 140px 32px 60px; text-align: center; background: var(--deep-ink); color: #fff; }
.page-hero-eyebrow { font-family: var(--serif-en); font-size: 11px; color: var(--gold); letter-spacing: 0.4em; margin-bottom: 12px; }
.page-hero-title { font-family: var(--serif-ja); font-size: clamp(24px, 4vw, 36px); font-weight: 600; margin-bottom: 8px; letter-spacing: 0.05em; }
.page-hero-desc { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 300; max-width: 600px; margin: 0 auto; }

/* ─── Filter Bar ─── */
.filter-bar { padding: 20px 32px; background: #fff; border-bottom: 1px solid var(--light-gray); position: sticky; top: 64px; z-index: 100; transition: transform 0.3s ease, opacity 0.3s ease; }
@media (max-width: 768px) {
  .filter-bar.is-hidden { transform: translateY(-100%); opacity: 0; pointer-events: none; }
}
.filter-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.filter-btn { padding: 8px 20px; font-size: 13px; font-family: var(--sans-ja); font-weight: 400; background: transparent; color: var(--warm-gray); border: 1px solid var(--light-gray); cursor: pointer; transition: all 0.3s; letter-spacing: 0.03em; }
.filter-btn.active, .filter-btn:hover { background: var(--deep-ink); color: #fff; border-color: var(--deep-ink); }

/* ─── Exhibitor Grid ─── */
.exhibitor-grid-section { padding: 60px 32px 100px; }
.exhibitor-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.exhibitor-card { background: #fff; overflow: hidden; border: 1px solid var(--light-gray); transition: all 0.4s; }
.exhibitor-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(27,42,74,0.08); }
.exhibitor-card a { display: block; text-decoration: none; color: inherit; }
.exhibitor-card-img { height: 220px; position: relative; overflow: hidden; background: var(--cream, #faf8f5); }
.exhibitor-card-img img { width: 100%; height: 100%; object-fit: contain; }
.exhibitor-card-body { padding: 20px 24px; }
.exhibitor-card-tag { font-family: var(--serif-en); font-size: 9px; color: var(--gold); letter-spacing: 0.2em; margin-bottom: 6px; text-transform: uppercase; }
.exhibitor-card-name { font-family: var(--serif-ja); font-size: 17px; font-weight: 600; margin-bottom: 2px; }
.exhibitor-card-booth { font-family: var(--serif-en); font-size: 11px; color: var(--warm-gray); letter-spacing: 0.05em; margin-bottom: 10px; font-weight: 400; }
.exhibitor-card-desc { font-size: 13px; color: var(--warm-gray); line-height: 1.8; font-weight: 300; }

/* ─── Exhibitor Single ─── */
.exhibitor-single { padding: 140px 32px 80px; max-width: 900px; margin: 0 auto; }
.exhibitor-single-header { margin-bottom: 40px; }
.exhibitor-single-tag { font-family: var(--serif-en); font-size: 11px; color: var(--gold); letter-spacing: 0.3em; margin-bottom: 8px; }
.exhibitor-single-name { font-family: var(--serif-ja); font-size: 32px; font-weight: 600; margin-bottom: 4px; }
.exhibitor-single-booth { font-family: var(--serif-en); font-size: 14px; color: var(--warm-gray); margin-bottom: 24px; }
.exhibitor-carousel { margin-bottom: 40px; }
.exhibitor-carousel-main { position: relative; text-align: center; background: var(--cream, #faf8f5); border-radius: 8px; overflow: hidden; }
.exhibitor-carousel-main img { width: 100%; max-height: 500px; object-fit: contain; display: block; margin: 0 auto; }
.carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(27,42,74,0.6); color: #fff; border: none; width: 40px; height: 40px; border-radius: 50%; font-size: 18px; cursor: pointer; transition: background 0.2s; z-index: 2; }
.carousel-arrow:hover { background: rgba(27,42,74,0.85); }
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }
.carousel-counter { position: absolute; bottom: 12px; right: 16px; font-family: var(--serif-en); font-size: 12px; color: rgba(255,255,255,0.9); background: rgba(27,42,74,0.5); padding: 3px 10px; border-radius: 12px; }
.exhibitor-carousel-thumbs { display: flex; gap: 8px; margin-top: 12px; justify-content: center; flex-wrap: wrap; }
.carousel-thumb { width: 72px; height: 72px; object-fit: cover; border-radius: 6px; cursor: pointer; opacity: 0.5; transition: opacity 0.2s; border: 2px solid transparent; }
.carousel-thumb.is-active { opacity: 1; border-color: var(--gold); }
.carousel-thumb:hover { opacity: 0.85; }
@media (max-width: 600px) { .carousel-thumb { width: 56px; height: 56px; } .carousel-arrow { width: 34px; height: 34px; font-size: 15px; } }
.exhibitor-single-description { font-size: 15px; line-height: 2.2; color: var(--text-primary, #333); margin-bottom: 40px; padding: 32px; background: var(--cream, #faf8f5); border-left: 3px solid var(--gold); }
.exhibitor-single-content { font-size: 15px; line-height: 2.2; color: var(--warm-gray); margin-bottom: 40px; }
.exhibitor-single-links { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.exhibitor-link-btn { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; color: var(--deep-ink); background: transparent; border: 1.5px solid var(--deep-ink); transition: all 0.25s; }
.exhibitor-link-btn svg { flex-shrink: 0; }
.exhibitor-link-btn:hover { background: var(--deep-ink); color: #fff; transform: translateY(-2px); }
.exhibitor-link-ig { color: #e6683c; border-color: #e6683c; }
.exhibitor-link-ig:hover { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: transparent; color: #fff; }
.exhibitor-link-x { color: #000; border-color: #000; }
.exhibitor-link-x:hover { background: #000; border-color: #000; color: #fff; }
.exhibitor-link-fb { color: #1877f2; border-color: #1877f2; }
.exhibitor-link-fb:hover { background: #1877f2; border-color: #1877f2; color: #fff; }

/* ─── Exclusive Single ─── */
.exclusive-single { padding: 140px 32px 80px; max-width: 900px; margin: 0 auto; }
.exclusive-single-gallery { margin-bottom: 40px; }
.exclusive-single-gallery img { width: 100%; max-height: 500px; object-fit: cover; margin-bottom: 8px; }
.exclusive-single-gallery .gallery-thumbs { display: flex; gap: 8px; }
.exclusive-single-gallery .gallery-thumbs img { width: 80px; height: 80px; object-fit: cover; cursor: pointer; opacity: 0.7; transition: opacity 0.3s; }
.exclusive-single-gallery .gallery-thumbs img:hover { opacity: 1; }
.exclusive-single-info { margin-bottom: 40px; }
.exclusive-single-maker { font-size: 14px; color: var(--gold); margin-bottom: 8px; }
.exclusive-single-maker a { color: var(--gold); text-decoration: underline; }
.exclusive-single-name { font-family: var(--serif-ja); font-size: 28px; font-weight: 600; margin-bottom: 16px; }
.exclusive-single-price { font-family: var(--serif-en); font-size: 24px; font-weight: 600; margin-bottom: 8px; }
.exclusive-single-limit { font-size: 13px; color: var(--bordeaux); margin-bottom: 16px; }
.exclusive-single-method { display: inline-block; font-size: 12px; padding: 6px 16px; border: 1px solid var(--light-gray); margin-bottom: 24px; }
.exclusive-single-content { font-size: 15px; line-height: 2.2; color: var(--warm-gray); }

/* ─── Event Page ─── */
.event-overview { padding: 60px 32px; background: #fff; }
.event-overview-inner { max-width: 1000px; margin: 0 auto; }
.event-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-bottom: 40px; }
.event-card { padding: 28px; border: 1px solid var(--light-gray); text-align: center; }
.event-card-icon { font-size: 28px; margin-bottom: 8px; }
.event-card-label { font-family: var(--serif-en); font-size: 9px; color: var(--gold); letter-spacing: 0.3em; margin-bottom: 8px; }
.event-card-value { font-family: var(--serif-ja); font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.event-card-sub { font-size: 12px; color: var(--warm-gray); font-weight: 300; }
.event-cta { text-align: center; }

.schedule { padding: 80px 32px; }
.schedule-inner { max-width: 800px; margin: 0 auto; }
.schedule-item { display: flex; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--light-gray); align-items: baseline; }
.schedule-time { font-family: var(--serif-en); font-size: 20px; font-weight: 300; color: var(--deep-ink); flex-shrink: 0; width: 64px; letter-spacing: 0.02em; }
.schedule-event { font-size: 14px; font-weight: 400; line-height: 1.6; }
.schedule-desc { font-size: 12px; color: var(--warm-gray); margin-top: 4px; }

.floormap { padding: 80px 32px; background: #fff; }
.floormap-inner { max-width: 1000px; margin: 0 auto; }
.floormap-placeholder { background: var(--light-gray); height: 360px; display: flex; align-items: center; justify-content: center; border: 1px dashed var(--warm-gray); }
.floormap-placeholder-icon { font-size: 40px; margin-bottom: 12px; text-align: center; }
.floormap-placeholder-text { font-family: var(--serif-en); font-size: 12px; letter-spacing: 0.2em; text-align: center; }
.floormap-image img { width: 100%; height: auto; }

.access { padding: 80px 32px; }
.access-inner { max-width: 1000px; margin: 0 auto; }
.access-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.access-map iframe { width: 100%; height: 280px; border: 0; }
.access-directions h3 { font-family: var(--serif-ja); font-size: 16px; font-weight: 600; margin-bottom: 16px; }
.access-directions-body { font-size: 14px; line-height: 2.2; color: var(--warm-gray); font-weight: 300; }
.access-directions-body strong { color: var(--deep-ink); font-weight: 500; }

/* ─── FAQ ─── */
.faq-section { padding: 80px 32px; background: var(--deep-ink); color: #fff; }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-eyebrow { font-family: var(--serif-en); font-size: 11px; color: var(--gold); letter-spacing: 0.4em; margin-bottom: 8px; }
.faq-title { font-family: var(--serif-ja); font-size: 24px; font-weight: 600; margin-bottom: 8px; }
.faq-desc { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 40px; font-weight: 300; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-question { padding: 20px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question-text { font-family: var(--sans-ja); font-size: 15px; font-weight: 400; }
.faq-toggle { font-family: var(--serif-en); font-size: 20px; font-weight: 300; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 2; padding-bottom: 20px; font-weight: 300; }

/* ─── Contact Page ─── */
.contact-section { padding: 60px 32px 100px; max-width: 700px; margin: 0 auto; }
.contact-section .wpcf7 input[type="text"],
.contact-section .wpcf7 input[type="email"],
.contact-section .wpcf7 textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--light-gray);
  background: #fff;
  font-family: var(--sans-ja);
  font-size: 14px;
  margin-bottom: 20px;
  transition: border-color 0.3s;
}
.contact-section .wpcf7 input:focus,
.contact-section .wpcf7 textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-section .wpcf7 input[type="submit"] {
  background: var(--gold);
  color: var(--deep-ink);
  border: none;
  padding: 14px 40px;
  font-family: var(--serif-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: all 0.3s;
}
.contact-section .wpcf7 input[type="submit"]:hover {
  background: var(--gold-hover);
}
.contact-section .wpcf7 select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--light-gray);
  background: #fff;
  font-family: var(--sans-ja);
  font-size: 14px;
  margin-bottom: 20px;
  transition: border-color 0.3s;
  appearance: none;
}
.contact-section .wpcf7 select:focus { outline: none; border-color: var(--gold); }
.cf7-field { margin-bottom: 4px; }
.cf7-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--deep-ink);
  margin-bottom: 6px;
}
.cf7-required { color: var(--bordeaux); font-size: 11px; }
.contact-section .wpcf7-response-output {
  border: 1px solid var(--gold) !important;
  padding: 16px !important;
  margin: 20px 0 !important;
  font-size: 13px;
  text-align: center;
}
.contact-section p { font-size: 14px; line-height: 2; color: var(--warm-gray); margin-bottom: 16px; }
.contact-section p:last-of-type { margin-bottom: 32px; }

/* ─── Breadcrumb ─── */
.breadcrumb { padding: 12px 32px; padding-top: 96px; font-size: 12px; color: var(--warm-gray); max-width: 1200px; margin: 0 auto; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 8px; }

/* ─── Generic Page Content ─── */
.page-content { padding: 60px 32px 100px; max-width: 800px; margin: 0 auto; }
.page-content h2 { font-family: var(--serif-ja); font-size: 22px; font-weight: 600; margin-bottom: 16px; margin-top: 40px; }
.page-content h3 { font-family: var(--serif-ja); font-size: 18px; font-weight: 600; margin-bottom: 12px; margin-top: 32px; }
.page-content p { font-size: 14px; line-height: 2.2; color: var(--warm-gray); margin-bottom: 24px; font-weight: 300; }
.page-content ul, .page-content ol { margin-bottom: 24px; padding-left: 24px; list-style: revert; }
.page-content li { list-style: revert; }
.page-content li { font-size: 14px; line-height: 2; color: var(--warm-gray); font-weight: 300; }

/* ─── Footer ─── */
.site-footer { background: var(--deep-ink); color: #fff; padding: 80px 32px 40px; }
.footer-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 48px; margin-bottom: 60px; }
.footer-brand-name { font-family: var(--serif-en); font-size: 24px; font-weight: 600; letter-spacing: 0.15em; margin-bottom: 4px; }
.footer-brand-sub { font-family: var(--serif-en); font-size: 10px; color: var(--gold); letter-spacing: 0.4em; margin-bottom: 20px; }
.footer-brand-desc { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.8; font-weight: 300; }
.footer-section-title { font-family: var(--serif-en); font-size: 10px; color: var(--gold); letter-spacing: 0.3em; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 300; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; max-width: 1100px; margin: 0 auto; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.05em; }

/* ─── 404 ─── */
.error-404 { text-align: center; padding: 160px 32px 100px; }
.error-404 h1 { font-family: var(--serif-en); font-size: 120px; font-weight: 300; color: var(--light-gray); margin-bottom: 16px; }
.error-404 p { font-size: 16px; color: var(--warm-gray); margin-bottom: 32px; }

/* ─── Pagination ─── */
.pagination { display: flex; justify-content: center; gap: 8px; padding: 40px 0; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid var(--light-gray); font-family: var(--serif-en); font-size: 14px; transition: all 0.3s; }
.pagination .current { background: var(--deep-ink); color: #fff; border-color: var(--deep-ink); }
.pagination a:hover { background: var(--deep-ink); color: #fff; border-color: var(--deep-ink); }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 1/1; }
  .exhibitor-grid { grid-template-columns: 1fr; }
  .overview-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .event-cards { grid-template-columns: repeat(2, 1fr); }
  .access-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 24px 40px; }
  .exhibitor-single { padding: 120px 24px 60px; }
  .exclusive-single { padding: 120px 24px 60px; }
}
@media (max-width: 480px) {
  .overview-grid { grid-template-columns: 1fr; }
  .event-cards { grid-template-columns: 1fr; }
  .exclusives-grid { grid-template-columns: 1fr; }
  .exhibitor-hl-grid { grid-template-columns: 1fr; }
}

/* ─── Archive Grid ─── */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 32px 80px;
}
.archive-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  border: 1px solid var(--gold);
  text-align: center;
  transition: background 0.3s, color 0.3s;
}
.archive-card:hover {
  background: var(--deep-ink);
  color: var(--ivory);
}
.archive-card-year {
  font-family: var(--serif-en);
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.archive-card-edition {
  font-size: 12px;
  color: var(--warm-gray);
  margin-top: 4px;
}
.archive-card:hover .archive-card-edition { color: var(--gold); }
.archive-card-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  margin-top: 12px;
  color: var(--warm-gray);
}
.archive-card:hover .archive-card-label { color: var(--light-gray); }
@media (max-width: 600px) {
  .archive-grid { grid-template-columns: 1fr; gap: 16px; padding: 24px 16px 60px; }
  .archive-card { padding: 28px 20px; }
  .archive-card-year { font-size: 28px; }
}

/* ─── Archive Event Info ─── */
.archive-event-info { margin-top: 16px; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.archive-event-date { font-family: var(--serif-en); font-size: 15px; color: var(--gold); letter-spacing: 0.05em; }
.archive-event-venue { font-size: 14px; color: var(--warm-gray); }

/* ─── Archive Gallery ─── */
.archive-gallery-section { max-width: 1200px; margin: 0 auto; padding: 60px 32px 40px; }
.archive-gallery-featured { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px; margin-bottom: 32px; }
.archive-gallery-featured-item { text-align: center; }
.archive-gallery-featured-item img { width: 100%; height: auto; border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.archive-gallery-caption { display: block; margin-top: 8px; font-size: 11px; letter-spacing: 0.1em; color: var(--warm-gray); font-family: var(--serif-en); }
.archive-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 24px; }
.archive-gallery-item img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; aspect-ratio: 1; }
.archive-gallery-featured-item img,
.archive-gallery-item img { cursor: pointer; transition: opacity 0.2s; }
.archive-gallery-featured-item img:hover,
.archive-gallery-item img:hover { opacity: 0.85; }

/* Lightbox */
.nps-lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.85); align-items: center; justify-content: center; padding: 24px; cursor: zoom-out; }
.nps-lightbox.is-open { display: flex; }
.nps-lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 8px; box-shadow: 0 8px 40px rgba(0,0,0,0.4); cursor: default; }
.nps-lightbox-close { position: absolute; top: 16px; right: 20px; color: #fff; font-size: 32px; cursor: pointer; background: none; border: none; line-height: 1; opacity: 0.7; transition: opacity 0.2s; z-index: 10000; }
.nps-lightbox-close:hover { opacity: 1; }
.nps-lightbox-prev,
.nps-lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 36px; cursor: pointer; background: none; border: none; opacity: 0.6; transition: opacity 0.2s; padding: 16px; z-index: 10000; }
.nps-lightbox-prev:hover,
.nps-lightbox-next:hover { opacity: 1; }
.nps-lightbox-prev { left: 8px; }
.nps-lightbox-next { right: 8px; }

@media (max-width: 768px) {
  .archive-gallery-featured { grid-template-columns: 1fr; }
  .archive-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-gallery-section { padding: 40px 16px 24px; }
  .nps-lightbox-prev,
  .nps-lightbox-next { font-size: 28px; padding: 12px; }
}

/* ─── Event Info Table ─── */
.event-info-section { padding: 60px 0; }
.event-info-inner { max-width: 800px; margin: 0 auto; padding: 0 32px; }
.event-info-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.event-info-table th {
  text-align: left;
  vertical-align: top;
  padding: 16px 24px 16px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--deep-ink);
  white-space: nowrap;
  border-bottom: 1px solid var(--light-gray);
  width: 100px;
}
.event-info-table td {
  padding: 16px 0;
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.8;
  border-bottom: 1px solid var(--light-gray);
}
.event-info-sub { font-size: 12px; color: var(--warm-gray); opacity: 0.7; }
@media (max-width: 600px) {
  .event-info-table th { display: block; padding: 12px 0 0; border-bottom: none; }
  .event-info-table td { display: block; padding: 4px 0 12px; }
}

/* ─── Admission Section ─── */
.admission { padding: 60px 0; }
.admission-inner { max-width: 800px; margin: 0 auto; padding: 0 32px; }
.admission-content { margin-top: 32px; text-align: center; font-size: 15px; line-height: 2; color: var(--warm-gray); }
.admission-prices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0;
}
.admission-price-card {
  padding: 32px 24px;
  border: 1px solid var(--gold);
  text-align: center;
}
.admission-price-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
  margin-bottom: 8px;
}
.admission-price-value {
  font-family: var(--serif-en);
  font-size: 32px;
  font-weight: 300;
  color: var(--deep-ink);
}
.admission-note {
  font-size: 13px;
  color: var(--warm-gray);
}
@media (max-width: 600px) {
  .admission-prices { grid-template-columns: 1fr; gap: 16px; }
  .admission-price-value { font-size: 26px; }
}

/* ─── WordPress admin bar fix ─── */
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}
