/* THE POKER 神戸店 — v3 Premium
   配色: ブラック(#111114) × 淡灰(#f0f0f4) × ゴールド(#c89810)
   フォント: Noto Sans JP + Oswald + Cormorant Garamond
*/

/* ── Reset & Root ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #111114;
  --dark:     #1c1c22;
  --gray-bg:  #f0f0f4;
  --white:    #ffffff;
  --gold:     #c89810;
  --gold-lt:  #e8b820;
  --gold-dim: rgba(200,152,16,0.3);
  --text:     #1e1e26;
  --sub:      #72728a;
  --border:   #dcdce8;

  --container: 1100px;
  --radius: 8px;

  --gold-45: rgba(200,152,16,0.45);
  --gold-35: rgba(200,152,16,0.35);
  --gold-22: rgba(200,152,16,0.22);
  --gold-18: rgba(200,152,16,0.18);
  --gold-12: rgba(200,152,16,0.12);

  --z-grain: 9990;
  --z-float: 9000;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Grain overlay ── */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: var(--z-grain);
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ── Floating CTA ── */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: var(--z-float);
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  padding: 12px 20px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(200,152,16,0.45), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s;
}
.floating-cta:hover {
  background: var(--gold-lt);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(200,152,16,0.55), 0 4px 12px rgba(0,0,0,0.3);
}
.floating-cta-icon { display: inline-flex; }
.floating-cta-icon svg { width: 15px; height: 15px; }
.floating-cta-label { white-space: nowrap; }

/* ── Sample bar ── */
.sample-bar {
  background: var(--gold);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  padding: 6px 16px;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 200;
}

/* ── Navbar ── */
#navbar {
  position: fixed;
  top: 29px;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(17,17,20,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,152,16,0.35);
  transition: box-shadow 0.2s;
}
#navbar.scrolled {
  box-shadow: 0 4px 28px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
}
.logo-sub {
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  font-weight: 500;
}

.nav-links { list-style: none; display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: #d0d0d8;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 7px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.8rem;
}
.nav-cta:hover { background: var(--gold-lt) !important; color: var(--black) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* ── Gradient text ── */
.gradient-text {
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 45%, var(--gold-lt) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Ornament divider ── */
.ornament-divider {
  display: flex;
  align-items: center;
  padding: 4px 48px;
}
.ornament-divider::before,
.ornament-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}
.ornament-divider span {
  padding: 0 20px;
  color: rgba(200,152,16,0.45);
  font-size: 0.85rem;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 128px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: -10% 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 38%, rgba(200,152,16,0.14), transparent 68%),
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(28,28,34,0.9), transparent),
    linear-gradient(180deg, #0c0c10 0%, var(--dark) 55%, #0c0c10 100%);
  z-index: 0;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,14,0.78) 0%,
    rgba(10,10,14,0.55) 50%,
    rgba(10,10,14,0.30) 100%
  );
  z-index: 1;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-loaded { opacity: 1 !important; transform: none !important; }

.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(4.5rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}
.hero-title-the {
  display: block;
  color: var(--white);
}
.hero-title-poker {
  display: block;
}

.hero-store-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.hero-store {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.hero-store-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(200,152,16,0.55), transparent);
}
.hero-store-wrap .hero-store-line:last-child {
  background: linear-gradient(90deg, transparent, rgba(200,152,16,0.55));
}

.hero-tagline {
  color: #9090a8;
  font-size: 0.93rem;
  line-height: 1.9;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(200,152,16,0.45);
}
.btn-outline { border: 2px solid rgba(255,255,255,0.28); color: var(--white); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* Mascot card */
.hero-mascot { display: flex; justify-content: center; padding-bottom: 24px; }
.mascot-card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  box-shadow:
    0 0 0 1px rgba(200,152,16,0.25),
    0 20px 70px rgba(200,152,16,0.16),
    0 6px 30px rgba(0,0,0,0.5);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (hover: hover) {
  .mascot-card:hover {
    transform: translateY(-4px);
    box-shadow:
      0 0 0 1px rgba(200,152,16,0.4),
      0 28px 80px rgba(200,152,16,0.22),
      0 8px 36px rgba(0,0,0,0.55);
  }
}
.mascot-card-inner {
  overflow: hidden;
  border-radius: 10px;
}
.mascot-card img {
  width: 320px;
  display: block;
  border-radius: 10px;
}
.mascot-card-label {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 5px 20px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(200,152,16,0.4);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  color: rgba(255,255,255,0.3);
  font-family: 'Oswald', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
}
.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  30%  { opacity: 1; }
  80%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ── Lineage strip ── */
.lineage {
  background: var(--dark);
  border-top: 1px solid var(--gold-18);
  border-bottom: 1px solid var(--gold-18);
  padding: 18px 24px;
  text-align: center;
}
.lineage-main {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.22em;
  line-height: 1.8;
}

/* ── Shared sections ── */
.section { padding: 88px 0; }
.bg-white { background: var(--white); }
.bg-gray  { background: var(--gray-bg); }
.bg-dark  { background: var(--black); }

.section-head { text-align: center; margin-bottom: 56px; }
.section-suit { display: block; font-size: 1.3rem; color: var(--gold); margin-bottom: 10px; }
.section-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  color: var(--sub);
  margin-bottom: 10px;
  font-weight: 400;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
}
.section-head.light .section-eyebrow { color: #5858a0; }
.section-head.light .section-title { color: var(--white); }

/* ── Concept ── */
.concept-body {
  max-width: 700px;
  margin: 0 auto 52px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--sub);
  line-height: 1.95;
}
.pillars-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 20px; }
.pillar-lead  { grid-row: span 2; }
.pillar-card {
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-top: 3px solid var(--gold);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (hover: hover) {
  .pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  }
}
.pillar-suit { font-size: 1.3rem; color: var(--gold); margin-bottom: 12px; }
.pillar-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  color: var(--text);
}
.pillar-body { font-size: 0.85rem; color: var(--sub); line-height: 1.75; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px; }
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (hover: hover) {
  .pricing-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 8px 36px rgba(200,152,16,0.14);
}
.pricing-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.pricing-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.pricing-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.pricing-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.pricing-note { font-size: 0.8rem; color: var(--sub); line-height: 1.75; }
.pricing-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--sub);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Early bird banner */
.early-bird-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--dark);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  border-left: none;
  margin-bottom: 24px;
}
.early-bird-icon { flex-shrink: 0; display: flex; }
.early-bird-icon svg { width: 30px; height: 30px; }
.early-bird-body { flex: 1; min-width: 0; }
.early-bird-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.early-bird-note { font-size: 0.78rem; color: #7070a0; line-height: 1.65; }
.early-bird-badge {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 5px 12px;
  border-radius: 4px;
}

/* ── Events ── */
.events-list { display: flex; flex-direction: column; }
.event-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.event-item:last-child { border-bottom: none; }
.event-badge {
  flex-shrink: 0;
  width: 64px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 10px 6px;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  line-height: 1.3;
}
.event-badge span {
  display: block;
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 700;
  margin-top: 4px;
}
.event-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 4px;
}
.event-schedule { font-size: 0.8rem; color: var(--gold); font-weight: 500; margin-bottom: 8px; }
.event-notes { font-size: 0.85rem; color: var(--sub); line-height: 1.75; }

/* ── Access ── */
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.map-frame iframe { width: 100%; height: 100%; border: none; filter: brightness(0.94); }
.access-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}
.access-row { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.access-key {
  font-family: 'Oswald', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold);
  flex-shrink: 0;
  width: 64px;
  padding-top: 3px;
}
.access-val { color: var(--text); line-height: 1.7; }
.access-val a { color: var(--gold); transition: opacity 0.2s; }
.access-val a:hover { opacity: 0.75; }
.hours-table { border-collapse: collapse; }
.hours-table td { padding: 2px 12px 2px 0; font-size: 0.85rem; }
.hours-table td:first-child { color: var(--sub); width: 60px; }
.hours-table small { font-size: 0.72rem; color: var(--sub); display: block; margin-top: 6px; }

/* ── Contact ── */
.contact-grid { display: flex; justify-content: center; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.contact-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px 28px;
  min-width: 130px;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  color: var(--white);
}
.contact-tile:hover { background: rgba(200,152,16,0.12); border-color: var(--gold); color: var(--gold); }
.contact-tile-line .contact-tile-icon { font-size: 1rem; font-weight: 700; color: #06c755; }
.contact-tile-line:hover { background: rgba(6,199,85,0.1); border-color: #06c755; color: #06c755; }
.contact-tile-icon { font-size: 1.5rem; }
.contact-tile-icon svg { width: 26px; height: 26px; display: block; margin: 0 auto; }
.contact-tile-label { font-size: 0.78rem; letter-spacing: 0.06em; }
.contact-note { text-align: center; font-size: 0.82rem; color: #5050a0; line-height: 1.9; }

/* ── Footer ── */
.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 44px 0 32px;
  text-align: center;
}
.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.footer-suits {
  font-size: 1rem;
  color: rgba(200,152,16,0.22);
  letter-spacing: 0.32em;
  margin-bottom: 6px;
}
.footer-sub { font-size: 0.62rem; color: var(--gold); letter-spacing: 0.22em; margin-bottom: 18px; }
.footer-copy { font-size: 0.75rem; color: #44445a; margin-bottom: 6px; }
.footer-disclaimer { font-size: 0.7rem; color: #44445a; margin-bottom: 10px; }
.footer-kicker { font-size: 0.7rem; color: #44445a; }
.footer-kicker a { color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-mascot { order: -1; padding-bottom: 28px; }
  .mascot-card img { width: 240px; }
  .hero-actions { justify-content: center; }
  .hero-store-wrap { justify-content: center; }
  .hero-scroll-hint { display: none; }

  .pillars-grid { grid-template-columns: 1fr; gap: 14px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr; }


  .early-bird-banner { flex-wrap: wrap; gap: 12px; }
  .early-bird-badge { width: 100%; text-align: center; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(17,17,20,0.98);
    flex-direction: column;
    padding: 0;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-links a { display: block; padding: 14px 24px; }
  .nav-links .nav-cta { margin: 12px 16px; border-radius: var(--radius); text-align: center; display: block; }
  .nav-toggle { display: flex; }
  #navbar { position: relative; top: 0; }
}

@media (max-width: 640px) {
  .hero { padding-top: 40px; min-height: auto; padding-bottom: 60px; }
  .hero-title { font-size: clamp(3.5rem, 14vw, 5rem); }
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 40px; }
  .contact-grid { flex-direction: column; align-items: center; }
  .contact-tile { width: 100%; max-width: 280px; }
  .floating-cta-label { display: none; }
  .floating-cta { padding: 14px; border-radius: 50%; }
  .floating-cta-icon { font-size: 1.2rem; }
  .ornament-divider { padding: 4px 24px; }
}
