/* ===== FONTS ===== */
@font-face {
  font-family: 'GillSans';
  src: url('../fonts/GillSans.woff2') format('woff2'),
       url('../fonts/GillSans.woff') format('woff');
  font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Oswald';
  src: url('../fonts/Oswald.woff2') format('woff2'),
       url('../fonts/Oswald.woff') format('woff');
  font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter Tight';
  src: url('../fonts/InterTight.woff2') format('woff2'),
       url('../fonts/InterTight.woff') format('woff');
  font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Avenir Next';
  src: url('../fonts/AvenirNext.woff2') format('woff2'),
       url('../fonts/AvenirNext.woff') format('woff');
  font-weight: normal; font-style: normal; font-display: swap;
}

/* ===== UTILITY ===== */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===== VARIABLES ===== */
:root {
  --red: #DD2A1D;
  --red-glow: rgba(221,42,29,.35);
  --red-dark: #b8221a;
  --bg-dark: #0c0c14;
  --bg-section: #111119;
  --bg-card: #1a1a26;
  --bg-card-hover: #22222f;
  --border: rgba(255,255,255,.06);
  --text: #e8e8ee;
  --text-muted: #8a8a9a;
  --radius: 16px;
  --radius-sm: 8px;
  --font-heading: 'GillSans', 'Gill Sans', sans-serif;
  --font-nav: 'Inter Tight', sans-serif;
  --font-body: 'Avenir Next', 'Avenir', sans-serif;
  --font-accent: 'Oswald', sans-serif;
  --container: 1200px;
  --nav-height: 70px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--red); text-decoration: none; transition: color .2s; }
a:hover { color: #ff4136; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style-position: inside; }

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background .4s, box-shadow .4s;
  height: var(--nav-height);
}
.navbar.scrolled {
  background: rgba(12,12,20,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 30px rgba(0,0,0,.4);
}
.navbar .container {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 20px;
}
.nav-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}
.nav-logo {
  height: 34px;
  width: auto;
  opacity: .9;
  transition: opacity .2s;
}
.nav-logo-link:hover .nav-logo { opacity: 1; }
.nav-phone {
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  transition: color .2s;
}
.nav-phone:hover { color: #fff; }
.nav-phone svg { width: 14px; height: 14px; fill: var(--red); }
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: all .2s;
}
.nav-links a:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.25);
  color: #fff;
}
.nav-links a.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* Language switcher */
.nav-lang {
  display: flex;
  gap: 2px;
  margin-left: 8px;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,.15);
}
.nav-lang a {
  padding: 4px 8px !important;
  font-size: 11px !important;
  letter-spacing: .5px;
  border: 1px solid rgba(255,255,255,.15) !important;
  border-radius: var(--radius-sm) !important;
  font-family: var(--font-nav);
  font-weight: 600;
  color: rgba(255,255,255,.5) !important;
  transition: all .2s;
}
.nav-lang a:hover {
  color: #fff !important;
  border-color: rgba(255,255,255,.3) !important;
  background: rgba(255,255,255,.08) !important;
}
.nav-lang a.active {
  background: var(--red) !important;
  border-color: var(--red) !important;
  color: #fff !important;
}

/* Mobile menu */
.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 1001;
}
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: #fff;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  position: absolute;
  transition: transform .3s, opacity .3s;
}
.nav-toggle-label span { top: 9px; }
.nav-toggle-label span::before { content: ''; top: -7px; }
.nav-toggle-label span::after { content: ''; top: 7px; }
.nav-toggle:checked + .nav-toggle-label span { background: transparent; }
.nav-toggle:checked + .nav-toggle-label span::before { transform: rotate(45deg); top: 0; background: #fff; }
.nav-toggle:checked + .nav-toggle-label span::after { transform: rotate(-45deg); top: 0; background: #fff; }

@media (max-width: 960px) {
  .nav-toggle-label { display: block; }
  .nav-phone { display: none; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 24px 24px;
    gap: 10px;
    box-shadow: -4px 0 40px rgba(0,0,0,.5);
    transition: right .3s ease;
    overflow-y: auto;
    border-left: 1px solid var(--border);
  }
  .nav-toggle:checked ~ .nav-links { right: 0; }
  .nav-links a {
    display: block;
    text-align: left;
    padding: 10px 16px;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: rgba(255,255,255,.8);
  }
  .nav-links a:hover {
    background: rgba(255,255,255,.05);
    border-color: var(--border);
    color: #fff;
  }
  .nav-lang {
    flex-direction: row;
    justify-content: center;
    border-left: none;
    border-top: 1px solid var(--border);
    margin-left: 0;
    padding-left: 0;
    padding-top: 12px;
    margin-top: 4px;
  }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: url('../img/bg-masthead.jpg') center/cover no-repeat;
  filter: blur(3px) brightness(.6);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,12,20,.3) 0%, rgba(12,12,20,.7) 100%);
  z-index: 1;
}
.hero > div {
  position: relative;
  z-index: 2;
}
.hero-logo {
  max-width: 320px;
  height: auto;
  margin: 0 auto 32px;
  filter: drop-shadow(0 4px 30px rgba(0,0,0,.4));
}
.hero .divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 0 auto 28px;
  border: none;
  box-shadow: 0 0 20px var(--red-glow);
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 560px;
  margin: 0 auto 36px;
  opacity: .85;
  line-height: 1.7;
}
.btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-nav);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s;
  box-shadow: 0 4px 20px var(--red-glow);
}
.btn:hover {
  background: #ff4136;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--red-glow);
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-section); }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
  color: #fff;
}
.section-divider {
  width: 50px;
  height: 3px;
  background: var(--red);
  margin: 0 auto 48px;
  border: none;
  box-shadow: 0 0 16px var(--red-glow);
}

/* ===== ABOUT ===== */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
}
.about-intro {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 32px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--font-heading);
}
.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 8px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: background .2s;
}
.about-feature:hover { background: rgba(255,255,255,.03); }
.check-icon {
  width: 18px;
  height: 18px;
  fill: var(--red);
  flex-shrink: 0;
  margin-top: 3px;
}
.about-feature span { color: var(--text-muted); }
.about-games {
  margin-top: 40px;
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
}

/* ===== CARDS GRID (Rooms) ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (min-width: 1025px) {
  .cards-grid .card:last-child:nth-child(3n+1) {
    grid-column: 2;
  }
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(221,42,29,.3);
  box-shadow: 0 8px 40px rgba(0,0,0,.3), 0 0 20px rgba(221,42,29,.08);
}
.card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.card:hover .card-img img {
  transform: scale(1.05);
}
.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}
.card-title small {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 6px;
}
.card-id {
  font-family: var(--font-accent);
  font-size: 28px;
  font-weight: 600;
  color: var(--red);
  line-height: 1;
  opacity: .5;
}
.card-location {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.card-specs span {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
  color: var(--text-muted);
}
.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.card-price {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.card-link {
  font-size: 13px;
  color: var(--red);
  text-decoration: none;
  transition: color .2s;
}
.card-link:hover {
  color: #fff;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s, filter .5s;
  filter: brightness(.85);
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 16px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,.8));
  color: #fff;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-caption-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
}
.gallery-caption-sub {
  font-size: 12px;
  opacity: .7;
}

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: pointer;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  font-family: sans-serif;
  opacity: .6;
  transition: opacity .2s;
}
.lightbox-close:hover { opacity: 1; }

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== PRICING ===== */
.prices-intro {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 40px;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
  transition: border-color .2s;
}
.price-card:hover {
  border-color: rgba(221,42,29,.15);
}
.price-card-head {
  margin-bottom: 20px;
}
.price-card-head h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.price-card-head p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* Time-varying price tables */
.price-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  table-layout: fixed;
}
.price-table thead th,
.price-table thead td {
  padding: 12px 10px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  border-bottom: 2px solid var(--border);
}
.price-table thead th:first-child {
  text-align: left;
  width: 45%;
}
.price-table thead th:not(:first-child) {
  width: 18%;
}
.price-table thead th span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 2px;
}
.price-table tbody th,
.price-table tbody td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--border);
}
.price-table tbody th {
  font-weight: 500;
  color: var(--text);
  text-align: left;
}
.price-table tbody td {
  text-align: center;
  color: var(--text-muted);
  font-family: var(--font-accent);
  font-size: 16px;
}
.price-table tbody tr:hover {
  background: rgba(255,255,255,.02);
}

/* Night package callout */
.price-night {
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(221,42,29,.06);
  border: 1px dashed rgba(221,42,29,.25);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}
.price-night span {
  opacity: .7;
}
.price-night strong {
  color: #fff;
  font-weight: 600;
}

/* Flat pricing tiers */
.price-tiers {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.price-tier {
  flex: 1;
  min-width: 90px;
  text-align: center;
  padding: 18px 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color .2s;
}
.price-tier:hover {
  border-color: rgba(255,255,255,.12);
}
.price-tier-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.price-tier-label small {
  display: block;
  font-size: 11px;
  opacity: .6;
  margin-top: 2px;
}
.price-tier-value {
  font-family: var(--font-accent);
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
}
.price-tier-unit {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.price-tier-accent {
  border-color: rgba(221,42,29,.3);
  background: rgba(221,42,29,.06);
}
.price-tier-promo {
  border-color: rgba(221,42,29,.3);
  background: rgba(221,42,29,.08);
}
.price-tier-promo .price-tier-value {
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 16px;
}
.price-tiers-single {
  justify-content: center;
}
.price-tiers-single .price-tier {
  flex: 0 1 200px;
  padding: 24px 20px;
}
.price-tiers-single .price-tier-value {
  font-size: 36px;
}

/* Promo callout */
.price-promo {
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(221,42,29,.06);
  border: 1px dashed rgba(221,42,29,.25);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .price-tiers { gap: 8px; }
  .price-tier { min-width: 70px; padding: 14px 8px; }
  .price-tier-value { font-size: 22px; }
  .price-card { padding: 20px 16px; }
}

/* ===== CONTACTS ===== */
.contact-address {
  text-align: center;
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}
.contact-item svg {
  width: 36px;
  height: 36px;
  fill: var(--text-muted);
  margin: 0 auto 10px;
  transition: fill .2s;
}
.contact-item:hover svg { fill: var(--red); }
.contact-item a {
  display: block;
  font-size: 14px;
  margin-top: 4px;
  color: var(--text-muted);
  transition: color .2s;
}
.contact-item a:hover { color: #fff; }

/* ===== MAP ===== */
.map-footer iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
  filter: grayscale(.4) brightness(.8);
  transition: filter .3s;
}
.map-footer iframe:hover {
  filter: grayscale(0) brightness(1);
}

/* ===== SUBPAGE ===== */
.subpage-hero {
  padding: 120px 0 50px;
  background: var(--bg-section);
  text-align: center;
}
.subpage-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #fff;
}
.subpage-hero .section-divider { margin-bottom: 0; margin-top: 16px; }
.subpage-content {
  padding: 60px 0 80px;
}

/* ===== RULES ===== */
.rules-section { margin-bottom: 40px; }
.rules-section h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #fff;
}
.rules-section ol {
  padding-left: 0;
  counter-reset: rule;
  list-style: none;
}
.rules-section ol li {
  counter-increment: rule;
  padding: 14px 16px 14px 50px;
  position: relative;
  border-bottom: 1px solid var(--border);
  line-height: 1.7;
  color: var(--text-muted);
}
.rules-section ol li::before {
  content: counter(rule);
  position: absolute;
  left: 12px; top: 14px;
  font-family: var(--font-accent);
  font-size: 18px;
  color: var(--red);
  font-weight: 600;
}
.rules-note {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 32px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ===== VACANCY ===== */
.vacancy-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.8;
  color: var(--text-muted);
}
.vacancy-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 20px;
  transition: border-color .2s;
}
.vacancy-card:hover { border-color: rgba(221,42,29,.2); }
.vacancy-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}
.vacancy-card p {
  margin-bottom: 12px;
  line-height: 1.6;
  color: var(--text-muted);
}
.vacancy-card b {
  display: block;
  margin-top: 16px;
  margin-bottom: 4px;
  font-size: 15px;
  color: var(--text);
}
.vacancy-card ul {
  margin-bottom: 8px;
  padding-left: 24px;
  list-style-position: outside;
}
.vacancy-card li {
  margin-bottom: 4px;
  line-height: 1.6;
  color: var(--text-muted);
}
.vacancy-hidden { display: none; }

/* ===== BAR PAGE ===== */
.bar-hero-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 32px;
}
.bar-description {
  max-width: 700px;
  margin: 0 auto 24px;
  text-align: center;
  line-height: 1.8;
  font-size: 16px;
  color: var(--text-muted);
}
.bar-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  text-align: center;
  margin: 32px 0 48px;
}
.bar-info-item {
  padding: 20px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s;
}
.bar-info-item:hover { border-color: rgba(221,42,29,.25); }
.bar-info-item svg {
  width: 28px; height: 28px;
  fill: var(--red);
  margin: 0 auto 10px;
}
.bar-info-item h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  margin-bottom: 4px;
  color: #fff;
}
.bar-info-item p {
  font-size: 13px;
  color: var(--text-muted);
}
.bar-info-item a { font-size: 13px; }
.bar-promo {
  background: rgba(221,42,29,.08);
  border: 2px dashed var(--red);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 48px;
  text-align: center;
}
.bar-promo-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 8px;
}
.bar-promo p { color: var(--text-muted); }
.bar-menu-section h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin: 40px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  color: #fff;
}
.menu-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 4px;
}
.menu-table th,
.menu-table td {
  padding: 9px 0;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.menu-table th { font-weight: 500; color: var(--text); }
.menu-table td { text-align: right; color: var(--text-muted); width: 80px; }
.menu-table thead th { color: var(--text-muted); font-size: 12px; font-weight: 400; }
.menu-table thead td { color: var(--text-muted); font-size: 12px; text-align: right; }
.menu-item-desc {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
  opacity: .7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .cards-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .contacts-grid { grid-template-columns: repeat(2, 1fr); }
  .bar-info-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .contacts-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .hero-logo { max-width: 220px; }
}
