@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --color-bg: #0d0d0d;
  --color-surface: #131313;
  --color-surface-2: #1a1a1a;
  --color-gold: #c9a84c;
  --color-gold-light: #e0c07a;
  --color-text: #e8e2d9;
  --color-text-muted: #8a8178;
  --color-border: rgba(201,168,76,0.2);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition: 0.35s ease;
  --max-width: 1280px;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--color-text);
  margin-bottom: 20px;
}

.section-desc {
  color: var(--color-text-muted);
  font-size: 14px;
  max-width: 520px;
  line-height: 1.8;
}

/* ─── GOLD DIVIDER ─── */
.gold-line {
  width: 48px;
  height: 1px;
  background: var(--color-gold);
  margin: 24px 0;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.btn-gold {
  background: var(--color-gold);
  color: #0d0d0d;
  border-color: var(--color-gold);
}
.btn-gold:hover { background: var(--color-gold-light); border-color: var(--color-gold-light); color: #0d0d0d; }

.btn-outline {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.btn-outline:hover { background: var(--color-gold); color: #0d0d0d; }

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(232,226,217,0.25);
}
.btn-ghost:hover { border-color: var(--color-gold); color: var(--color-gold); }

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 920;
  padding: 28px 0;
  background: rgba(13,13,13,0.72);
  backdrop-filter: blur(8px);
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

.site-header.scrolled {
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(12px);
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

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

.logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--color-text);
}

.logo span {
  color: var(--color-gold);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-list a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.nav-list a:hover,
.nav-list a.active { color: var(--color-text); }
.nav-list a:hover::after,
.nav-list a.active::after { width: 100%; }

.nav-cta { margin-left: 12px; }

/* Mobile nav toggle */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 910;
}
.burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-text);
  transition: all var(--transition);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 72px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 36px;
}

.footer-brand .logo { margin-bottom: 20px; display: block; }
.footer-brand p { color: var(--color-text-muted); font-size: 13px; max-width: 280px; line-height: 1.8; }
.footer-brand .footer-contact { margin-top: 24px; }
.footer-brand .footer-contact p { color: var(--color-text-muted); font-size: 13px; margin-bottom: 6px; max-width: none; }
.footer-brand .footer-contact a { color: var(--color-gold); }
.footer-brand .footer-contact a:hover { color: var(--color-gold-light); }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--color-text-muted); font-size: 13px; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--color-text); }

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

.footer-bottom p { font-size: 12px; color: var(--color-text-muted); }
.footer-bottom a { color: var(--color-text-muted); font-size: 12px; }
.footer-bottom a:hover { color: var(--color-gold); }

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

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,13,0.3) 0%, rgba(13,13,13,0.65) 100%);
  z-index: 1;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.hero-content .section-eyebrow { margin-bottom: 20px; }

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--color-text);
  margin-bottom: 28px;
  max-width: 820px;
}

.hero-subtitle {
  font-size: 14px;
  color: rgba(232,226,217,0.72);
  max-width: 460px;
  margin-bottom: 44px;
  line-height: 1.8;
}

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

/* ─── SECTIONS ─── */
.section { padding: 112px 0; }
.section-alt { background: var(--color-surface); }
.section-center { text-align: center; }
.section-center .section-desc { margin: 0 auto; }
.section-center .gold-line { margin: 24px auto; }

/* ─── SPLIT LAYOUT ─── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.split-img { position: relative; overflow: hidden; }
.split-img img { width: 100%; height: 520px; object-fit: cover; }
.split-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-border);
  pointer-events: none;
}

/* ─── CARDS ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 40px;
  transition: border-color var(--transition);
}
.card:hover { border-color: var(--color-gold); }
.card-img { height: 220px; overflow: hidden; margin: -40px -40px 32px; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card-img img { transform: scale(1.04); }
.card-eyebrow { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 12px; font-weight: 500; }
.card h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 12px; }
.card p { font-size: 13px; color: var(--color-text-muted); line-height: 1.8; margin-bottom: 24px; }
.card-link { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-gold); font-weight: 500; display: inline-flex; align-items: center; gap: 8px; }
.card-link:hover { color: var(--color-gold-light); }
.card-link::after { content: '→'; transition: transform var(--transition); }
.card-link:hover::after { transform: translateX(4px); }

/* ─── MENU PAGE ─── */
.menu-categories { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 56px; justify-content: center; }
.menu-cat-btn {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.menu-cat-btn:hover,
.menu-cat-btn.active { border-color: var(--color-gold); color: var(--color-gold); }

.menu-section { display: none; }
.menu-section.active { display: block; }

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

.menu-item {
  background: var(--color-surface);
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  transition: background var(--transition);
}
.menu-item:hover { background: var(--color-surface-2); }
.menu-item-info h4 { font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 6px; }
.menu-item-info p { font-size: 12px; color: var(--color-text-muted); max-width: 280px; }
.menu-item-price { font-family: var(--font-serif); font-size: 1.1rem; color: var(--color-gold); white-space: nowrap; flex-shrink: 0; }

/* ─── EVENTS / POKER ─── */
.events-list { display: flex; flex-direction: column; gap: 1px; margin-top: 56px; }
.event-item {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 40px;
  align-items: center;
  background: var(--color-surface);
  padding: 36px 40px;
  border: 1px solid var(--color-border);
  transition: border-color var(--transition);
}
.event-item:hover { border-color: var(--color-gold); }
.event-date { text-align: center; }
.event-date .day { font-family: var(--font-serif); font-size: 3rem; line-height: 1; color: var(--color-gold); }
.event-date .month { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-text-muted); margin-top: 4px; }
.event-info h3 { font-family: var(--font-serif); font-size: 1.6rem; margin-bottom: 8px; }
.event-info p { font-size: 13px; color: var(--color-text-muted); max-width: 480px; }
.event-info .tags { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.event-info .tag { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-text-muted); border: 1px solid var(--color-border); padding: 4px 12px; }

/* ─── POKER TABLE STYLES ─── */
.poker-rules { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.poker-rule { border-left: 1px solid var(--color-gold); padding-left: 24px; }
.poker-rule h4 { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 10px; }
.poker-rule p { font-size: 13px; color: var(--color-text-muted); line-height: 1.8; }
.poker-schedule { margin-top: 56px; }
.schedule-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
  font-size: 13px;
}
.schedule-row.header-row { color: var(--color-gold); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; }
.schedule-row .tournament-name { font-family: var(--font-serif); font-size: 1.05rem; color: var(--color-text); }
.schedule-row .buy-in { color: var(--color-gold); font-weight: 500; }

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 280px;
  gap: 4px;
  margin-top: 64px;
}
.gallery-item { overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:nth-child(1) { grid-column: span 8; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 4; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-item:nth-child(6) { grid-column: span 6; }
.gallery-item:nth-child(7) { grid-column: span 6; }
.gallery-item:nth-child(8) { grid-column: span 3; }
.gallery-item:nth-child(9) { grid-column: span 5; }
.gallery-item:nth-child(10) { grid-column: span 4; }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-gold); font-weight: 500; }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--color-gold); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.contact-info { padding-top: 8px; }
.info-block { margin-bottom: 40px; }
.info-block h4 { font-family: var(--font-sans); font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 14px; }
.info-block p { font-size: 14px; color: var(--color-text-muted); line-height: 1.8; }
.info-block a { color: var(--color-text); transition: color var(--transition); }
.info-block a:hover { color: var(--color-gold); }

/* ─── PAGE HERO ─── */
.page-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: 0;

}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,13,0.4) 0%, rgba(13,13,13,0.8) 100%);
  z-index: 1;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 72px;
}
.page-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
}

/* ─── ABOUT STATS ─── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
  margin: 64px 0;
}
.stat-item {
  background: var(--color-surface);
  padding: 40px 32px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--color-gold);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ─── THANK YOU ─── */
.thankyou-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px;
}
.thankyou-inner { max-width: 580px; }
.thankyou-icon {
  width: 72px;
  height: 72px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  font-size: 28px;
  color: var(--color-gold);
}
.thankyou-inner h1 { font-family: var(--font-serif); font-size: 3rem; margin-bottom: 20px; }
.thankyou-inner p { color: var(--color-text-muted); font-size: 14px; line-height: 1.8; margin-bottom: 36px; }

/* ─── POLICY PAGES ─── */
.policy-wrap { max-width: 860px; margin: 0 auto; padding: 140px 40px 100px; }
.policy-wrap h1 { font-family: var(--font-serif); font-size: 2.6rem; margin-bottom: 12px; }
.policy-date { font-size: 12px; color: var(--color-text-muted); letter-spacing: 0.1em; margin-bottom: 48px; display: block; }
.policy-wrap h2 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; margin: 44px 0 16px; color: var(--color-text); }
.policy-wrap p { font-size: 14px; color: var(--color-text-muted); line-height: 1.9; margin-bottom: 18px; }
.policy-wrap ul { margin: 12px 0 18px 20px; }
.policy-wrap ul li { font-size: 14px; color: var(--color-text-muted); line-height: 1.9; margin-bottom: 8px; list-style: disc; }
.policy-wrap a { color: var(--color-gold); text-decoration: underline; }
.policy-wrap hr { border: none; border-top: 1px solid var(--color-border); margin: 40px 0; }

/* ─── AGE POPUP ─── */
.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,13,13,0.96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.age-modal {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 64px 56px;
  text-align: center;
  max-width: 480px;
  width: 90%;
}
.age-modal .gold-line { margin: 20px auto; }
.age-modal h2 { font-family: var(--font-serif); font-size: 2.2rem; margin-bottom: 12px; }
.age-modal p { font-size: 13px; color: var(--color-text-muted); margin-bottom: 36px; line-height: 1.8; }
.age-actions { display: flex; gap: 16px; justify-content: center; }
.age-disclaimer { font-size: 11px; color: var(--color-text-muted); margin-top: 24px; line-height: 1.6; }

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cookie-inner p { font-size: 12px; color: var(--color-text-muted); max-width: 640px; line-height: 1.7; }
.cookie-inner p a { color: var(--color-gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ─── RESERVE STRIP ─── */
.reserve-strip {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 80px 0;
  text-align: center;
}
.reserve-strip h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 3rem); margin-bottom: 16px; }
.reserve-strip p { color: var(--color-text-muted); font-size: 14px; margin-bottom: 36px; }

/* ─── TESTIMONIALS ─── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 64px; }
.testimonial {
  background: var(--color-surface);
  padding: 40px;
  border: 1px solid var(--color-border);
}
.testimonial-stars { color: var(--color-gold); font-size: 13px; letter-spacing: 4px; margin-bottom: 20px; }
.testimonial p { font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; line-height: 1.7; margin-bottom: 24px; color: var(--color-text); }
.testimonial-author { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-text-muted); }

/* ─── MAP PLACEHOLDER ─── */
.map-wrap {
  width: 100%;
  height: 400px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 64px;
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  overflow: hidden;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(80%) contrast(1.1) brightness(0.7); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split-img img { height: 360px; }
  .poker-rules { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-auto-rows: 220px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  nav { display: none; }
  .nav-cta-desktop { display: none; }
  .burger { display: flex; }

  .mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 905;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform var(--transition);
  }
  .mobile-nav.open { transform: translateX(0); }
  .mobile-nav a { font-family: var(--font-serif); font-size: 2rem; color: var(--color-text); font-weight: 300; }
  .mobile-nav a:hover { color: var(--color-gold); }

  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .cards-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .event-item { grid-template-columns: 80px 1fr; gap: 20px; }
  .event-item .btn { display: none; }
  .schedule-row { grid-template-columns: 1fr 1fr; }
  .schedule-row .buy-in,
  .schedule-row:not(.header-row) .schedule-row { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .poker-rules { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item { grid-column: span 1 !important; }
  .age-modal { padding: 40px 28px; }
  .age-actions { flex-direction: column; }
  .cookie-inner { flex-direction: column; }
}

/* ─── UTILITY ─── */
.text-gold { color: var(--color-gold); }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }