:root {
  --bg: #080a0f;
  --bg-soft: #0d1119;
  --panel: #111722;
  --panel-2: #161e2b;
  --line: #253044;
  --text: #f4f7fb;
  --muted: #aab3c4;
  --blue: #2f66ff;
  --blue-dark: #1949c8;
  --orange: #ffad32;
  --orange-dark: #d78305;
  --green: #6fd18d;
  --danger: #ff6b6b;
  --container: 1240px;
  --radius: 18px;
  --shadow: 0 24px 60px rgba(0,0,0,.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
::selection { background: var(--orange); color: #151515; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 92px 0; }
.section-tight { padding: 64px 0; }
.section-dark { background: #0b0f16; border-block: 1px solid #151c28; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 3px; background: var(--orange); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.section-head h2, .page-hero h1, .hero h1 {
  margin: 0;
  font-family: "Arial Black", Impact, sans-serif;
  line-height: .98;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.section-head h2 { max-width: 760px; font-size: clamp(34px, 5vw, 64px); }
.section-head p { max-width: 500px; margin: 0; color: var(--muted); }
.small-note { color: var(--muted); font-size: 13px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,10,15,.94);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.header-row { min-height: 76px; display: flex; align-items: center; gap: 28px; }
.logo { display: inline-flex; align-items: center; gap: 12px; flex: none; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--blue);
  color: white; font-family: "Arial Black", sans-serif; font-size: 20px;
  transform: rotate(-4deg);
}
.logo-copy strong { display: block; font-family: "Arial Black", sans-serif; font-size: 17px; line-height: 1; letter-spacing: -.02em; }
.logo-copy span { display: block; margin-top: 4px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.nav a { position: relative; color: #d6dbe5; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -10px; height: 3px; background: var(--orange); transition: right .2s ease; }
.nav a:hover::after, .nav a.active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: 8px; }
.header-price {
  border: 1px solid var(--line); background: transparent; color: var(--text);
  padding: 11px 15px; border-radius: 10px; font-weight: 900; text-transform: uppercase; font-size: 12px;
}
.header-price:hover { border-color: var(--orange); color: var(--orange); }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 8px; }
.menu-toggle span { display: block; height: 2px; margin: 6px 0; background: white; transition: .2s ease; }

.btn {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .035em;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: #151515; }
.btn-primary:hover { background: #ffc25f; }
.btn-blue { background: var(--blue); color: white; }
.btn-blue:hover { background: #4f7dff; }
.btn-ghost { border-color: #435067; color: white; background: rgba(8,10,15,.28); }
.btn-ghost:hover { border-color: white; }
.btn-small { min-height: 40px; padding-inline: 16px; font-size: 11px; }
.btn-full { width: 100%; }

.hero { position: relative; min-height: 760px; display: grid; align-items: center; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: url('../images/hero.webp'); background-size: cover; background-position: center;
  transform: scale(1.015);
}
.hero::after { content: ""; position: absolute; inset: 0; background: rgba(5,7,11,.62); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; align-items: end; min-height: 680px; padding: 100px 0 70px; }
.hero-copy { align-self: center; max-width: 760px; }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; color: #dce5f8; }
.hero-kicker i { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(111,209,141,.12); }
.hero h1 { font-size: clamp(58px, 8.2vw, 112px); max-width: 900px; }
.hero h1 span { color: var(--blue); }
.hero-lead { max-width: 650px; margin: 26px 0 32px; color: #dce1ea; font-size: clamp(18px, 2vw, 22px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 36px; max-width: 700px; }
.hero-fact { padding: 17px 18px; background: rgba(10,13,20,.82); border: 1px solid rgba(255,255,255,.13); border-radius: 12px; }
.hero-fact strong { display: block; font-size: 19px; }
.hero-fact span { color: var(--muted); font-size: 12px; }
.hero-side { display: flex; align-items: flex-end; justify-content: flex-end; }
.hero-card { width: 330px; background: var(--blue); color: white; padding: 28px; border-radius: 18px 18px 0 18px; box-shadow: var(--shadow); }
.hero-card-label { font-size: 11px; font-weight: 950; text-transform: uppercase; letter-spacing: .13em; opacity: .8; }
.hero-card h3 { margin: 12px 0 10px; font-size: 28px; line-height: 1.05; }
.hero-card p { margin: 0 0 20px; color: #dde6ff; font-size: 14px; }
.hero-card .btn { background: white; color: #111; width: 100%; }

.quick-prices {
  position: relative;
  z-index: 8;
  margin-top: -38px;
}
.quick-prices-row {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr) .9fr;
  background: #0f1520;
  border: 1px solid #263249;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.quick-prices-title { padding: 18px 22px; display: flex; align-items: center; gap: 12px; color: #7ba0ff; font-weight: 950; font-size: 12px; text-transform: uppercase; }
.quick-price { padding: 14px 16px; border-left: 1px solid #273248; text-align: center; }
.quick-price span { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; font-weight: 900; }
.quick-price strong { display: block; margin-top: 4px; font-size: 13px; white-space: nowrap; }
.quick-prices-action { padding: 10px; display: flex; align-items: center; border-left: 1px solid #273248; }
.quick-prices-action .btn { width: 100%; }

.grid { display: grid; gap: 20px; }
.cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 27px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--radius);
  overflow: hidden;
}
.price-card.featured { background: var(--blue); border-color: var(--blue); }
.price-card .tag { position: absolute; top: 18px; right: 18px; padding: 7px 10px; border-radius: 999px; background: var(--orange); color: #17120a; font-size: 10px; font-weight: 950; text-transform: uppercase; }
.price-card h3 { margin: 0; font-size: 24px; }
.price-card .price { margin: 25px 0 8px; font-family: "Arial Black", sans-serif; font-size: clamp(28px, 3vw, 42px); line-height: 1; overflow-wrap: anywhere; }
.price-card .period { color: var(--muted); font-size: 13px; }
.price-card.featured .period, .price-card.featured li { color: #dfe7ff; }
.price-card ul { margin: 24px 0 28px; padding: 0; list-style: none; color: var(--muted); }
.price-card li { display: flex; align-items: center; gap: 9px; margin: 9px 0; font-size: 14px; }
.price-card li::before { content: "✓"; color: var(--orange); font-weight: 950; }
.price-card .btn { margin-top: auto; }

.zone-card {
  min-height: 440px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
}
.zone-card img { width: 100%; height: 240px; object-fit: cover; transition: transform .35s ease; }
.zone-card:hover img { transform: scale(1.025); }
.zone-body { padding: 24px; }
.zone-top { display: flex; align-items: start; justify-content: space-between; gap: 18px; }
.zone-card h3 { margin: 0; font-family: "Arial Black", sans-serif; font-size: 25px; text-transform: uppercase; }
.zone-badge { padding: 6px 9px; border-radius: 999px; background: #202a3b; color: #aebbd3; font-size: 10px; font-weight: 900; text-transform: uppercase; }
.zone-specs { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.zone-specs span { padding: 7px 9px; background: #0b1018; border: 1px solid #253148; border-radius: 8px; color: #c4cddd; font-size: 11px; }
.zone-bottom { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.zone-price { font-weight: 950; font-size: 13px; color: var(--orange); overflow-wrap: anywhere; }

.spec-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; align-items: stretch; }
.spec-photo { min-height: 620px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.spec-photo img { width: 100%; height: 100%; object-fit: cover; }
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.spec-item { padding: 22px; border-radius: 14px; border: 1px solid var(--line); background: var(--panel); }
.spec-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; background: var(--blue); font-size: 21px; margin-bottom: 18px; }
.spec-item small { display: block; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 900; }
.spec-item strong { display: block; margin-top: 6px; font-size: 20px; }

.game-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 12px; }
.game-card { min-height: 190px; padding: 18px 13px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid #2b3547; border-radius: 14px; background: #111722; overflow: hidden; position: relative; }
.game-card::before { content: ""; position: absolute; width: 120px; height: 120px; border-radius: 50%; background: var(--blue); opacity: .15; top: -50px; right: -40px; }
.game-card:nth-child(2n)::before { background: var(--orange); }
.game-card:nth-child(3n)::before { background: #e25555; }
.game-abbr { position: relative; font-family: "Arial Black", sans-serif; font-size: 32px; letter-spacing: -.05em; }
.game-card strong { position: relative; font-size: 12px; text-transform: uppercase; line-height: 1.15; }
.game-card span { position: relative; color: var(--muted); font-size: 10px; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.benefit { min-height: 190px; padding: 26px; background: var(--panel); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.benefit:nth-child(3n) { border-right: 0; }
.benefit:nth-last-child(-n+3) { border-bottom: 0; }
.benefit-number { color: var(--orange); font-family: "Arial Black", sans-serif; font-size: 13px; }
.benefit h3 { margin: 25px 0 10px; font-size: 19px; }
.benefit p { margin: 0; color: var(--muted); font-size: 14px; }

.gallery { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-template-rows: 320px 320px; gap: 14px; }
.gallery button { position: relative; padding: 0; border: 0; border-radius: 16px; overflow: hidden; background: #111; }
.gallery button:first-child { grid-row: 1 / 3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease, filter .35s ease; }
.gallery button:hover img { transform: scale(1.03); filter: brightness(1.12); }
.gallery-label { position: absolute; left: 16px; bottom: 16px; padding: 8px 10px; border-radius: 8px; background: rgba(5,7,10,.78); color: white; font-size: 11px; font-weight: 900; text-transform: uppercase; }

.event-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); overflow: hidden; }
.event-photo { height: 230px; position: relative; overflow: hidden; }
.event-photo img { width: 100%; height: 100%; object-fit: cover; }
.event-date { position: absolute; top: 16px; left: 16px; width: 64px; padding: 10px 7px; background: var(--orange); color: #17120a; border-radius: 10px; text-align: center; font-weight: 950; line-height: 1.05; }
.event-date strong { display: block; font-size: 24px; }
.event-date span { display: block; font-size: 10px; text-transform: uppercase; }
.event-body { padding: 24px; }
.event-meta { display: flex; gap: 12px; flex-wrap: wrap; color: var(--muted); font-size: 12px; }
.event-body h3 { margin: 14px 0 10px; font-size: 25px; }
.event-body p { color: var(--muted); }
.event-bottom { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 22px; }
.event-prize { font-weight: 950; color: var(--orange); }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review { padding: 25px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); }
.review-stars { color: var(--orange); letter-spacing: .14em; }
.review p { margin: 20px 0; color: #d5dae4; }
.review-person { display: flex; align-items: center; gap: 12px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--blue); font-weight: 950; }
.review-person strong { display: block; }
.review-person span { color: var(--muted); font-size: 12px; }

.cta-band { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 44px; border-radius: var(--radius); background: var(--blue); }
.cta-band h2 { margin: 0 0 8px; font-family: "Arial Black", sans-serif; font-size: clamp(30px, 4vw, 52px); line-height: 1; text-transform: uppercase; }
.cta-band p { margin: 0; color: #dfe7ff; }
.cta-actions { display: flex; gap: 10px; }
.cta-band .btn-primary { background: var(--orange); }
.cta-band .btn-ghost { border-color: rgba(255,255,255,.45); }

.page-hero { padding: 94px 0 62px; border-bottom: 1px solid var(--line); background: #0b0f16; }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 40px; }
.page-hero h1 { font-size: clamp(52px, 8vw, 102px); }
.page-hero h1 span { color: var(--blue); }
.page-hero p { margin: 20px 0 0; color: var(--muted); font-size: 18px; max-width: 700px; }
.page-aside { padding: 24px; border: 1px solid var(--line); background: var(--panel); border-radius: 14px; }
.page-aside strong { display: block; font-size: 18px; }
.page-aside p { margin: 8px 0 18px; color: var(--muted); font-size: 14px; }

.zone-detail { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--panel); }
.zone-detail:nth-child(even) .zone-detail-photo { order: 2; }
.zone-detail-photo img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.zone-detail-body { padding: clamp(30px, 5vw, 64px); display: flex; flex-direction: column; justify-content: center; }
.zone-detail-body h2 { margin: 0 0 16px; font-family: "Arial Black", sans-serif; font-size: clamp(38px, 5vw, 68px); text-transform: uppercase; }
.zone-detail-body p { color: var(--muted); }
.zone-detail-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 24px 0; }
.zone-detail-list div { padding: 13px; background: #0d121b; border: 1px solid #263149; border-radius: 10px; }
.zone-detail-list small { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; font-weight: 900; }
.zone-detail-list strong { display: block; margin-top: 4px; }
.zone-detail-price { margin: 8px 0 24px; color: var(--orange); font-family: "Arial Black", sans-serif; font-size: 25px; overflow-wrap: anywhere; }

.booking-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 26px; align-items: start; }
.form-card, .summary-card, .contact-card { padding: 30px; border-radius: var(--radius); background: var(--panel); border: 1px solid var(--line); }
.form-card h2, .summary-card h2, .contact-card h2 { margin: 0 0 24px; font-size: 28px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid #344159;
  background: #0b1018;
  color: white;
  border-radius: 10px;
  padding: 14px 15px;
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); }
.field textarea { min-height: 120px; resize: vertical; }
.check-row { display: flex; align-items: start; gap: 10px; color: var(--muted); font-size: 13px; }
.check-row input { margin-top: 3px; }
.form-actions { margin-top: 20px; display: flex; gap: 12px; align-items: center; }
.summary-card { position: sticky; top: 98px; }
.summary-list { margin: 0; padding: 0; list-style: none; }
.summary-list li { display: flex; justify-content: space-between; gap: 15px; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.summary-list li strong { color: var(--text); text-align: right; }
.summary-total { margin-top: 22px; padding: 18px; background: var(--blue); border-radius: 12px; }
.summary-total span { display: block; font-size: 11px; text-transform: uppercase; font-weight: 900; }
.summary-total strong { display: block; margin-top: 6px; font-size: 23px; overflow-wrap: anywhere; }
.summary-note { color: var(--muted); font-size: 12px; margin-top: 14px; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; }
.contact-list { display: grid; gap: 12px; }
.contact-item { padding: 18px; border-radius: 12px; background: #0c1119; border: 1px solid var(--line); }
.contact-item small { display: block; color: var(--muted); text-transform: uppercase; font-weight: 900; letter-spacing: .05em; }
.contact-item strong { display: block; margin-top: 5px; font-size: 17px; }
.map-box { position: relative; min-height: 560px; border-radius: var(--radius); overflow: hidden; background-color: #111722; background-image: linear-gradient(#202a3a 1px, transparent 1px), linear-gradient(90deg, #202a3a 1px, transparent 1px); background-size: 44px 44px; border: 1px solid var(--line); }
.map-road { position: absolute; height: 76px; width: 130%; left: -15%; top: 42%; background: #2b3442; transform: rotate(-13deg); border-block: 5px solid #424d5d; }
.map-road.vertical { width: 76px; height: 130%; left: 66%; top: -15%; transform: rotate(8deg); border: 0; border-inline: 5px solid #424d5d; }
.map-marker { position: absolute; left: 55%; top: 42%; transform: translate(-50%,-50%); width: 66px; height: 66px; border-radius: 50% 50% 50% 12px; rotate: -45deg; background: var(--orange); display: grid; place-items: center; box-shadow: 0 15px 35px rgba(0,0,0,.35); }
.map-marker::after { content: "C"; rotate: 45deg; color: #141414; font-family: "Arial Black", sans-serif; font-size: 24px; }
.map-label { position: absolute; left: 55%; top: calc(42% + 70px); transform: translateX(-50%); padding: 10px 13px; background: #080b10; border: 1px solid #3a465a; border-radius: 9px; font-size: 12px; font-weight: 900; white-space: nowrap; }

.site-footer { padding: 58px 0 90px; border-top: 1px solid var(--line); background: #07090d; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 50px; }
.footer-brand p { max-width: 350px; color: var(--muted); font-size: 14px; }
.footer-col h4 { margin: 0 0 17px; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.footer-col a { display: block; margin: 10px 0; color: var(--muted); font-size: 14px; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 45px; padding-top: 24px; border-top: 1px solid #1c2330; color: #747f92; font-size: 12px; }

.price-drawer-backdrop, .lightbox { position: fixed; inset: 0; z-index: 200; display: none; background: rgba(0,0,0,.72); }
.price-drawer-backdrop.open, .lightbox.open { display: block; }
.price-drawer { position: absolute; top: 0; right: 0; width: min(480px, 100%); height: 100%; padding: 28px; background: #0e131c; border-left: 1px solid #2c374b; overflow-y: auto; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 25px; }
.drawer-head h2 { margin: 0; text-transform: uppercase; font-family: "Arial Black", sans-serif; }
.icon-btn { width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line); background: #151c27; color: white; font-size: 24px; }
.drawer-price { padding: 18px 0; border-bottom: 1px solid var(--line); }
.drawer-price div { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.drawer-price strong { color: var(--orange); text-align: right; overflow-wrap: anywhere; }
.drawer-price p { margin: 5px 0 0; color: var(--muted); font-size: 12px; }

.lightbox { place-items: center; padding: 30px; }
.lightbox.open { display: grid; }
.lightbox img { max-width: min(1100px, 94vw); max-height: 86vh; border-radius: 16px; border: 1px solid #39455a; }
.lightbox-close { position: fixed; top: 24px; right: 24px; }

.toast { position: fixed; right: 24px; bottom: 24px; z-index: 400; max-width: 380px; padding: 16px 18px; background: #141b26; border: 1px solid #35425a; border-left: 5px solid var(--green); border-radius: 12px; color: white; box-shadow: var(--shadow); transform: translateY(120px); opacity: 0; transition: .25s ease; }
.toast.show { transform: translateY(0); opacity: 1; }

.reveal { opacity: 1; transform: none; transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.scroll-progress { position: fixed; top: 0; left: 0; z-index: 300; height: 3px; width: 0; background: var(--orange); }
.mobile-bar { display: none; }

@media (max-width: 1100px) {
  .nav { position: fixed; inset: 76px 0 auto; display: none; padding: 24px 20px 30px; background: #0a0d13; border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 6px; }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; font-size: 15px; }
  .nav a::after { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .header-actions .btn { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { display: none; }
  .quick-prices-row { grid-template-columns: 1fr 1fr 1fr; }
  .quick-prices-title { grid-column: 1 / -1; border-bottom: 1px solid #273248; }
  .quick-price { border-bottom: 1px solid #273248; }
  .quick-prices-action { grid-column: span 2; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .game-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 70px 0; }
  .section-head { align-items: start; flex-direction: column; margin-bottom: 28px; }
  .hero { min-height: 700px; }
  .hero-grid { min-height: 620px; padding-top: 72px; }
  .hero h1 { font-size: clamp(54px, 14vw, 82px); }
  .hero-facts { grid-template-columns: 1fr; max-width: 360px; }
  .cards-3, .cards-2, .spec-layout, .booking-layout, .contact-grid, .page-hero-grid, .zone-detail { grid-template-columns: 1fr; }
  .spec-photo { min-height: 420px; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .benefit:nth-child(n) { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .benefit:nth-child(2n) { border-right: 0; }
  .benefit:nth-last-child(-n+2) { border-bottom: 0; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 220px 220px; }
  .gallery button:first-child { grid-column: 1 / 3; grid-row: auto; }
  .review-grid { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; padding: 32px; }
  .zone-detail:nth-child(even) .zone-detail-photo { order: 0; }
  .zone-detail-photo img { min-height: 360px; }
  .summary-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / 3; }
  .footer-grid .footer-col:last-child { grid-column: auto; }
}

@media (max-width: 580px) {
  body { padding-bottom: 68px; }
  .header-row { min-height: 68px; }
  .nav { inset: 68px 0 auto; }
  .logo-copy span { display: none; }
  .header-price { padding-inline: 11px; font-size: 10px; }
  .hero { min-height: 760px; }
  .hero-grid { padding-top: 54px; }
  .hero-actions .btn { width: 100%; }
  .quick-prices { margin-top: -26px; }
  .quick-prices-row { grid-template-columns: 1fr 1fr; }
  .quick-prices-title { grid-column: 1 / -1; }
  .quick-prices-action { grid-column: 1 / -1; }
  .cards-4, .cards-2, .spec-grid, .form-grid { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit:nth-child(n) { border-right: 0; border-bottom: 1px solid var(--line); }
  .benefit:last-child { border-bottom: 0; }
  .gallery { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .gallery button { min-width: 84vw; height: 430px; scroll-snap-align: center; }
  .cta-actions { flex-direction: column; }
  .page-hero { padding-top: 72px; }
  .zone-detail-list { grid-template-columns: 1fr; }
  .form-card, .summary-card, .contact-card { padding: 22px; }
  .field.full { grid-column: auto; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-grid .footer-col:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .mobile-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 150; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #242d3d; border-top: 1px solid #323e52; }
  .mobile-bar button, .mobile-bar a { min-height: 62px; display: grid; place-items: center; border: 0; background: #0e131b; color: white; font-weight: 950; text-transform: uppercase; font-size: 11px; }
  .mobile-bar a { background: var(--orange); color: #141414; }
  .toast { left: 14px; right: 14px; bottom: 84px; }
}

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