/* =========================================================
   FONTS
   ========================================================= */

@font-face {
  font-family: 'Roboto Slab';
  src: url('/assets/fonts/Roboto_Slab/RobotoSlab-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto Slab';
  src: url('/assets/fonts/Roboto_Slab/RobotoSlab-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =========================================================
   VARIABLES
   ========================================================= */

:root {
  --color-bg: #050407;
  --color-bg-soft: #0c0a10;
  --color-panel: #111017;
  --color-panel-2: #181320;
  --color-violet: #7f3af7;
  --color-violet-soft: #a875ff;
  --color-gold: #c9a45c;
  --color-warm: #f1c27d;
  --color-white: #ffffff;
  --color-text: #f6f2ff;
  --color-muted: #c9c0d8;
  --color-border: rgba(255, 255, 255, 0.14);
  --shadow-violet: 0 24px 80px rgba(127, 58, 247, 0.22);

  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 2rem;

  --transition: 0.25s ease;
  --transition-slow: 0.45s ease;

  --container-max: 75rem;
  --container-pad: 1.25rem;

  --header-h: 4.5rem;
}

/* =========================================================
   RESET / BASE
   ========================================================= */

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  background: linear-gradient(135deg, #050407 0%, #10091c 48%, #050407 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* =========================================================
   SCROLLBAR
   ========================================================= */

* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-violet) var(--color-bg-soft);
}

::-webkit-scrollbar {
  width: 0.75rem;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-soft);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-violet), var(--color-gold));
  border-radius: 999px;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}
h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
}
h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
}
h4 {
  font-size: 1.125rem;
}

p {
  color: var(--color-muted);
  max-width: 65ch;
}

strong {
  font-weight: 700;
  color: var(--color-text);
}

.text-gold {
  color: var(--color-gold);
}
.text-violet {
  color: var(--color-violet-soft);
}
.text-muted {
  color: var(--color-muted);
}
.text-center {
  text-align: center;
}
.text-white {
  color: var(--color-white);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.0625rem;
  max-width: 55ch;
}

/* =========================================================
   LAYOUT
   ========================================================= */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: 5rem;
}

.section--tight {
  padding-block: 3rem;
}

.section--flush {
  padding-block: 0;
}

.page-wrapper {
  padding-top: var(--header-h);
}

/* =========================================================
   SKIP LINK
   ========================================================= */

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background: var(--color-violet);
  color: var(--color-white);
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.75rem 1.75rem;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition:
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--color-violet-soft);
  outline-offset: 3px;
}

.btn--primary {
  background-color: var(--color-violet);
  color: var(--color-white);
  border-color: var(--color-violet);
}

.btn--primary:hover {
  background-color: var(--color-violet-soft);
  border-color: var(--color-violet-soft);
  box-shadow: var(--shadow-violet);
  transform: translateY(-1px);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn--secondary:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-1px);
}

.btn--gold {
  background-color: var(--color-gold);
  color: var(--color-bg);
  border-color: var(--color-gold);
}

.btn--gold:hover {
  background-color: var(--color-warm);
  border-color: var(--color-warm);
  transform: translateY(-1px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background-color: rgba(5, 4, 7, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 100%;
}

.site-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.site-header__logo img {
  height: 2.25rem;
  width: auto;
}

.site-header__cta {
  flex-shrink: 0;
  display: none;
}

/* =========================================================
   NAVIGATION
   ========================================================= */

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav__list {
  display: none;
  list-style: none;
}

.nav__link {
  display: block;
  padding: 0.625rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--color-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--color-text);
}

.nav__link--active {
  color: var(--color-violet-soft);
  font-weight: 700;
}

.nav__link:focus-visible {
  outline: 2px solid var(--color-violet-soft);
  outline-offset: 2px;
}

/* =========================================================
   HAMBURGER TOGGLE
   ========================================================= */

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0.5rem;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition);
}

.nav-toggle:hover {
  background-color: rgba(127, 58, 247, 0.12);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--color-violet-soft);
  outline-offset: 2px;
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.nav-toggle--active .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle--active .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle--active .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .nav-toggle__bar {
    transition: none;
  }
}

/* =========================================================
   MOBILE NAV — OPEN STATE
   ========================================================= */

.nav--open .nav__list {
  display: flex;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  flex-direction: column;
  gap: 0.25rem;
  background-color: var(--color-panel);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem;
}

.nav--open .nav__link {
  font-size: 1.0625rem;
  padding: 0.875rem 1.25rem;
}

.nav--open .nav__link:hover {
  background-color: rgba(127, 58, 247, 0.1);
  color: var(--color-text);
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background-color: var(--color-bg-soft);
  border-top: 1px solid var(--color-border);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-block: 3.5rem;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-footer__logo-link img {
  height: 4rem;
  width: auto;
}

.site-footer__tagline {
  font-size: 0.9375rem;
  color: var(--color-muted);
  max-width: 22ch;
  line-height: 1.55;
}

.site-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__nav-link {
  font-size: 0.9375rem;
  color: var(--color-muted);
  transition: color var(--transition);
}

.site-footer__nav-link:hover {
  color: var(--color-gold);
}

.site-footer__nav-link:focus-visible {
  outline: 2px solid var(--color-violet-soft);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.site-footer__locations {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.site-footer__address {
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.8;
}

.site-footer__address strong {
  color: var(--color-text);
  display: block;
  margin-bottom: 0.2rem;
}

.site-footer__contact-link {
  color: var(--color-muted);
  transition: color var(--transition);
}

.site-footer__contact-link:hover {
  color: var(--color-gold);
}

.site-footer__contact-link:focus-visible {
  outline: 2px solid var(--color-violet-soft);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.site-footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-block: 1.25rem;
}

.site-footer__bottom .container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
}

.site-footer__legal-link {
  font-size: 0.8125rem;
  color: var(--color-muted);
  transition: color var(--transition);
}

.site-footer__legal-link:hover {
  color: var(--color-violet-soft);
}

.site-footer__legal-link:focus-visible {
  outline: 2px solid var(--color-violet-soft);
  outline-offset: 2px;
  border-radius: 2px;
}

.site-footer__copyright {
  font-size: 0.8125rem;
  color: var(--color-muted);
  opacity: 0.65;
  max-width: none;
}

/* =========================================================
   HERO SECTION
   ========================================================= */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

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

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 4, 7, 0.45) 0%,
    rgba(5, 4, 7, 0.65) 55%,
    rgba(5, 4, 7, 0.96) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: 2rem var(--container-pad);
  max-width: 56rem;
  width: 100%;
}

.hero__logo {
  margin-bottom: 0.25rem;
}

.hero__logo img {
  height: 4rem;
  width: auto;
}

.hero__title {
  font-size: clamp(2.25rem, 6vw, 4rem);
  color: var(--color-white);
  line-height: 1.1;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-muted);
  max-width: 44ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-muted);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
}

.hero__scroll-line {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.5);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll-line {
    animation: none;
  }
}

/* =========================================================
   PAGE HERO (subpages)
   ========================================================= */

.page-hero {
  position: relative;
  min-height: 22rem;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-h);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 4, 7, 0.35) 0%,
    rgba(5, 4, 7, 0.92) 100%
  );
  z-index: 1;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 3rem var(--container-pad);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
}

.page-hero__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--color-white);
}

/* =========================================================
   SPLIT SECTIONS
   ========================================================= */

.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

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

.split-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.split-section__media:hover img {
  transform: scale(1.03);
}

.split-section__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (prefers-reduced-motion: reduce) {
  .split-section__media img {
    transition: none;
  }
}

/* =========================================================
   CARDS
   ========================================================= */

.card {
  background-color: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.card:hover {
  border-color: rgba(127, 58, 247, 0.3);
}

.card--glass {
  background: rgba(17, 16, 23, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(127, 58, 247, 0.2);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.card--glass:hover {
  border-color: rgba(127, 58, 247, 0.5);
  box-shadow: var(--shadow-violet);
  transform: translateY(-4px);
}

.card--feature {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 1.5rem;
}

.card__icon {
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(127, 58, 247, 0.12);
  border: 1px solid rgba(127, 58, 247, 0.25);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  color: var(--color-violet-soft);
  flex-shrink: 0;
}

.card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
}

.card__text {
  font-size: 0.9375rem;
  color: var(--color-muted);
  max-width: none;
}

.card--menu-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  border-left: 2px solid transparent;
  border-bottom: 1px solid var(--color-border);
  transition:
    border-left-color var(--transition),
    background-color var(--transition);
}

.card--menu-item:hover {
  border-left-color: var(--color-gold);
  background-color: rgba(201, 164, 92, 0.05);
  box-shadow: none;
}

.item-name {
  font-weight: 700;
  color: var(--color-text);
  font-size: 1rem;
}

.item-name-en {
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--color-muted);
  margin-top: 0.15rem;
}

.item-price {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-gold);
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .card--glass {
    transition: none;
  }
}

/* =========================================================
   GALLERY GRID
   ========================================================= */

.gallery-grid {
  display: grid;
  gap: 0.625rem;
}

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

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.gallery-grid__item:hover img {
  transform: scale(1.05);
}

.gallery-grid--mosaic {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 13rem;
}

.gallery-grid--mosaic .gallery-grid__item:nth-child(1),
.gallery-grid--mosaic .gallery-grid__item:nth-child(2) {
  grid-row: span 2;
}

.gallery-grid--full {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 14rem;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-grid__item img {
    transition: none;
  }
}

/* =========================================================
   CTA SECTION
   ========================================================= */

.cta-section {
  position: relative;
  overflow: hidden;
  padding-block: 5rem;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 7, 0.8);
  z-index: 1;
}

.cta-section__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  max-width: 38rem;
  margin-inline: auto;
  padding: 3rem 1.5rem;
  border: 1px solid rgba(201, 164, 92, 0.28);
  border-radius: 50% / 10%;
}

.cta-section__title {
  color: var(--color-white);
}

.cta-section__text {
  color: var(--color-muted);
  text-align: center;
  max-width: 38ch;
}

.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* =========================================================
   FEATURE GRID (homepage)
   ========================================================= */

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* =========================================================
   MENU TEASER STRIP
   ========================================================= */

.menu-teaser {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.menu-teaser__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.menu-teaser__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.menu-teaser__item:hover img {
  transform: scale(1.04);
}

.menu-teaser__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(5, 4, 7, 0.92), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.menu-teaser__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
}

.menu-teaser__name span {
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--color-gold);
  margin-top: 0.2rem;
}

@media (prefers-reduced-motion: reduce) {
  .menu-teaser__item img {
    transition: none;
  }
}

/* =========================================================
   EVENTS / POKER STRIP
   ========================================================= */

.event-strip {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 22rem;
  display: flex;
  align-items: flex-end;
}

.event-strip__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.event-strip__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-strip__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5, 4, 7, 0.88) 0%,
    rgba(5, 4, 7, 0.4) 100%
  );
  z-index: 1;
}

.event-strip__content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 32rem;
}

/* =========================================================
   CONTACT PREVIEW (homepage)
   ========================================================= */

.contact-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-preview__block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-preview__location {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.contact-preview__address {
  font-style: normal;
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.contact-preview__address a {
  color: var(--color-muted);
  transition: color var(--transition);
}

.contact-preview__address a:hover {
  color: var(--color-gold);
}

.contact-preview__address a:focus-visible {
  outline: 2px solid var(--color-violet-soft);
  outline-offset: 2px;
  border-radius: 2px;
}

/* =========================================================
   STEP CARDS (how-to-play)
   ========================================================= */

.step-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  counter-reset: step-counter;
}

.step-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem;
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  counter-increment: step-counter;
  transition: border-color var(--transition);
}

.step-card:hover {
  border-color: rgba(127, 58, 247, 0.35);
}

.step-card__number {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(127, 58, 247, 0.12);
  border: 1px solid rgba(127, 58, 247, 0.3);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-violet-soft);
}

.step-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
}

.step-card__text {
  font-size: 0.9375rem;
  color: var(--color-muted);
  max-width: none;
}

/* =========================================================
   TIMELINE BLOCKS (more-about-games)
   ========================================================= */

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--color-violet),
    var(--color-gold),
    transparent
  );
}

.timeline__item {
  position: relative;
  padding: 1.5rem 0 2rem 1.5rem;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -2.375rem;
  top: 1.75rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--color-violet);
  border: 2px solid var(--color-bg);
  box-shadow: 0 0 0 2px var(--color-violet);
}

.timeline__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.4rem;
}

.timeline__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.timeline__text {
  font-size: 0.9375rem;
  color: var(--color-muted);
  max-width: 55ch;
}

/* =========================================================
   HAND RANKINGS (how-to-play)
   ========================================================= */

.hand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.hand-card {
  padding: 1rem;
  background: var(--color-panel-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: border-color var(--transition);
}

.hand-card:hover {
  border-color: rgba(201, 164, 92, 0.4);
}

.hand-card__rank {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.hand-card__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text);
}

.hand-card__example {
  font-size: 1.125rem;
  color: var(--color-muted);
  margin-top: 0.25rem;
  letter-spacing: 0.05em;
}

/* =========================================================
   RESPONSIBLE PLAY NOTICE
   ========================================================= */

.responsible-notice {
  padding: 1.25rem 1.5rem;
  background: rgba(127, 58, 247, 0.07);
  border: 1px solid rgba(127, 58, 247, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--color-muted);
  max-width: none;
}

.responsible-notice strong {
  color: var(--color-violet-soft);
}

/* =========================================================
   LEGAL PAGE
   ========================================================= */

.legal-page {
  max-width: 48rem;
  margin-inline: auto;
  padding: 2rem var(--container-pad) 5rem;
}

.legal-page h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-gold);
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.25rem;
  color: var(--color-violet-soft);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-page p,
.legal-page li {
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
  max-width: none;
  line-height: 1.75;
}

.legal-page ul,
.legal-page ol {
  padding-left: 1.5rem;
  list-style: disc;
  margin-bottom: 1rem;
}

.legal-page ol {
  list-style: decimal;
}

.legal-page a {
  color: var(--color-violet-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page a:hover {
  color: var(--color-gold);
}

.legal-page a:focus-visible {
  outline: 2px solid var(--color-violet-soft);
  outline-offset: 2px;
  border-radius: 2px;
}

.legal-updated {
  font-size: 0.8125rem;
  color: var(--color-muted);
  opacity: 0.6;
  margin-bottom: 2rem;
  max-width: none;
}

/* =========================================================
   404 PAGE
   ========================================================= */

.error-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--header-h) var(--container-pad) 4rem;
  text-align: center;
}

.error-page__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.error-page__code {
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-violet);
  opacity: 0.85;
}

.error-page__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-white);
}

.error-page__text {
  color: var(--color-muted);
  max-width: 40ch;
  text-align: center;
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================================
   UTILITIES
   ========================================================= */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mt-auto {
  margin-top: auto;
}
.w-full {
  width: 100%;
}
.gap-sm {
  gap: 1rem;
}
.gap-md {
  gap: 1.5rem;
}
.gap-lg {
  gap: 2.5rem;
}

/* =========================================================
   MEDIA QUERIES — TABLET 640px+
   ========================================================= */

@media (min-width: 640px) {
  :root {
    --container-pad: 2rem;
  }

  .gallery-grid--mosaic {
    grid-auto-rows: 18rem;
  }

  .gallery-grid--full {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 15rem;
  }

  .menu-teaser {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu-teaser__item img {
    aspect-ratio: 3 / 4;
  }

  .hand-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-preview {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__bottom .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .step-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   MEDIA QUERIES — DESKTOP 1024px+
   ========================================================= */

@media (min-width: 1024px) {
  :root {
    --container-pad: 2.5rem;
  }

  /* Header */
  .site-header__cta {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav__list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
  }

  .nav--open .nav__list {
    position: static;
    background: none;
    border: none;
    padding: 0;
    flex-direction: row;
    gap: 0.25rem;
  }

  /* Split sections */
  .split-section {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .split-section--reverse .split-section__media {
    order: 2;
  }

  .split-section--reverse .split-section__content {
    order: 1;
  }

  .split-section__media {
    aspect-ratio: auto;
    min-height: 28rem;
  }

  /* Gallery */
  .gallery-grid--mosaic {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 16rem;
  }

  .gallery-grid--full {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 18rem;
  }

  /* Footer */
  .site-footer__inner {
    grid-template-columns: 1.5fr 1fr 1.75fr;
    gap: 3rem;
  }

  .site-footer__locations {
    flex-direction: row;
    gap: 2.5rem;
  }

  /* Feature grid */
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* CTA */
  .cta-section__inner {
    padding: 4rem 3rem;
  }

  /* Event strip */
  .event-strip {
    min-height: 32rem;
  }

  /* Step list */
  .step-list {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Hand grid */
  .hand-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* =========================================================
   MEDIA QUERIES — WIDE 1280px+
   ========================================================= */

@media (min-width: 1280px) {
  :root {
    --container-pad: 3rem;
  }
}

/* =========================================================
   SECTION HELPERS
   ========================================================= */

.section--panel {
  background-color: var(--color-panel);
}

.section--bg-soft {
  background-color: var(--color-bg-soft);
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header .section-intro {
  margin-top: 0.5rem;
}

.section-cta {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

/* =========================================================
   PROMO BANNER (full-width image strip)
   ========================================================= */

.promo-banner {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.promo-banner__media {
  width: 100%;
  height: 100%;
}

.promo-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.promo-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 7, 0.28);
}

@media (min-width: 640px) {
  .promo-banner {
    height: 100%;
  }
}

@media (min-width: 1024px) {
  .promo-banner {
    height: 100%;
  }
}

/* =========================================================
   CONTACT PREVIEW SECTION (homepage)
   ========================================================= */

.contact-preview-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 0;
}

.contact-preview-section__header {
  display: flex;
  flex-direction: column;
}

.section--contact-bg {
  position: relative;
  overflow: hidden;
}

.contact-section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.18;
  filter: saturate(0.6);
}

.contact-section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 7, 20, 0.82) 0%,
    rgba(16, 10, 35, 0.72) 100%
  );
  z-index: 1;
}

.section--contact-bg .container {
  position: relative;
  z-index: 2;
}

/* =========================================================
   CARD LINK
   ========================================================= */

.card__link {
  margin-top: auto;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-violet-soft);
  transition: color var(--transition);
  text-decoration: none;
}

.card__link:hover {
  color: var(--color-gold);
}

.card__link:focus-visible {
  outline: 2px solid var(--color-violet-soft);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* =========================================================
   SPLIT SECTION — CLIPPED MEDIA VARIANT
   ========================================================= */

.split-section__media--clipped {
  border-radius: var(--radius-lg);
  clip-path: polygon(0 0, 92% 0, 100% 8%, 100% 100%, 8% 100%, 0 92%);
}

@media (min-width: 1024px) {
  .split-section__media--clipped {
    clip-path: polygon(0 0, 90% 0, 100% 6%, 100% 100%, 10% 100%, 0 94%);
  }
}

/* =========================================================
   PAGE HERO — VARIANTS & SUB-TEXT
   ========================================================= */

.page-hero--tall {
  min-height: 28rem;
}

.page-hero__sub {
  font-size: 1.0625rem;
  color: var(--color-muted);
  margin-top: 0.75rem;
  max-width: 52ch;
}

@media (min-width: 1024px) {
  .page-hero--tall {
    min-height: 34rem;
  }
}

/* =========================================================
   LOUNGE PANELS
   ========================================================= */

.lounge-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.lounge-panel {
  background: var(--color-panel-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    border-color var(--transition),
    transform var(--transition);
}

.lounge-panel:hover {
  border-color: rgba(127, 58, 247, 0.3);
  transform: translateY(-4px);
}

.lounge-panel__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.lounge-panel__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.lounge-panel:hover .lounge-panel__img img {
  transform: scale(1.04);
}

.lounge-panel__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lounge-panel__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.lounge-panel__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
}

.lounge-panel__text {
  font-size: 0.9375rem;
  color: var(--color-muted);
  max-width: none;
}

@media (prefers-reduced-motion: reduce) {
  .lounge-panel {
    transition: none;
  }
  .lounge-panel__img img {
    transition: none;
  }
}

@media (min-width: 640px) {
  .lounge-panels {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================================================
   MENU PAGE — NAV TABS
   ========================================================= */

.menu-nav-wrapper {
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding-block: 0.875rem;
}

.menu-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.menu-nav__link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-muted);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition:
    color var(--transition),
    border-color var(--transition),
    background-color var(--transition);
  white-space: nowrap;
}

.menu-nav__link:hover {
  color: var(--color-text);
  border-color: var(--color-border);
}

.menu-nav__link:focus-visible {
  outline: 2px solid var(--color-violet-soft);
  outline-offset: 2px;
}

.menu-nav__link.is-active {
  background: rgba(127, 58, 247, 0.15);
  color: var(--color-violet-soft);
  border-color: rgba(127, 58, 247, 0.3);
}

/* =========================================================
   MENU PAGE — CATEGORIES & ITEMS
   ========================================================= */

.menu-category {
  margin-bottom: 4rem;
  scroll-margin-top: calc(var(--header-h) + 4rem);
}

.menu-category__header {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-border);
}

.menu-category__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-white);
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.menu-category__title-en {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-gold);
  opacity: 0.8;
}

.menu-category__image {
  margin-bottom: 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 14rem;
  border: 1px solid var(--color-border);
}

.menu-category__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.menu-items {
  display: flex;
  flex-direction: column;
}

.menu-footer {
  text-align: center;
  padding: 2.5rem 0 1rem;
  font-size: 0.9375rem;
  color: var(--color-muted);
  letter-spacing: 0.12em;
  border-top: 1px solid var(--color-border);
  opacity: 0.7;
}

@media (min-width: 1024px) {
  .menu-category__image {
    height: 18rem;
  }
}

/* =========================================================
   RESPONSIBLE SECTION (more-about-games)
   ========================================================= */

.responsible-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 48rem;
  margin-inline: auto;
}

.responsible-section .section-cta {
  margin-top: 0;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}

/* =========================================================
   ETIQUETTE LIST (how-to-play)
   ========================================================= */

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

.etiquette-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.etiquette-item:last-child {
  border-bottom: none;
}

.etiquette-item__mark {
  flex-shrink: 0;
  font-size: 0.875rem;
  color: var(--color-gold);
  margin-top: 0.35rem;
}

.etiquette-item__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.375rem;
}

.etiquette-item__text {
  font-size: 0.9375rem;
  color: var(--color-muted);
  max-width: none;
}

/* =========================================================
   HOW TO JOIN BLOCK (how-to-play)
   ========================================================= */

.how-to-join {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 52rem;
}

.how-to-join__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* =========================================================
   CONTACTS PAGE
   ========================================================= */

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.location-card {
  padding: 2rem;
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  transition: border-color var(--transition);
}

.location-card:hover {
  border-color: rgba(201, 164, 92, 0.35);
}

.location-card__city {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.location-card__name {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-white);
}

.location-card__details {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.location-card__row {
  display: flex;
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9375rem;
  color: var(--color-muted);
}

.location-card__row:first-child {
  padding-top: 0;
}

.location-card__row:last-child {
  border-bottom: none;
}

.location-card__row address {
  font-style: normal;
  line-height: 1.6;
}

.location-card__row a {
  color: var(--color-muted);
  transition: color var(--transition);
}

.location-card__row a:hover {
  color: var(--color-gold);
}

.location-card__row a:focus-visible {
  outline: 2px solid var(--color-violet-soft);
  outline-offset: 2px;
  border-radius: 2px;
}

.location-card__row-label {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  opacity: 0.55;
  min-width: 5.5rem;
  padding-top: 0.15rem;
}

.hours-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.hours-row span:last-child {
  color: var(--color-text);
  white-space: nowrap;
}

.direct-contact {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 38rem;
}

@media (min-width: 768px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
