/* ===================================
   ПРАЗДНИК СЕГОДНЯ — Design System
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --cream:        #FFF8F5;
  --white:        #FFFFFF;
  --pink:         #F36F82;
  --pink-hover:   #E85F74;
  --pink-light:   #FFF1F3;
  --pink-pale:    #FFF7F8;
  --gold:         #F5A623;
  --gold-light:   #FFF3DC;
  --mint:         #00C49A;
  --mint-light:   #D6F7F0;
  --dark:         #0F0F11;
  --dark-2:       #1C1C1E;
  --dark-3:       #2C2C2E;
  --gray:         #6B6B6B;
  --gray-light:   #F5F5F7;
  --border:       #E8E8EC;

  --font-sans:    'Inter', system-ui, sans-serif;
  --font-serif:   'Playfair Display', Georgia, serif;

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --radius-full:  999px;

  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:    0 24px 64px rgba(0,0,0,0.14);
  --shadow-pink:  0 8px 32px rgba(243, 111, 130,0.28);

  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --container:    1200px;
  --nav-h:        72px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== LAYOUT ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 128px 0; }

/* ===== TYPOGRAPHY ===== */
.display-xl {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.display-md {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.heading {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.subheading {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
}
.body-lg { font-size: 1.125rem; line-height: 1.7; }
.body-md { font-size: 1rem; line-height: 1.65; }
.body-sm { font-size: 0.875rem; line-height: 1.6; color: var(--gray); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover {
  background: var(--pink-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(243, 111, 130,0.38);
}
.btn-secondary {
  background: var(--white);
  color: var(--dark);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--dark);
  padding: 12px 20px;
}
.btn-ghost:hover { color: var(--pink); }
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-lg { padding: 18px 36px; font-size: 1.0625rem; }
.btn-sm { padding: 10px 20px; font-size: 0.8125rem; }

/* ===== BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
}
.badge-pink { background: var(--pink-light); color: var(--pink); }
.badge-gold { background: var(--gold-light); color: #B8760A; }
.badge-mint { background: var(--mint-light); color: #007A60; }
.badge-dark { background: var(--dark); color: var(--white); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  border-radius: 12px;
}
/* Убираем синюю браузерную рамку при клике мышкой, но сохраняем
   аккуратный фирменный фокус для навигации с клавиатуры. */
.nav__logo:focus { outline: none; }
.nav__logo:focus-visible {
  outline: 2px solid rgba(243, 111, 130, 0.45);
  outline-offset: 4px;
}
.nav__logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.nav__logo-text {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #111;
  line-height: 1;
  white-space: nowrap;
}
.nav__logo-text span { color: #F36F82; }
.nav__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--pink);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}
@media (max-width: 520px) {
  .nav__logo { gap: 8px; }
  .nav__logo-img { width: 34px; height: 34px; }
  .nav__logo-text { font-size: 0.98rem; }
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--dark);
  transition: var(--transition);
  position: relative;
}
.nav__link:hover { color: var(--pink); background: var(--pink-pale); }
.nav__link.active { color: var(--pink); }
.nav__link--has-dropdown { padding-right: 22px; }
.nav__link--has-dropdown::after {
  content: '▾';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
}
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 8px;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
}
.nav__link-wrapper:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.nav__link-wrapper { position: relative; }
.nav__dropdown-item {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav__dropdown-item:hover { background: var(--pink-pale); color: var(--pink); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__phone {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  transition: var(--transition);
}
.nav__phone:hover { color: var(--pink); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__burger span {
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 32px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1.0625rem;
  transition: var(--transition);
}
.nav__mobile-link:hover { background: var(--pink-pale); color: var(--pink); }
.nav__mobile-cta { margin-top: 12px; }

/* ===== HERO ===== */
.hero {
  min-height: auto;
  padding-top: var(--nav-h);
  background: linear-gradient(160deg, #FFF0F7 0%, #FFF8F5 40%, #FFF3DC 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(243, 111, 130,0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.10) 0%, transparent 70%);
  bottom: -50px;
  left: 10%;
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0 64px;
  position: relative;
  z-index: 1;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 6px 16px 6px 8px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero__tag-dot {
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.3); }
}
.hero__title {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}
.hero__title em {
  font-style: italic;
  color: var(--pink);
}
.hero__desc {
  font-size: 1.125rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.hero__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero__badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-2);
}
.hero__visual {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
}
.hero__visual::before {
  content: "";
  position: absolute;
  inset: 8% 0 4% 4%;
  background: radial-gradient(circle at center, rgba(243, 111, 130,0.12), transparent 62%);
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}
.hero__main-card {
  width: 100%;
  background: transparent;
  box-shadow: none;
  border: 0;
  padding: 0;
  overflow: visible;
  position: relative;
  z-index: 1;
}
.hero__cart-wrapper {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
}
.hero__main-img { display: none; }
.hero__cart-img {
  display: block;
  width: min(92%, 720px);
  max-height: 520px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transform: translateY(18px) scale(1.12);
  filter: drop-shadow(0 28px 35px rgba(80,45,35,0.16)) drop-shadow(0 4px 8px rgba(0,0,0,0.08));
}
.hero__cart-shadow {
  position: absolute;
  width: 58%;
  height: 32px;
  background: rgba(80,45,35,0.14);
  filter: blur(22px);
  border-radius: 50%;
  left: 50%;
  bottom: 52px;
  transform: translateX(-50%);
  z-index: 0;
}
/* Hero photo */
.hero__photo {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
  z-index: 1;
}
.hero__photo img {
  width: min(100%, 580px);
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 28px 42px rgba(15,15,17,0.16));
}
.hero__floating {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 12px 16px;
  z-index: 4;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero__floating-1 { top: 16px; right: -16px; animation-delay: 0s; }
.hero__floating-2 { bottom: 80px; left: -16px; animation-delay: 1.5s; }
.hero__floating-title { font-size: 0.7rem; font-weight: 600; color: var(--gray); margin-bottom: 2px; }
.hero__floating-value { font-size: 0.9375rem; font-weight: 800; color: var(--dark); }
.hero__floating-sub { font-size: 0.7rem; color: var(--pink); font-weight: 500; }
.hero__floating-emoji { font-size: 1.25rem; margin-bottom: 2px; }

/* ===== INCLUDED BLOCK ===== */
.included-block { background: var(--white); }
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.included-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: left;
  transition: var(--transition);
}
.included-item:hover { border-color: var(--pink-light); box-shadow: var(--shadow-sm); }
.included-item__icon { font-size: 1.75rem; margin-bottom: 14px; display: block; }
.included-item__title { font-weight: 800; font-size: 0.9375rem; color: var(--dark); margin-bottom: 8px; line-height: 1.3; }
.included-item__desc { font-size: 0.875rem; color: var(--gray); line-height: 1.6; }

.included-note {
  max-width: 880px;
  margin: 34px auto 0;
  padding: 20px 26px;
  border-radius: 24px;
  background: #fff1f6;
  border: 1px solid rgba(231,51,120,0.14);
  color: rgba(20,20,20,0.78);
  text-align: center;
  font-weight: 700;
  font-size: 0.97rem;
  line-height: 1.55;
}
@media (max-width: 640px) {
  .included-note { margin-top: 24px; padding: 16px 18px; font-size: 0.9rem; }
}

/* ===== FORMAT GUIDE BLOCK ===== */
.format-block { background: var(--cream); }
.format-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.format-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.format-card:hover { border-color: var(--pink-light); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.format-card__emoji { font-size: 2rem; }
.format-card__title { font-weight: 700; font-size: 0.9rem; color: var(--dark); line-height: 1.3; }
.format-card__for { font-size: 0.8rem; color: var(--gray); line-height: 1.5; flex: 1; }
.format-card__link { font-size: 0.8rem; font-weight: 600; color: var(--pink); margin-top: 4px; }
.format-card__link:hover { text-decoration: underline; }

/* ===== TRUST BAR ===== */
.trust {
  padding: 32px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust__label { font-size: 0.8125rem; font-weight: 600; color: var(--gray); white-space: nowrap; flex-shrink: 0; }
.trust__logos { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.trust__logo-item {
  font-weight: 700;
  font-size: 0.875rem;
  color: #BBBBBB;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
}
.trust__logo-item:hover { color: var(--gray); }

/* ===== SERVICES ===== */
.services { background: var(--cream); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .subheading { margin-bottom: 12px; }
.section-header .display-lg { margin-bottom: 16px; }
.section-header .body-lg { color: var(--gray); max-width: 560px; margin: 0 auto; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink-light);
}
.service-card--featured {
  background: var(--dark);
  color: var(--white);
  grid-row: span 2;
  border-color: transparent;
}
.service-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--pink-pale);
  display: block;
  font-size: 4rem;
  /* fallback for emoji placeholders */
  line-height: 1;
  text-align: center;
}
.service-card--featured .service-card__img {
  background: linear-gradient(135deg, #F36F8220, #F5A62320);
  aspect-ratio: 4/3;
  font-size: 5rem;
}
.service-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-card__tag { margin-bottom: 12px; }
.service-card__title { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.service-card--featured .service-card__title { font-family: var(--font-serif); font-size: 1.625rem; margin-bottom: 12px; }
.service-card__desc { font-size: 0.9rem; color: var(--gray); margin-bottom: 20px; flex: 1; line-height: 1.6; }
.service-card--featured .service-card__desc { color: rgba(255,255,255,0.65); }
.service-card__includes {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card__include-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
}
.service-card__check {
  width: 18px;
  height: 18px;
  background: var(--mint-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--mint);
  flex-shrink: 0;
  margin-top: 1px;
}
.service-card--featured .service-card__check { background: rgba(0,196,154,0.2); color: #00C49A; }
.service-card__footer { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--border); margin-top: auto; }
.service-card--featured .service-card__footer { border-color: rgba(255,255,255,0.12); }
.service-card__price { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; }
.service-card__price-label { font-size: 0.75rem; color: var(--gray); font-weight: 400; }
.service-card--featured .service-card__price-label { color: rgba(255,255,255,0.5); }

/* ===== FORMATS GRID — Выберите формат подачи ===== */
.formats-section { background: var(--cream); }

/* ── Точки-индикатор для мобильной карусели форматов ── */
.carousel-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 4px 0 20px;
}
.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(15, 15, 17, 0.16);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease;
}
.carousel-dot.is-active {
  width: 20px;
  background: var(--pink);
}
@media (max-width: 640px) {
  .carousel-dots { display: flex; }
}

.formats__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  justify-content: center;
}
.formats__grid .format-card {
  flex: 0 0 calc(33.333% - 16px);
  max-width: 380px;
  min-width: 260px;
}

.format-card {
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 20, 0.06);
  box-shadow: 0 8px 32px rgba(40, 20, 20, 0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.format-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(40, 20, 20, 0.12);
}

.format-card__image {
  width: 100%;
  height: 235px;
  object-fit: cover;
  display: block;
  background: var(--pink-pale);
}

.format-card__body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.format-card__label {
  display: inline-block;
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--pink-pale);
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.format-card__label--dark {
  background: rgba(15,15,17,0.08);
  color: var(--dark);
}
.format-card__label--gold {
  background: var(--gold-light);
  color: #8a6200;
}
.format-card__label--mint {
  background: var(--mint-light);
  color: #006e56;
}

.format-card__title {
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--dark);
}

.format-card__desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(20, 20, 20, 0.6);
  margin: 0 0 14px;
  flex: 1;
}

.format-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.format-card__tag {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(243, 111, 130, 0.07);
  color: var(--pink);
  font-size: 0.76rem;
  font-weight: 600;
}

.format-card__footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(20,20,20,0.06);
  padding-top: 16px;
}

.format-card__price {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--dark);
  white-space: nowrap;
}

.format-card__btn {
  flex-shrink: 0;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 700;
  background: var(--pink);
  color: var(--white);
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.format-card__btn:hover {
  background: #d02868;
  transform: scale(1.03);
  color: var(--white);
}

@media (max-width: 1024px) {
  .formats__grid .format-card { flex: 0 0 calc(50% - 12px); max-width: none; }
}
.formats__seo-note {
  max-width: 820px;
  margin: 22px auto 0;
  text-align: center;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 640px) {
  /* Форматы — мягкая нативная карусель (та же механика, что у ленты отзывов):
     ровный снап по левому краю, инерция, без дёргания и без «шатания» секции. */
  .formats__grid {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 16px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
    scrollbar-width: none;
    gap: 14px;
    padding: 4px 16px 12px;
  }
  .formats__grid::-webkit-scrollbar { display: none; }
  .formats__grid .format-card {
    flex: 0 0 82%;
    max-width: 82%;
    scroll-snap-align: start;
  }
  /* В горизонтальной ленте отключаем fade-up-трансформацию: именно она (transform
     + staggered-задержки) вызывала «шатание» карточек при свайпе, в отличие от
     эталонной ленты отзывов, где карточки без fade-up. */
  .formats__grid .format-card.fade-up,
  .formats__grid .format-card.fade-up.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .format-card__image { height: 210px; }
  .format-card__body { padding: 18px 18px 16px; }
  .formats__seo-note { font-size: 0.9rem; }
}

/* ===== HOW IT WORKS ===== */
.howto { background: var(--white); }
.howto__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.howto__grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 8px, transparent 8px, transparent 16px);
}
.howto__step { text-align: center; position: relative; }
.howto__num {
  width: 64px;
  height: 64px;
  background: var(--pink-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--pink);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.howto__step:nth-child(2) .howto__num { background: var(--gold-light); color: #B8760A; }
.howto__step:nth-child(3) .howto__num { background: var(--mint-light); color: #007A60; }
.howto__step:nth-child(4) .howto__num { background: var(--dark); color: var(--white); }
.howto__title { font-weight: 700; font-size: 1.0625rem; margin-bottom: 8px; }
.howto__desc { font-size: 0.875rem; color: var(--gray); line-height: 1.6; }

/* ===== FLAVORS ===== */
.flavors { background: var(--dark); color: var(--white); }
.flavors .section-header .display-lg { color: var(--white); }
.flavors .section-header .body-lg { color: rgba(255,255,255,0.55); }
.flavors__tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.flavors__tab {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.07);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.flavors__tab:hover, .flavors__tab.active {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.flavors__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.flavor-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.flavor-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(243, 111, 130,0.4);
  transform: translateY(-4px);
}
.flavor-card__emoji { font-size: 2.25rem; margin-bottom: 10px; }
.flavor-card__name { font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 4px; }
.flavor-card__type { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.flavor-card--new .flavor-card__name::after {
  content: ' NEW';
  font-size: 0.6rem;
  background: var(--pink);
  color: white;
  padding: 1px 5px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 4px;
}

/* ===== MENU DESSERTS ===== */
.menu-desserts {
  background: var(--dark);
  color: var(--white);
  padding-top: 64px;
  padding-bottom: 72px;
  scroll-margin-top: 96px;
}
.menu-desserts .section-header { margin-bottom: 18px; }
.menu-desserts .section-header .body-lg { color: rgba(255,255,255,0.55); margin-bottom: 0; }
.menu-desserts .section-header .display-lg {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.95;
}
.menu-desserts .section-header .subheading { color: rgba(255,255,255,0.45); }
.menu-desserts__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 14px auto 18px;
  max-width: 980px;
  padding: 0 12px;
  height: 210px;          /* фиксированная высота — блок не «прыгает» при смене вкладки */
}
.menu-desserts__visual-img {
  width: min(100%, 720px);
  height: auto;
  max-height: 105px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 14px 24px rgba(255, 90, 150, 0.14));
}
@media (max-width: 1280px) {
  .menu-desserts { padding-top: 56px; padding-bottom: 64px; }
}
@media (max-width: 768px) {
  .menu-desserts__visual { margin: 10px auto 14px; height: 180px; }
  .menu-desserts__visual-img { max-height: 88px; width: min(100%, 580px); }
}
@media (max-width: 640px) {
  .menu-desserts { padding-top: 44px; padding-bottom: 56px; }
  .menu-desserts .section-header .display-lg {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
    line-height: 1;
  }
  .menu-desserts__visual { margin: 10px auto 14px; height: 165px; }
  .menu-desserts__visual-img { max-height: 78px; width: min(100%, 520px); }
}
@media (max-width: 480px) {
  .menu-desserts__visual { height: 150px; }
  .menu-desserts__visual-img { max-height: 72px; }
}

.menu-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.menu-tab {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.07);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.menu-tab:hover, .menu-tab.active {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-groups {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.menu-groups--3col { grid-template-columns: repeat(3, 1fr); max-width: 900px; margin: 0 auto; }
.menu-groups--1col { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

.menu-group {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: var(--transition);
}
.menu-group:hover { background: rgba(255,255,255,0.08); border-color: rgba(243, 111, 130,0.25); }

.menu-group__title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pink);
  margin-bottom: 14px;
}
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.menu-list li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.78);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.menu-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 900;
}
.menu-note {
  margin-top: 24px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  font-style: italic;
  line-height: 1.6;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== EVENTS ===== */
.events { background: var(--cream); }
.events__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.event-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: default;
  transition: var(--transition);
}
.event-card:hover { transform: scale(1.02); }
.event-card__bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  transition: var(--transition);
  /* real photos */
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.event-card:hover .event-card__bg { transform: scale(1.05); }
/* fallback backgrounds for emoji mode */
.event-card:nth-child(1) .event-card__bg:not(img) { background: linear-gradient(145deg, #FFE8F2, #FFB8D8); }
.event-card:nth-child(2) .event-card__bg:not(img) { background: linear-gradient(145deg, #FFF3DC, #FFD89A); }
.event-card:nth-child(3) .event-card__bg:not(img) { background: linear-gradient(145deg, #D6F7F0, #90EDD8); }
.event-card__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  background: linear-gradient(to top, rgba(15,15,17,0.90) 0%, transparent 100%);
  color: var(--white);
}
.event-card__label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.65; margin-bottom: 8px; }
.event-card__title { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.event-card__desc { font-size: 0.875rem; opacity: 0.75; line-height: 1.5; }

.events-more {
  max-width: 980px;
  margin: 34px auto 0;
  text-align: center;
}
.events-more__title {
  margin-bottom: 16px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(20,20,20,0.55);
}
.events-more__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.events-more__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(20,20,20,0.07);
  box-shadow: 0 10px 30px rgba(40,20,20,0.05);
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(20,20,20,0.78);
}
@media (max-width: 640px) {
  .events-more { margin-top: 24px; }
  .events-more__grid { justify-content: flex-start; }
  .events-more__item { font-size: 0.86rem; padding: 9px 13px; }
}

/* ===== ADD-ONS SECTION ===== */
.add-ons-section {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  padding: 84px 0;
}
.add-ons-section .section-header {
  margin-bottom: 34px;
}
.add-ons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 390px));
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}
.add-on-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,15,17,0.08);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: 0 18px 50px rgba(15,15,17,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.add-on-card:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 111, 130,0.28);
  box-shadow: 0 24px 70px rgba(15,15,17,0.09);
}
.add-on-card--accent {
  background: linear-gradient(135deg, #fff 0%, #fff0f7 100%);
  border-color: rgba(243, 111, 130,0.22);
}
.add-on-card__number {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--pink);
}
.add-on-card__number::after {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  background: rgba(243, 111, 130,0.3);
}
.add-on-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.add-on-card p {
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}
.add-on-card__price {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--pink);
  margin-top: auto;
}

/* ── Branding showcase ───────────────────────────── */
.branding-showcase {
  max-width: 1180px;
  margin: 34px auto 0;
  padding: 32px;
  border-radius: 34px;
  background: radial-gradient(circle at 85% 20%, rgba(231,51,120,0.10), transparent 38%), #fff;
  border: 1px solid rgba(20,20,20,0.07);
  box-shadow: 0 24px 70px rgba(40,20,20,0.08);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 30px;
  align-items: center;
}
.branding-showcase__eyebrow {
  color: #F36F82;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 10px;
}
.branding-showcase__title {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1.1;
  margin: 0 0 14px;
}
.branding-showcase__text {
  color: rgba(20,20,20,0.68);
  line-height: 1.65;
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.branding-showcase__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.branding-showcase__tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff1f6;
  color: #d92f72;
  font-size: 0.82rem;
  font-weight: 700;
}
.branding-showcase__footer {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.branding-showcase__price {
  font-size: 1.5rem;
  font-weight: 900;
  color: #F36F82;
}
.branding-showcase__gallery-wrap { min-width: 0; }
.branding-showcase__main-figure {
  margin: 0 0 20px;
  text-align: center;
  padding: 8px 0;
}
.branding-showcase__main-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: inline-block;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.18));
}
@media (max-width: 640px) {
  .branding-showcase__main-img { max-width: 260px; }
}
.branding-showcase__gallery-label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(20,20,20,0.45);
  margin-bottom: 12px;
}
.branding-gallery {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(231,51,120,0.3) transparent;
}
.branding-gallery__item {
  min-width: 260px;
  max-width: 300px;
  scroll-snap-align: start;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 40px rgba(40,20,20,0.10);
  border: 1px solid rgba(20,20,20,0.06);
  flex-shrink: 0;
}
.branding-gallery__item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}
.branding-gallery__item--photo {
  min-width: 280px;
  max-width: 300px;
}
.branding-gallery__item--photo img { height: 210px; }
.branding-gallery__item figcaption {
  padding: 11px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(20,20,20,0.75);
}
.branding-gallery__note {
  margin-top: 10px;
  font-size: 0.82rem;
  color: rgba(20,20,20,0.45);
  font-style: italic;
}
@media (max-width: 1024px) {
  .add-ons-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); justify-content: stretch; }
  .branding-showcase { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .add-ons-section { padding: 52px 0; }
  .add-ons-grid { grid-template-columns: 1fr; }
  .branding-showcase { padding: 24px; border-radius: 28px; margin-top: 24px; }
  .branding-gallery__item { min-width: 240px; }
  .branding-gallery__item img { height: 165px; }
  .branding-gallery__item--photo img { height: 180px; }
}

/* ===== CL SERVING ===== */
.cl-serving-section {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  padding: 96px 0;
}
.cl-serving {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 56px;
  align-items: center;
}
.cl-serving__content > p:not(.subheading) {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 620px;
  margin-top: 18px;
}
.cl-serving__features {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}
.cl-serving__feature {
  padding: 20px 22px;
  border: 1px solid rgba(15,15,17,0.08);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.86);
  box-shadow: 0 18px 48px rgba(15,15,17,0.05);
}
.cl-serving__feature span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #d90012;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.cl-serving__feature span::after {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(217,0,18,0.3);
}
.cl-serving__feature strong {
  display: block;
  font-size: 1rem;
  font-weight: 850;
  color: var(--black);
  margin-bottom: 6px;
}
.cl-serving__feature p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}
.cl-serving__visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 26px 80px rgba(15,15,17,0.08);
}
.cl-serving__visual::before {
  content: "";
  position: absolute;
  inset: auto 10% -18% 10%;
  height: 140px;
  background: radial-gradient(circle, rgba(243, 111, 130,0.16), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.cl-serving__visual img {
  width: 100%;
  display: block;
  object-fit: cover;
}
@media (max-width: 980px) {
  .cl-serving {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .cl-serving__content {
    text-align: center;
  }
  .cl-serving__content > p:not(.subheading) {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 640px) {
  .cl-serving-section {
    padding: 64px 0;
  }
  .cl-serving__feature {
    padding: 18px;
  }
}

/* ===== GALLERY ===== */
.gallery { background: var(--white); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  aspect-ratio: 1;
  transition: var(--transition);
  cursor: pointer;
}
.gallery__item:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }
.gallery__item--wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery__item--tall { grid-row: span 2; aspect-ratio: auto; }
.gallery__item:nth-child(2) { background: var(--gold-light); }
.gallery__item:nth-child(3) { background: var(--mint-light); }
.gallery__item:nth-child(4) { background: linear-gradient(135deg, #F0E6FF, #E0C8FF); }
.gallery__item:nth-child(5) { background: linear-gradient(135deg, #FFE8D6, #FFD0B0); }
.gallery__item:nth-child(6) { background: linear-gradient(135deg, #E8F4FF, #C8E8FF); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--dark-2); color: var(--white); overflow: hidden; }
.testimonials .section-header .display-lg { color: var(--white); }
.testimonials .section-header .subheading { color: rgba(255,255,255,0.45); }
.testimonials .section-header .body-lg { color: rgba(255,255,255,0.55); }

.testimonials__stats {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px auto 44px;
  max-width: 680px;
}
.testimonials__stat {
  min-width: 150px;
  flex: 1;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  text-align: center;
}
.testimonials__stat-value {
  font-size: 1.45rem;
  font-weight: 900;
  color: #fff;
}
.testimonials__stat-label {
  margin-top: 4px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.50);
}

.testimonials-slider {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}
.testimonials-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 18px;
  scrollbar-width: thin;
  scrollbar-color: rgba(243, 111, 130,0.35) transparent;
}
.testimonial-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  min-height: 320px;
  padding: 36px;
  border-radius: 34px;
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 70px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease;
}
.testimonial-card:hover { border-color: rgba(243, 111, 130,0.30); }
.testimonial-card__stars {
  color: #ffb12b;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.testimonial-card__text {
  font-size: 1.02rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.78);
  font-style: italic;
  flex: 1;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}
.testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #F36F82;
  color: #fff;
  font-weight: 900;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 800; color: #fff; font-size: 0.95rem; }
.testimonial-card__event { margin-top: 3px; font-size: 0.85rem; color: rgba(255,255,255,0.45); }

.testimonials-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}
.testimonials-control {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.testimonials-control:hover {
  background: #F36F82;
  border-color: #F36F82;
}

@media (max-width: 768px) {
  .testimonial-card { flex: 0 0 82vw; min-height: auto; padding: 28px; }
  .testimonials__stats { margin-bottom: 32px; }
}
@media (max-width: 480px) {
  .testimonial-card { flex: 0 0 88vw; padding: 24px; }
  .testimonial-card__text { font-size: 0.97rem; }
  .testimonials__stat { min-width: 120px; }
  .testimonials__stat-value { font-size: 1.2rem; }
}

/* ===== FAQ ===== */
.faq { background: var(--cream); }
.faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.faq__item.open { border-color: var(--pink-light); }
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  font-weight: 600;
  font-size: 1.0rem;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  gap: 16px;
}
.faq__question:hover { color: var(--pink); }
.faq__icon {
  width: 28px;
  height: 28px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--gray);
}
.faq__item.open .faq__icon { background: var(--pink); color: var(--white); transform: rotate(45deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq__answer-inner { padding: 0 24px 22px; font-size: 0.9375rem; color: var(--gray); line-height: 1.7; }
.faq__item.open .faq__answer { max-height: 300px; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--pink) 0%, #FF6BA8 50%, var(--gold) 100%);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section__inner { position: relative; z-index: 1; }
.cta-section .display-lg { color: var(--white); margin-bottom: 16px; }
.cta-section .body-lg { color: rgba(255,255,255,0.8); margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-section .btn-cta-white {
  background: var(--white);
  color: var(--pink);
  font-weight: 700;
  padding: 18px 40px;
  border-radius: var(--radius-full);
  font-size: 1.0625rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transition: var(--transition);
  display: inline-block;
}
.cta-section .btn-cta-white:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,0.2); }
.cta-section__contact {
  margin-top: 24px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
}
.cta-section__contact a { color: white; font-weight: 700; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 40px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand { }
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.footer__logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
.footer__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--pink);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.footer__desc { font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; max-width: 280px; }
.footer__social { display: flex; gap: 10px; }
.footer__social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
}
.footer__social-link:hover { background: var(--pink); color: var(--white); }
.footer__col-title { font-weight: 700; font-size: 0.875rem; color: var(--white); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 20px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link { font-size: 0.9rem; transition: var(--transition); }
.footer__link:hover { color: var(--white); }
.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.9rem; }
.footer__contact-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  font-size: 0.8125rem;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bottom a { color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer__bottom a:hover { color: var(--white); }
.footer__legal-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  padding: 14px 0 10px;
  line-height: 1.6;
}

/* ===== INNER PAGE HERO ===== */
.page-hero {
  background: linear-gradient(160deg, #FFF0F7, #FFF8F5);
  padding: 120px 0 80px;
  text-align: center;
}
.page-hero .subheading { margin-bottom: 12px; }
.page-hero .display-lg { margin-bottom: 16px; }
.page-hero .body-lg { color: var(--gray); max-width: 560px; margin: 0 auto; }

/* ===== MENU HERO (видео-карточка) ===== */
.menu-hero {
  padding: 120px 0 40px;
  background: radial-gradient(circle at 18% 0%, rgba(243, 111, 130, 0.08), transparent 36%),
              linear-gradient(160deg, #FFF0F7, #FFF8F5);
}
.menu-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.82fr);
  gap: 52px;
  align-items: center;
}
.menu-hero__content { max-width: 760px; }
.menu-hero__desc {
  max-width: 680px;
  margin-top: 22px;
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(20, 20, 20, 0.62);
}
.menu-hero__video-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  height: 380px;
  background: #fff;
  border: 1px solid rgba(243, 111, 130, 0.16);
  box-shadow: 0 28px 80px rgba(243, 111, 130, 0.14);
}
.menu-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.menu-hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,240,247,0.16)),
              linear-gradient(90deg, rgba(255,255,255,0.18), rgba(255,255,255,0));
  pointer-events: none;
}
.menu-hero__video-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.88rem;
  font-weight: 700;
  color: #222;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
@media (max-width: 900px) {
  .menu-hero { padding: 96px 0 32px; }
  .menu-hero__inner { grid-template-columns: 1fr; gap: 28px; }
  .menu-hero__content { max-width: none; text-align: center; }
  .menu-hero__video-card { height: 260px; border-radius: 26px; }
  .menu-catalog-section { padding-top: 0; }
}
@media (max-width: 520px) {
  .menu-hero { padding: 84px 0 24px; }
  .menu-hero__desc { font-size: 1.02rem; margin-top: 16px; }
  .menu-hero__video-card { height: 220px; border-radius: 22px; }
  .menu-hero__video-caption { left: 12px; bottom: 12px; font-size: 0.78rem; padding: 8px 12px; }
  .menu-catalog-section { padding-top: 0; }
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.contact-card__icon { font-size: 2rem; margin-bottom: 12px; }
.contact-card__title { font-weight: 700; font-size: 1.0625rem; margin-bottom: 4px; }
.contact-card__value { font-size: 1.125rem; font-weight: 700; color: var(--pink); margin-bottom: 4px; }
.contact-card__note { font-size: 0.875rem; color: var(--gray); }
.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; font-size: 0.875rem; margin-bottom: 8px; color: var(--dark-2); }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(243, 111, 130,0.08);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 16px; background: var(--pink); color: white; border-radius: var(--radius-full); font-weight: 700; font-size: 1rem; cursor: pointer; transition: var(--transition); border: none; }
.form-submit:hover { background: var(--pink-hover); transform: translateY(-2px); box-shadow: var(--shadow-pink); }

/* ===== MENU / CATALOG ===== */
.catalog-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 28px auto 44px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.catalog-filter::-webkit-scrollbar { display: none; }
.catalog-filter__btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  border: 1.5px solid var(--border);
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}
.catalog-filter__btn:hover, .catalog-filter__btn.active {
  border-color: var(--pink);
  color: var(--pink);
  background: var(--pink-pale);
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.catalog-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}
.catalog-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--pink-light); }
.catalog-item__img {
  aspect-ratio: 1;
  background: var(--pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.catalog-item:nth-child(2) .catalog-item__img { background: var(--gold-light); }
.catalog-item:nth-child(3) .catalog-item__img { background: var(--mint-light); }
.catalog-item:nth-child(4) .catalog-item__img { background: linear-gradient(135deg, #F0E6FF, #E0C8FF); }
.catalog-item:nth-child(5) .catalog-item__img { background: linear-gradient(135deg, #FFE8D6, #FFD0B0); }
.catalog-item:nth-child(6) .catalog-item__img { background: linear-gradient(135deg, #E8F4FF, #C8E8FF); }
.catalog-item:nth-child(7) .catalog-item__img { background: linear-gradient(135deg, #E8FFE8, #C8ECC8); }
.catalog-item:nth-child(8) .catalog-item__img { background: linear-gradient(135deg, #FFF8D6, #FFEEB0); }
.catalog-item__body { padding: 16px; }
.catalog-item__name { font-weight: 700; font-size: 0.9375rem; margin-bottom: 4px; }
.catalog-item__type { font-size: 0.8125rem; color: var(--gray); }
.catalog-item__tags { display: flex; gap: 4px; margin-top: 10px; flex-wrap: wrap; }
.catalog-item__tag {
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

/* ===== MENU CATALOG GRID & CARDS ===== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.menu-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius-xl);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(243, 111, 130, 0.13);
  border-color: rgba(243, 111, 130, 0.22);
}
.menu-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 175px;
  min-height: 175px;
  padding: 10px 18px;
  background: var(--cream);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.menu-card__media--emoji { font-size: 4rem; }
.menu-card__media--photo {
  padding: 0;
}
.menu-card__media--photo img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  display: block;
}
/* Вырезанные PNG-продукты на прозрачном фоне */
.menu-card__media--cutout {
  height: 165px;
  min-height: 165px;
  padding: 12px 16px;
  background: var(--cream);
}
.menu-card__media--cutout img {
  width: 100%;
  height: 141px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.13));
}
.menu-card__image {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 155px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
/* Точечное визуальное увеличение для портретных PNG (2:3),
   которые при contain выглядят уже квадратных */
.menu-card__image--boost { transform: scale(1.12); transform-origin: center; }
.menu-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 10px 14px 14px;
}
.menu-card__name {
  font-weight: 800;
  font-size: 0.9375rem;
  color: var(--dark);
  margin-bottom: 4px;
  min-height: 30px;
  display: flex;
  align-items: center;
  line-height: 1.25;
}
.menu-card__type { font-size: 0.8rem; color: var(--gray); }
.menu-card__desc {
  font-size: 0.8rem;
  color: rgba(20,20,20,0.58);
  line-height: 1.5;
  margin-top: 6px;
  flex: 1;
}
.menu-card__badge {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  width: fit-content;
}
.menu-card__badge--brand { background: rgba(20,20,20,0.07); color: rgba(20,20,20,0.60); }
@media (max-width: 1024px) { .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px)  {
  .menu-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
  .menu-card__media {
    height: 84px;
    min-height: 84px;
    padding: 6px 8px;
  }
  .menu-card__media--cutout { height: 84px; min-height: 84px; padding: 6px 8px; }
  .menu-card__media--cutout img { height: 66px; }
  .menu-card__image { max-height: 72px; }
  .menu-card__media--photo img { height: 84px; }
  .menu-card__media--emoji { font-size: 2.1rem; }
  .menu-card__body { padding: 8px 8px 10px; }
  .menu-card__name {
    font-size: 0.74rem;
    min-height: 0;
    line-height: 1.2;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .menu-card__type { display: none; }
  .menu-card__desc { display: none; }
  .menu-card__badge { font-size: 0.62rem; padding: 2px 7px; margin-top: 5px; }
  .menu-card__status { top: 4px; left: 4px; font-size: 0.56rem; padding: 2px 6px; }
}


/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--featured { grid-row: span 1; }
  .flavors__grid { grid-template-columns: repeat(4, 1fr); }
  .menu-groups { grid-template-columns: repeat(2, 1fr); }
  .menu-groups--3col { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .footer__inner { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .section { padding: 64px 0; }
  .section--lg { padding: 80px 0; }
  .nav__links, .nav__actions .btn { display: none; }
  .nav__phone { font-size: 0.875rem; }
  .nav__burger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero__desc { margin: 0 auto 32px; }
  .hero__actions { justify-content: center; }
  .hero__badges { justify-content: center; }
  .hero__floating { display: none; }
  .hero__main-card { padding: 0; }
  .hero__main-img { width: 70%; }
  .hero__visual { max-width: 440px; margin: 0 auto; }
  .services__grid { grid-template-columns: 1fr; }
  .howto__grid { grid-template-columns: repeat(2, 1fr); }
  .howto__grid::before { display: none; }
  .flavors__grid { grid-template-columns: repeat(3, 1fr); }
  .menu-groups { grid-template-columns: repeat(2, 1fr); }
  .menu-groups--3col { grid-template-columns: 1fr; max-width: 100%; }
  .menu-groups--1col { max-width: 100%; }
  .events__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 1; aspect-ratio: 1; }
  .gallery__item--tall { grid-row: span 1; }
  /* testimonials now use horizontal scroll — no grid override needed */
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .format-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .howto__grid { grid-template-columns: 1fr; }
  .flavors__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__inner { flex-direction: column; gap: 16px; }
  .trust__logos { gap: 24px; }
  .included-grid { grid-template-columns: 1fr; }
  .format-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   MOBILE AUDIT (≤640) — компактно, дорого, без переполнения
   ============================================================ */
@media (max-width: 640px) {
  /* Header: длинный телефон убран (доступен в меню-CTA и футере) */
  .nav__phone { display: none; }
  .nav__mobile-cta { width: 100%; justify-content: center; margin-top: 14px; }

  /* Вертикальный ритм */
  .section { padding: 56px 0; }
  .section--lg { padding: 64px 0; }
  .section--sm { padding: 44px 0; }
  .section-header { margin-bottom: 26px; }

  /* Типографика */
  .display-xl { font-size: clamp(2.1rem, 9vw, 2.8rem); line-height: 1.04; }
  .display-lg { font-size: clamp(1.8rem, 7.6vw, 2.4rem); line-height: 1.08; }
  .display-md { font-size: clamp(1.6rem, 6.8vw, 2.1rem); line-height: 1.1; }
  .body-lg { font-size: 1rem; line-height: 1.6; }

  /* Hero — крупная тележка как главный акцент первого экрана.
     Порядок на мобиле: заголовок → оффер → большая тележка → CTA → бейджи
     (перестановка через display:contents, десктоп не затрагивается). */
  .hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 22px 0 42px;
    gap: 0;
  }
  .hero__content { display: contents; }
  .hero__tag    { order: 1; margin-bottom: 14px; }
  .hero__title  { order: 2; margin-bottom: 14px; }
  .hero__desc   { order: 3; font-size: 1rem; line-height: 1.6; margin: 0 auto 4px; }
  .hero__visual { order: 4; }
  .hero__actions {
    order: 5;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    margin: 24px 0 0;
  }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__badges { order: 6; justify-content: center; margin-top: 16px; }

  /* Тележка — крупная вырезка на прозрачном фоне, «парит» на светлой странице.
     Никакого чёрного прямоугольника: только мягкая тень под тележкой и
     деликатное розовое свечение-подложка, чтобы объект отделялся от фона. */
  .hero__visual {
    position: relative;
    width: 100%;
    max-width: min(92vw, 400px);
    min-height: 0;
    margin: 8px auto 0;
    display: flex;
    justify-content: center;
  }
  /* Светлая пастельная подложка-«пятно» за тележкой: тёплый крем + нежно-розовый.
     Даёт праздничный премиум-акцент и отделяет объект от фона — без тёмных тонов. */
  .hero__visual::before {
    display: block;
    content: "";
    position: absolute;
    inset: -2% -4% 4% -4%;
    background:
      radial-gradient(58% 52% at 50% 42%, rgba(243,111,130,0.16), transparent 70%),
      radial-gradient(72% 60% at 50% 60%, rgba(255,221,229,0.55), transparent 72%);
    filter: blur(4px);
    z-index: 0;
    pointer-events: none;
  }
  /* мягкая «земляная» тень-эллипс под колёсами — тележка стоит, а не висит */
  .hero__visual::after {
    display: block;
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4%;
    width: 62%;
    height: 22px;
    transform: translateX(-50%);
    background: radial-gradient(closest-side, rgba(80,45,35,0.18), transparent);
    filter: blur(7px);
    z-index: 0;
    pointer-events: none;
  }
  .hero__main-card {
    width: 100%;
    padding: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    position: relative;
    z-index: 1;
  }
  .hero__photo { width: 100%; margin: 0; }
  .hero__photo img {
    width: min(100%, 360px);
    max-width: 100%;
    max-height: none;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    filter: drop-shadow(0 22px 30px rgba(80,45,35,0.20)) drop-shadow(0 4px 10px rgba(0,0,0,0.10));
  }

  /* Карточки и баннер cookie — компактнее */
  .format-card__image { height: 200px; }
  .cookie-banner { padding: 16px; gap: 12px; }
  .cookie-banner__text { font-size: 0.82rem; min-width: 0; }
}

/* ===================================
   TRUST BRANDS — Акцентный блок брендов
   =================================== */
.trust-brands {
  background: var(--dark);
  padding: 48px 0;
}
.trust-brands__header {
  text-align: center;
  margin-bottom: 32px;
}
.trust-brands__label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}
.trust-brands__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.trust-brand-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}
.trust-brand-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}
.trust-brand-card--accent {
  background: rgba(243, 111, 130,0.12);
  border-color: rgba(243, 111, 130,0.3);
}
.trust-brand-card--accent:hover {
  background: rgba(243, 111, 130,0.2);
}
.trust-brand-card__icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.trust-brand-card__name {
  font-weight: 800;
  font-size: 1rem;
  color: white;
  margin-bottom: 6px;
}
.trust-brand-card__desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.trust-brands__footer {
  text-align: center;
  margin-top: 24px;
}
.trust-brands__cert {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 1024px) {
  .trust-brands__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .trust-brands__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 360px) {
  .trust-brands__grid { grid-template-columns: 1fr; }
}

/* ===================================
   BRANDING CALLOUT — на карточках услуг
   =================================== */
.branding-callout {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 100%);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.branding-callout__title {
  font-size: 1.125rem;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
}
.branding-callout__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 12px;
}
.branding-callout__points {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.branding-callout__point {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 6px;
}
.branding-callout__point::before {
  content: '✓';
  color: var(--mint);
  font-size: 0.75rem;
}
.branding-callout__price {
  text-align: center;
  flex-shrink: 0;
}
.branding-callout__price-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--pink);
  white-space: nowrap;
}
.branding-callout__price-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}
@media (max-width: 600px) {
  .branding-callout { grid-template-columns: 1fr; }
  .branding-callout__price { text-align: left; }
}

/* ===================================
   INCLUDED BAR — мороженщик + доставка
   =================================== */
.included-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 16px 0;
}
.included-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--mint-light);
  color: #007A60;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ===================================
   SERVICE CARD — cart button
   =================================== */
.service-card__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* ===================================
   MENU SECTION INFO
   =================================== */
.menu-section-info {
  display: none;
  margin-bottom: 24px;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid rgba(15,15,17,0.08);
  border-radius: 24px;
}
.menu-section-info.active { display: block; }
.menu-section-info__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.menu-section-info__title {
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.2;
}
.menu-section-info__desc {
  font-size: 0.875rem;
  color: rgba(15,15,17,0.6);
  line-height: 1.6;
}
.menu-section-info__serve-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(15,15,17,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.menu-section-info__serve-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.menu-section-info__tag {
  font-size: 0.78rem;
  padding: 5px 12px;
  background: var(--cream);
  border: 1px solid rgba(15,15,17,0.1);
  border-radius: 999px;
  color: var(--dark);
  font-weight: 500;
}
@media (max-width: 768px) {
  .menu-section-info { padding: 20px; }
  .menu-section-info__body { grid-template-columns: 1fr; gap: 16px; }
  .menu-section-info__title { font-size: 1.125rem; }
}

/* ===================================
   MENU SUBFILTER BAR
   =================================== */
.menu-subfilter {
  display: none;
  flex-wrap: nowrap;
  gap: 6px;
  margin-bottom: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.menu-subfilter::-webkit-scrollbar { display: none; }
.menu-subfilter.active { display: flex; }
.menu-subfilter__btn {
  flex-shrink: 0;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.8125rem;
  border: 1.5px solid rgba(15,15,17,0.12);
  color: rgba(15,15,17,0.5);
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--white);
  white-space: nowrap;
}
.menu-subfilter__btn:hover {
  border-color: var(--pink);
  color: var(--pink);
}
.menu-subfilter__btn.active {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(243, 111, 130,0.06);
}

/* Placeholder для карточек без фото */
.menu-card__placeholder {
  width: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(243, 111, 130,0.08), rgba(255,248,245,0.95));
  color: var(--gray);
  font-weight: 700;
  text-align: center;
}
.menu-card__placeholder-icon { font-size: 2.5rem; line-height: 1; }
.menu-card__placeholder-text { font-size: 0.82rem; color: var(--gray); }

/* ===================================
   SERVE SHOWCASE — «Как подаём» (menu.html)
   =================================== */
.menu-catalog-section {
  padding-top: 0;
}
/* ── SERVE SHOWCASE ──────────────────────────────────────────────── */
.serve-showcase {
  margin: 0 0 44px;
  padding: 48px 0 34px;
}

/* 1. Header */
.serve-showcase__header {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}
.serve-showcase__eyebrow {
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
  background: var(--pink-pale);
  border: 1px solid rgba(243, 111, 130,0.2);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 14px;
}
.serve-showcase__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--dark);
  margin: 0 0 14px;
}
.serve-showcase__text {
  font-size: 0.975rem;
  color: var(--gray);
  line-height: 1.75;
  margin: 0 auto;
  max-width: 640px;
}

/* 2. Marquee — центральная лента */
.serve-showcase__marquee-wrap {
  max-width: 900px;
  margin: 18px auto 34px;
  overflow: hidden;
}
.serve-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 8px 0 12px;
}
.serve-marquee::before,
.serve-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.serve-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--cream), transparent);
}
.serve-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--cream), transparent);
}
.serve-marquee__track {
  display: flex;
  width: max-content;
  animation: serveMarquee 18s linear infinite;
  will-change: transform;
}
.serve-marquee__track:hover {
  animation-play-state: paused;
}
.serve-marquee__group {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  flex-shrink: 0;
}
.serve-marquee__img {
  width: clamp(220px, 18vw, 320px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(15,15,17,0.12));
}
@keyframes serveMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Бегущая строка форматов подачи (плашки) — та же CSS-механика, что у serve-marquee */
.serve-formats-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 16px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.serve-formats-marquee__track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: serveFormatsMarquee 34s linear infinite;
  will-change: transform;
}
.serve-formats-marquee__track:hover { animation-play-state: paused; }
.serve-formats-marquee__group {
  display: flex;
  flex-wrap: nowrap;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  padding-right: 12px;
}
.serve-format-pill {
  flex: 0 0 auto;
  white-space: nowrap;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: 0 6px 18px rgba(15,15,17,0.05);
}
.serve-format-pill--accent {
  background: var(--pink-light);
  border-color: rgba(243, 111, 130, 0.28);
  color: var(--pink-hover);
}
@keyframes serveFormatsMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .serve-formats-marquee__track { animation: none; }
}
@media (max-width: 640px) {
  .serve-formats-marquee { margin-top: 12px; }
  .serve-formats-marquee__track { animation-duration: 28s; }
  .serve-formats-marquee__group { gap: 9px; padding-right: 9px; }
  .serve-format-pill { padding: 9px 15px; font-size: 0.82rem; }
}

/* 3. Bottom — 2 колонки */
.serve-showcase__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 42px;
  align-items: center;
}
.serve-showcase__bottom > * { min-width: 0; }

/* Теги */
.serve-showcase__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.serve-showcase__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 13px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
}

/* Карточки */
.serve-showcase__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.serve-showcase__card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 16px 20px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.serve-showcase__card:hover {
  border-color: rgba(243, 111, 130,0.3);
  transform: translateY(-2px);
}
.serve-showcase__card-icon {
  font-size: 1.5rem;
  margin-bottom: 9px;
  display: block;
}
.serve-showcase__card-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 6px;
}
.serve-showcase__card-text {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* Правая колонка — фото/слайдшоу */
.serve-showcase__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: 100%;
}

/* Slideshow */
.serve-slides {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--cream);
}
.serve-slides__item {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  animation: serveFade 20s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
.serve-slides__item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.serve-slides__item--1 { animation-delay: 0s; }
.serve-slides__item--2 { animation-delay: 4s; }
.serve-slides__item--3 { animation-delay: 8s; }
.serve-slides__item--4 { animation-delay: 12s; }
.serve-slides__item--5 { animation-delay: 16s; }
@keyframes serveFade {
  0%, 100% { opacity: 0; }
  4%        { opacity: 1; }
  16%       { opacity: 1; }
  20%       { opacity: 0; }
}

/* Responsive */
@media (max-width: 900px) {
  .serve-showcase__bottom {
    grid-template-columns: 1fr;
  }
  .serve-showcase__photo {
    order: -1;
  }
  .serve-showcase__cards {
    grid-template-columns: 1fr;
  }
  .serve-marquee__img { width: 230px; }
  .serve-marquee__group { gap: 20px; padding-right: 20px; }
  .serve-slides { height: 220px; }
}
@media (max-width: 640px) {
  .serve-showcase { padding: 36px 0 28px; }
  .serve-showcase__title { font-size: 1.6rem; }
  .serve-marquee__img { width: 220px; }
  .serve-marquee__group { gap: 18px; padding-right: 18px; }
  .serve-slides { height: 180px; border-radius: 14px; }

  /* Теги "Вафельные рожки / Стаканчики..." — одна строка со скроллом */
  .serve-showcase__tags {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }
  .serve-showcase__tags::-webkit-scrollbar { display: none; }
  .serve-showcase__tag { flex: 0 0 auto; white-space: nowrap; }
}

/* ══════════════════════════════════════════════════════════════
   DOCUMENTS TRUST BLOCK (index.html)
══════════════════════════════════════════════════════════════ */
.documents-trust {
  background: #fff;
}
.documents-trust__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}
.documents-trust__text {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  margin-top: 14px;
}
.documents-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.documents-trust__card {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.documents-trust__card:hover {
  border-color: rgba(243, 111, 130,0.3);
  box-shadow: 0 8px 28px rgba(243, 111, 130,0.08);
}
.documents-trust__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.documents-trust__icon {
  font-size: 1.8rem;
  line-height: 1;
}
.documents-trust__badges {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.documents-trust__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 3px 9px;
}
.documents-trust__badge--eac {
  background: rgba(25,110,70,0.1);
  color: #196e46;
}
.documents-trust__badge--pdf {
  background: rgba(220,38,38,0.1);
  color: #b91c1c;
}
.documents-trust__badge--req {
  background: rgba(243, 111, 130,0.1);
  color: var(--pink);
}
.documents-trust__title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin: 0;
}
.documents-trust__meta {
  font-size: 0.8rem;
  color: var(--gray);
  margin: 0;
  flex: 1;
}
.documents-trust__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--pink);
  text-decoration: none;
  margin-top: 8px;
  transition: opacity 0.2s;
}
.documents-trust__link:hover {
  opacity: 0.75;
}
.documents-trust__footer {
  text-align: center;
}

/* btn-outline */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border: 2px solid var(--pink);
  border-radius: 999px;
  color: var(--pink);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: var(--pink);
  color: #fff;
}

/* ══════════════════════════════════════════════════════════════
   MENU TRUST BANNER (menu.html)
══════════════════════════════════════════════════════════════ */
.menu-trust-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(25,110,70,0.06);
  border: 1.5px solid rgba(25,110,70,0.18);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.menu-trust-banner__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.menu-trust-banner__text {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
  margin: 0;
}
.menu-trust-banner__link {
  font-size: 0.82rem;
  font-weight: 700;
  color: #196e46;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.menu-trust-banner__link:hover {
  opacity: 0.7;
}

/* ══════════════════════════════════════════════════════════════
   DOCUMENTS PAGE (documents.html)
══════════════════════════════════════════════════════════════ */
.documents-page {
  padding: 100px 0 60px;
  background: var(--cream);
  min-height: 60vh;
}
.documents-page__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.documents-page__desc {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  margin-top: 16px;
}
.documents-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.document-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.document-card:hover {
  border-color: rgba(243, 111, 130,0.3);
  box-shadow: 0 10px 32px rgba(243, 111, 130,0.08);
}
.document-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.document-card__icon {
  font-size: 2rem;
  line-height: 1;
}
.document-card__badges {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.document-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin: 0 0 4px;
}
.document-card__type {
  font-size: 0.8rem;
  color: var(--gray);
  margin: 0;
}
.document-card__expire {
  font-size: 0.8rem;
  color: #196e46;
  font-weight: 600;
  margin: 0;
  flex: 1;
}
.document-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 10px 18px;
  background: var(--pink);
  color: #fff;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
  width: fit-content;
}
.document-card__btn:hover {
  opacity: 0.85;
}
.documents-page__legal {
  background: rgba(20,20,20,0.04);
  border-left: 3px solid var(--border);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  max-width: 720px;
  margin: 0 auto;
}
.documents-page__legal p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .documents-trust__grid { grid-template-columns: repeat(2, 1fr); }
  .documents-page__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .documents-trust__grid { grid-template-columns: 1fr; }
  .documents-page__grid { grid-template-columns: 1fr; }
  .menu-trust-banner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .documents-page { padding: 80px 0 40px; }
}

/* ============================================================
   WELCOME-ZONE & CANDY-BAR — компактный блок допродажи
   ============================================================ */
.welcome-candy-section {
  padding: 72px 0;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 240, 247, 0.55) 100%);
}

.welcome-candy {
  padding: 34px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 15, 17, 0.08);
  box-shadow: 0 22px 70px rgba(15, 15, 17, 0.06);
}

.welcome-candy__head {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.welcome-candy__head h2 {
  margin-top: 10px;
}

.welcome-candy__head p:not(.subheading) {
  margin: 14px auto 0;
  max-width: 680px;
  color: var(--gray);
  font-size: 1.02rem;
  line-height: 1.65;
}

.welcome-candy__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.welcome-candy__card {
  padding: 22px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(15, 15, 17, 0.07);
  box-shadow: 0 14px 38px rgba(15, 15, 17, 0.045);
}

.welcome-candy__label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(243, 111, 130, 0.09);
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}

.welcome-candy__card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.2;
  color: var(--dark);
}

.welcome-candy__card p {
  margin: 0;
  color: var(--gray);
  font-size: 0.96rem;
  line-height: 1.6;
}

.welcome-candy__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(15, 15, 17, 0.07);
}

.welcome-candy__bottom p {
  margin: 0;
  color: var(--gray);
  font-size: 0.98rem;
  line-height: 1.5;
}

.welcome-candy__bottom .btn {
  flex: 0 0 auto;
}

.welcome-candy__card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: var(--pink);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
}

.welcome-candy__card-link::after {
  content: "→";
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.welcome-candy__card-link:hover::after {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .welcome-candy-section {
    padding: 52px 0;
  }

  .welcome-candy {
    padding: 22px;
    border-radius: 26px;
  }

  .welcome-candy__head {
    margin-bottom: 20px;
  }

  .welcome-candy__head h2 {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
    line-height: 1.05;
  }

  .welcome-candy__head p:not(.subheading) {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .welcome-candy__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .welcome-candy__card {
    padding: 18px;
    border-radius: 20px;
  }

  .welcome-candy__card h3 {
    font-size: 1.08rem;
  }

  .welcome-candy__card p {
    font-size: 0.94rem;
  }

  .welcome-candy__bottom {
    display: grid;
    gap: 14px;
    margin-top: 18px;
    padding-top: 18px;
    text-align: center;
  }

  .welcome-candy__bottom .btn {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .welcome-candy {
    padding: 18px;
  }

  .welcome-candy__card {
    padding: 16px;
  }
}

/* ============================================================
   CONTACT DROPDOWN — кнопка "Связаться" в шапке
   ============================================================ */
.contact-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.contact-dropdown__button {
  min-height: 42px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(243, 111, 130, 0.28);
  transition: background 0.18s, transform 0.18s;
  white-space: nowrap;
}

.contact-dropdown__button:hover { background: var(--pink-hover); transform: translateY(-1px); }

.contact-dropdown__button::after {
  content: " ⌄";
  font-size: 0.85em;
  display: inline;
}

.contact-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 200px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(15, 15, 17, 0.08);
  box-shadow: 0 20px 56px rgba(15, 15, 17, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 150;
}

.contact-dropdown.is-open .contact-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-dropdown__menu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--dark);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.14s, color 0.14s;
}

.contact-dropdown__menu a:hover {
  background: rgba(243, 111, 130, 0.09);
  color: var(--pink);
}

/* Mobile: hide dropdown, show inside burger */
@media (max-width: 768px) {
  .contact-dropdown { display: none; }
}

/* ── Phone number visible in header ─ */
.contact-dropdown--phone {
  gap: 10px;
}

.contact-dropdown__phone {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 4px;
  color: var(--dark);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.18s;
}

.contact-dropdown__phone:hover {
  color: var(--pink);
}

.contact-dropdown__button--small {
  min-height: 42px;
  padding: 0 18px;
}

@media (max-width: 980px) {
  .contact-dropdown__phone {
    display: none;
  }
}

/* ── Mobile contact panel (inside burger menu) ─ */
.mobile-contact-panel {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 15, 17, 0.08);
}

.mobile-contact-panel__title {
  margin: 0 0 2px;
  color: var(--gray);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.mobile-contact-panel a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  background: rgba(243, 111, 130, 0.09);
  color: var(--pink);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.16s;
}

.mobile-contact-panel a:hover { background: rgba(243, 111, 130, 0.16); }

.mobile-contact-panel a:first-of-type {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 10px 28px rgba(243, 111, 130, 0.24);
}

.mobile-contact-panel a:first-of-type:hover { background: var(--pink-hover); }

/* Desktop: hide mobile panel */
@media (min-width: 769px) {
  .mobile-contact-panel { display: none; }
}

/* ============================================================
   PAGE SUBNAV — быстрая навигация по главной
   ============================================================ */
.page-subnav {
  position: sticky;
  top: var(--nav-h);
  z-index: 80;
  background: rgba(255, 248, 250, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 15, 17, 0.06);
}

.page-subnav__scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.page-subnav__scroll::-webkit-scrollbar { display: none; }

.page-subnav__link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 15, 17, 0.08);
  color: var(--dark);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(15, 15, 17, 0.04);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.page-subnav__link:hover {
  transform: translateY(-1px);
  background: #fff;
  border-color: rgba(243, 111, 130, 0.3);
  color: var(--pink);
}

.page-subnav__link--accent {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
  box-shadow: 0 8px 24px rgba(243, 111, 130, 0.28);
}

.page-subnav__link--accent:hover {
  background: var(--pink-hover);
  border-color: var(--pink-hover);
  color: #fff;
  transform: translateY(-1px);
}

.page-subnav__link--active {
  background: rgba(243, 111, 130, 0.1);
  color: var(--pink);
  border-color: rgba(243, 111, 130, 0.28);
}

section[id] { scroll-margin-top: 128px; }

@media (max-width: 768px) {
  .page-subnav { top: var(--nav-h); }

  .page-subnav .container { padding-left: 0; padding-right: 0; }

  .page-subnav__scroll {
    justify-content: flex-start;
    gap: 8px;
    padding: 8px 16px;
  }

  .page-subnav__link {
    min-height: 34px;
    padding: 7px 13px;
    font-size: 0.82rem;
    box-shadow: none;
  }

  section[id] { scroll-margin-top: 108px; }
}

@media (max-width: 390px) {
  .page-subnav__scroll { padding-left: 14px; padding-right: 14px; }
  .page-subnav__link { font-size: 0.78rem; padding: 7px 11px; }
}

/* ============================================================
   Contacts page — methods & socials
   ============================================================ */
.contacts-section {
  background: var(--cream);
}

.contacts-social-card,
.contacts-socials {
  background: #fff;
  border: 1px solid rgba(15,15,17,0.08);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 22px 70px rgba(15,15,17,0.06);
}

.contacts-social-card h2,
.contacts-socials h2 {
  margin: 8px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.08;
  color: var(--dark);
}

.contacts-social-card p:not(.subheading),
.contacts-socials p:not(.subheading) {
  color: var(--gray);
  line-height: 1.65;
  margin: 0 0 24px;
}

.contacts-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contacts-method {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,240,247,0.55);
  border: 1px solid rgba(243, 111, 130,0.10);
  text-decoration: none;
  color: var(--dark);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contacts-method:hover {
  transform: translateY(-2px);
  border-color: rgba(243, 111, 130,0.28);
  box-shadow: 0 14px 34px rgba(15,15,17,0.08);
}

.contacts-method--primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 16px 38px rgba(243, 111, 130,0.22);
}

.contacts-method--primary:hover {
  background: var(--pink-hover);
  border-color: var(--pink-hover);
}

.contacts-method__icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--pink);
  font-weight: 800;
  font-size: 0.8rem;
}

.contacts-method--primary .contacts-method__icon {
  color: var(--pink);
}

.contacts-method strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.2;
}

.contacts-method small {
  display: block;
  margin-top: 4px;
  color: currentColor;
  opacity: 0.72;
  font-size: 0.82rem;
}

.contacts-socials {
  margin-top: 28px;
}

.contacts-socials__head {
  margin-bottom: 20px;
}

.contacts-socials__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contacts-social {
  display: grid;
  gap: 8px;
  padding: 22px;
  min-height: 160px;
  border-radius: 24px;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contacts-social:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(15,15,17,0.14);
}

.contacts-social--instagram {
  background: linear-gradient(135deg, #833AB4 0%, #E1306C 45%, #FCAF45 100%);
}

.contacts-social--vk {
  background: linear-gradient(135deg, #0077FF 0%, #4C9BFF 100%);
}

.contacts-social span {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.86;
}

.contacts-social strong {
  font-size: 1.15rem;
  line-height: 1.25;
  max-width: 260px;
}

.contacts-social small {
  align-self: end;
  font-weight: 700;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .contacts-social-card,
  .contacts-socials {
    padding: 22px;
    border-radius: 24px;
  }

  .contacts-methods,
  .contacts-socials__grid {
    grid-template-columns: 1fr;
  }

  .contacts-method {
    min-height: 74px;
    padding: 14px;
  }

  .contacts-social {
    min-height: 136px;
    padding: 20px;
  }
}

/* ============================================================
   Базовая защита изображений (drag / select)
   ============================================================ */
img,
picture,
video,
.protected-media,
.hero__visual,
.formats__image,
.service-card__image,
.gallery-card,
.cl-hero__visual {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

img {
  pointer-events: auto;
}

/* ── Мороженое: «Временно отсутствует» (управляется из панели) ── */
.menu-card.is-unavailable { opacity: 0.65; }
.menu-card.is-unavailable .menu-card__image { filter: grayscale(0.25) brightness(1.03); }
.menu-card__media { position: relative; }
.menu-card__status {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(31, 36, 48, 0.82);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  pointer-events: none;
}

/* ============================================================
   Главный отзыв клиента (featured review)
   ============================================================ */
.review-featured {
  max-width: 820px;
  margin: 0 auto 40px;
  background: #fff;
  border: 1px solid rgba(243, 111, 130, 0.16);
  border-radius: 28px;
  padding: 40px 44px;
  box-shadow: 0 24px 70px rgba(243, 111, 130, 0.10);
}

.review-featured__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.review-featured__badge {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: 999px;
}

.review-featured__stars {
  color: #F5A623;
  font-size: 1.35rem;
  letter-spacing: 2px;
  line-height: 1;
}

.review-featured__quote {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  line-height: 1.28;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.review-featured__body p {
  margin: 0 0 12px;
  color: var(--gray);
  font-size: 1.02rem;
  line-height: 1.7;
}
.review-featured__body p:last-child { margin-bottom: 0; }

.review-featured__tags {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.review-featured__tags li {
  background: rgba(243, 111, 130, 0.07);
  color: var(--pink);
  border: 1px solid rgba(243, 111, 130, 0.14);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.85rem;
  font-weight: 700;
}

.review-featured__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 15, 17, 0.08);
}
.review-featured__avatar {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.4rem;
}
.review-featured__name { font-weight: 800; color: var(--dark); font-size: 1.05rem; }
.review-featured__sub { color: var(--gray); font-size: 0.9rem; margin-top: 2px; }

@media (max-width: 768px) {
  .review-featured {
    padding: 26px 20px;
    border-radius: 22px;
    margin-bottom: 32px;
  }
  .review-featured__body p { font-size: 0.96rem; }
  .review-featured__stars { font-size: 1.2rem; }
}

/* ============================================================
   Соцсети в футере — брендовые плашки с названиями
   ============================================================ */
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.footer-social:hover {
  transform: translateY(-2px);
  opacity: 0.94;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.footer-social--instagram {
  background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #FCAF45 100%);
}
.footer-social--vk       { background: #0077FF; }
.footer-social--telegram { background: #229ED9; }
.footer-social--whatsapp { background: #25D366; color: #07130b; }

@media (max-width: 768px) {
  .footer-socials { gap: 8px; }
  .footer-social {
    min-height: 36px;
    padding: 0 13px;
    font-size: 0.8rem;
  }
}

/* ============================================================
   Единый вид способов связи: header dropdown + contacts бейджи
   ============================================================ */

/* ── Header dropdown «Связаться» — карточки ── */
.contact-dropdown__menu { min-width: 288px; padding: 10px; border-radius: 22px; }

.contact-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 10px 12px;
  border-radius: 16px;
  text-decoration: none;
  white-space: normal;
  transition: background 0.18s ease, transform 0.18s ease;
}
.contact-menu-item:hover { transform: translateY(-1px); background: rgba(243, 111, 130, 0.07); }

.contact-menu-item__badge {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  flex: 0 0 auto;
  background: var(--pink);
}
.contact-menu-item__body { display: block; min-width: 0; }
.contact-menu-item__body strong { display: block; font-size: 0.95rem; line-height: 1.15; color: var(--dark); }
.contact-menu-item__body small { display: block; margin-top: 3px; font-size: 0.78rem; color: rgba(15, 15, 17, 0.58); }

.contact-menu-item--whatsapp .contact-menu-item__badge { background: #25D366; color: #07130b; }
.contact-menu-item--telegram .contact-menu-item__badge { background: #229ED9; }
.contact-menu-item--max .contact-menu-item__badge { background: linear-gradient(135deg, #6D28D9 0%, #A855F7 100%); }

/* ── contacts.html — брендовые бейджи в карточках связи ── */
.contacts-method--whatsapp .contacts-method__icon { background: #25D366; color: #07130b; }
.contacts-method--telegram .contacts-method__icon { background: #229ED9; color: #fff; }
.contacts-method--max .contacts-method__icon      { background: linear-gradient(135deg, #6D28D9 0%, #A855F7 100%); color: #fff; }
.contacts-method--email .contacts-method__icon    { background: #F36F82; color: #fff; }
.contacts-method--location .contacts-method__icon { background: #111; color: #fff; }

/* ============================================================
   Бренды-производители — бегущая строка (marquee) + листание
   ============================================================ */
.trust-brands__marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.trust-brands__track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: trustBrandsMarquee 32s linear infinite;
  will-change: transform;
}
.trust-brands__track:hover { animation-play-state: paused; }
.trust-brands__group {
  display: flex;
  flex-wrap: nowrap;
  flex: 0 0 auto;
  gap: 16px;
  padding-right: 16px;
}
.trust-brands__group .trust-brand-card {
  flex: 0 0 auto;
  width: 210px;
}
@keyframes trustBrandsMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .trust-brands__track { animation: none; }
}

@media (max-width: 768px) {
  /* Компактная бегущая строка брендов на телефоне */
  .trust-brands { padding: 34px 0; }
  .trust-brands__header { margin-bottom: 22px; }
  .trust-brands__track { animation-duration: 26s; }
  .trust-brands__group { gap: 12px; padding-right: 12px; }
  .trust-brands__group .trust-brand-card { width: 158px; padding: 14px 12px; }
  .trust-brand-card__icon { font-size: 1.6rem; margin-bottom: 6px; }
  .trust-brand-card__name { font-size: 0.9rem; margin-bottom: 4px; }
  .trust-brand-card__desc { font-size: 0.72rem; line-height: 1.4; }

  /* Теги брендинга — компактнее, читаемо */
  .branding-showcase__tags { gap: 6px; margin-bottom: 18px; }
  .branding-showcase__tags span { padding: 5px 10px; font-size: 0.7rem; }
}
