/* Brand colors from Figma Design System */
:root {
  --burgundy: #570d0e;
  --burgundy-dark: #3d0a0a;
  --beige: #f7ebde;
  --beige-light: #f5ede0;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e0e0e0;
  --gray-700: #333333;

  /* Tailwind-compatible CSS variables for custom classes */
  --tw-bg-beige: #f7ebde;
  --tw-text-burgundy: #570d0e;
}

/* Tailwind text color helpers */
.text-burgundy { color: var(--burgundy); }
.text-beige { color: var(--beige); }
.bg-beige { background-color: var(--beige); }
.bg-burgundy { background-color: var(--burgundy); }
.border-burgundy { border-color: var(--burgundy); }

/* Font family definitions for Tailwind */
.font-georgia {
  font-family: 'Georgia', 'Segoe UI', serif;
}

.font-onest {
  font-family: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-family: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
}

/* Typography from UI Kit */
h1, .heading-1 {
  font-family: 'Georgia', serif;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--color-text-dark);
}

h2, .heading-2 {
  font-family: 'Georgia', serif;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.3;
  color: var(--color-text-dark);
}

h3, .heading-3 {
  font-family: 'Georgia', serif;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.3;
  color: var(--color-text-dark);
}

p, body {
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.text-small {
  font-size: 14px;
  line-height: 1.5;
}

.text-caps {
  font-family: 'Onest', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Button styles */
.btn {
  padding: 12px 32px;
  border-radius: 24px;
  font-weight: 600;
  transition: all 200ms ease;
  cursor: pointer;
  display: inline-block;
  border: 2px solid transparent;
  font-family: 'Onest', sans-serif;
  font-size: 14px;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-bg-beige);
  border-color: var(--color-primary);
}

.btn-accent {
  background-color: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}

.btn-accent:hover {
  opacity: 0.9;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section spacing */
.section {
  padding: 80px 20px;
}

.section-light {
  background-color: var(--color-bg-light);
}

.section-beige {
  background-color: var(--color-bg-beige);
}

/* Modal overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 40;
}

.modal-overlay.active {
  display: block;
}

/* Modal dialog */
.modal-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  z-index: 50;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

/* Header Styles */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 93px;
  background-image: url('../img/header-bg.svg');
  background-size: auto;
  background-position: top center;
  background-repeat: no-repeat;
  padding-bottom: 10px;
}

.header-inner {
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.header-logo:hover {
  opacity: 0.8;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-nav__link {
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--burgundy);
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.header-nav__link:hover {
  opacity: 0.7;
}

.header-nav__btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-social__link {
  display: block;
  transition: opacity 0.2s ease;
}

.header-social__link svg {
  display: block;
}

.header-social__link:hover {
  opacity: 0.7;
}

/* No scroll when popup is open */
html.no-scroll {
  overflow: hidden;
}

/* Popup close button */
.popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 35px;
  height: 35px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 35px;
  line-height: 1;
  color: #731425;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0.6;
}

.popup-close:hover {
  opacity: 1;
}

/* Burger Popup */
.burger-btn {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 16px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  margin-top: -2px;
}

.burger-line {
  display: block;
  width: 16px;
  height: 2px;
  background-color: #570D0E;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.burger-btn.is-open .burger-line:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.burger-btn.is-open .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-btn.is-open .burger-line:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.burger-popup {
  position: fixed;
  top: var(--burger-popup-top, 100px);
  left: var(--burger-popup-left, auto);
  z-index: 50;
  width: 200px;
  background-color: #f5e9da;
  border-radius: 16px;
  padding: 32px 20px;
  display: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  animation: slideDown 200ms ease-out;
}

.burger-popup.is-open {
  display: block;
}

.burger-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 49;
}

.burger-overlay.is-open {
  display: block;
}

.burger-popup__close {
  display: none;
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  line-height: 0;
}

.burger-popup__close:hover {
  opacity: 0.7;
}

.burger-popup__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.burger-popup__link {
  font-family: 'Onest', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: #731425;
  text-transform: uppercase;
  text-align: left;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.burger-popup__link:hover {
  opacity: 0.7;
}

/* Restaurant Modal */
.restaurant-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 40;
  display: none;
}

.restaurant-modal-overlay.is-open {
  display: block;
}

.restaurant-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 16px;
  padding: 50px;
  z-index: 50;
  display: none;
  width: 90%;
  max-width: 660px;
  max-height: 90vh;
  overflow-y: auto;
}

.restaurant-modal.is-open {
  display: block;
  animation: slideUpFade 0.3s ease forwards;
}

.restaurant-modal__title {
  font-family: 'Onest', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  color: #731425;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
}

.restaurant-modal__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
  align-items: center;
}

.restaurant-modal__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 201px;
}

.restaurant-modal__name {
  font-family: 'Georgia', serif;
  font-size: 28px;
  color: #731425;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
}

.restaurant-modal__buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.restaurant-modal__btn {
  border: 2px solid #731425;
  border-radius: 1000px;
  padding: 10px 16px;
  font-family: 'Onest', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: #731425;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.restaurant-modal__btn:hover {
  background-color: #731425;
  color: #fff;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUpMobile {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 60px));
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Hero Section */
#hero {
  background-color: #ffffff;
	    padding-top: 30px;
}

.hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-color: #2e1a0e;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 559px;
  gap: 50px;
}

.hero-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.hero-logo {
  width: 160px;
  height: 73px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-transform: uppercase;
  color: white;
}

.hero-title {
  font-family: 'Georgia', serif;
  font-size: 64px;
  font-weight: 400;
  color: white;
  line-height: normal;
  margin: 0;
  text-transform: uppercase;
}

.hero-subtitle {
  font-family: 'Onest', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  margin: 0;
  width: 100%;
}

.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.hero-btn {
  display: inline-block;
  background-color: var(--beige);
  color: var(--burgundy);
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 1000px;
  transition: opacity 0.2s ease;
}

.hero-btn:hover {
  opacity: 0.9;
}

.hero-locations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.hero-location {
  position: relative;
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  text-decoration: none;
}

.hero-location::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease;
}

.hero-location:hover::after,
.hero-location--active::after {
  width: 100%;
}

/* Hero Info Panel */
.hero-info {
  display: none;
  padding: 40px 32px;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.hero-info.is-open {
  display: block;
}

.hero-panel {
  display: none;
  gap: 60px;
  align-items: flex-start;
  justify-content: space-between;
}

.hero-panel.is-active {
  display: flex;
  animation: heroPanelIn 0.4s ease forwards;
}

@keyframes heroPanelIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-info__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 84px;
  flex-shrink: 0;
  width: 240px;
  min-height: 235px;
}

.hero-info__address-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-info__label {
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1.6;
  margin: 0;
}

.hero-info__text {
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1.6;
  margin: 0;
}

.hero-info__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--beige);
  color: var(--burgundy);
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 1000px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.hero-info__btn:hover {
  opacity: 0.7;
}

.hero-info__center {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
  min-height: 235px;
  justify-content: space-between;
  max-width: 320px;
}

.hero-info__actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-info__right {
  flex-shrink: 0;
  width: 488px;
  display: flex;
  justify-content: flex-end;
  flex: auto;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 488px;
  height: 230px;
  border-radius: 8px;
  overflow: hidden;
}

.hero-slider__track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.hero-slider__slide {
  flex-shrink: 0;
  width: 488px;
  height: 230px;
}

.hero-slider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}

.hero-slider__btn--prev {
  left: 8px;
  transform: translateY(-50%) scaleX(-1);
}

.hero-slider__btn--next {
  right: 8px;
}

.hero-slider__btn-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slider__btn-arrow {
  position: absolute;
  left: 37.5%;
  top: 10px;
  height: 20px;
  width: 25%;
}

/* Tiles Section: Лавки и Кафе */
#tiles {
  background-color: #ffffff;
  padding: 20px 0;
}

.tiles-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  gap: 20px;
}

.tile {
  position: relative;
  flex: 1;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
}

.tile__bg {
  position: absolute;
  inset: 0;
}

.tile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tile__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.tile__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease;
}

.tile:hover .tile__overlay {
  background-color: rgba(0, 0, 0, 0.15);
}

.tile__title {
  position: absolute;
  left: 50%;
  top: 130px;
  transform: translate(-50%, -50%);
  font-family: 'Georgia', serif;
  font-size: 64px;
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
}

.tile__cta-btn {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  background-color: var(--beige);
  color: var(--burgundy);
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 1000px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.tile__cta-btn:hover {
  opacity: 0.7;
}

.tile__arrow-btn {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 40px;
  height: 40px;
  display: block;
  z-index: 2;
  transition: opacity 0.2s ease;
}

.tile__arrow-btn:hover {
  opacity: 0.7;
}

.tile__btn-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tile__btn-arrow {
  position: absolute;
  left: 37.5%;
  top: 10px;
  height: 20px;
  width: 25%;
}

/* Video Section */
.video-section {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 450px;
  overflow: hidden;
  margin-top: -20px;
  margin-bottom: 0;
  background: #000;
}

.video-section__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-section__preview {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.video-section__preview.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.video-section__preview-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-section__play {
  position: relative;
  z-index: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.video-section__play:hover {
  transform: scale(1.08);
  opacity: 0.9;
}

.video-section__play img {
  display: block;
}

/* Hits Section */
#hits {
  margin: 0;
  padding: 80px 0;
  overflow: hidden;
}

.hits-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.hits-title {
  font-family: 'Georgia', serif;
  font-size: 64px;
  font-weight: 400;
  color: var(--burgundy);
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  margin: 0;
}

.hits-slider-wrap {
  position: relative;
  width: 100%;
  overflow: visible;
}

.hits-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.hits-card {
  width: 285px;
  height: 285px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.hits-card__photo {
  height: 200px;
  overflow: hidden;
}

.hits-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hits-card__label {
  height: 85px;
  background-color: var(--beige);
  display: flex;
  align-items: center;
  padding: 0 30px;
}

.hits-card__label--center {
  justify-content: center;
  text-align: center;
}

.hits-card__label span {
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--burgundy);
  text-transform: uppercase;
  line-height: 1.3;
}

.hits-nav {
  position: absolute;
  top: 100px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 2;
  transform: translateY(-50%);
}

.hits-nav--prev {
  left: 20px;
  transform: translateY(-50%) scaleX(-1);
}

.hits-nav--next {
  right: 20px;
}

.hits-nav__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.hits-nav__arrow {
  position: absolute;
  left: 37.5%;
  top: 10px;
  height: 20px;
  width: 25%;
}

.hits-menu-btn {
  background-color: var(--beige);
  color: var(--burgundy);
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 1000px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.hits-menu-btn:hover {
  opacity: 0.7;
}

/* Smak Section */
#smak {
  margin: 0;
  padding: 80px 0;
}

.smak-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.smak-title {
  font-family: 'Georgia', serif;
  font-size: 64px;
  font-weight: 400;
  color: var(--burgundy);
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  margin: 0;
}

.smak-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 98px;
  width: 100%;
}

.smak-left {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.smak-text {
  font-family: 'Onest', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--burgundy);
  text-transform: uppercase;
  line-height: 1.6;
  margin: 0;
}

.smak-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--burgundy);
  border-radius: 1000px;
  padding: 10px 16px;
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--burgundy);
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.smak-btn:hover {
  background-color: var(--burgundy);
  color: #fff;
}

.smak-photo {
  max-width: 600px;
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
}

.smak-photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-beige-wrap {
  background-color: var(--beige);
}

/* Footer */
.site-footer {
  background-image: url('../img/footer-bg.svg');
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 30px;
}

.footer-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.footer-left {
  display: flex;
  align-items: flex-end;
  gap: 100px;
}

.footer-logo {
  width: 155px;
  height: 56px;
  display: block;
  flex-shrink: 0;
}

.footer-nav {
  display: flex;
  gap: 80px;
  align-items: center;
}

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

.footer-nav__link {
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--burgundy);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.footer-nav__link:hover {
  opacity: 0.7;
}

.footer-nav__btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.footer-social {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}

.footer-social__link {
  display: block;
  transition: opacity 0.2s ease;
}

.footer-social__link:hover {
  opacity: 0.7;
}

.footer-social__icon {
  width: 30px;
  height: 30px;
  display: block;
}

/* Contacts Section */
#contacts {
  margin: 0;
  padding: 80px 0;
}

.contacts-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.contacts-title {
  font-family: 'Georgia', serif;
  font-size: 64px;
  font-weight: 400;
  color: var(--burgundy);
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  margin: 0;
}

.contacts-map {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 40px;
}

.contacts-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contacts-item__name {
  font-family: 'Onest', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--burgundy);
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}

.contacts-item__text {
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1.6;
  margin: 0;
}

/* Yandex map balloon */
.map-balloon {
  padding: 4px 0;
  color: var(--burgundy);
  font-family: 'Onest', sans-serif;
}

.map-balloon__name {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 6px 0;
}

.map-balloon__text {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Loyalty Section */
#loyalty {
  margin: 0;
  padding: 80px 0;
}

.loyalty-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.loyalty-title {
  font-family: 'Georgia', serif;
  font-size: 64px;
  font-weight: 400;
  color: var(--burgundy);
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  margin: 0;
  width: 100%;
}

.loyalty-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.loyalty-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 12px;
  max-width: 600px;
}

.loyalty-text {
  color: var(--burgundy);
  margin: 0;
}

.loyalty-text__title {
  font-family: 'Georgia', serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 16px;
}

.loyalty-text__lead {
  font-family: 'Onest', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 16px;
}

.loyalty-text__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.loyalty-text__list li {
  font-family: 'Onest', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
}

.loyalty-text__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--burgundy);
  opacity: 0.5;
}

.loyalty-btn {
  align-self: flex-start;
  border: 2px solid var(--burgundy);
  border-radius: 1000px;
  padding: 10px 16px;
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--burgundy);
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  background: transparent;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.loyalty-btn:hover {
  background-color: var(--burgundy);
  color: #fff;
}

.loyalty-photo {
  max-width: 600px;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  width: 100%;
}

.loyalty-photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 -30px;
  display: block;
}

/* Delivery Section */
#delivery {
  margin: 0;
  padding: 80px 0;
  background-image: url('../img/about-deco-top.svg'), url('../img/about-deco-bottom.svg');
  background-position: top center, bottom center;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, auto;
}

.delivery-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.delivery-title {
  font-family: 'Georgia', serif;
  font-size: 64px;
  font-weight: 400;
  color: var(--burgundy);
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  margin: 0;
  width: 100%;
}

.delivery-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.delivery-photo {
  max-width: 600px;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  width: 100%;
}

.delivery-photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.delivery-right {
  max-width: 600px;
  height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.delivery-text {
  font-family: 'Onest', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--burgundy);
  text-transform: uppercase;
  text-align: right;
  line-height: 1.6;
  margin: 0;
}

.delivery-btns {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-shrink: 0;
}

.delivery-btn {
  border: 2px solid var(--burgundy);
  border-radius: 1000px;
  padding: 10px 16px;
  height: 44px;
  box-sizing: border-box;
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--burgundy);
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.delivery-btn:hover {
  opacity: 0.7;
}

.delivery-service {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 2px solid var(--burgundy);
  border-radius: 20px;
  padding: 10px 14px;
  height: 44px;
  box-sizing: border-box;
  transition: opacity 0.2s ease;
}

.delivery-service:hover {
  opacity: 0.7;
}

.delivery-service__logo,
.delivery-service__logo--lg {
  height: 20px;
  width: 120px;
  object-fit: contain;
  display: block;
}

/* Promo & News Sections */
#promo,
#news {
  margin: 0;
  padding: 80px 0;
  overflow: hidden;
  background-image: url('../img/about-deco-top.svg'), url('../img/about-deco-bottom.svg');
  background-position: top center, bottom center;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, auto;
}
@media (min-width: 1200px) {
  #news {
    padding-top: 130px;
  }
  .loyalty-photo {
    position: relative;
    bottom: -150px;
  }
}

.promo-inner,
.news-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.promo-title,
.news-title {
  font-family: 'Georgia', serif;
  font-size: 64px;
  font-weight: 400;
  color: var(--burgundy);
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  margin: 0;
}

.news-footer {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.news-all-btn {
  display: inline-block;
  background-color: transparent;
  color: var(--burgundy);
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 28px;
  border-radius: 1000px;
  border: 2px solid var(--burgundy);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.news-all-btn:hover {
  background-color: var(--burgundy);
  color: #fff;
}

/* ── News Archive Page ─────────────────────────────────────────── */
.news-archive {
  min-height: 100vh;
}

.news-archive__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 32px 80px;
}

.news-archive__title {
  font-family: 'Georgia', serif;
  font-size: 64px;
  font-weight: 400;
  color: var(--burgundy);
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  margin: 0 0 48px;
}

.news-archive__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.news-archive__grid .news-card {
  width: 100%;
  height: 380px;
  cursor: pointer;
}

.news-archive__pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.news-archive__pagination a,
.news-archive__pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: 'Onest', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--burgundy);
  border: 2px solid transparent;
  text-decoration: none;
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
}

.news-archive__pagination a:hover {
  border-color: var(--burgundy);
}

.news-archive__pagination .current {
  background-color: var(--burgundy);
  color: #fff;
}

@media (max-width: 1100px) {
  .news-archive__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .news-archive__inner { padding: 40px 20px 60px; }
  .news-archive__title { font-size: 36px; margin-bottom: 32px; }
  .news-archive__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .news-archive__grid .news-card { height: 260px; }
}

.promo-slider-wrap,
.news-slider-wrap {
  position: relative;
  width: 100%;
  overflow: visible;
}

.promo-track,
.news-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.promo-card,
.news-card {
  position: relative;
  width: 329px;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-card:hover,
.news-card:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}


.promo-card__img,
.news-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.promo-nav,
.news-nav {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 2;
  transform: translateY(-50%);
}

.promo-nav--prev,
.news-nav--prev {
  left: 20px;
  transform: translateY(-50%) scaleX(-1);
}

.promo-nav--next,
.news-nav--next {
  right: 20px;
}

.promo-nav__bg,
.news-nav__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.promo-nav__arrow,
.news-nav__arrow {
  position: absolute;
  left: 37.5%;
  top: 10px;
  height: 20px;
  width: 25%;
}

.promo-nav:disabled,
.news-nav:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

/* Promo Detail Popup */
.promo-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
}

.promo-overlay.is-open {
  display: flex;
  animation: promoOverlayIn 0.3s ease forwards;
}

@keyframes promoOverlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.promo-popup__modal {
  animation: promoModalIn 0.35s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes promoModalIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.promo-popup__modal.slide-next {
  animation: promoSlideNext 0.35s ease forwards;
}

.promo-popup__modal.slide-prev {
  animation: promoslidePrev 0.35s ease forwards;
}

@keyframes promoSlideNext {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes promoslidePrev {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.promo-popup {
  display: flex;
  align-items: center;
  gap: 20px;
}

.promo-popup__modal {
  width: 900px;
  height: 600px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  position: relative;
}

.promo-popup__left {
  width: 450px;
  flex-shrink: 0;
  height: 100%;
  overflow: hidden;
}

.promo-popup__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.promo-popup__right {
  flex: 1;
  padding: 60px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.promo-popup__title {
  font-family: 'Onest', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  text-align: right;
  color: #731425;
  margin: 0;
}

.promo-popup__desc {
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  text-align: right;
  color: #731425;
  margin: 0;
}

.promo-popup__nav {
  position: relative;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.promo-popup__nav:hover {
  opacity: 0.7;
}

.promo-popup__nav--prev {
  transform: scaleX(-1);
}

.promo-popup__nav-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.promo-popup__nav-arrow {
  position: absolute;
  left: 37.5%;
  top: 10px;
  height: 20px;
  width: 25%;
}

/* About Section */
#about {
  position: relative;
  z-index: 2;
  background-color: var(--beige);
  background-image: url('../img/about-deco-top.svg'), url('../img/about-deco-bottom.svg');
  background-position: top center, bottom center;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, auto;
  margin: 0;
  padding: 80px 0;
	margin-top: 40px;
}

.about__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.about__title {
  font-family: 'Georgia', serif;
  font-size: 64px;
  font-weight: 400;
  color: var(--burgundy);
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  margin: 0;
  width: 100%;
}

.about__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}

.about__left {
  max-width: 600px;
  flex-shrink: 0;
}

.about__photo {
  max-width: 600px;
  width: 100%;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  align-self: stretch;
}

.about__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__text {
  color: var(--burgundy);
}

.about__text p {
  font-family: 'Onest', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 16px;
}

.about__text p:first-child {
  margin-top: 0;
}

.about__accent {
  font-family: 'Georgia', serif !important;
  font-size: 28px !important;
  line-height: 1.3 !important;
  margin: 0 0 16px !important;
}

.about__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.about__list li {
  font-family: 'Onest', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--burgundy);
  padding-left: 24px;
  position: relative;
}

.about__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--burgundy);
  opacity: 0.5;
}

/* ===================== BANQUETS PAGE ===================== */

.banquets-page {
  background-color: #fff;
}

.banquets-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Hero */
.banquets-hero-wrap {
  padding: 20px 0 0;
}

.banquets-hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background-image: url('../img/banquets-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-color: #2e1a0e;
  padding: 30px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banquets-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.banquets-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  text-align: center;
}

.banquets-hero__logo {
  width: 160px;
  height: 73px;
}

.banquets-hero__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: white;
  text-transform: uppercase;
}

.banquets-hero__title {
  font-family: 'Georgia', serif;
  font-size: 64px;
  font-weight: 400;
  color: white;
  line-height: normal;
  margin: 0;
  text-transform: uppercase;
}

.banquets-hero__subtitle {
  font-family: 'Onest', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  margin: 0;
}

/* Divider */
.banquets-divider {
  border: none;
  border-top: 1px solid var(--burgundy);
  margin: 0;
  width: 100%;
}

/* Quote */
.banquets-quote-section {
  padding: 20px 0 0;
}

.banquets-quote-section:last-of-type {
  padding-bottom: 80px;
}

.banquets-quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 20px 0;
}

.banquets-quote__text {
  font-family: 'Georgia', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--burgundy);
  text-align: center;
  text-transform: uppercase;
  line-height: 1.6;
  margin: 0;
  max-width: 1100px;
}

/* Features */
.banquets-features-bg {
  background-color: #f7ebde;
}

.banquets-features-section {
  padding: 60px 0;
  background-image: url('../img/banquets-features-section-top.svg'), url('../img/banquets-features-section-bottom.svg');
  background-position: top center, bottom center;
  background-repeat: no-repeat, no-repeat;
  background-size: contain;
}

.banquets-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 122px;
}

.banquets-feature {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.banquets-feature__icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
}

.banquets-feature__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.banquets-feature__title {
  font-family: 'Onest', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--burgundy);
  text-transform: uppercase;
  margin: 0;
  line-height: normal;
}

.banquets-feature__text {
  font-family: 'Onest', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1.6;
  margin: 0;
}

/* Restaurant tiles */
.banquets-group {
  padding: 60px 0 0;
}

.banquets-group + .banquets-group {
  padding-top: 20px;
}

.banquets-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}

/* tile-A → col 1 row 1, panel-A → full width row 2 */
/* tile-B → col 2 row 1, panel-B → full width row 3 */
.banquets-tiles .banquets-tile:nth-child(1) { grid-column: 1; grid-row: 1; }
.banquets-tiles .banquets-panel:nth-child(2) { grid-column: 1 / -1; grid-row: 2; }
.banquets-tiles .banquets-tile:nth-child(3) { grid-column: 2; grid-row: 1; }
.banquets-tiles .banquets-panel:nth-child(4) { grid-column: 1 / -1; grid-row: 3; }

.banquets-tile {
  position: relative;
  flex: 1;
  height: 314px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 72px 0;
  gap: 29px;
  border: none;
  cursor: pointer;
  background: none;
  transition: box-shadow 0.3s ease;
}

.banquets-tile__bg {
  position: absolute;
  inset: 0;
}

.banquets-tile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banquets-tile__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease;
}

.banquets-tile:hover .banquets-tile__overlay,
.banquets-tile.is-active .banquets-tile__overlay {
  background-color: rgba(0, 0, 0, 0.15);
}

.banquets-tile.is-active {
  box-shadow: inset 0 0 0 3px var(--beige);
}

.banquets-tile__title {
  position: relative;
  z-index: 1;
  font-family: 'Georgia', serif;
  font-size: 48px;
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  line-height: normal;
}

.banquets-tile__btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 2px solid white;
  border-radius: 1000px;
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.banquets-tile:hover .banquets-tile__btn {
  opacity: 0.8;
}

/* Collapsible panel */
.banquets-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.banquets-panel.is-open {
  grid-template-rows: 1fr;
}

.banquets-panel__inner {
  overflow: hidden;
}

/* Location section */
.banquets-location {
  display: block;
  padding: 40px 0 40px;
}

.banquets-location__info > div {
  width: 380px;
  padding-right: 80px;
}

.banquets-location__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 40px 0;
}

.banquets-location__title {
  font-family: 'Onest', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--burgundy);
  text-transform: uppercase;
  margin: 0;
  line-height: normal;
}

.banquets-location__info {
  display: flex;
  gap: 20px;
}

.banquets-location__text {
  font-family: 'Onest', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1.6;
  margin: 0;
}

/* Hall cards */
.banquets-halls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 40px;
  align-items: stretch;
}

.banquets-hall-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
}

.banquets-hall-card__photo {
  height: 260px;
  flex-shrink: 0;
}

.banquets-hall-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banquets-hall-card__body {
  flex: 1;
  background-color: var(--beige);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.banquets-hall-card__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.banquets-hall-card__title {
  font-family: 'Onest', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--burgundy);
  text-transform: uppercase;
  margin: 0;
  line-height: normal;
}

.banquets-hall-card__text {
  font-family: 'Onest', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1.6;
  margin: 0;
}

.banquets-hall-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 10px 16px;
  border: 2px solid var(--burgundy);
  border-radius: 1000px;
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--burgundy);
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.banquets-hall-card__btn:hover {
  background-color: var(--burgundy);
  color: #fff;
}

/* About section */
.banquets-about-section {
  position: relative;
  padding: 60px 0;
}

.banquets-about-deco {
  position: absolute;
  left: 0;
  width: 100%;
  height: 467px;
  pointer-events: none;
  z-index: 0;
}

.banquets-about-deco--top {
  top: 0;
  background-image: url('../img/banquets-deco-top.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.banquets-about-deco--bottom {
  bottom: 0;
  background-image: url('../img/banquets-deco-bottom.png');
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.banquets-about-section .banquets-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.banquets-about__text {
  font-family: 'Onest', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

/* Gallery */
.banquets-gallery {
  display: flex;
  gap: 20px;
}

.banquets-gallery__photo {
  flex: 1;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
}

.banquets-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===================== END BANQUETS PAGE ===================== */

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 30px));
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Animations */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-bounce {
  animation: bounce 2s infinite;
}

/* Text Shadow for text-white on images */
.drop-shadow-lg {
  text-shadow: 0 10px 15px rgba(0, 0, 0, 0.2), 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Button Styles */
button {
  cursor: pointer;
  transition: all 200ms ease;
}

button:hover {
  opacity: 0.9;
}

#restaurantClose {
  filter: none;
}

@media (max-width: 1200px) {
  .header-nav {
    gap: 20px;
  }
  .header-social {
    gap: 10px;
  }
  .hero-panel {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .smak-content {
    flex-wrap: wrap;
    gap: 40px;
  }
  .smak-left {
    order: 2;
  }
  .promo-popup__modal {
    width: 100%;
    max-height: 100vh;
    flex-direction: column;
    overflow-y: auto;
    height: 100%;
  }
  .promo-popup__left {
    width: 100%;
  }
  .promo-popup__right {
    padding-top: 30px;
    align-items: flex-start;
  }
  .promo-popup__title {
    text-align: left;
  }
  .promo-popup__desc {
    text-align: left;
  }
  .popup-close {
    background: #fff;
    border-radius: 50%;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  }
  .hero-info__right {
    justify-content: flex-start;
  }
  .delivery-content {
    flex-wrap: wrap;
  }
  .delivery-text {
    text-align: left;
  }
  .delivery-right {
    margin-top: 40px;
    align-items: flex-start;
  }
  .loyalty-content {
    flex-wrap: wrap;
  }
  .loyalty-left {
    order: 2;
    margin-top: 40px;
  }
  .footer-left {
    gap: 50px;
  }
  .footer-nav {
    gap: 40px;
  }
  .footer-inner {
    flex-wrap: wrap;
  }
  .footer-social {
    margin-top: 20px;
    margin-left: 30px;
  }

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

  .banquets-tile__title {
    font-size: 36px;
  }
}

/* Mobile-only elements (hidden on desktop) */
.burger-popup__mobile-only {
  display: none;
}

@media (max-width: 767px) {
  .site-header {
    height: 60px;
    padding-bottom: 0;
    background-size: cover;
  }
  .header-inner {
    padding: 0 20px;
  }
  .header-logo {
    display: none;
  }
  .header-nav {
    gap: 10px;
  }
  .header-nav__desktop-only {
    display: none;
  }
  .burger-btn {
    order: -1;
    padding-right: 25px;
  }
  .burger-popup {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    min-width: 220px;
  }
  /* Hero section */
  .hero-inner {
    padding: 0 20px;
  }
  .hero-content {
    width: 100%;
    gap: 40px;
  }
  .hero-title {
    font-size: 40px;
  }
  .hero-subtitle {
    font-size: 20px;
  }
  .hero-locations {
    flex-direction: column;
    gap: 20px;
  }

  /* Hero info panel */
  #hero {
    padding-top: 20px;
  }
  .hero-info {
    padding: 40px 20px;
  }
  .hero-panel {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .hero-info__left {
    align-items: center;
    text-align: center;
    gap: 40px;
    min-height: auto;
  }
  .hero-info__center {
    align-items: center;
    text-align: center;
  }
  .hero-info__right {
    width: 100%;
  }
  .hero-slider {
    width: 100%;
    height: 320px;
  }
  .hero-slider__slide {
    width: 100%;
    height: auto;
  }

  .burger-popup__link {
    text-align: center;
  }
  .burger-popup {
    max-width: 80%;
    animation: slideUpMobile 300ms ease-out;
  }
  .burger-popup__close {
    display: block;
    top: 10px;
    right: 10px;
  }
  .burger-popup {
    padding-top: 50px;
  }
  .burger-popup__mobile-only {
    display: block;
  }
  .burger-popup__nav {
    align-items: center;
  }

  /* Restaurant modal */
  .restaurant-modal {
    padding: 50px 20px;
  }
  .restaurant-modal__grid {
    gap: 40px;
  }

  /* Tiles: Лавки и Кафе */
  .tiles-inner {
    flex-wrap: wrap;
    padding: 0 20px;
  }
  .tile {
    width: 100%;
    min-width: 100%;
  }

  /* Section paddings: 80px → 60px */
  .section {
    padding: 60px 20px;
  }
  #hits,
  #smak,
  #contacts,
  #loyalty,
  #delivery,
  #promo,
  #news {
    margin: 0;
    padding: 60px 0;
  }

  #about {
    margin: 0;
    padding: 60px 0;
  }

  /* Section titles: 64px → 40px */
  .hits-title,
  .smak-title,
  .contacts-title,
  .loyalty-title,
  .delivery-title,
  .promo-title,
  .news-title,
  .about__title {
    font-size: 40px;
  }
  .tile__title {
    font-size: 40px;
  }
  #about {
    margin: 60px 0;
    padding: 60px 0;
    margin-bottom: 0;
  }
  .about__inner {
    padding: 0 20px;
    gap: 30px;
  }
  .about__content {
    flex-direction: column;
  }
  .about__left {
    max-width: 100%;
  }
  .about__photo {
    max-width: 100%;
    height: 260px;
    align-self: auto;
  }
  .about__text p {
    font-size: 16px;
  }
  .about__accent {
    font-size: 22px !important;
  }
  .about__list li {
    font-size: 16px;
  }
  .hits-inner {
    gap: 40px;
    padding: 0 20px;
  }
  .hits-nav--next {
    right: 0;
  }
  .smak-inner {
    gap: 40px;
  }
  .smak-text {
    font-size: 18px;
    text-align: center;
  }
  .smak-photo {
    flex: auto;
  }
  .smak-left {
    flex: auto;
  }
  .smak-btn {
    margin: 0 auto;
  }
  .promo-inner,
  .news-inner {
    gap: 40px;
    padding: 0 20px;
  }
  .promo-nav--next,
  .news-nav--next {
    right: 0;
  }
  .delivery-inner {
    gap: 40px;
  }
  .delivery-photo {
    width: 100%;
  }
  .delivery-right {
    width: 100%;
    height: auto;
  }
  .delivery-text {
    font-size: 18px;
    margin-bottom: 40px;
    text-align: center;
  }
  .delivery-btns {
    flex-wrap: wrap;
    justify-content: center;
  }
  .promo-popup__modal {
    width: 100vw;
    height: 100vh;
  }
  .promo-popup__left {
    height: auto;
  }
  .promo-popup__nav--prev {
    position: absolute;
    left: 20px;
    z-index: 5;
  }
  .promo-popup__nav--next {
    position: absolute;
    right: 20px;
    z-index: 5;
  }
  .delivery-inner {
    padding: 0 20px;
  }
  .loyalty-inner {
    gap: 40px;
    padding: 0 20px;
  }
  .loyalty-photo {
    width: 100%;
  }
  .loyalty-photo__img {
    object-position: center;
  }
  .loyalty-text__title {
    font-size: 22px;
  }
  .loyalty-text__lead,
  .loyalty-text__list li {
    font-size: 16px;
  }
  .contacts-inner {
    gap: 40px;
    padding: 0 20px;
  }
  .contacts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
  }
  .contacts-item {
    text-align: center;
  }

  /* Footer */
  .site-footer {
    padding: 80px 0 40px;
  }
  .footer-inner {
    flex-direction: column-reverse;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
  }
  .footer-left {
    flex-direction: column-reverse;
    align-items: center;
    gap: 40px;
  }
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .footer-nav__col {
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }
  .footer-nav__link {
    text-align: center;
  }
  .footer-social {
    margin: 0;
  }
  main {
    overflow: hidden;
  }

  .banquets-inner {
    padding: 0 20px;
  }

  .banquets-hero__title {
    font-size: 48px;
  }

  .banquets-hero__subtitle {
    font-size: 20px;
  }

  .banquets-quote-section {
    padding-top: 0;
  }

  .banquets-quote__text {
    font-size: 18px;
  }

  .banquets-feature__title {
    font-size: 20px;
  }

  .banquets-feature__text {
    font-size: 16px;
  }

  .banquets-tiles {
    grid-template-columns: 1fr;
  }

  .banquets-tiles .banquets-tile:nth-child(1),
  .banquets-tiles .banquets-tile:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
  }

  .banquets-tiles .banquets-panel:nth-child(2),
  .banquets-tiles .banquets-panel:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .banquets-panel + .banquets-tile {
    margin-top: 20px;
  }

  .banquets-location__title {
    font-size: 20px;
  }

  .banquets-location__info {
    flex-direction: column;
  }

  .banquets-location__text {
    font-size: 16px;
  }

  .banquets-halls {
  display: flex;
    flex-direction: column;
  }

  .banquets-hall-card__title {
    font-size: 20px;
  }

  .banquets-hall-card__text {
    font-size: 16px;
  }

  .banquets-about__text {
    font-size: 16px;
  }

  .banquets-gallery {
    flex-direction: column;
  }
}


/* ========================================
   Form Modal (Забронировать)
   ======================================== */

.form-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 40;
  display: none;
  backdrop-filter: blur(2px);
}

.form-modal-overlay.is-open {
  display: block;
  animation: fadeIn 0.25s ease forwards;
}

.form-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 16px;
  padding: 50px 50px 44px;
  z-index: 50;
  display: none;
  width: 90%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
}

.form-modal.is-open {
  display: block;
  animation: slideUpFade 0.3s ease forwards;
}

.form-modal__title {
  font-family: 'Onest', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  color: var(--burgundy);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 28px;
}

/* ── CF7 form inside modal ── */

.form-modal .wpcf7-form p {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}

.form-modal .wpcf7-form br {
  display: none;
}

/* Все текстовые поля */
.form-modal .wpcf7-form-control.form-input,
.form-modal .wpcf7-form-control.wpcf7-text,
.form-modal .wpcf7-form-control.wpcf7-email,
.form-modal .wpcf7-form-control.wpcf7-mask {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: 'Onest', sans-serif;
  font-size: 15px;
  color: var(--gray-700);
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease;
  appearance: none;
}

.form-modal .wpcf7-form-control.form-input:focus,
.form-modal .wpcf7-form-control.wpcf7-text:focus,
.form-modal .wpcf7-form-control.wpcf7-email:focus,
.form-modal .wpcf7-form-control.wpcf7-mask:focus {
  border-color: var(--burgundy);
}

.form-modal .wpcf7-form-control.form-input::placeholder,
.form-modal .wpcf7-form-control.wpcf7-text::placeholder,
.form-modal .wpcf7-form-control.wpcf7-email::placeholder,
.form-modal .wpcf7-form-control.wpcf7-mask::placeholder {
  color: #aaa;
}

/* Дата-пикер (readonly поле) */
.form-modal .walcf7-datetimepicker {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}

/* Radio-группа (выбор ресторана) */
.form-modal .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-modal .wpcf7-list-item {
  margin: 0;
}

.form-modal .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: 'Onest', sans-serif;
  font-size: 14px;
  color: var(--gray-700);
  padding: 8px 12px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-modal .wpcf7-list-item label:hover {
  border-color: var(--burgundy);
  background-color: #fdf5ee;
}

.form-modal .wpcf7-list-item input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color 0.2s ease;
  position: relative;
}

.form-modal .wpcf7-list-item input[type="radio"]::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--burgundy);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.form-modal .wpcf7-list-item input[type="radio"]:checked {
  border-color: var(--burgundy);
}

.form-modal .wpcf7-list-item input[type="radio"]:checked::after {
  opacity: 1;
}

.form-modal .wpcf7-list-item:has(input[type="radio"]:checked) label {
  border-color: var(--burgundy);
  background-color: #fdf5ee;
}

/* Кнопка отправки */
.form-modal .wpcf7-submit {
  margin-top: 8px;
  width: 100%;
  padding: 14px 24px;
  background-color: var(--burgundy);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Onest', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.form-modal .wpcf7-submit:hover {
  background-color: var(--burgundy-dark);
}

.form-modal .wpcf7-submit:disabled {
  opacity: 0.6;
  cursor: default;
}

/* Спиннер */
.form-modal .wpcf7-spinner {
  display: none;
}

/* Сообщения об ошибках и успехе */
.form-modal .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #c0392b;
}

.form-modal .wpcf7-response-output {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: 'Onest', sans-serif;
  font-size: 14px;
  text-align: center;
}

.form-modal .wpcf7-form.sent .wpcf7-response-output {
  background-color: #edfaf1;
  border: 1px solid #2ecc71;
  color: #1a7a40;
}

.form-modal .wpcf7-form.failed .wpcf7-response-output,
.form-modal .wpcf7-form.invalid .wpcf7-response-output {
  background-color: #fdf0f0;
  border: 1px solid #e74c3c;
  color: #c0392b;
}

/* Невалидные поля */
.form-modal .wpcf7-not-valid {
  border-color: #e74c3c !important;
}

/* Скрыть fieldset с hidden полями */
.form-modal .hidden-fields-container {
  display: none;
}

/* screen-reader-only */
.form-modal .screen-reader-response {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .form-modal {
    padding: 40px 24px 32px;
    border-radius: 12px;
  }

  .form-modal__title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

/* ============================================================
   СМАК PAGE  (page-smak.php)
   ============================================================ */

.smak-page {
  background-color: var(--beige);
  color: var(--burgundy);
  overflow-x: hidden;
  margin-top: -20px;
  margin-bottom: -30px;
}

/* ── Shared typography ── */
.smak-section-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  color: var(--burgundy);
  margin: 0 0 30px;
}

@media (max-width: 768px) {
  .smak-section-title { font-size: 38px; }
}

@media (max-width: 480px) {
  .smak-section-title { font-size: 30px; }
}

/* ── Shared button ── */
.smak-btn {
  display: inline-block;
  font-family: 'Onest', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  background-color: var(--burgundy);
  border: 2px solid var(--burgundy);
  border-radius: 30px;
  padding: 14px 32px;
  text-decoration: none;
  transition: background-color 0.25s, color 0.25s;
  cursor: pointer;
  white-space: nowrap;
}

.smak-btn:hover,
.smak-btn:focus {
  background-color: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
  text-decoration: none;
  color: #fff;
}

.smak-btn--white {
  background-color: #fff;
  color: var(--burgundy);
}

.smak-btn--white:hover,
.smak-btn--white:focus {
  background-color: var(--beige);
  color: var(--burgundy);
}

.smak-btn--hero {
  font-size: 22px;
  padding: 16px 40px;
  margin-top: 32px;
}

.smak-btn-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 50px;
}

.smak-btn-center {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ── Hero ── */
.smak-hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.smak-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 0;
}

.smak-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0) 100%);
  z-index: 1;
}

.smak-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.smak-hero__subtitle {
  font-family: 'Onest', sans-serif;
  font-size: 22px;
  color: #fff;
  margin: 0 0 8px;
  opacity: 0.9;
}

@media (max-width: 480px) {
  .smak-hero__subtitle { font-size: 16px; }
}

.smak-hero__title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
  margin: 0;
}

@media (max-width: 768px) {
  .smak-hero__title { font-size: 56px; }
}

@media (max-width: 480px) {
  .smak-hero__title { font-size: 36px; }
}

.smak-hero__arrow {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  cursor: pointer;
  animation: smakArrowBounce 1.2s infinite ease-in-out;
  opacity: 0.8;
}

@keyframes smakArrowBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* ── Green / Info section ── */
.smak-green {
  padding: 90px 0;
  background-color: var(--beige);
}

@media (max-width: 768px) {
  .smak-green { padding: 60px 0; }
}

/* ── Photo + text blocks ── */
.smak-blocks {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 50px;
}

.smak-lr {
  display: flex;
  align-items: center;
  gap: 40px;
}

.smak-lr--reverse {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .smak-lr,
  .smak-lr--reverse {
    flex-direction: column;
  }
}

.smak-lr__img {
  flex: 0 0 calc(50% - 20px);
  max-width: calc(50% - 20px);
}

@media (max-width: 768px) {
  .smak-lr__img {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
}

.smak-lr__img img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .smak-lr__img img { height: 280px; }
}

.smak-lr__text {
  flex: 1;
}

.smak-lr__text h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--burgundy);
  margin: 0 0 16px;
}

@media (max-width: 768px) {
  .smak-lr__text { margin-top: 24px; }
  .smak-lr__text h3 { font-size: 30px; }
}

@media (max-width: 480px) {
  .smak-lr__text h3 { font-size: 26px; }
}

.smak-lr__text p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--burgundy);
  margin: 8px 0;
}

/* ── Video block ── */
.smak-video-block {
  line-height: 0;
  margin: 0;
  padding: 0;
}

.smak-video-block__video {
  display: block;
  width: 100%;
  max-height: 640px;
  object-fit: cover;
}

/* ── Orange / Schedule section ── */
.smak-orange {
  position: relative;
  padding: 90px 0;
  background-color: var(--beige-light);
  margin: 20px 0;
}

.smak-orange::before,
.smak-orange::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 20px;
  background: url('../img/top_curve.png') repeat-x center;
  background-size: auto 100%;
  z-index: 1;
}

.smak-orange::before {
  top: -20px;
  transform: rotate(180deg);
}

.smak-orange::after {
  bottom: -20px;
}

@media (max-width: 768px) {
  .smak-orange { padding: 60px 0; }
}

.smak-orange__text {
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
  color: var(--burgundy);
  max-width: 820px;
  margin: 0 auto 40px;
}

.smak-orange__text p { margin: 8px 0; font-size: 18px;}

.smak-schedule__row {
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
  color: var(--burgundy);
  margin: 16px auto;
  max-width: 820px;
}

/* ── Schedule tiles ── */
.smak-tiles {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: 30px 0;
}

@media (max-width: 480px) {
  .smak-tiles { flex-direction: column; align-items: center; }
}

.smak-tile {
  background-color: var(--beige);
  border: 2px solid var(--burgundy);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  width: 280px;
  min-width: 220px;
}

@media (max-width: 480px) {
  .smak-tile { width: 100%; max-width: 320px; }
}

.smak-tile__icon {
  margin-bottom: 14px;
}

.smak-tile__icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.smak-tile__text {
  font-size: 20px;
  line-height: 1.4;
  color: var(--burgundy);
}

.smak-tile__text strong {
  display: block;
  font-family: 'Onest', sans-serif;
  font-weight: 700;
}

.smak-tile__text span {
  display: block;
  font-size: 16px;
  opacity: 0.8;
}

/* ── Photo gallery slider ── */
.smak-gallery {
  padding: 80px 0;
  background-color: var(--beige);
  overflow: hidden;
}

@media (max-width: 768px) {
  .smak-gallery { padding: 60px 0; }
}

.smak-gallery__inner {
  position: relative;
  overflow: hidden;
}

.smak-gallery__track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.smak-gallery__slide {
  flex: 0 0 100%;
  width: 100%;
}

.smak-gallery__slide img {
  display: block;
  width: 100%;
  height: 70vh;
  max-height: 640px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .smak-gallery__slide img { height: 50vw; }
}

.smak-gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.smak-gallery__btn--prev { left: 20px; }
.smak-gallery__btn--next { right: 20px; }

.smak-gallery__btn-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.smak-gallery__btn-arrow {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 36px;
}

.smak-gallery__btn--prev .smak-gallery__btn-arrow {
  transform: rotate(180deg);
}

.smak-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

/* ── Reviews slider ── */
.smak-reviews {
  padding: 90px 0;
  background-color: var(--beige);
}

@media (max-width: 768px) {
  .smak-reviews { padding: 60px 0; }
}

.smak-reviews__viewport {
  overflow: hidden;
  max-width: 820px;
  margin: 40px auto 0;
}

.smak-reviews__track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.smak-reviews__slide {
  flex: 0 0 100%;
  text-align: center;
  padding: 0 20px;
}

.smak-reviews__text {
  font-size: 20px;
  line-height: 1.6;
  color: var(--burgundy);
  margin-bottom: 24px;
}

@media (max-width: 480px) {
  .smak-reviews__text { font-size: 16px; }
}

.smak-reviews__text p { margin: 6px 0; font-size: 18px; }

.smak-reviews__name {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--burgundy);
  margin-top: 12px;
}

@media (max-width: 480px) {
  .smak-reviews__name { font-size: 24px; }
}

.smak-reviews__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.smak-reviews__nav-btn {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  line-height: 0;
}

.smak-reviews__nav-btn:hover { opacity: 1; }

.smak-reviews__nav-btn img {
  width: 24px;
  height: 36px;
}

.smak-reviews__nav-btn--prev img {
  transform: rotate(180deg);
}

/* ── Shared dots ── */
.smak-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid var(--burgundy);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s;
  margin: 0 5px;
}

.smak-dot.is-active {
  background-color: var(--burgundy);
}

/* ── CTA / Red section ── */
.smak-cta {
  padding: 90px 0;
  background-color: var(--burgundy);
  text-align: center;
  padding-bottom: 120px;
}

@media (max-width: 768px) {
  .smak-cta { padding: 60px 0; }
}

.smak-cta__title {
  color: #fff;
}

.smak-cta__title span {
  display: block;
  font-family: 'Onest', sans-serif;
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .smak-cta__title span { font-size: 24px; }
}

@media (max-width: 480px) {
  .smak-cta__title span { font-size: 20px; }
}

.smak-cta__title strong {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 68px;
  font-weight: 400;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .smak-cta__title strong { font-size: 46px; }
}

@media (max-width: 480px) {
  .smak-cta__title strong { font-size: 32px; }
}
span[data-name="radio-837"], div[data-class="wpcf7cf_group"] {
	margin-bottom: 12px;
}
/* ── Cookie banner ── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  max-width: 340px;
  background: var(--burgundy);
  color: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: cookieSlideIn 0.35s ease;
}

.cookie-banner[hidden] {
  display: none;
}

@keyframes cookieSlideIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}

.cookie-banner__text {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  color: rgba(255,255,255,0.9);
}

.cookie-banner__link {
  color: var(--beige);
  text-decoration: underline;
}

.cookie-banner__link:hover {
  color: #fff;
}

.cookie-banner__btn {
  align-self: flex-start;
  background: #fff;
  color: var(--burgundy);
  border: none;
  border-radius: 20px;
  padding: 8px 20px;
  font-family: 'Onest', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.cookie-banner__btn:hover {
  background: var(--beige);
}