/* ============================================================
   Sip Royal interactive wine experience
   Design system: dark "royal / casino theatre" with gold accents
   ============================================================ */

:root {
  /* Colour */
  --ink:        #140f0e;   /* page background (near-black) */
  --ink-2:      #1d1614;   /* raised panels */
  --ink-3:      #271d1a;   /* cards */
  --wine:       #6b0f1a;   /* deep burgundy */
  --wine-deep:  #480a11;
  --red:        #d12a3a;   /* accent (Anastasiia's red) */
  --red-bright: #e23b48;
  --felt:       #0f3b34;
  --felt-deep:  #09231f;
  --gold:       #c9a24b;
  --gold-light: #e6cd8c;
  --cream:      #f5ece0;
  --cream-dim:  rgba(245, 236, 224, 0.74);
  --cream-faint:rgba(245, 236, 224, 0.52);
  --line:       rgba(201, 162, 75, 0.22);

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-logo:    "Marcellus", Georgia, serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --maxw: 1180px;
  --pad: clamp(1.1rem, 4vw, 2.5rem);
  --radius: 14px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --header-h: 72px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
}

h2 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.3rem); }
h3 { font-size: clamp(1.35rem, 1.15rem + 0.7vw, 1.7rem); }

p { margin: 0 0 1rem; }

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

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 1rem;
}

.section { padding: clamp(3.5rem, 7vw, 7rem) 0; }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-intro { color: var(--cream-dim); font-size: 1.12rem; }

.note-line { color: var(--gold-light); font-style: italic; font-family: var(--font-display); font-size: 1.25rem; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--ink); padding: 0.7rem 1.1rem; border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; border-radius: 4px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-height: 44px;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, #b92735 0%, var(--wine) 58%, var(--wine-deep) 100%);
  color: #fff;
  border-color: rgba(230, 205, 140, 0.18);
  box-shadow: 0 12px 24px rgba(107, 15, 26, 0.32), inset 0 1px 0 rgba(255,255,255,0.16);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #c63140 0%, #741421 58%, #520b15 100%);
  box-shadow: 0 14px 28px rgba(107, 15, 26, 0.42), inset 0 1px 0 rgba(255,255,255,0.18);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--cream);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(201,162,75,0.07); }

.ico { width: 1.15em; height: 1.15em; flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(20, 15, 14, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.site-header.scrolled {
  background: rgba(20, 15, 14, 0.95);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.2rem;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: 0.55rem; min-width: 0; text-decoration: none; color: var(--gold); }
.brand-mark { width: 30px; height: 30px; flex: none; color: var(--gold); }
.brand-word {
  font-family: var(--font-logo);
  font-size: 1.45rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
}

.main-nav { display: flex; gap: 1.6rem; }
.main-nav a {
  text-decoration: none; color: var(--cream-dim);
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.02em;
  padding: 0.3rem 0; position: relative;
  transition: color 0.2s ease;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--gold); transition: width 0.25s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--cream); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 1rem; }

.lang-switch {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--cream-faint); font-size: 0.85rem;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  color: var(--cream-faint); font: inherit; font-weight: 600; letter-spacing: 0.04em;
  min-width: 32px; min-height: 32px;
  padding: 0.2rem 0.1rem; transition: color 0.2s ease;
}
.lang-btn.is-active { color: var(--gold); }
.lang-btn:hover { color: var(--cream); }

.header-cta { padding: 0.6rem 1.2rem; font-size: 0.88rem; }

.nav-toggle {
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (split: text left, photo right) ---------- */
.hero {
  position: relative;
  padding: clamp(2.25rem, 5vh, 4rem) 0 clamp(2.5rem, 5vh, 4.5rem);
  background:
    radial-gradient(760px 520px at 88% 18%, rgba(107, 15, 26, 0.42), transparent 70%),
    radial-gradient(620px 420px at -5% 95%, rgba(201, 162, 75, 0.10), transparent 70%),
    var(--ink);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-content { max-width: 620px; }
.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
  object-position: 62% 22%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-media::after {
  content: ""; position: absolute; inset: 12px;
  border: 1px solid rgba(201, 162, 75, 0.28);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
}

.hero-eyebrow { color: var(--gold-light); }

.hero-title {
  font-size: clamp(2.8rem, 1.8rem + 5vw, 5.4rem);
  font-weight: 600;
  margin-bottom: 0.4em;
  text-wrap: balance;
}
.hero-sub {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.4rem);
  color: var(--cream-dim);
  max-width: 600px;
  margin-bottom: 1.6rem;
}

.hero-stat {
  display: inline-flex; align-items: center; gap: 0.7rem; flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 2rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0,0,0,0.25);
}
.hero-stat strong { color: var(--gold); font-size: 1.5rem; font-weight: 700; }
.hero-stat .dot { color: var(--gold); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2rem; }

.hero-trust {
  font-size: 0.85rem; letter-spacing: 0.04em;
  color: var(--cream-faint); text-transform: uppercase;
  margin: 0;
}

/* stack the hero on smaller screens: photo on top, text below */
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .hero-content { max-width: none; }
  .hero-media { order: -1; max-width: 460px; margin-inline: auto; width: 100%; }
  .hero-media img { aspect-ratio: 5 / 4; object-position: 62% 20%; }
}

/* ---------- Quick facts ---------- */
.facts {
  background: linear-gradient(180deg, var(--ink-2), var(--ink));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.facts-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  padding-block: clamp(1.4rem, 3vw, 2.2rem);
}
.fact {
  display: flex; flex-direction: column; gap: 0.25rem;
  padding: 0.5rem 1rem; text-align: center;
  border-right: 1px solid var(--line);
}
.fact:last-child { border-right: none; }
.fact-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); }
.fact-value { font-family: var(--font-display); font-size: 1.2rem; color: var(--cream); }

/* ---------- Experience ---------- */
.experience { background: var(--ink); }
.tagline-trio {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem;
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.3rem, 1.1rem + 1vw, 1.9rem);
  color: var(--gold-light);
  margin: 0 0 clamp(2rem, 4vw, 3rem);
}

.game-table {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
  margin: 0 0 clamp(2.4rem, 5vw, 3.6rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(201, 162, 75, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(420px 220px at 90% 20%, rgba(201, 162, 75, 0.14), transparent 72%),
    linear-gradient(135deg, rgba(15, 59, 52, 0.78), rgba(9, 35, 31, 0.72)),
    var(--felt-deep);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.game-copy { max-width: 490px; }
.game-kicker {
  margin: 0 0 0.7rem;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.game-copy h3 { margin-bottom: 0.55rem; }
.game-copy p:last-child { margin: 0; color: var(--cream-dim); }

.bet-board {
  position: relative;
  min-height: 260px;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid rgba(230, 205, 140, 0.30);
  border-radius: 12px;
  background:
    linear-gradient(rgba(230, 205, 140, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 205, 140, 0.09) 1px, transparent 1px),
    radial-gradient(280px 160px at 50% 100%, rgba(107, 15, 26, 0.32), transparent 70%),
    rgba(5, 28, 24, 0.82);
  background-size: 100% 54px, 54px 100%, auto, auto;
}
.bet-board::before,
.bet-board::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(230, 205, 140, 0.18);
  border-radius: 999px;
  pointer-events: none;
}
.bet-board::after {
  inset: 54px 22%;
  border-color: rgba(230, 205, 140, 0.12);
}

.bet-board-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--cream);
  font-family: var(--font-logo);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.bet-board-head strong {
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

.bet-spots {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 3rem 0 2rem;
}
.bet-spots span {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(230, 205, 140, 0.26);
  border-radius: 999px;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-style: italic;
  background: rgba(20, 15, 14, 0.24);
}

.chip-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}
.chip {
  width: 54px;
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 4px dashed rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.34), inset 0 0 0 2px rgba(0,0,0,0.22);
}
.chip-red { background: var(--wine); }
.chip-gold { background: #a47f2d; }
.chip-cream { background: #e7d8bc; color: var(--ink); border-color: rgba(107, 15, 26, 0.42); }

.steps {
  list-style: none; margin: 0 0 2.4rem; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
  counter-reset: step;
}
.step {
  background:
    linear-gradient(145deg, rgba(15, 59, 52, 0.18), transparent 46%),
    var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.step:hover { transform: translateY(-5px); border-color: var(--gold); }
.step-num {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 700;
  color: transparent; -webkit-text-stroke: 1px var(--gold); text-stroke: 1px var(--gold);
  display: block; margin-bottom: 0.4rem; line-height: 1;
}
.step h3 { color: var(--cream); margin-bottom: 0.4rem; }
.step p { color: var(--cream-dim); margin: 0; }

/* ---------- Occasions ---------- */
.occasions { background: linear-gradient(180deg, var(--ink), var(--ink-2)); }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.card {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  display: flex; flex-direction: column;
  min-height: 230px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative; overflow: hidden;
}
.card:nth-child(2) {
  background: linear-gradient(145deg, rgba(15, 59, 52, 0.20), transparent 50%), var(--ink-3);
}
.card:nth-child(3) {
  background: linear-gradient(145deg, rgba(201, 162, 75, 0.12), transparent 48%), var(--ink-3);
}
.card:nth-child(4) {
  background: linear-gradient(145deg, rgba(107, 15, 26, 0.20), transparent 52%), var(--ink-3);
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow); }
.card:hover::before { transform: scaleX(1); }
.card h3 { color: var(--cream); }
.card p { color: var(--cream-dim); flex: 1; }
.card-link {
  text-decoration: none; color: var(--gold-light); font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.02em; transition: gap 0.2s ease, color 0.2s ease;
}
.card-link:hover { color: var(--gold); }

/* ---------- About ---------- */
.about { background: var(--ink-2); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about-media img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  width: 100%; object-fit: cover; aspect-ratio: 7/5;
}
.about-role { color: var(--gold); font-family: var(--font-display); font-size: 1.25rem; font-style: italic; margin-bottom: 1.2rem; }
.about-body p { color: var(--cream-dim); }
.creds { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 0.7rem; }
.creds li {
  position: relative; padding-left: 1.8rem; color: var(--cream);
  font-size: 0.98rem;
}
.creds li::before {
  content: "♛"; position: absolute; left: 0; top: 0; color: var(--gold);
}

/* ---------- Gallery (swipeable card carousel) ---------- */
.gallery { background: linear-gradient(180deg, var(--ink), var(--ink-2)); }
.gallery-carousel { position: relative; display: flex; align-items: center; gap: 0.7rem; }
.gallery-track {
  list-style: none; margin: 0; padding: 0.4rem;
  display: flex; gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track > li { flex: 0 0 auto; scroll-snap-align: center; }

.g-item {
  padding: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  cursor: pointer; background: var(--ink-3); position: relative; display: block;
  width: clamp(240px, 78vw, 300px); aspect-ratio: 3 / 4;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.g-item:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.g-item:hover img { transform: scale(1.05); }
.g-item::after {
  content: "⤢"; position: absolute; right: 0.6rem; bottom: 0.5rem; color: #fff;
  background: rgba(0,0,0,0.5); border-radius: 6px; width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center; font-size: 0.95rem;
  opacity: 0; transition: opacity 0.2s ease;
}
.g-item:hover::after { opacity: 1; }

.g-nav {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--ink-3); color: var(--cream);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}
.g-nav svg { width: 22px; height: 22px; }
.g-nav:hover { border-color: var(--gold); color: var(--gold-light); background: var(--ink-2); }
.g-nav:disabled { opacity: 0.25; cursor: default; }

.gallery-hint {
  text-align: center; color: var(--cream-faint); font-size: 0.85rem; margin: 1.2rem 0 0;
  letter-spacing: 0.03em;
}
/* on touch devices, swiping replaces the arrows */
@media (hover: none) {
  .g-nav { display: none; }
}

/* ---------- Packages ---------- */
.packages { background: var(--ink-2); }
.packages-inner { max-width: 820px; margin-inline: auto; text-align: center; }
.packages-inner .section-head { margin-inline: auto; }
.included {
  list-style: none; margin: 0 auto 2.2rem; padding: 0; max-width: 640px;
  display: grid; gap: 0.8rem; text-align: left;
}
.included li {
  position: relative; padding: 0.9rem 1rem 0.9rem 2.6rem;
  background:
    linear-gradient(90deg, rgba(15, 59, 52, 0.32), transparent 46%),
    var(--ink-3);
  border: 1px solid var(--line); border-radius: 10px;
  color: var(--cream);
}
.included li::before {
  content: "✓"; position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-weight: 700;
}
.packages-cta { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }

/* ---------- FAQ ---------- */
.faq { background: var(--ink); }
.faq-list { max-width: 820px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0.4rem 0;
}
.faq-item summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: 1.3rem; color: var(--cream);
  padding: 1rem 2.4rem 1rem 0; position: relative;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0.2rem; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 1.6rem; font-family: var(--font-body); transition: transform 0.25s ease;
}
.faq-item[open] summary { color: var(--gold-light); }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--gold-light); }
.faq-item p { color: var(--cream-dim); padding: 0 2.4rem 1rem 0; margin: 0; }

/* ---------- Contact ---------- */
.contact {
  background:
    radial-gradient(900px 400px at 50% -10%, rgba(107,15,26,0.5), transparent 70%),
    var(--ink-2);
  text-align: center;
}
.contact-inner { max-width: 760px; margin-inline: auto; }
.contact-sub { color: var(--cream-dim); font-size: 1.1rem; margin-bottom: 2rem; }
.contact-actions { display: flex; justify-content: center; margin-bottom: 1rem; }
.contact-primary { min-width: min(100%, 280px); }
.contact-more {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin-bottom: 1.8rem;
}
.contact-method {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.55rem 0.8rem;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}
.contact-method:hover {
  color: var(--gold-light);
  transform: translateY(-1px);
}
.contact-method .ico { color: var(--gold); }
.contact-meta { color: var(--cream-faint); font-size: 0.9rem; letter-spacing: 0.03em; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); border-top: 1px solid var(--line); padding-top: 3rem; }
.footer-inner {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem;
  padding-bottom: 2rem; border-bottom: 1px solid var(--line);
}
.footer-brand .brand-word { font-size: 1.6rem; display: block; margin-bottom: 0.5rem; }
.footer-tag { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--gold-light); margin: 0 0 0.4rem; }
.footer-host { color: var(--cream-faint); font-size: 0.9rem; margin: 0; }
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact a { color: var(--cream-dim); text-decoration: none; transition: color 0.2s ease; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem;
  padding-block: 1.5rem; color: var(--cream-faint); font-size: 0.85rem;
}
.footer-bottom p { margin: 0; }

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: none; gap: 0.7rem; padding: 0.7rem var(--pad) calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(20, 15, 14, 0.96);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  opacity: 0;
  pointer-events: none;
  transform: translateY(105%);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.mobile-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-cta .btn { flex: 1; padding: 0.75rem 1rem; font-size: 0.9rem; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(10, 7, 6, 0.90);
  display: none; align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 10px; box-shadow: var(--shadow); }
.lightbox-close {
  position: absolute; top: 1.2rem; right: 1.6rem; background: none; border: none;
  color: var(--cream); font-size: 2.6rem; line-height: 1; cursor: pointer;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(230, 205, 140, 0.34);
  background: rgba(20, 15, 14, 0.78);
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.lightbox-nav svg { width: 24px; height: 24px; }
.lightbox-prev { left: clamp(1rem, 4vw, 3rem); }
.lightbox-next { right: clamp(1rem, 4vw, 3rem); }
.lightbox-nav:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(20, 15, 14, 0.96);
  transform: translateY(-50%) scale(1.04);
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.46s ease, transform 0.46s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .facts-grid { grid-template-columns: repeat(2, 1fr); gap: 0.4rem 0; }
  .fact { border-bottom: 1px solid var(--line); padding-block: 0.9rem; }
  .fact:nth-child(odd) { border-right: 1px solid var(--line); }
  .fact:nth-child(even) { border-right: none; }
  .fact:last-child { grid-column: 1 / -1; border-bottom: none; border-right: none; }
  .game-table { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 520px; }
}

@media (max-width: 760px) {
  :root { --header-h: 64px; }

  .header-inner { gap: 0.65rem; }
  .brand { gap: 0.42rem; }
  .brand-mark { width: 26px; height: 26px; }
  .brand-word { font-size: 1.3rem; letter-spacing: 0.12em; }
  .header-actions { gap: 0.45rem; }
  .lang-switch { gap: 0.18rem; font-size: 0.83rem; }
  .lang-btn { min-width: 30px; min-height: 34px; }

  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; gap: 0;
    background: rgba(20, 15, 14, 0.99);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--pad) 1.2rem;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 0.9rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .main-nav a::after { display: none; }

  .header-cta { display: none; }
  .nav-toggle { display: flex; }

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

  .mobile-cta { display: flex; }
  body { padding-bottom: 84px; }

  .hero { min-height: auto; padding-top: 2rem; }
  .hero-grid { gap: 1.55rem; }
  .hero-media { max-width: 420px; }
  .hero-title { font-size: clamp(2.45rem, 14vw, 3.75rem); }
  .hero-sub { font-size: 1.05rem; }
  .hero-stat { margin-bottom: 1.45rem; }
  .hero-cta { margin-bottom: 1.5rem; }
  .game-table { gap: 1rem; padding: 1.05rem; }
  .game-kicker { margin-bottom: 0.45rem; }
  .game-copy h3 { font-size: 1.45rem; }
  .game-copy p:last-child { font-size: 0.98rem; line-height: 1.55; }
  .bet-board { min-height: 218px; }
  .bet-spots { gap: 0.5rem; margin-block: 2rem 1.3rem; }
  .bet-spots span { min-height: 72px; font-size: 1.05rem; }
  .chip { width: 48px; }
  .contact-primary { width: 100%; max-width: 330px; }
  .contact-more { gap: 0.35rem 0.7rem; }
  .lightbox { padding: 1rem; }
  .lightbox img { max-width: 86vw; }
  .lightbox-nav {
    width: 44px;
    height: 44px;
    top: auto;
    bottom: calc(1rem + env(safe-area-inset-bottom));
    transform: none;
  }
  .lightbox-prev { left: 1.1rem; }
  .lightbox-next { right: 1.1rem; }
  .lightbox-nav:hover { transform: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 360px) {
  :root { --pad: 1rem; }

  .brand-mark { width: 22px; height: 22px; }
  .brand-word { font-size: 1.04rem; letter-spacing: 0.1em; }
  .header-actions { gap: 0.28rem; }
  .lang-switch { font-size: 0.78rem; gap: 0.1rem; }
  .lang-btn { min-width: 27px; }
  .nav-toggle { width: 40px; height: 40px; }

  .hero-media img { aspect-ratio: 1 / 0.78; }
  .hero-title { font-size: 2.55rem; }
  .game-copy h3 { font-size: 1.35rem; }
  .game-copy p:last-child { font-size: 0.94rem; }
  .bet-board { min-height: 204px; padding: 0.9rem; }
  .bet-spots { margin-block: 1.65rem 1rem; }
  .bet-spots span { min-height: 64px; font-size: 0.96rem; }
  .chip { width: 44px; font-size: 1rem; }
  .mobile-cta { gap: 0.55rem; }
  .mobile-cta .btn { padding-inline: 0.75rem; font-size: 0.85rem; }
}

/* ---------- Motion / contrast preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
