/* =========================================================
   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;
}

/* =========================================================
   DESIGN TOKENS
   ========================================================= */

:root {
  /* Backgrounds — warm dark, no cold purple cast */
  --color-bg:       #090806;
  --color-bg-soft:  #0f0c09;
  --color-panel:    #141109;
  --color-panel-2:  #1b1710;

  /* Primary accent — gold takes the lead */
  --color-gold:        #c9a45c;
  --color-warm:        #e8b560;
  --color-gold-dim:    rgba(201, 164, 92, 0.18);

  /* Secondary accent — violet used sparingly */
  --color-violet:      #7f3af7;
  --color-violet-soft: #a875ff;

  /* Text */
  --color-white: #ffffff;
  --color-text:  #f0ebe4;
  --color-muted: #a89c8c;

  /* Borders */
  --color-border:      rgba(255, 255, 255, 0.08);
  --color-border-gold: rgba(201, 164, 92, 0.22);

  /* Shadows */
  --shadow-gold:   0 4px 24px rgba(201, 164, 92, 0.14);
  --shadow-violet: 0 24px 80px rgba(127, 58, 247, 0.18);

  /* Shape — editorial = sharp */
  --radius-sm: 0px;
  --radius-md: 2px;
  --radius-lg: 3px;
  --radius-xl: 6px;

  /* Motion */
  --transition:      0.22s ease;
  --transition-slow: 0.42s ease;

  /* Layout */
  --container-max: 76rem;
  --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);
  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-gold) var(--color-bg-soft);
}

::-webkit-scrollbar { width: 0.5rem; }
::-webkit-scrollbar-track { background: var(--color-bg-soft); }
::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 0;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.75rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem,   5vw, 3.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.875rem); line-height: 1.2; }
h4 { font-size: 1.125rem; letter-spacing: -0.01em; }

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

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

/* Text utilities */
.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 — uppercase kicker above headings */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--color-gold);
  flex-shrink: 0;
}

.section-title   { margin-bottom: 1rem; }
.section-intro   { font-size: 1.0625rem; max-width: 52ch; }

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

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

.section         { padding-block: 6rem; }
.section--tight  { padding-block: 3.5rem; }
.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-gold);
  color: var(--color-bg);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
  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 2rem;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid transparent;
  transition:
    background-color var(--transition),
    color var(--transition),
    border-color 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;
}

/* Primary: gold fill, dark text */
.btn--primary {
  background-color: var(--color-gold);
  color: var(--color-bg);
  border-color: var(--color-gold);
}

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

/* Secondary: no fill, thin gold border */
.btn--secondary {
  background-color: transparent;
  color: var(--color-text);
  border-color: var(--color-border-gold);
}

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

/* Ghost: white border */
.btn--gold {
  background-color: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.btn--gold:hover {
  background-color: var(--color-gold);
  color: var(--color-bg);
  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(9, 8, 6, 0.92);
  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 {
  width: clamp(130px, 11vw, 180px);
  height: auto;
  aspect-ratio: 3 / 1;
  display: block;
}

.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.5rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
  border-radius: 0;
  transition: color var(--transition);
  white-space: nowrap;
}

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

.nav__link--active {
  color: var(--color-gold);
}

.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: 0;
  transition: background-color var(--transition);
}

.nav-toggle:hover {
  background-color: rgba(201, 164, 92, 0.08);
}

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

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

.nav-toggle--active .nav-toggle__bar:nth-child(1) { transform: translateY(6.5px) 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(-6.5px) 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;
  background-color: var(--color-panel);
  border-bottom: 1px solid var(--color-border-gold);
  padding: 0.5rem 0;
}

.nav--open .nav__link {
  font-size: 0.75rem;
  padding: 1rem var(--container-pad);
  border-bottom: 1px solid var(--color-border);
}

.nav--open .nav__link:hover {
  background-color: rgba(201, 164, 92, 0.06);
  color: var(--color-gold);
}

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

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

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

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

.site-footer__logo-link img {
  width: clamp(140px, 14vw, 200px);
  height: auto;
  aspect-ratio: 3 / 1;
  display: block;
}

.site-footer__tagline {
  font-size: 0.875rem;
  color: var(--color-muted);
  max-width: 22ch;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

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

.site-footer__nav-link {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  padding-block: 0.625rem;
  border-bottom: 1px solid var(--color-border);
  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;
}

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

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

.site-footer__address strong {
  color: var(--color-text);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.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;
}

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

.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 2rem;
}

.site-footer__legal-link {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  transition: color var(--transition);
}

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

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

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

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

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  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;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(9, 8, 6, 0.97) 0%,
    rgba(9, 8, 6, 0.72) 40%,
    rgba(9, 8, 6, 0.30) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 1.75rem;
  padding: 6rem var(--container-pad) 5rem;
  max-width: var(--container-max);
  width: 100%;
  margin-inline: auto;
}

.hero__logo {
  margin-bottom: 0.5rem;
}

.hero__logo img {
  width: clamp(160px, 18vw, 240px);
  height: auto;
  aspect-ratio: 3 / 1;
  display: block;
}

.hero__title {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--color-white);
  line-height: 1.0;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-muted);
  max-width: 46ch;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.25rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: var(--container-pad);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-muted);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.5;
}

.hero__scroll-line {
  width: 1px;
  height: 3rem;
  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: 24rem;
  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 top,
    rgba(9, 8, 6, 0.97) 0%,
    rgba(9, 8, 6, 0.55) 55%,
    rgba(9, 8, 6, 0.20) 100%
  );
  z-index: 1;
}

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

.page-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.875rem;
}

.page-hero__label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--color-gold);
  flex-shrink: 0;
}

.page-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--color-white);
  line-height: 1.0;
  letter-spacing: -0.03em;
}

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

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

.split-section__media {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  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.5rem;
}

@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: 0;
  padding: 1.75rem;
  transition: border-color var(--transition);
}

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

/* Glass card → replaced with flat editorial card */
.card--glass {
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-border-gold);
  transition:
    border-color var(--transition),
    border-top-color var(--transition),
    transform var(--transition);
}

.card--glass:hover {
  border-color: var(--color-border-gold);
  border-top-color: var(--color-gold);
  transform: translateY(-3px);
}

.card--feature {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem 1.75rem 1.75rem;
  position: relative;
}

.card__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  color: var(--color-gold);
  flex-shrink: 0;
  opacity: 0.75;
}

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

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

/* Menu items */
.card--menu-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-radius: 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--color-border);
  transition: background-color var(--transition);
}

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

.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.2rem;
  font-style: italic;
}

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

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

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

.gallery-grid {
  display: grid;
  gap: 2px;
}

.gallery-grid__item {
  overflow: hidden;
  border-radius: 0;
  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: 14rem;
}

.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: 7rem;
}

.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(9, 8, 6, 0.86);
  z-index: 1;
}

.cta-section__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 2rem;
  max-width: 44rem;
  padding: 0;
  border: none;
  border-radius: 0;
}

/* Gold top-rule before CTA title */
.cta-section__inner::before {
  content: '';
  display: block;
  width: 3rem;
  height: 2px;
  background: var(--color-gold);
  margin-bottom: -0.5rem;
}

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

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

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

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

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

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

.menu-teaser {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.menu-teaser__item {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: none;
}

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

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

.menu-teaser__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(9, 8, 6, 0.96), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.menu-teaser__name {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.menu-teaser__name span {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 0.3rem;
}

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

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

.event-strip {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  min-height: 24rem;
  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;
  filter: brightness(0.7);
}

.event-strip__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(9, 8, 6, 0.92) 0%,
    rgba(9, 8, 6, 0.35) 100%
  );
  z-index: 1;
}

.event-strip__content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 34rem;
}

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

.contact-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--color-border-gold);
}

.contact-preview__block {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 2rem;
  border-bottom: 1px solid var(--color-border-gold);
}

.contact-preview__block:last-child {
  border-bottom: none;
}

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

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

.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;
}

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

.step-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background-color: var(--color-border);
  counter-reset: step-counter;
}

.step-card {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  padding: 2rem;
  background: var(--color-panel);
  border: none;
  border-radius: 0;
  counter-increment: step-counter;
  transition: background-color var(--transition);
}

.step-card:hover { background-color: var(--color-panel-2); }

.step-card__number {
  flex-shrink: 0;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  letter-spacing: -0.03em;
  opacity: 0.35;
  min-width: 2.5rem;
}

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

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

.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;
  bottom: 0;
  width: 1px;
  background: var(--color-border-gold);
}

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

.timeline__item::before {
  content: '';
  position: absolute;
  left: -0.3125rem;
  top: 0.4rem;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 0;
  background: var(--color-gold);
}

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

.timeline__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}

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

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

.hand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background-color: var(--color-border);
}

.hand-card {
  padding: 1.25rem 1rem;
  background: var(--color-panel);
  border: none;
  border-radius: 0;
  text-align: center;
  transition: background-color var(--transition);
}

.hand-card:hover {
  background-color: var(--color-panel-2);
  border-color: var(--color-border-gold);
}

.hand-card__rank {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.375rem;
  opacity: 0.7;
}

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

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

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

.responsible-notice {
  padding: 1.5rem 1.75rem;
  background: var(--color-panel);
  border: 1px solid var(--color-border-gold);
  border-radius: 0;
  font-size: 0.875rem;
  color: var(--color-muted);
  max-width: none;
  border-left: 3px solid var(--color-gold);
}

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

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

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

.legal-page h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border-gold);
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}

.legal-page h2 {
  font-size: 1.25rem;
  color: var(--color-text);
  margin-top: 3rem;
  margin-bottom: 0.875rem;
  letter-spacing: -0.01em;
}

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

.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-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

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

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

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

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

.error-page__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
  max-width: var(--container-max);
  width: 100%;
  margin-inline: auto;
}

.error-page__code {
  font-size: clamp(8rem, 25vw, 16rem);
  font-weight: 700;
  line-height: 0.85;
  color: var(--color-white);
  letter-spacing: -0.06em;
  opacity: 0.07;
  display: block;
  margin-bottom: -1.5rem;
  pointer-events: none;
  user-select: none;
}

.error-page__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.error-page__text {
  color: var(--color-muted);
  max-width: 40ch;
  line-height: 1.75;
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(1.25rem);
  transition:
    opacity 0.55s ease,
    transform 0.55s 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; }

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

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

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

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

.section-cta {
  margin-top: 3rem;
  display: flex;
  justify-content: flex-start;
}

/* =========================================================
   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%;
  filter: brightness(0.65) saturate(0.8);
}

.promo-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 8, 6, 0.18);
}

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

.contact-preview-section {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  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.1;
  filter: saturate(0.4);
}

.contact-section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(9, 8, 6, 0.9) 0%,
    rgba(15, 12, 9, 0.8) 100%
  );
  z-index: 1;
}

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

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

.card__link {
  margin-top: auto;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  transition: color var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.card__link::after {
  content: '→';
  font-size: 0.875rem;
  transition: transform var(--transition);
}

.card__link:hover { color: var(--color-warm); }
.card__link:hover::after { transform: translateX(3px); }

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

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

.split-section__media--clipped {
  border-radius: 0;
  clip-path: none;
  border-left: 3px solid var(--color-gold);
}

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

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

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

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

.lounge-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background-color: var(--color-border);
}

.lounge-panel {
  background: var(--color-panel);
  border: none;
  border-radius: 0;
  overflow: hidden;
  transition: background-color var(--transition);
}

.lounge-panel:hover { background-color: var(--color-panel-2); }

.lounge-panel__img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

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

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

.lounge-panel__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

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

.lounge-panel__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

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

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

/* =========================================================
   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-gold);
  padding-block: 0;
}

.menu-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.menu-nav__link {
  padding: 1.125rem 1.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
  border-radius: 0;
  border: none;
  border-right: 1px solid var(--color-border);
  transition:
    color var(--transition),
    background-color var(--transition);
  white-space: nowrap;
}

.menu-nav__link:hover {
  color: var(--color-text);
  background-color: rgba(201, 164, 92, 0.06);
}

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

.menu-nav__link.is-active {
  background: rgba(201, 164, 92, 0.1);
  color: var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  margin-bottom: -1px;
}

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

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

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

.menu-category__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-white);
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.menu-category__title-en {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0.65;
}

.menu-category__image {
  margin-bottom: 2rem;
  border-radius: 0;
  overflow: hidden;
  height: 14rem;
  border: none;
  border-left: 3px solid var(--color-gold);
}

.menu-category__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85);
}

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

.menu-footer {
  text-align: center;
  padding: 2.5rem 0 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  border-top: 1px solid var(--color-border-gold);
  opacity: 0.6;
}

/* =========================================================
   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.5rem;
  align-items: flex-start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

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

.etiquette-item__mark {
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--color-gold);
  margin-top: 0.2rem;
  opacity: 0.6;
}

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

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

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

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

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

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

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background-color: var(--color-border);
}

.location-card {
  padding: 2.5rem;
  background: var(--color-panel);
  border: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: background-color var(--transition);
}

.location-card:hover { background-color: var(--color-panel-2); }

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

.location-card__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

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

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

.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.7;
}

.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;
}

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

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

.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;
  font-weight: 700;
  letter-spacing: -0.01em;
}

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

/* =========================================================
   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);
  }

  .contact-preview__block {
    border-bottom: none;
    border-right: 1px solid var(--color-border-gold);
  }

  .contact-preview__block:last-child {
    border-right: none;
  }

  .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;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  /* Lounge panels */
  .lounge-panels { grid-template-columns: repeat(3, 1fr); }

  /* Hero left-align with max width */
  .hero__content {
    padding-bottom: 7rem;
  }

  /* Menu category image */
  .menu-category__image { height: 20rem; }

  /* Locations grid */
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
}

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

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