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

:root {
  --charcoal: #111111;
  --orange: #ff6a00;
  --cream: #f5e9da;
  --text: #f4efe7;
  --text-soft: #d6c7b7;
  --line: rgba(255, 255, 255, 0.16);
  --panel: rgba(16, 16, 16, 0.58);
  --radius: 16px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
  --nav-h: 78px;
  --top-h: 34px;
  --max: 1180px;
  --font-title: "Bebas Neue", sans-serif;
  --font-body: "Inter", sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: #0d0908;
  line-height: 1.5;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 15% 0%, rgba(198, 40, 40, 0.2) 0%, transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(255, 106, 0, 0.18) 0%, transparent 38%),
    linear-gradient(180deg, #1b120f 0%, #0d0908 100%);
}

.container { width: min(var(--max), calc(100% - 2.6rem)); margin-inline: auto; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.topbar {
  min-height: var(--top-h);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 9, 9, 0.95);
  padding: 0.35rem 0;
}

.topbar-inner {
  min-height: calc(var(--top-h) - 0.7rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: #fff8f0;
}

.topbar-left,
.topbar-right {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  white-space: nowrap;
}

.topbar-schedule {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #e9ddcf;
  font-size: 0.92rem;
  white-space: nowrap;
}

.topbar-schedule strong {
  color: #fff5e8;
  margin-left: 0.2rem;
}

.topbar-schedule .footer-open {
  margin-top: 0;
  color: #ffd5ac;
  border-color: rgba(255, 176, 107, 0.65);
  background: rgba(255, 106, 0, 0.08);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-logo { width: clamp(190px, 20vw, 300px); }

.nav-links {
  list-style: none;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 0.95rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.36rem 0.5rem;
  border-radius: 999px;
}

.nav-links a:hover { background: rgba(255, 255, 255, 0.08); }
.nav-links a.is-active { color: var(--orange); }

.cta-link {
  background: linear-gradient(140deg, var(--orange), #ff8f30);
  color: #fff;
  padding-inline: 1rem !important;
}

.header-cta {
  min-height: 42px;
  padding: 0.5rem 1.35rem;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--orange), #ff8f30);
  color: #fff;
  font-family: var(--font-title);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-only {
  display: none;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span { width: 26px; height: 2px; background: #f4e5d6; }

.hero-slider {
  position: relative;
  min-height: calc(100vh - var(--nav-h) - var(--top-h));
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,8,.56), rgba(8,8,8,.74)),
    radial-gradient(circle at 50% 35%, rgba(255,106,0,.16), transparent 46%);
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - var(--nav-h) - var(--top-h));
  display: grid;
  place-content: center;
  text-align: center;
}

.hero-slide-content h1 {
  font-family: var(--font-title);
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.82;
  color: var(--cream);
}

.hero-slide-content h1 span { color: var(--orange); }

.hero-slide-content p {
  margin-top: 1rem;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: .45rem;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.65);
  background: rgba(255,255,255,.22);
  cursor: pointer;
}

.hero-dot.is-active {
  width: 32px;
  border-radius: 20px;
  background: var(--orange);
  border-color: var(--orange);
}

.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn {
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  padding: 0.72rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.btn-primary { background: linear-gradient(140deg, var(--orange), #ff9437); color: #fff; }
.btn-dark { background: rgba(13, 13, 13, 0.95); color: #fff; border: 1px solid rgba(255, 255, 255, 0.18); }

.section { padding: 4.6rem 0; }
.section-soft {
  background: rgba(12, 12, 12, 0.5);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-title {
  text-align: center;
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 6.8vw, 4.8rem);
  line-height: 0.84;
  margin-bottom: 1.15rem;
}

.special-slider {
  position: relative;
  width: min(760px, 100%);
  margin: 0 auto;
  min-height: 430px;
}

.special-slide {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background-size: cover;
  background-position: center 42%;
  opacity: 0;
  transition: opacity 0.55s ease;
  box-shadow: var(--shadow);
  filter: saturate(1.08) contrast(1.06) brightness(1.02);
}

.special-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.special-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.1), rgba(8, 8, 8, 0.34)),
    radial-gradient(circle at 50% 78%, rgba(8, 8, 8, 0.08), rgba(8, 8, 8, 0.48));
}

.special-slide-content {
  position: absolute;
  inset: auto 0 2.8rem;
  z-index: 2;
  text-align: center;
  padding: 0 1rem;
}

.special-slide-content h3 {
  font-family: var(--font-title);
  font-size: clamp(3.2rem, 8vw, 4.8rem);
  line-height: 0.82;
  color: var(--cream);
}

.special-slide-content p {
  margin-top: 0.35rem;
  font-size: clamp(0.98rem, 1.65vw, 1.45rem);
  color: var(--text-soft);
}

.special-dots {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.special-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
}

.special-dot.is-active {
  width: 32px;
  border-radius: 20px;
  background: var(--orange);
  border-color: var(--orange);
}

.special-cta-wrap {
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
}

.section-about {
  background: rgba(9, 9, 9, 0.82);
}

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1rem;
  align-items: stretch;
}

.about-media {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center 42%;
  filter: contrast(1.06) saturate(1.06);
}

.zoomable-image {
  cursor: zoom-in;
}

.about-content {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(18, 18, 18, 0.88), rgba(12, 12, 12, 0.75));
  box-shadow: var(--shadow);
  padding: clamp(1rem, 2vw, 1.4rem);
}

.about-kicker {
  color: #ffbe83;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.about-content h2 {
  margin-top: 0.3rem;
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 0.9;
}

.about-content p {
  margin-top: 0.6rem;
  color: var(--text-soft);
}

.about-points {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.about-points span {
  border: 1px solid rgba(255, 176, 107, 0.5);
  border-radius: 999px;
  padding: 0.25rem 0.62rem;
  font-size: 0.82rem;
  color: #ffd6b0;
  background: rgba(255, 106, 0, 0.08);
}

.section-gallery {
  background: rgba(7, 7, 7, 0.84);
}

.gallery-title {
  margin-bottom: 0.15rem;
}

.gallery-title span {
  color: var(--orange);
}

.gallery-subtitle {
  text-align: center;
  color: var(--text-soft);
  margin-bottom: 2.2rem;
}

.gallery-vertical {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.gallery-column {
  position: relative;
  height: 540px;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-column::before,
.gallery-column::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 5;
  pointer-events: none;
}

.gallery-column::before {
  top: 0;
  height: 70px;
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.95), transparent);
}

.gallery-column::after {
  bottom: 0;
  height: 80px;
  background: linear-gradient(0deg, rgba(7, 7, 7, 0.95), transparent);
}

.gallery-track {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  will-change: transform;
}

.gallery-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 162, 80, 0.34);
  background: #120e0d;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
  min-height: 130px;
}

.gallery-card.tall {
  min-height: 240px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(1.07);
  cursor: zoom-in;
}

.gallery-column:hover .gallery-track {
  animation-play-state: paused;
}

.slow-up {
  animation: galleryUp 30s linear infinite;
}

.medium-down {
  animation: galleryDown 27s linear infinite;
}

.fast-up {
  animation: galleryUp 24s linear infinite;
}

@keyframes galleryUp {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

@keyframes galleryDown {
  from { transform: translateY(-50%); }
  to { transform: translateY(0); }
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(3, 3, 3, 0.84);
  backdrop-filter: blur(6px);
}

.gallery-lightbox.open {
  display: flex;
}

.gallery-lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  border-radius: 14px;
  border: 1px solid rgba(255, 154, 66, 0.6);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: rgba(14, 14, 14, 0.75);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

body.no-scroll {
  overflow: hidden;
}

.cards { display: grid; gap: 1rem; }
.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.special-card,
.contact-block,
.quick-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.special-card {
  overflow: hidden;
  padding-bottom: 0.85rem;
}

.special-card h3 {
  font-family: var(--font-title);
  font-size: 2.1rem;
  text-transform: uppercase;
  line-height: 0.9;
  padding: 0.9rem 0.85rem 0.1rem;
}

.special-card p {
  color: var(--text-soft);
  padding: 0 0.85rem 0.55rem;
}

.special-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.08) brightness(0.88);
}

.special-card strong {
  display: block;
  padding: 0.75rem 0.85rem 0;
  font-family: var(--font-title);
  font-size: 2.35rem;
}

.quick-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.menu-title {
  margin-bottom: 0.35rem;
}

.menu-subtitle {
  text-align: center;
  color: var(--text-soft);
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.quick-item {
  padding: 0.92rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 193, 140, 0.28);
  border-radius: 14px;
  background:
    linear-gradient(120deg, rgba(8, 8, 8, 0.93), rgba(18, 18, 18, 0.74));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 26px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.quick-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 14px 0 0 14px;
  background: linear-gradient(180deg, #ff7c1f, #ff6a00);
  opacity: 0.86;
}

.quick-item::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.55rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.quick-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 176, 107, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 34px rgba(0, 0, 0, 0.36);
}

.quick-name {
  position: relative;
  z-index: 2;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #f2e5d8;
  background: rgba(10, 10, 10, 0.7);
  padding: 0.1rem 0.5rem 0.1rem 0.45rem;
  border-radius: 8px;
}

.quick-main {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.quick-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(255, 183, 122, 0.38);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
  flex: 0 0 auto;
}

.quick-actions {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.quick-price {
  position: relative;
  z-index: 2;
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 1;
  color: #fff3e6;
  letter-spacing: 0.02em;
  background: rgba(10, 10, 10, 0.7);
  padding-left: 0.45rem;
}

.quick-price small {
  font-size: 1rem;
  color: #ffca9a;
  letter-spacing: 0;
  margin-left: 0.1rem;
}

.add-to-cart {
  border: 1px solid rgba(255, 176, 107, 0.5);
  background: linear-gradient(140deg, rgba(255, 106, 0, 0.2), rgba(255, 106, 0, 0.35));
  color: #ffe6ce;
  border-radius: 8px;
  padding: 0.34rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.add-to-cart:hover {
  background: linear-gradient(140deg, rgba(255, 106, 0, 0.35), rgba(255, 106, 0, 0.55));
}

.add-to-cart.mini {
  padding: 0.2rem 0.45rem;
  font-size: 0.72rem;
}

.menu-full-cta {
  margin-top: 1.1rem;
  display: flex;
  justify-content: center;
}

.full-menu-panel {
  margin-top: 1rem;
  border: 1px solid rgba(255, 186, 128, 0.26);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(14, 14, 14, 0.88), rgba(10, 10, 10, 0.8));
  box-shadow: var(--shadow);
  padding: 1rem;
}

.full-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.full-menu-group {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem;
  background: rgba(12, 12, 12, 0.74);
}

.full-menu-group h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  letter-spacing: 0.03em;
  color: var(--orange);
  margin-bottom: 0.45rem;
}

.full-menu-group ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.full-menu-group li {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  font-size: 0.95rem;
  color: #eadbca;
}

.full-menu-group li strong {
  color: #fff2e4;
  font-weight: 700;
}

.order-simulator {
  margin-top: 1rem;
  border: 1px solid rgba(255, 176, 107, 0.3);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(18, 18, 18, 0.9), rgba(12, 12, 12, 0.82));
  box-shadow: var(--shadow);
  padding: 1rem;
}

.order-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.order-head h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--orange);
}

#cartCount {
  color: #f2d6bc;
  font-weight: 600;
}

.cart-empty {
  color: var(--text-soft);
  margin-top: 0.5rem;
}

.cart-items {
  list-style: none;
  margin-top: 0.65rem;
  display: grid;
  gap: 0.5rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 0.6rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(11, 11, 11, 0.75);
  padding: 0.45rem;
}

.cart-item img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-item-name {
  font-weight: 600;
}

.cart-item-price {
  color: #f4d8bd;
  font-size: 0.88rem;
}

.cart-item-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  border: 1px solid var(--line);
  background: rgba(25, 25, 25, 0.95);
  color: #f5e8da;
  cursor: pointer;
}

.remove-btn {
  border: 1px solid rgba(255, 120, 120, 0.55);
  color: #ffb3b3;
}

.cart-summary {
  margin-top: 0.8rem;
  border-top: 1px solid var(--line);
  padding-top: 0.7rem;
  display: grid;
  gap: 0.4rem;
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
}

.cart-total {
  font-size: 1.08rem;
  color: #fff0e1;
}

.order-form {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.65rem;
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(15, 15, 15, 0.9);
  color: #f4eadf;
  padding: 0.64rem 0.7rem;
  font: inherit;
}

.order-status {
  min-height: 1.2rem;
  font-weight: 600;
}

.order-status.ok {
  color: #91d89e;
}

.order-status.err {
  color: #ffb3b3;
}

.section-reviews {
  background: rgba(8, 8, 8, 0.78);
}

.reviews-title {
  margin-bottom: 2rem;
}

.reviews-title span {
  color: var(--orange);
}

.reviews-shell {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 0.7rem;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 0.7rem;
  transition: transform 0.45s ease;
}

.review-card {
  flex: 0 0 calc((100% - 1.4rem) / 3);
  min-height: 170px;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(22, 22, 22, 0.88), rgba(16, 16, 16, 0.7));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.review-stars {
  color: var(--orange);
  letter-spacing: 0.1em;
  font-size: 1rem;
}

.review-text {
  color: #dfd2c4;
  margin-top: 0.6rem;
  font-style: italic;
  min-height: 72px;
}

.review-card strong {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-title);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.reviews-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(15, 15, 15, 0.92);
  color: #f6e8d9;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.reviews-arrow:hover {
  border-color: rgba(255, 166, 80, 0.7);
  color: var(--orange);
}

.section-find {
  background: rgba(8, 8, 8, 0.82);
}

.find-title {
  margin-bottom: 1.8rem;
}

.find-title span {
  color: var(--orange);
}

.find-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.find-card {
  background: linear-gradient(145deg, rgba(22, 22, 22, 0.88), rgba(16, 16, 16, 0.7));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 170px;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 1rem;
}

.find-icon {
  font-size: 1.7rem;
  line-height: 1;
  color: var(--orange);
}

.find-card h3 {
  margin-top: 0.65rem;
  font-family: var(--font-title);
  font-size: 2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.find-card p {
  margin-top: 0.45rem;
  color: var(--text-soft);
}

.map-wrap {
  margin-top: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(16, 16, 16, 0.72);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.map-link {
  margin: 0.85rem auto 1rem;
  display: flex;
  width: fit-content;
}

.contact-block {
  padding: 1.1rem;
  text-align: center;
}

.contact-block h2 {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 0.85;
  margin-bottom: 0.5rem;
}

.contact-block p {
  color: var(--text-soft);
  margin-bottom: 0.9rem;
}

.contact-pro {
  border: 1px solid rgba(255, 177, 108, 0.34);
  border-radius: 18px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 106, 0, 0.12), transparent 42%),
    linear-gradient(145deg, rgba(18, 18, 18, 0.9), rgba(10, 10, 10, 0.78));
  box-shadow: var(--shadow);
  padding: clamp(1rem, 2.4vw, 1.6rem);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1rem;
}

.contact-kicker {
  display: inline-flex;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(255, 186, 128, 0.5);
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffd7b3;
}

.contact-pro-main h2 {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  line-height: 0.85;
}

.contact-lead {
  margin-top: 0.55rem;
  color: var(--text-soft);
  max-width: 48ch;
}

.contact-trust {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.contact-trust span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
  font-size: 0.8rem;
  color: #e9dac9;
  background: rgba(13, 13, 13, 0.75);
}

.contact-actions {
  margin-top: 0.95rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.contact-pro-side {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(12, 12, 12, 0.74);
  padding: 0.9rem;
}

.contact-pro-side h3 {
  font-family: var(--font-title);
  font-size: 1.9rem;
  letter-spacing: 0.03em;
  color: var(--orange);
}

.contact-pro-side ul {
  list-style: none;
  margin-top: 0.45rem;
  display: grid;
  gap: 0.45rem;
}

.contact-pro-side li {
  display: grid;
  gap: 0.1rem;
  padding: 0.45rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.contact-pro-side li span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ccb49d;
}

.contact-pro-side li strong {
  font-size: 0.95rem;
  color: #fff1e2;
}

.director-contact {
  margin-top: 1rem;
  border: 1px solid rgba(255, 176, 107, 0.3);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(18, 18, 18, 0.9), rgba(12, 12, 12, 0.8));
  box-shadow: var(--shadow);
  padding: 1rem;
}

.director-head h3 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.9;
}

.director-head p {
  margin-top: 0.4rem;
  color: var(--text-soft);
}

.director-form {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.65rem;
}

.director-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.director-form input,
.director-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(16, 16, 16, 0.92);
  color: #f5e9db;
  font: inherit;
  padding: 0.7rem 0.75rem;
}

.field-error {
  display: block;
  min-height: 1rem;
  margin-top: 0.2rem;
  color: #ffb0b0;
  font-size: 0.8rem;
}

.form-success {
  display: none;
  color: #97dda4;
  font-weight: 600;
}

.form-success.visible {
  display: block;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.98), rgba(10, 10, 10, 0.98));
  padding: 1.35rem 0 0.65rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-col h3 {
  font-family: var(--font-title);
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 0.52rem;
  color: #f2e2d1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-col h3::after {
  content: "";
  display: block;
  width: 34px;
  border-bottom: 2px solid var(--orange);
  margin-top: 0.3rem;
}

.brand-col p {
  color: #cfbfad;
  margin-top: 0.42rem;
  max-width: 32ch;
  line-height: 1.55;
}

.footer-socials {
  margin-top: 0.68rem;
  display: flex;
  gap: 0.45rem;
}

.footer-socials a {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 18, 18, 0.8);
  color: #ead9c7;
}

.footer-socials a:hover {
  border-color: rgba(255, 176, 107, 0.7);
  color: #ffbe83;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.3rem;
}

.footer-col li,
.footer-col a {
  color: #dfcfbf;
  font-size: 1rem;
}

.footer-col a:hover {
  color: #ffd2a6;
}

.footer-open {
  margin-top: 0;
  border: 1px solid rgba(255, 176, 107, 0.45);
  border-radius: 999px;
  padding: 0.2rem 0.62rem;
  color: #ffcf9b;
  font-size: 0.8rem;
  width: fit-content;
}

.footer-contact li {
  display: grid;
  grid-template-columns: 14px 1fr;
  align-items: start;
  gap: 0.35rem;
  line-height: 1.4;
}

.footer-ico {
  color: var(--orange);
  font-size: 1.1rem;
  line-height: 1;
}

.footer-logo { width: clamp(130px, 16vw, 220px); }

.footer-bottom {
  padding-top: 0.62rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: #c6b4a2;
  font-size: 0.82rem;
}

.footer-legal {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #dbc9b6;
  font-size: 0.82rem;
}

.footer-legal a + a::before {
  content: "|";
  color: rgba(255, 255, 255, 0.35);
  margin-right: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .topbar { height: auto; }
  .topbar-inner { padding: 0.38rem 0; flex-direction: column; align-items: flex-start; }
  .topbar-left, .topbar-right { gap: 0.75rem; flex-wrap: wrap; }
  .topbar-schedule { flex-wrap: wrap; }
  .cards.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .gallery-vertical { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-wrap { grid-template-columns: 1fr; }

  .review-card {
    flex-basis: calc((100% - 0.7rem) / 2);
  }

  .full-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-pro {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root { --nav-h: 66px; }
  .brand-logo { width: 165px; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .mobile-only { display: list-item; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.97);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0.55rem;
    padding: 0.86rem 1.1rem 1rem;
    transform: translateY(-130%);
    transition: transform 0.25s ease;
  }

  .nav-links.open { transform: translateY(0); }

  .hero-slide-content h1 { font-size: clamp(2.7rem, 15vw, 4.7rem); }
  .hero-slide-content p { font-size: 1.02rem; }
  .btn { min-height: 44px; font-size: 1.3rem; padding: 0.62rem 0.95rem; }

  .special-slider { min-height: 320px; }
  .special-slide-content { inset: auto 0 2.2rem; }
  .special-slide-content h3 { font-size: clamp(2.7rem, 12vw, 4rem); }
  .special-slide-content p { font-size: 0.98rem; }

  .gallery-vertical { grid-template-columns: 1fr; }
  .gallery-column { height: 430px; }
  .slow-up,
  .medium-down,
  .fast-up { animation-duration: 36s; }

  .reviews-shell {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 0.45rem;
  }

  .review-card {
    flex-basis: 100%;
    min-height: 178px;
  }

  .map-wrap iframe { height: 300px; }

  .contact-pro-side h3 {
    font-size: 1.7rem;
  }

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

  .section { padding: 3.4rem 0; }
  .cards.three,
  .quick-menu { grid-template-columns: 1fr; }

  .quick-item {
    padding: 0.86rem 0.9rem;
  }

  .quick-price {
    font-size: 1.75rem;
  }

  .quick-item {
    align-items: flex-start;
  }

  .quick-actions {
    flex-direction: column;
    align-items: flex-end;
  }

  .full-menu-grid {
    grid-template-columns: 1fr;
  }

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

  .quick-thumb {
    width: 48px;
    height: 48px;
  }

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

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}
