:root {
  --bg-dark: #1a0f08;
  --bg-warm: #2a1a0e;
  --bg-card: #33200f;
  --bg-accent: #3d2814;
  --text-primary: #f5ead6;
  --text-secondary: #c9b99a;
  --text-muted: #8a7a62;
  --gold: #d4a043;
  --gold-light: #e8c170;
  --amber: #c47d2e;
  --red-accent: #c44b3f;
  --cream: #f5ead6;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --nav-height: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ======= NAV ======= */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s;
  background: transparent;
}

.site-nav.scrolled {
  background: rgba(26, 15, 8, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(212, 160, 67, 0.1);
}

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

.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex-shrink: 0;
}

.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.01em;
}

.nav-logo-sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.nav-link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--cream);
  background: rgba(212, 160, 67, 0.08);
}

.lang-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(212, 160, 67, 0.1);
  border: 1px solid rgba(212, 160, 67, 0.25);
  border-radius: 6px;
  padding: 5px 10px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s, border-color 0.2s;
}

.lang-btn:hover {
  background: rgba(212, 160, 67, 0.2);
  border-color: rgba(212, 160, 67, 0.4);
}

.nav-order-btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bg-dark);
  background: var(--gold);
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}

.nav-order-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

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

/* ======= BUTTONS ======= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 10px;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-dark);
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 160, 67, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(245, 234, 214, 0.3);
}

.btn-secondary:hover {
  border-color: rgba(245, 234, 214, 0.7);
  background: rgba(245, 234, 214, 0.05);
  transform: translateY(-2px);
}

/* ======= HERO ======= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, #2a1a0e 0%, #1a0f08 40%, #0d0805 100%);
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, rgba(212, 160, 67, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(196, 75, 63, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 24px;
  max-width: 720px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 160, 67, 0.12);
  border: 1px solid rgba(212, 160, 67, 0.25);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 40px;
}

.hero-badge .star {
  color: var(--gold);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  margin-top: 56px;
  color: var(--text-muted);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ======= ABOUT ======= */
.about {
  padding: 120px 0;
  background: var(--bg-warm);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 160, 67, 0.1);
  border-radius: 12px;
  padding: 28px 22px;
  transition: border-color 0.3s;
}

.feature-card:hover {
  border-color: rgba(212, 160, 67, 0.3);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ======= MENU ======= */
.menu {
  padding: 120px 0;
  background: var(--bg-dark);
}

.menu-header {
  margin-bottom: 56px;
}

.menu h2,
.menu-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}

.menu-intro {
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

/* Category layout */
.menu-category {
  margin-bottom: 52px;
}

.menu-cat-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212, 160, 67, 0.15);
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.menu-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  background: var(--bg-warm);
  padding: 22px 24px;
  transition: background 0.2s;
}

.menu-row:hover {
  background: var(--bg-card);
}

.menu-row.featured {
  border-left: 3px solid var(--gold);
}

.menu-row-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.menu-row-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  line-height: 1.3;
}

.menu-row-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.menu-row-price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 2px;
}

.popular-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  background: rgba(212, 160, 67, 0.12);
  padding: 2px 8px;
  border-radius: 4px;
}

/* Desserts grid */
.menu-desserts-section {
  background: var(--bg-warm);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(212, 160, 67, 0.1);
}

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

.dessert-card {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 24px 18px;
  text-align: center;
  border: 1px solid rgba(212, 160, 67, 0.08);
  transition: border-color 0.3s;
}

.dessert-card:hover {
  border-color: rgba(212, 160, 67, 0.25);
}

.dessert-emoji {
  font-size: 2rem;
  margin-bottom: 10px;
}

.dessert-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}

.dessert-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.dessert-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-display);
}

/* Order CTA */
.menu-order-cta {
  margin-top: 48px;
  padding: 40px;
  background: var(--bg-accent);
  border-radius: 16px;
  border: 1px solid rgba(212, 160, 67, 0.15);
  text-align: center;
}

.menu-order-label {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-weight: 500;
}

.menu-order-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.order-platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid rgba(212, 160, 67, 0.2);
  color: var(--text-primary);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.order-platform-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 160, 67, 0.12);
}

/* ======= EVENTS ======= */
.events {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-warm) 100%);
}

.events h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}

.events-intro {
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 160, 67, 0.1);
  border-radius: 14px;
  padding: 36px 32px;
  transition: border-color 0.3s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.event-card:hover {
  border-color: rgba(212, 160, 67, 0.3);
  transform: translateY(-3px);
}

.event-card.event-featured {
  border-color: rgba(212, 160, 67, 0.2);
}

.fifa-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 40, 20, 0.8) 100%);
  border-color: rgba(50, 150, 50, 0.2);
}

.fifa-card:hover {
  border-color: rgba(50, 150, 50, 0.4);
}

.event-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  background: rgba(212, 160, 67, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.fifa-badge {
  color: #4CAF50;
  background: rgba(76, 175, 80, 0.1);
}

.event-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.event-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.2;
}

.event-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.event-time {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.event-type {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  background: rgba(212, 160, 67, 0.08);
  padding: 3px 10px;
  border-radius: 4px;
}

.event-link {
  color: var(--gold);
  text-decoration: none;
}

.event-link:hover {
  color: var(--gold-light);
}

.events-follow {
  text-align: center;
  padding: 32px;
  border: 1px solid rgba(212, 160, 67, 0.1);
  border-radius: 12px;
  background: rgba(212, 160, 67, 0.03);
}

.events-follow p {
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s;
}

.social-link:hover {
  color: var(--cream);
}

/* ======= GALLERY ======= */
.gallery {
  padding: 120px 0 0;
  background: var(--bg-warm);
}

.gallery h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}

.gallery-intro {
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 4px;
  margin-bottom: 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.gallery-item:hover .gallery-placeholder {
  transform: scale(1.03);
}

.gallery-art {
  font-size: clamp(3rem, 6vw, 5rem);
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.3s;
  position: relative;
  z-index: 1;
}

.gallery-item:hover .gallery-art {
  opacity: 0.7;
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(transparent, rgba(13, 8, 5, 0.85));
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.gallery-instagram {
  text-align: center;
  padding: 40px;
  background: var(--bg-accent);
}

.gallery-instagram p {
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 20px;
  border: 1px solid rgba(212, 160, 67, 0.25);
  border-radius: 8px;
  transition: all 0.2s;
}

.instagram-btn:hover {
  border-color: var(--gold);
  background: rgba(212, 160, 67, 0.06);
}

/* ======= ATMOSPHERE ======= */
.atmosphere {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-accent) 100%);
}

.atm-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.atm-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 20px;
}

.atm-left p {
  color: var(--text-secondary);
  line-height: 1.75;
}

.atm-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.atm-stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.reviews-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.reviews-strip blockquote {
  background: rgba(212, 160, 67, 0.06);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  border-radius: 0 8px 8px 0;
}

/* ======= INFO ======= */
.info {
  padding: 100px 0;
  background: var(--bg-dark);
}

.info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 48px;
}

.info-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.info-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-block-icon {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.info-block h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.info-block p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.info-link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  margin-top: 8px;
  transition: color 0.2s;
}

.info-link:hover {
  color: var(--gold-light);
}

.info-phone {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}

.info-phone:hover {
  color: var(--gold-light);
}

.info-social {
  margin-top: 4px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-secondary);
  gap: 8px;
}

.hours-note {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
}

.order-links-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.order-link-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 6px 10px;
  background: var(--bg-card);
  border-radius: 6px;
  border: 1px solid rgba(212, 160, 67, 0.1);
  transition: all 0.2s;
}

.order-link-item:hover {
  border-color: rgba(212, 160, 67, 0.35);
  color: var(--cream);
}

.info-map {
  height: 400px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(212, 160, 67, 0.12);
}

.info-map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(30%) invert(5%);
}

/* ======= FOOTER ======= */
.site-footer {
  padding: 64px 0 40px;
  background: #0d0805;
  border-top: 1px solid rgba(212, 160, 67, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: start;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 280px;
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text-secondary);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 28px;
  border-top: 1px solid rgba(212, 160, 67, 0.06);
  text-align: center;
}

.footer-address {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 960px) {
  .events-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .info-layout {
    grid-template-columns: 1fr;
  }

  .info-map {
    height: 300px;
  }

  .dessert-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(26, 15, 8, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 32px;
    gap: 4px;
    border-bottom: 1px solid rgba(212, 160, 67, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 160, 67, 0.05);
    border-radius: 0;
    font-size: 1rem;
  }

  .lang-btn {
    align-self: flex-start;
    margin-top: 8px;
  }

  .nav-order-btn {
    text-align: center;
    margin-top: 8px;
    padding: 14px 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-features {
    grid-template-columns: 1fr 1fr;
  }

  .atm-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .atm-right {
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
  }

  .reviews-strip {
    grid-template-columns: 1fr;
  }

  .info-blocks {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .hero {
    min-height: 90vh;
  }

  .about,
  .menu,
  .atmosphere,
  .events,
  .gallery {
    padding: 80px 0;
  }

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

  .gallery-item--tall {
    grid-row: span 1;
  }

  .gallery-item--wide {
    grid-column: span 2;
  }

  .footer-links-cols {
    grid-template-columns: 1fr 1fr;
  }

  .menu-desserts-section {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .about-features {
    grid-template-columns: 1fr;
  }

  .info-blocks {
    grid-template-columns: 1fr;
  }

  .atm-right {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .container {
    padding: 0 18px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 200px);
  }

  .gallery-item--wide {
    grid-column: span 1;
  }

  .gallery-item--tall {
    grid-row: span 1;
  }

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

  .footer-links-cols {
    grid-template-columns: 1fr;
  }

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

  .menu-order-btns {
    flex-direction: column;
    gap: 10px;
  }
}
