.page{
  min-height: 100vh;
  position: relative;
  background: none;
}

.page::before{
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(160deg, rgba(9,9,12,0.55) 0%, rgba(4,4,6,0.48) 100%),
    url("./images/bg_main.jpeg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: black;
  pointer-events: none;
}

.container {
  width: min(var(--container-width), 100% - 3rem);
  margin: 0 auto;
}

.hero {
  position: relative;
  padding: clamp(4.5rem, 10vw, 7rem) 0 clamp(3.5rem, 8vw, 5rem);
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 21, 0.21);
  backdrop-filter: blur(1px);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.hero__label {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  color: #ffffff;
}

.hero__title {
  font-size: clamp(3.4rem, 7.5vw, 4.9rem);
  letter-spacing: 0.08em;
}

.hero__linebreak {
  display: block;
}

.hero__lead {
  color: rgba(237, 237, 242, 0.72);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__actions {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}

.lng_btn_cont {
  position: sticky;      /* «прилипает» при скролле */
 top: 10px;          /* вниз от верхнего края */
  margin-left: 20px;  /* отступ слева */
  margin-right: 20px;           /* точка прилипания */
  z-index: 1000;
  padding: 6px 8px;
     /* небольшой отступ вокруг */
}
.lng_btn {
 display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.36rem 0.9rem;
  border-radius: 999px;

  font-family: var(--font-body);
  font-weight: 700;                  /* чуть легче — больше свечения */
  font-size: 0.72rem;
  letter-spacing: 0.12em;

  color: rgb(8, 247, 254);           /* плотный бирюзовый */

  /* НЕОН: многослойное свечение */
  text-shadow:
    0 0 4px rgba(8, 247, 254, 0.6),
    0 0 8px rgba(8, 247, 254, 0.6),
    0 0 18px rgba(8, 247, 254, 0.55),
    0 0 32px rgba(8, 247, 254, 0.45);

  background: rgba(20,20,20,0.45);
  border: 1px solid rgba(255,255,255,0.14);

  cursor: pointer;
  user-select: none;
  backdrop-filter: blur(6px);
  border-color: rgba(8, 247, 254, 0.45);
  box-shadow: 0 0 28px rgba(8, 247, 254, 0.35);
  transition: transform .16s ease,
              box-shadow .2s ease,
              border-color .2s ease,
              color .2s ease;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.88rem;
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    color 0.2s ease;
  backdrop-filter: blur(6px);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.4);
  outline-offset: 3px;
}

.btn--outline {
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
}

.btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--accent-green {
  border-color: rgba(57, 255, 20, 0.45);
  box-shadow: 0 0 28px rgba(57, 255, 20, 0.35);
}

.btn--accent-blue {
  border-color: rgba(8, 247, 254, 0.45);
  box-shadow: 0 0 28px rgba(8, 247, 254, 0.35);
}

.btn--accent-yellow {
  border-color: rgba(255, 212, 20, 0.5);
  box-shadow: 0 0 28px rgba(255, 212, 20, 0.35);
}

.btn--accent-orange {
  border-color: rgba(255, 106, 20, 0.5);
  box-shadow: 0 0 28px rgba(255, 106, 20, 0.35);
}

.btn--accent-pink {
  border-color: rgba(255, 45, 149, 0.5);
  box-shadow: 0 0 28px rgba(255, 45, 149, 0.35);
}

.section {
  padding: clamp(1rem, 6vw, 2rem) 0;
}

.section__heading {
  max-width: 640px;
  margin: 0 auto var(--space-6);
  text-align: center;
  display: grid;
  gap: var(--space-3);
}

.section__heading h2 {
  font-size: clamp(2.4rem, 5vw, 3.25rem);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.section__heading p {
  color: var(--color-text-muted);
  font-family: var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.section--picks,
.section--menu,
.section--contact {
  position: relative;
  overflow: hidden;
  border-radius: clamp(2rem, 6vw, 4rem);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.section--picks::before,
.section--menu::before,
.section--contact::before  {
  content: "";
  position: absolute;
  inset: 0;
   background: rgba(29, 29, 41, 0.289);
   backdrop-filter: blur(4px);
  overflow: hidden;
  z-index: 0;
}

.section--picks::after,
.section--menu::after,
.section--contact::after  {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  z-index: 1;
}

.section--picks > .container,
.section--menu > .container,
.section--contact > .container {
  position: relative;
  z-index: 2;
}

.cards {
  display: grid;
  gap: var(--space-7);
}

.cards--featured {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.cards--list {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  justify-items: center;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: linear-gradient(to bottom, rgba(194, 192, 192, 0.075), transparent);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.card__media {
  border-radius: var(--radius-md);
  overflow: hidden;
  width: 100%;
}

.cards--featured .card__media {
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  border-radius: calc(var(--radius-md) - 4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cards--featured .card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.card__title {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  letter-spacing: 0.12em;
}

.card__title--menu {
  display: block;
  width: 100%;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.card__description {
  color: rgba(237, 237, 242, 0.7);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card__footer {
  margin-top: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: var(--space-2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.card__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.card__price {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  letter-spacing: 0.12em;
}

.card--menu {
  align-items: center;
  text-align: center;
  background: transparent;
  border: none;
  backdrop-filter: none;
  padding: var(--space-3);
  gap: var(--space-3);
}

.card--menu .card__media {
  aspect-ratio: 3 / 4;
  width: min(320px, 100%);
  border-radius: calc(var(--radius-md) + 6px);
  border: 4px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.45);
  background: #ffffff;
  cursor: zoom-in;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card--menu .card__media:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.5);
}

.card--menu .card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card--menu .card__body {
  text-align: center;
  gap: var(--space-2);
}

.card--menu .card__description {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.contact {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: minmax(320px, 1fr) minmax(220px, 0.7fr) minmax(400px, 1.4fr);
  align-items: start;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: rgba(10, 12, 18, 0.353);
}

.contact__column {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.contact__info {
  position: relative;
}

.contact__heading {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.4rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;

}

.contact__discription {
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-align: center;
}
.contact__info h2 {
  font-size: clamp(2.1rem, 4vw, 3rem);
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.contact__row {
  display: flex;
  gap: var(--space-3);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact__row dt {
  min-width: 78px;
  font-weight: 600;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.contact__row dd {
  margin: 0;
  color: rgba(237, 237, 242, 0.78);
}

.contact__row a:hover {
  opacity: 0.85;
}

.contact__hours {
  display: grid;
  gap: 0.45rem;
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 12, 18, 0.72);
}

.contact__hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.contact__hours span:first-child {
  text-transform: uppercase;
  color: var(--color-text);
  letter-spacing: 0.14em;
}

.contact__hours span:last-child {
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
}

.contact__cta {
  align-self: stretch;
  margin-top: var(--space-3);
}

.contact__delivery {
  align-items: center;
  gap: var(--space-4);
}

.contact__delivery .contact__heading {
  text-align: center;
  margin-bottom: var(--space-4);
}

.contact__delivery::after {
  content: "";
  display: block;
  width: 2px;
  align-self: stretch;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.22), transparent);
}

.contact__social .contact__heading {
    text-align: center;
  margin-bottom: var(--space-4);
}

.leave_a_review__cta {
  align-self: stretch;
}

.delivery-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.delivery-list {
  width: 240px;
}

.delivery-list .btn {
  width: 100%;
  justify-content: center;
}

.menu-lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  background: rgba(4, 5, 8, 0.85);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
  z-index: 1200;
}

.menu-lightbox.is-visible {
  opacity: 1;
  pointer-events: all;
}

.menu-lightbox__backdrop {
  position: absolute;
  inset: 0;
}

.menu-lightbox__dialog {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-4);
  background: rgba(12, 14, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.6);
  max-width: min(90vw, 960px);
  width: 100%;
}

.menu-lightbox__figure {
  margin: 0;
  display: grid;
  gap: var(--space-3);
  justify-items: center;
}

.menu-lightbox__image {
  max-width: min(75vw, 800px);
  max-height: 80vh;
  border-radius: var(--radius-md);
  border: 4px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.menu-lightbox__caption {
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--color-text);
}

.menu-lightbox__arrow,
.menu-lightbox__close {
  background: rgba(12, 14, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--color-text);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.menu-lightbox__arrow:hover,
.menu-lightbox__close:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--color-accent);
}

.menu-lightbox__close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 40px;
  height: 40px;
  font-size: 1.6rem;
  line-height: 1;
}

.menu-lightbox__arrow {
  width: 48px;
  height: 48px;
  font-size: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-lightbox__arrow--prev {
  justify-self: start;
}

.menu-lightbox__arrow--next {
  justify-self: end;
}

@media (max-width: 720px) {
  .menu-lightbox__dialog {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .menu-lightbox__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .menu-lightbox__arrow--prev {
    left: var(--space-3);
  }

  .menu-lightbox__arrow--next {
    right: var(--space-3);
  }
}

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 28px 42px rgba(0, 0, 0, 0.45);
  justify-self: stretch;
}

.contact__map iframe {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  filter: saturate(0.95);
  min-height: 320px;
}

@media (max-width: 900px) {
  .container {
    width: min(var(--container-width), 100% - 2.5rem);
  }

  .card--list {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) {
  .card--list .card__media--wide {
    height: 100%;
    aspect-ratio: unset;
  }
}

@media (max-width: 720px) {
  .hero {
    text-align: center;
  }

  .hero__content {
    align-items: center;
    text-align: center;
  }

  .hero__actions {
    justify-content: center;
    width: 100%;
  }

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

  .contact__cta {
    align-self: stretch;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(var(--container-width), 100% - 1.75rem);
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cards {
    gap: var(--space-4);
  }

  .card {
    padding: var(--space-4);
  }
}

.section--seo {
  padding-top: 8px;
  padding-bottom: 8px;
}

.section--seo p {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}
