/* ==========================================================================
   PLAY — Entertainment Bar
   ========================================================================== */

:root {
  --bg: #120a10;
  --bg-soft: #1c1119;
  --surface: #251522;
  --foreground: #f5ece4;
  --muted: #ad8fa3;
  --accent: #f0c94e;
  --accent-strong: #ffdd7a;
  --accent-2: #ff4f8b;
  --accent-2-strong: #ff7ba9;
  --line: rgba(245, 236, 224, 0.12);

  --font-display: "Bebas Neue", "Noto Sans JP", "Noto Sans", "Manrope", sans-serif;
  --font-body: "Manrope", "Noto Sans JP", "Noto Sans", sans-serif;

  --container: 1200px;
  --radius: 4px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--foreground);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.accent {
  color: var(--accent-2);
}

/* Film grain overlay for texture */
.grain {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #17110a;
}

.btn-primary:hover {
  background: var(--accent-strong);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--line);
  color: var(--foreground);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--foreground);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 6px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  padding: 14px 8px;
}

.btn-ghost:hover {
  color: var(--accent);
}

/* ---------- Section labels ---------- */
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 0.01em;
  line-height: 1.05;
  text-transform: uppercase;
}

/* ---------- News ---------- */
.news-section {
  padding: 100px 0 40px;
}

.news-section .container {
  display: flex;
  flex-direction: column;
}

.news-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.news-head-text {
  max-width: 640px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.news-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.news-date {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.news-tag {
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-2);
}

.news-tag-event { color: var(--accent); background: color-mix(in srgb, var(--accent) 18%, transparent); }
.news-tag-info { color: var(--accent-2); background: color-mix(in srgb, var(--accent-2) 16%, transparent); }

.news-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.news-card-body {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 20px 0;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(14, 11, 10, 0.85);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  border-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--foreground);
}

.logo-mark {
  display: block;
  height: 30px;
  width: auto;
}

.logo.small .logo-mark {
  height: 26px;
}

.nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s ease;
  position: relative;
}

.nav a:hover,
.nav a.active {
  color: var(--foreground);
}

.nav-cta {
  margin-left: 24px;
  padding: 10px 20px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  background: rgba(255, 79, 139, 0.08);
  border: 1px solid rgba(255, 79, 139, 0.35);
  border-radius: 100px;
  flex-shrink: 0;
}

.lang-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: none;
  border: none;
  border-radius: 100px;
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.lang-btn:hover {
  color: var(--foreground);
}

.lang-btn.active {
  background: var(--accent-2);
  color: #1a0a12;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--foreground);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

/* Flex-centering a child taller than its container overflows equally in
   both directions, sliding content up behind the fixed header. Anchoring
   to the top instead keeps the header clear.
   Using min-height instead of a fixed height lets .hero grow to fit its
   content (long JA/VI copy, badges, etc.) instead of clipping the bottom
   of hero-sub/hero-actions when content exceeds the viewport. */

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-zoom 20s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 11, 10, 0.35) 0%, rgba(14, 11, 10, 0.55) 55%, rgba(14, 11, 10, 0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 96px;
}

/* Neon sign — static marquee replica, kept compact so it never crowds the
   fixed header's logo mark above it. */
.neon-sign {
  --neon-pink: #ff2f9e;
  --neon-gold: #ffb020;
  --neon-cyan: #00b3e6;
  --neon-green: #16d16a;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 32px;
}

.neon-frame {
  position: relative;
  border: 2px solid rgba(255, 214, 120, 0.5);
  border-radius: 16px;
  padding: 22px 30px 18px;
  background: rgba(10, 8, 12, 0.35);
  box-shadow: 0 0 40px rgba(255, 47, 158, 0.16), inset 0 0 24px rgba(0, 0, 0, 0.4);
}

.neon-bulbs {
  position: absolute;
  left: 14px;
  right: 14px;
  height: 6px;
  background-image: radial-gradient(circle, var(--neon-gold) 0 2px, transparent 2.6px),
    radial-gradient(circle, var(--neon-pink) 0 2px, transparent 2.6px),
    radial-gradient(circle, var(--neon-cyan) 0 2px, transparent 2.6px);
  background-size: 36px 6px;
  background-position: 0 0, 12px 0, 24px 0;
  background-repeat: repeat-x;
  animation: bulb-pulse 1.8s ease-in-out infinite;
}

.neon-bulbs-top { top: -4px; }
.neon-bulbs-bottom { bottom: -4px; }

@keyframes bulb-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.neon-word {
  display: flex;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.03em;
  animation: neon-flicker 5s infinite;
}

.neon-letter { text-shadow: 0 0 6px currentColor, 0 0 18px currentColor, 0 0 42px currentColor; }
.neon-p { color: #fff3e0; text-shadow: 0 0 6px #fff3e0, 0 0 18px var(--neon-pink), 0 0 42px var(--neon-pink); }
.neon-l { color: #fff9e0; text-shadow: 0 0 6px #fff9e0, 0 0 18px var(--neon-gold), 0 0 42px var(--neon-gold); }
.neon-a { color: #eafdff; text-shadow: 0 0 6px #eafdff, 0 0 18px var(--neon-cyan), 0 0 42px var(--neon-cyan); }
.neon-y { color: #f0fff2; text-shadow: 0 0 6px #f0fff2, 0 0 18px var(--neon-green), 0 0 42px var(--neon-green); }

.neon-tagline {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.45);
  }

.neon-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.neon-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.neon-badge svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.neon-badge-pink { border-color: rgba(255, 47, 158, 0.5); color: #ff8fc9; box-shadow: 0 0 14px rgba(255, 47, 158, 0.15); }
.neon-badge-cyan { border-color: rgba(0, 179, 230, 0.5); color: #7fe4ff; box-shadow: 0 0 14px rgba(0, 179, 230, 0.15); }
.neon-badge-darts { border-color: rgba(255, 122, 26, 0.5); color: #ffb27a; box-shadow: 0 0 14px rgba(255, 122, 26, 0.15); }
.neon-badge-gold { border-color: rgba(255, 176, 32, 0.5); color: #ffdb8a; box-shadow: 0 0 14px rgba(255, 176, 32, 0.15); }
.neon-badge-purple { border-color: rgba(184, 146, 255, 0.5); color: #b892ff; box-shadow: 0 0 14px rgba(184, 146, 255, 0.15); }
.neon-badge-green { border-color: rgba(22, 209, 106, 0.5); color: #8af0c0; box-shadow: 0 0 14px rgba(22, 209, 106, 0.15); }

@keyframes neon-flicker {
  0%, 17%, 19%, 21%, 54%, 56%, 100% { opacity: 1; }
  18%, 20%, 55% { opacity: 0.85; }
}

.eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 20px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7.5rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

/* Noto Sans JP/Sans fallback glyphs (CJK full-width characters, Vietnamese
   diacritics) sit taller in their em box than Bebas Neue's Latin caps, so
   the 0.98 line-height above clips the top/bottom of those glyphs. Give
   ja/vi headings a touch more breathing room. A smaller max size also
   keeps mixed-script lines (e.g. "終わらないPLAY。") from reading as
   mismatched, since the Latin word still renders in Bebas Neue at a much
   larger visual weight than the CJK/Vietnamese fallback glyphs. */
:lang(ja) .hero-title,
:lang(vi) .hero-title {
  font-size: clamp(2.4rem, 7.5vw, 5.5rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-sub {
  max-width: 520px;
  font-size: 1.1rem;
  color: var(--foreground);
  opacity: 0.9;
  margin-bottom: 36px;
}

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

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 44px;
  border: 2px solid rgba(243, 236, 226, 0.5);
  border-radius: 20px;
}

.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--accent-strong);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll-cue 1.8s ease infinite;
}

@keyframes scroll-cue {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 24px; }
  100% { opacity: 0; top: 24px; }
}

/* ==========================================================================
   Marquee
   ========================================================================== */

.marquee {
  background: var(--accent);
  color: #17110a;
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 20px;
  animation: marquee 26s linear infinite;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.marquee-track span {
  padding: 0 6px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Intro
   ========================================================================== */

.intro {
  padding: 120px 24px 100px;
  max-width: 900px;
}

.intro-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  text-transform: uppercase;
  line-height: 1.12;
  margin-bottom: 24px;
}

.intro-body {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 620px;
}

/* ==========================================================================
   Floors
   ========================================================================== */

.floors {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.floor {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 64px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px;
  border-top: 1px solid var(--line);
}

.floor-reverse {
  direction: rtl;
}

.floor-reverse .floor-media,
.floor-reverse .floor-copy {
  direction: ltr;
}

.floor-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
}

.floor-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.floor-media img[src*="real-billiards"] {
  object-position: 75% 60%;
}

.floor-media img[src*="real-golf-wide"] {
  object-position: 60% 50%;
}

.floor:hover .floor-media img {
  transform: scale(1.05);
}

.floor-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  border: 1px solid var(--accent-2);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.floor-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1;
}

.floor-desc {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 460px;
  margin-bottom: 24px;
}

.floor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.floor-tags li {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--foreground);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 100px;
}

/* ==========================================================================
   Talent / Play With Us
   ========================================================================== */

.talent-hero {
  position: relative;
  height: 72vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.talent-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.talent-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-zoom 20s ease-in-out infinite alternate;
}

.talent-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
}

.roles {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.role-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 64px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px;
  border-top: 1px solid var(--line);
}

.role-card-reverse {
  direction: rtl;
}

.role-card-reverse .role-media,
.role-card-reverse .role-copy {
  direction: ltr;
}

.role-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
}

.role-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.role-card:hover .role-media img {
  transform: scale(1.05);
}

.talent-cta {
  padding: 120px 0;
  border-top: 1px solid var(--line);
  text-align: center;
}

.talent-cta-inner {
  max-width: 620px;
  margin: 0 auto;
}

.talent-cta-body {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 20px auto 36px;
  max-width: 480px;
}

.talent-cta .visit-actions {
  justify-content: center;
}

.talent-cta-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 28px;
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery-section {
  padding: 120px 0 100px;
  background: var(--bg-soft);
}

.gallery-section > .container {
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14, 11, 10, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: saturate(0.92);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.05);
}

.gallery-item:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 3; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; }

/* ==========================================================================
   Info / Hours
   ========================================================================== */

.info {
  padding: 100px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.info-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.info-big {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.hours-rows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.hours-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hours-row .info-big {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.hours-days {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.info-note {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 320px;
}

/* ==========================================================================
   Price
   ========================================================================== */

.price-section {
  padding: 120px 0 100px;
}

.price-intro {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-top: 18px;
}

.happy-banner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin-top: 40px;
  padding: 28px 32px;
  border-radius: var(--radius);
  background: linear-gradient(100deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #1a1406;
}

.happy-banner-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(26, 20, 6, 0.14);
  white-space: nowrap;
}

.happy-banner-value {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  white-space: nowrap;
}

.happy-banner-value .accent {
  color: #1a1406;
  opacity: 0.6;
}

.happy-banner-note {
  max-width: 480px;
}

.happy-banner-note.happy-banner-value {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  white-space: normal;
  opacity: 1;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.price-card-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 16px;
}

.price-card-value {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}

.price-card-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.price-card-list + .price-card-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}

.price-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.price-list li.price-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.price-list li span:last-child {
  font-family: var(--font-display);
  color: var(--accent);
  white-space: nowrap;
}

.price-footnote {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 40px;
}

.community-banner {
  background: linear-gradient(90deg, var(--accent-2) 0%, var(--accent) 100%);
  padding: 28px 0;
}

.community-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.community-banner-eyebrow {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  white-space: nowrap;
}

.community-banner-text {
  color: var(--bg);
  font-weight: 600;
  font-size: 1rem;
  max-width: 640px;
}

/* ==========================================================================
   Visit
   ========================================================================== */

.visit {
  padding: 120px 0;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.visit-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  max-width: 420px;
  margin: 24px 0;
  border: 1px solid var(--line);
}

.visit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visit-address {
  font-size: 1.2rem;
  color: var(--muted);
  margin: 0 0 32px;
}

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

.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3) contrast(1.05) invert(0.92) hue-rotate(180deg);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-inner p {
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

/* ==========================================================================
   Scroll reveal animations
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal-in 0.8s ease forwards;
  animation-delay: var(--d, 0s);
}

@keyframes reveal-in {
  to { opacity: 1; transform: translateY(0); }
}

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children within a section slightly */
.floor .reveal-up:nth-child(1) { transition-delay: 0s; }
.floor .floor-copy .reveal-up:nth-child(1) { transition-delay: 0.05s; }
.floor .floor-copy .reveal-up:nth-child(2) { transition-delay: 0.12s; }
.floor .floor-copy .reveal-up:nth-child(3) { transition-delay: 0.19s; }
.floor .floor-copy .reveal-up:nth-child(4) { transition-delay: 0.26s; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-up,
  .hero-media img,
  .marquee-track {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .floor,
  .floor-reverse,
  .role-card,
  .role-card-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
    padding: 56px 24px;
  }

  .talent-hero {
    height: auto;
    min-height: 520px;
    padding: 140px 0 60px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(n) { grid-column: span 1; }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--bg-soft);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    padding: 0 40px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    border-left: 1px solid var(--line);
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav a {
    font-size: 1.1rem;
  }

  .nav-cta {
    display: none;
  }

  .lang-switch {
    gap: 1px;
    padding: 2px;
  }

  .lang-btn {
    font-size: 0.65rem;
    padding: 5px 8px;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .intro {
    padding: 80px 24px 64px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 1;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}
