/* ================================================
   SKIP LINK (accessibility)
   ================================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--gold);
  color: #000;
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ================================================
   JIM MORRISON — Restauracja & Salon Pokerowy
   Główny arkusz stylów | Warszawa, Polska
   ================================================ */

/* Google Fonts are loaded via <link> tags in HTML for better performance */

/* ================================================
   CSS ZMIENNE — SYSTEM DESIGNU
   ================================================ */
:root {
  --bg-primary: #080a0e;
  --bg-secondary: #0d1018;
  --bg-card: #111622;
  --bg-card-hover: #161c2a;
  --bg-modal: rgba(5,6,10,0.97);
  --bg-nav: rgba(8,10,14,0.96);

  --gold: #c9a84c;
  --gold-light: #e8c97e;
  --gold-dark: #9e7d32;
  --gold-glow: rgba(201,168,76,0.2);
  --gold-border: rgba(201,168,76,0.25);
  --gold-border-hover: rgba(201,168,76,0.65);

  --text-primary: #f0ede8;
  --text-secondary: #a09890;
  --text-muted: #5a5550;
  --text-gold: #c9a84c;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --nav-h: 80px;
  --container: 1200px;
  --radius: 4px;
  --radius-lg: 12px;

  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
  --transition-bounce: 0.4s cubic-bezier(0.34,1.56,0.64,1);

  --shadow-card: 0 8px 40px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 40px rgba(201,168,76,0.25);
  --shadow-btn: 0 4px 20px rgba(201,168,76,0.3);
}

/* ================================================
   RESET & BASE
   ================================================ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior:smooth; font-size:16px; }

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

img { max-width:100%; height:auto; display:block; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
input, textarea, select {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: transparent;
  border: none;
  outline: none;
}

::selection {
  background: var(--gold);
  color: var(--bg-primary);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ================================================
   TYPOGRAFIA
   ================================================ */
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { color: var(--text-secondary); font-size: 1rem; }

.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.text-italic { font-style: italic; }

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

section { padding: 100px 0; position: relative; }

/* Decorative gold line for section titles */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.section-label::before { display:none; }
.section-label.centered {
  justify-content: center;
  display: flex;
}
.section-label.centered::before { display:block; }

.section-title {
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 640px;
  color: var(--text-secondary);
  line-height: 1.8;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ================================================
   PRZYCISKI (BUTTONS)
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: var(--transition);
}
.btn:hover::before { transform: translateX(0); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, var(--gold) 100%);
  color: var(--bg-primary);
  box-shadow: var(--shadow-btn);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border-hover);
}
.btn-outline:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
}

.btn svg { width:18px; height:18px; flex-shrink:0; }

/* ================================================
   NAWIGACJA
   ================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: var(--transition);
  padding: 0 32px;
}

.nav.scrolled {
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

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

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  flex-shrink: 0;
  font-size: 0.78rem;
  padding: 11px 26px;
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 6px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
  flex-shrink: 0;
}
.nav-burger:hover { background: var(--gold-glow); }
.nav-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile nav overlay */
.nav-mobile {
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: var(--bg-modal);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
  border-top: 1px solid var(--gold-border);
}
.nav-mobile.open { transform: translateX(0); }

.nav-mobile .nav-link {
  font-size: 1.1rem;
  padding: 16px 32px;
  width: 100%;
  text-align: center;
}
.nav-mobile .nav-link::after { left:32px; right:32px; }
.nav-mobile .btn { margin-top: 20px; width: 280px; justify-content: center; }

/* ================================================
   AGE GATE MODAL
   ================================================ */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.age-gate.hidden { opacity:0; visibility:hidden; pointer-events:none; }

.age-gate-box {
  max-width: 520px;
  width: 100%;
  text-align: center;
  padding: 64px 48px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}
.age-gate-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.age-gate-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
  color: var(--gold);
}
.age-gate-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.age-gate-heading {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 20px;
}
.age-gate-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}
.age-gate-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.age-gate-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 24px;
  line-height: 1.6;
}

/* ================================================
   COOKIE BANNER
   ================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5000;
  background: var(--bg-card);
  border-top: 1px solid var(--gold-border);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner.hidden { display:none; }

.cookie-text {
  flex: 1;
  min-width: 200px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.cookie-text a { color: var(--gold); border-bottom: 1px solid var(--gold-border); }
.cookie-text a:hover { border-color: var(--gold); }
.cookie-buttons { display:flex; gap:12px; flex-wrap:wrap; }

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(139,26,26,0.06) 0%, transparent 50%),
    linear-gradient(135deg, #080a0e 0%, #0d1018 40%, #0a0d16 70%, #080a0e 100%);
  z-index: 0;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 28px;
  max-width: 800px;
}

.hero-title .accent {
  display: block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 48px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: float-up 2.5s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes float-up {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ================================================
   MARQUEE STRIP
   ================================================ */
.marquee-strip {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg-primary);
  padding: 0 32px;
}
.marquee-item::after {
  content: '♠';
  font-size: 1rem;
  opacity: 0.5;
}

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

/* ================================================
   DOŚWIADCZENIE (EXPERIENCE CARDS)
   ================================================ */
.experience { background: var(--bg-secondary); }

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.exp-card {
  background: var(--bg-card);
  padding: 56px 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.exp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: var(--transition-slow);
}
.exp-card:hover::before { transform: scaleX(1); }

.exp-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom center, rgba(201,168,76,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.exp-card:hover::after { opacity: 1; }
.exp-card:hover { background: var(--bg-card-hover); transform: translateY(-4px); }

.exp-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  margin-bottom: 32px;
  transition: var(--transition);
}
.exp-card:hover .exp-num { color: rgba(201,168,76,0.15); }

.exp-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  margin-bottom: 28px;
  transition: var(--transition);
  color: var(--gold);
}
.exp-card:hover .exp-icon {
  background: rgba(201,168,76,0.18);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201,168,76,0.2);
}
.exp-icon svg { width:26px; height:26px; }

.exp-title {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.exp-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
}
.exp-link {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 4px;
}
.exp-link:hover { gap: 14px; border-color: var(--gold); }
.exp-link svg { width:16px; height:16px; }

/* ================================================
   O NAS (ABOUT)
   ================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-accent-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-card);
}

.about-accent-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.about-accent-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-text .section-label { margin-bottom: 16px; }
.about-features {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.about-feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}
.about-feature:hover .about-feature-icon {
  background: rgba(201,168,76,0.18);
  border-color: var(--gold);
}
.about-feature-icon svg { width:20px; height:20px; }
.about-feature-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.about-feature-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.about-actions { margin-top: 44px; display:flex; gap:16px; }

/* ================================================
   KARTA DAN PREVIEW (MENU PREVIEW)
   ================================================ */
.menu-preview { background: var(--bg-secondary); }

.menu-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}

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

.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.menu-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.menu-card-img {
  aspect-ratio: 3/2;
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
}

.menu-card-body { padding: 28px 28px 32px; }

.menu-card-cat {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.menu-card-title { font-size: 1.2rem; margin-bottom: 10px; }
.menu-card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-card-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

/* ================================================
   POKER SECTION
   ================================================ */
.poker { background: var(--bg-primary); overflow: hidden; }

.poker-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.poker-text .section-label { margin-bottom: 16px; }

.poker-steps {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.poker-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  cursor: default;
}
.poker-step:last-child { border-bottom: none; }
.poker-step:hover { padding-left: 8px; }

.poker-step-num {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  transition: var(--transition);
}
.poker-step:hover .poker-step-num {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
}

.poker-step-title { font-size: 1.05rem; margin-bottom: 6px; font-weight: 600; }
.poker-step-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }

.poker-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.poker-card-display {
  position: relative;
  width: 380px;
  height: 460px;
}

.p-card {
  position: absolute;
  width: 200px;
  height: 280px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-family: var(--font-display);
  font-weight: 900;
  box-shadow: var(--shadow-card);
  transition: var(--transition-slow);
}

.p-card-1 {
  top: 20px; left: 20px;
  transform: rotate(-15deg);
  color: var(--gold);
  z-index: 1;
}
.p-card-2 {
  top: 60px; right: 20px;
  transform: rotate(8deg);
  background: linear-gradient(135deg, #1a2035, #111622);
  color: #e8e8e8;
  z-index: 2;
}
.p-card-3 {
  bottom: 20px; left: 80px;
  transform: rotate(-3deg);
  background: rgba(201,168,76,0.08);
  color: var(--gold);
  z-index: 3;
  border-color: var(--gold);
}

.poker-chips {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.p-chip {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 4px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.p-chip-1 { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.1); }
.p-chip-2 { border-color: #e05252; color: #e05252; background: rgba(224,82,82,0.1); }
.p-chip-3 { border-color: #5280e0; color: #5280e0; background: rgba(82,128,224,0.1); }

/* ================================================
   TYPY WYDARZEŃ (EVENT TYPES)
   ================================================ */
.events { background: var(--bg-secondary); }

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

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.event-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-slow);
}
.event-card:hover::before { transform: scaleX(1); }
.event-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  background: var(--bg-card-hover);
}

.event-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 24px;
}
.event-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}
.event-title { font-size: 1.35rem; margin-bottom: 14px; }
.event-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
}
.event-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.event-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.event-detail svg { width:14px; height:14px; color: var(--gold); flex-shrink:0; }

/* ================================================
   GALERIA (GALLERY)
   ================================================ */
.gallery { background: var(--bg-primary); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 8px;
  margin-top: 56px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--bg-card);
}
.gallery-item:nth-child(1) {
  grid-column: span 2;
}
.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background:
    radial-gradient(ellipse at center, rgba(201,168,76,0.1) 0%, transparent 70%),
    linear-gradient(135deg, #111622, #1a2035, #0d1018);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(201,168,76,0.15);
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,10,14,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text {
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* ================================================
   OPINIE (TESTIMONIALS)
   ================================================ */
.testimonials { background: var(--bg-secondary); }

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

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: var(--transition);
  position: relative;
}
.testi-card:hover {
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testi-star {
  color: var(--gold);
  font-size: 1rem;
}

.testi-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.5;
  color: rgba(201,168,76,0.15);
  margin-bottom: 16px;
}

.testi-text {
  font-family: var(--font-elegant);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 28px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--bg-primary);
  flex-shrink: 0;
}
.testi-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}
.testi-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ================================================
   REZERWACJA QUICK (RESERVATION CTA)
   ================================================ */
.reservation-cta {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.reservation-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
}

.reservation-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.reservation-form {
  margin-top: 56px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 52px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.92rem;
  color: var(--text-primary);
  transition: var(--transition);
  font-family: var(--font-body);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-full { grid-column: 1 / -1; }

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ================================================
   FAQ
   ================================================ */
.faq { background: var(--bg-secondary); }

.faq-list {
  max-width: 800px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(201,168,76,0.4); }
.faq-item.open { border-color: var(--gold); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
  cursor: pointer;
  background: none;
}
.faq-q:hover { color: var(--gold); }
.faq-item.open .faq-q { color: var(--gold); }

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition-bounce);
  font-size: 1.2rem;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--bg-primary); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  padding: 0 28px 24px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: #040508;
  border-top: 1px solid var(--gold-border);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 64px;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer-logo-sub {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 300px;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-link:hover { color: var(--text-primary); padding-left: 4px; }
.footer-link::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.footer-contact-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.footer-contact-icon svg { width:16px; height:16px; }
.footer-contact-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.footer-contact-val {
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.footer-contact-val-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--gold-border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--gold); }

/* ================================================
   PAGE HERO (Podstrony)
   ================================================ */
.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 80px;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(201,168,76,0.07) 0%, transparent 60%),
    linear-gradient(135deg, #080a0e 0%, #0d1018 100%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-hero-tag::before {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}
.page-hero-title { margin-bottom: 20px; }
.page-hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

/* Menu Page Styles */
.menu-section { padding: 80px 0; }
.menu-section + .menu-section {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.menu-cat-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.menu-cat-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--gold-border), transparent);
}

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

.menu-item {
  background: var(--bg-card);
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.menu-item:hover {
  background: var(--bg-card-hover);
  border-left: 2px solid var(--gold);
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.menu-item-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.menu-item-tags {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.menu-tag {
  font-size: 0.65rem;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.menu-tag-veg { border-color: rgba(80,200,80,0.4); color: rgba(80,200,80,0.8); }
.menu-tag-hot { border-color: rgba(200,80,80,0.4); color: rgba(200,80,80,0.8); }
.menu-tag-new { border-color: var(--gold-border); color: var(--gold); }

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

/* Poker Page */
.poker-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.poker-type-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 44px;
  transition: var(--transition);
}
.poker-type-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.poker-rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.poker-rule {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
}
.poker-rule:hover { border-color: rgba(201,168,76,0.5); }
.poker-rule-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.poker-rule:hover .poker-rule-icon {
  background: rgba(201,168,76,0.16);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201,168,76,0.18);
}
.poker-rule-icon svg { width:22px; height:22px; }
.poker-rule-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.poker-rule-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; }

/* Events Page */
.events-calendar {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-row {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 32px;
  transition: var(--transition);
  flex-wrap: wrap;
}
.event-row:hover {
  border-color: var(--gold);
  transform: translateX(6px);
  box-shadow: -4px 0 20px rgba(201,168,76,0.15);
}

.event-date-box {
  min-width: 72px;
  text-align: center;
  border-right: 1px solid var(--gold-border);
  padding-right: 32px;
}
.event-day {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.event-month {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.event-info { flex: 1; min-width: 200px; }
.event-row-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.event-row-desc { font-size: 0.88rem; color: var(--text-secondary); }

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}
.event-time {
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 600;
}
.event-spots {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Atmosfera/Gallery Page */
.gallery-masonry {
  columns: 3;
  column-gap: 16px;
  margin-top: 56px;
}
.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-masonry-item:hover .gallery-overlay { opacity: 1; }
.gallery-masonry-img {
  width: 100%;
  display: block;
  background: linear-gradient(135deg, #111622, #1a2035, #0d1018);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(201,168,76,0.1);
  transition: transform 0.5s ease;
}
.gallery-masonry-item:hover .gallery-masonry-img { transform: scale(1.04); }

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  margin-top: 56px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-info-item:first-child { padding-top: 0; }

.contact-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}
.contact-info-item:hover .contact-icon {
  background: rgba(201,168,76,0.18);
  border-color: var(--gold);
}
.contact-icon svg { width:22px; height:22px; }

.contact-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-val {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
}
.contact-val-sub { font-size: 0.85rem; color: var(--text-secondary); }

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 52px;
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 32px;
}

/* Legal pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
}
.legal-content h2 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 48px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold-border);
}
.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 28px;
  margin-bottom: 12px;
}
.legal-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}
.legal-content ul {
  list-style: disc;
  padding-left: 28px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.legal-content ul li { margin-bottom: 8px; line-height: 1.7; }
.legal-content a { color: var(--gold); border-bottom: 1px solid var(--gold-border); }

/* Thank you page */
.thankyou {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
}
.thankyou-box {
  max-width: 600px;
  text-align: center;
  padding: 80px 60px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
}
.thankyou-icon { font-size: 4rem; margin-bottom: 24px; color: var(--gold); display:block; }
.thankyou-title { margin-bottom: 20px; }
.thankyou-text { color: var(--text-secondary); margin-bottom: 40px; }

/* ================================================
   ANIMACJE SCROLL (Intersection Observer)
   ================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fade-in.visible { opacity: 1; }

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-left.visible { opacity: 1; transform: translateX(0); }

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-right.visible { opacity: 1; transform: translateX(0); }

.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay: 0.4s; }
.stagger.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay: 0.5s; }

/* ================================================
   MEDIA QUERIES — RESPONSIVE
   ================================================ */

/* 1200px */
@media (max-width: 1200px) {
  :root { --container: 100%; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
  .footer-grid > *:last-child { grid-column: 1 / -1; }
}

/* 991px — BURGER MENU */
@media (max-width: 991px) {
  :root { --nav-h: 70px; }
  section { padding: 72px 0; }

  .nav-links { display: none; }
  .nav-cta:not(.nav-mobile .btn) { display: none; }
  .nav-burger { display: flex; }

  .hero-title { font-size: clamp(2.2rem, 6vw, 3.5rem); }
  .hero-stats { gap: 28px; }

  .experience-grid { grid-template-columns: 1fr; gap: 2px; }
  .exp-card { padding: 44px 32px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .about-accent-card { right: 0; bottom: -16px; }
  .about-img { aspect-ratio: 16/9; }

  .menu-grid { grid-template-columns: 1fr; }
  .menu-header { flex-direction: column; align-items: flex-start; }

  .poker-inner { grid-template-columns: 1fr; gap: 56px; }
  .poker-visual { order: -1; }
  .poker-card-display { width: 100%; max-width: 380px; margin: 0 auto; }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { grid-column: span 1; }

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

  .form-row { grid-template-columns: 1fr 1fr; }
  .reservation-form { padding: 36px 28px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }

  .menu-items { grid-template-columns: 1fr; }
  .poker-types-grid { grid-template-columns: 1fr; }
  .poker-rules-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 36px 28px; }
}

/* 768px */
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .container { padding: 0 18px; }

  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }

  .about-actions { flex-direction: column; }
  .about-actions .btn { justify-content: center; }

  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { height: 220px; }

  .gallery-masonry { columns: 2; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  .poker-rules-grid { grid-template-columns: 1fr; }
  .thankyou-box { padding: 48px 28px; }

  .age-gate-box { padding: 44px 28px; }
  .age-gate-buttons { flex-direction: column; align-items: center; }
  .age-gate-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }

  .event-row { flex-direction: column; align-items: flex-start; }
  .event-date-box { border-right: none; border-bottom: 1px solid var(--gold-border); padding-right: 0; padding-bottom: 16px; }
  .event-meta { align-items: flex-start; }

  .cookie-banner { padding: 16px 18px; }
  .cookie-buttons { width: 100%; }
  .cookie-buttons .btn { flex: 1; justify-content: center; }
}

/* 480px */
@media (max-width: 480px) {
  :root { --nav-h: 64px; }
  section { padding: 48px 0; }
  .container { padding: 0 16px; }

  .hero { min-height: calc(100svh); }
  .hero-content { padding: 60px 0 48px; }
  .hero-badge { font-size: 0.65rem; padding: 6px 14px; }

  .exp-card { padding: 36px 24px; }
  .event-card { padding: 32px 24px; }
  .testi-card { padding: 28px 24px; }
  .poker-type-card { padding: 32px 24px; }

  .gallery-masonry { columns: 1; }

  .reservation-form { padding: 28px 18px; }
  .contact-form-wrap { padding: 28px 18px; }

  .nav { padding: 0 16px; }
  .nav-logo-name { font-size: 1.1rem; }

  .p-card { width: 140px; height: 200px; font-size: 3rem; }
  .poker-card-display { height: 340px; }
}

/* 380px */
@media (max-width: 380px) {
  :root { --nav-h: 60px; }
  section { padding: 40px 0; }
  .container { padding: 0 14px; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  h3 { font-size: 1.2rem; }

  .hero-title { font-size: 1.9rem; }
  .btn { padding: 12px 22px; font-size: 0.8rem; }

  .exp-card { padding: 28px 18px; }
  .exp-icon { width: 44px; height: 44px; }
  .exp-icon svg { width: 22px; height: 22px; }

  .menu-item { padding: 20px 18px; flex-direction: column; }
  .menu-item-price { font-size: 1rem; }

  .event-row { padding: 20px 18px; }
  .faq-q { padding: 18px 20px; font-size: 0.95rem; }
  .faq-a-inner { padding: 0 20px 18px; }

  .footer { padding: 48px 0 0; }
  .footer-grid { gap: 28px; }

  .cookie-banner { flex-direction: column; align-items: flex-start; }
}

/* 300px */
@media (max-width: 300px) {
  :root { --nav-h: 56px; }
  .container { padding: 0 10px; }
  section { padding: 32px 0; }

  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.4rem; }

  .nav-logo-name { font-size: 0.95rem; letter-spacing: 0.06em; }
  .nav-logo-sub { display: none; }

  .hero-badge { display: none; }
  .btn { padding: 10px 16px; font-size: 0.75rem; width: 100%; justify-content: center; }
  .hero-actions { gap: 10px; }

  .age-gate-box { padding: 32px 14px; }
  .age-gate-heading { font-size: 1.5rem; }

  .marquee-strip { padding: 10px 0; }
  .marquee-item { font-size: 0.65rem; padding: 0 16px; }

  .exp-card { padding: 24px 14px; }
  .exp-title { font-size: 1.2rem; }
  .exp-desc { font-size: 0.85rem; }

  .testi-card { padding: 20px 14px; }
  .event-card { padding: 24px 14px; }

  .footer-logo-name { font-size: 1.2rem; }
  .footer-grid { gap: 20px; }
  .footer-legal { flex-direction: column; gap: 10px; }

  .reservation-form { padding: 20px 12px; }
  .form-input, .form-select, .form-textarea { padding: 12px 14px; }
}

/* ================================================
   UTILITY CLASSES
   ================================================ */
.hidden { display: none !important; }
.d-flex { display: flex !important; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.w-full { width: 100%; }
.d-flex { display: flex; }
.gap-16 { gap: 16px; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }

/* Custom 18+ notice bar */
.adult-bar {
  background: rgba(201,168,76,0.08);
  border-bottom: 1px solid var(--gold-border);
  padding: 8px 0;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ================================================
   PRELOADER
   ================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  animation: preloader-pulse 1.5s ease-in-out infinite;
}
.preloader-sub {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: -20px;
}
.preloader-bar {
  width: 160px;
  height: 1px;
  background: rgba(201,168,76,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: preloader-fill 1.8s ease-in-out forwards;
  transform-origin: left;
}
@keyframes preloader-fill {
  0%   { width: 0%; }
  60%  { width: 80%; }
  100% { width: 100%; }
}
@keyframes preloader-pulse {
  0%, 100% { opacity: 1; text-shadow: 0 0 30px rgba(201,168,76,0.3); }
  50%       { opacity: 0.7; text-shadow: 0 0 60px rgba(201,168,76,0.6); }
}

/* ================================================
   SCROLL PROGRESS BAR
   ================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(201,168,76,0.5);
}

/* ================================================
   BACK TO TOP
   ================================================ */
.back-to-top {
  position: fixed;
  bottom: 36px;
  right: 28px;
  z-index: 500;
  width: 48px;
  height: 48px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-btn);
}
.back-to-top svg { width: 20px; height: 20px; }

/* ================================================
   CURSOR GLOW (desktop only)
   ================================================ */
.cursor-glow {
  pointer-events: none;
  position: fixed;
  z-index: 9998;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: transform 0.08s linear;
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-glow { display: block; }
}

/* ================================================
   TOAST NOTIFICATION
   ================================================ */
.toast-container {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 6000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  min-width: 280px;
  max-width: 340px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-card);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: auto;
}
.toast.show { transform: translateX(0); }
.toast-icon { font-size: 1.3rem; flex-shrink: 0; }
.toast-text { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }
.toast-text strong { color: var(--text-primary); display: block; font-size: 0.92rem; }

/* ================================================
   HEADER HIDE ON SCROLL DOWN
   ================================================ */
.nav.nav-hidden { transform: translateY(-100%); }

/* ================================================
   LIGHTBOX
   ================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(5,6,10,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  text-align: center;
}
.lightbox-img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
  width: 100%;
  max-height: 80vh;
  object-fit: cover;
  background: linear-gradient(135deg, #111622, #1a2035);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: rgba(201,168,76,0.2);
}
.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--gold); color: var(--bg-primary); }
.lightbox-close svg { width: 18px; height: 18px; }
.lightbox-caption {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ================================================
   MENU CATEGORY TABS
   ================================================ */
.menu-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 0;
}
.menu-tab {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 22px;
  border-radius: var(--radius) var(--radius) 0 0;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: none;
}
.menu-tab:hover { color: var(--text-secondary); }
.menu-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.menu-tab-content { display: none; }
.menu-tab-content.active { display: block; }

/* ================================================
   POKER SCHEDULE TABLE
   ================================================ */
.poker-schedule {
  width: 100%;
  border-collapse: collapse;
  margin-top: 36px;
}
.poker-schedule th {
  text-align: left;
  padding: 14px 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-border);
  background: rgba(201,168,76,0.04);
}
.poker-schedule td {
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.poker-schedule tr:hover td { background: rgba(201,168,76,0.03); color: var(--text-primary); }
.poker-schedule .badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.badge-green { background: rgba(80,200,80,0.1); color: rgba(80,200,80,0.9); border: 1px solid rgba(80,200,80,0.25); }
.badge-gold  { background: rgba(201,168,76,0.1); color: var(--gold); border: 1px solid var(--gold-border); }
.badge-red   { background: rgba(200,80,80,0.1); color: rgba(200,80,80,0.9); border: 1px solid rgba(200,80,80,0.25); }

/* ================================================
   MULTI-STEP FORM
   ================================================ */
.form-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
}
.form-step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.form-step-item::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  right: -50%;
  height: 1px;
  background: rgba(255,255,255,0.08);
  z-index: -1;
}
.form-step-item:last-child::after { display: none; }
.form-step-item.completed::after { background: var(--gold-border); }
.form-step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
}
.form-step-item.active .form-step-circle {
  border-color: var(--gold);
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(201,168,76,0.2);
}
.form-step-item.completed .form-step-circle {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--bg-primary);
}
.form-step-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}
.form-step-item.active .form-step-label { color: var(--gold); }
.form-step-item.completed .form-step-label { color: var(--text-secondary); }

.form-panel { display: none; }
.form-panel.active { display: block; animation: fadeSlideIn 0.4s ease; }
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ================================================
   COUNTDOWN TIMER
   ================================================ */
.countdown-wrap {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}
.countdown-block {
  text-align: center;
  min-width: 70px;
}
.countdown-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.countdown-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
}
.countdown-sep {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold-dark);
  opacity: 0.4;
  align-self: flex-start;
  padding-top: 4px;
}

/* ================================================
   NEXT EVENT BANNER
   ================================================ */
.next-event-banner {
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(139,26,26,0.06) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  position: relative;
  overflow: hidden;
}
.next-event-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.next-event-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 5px 14px;
  display: inline-block;
  margin-bottom: 10px;
}
.next-event-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.next-event-meta {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ================================================
   WINE LIST
   ================================================ */
.wine-section {
  background: var(--bg-primary);
  padding: 80px 0;
}
.wine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.wine-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.wine-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top center, rgba(201,168,76,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.wine-card:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-4px); }
.wine-card:hover::before { opacity: 1; }
.wine-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.wine-type {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.wine-name { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 10px; }
.wine-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 18px; }
.wine-footer { display: flex; justify-content: space-between; align-items: center; }
.wine-vintage { font-size: 0.78rem; color: var(--text-muted); }
.wine-price { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold); font-weight: 700; }

/* ================================================
   POKER HANDS RANKING
   ================================================ */


.hand-card-rank {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.hand-card-badge {
  display: inline-block;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 20px;
  padding: 2px 8px;
  margin-bottom: 10px;
}
.hand-card-badge--weak {
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.hand-card-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.3;
}
.hand-card-suits {
  display: flex;
  justify-content: center;
  gap: 3px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  flex-wrap: nowrap;
}


/* ================================================
   FLOATING ORBS (hero background)
   ================================================ */
.hero-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orb-float 12s ease-in-out infinite;
}
.hero-orb:nth-child(1) {
  width: 500px; height: 500px;
  background: rgba(201,168,76,0.06);
  top: -100px; left: -100px;
  animation-duration: 14s;
}
.hero-orb:nth-child(2) {
  width: 400px; height: 400px;
  background: rgba(139,26,26,0.05);
  bottom: -80px; right: -80px;
  animation-duration: 18s;
  animation-delay: -5s;
}
.hero-orb:nth-child(3) {
  width: 300px; height: 300px;
  background: rgba(80,128,224,0.04);
  top: 40%; left: 50%;
  animation-duration: 22s;
  animation-delay: -9s;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 30px) scale(0.95); }
}

/* ================================================
   SOCIAL LINKS
   ================================================ */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 130px;
  padding: 24px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
}
.social-link .social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-link .social-name {
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  transition: var(--transition);
}
.social-link:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.12);
}
.social-link:hover .social-icon {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.5);
}
.social-link:hover .social-name {
  color: var(--gold);
}

/* ================================================
   PARKING & TRANSPORT INFO
   ================================================ */
.transport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.transport-item {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}
.transport-item:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-2px); }
.transport-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--gold);
  flex-shrink: 0;
}
.transport-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}
.transport-val { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ================================================
   STAT COUNTER BLOCKS
   ================================================ */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 0;
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--gold-border);
}
.stat-block {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--gold-border);
  transition: var(--transition);
  position: relative;
}
.stat-block:last-child { border-right: none; }
.stat-block::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: auto;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-slow);
}
.stat-block:hover::before { width: 60%; }
.stat-block:hover { background: rgba(201,168,76,0.03); }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-unit { font-size: 1.4rem; vertical-align: top; margin-top: 4px; display: inline-block; }
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
  display: block;
}
.stat-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ================================================
   PROCESS STEPS (improved)
   ================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
}
.process-step {
  background: var(--bg-card);
  padding: 44px 32px;
  position: relative;
  transition: var(--transition);
}
.process-step:hover { background: var(--bg-card-hover); }
.process-step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  margin-bottom: 20px;
  transition: var(--transition);
}
.process-step:hover .process-step-num { color: rgba(201,168,76,0.15); }
.process-step-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}
.process-step-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.process-step-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; }

/* ================================================
   TEAM / STAFF CARDS
   ================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.team-photo {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #111622, #1a2035);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.team-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--bg-card));
}
.team-body { padding: 24px 24px 32px; }
.team-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.team-bio { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; }

/* ================================================
   NEWSLETTER SECTION
   ================================================ */
.newsletter {
  background: var(--bg-secondary);
  padding: 80px 0;
}
.newsletter-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.92rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: var(--transition);
}
.newsletter-input:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
  outline: none;
}
.newsletter-input::placeholder { color: var(--text-muted); }

/* ================================================
   SPECIAL DISH FEATURE (karta page)
   ================================================ */
.dish-feature {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  margin-bottom: 56px;
  transition: var(--transition);
}
.dish-feature:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.dish-feature-img {
  aspect-ratio: 4/3;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.15) 0%, transparent 70%),
    linear-gradient(135deg, #111622, #1a2035);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}
.dish-feature-body {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dish-feature-tag {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.dish-feature-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.dish-feature-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 28px; }
.dish-feature-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

/* ================================================
   IMPROVED GALLERY GRID (atmosfera)
   ================================================ */
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 8px;
  margin-top: 56px;
}
.gallery-full-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--bg-card);
}
.gallery-full-item.wide { grid-column: span 2; }
.gallery-full-item.tall { grid-row: span 2; }
.gallery-full-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #111622, #1a2035);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(201,168,76,0.12);
  transition: transform 0.5s ease;
}
.gallery-full-item:hover .gallery-full-img { transform: scale(1.07); }
.gallery-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,10,14,0.9) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-full-item:hover .gallery-full-overlay { opacity: 1; }
.gallery-full-overlay-text {
  color: var(--text-primary);
  font-size: 0.88rem;
  font-weight: 600;
}
.gallery-full-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  font-size: 1.3rem;
  transition: var(--transition-bounce);
}
.gallery-full-item:hover .gallery-full-zoom { transform: translate(-50%, -50%) scale(1); }

/* ================================================
   RESERVATION TYPE SELECTOR
   ================================================ */
.res-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.res-type-card {
  background: var(--bg-card);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.res-type-card:hover { border-color: rgba(201,168,76,0.4); }
.res-type-card.selected {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.res-type-card.selected::after {
  content: '✓';
  position: absolute;
  top: 10px;
  right: 12px;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--bg-primary);
  border-radius: 50%;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.res-type-icon { font-size: 2.2rem; margin-bottom: 12px; display: block; }
.res-type-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.res-type-desc { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.5; }

/* ================================================
   RESPONSIVE ADDITIONS
   ================================================ */
@media (max-width: 991px) {
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-block:nth-child(2) { border-right: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .wine-grid { grid-template-columns: 1fr 1fr; }
  .hands-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .transport-grid { grid-template-columns: 1fr 1fr; }
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-full-item.wide { grid-column: span 1; }
  .dish-feature { grid-template-columns: 1fr; }
  .dish-feature-img { aspect-ratio: 16/9; font-size: 5rem; }
  .res-type-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .wine-grid { grid-template-columns: 1fr; }
  .hands-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .menu-tabs { overflow-x: auto; flex-wrap: nowrap; }
  .menu-tab { white-space: nowrap; }
  .next-event-banner { flex-direction: column; text-align: center; }
  .countdown-wrap { gap: 16px; }
  .countdown-num { font-size: 2.2rem; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { width: 100%; }
}

@media (max-width: 480px) {
  .hands-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .transport-grid { grid-template-columns: 1fr; }
  .gallery-full-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-full-item.wide,
  .gallery-full-item.tall { grid-column: span 1; grid-row: span 1; }
  .countdown-sep { display: none; }
  .stat-block { border-right: none; border-bottom: 1px solid var(--gold-border); }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 300px) {
  .stats-bar-inner { grid-template-columns: 1fr; }
  .countdown-num { font-size: 1.8rem; }
  .back-to-top { bottom: 20px; right: 14px; width: 40px; height: 40px; }
}

/* ================================================
   MODAL — REJESTRACJA SUCCESS
   ================================================ */
.reg-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.reg-modal[style*="flex"] { display: flex !important; }
.reg-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,7,10,0.85);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.reg-modal-box {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  padding: 56px 48px 48px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(201,168,76,.1);
  animation: modalIn .35s cubic-bezier(.22,.9,.36,1) both;
}
@keyframes modalIn {
  from { opacity:0; transform: translateY(28px) scale(.97); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}
.reg-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.reg-modal-close:hover { background: rgba(201,168,76,.12); color: var(--gold); border-color: var(--gold-border); }
.reg-modal-icon {
  width: 72px; height: 72px;
  background: rgba(201,168,76,.1);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  margin: 0 auto 28px;
}
.reg-modal-title {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.reg-modal-text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 10px;
}
.reg-modal-sub {
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: .06em;
}
@media (max-width: 540px) {
  .reg-modal-box { padding: 44px 24px 36px; }
  .reg-modal-title { font-size: 1.4rem; }
}

/* ================================================
   HAND RANKINGS — Klasyfikacja układów
   ================================================ */
.hands-section {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  overflow: hidden;
}

/* Each row */
.hand-row {
  display: grid;
  grid-template-columns: 90px 1fr auto 120px;
  align-items: center;
  gap: 24px;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background .2s;
  position: relative;
}
.hand-row:last-child { border-bottom: none; }
.hand-row:hover { background: rgba(201,168,76,0.04); }

/* Hero row — Royal Flush */
.hand-row--hero {
  background: linear-gradient(100deg, rgba(201,168,76,0.1) 0%, rgba(201,168,76,0.03) 100%);
  padding: 26px 28px;
  border-bottom: 1px solid rgba(201,168,76,0.18);
}
.hand-row--hero:hover { background: linear-gradient(100deg, rgba(201,168,76,0.14) 0%, rgba(201,168,76,0.05) 100%); }

/* Weak row */
.hand-row--weak { opacity: 0.6; }
.hand-row--weak:hover { opacity: 1; }

/* Rank */
.hand-row-rank {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hand-row-rank span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1;
}
.hand-row--hero .hand-row-rank span { color: var(--gold); font-size: 2rem; }
.hand-row--weak .hand-row-rank span { color: var(--text-muted); }
.hand-row-rank em {
  font-style: normal;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.hand-row--weak .hand-row-rank em { color: var(--text-muted); }

/* Info */
.hand-row-info { min-width: 0; }
.hand-row-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.hand-row--hero .hand-row-name { font-size: 1.3rem; color: var(--gold); }
.hand-row-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Cards */
.hand-row-cards {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.hcard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 48px;
  background: var(--bg-secondary);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  gap: 1px;
  transition: transform .15s;
  flex-shrink: 0;
}
.hand-row:hover .hcard { transform: translateY(-2px); }
.hcard-val {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-secondary);
  line-height: 1;
}
.hcard-suit {
  font-size: 0.85rem;
  line-height: 1;
  color: var(--text-muted);
}

/* Card variants */
.hcard--gold {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.35);
}
.hcard--gold .hcard-val,
.hcard--gold .hcard-suit { color: var(--gold); }

.hcard--red .hcard-val,
.hcard--red .hcard-suit { color: #e05555; }

.hcard--muted { opacity: 0.45; }

/* Strength bar */
.hand-row-bar {
  width: 120px;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.hand-row-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, rgba(201,168,76,0.4), var(--gold));
  border-radius: 4px;
  transition: width .6s ease;
}
.hand-row--hero .hand-row-bar-fill { background: linear-gradient(90deg, var(--gold), #f0d060); }
.hand-row--weak .hand-row-bar-fill { background: rgba(255,255,255,0.2); }

/* Responsive */
@media (max-width: 860px) {
  .hand-row { grid-template-columns: 64px 1fr; grid-template-rows: auto auto; gap: 12px 16px; padding: 16px 20px; }
  .hand-row-cards { grid-column: 1 / -1; justify-content: flex-start; }
  .hand-row-bar { display: none; }
}
@media (max-width: 540px) {
  .hand-row { padding: 14px 16px; }
  .hand-row-name { font-size: 0.95rem; }
  .hcard { width: 30px; height: 40px; }
  .hcard-val { font-size: 0.65rem; }
  .hcard-suit { font-size: 0.75rem; }
}
