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

/* Убираем синее выделение при нажатии на мобильных */
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

:root {
  --olive: #8B9A6B;
  --olive-dim: rgba(139, 154, 107, 0.4);
  --olive-glow: rgba(139, 154, 107, 0.15);
  --card-bg: rgba(255, 255, 255, 0.06);
  --card-bg-hover: rgba(255, 255, 255, 0.10);
  --text: #F2F0E8;
  --text-dim: rgba(242, 240, 232, 0.6);
  --border: rgba(242, 240, 232, 0.15);
  --border-olive: rgba(139, 154, 107, 0.5);
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  background: #141414;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* GRAIN */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px;
}

/* ══════════════════════════════════
   NAV  — из загруженного файла
══════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  padding-top: calc(14px + env(safe-area-inset-top, 0px));
  padding-left: calc(48px + env(safe-area-inset-left, 0px));
  padding-right: calc(48px + env(safe-area-inset-right, 0px));
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(242, 240, 232, 0.15);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.nav-logo {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 13px;
}

/* links — абсолютно по центру как в оригинале */
.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  padding: 6px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.nav-links a:hover { background: rgba(255,255,255,0.1); }
.nav-links a.active {
  border-color: #8B9A6B;
  background: rgba(139, 154, 107, 0.15);
}

/* location selector */
.location-selector { position: relative; }

.location-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(50, 55, 40, 0.6);
  border: 1.5px solid rgba(139, 154, 107, 0.6);
  border-radius: 30px;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.location-btn::before {
  content: '';
  width: 16px; height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F2F0E8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.location-btn::after {
  content: '▼';
  font-size: 9px;
  transition: transform 0.3s;
  margin-left: 4px;
  opacity: 0.8;
}
.location-btn:hover {
  background: rgba(60,65,50,0.8);
  border-color: #8B9A6B;
  box-shadow: 0 4px 12px rgba(139,154,107,0.3);
}
.location-btn.active { background: rgba(60,65,50,0.9); border-color: #8B9A6B; }
.location-btn.active::after { transform: rotate(180deg); }

.location-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;
  background: rgba(30,30,30,0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(139,154,107,0.3);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.location-dropdown.active { opacity: 1; visibility: visible; transform: translateY(0); }

.location-option {
  padding: 10px 14px;
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}
.location-option:hover { background: rgba(139,154,107,0.2); color: #8B9A6B; }
.location-option.selected { background: rgba(139,154,107,0.15); color: #8B9A6B; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: flex-end;
}

.nav-logo-dot {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
  padding: 8px 18px;
}

/* CTA — белая кнопка как в оригинале */
.nav-cta {
  padding: 12px 32px;
  background: rgba(242, 240, 232, 0.95);
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.nav-cta:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(242,240,232,0.4);
}

/* ══════════════════════════════════
   SECTION BASE
══════════════════════════════════ */
section {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 80px 48px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: clip;
}

/* Fullscreen swipe на мобильных */
@media(max-width: 768px) {
  html {
    overflow: hidden;
    height: 100vh;
    height: 100dvh;
  }
  
  body { 
    overflow-x: hidden;
    overflow-y: scroll;
    height: 100vh;
    height: 100dvh;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  
  section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    padding: 70px 14px 20px 16px;
    padding-right: calc(14px + env(safe-area-inset-right, 0px));
    padding-left: calc(16px + env(safe-area-inset-left, 0px));
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center;
  }
  
  .section-eyebrow {
    margin-bottom: 8px !important;
    font-size: 10px !important;
  }
  
  .section-title {
    margin-bottom: 16px !important;
    font-size: 20px !important;
    line-height: 1.2 !important;
  }
  
  .how-grid {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px !important;
    margin-bottom: 12px !important;
  }
  
  .programs-slider-wrap,
  .boxes-slider-wrap,
  .weekend-slider-wrap,
  .menu-slider-wrap {
    flex: 0 1 auto;
    overflow: clip !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    padding-bottom: 16px !important;
    padding-right: 1px !important;
  }
  
  .programs-dots {
    display: none !important;
  }
  .boxes-dots,
  .weekend-dots,
  .menu-dots {
    margin-top: 7px !important;
  }

  .section-footer {
    margin-top: auto !important;
    padding-top: 12px !important;
    margin-bottom: 0 !important;
    font-size: 11px !important;
  }
  
  /* Меню: заголовок слева на мобильных */
  #menu > div[style] {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    margin-bottom: 8px !important;
  }

  #menu .section-title {
    margin-bottom: 0 !important;
  }
  
  /* Weekend: карточки вертикально друг под другом - компактно */
  .weekend-slider-wrap {
    overflow: visible !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }
  
  .weekend-slider {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    transform: none !important;
    cursor: default !important;
  }
  
  .weekend-slide {
    min-width: 100% !important;
    padding: 0 !important;
  }
  
  .weekend-card {
    padding: 14px 16px !important;
  }
  
  /* Header: title слева, label справа в одну строку */
  .wc-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: baseline !important;
    gap: 8px !important;
    margin-bottom: 2px !important;
  }
  
  .wc-label {
    font-size: 8px !important;
    margin-bottom: 0 !important;
    white-space: nowrap !important;
  }
  
  .wc-title {
    font-size: 14px !important;
    margin-bottom: 0 !important;
  }
  
  .wc-subtitle {
    font-size: 11px !important;
    margin-bottom: 8px !important;
  }
  
  .wc-price {
    font-size: 18px !important;
    margin-bottom: 2px !important;
  }
  
  .wc-period {
    font-size: 10px !important;
    margin-bottom: 8px !important;
  }
  
  .wc-divider {
    margin: 8px 0 !important;
  }
  
  .wc-list {
    gap: 4px !important;
    margin-bottom: 10px !important;
  }
  
  .wc-list li {
    font-size: 11px !important;
    line-height: 1.3 !important;
  }
  
  .wc-btn {
    padding: 8px 18px !important;
    font-size: 10px !important;
  }
  
  .weekend-dots {
    display: none !important;
  }

  /* Order — компактная мобильная версия */
  #order {
    justify-content: center !important;
    padding-top: 56px !important;
    padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px)) !important;
  }
  .order-inner {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    flex: 0 1 auto;
  }
  .order-header {
    flex-shrink: 0;
    margin-bottom: 10px;
  }
  #orderTitle {
    font-size: 20px !important;
    margin-bottom: 6px !important;
  }
  #orderDesc {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }
  #orderDesc br { display: none; }
  .order-form {
    gap: 6px !important;
    background: none !important;
    backdrop-filter: none !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }
  .order-form .form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
  }
  .order-form input,
  .order-form .custom-select-trigger {
    padding: 11px 12px !important;
    font-size: 13px !important;
  }
  .order-form textarea {
    padding: 10px 12px !important;
    font-size: 13px !important;
    min-height: 40px !important;
    resize: none !important;
  }
  .order-form .form-submit {
    padding: 13px !important;
    margin-top: 2px;
  }
  .order-form .form-note {
    font-size: 9px !important;
    margin-bottom: 0 !important;
    line-height: 1.3;
    text-align: center;
  }
  .order-form .cs-dropdown {
    max-height: 45vh !important;
    overflow-y: auto !important;
  }
}

section > * { position: relative; z-index: 1; }
section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1547592180-85f173990554?w=1600&q=60') center/cover no-repeat;
  filter: blur(4px) brightness(0.18) saturate(0.6);
  z-index: -1;
  transform: scale(1.06);
}
section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, #141414 0%, transparent 18%),
    linear-gradient(to top, #141414 0%, transparent 18%);
}
section:last-of-type::after {
  background:
    linear-gradient(to bottom, #141414 0%, transparent 18%);
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.section-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

/* ══════════════════════════════════
   HERO  — из загруженного файла
══════════════════════════════════ */
#hero {
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 48px 60px;
}
#hero::before {
  /* фон из загруженного файла (тот же webp, fallback на unsplash) */
  background: url('70iLCxpCRhyNGpNVnBowLg@2k.webp') center/cover no-repeat,
              url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1600&q=60') center/cover no-repeat;
  filter: blur(3px) brightness(0.22) saturate(0.5);
}

.hero-content { max-width: 900px; }

.hero-logo {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  line-height: 1;
}

.hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-description {
  font-size: clamp(15px, 1.8vw, 19px);
  line-height: 1.65;
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-dim);
}

/* кнопка со свечением из оригинала */
.hero-cta {
  display: inline-block;
  padding: 20px 56px;
  background: #A8B88D;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.4s ease;
  box-shadow: 0 0 25px rgba(168,184,141,0.7), 0 6px 20px rgba(168,184,141,0.5);
  position: relative;
  overflow: hidden;
}
.hero-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}
.hero-cta:hover::before { left: 100%; }
.hero-cta:hover {
  background: #ffffff;
  color: #1a1a1a;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 30px rgba(255,255,255,0.7), 0 10px 30px rgba(255,255,255,0.3);
}

/* ══════════════════════════════════
   CARD
══════════════════════════════════ */
.card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 24px 26px;
  border: 1px solid var(--border);
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}
.card:hover { background: var(--card-bg-hover); border-color: var(--border-olive); transform: translateY(-2px); }
.card h3 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--olive);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.card p { font-size: 13px; line-height: 1.7; color: var(--text-dim); }
.card p strong { color: var(--text); font-weight: 600; }

/* ══════════════════════════════════
   HOW IT WORKS
══════════════════════════════════ */
.how-grid { display: flex; flex-direction: column; gap: 10px; flex: 1; justify-content: center; margin-bottom: 24px; }
.row-plus { display: flex; gap: 12px; align-items: stretch; }
.row-plus .card { flex: 1; position: relative; }
.row-plus .card + .card::before {
  content: '+';
  position: absolute;
  top: 50%; left: -24px;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--olive); color: #141414;
  font-size: 22px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  z-index: 2; line-height: 1; padding-bottom: 2px;
}

/* Мобильная версия */
@media(max-width: 768px) {
  .how-grid { gap: 8px; margin-bottom: 16px; }
  .row-plus { flex-direction: column; gap: 8px; margin-top: 0 !important; }
  .row-plus .card { padding: 16px 18px; }
  .row-plus .card + .card::before { display: none; }
  .card h3 { font-size: 11px; margin-bottom: 8px; padding-bottom: 8px; }
  .card p { font-size: 12px; line-height: 1.6; }
  #how .section-footer { padding-top: 12px; margin-top: 0; }
}

/* ══════════════════════════════════
   PROGRAMS
══════════════════════════════════ */
#programs::before {
  background: url('https://images.unsplash.com/photo-1540189549336-e6e99c3679fe?w=1600&q=60') center/cover no-repeat;
  filter: blur(4px) brightness(0.18) saturate(0.5);
}

/* Programs slider */
.programs-slider-wrap {
  position: relative;
  margin-bottom: 24px;
  overflow: hidden;
  transition: opacity 0.2s ease;
}
.programs-slider {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: grab;
  user-select: none;
}
.programs-slider.grabbing { cursor: grabbing; transition: none; }

.prog-slide {
  min-width: 100%;
  padding: 0 4px;
  box-sizing: border-box;
}

/* Desktop: grid 4 колонки */
@media(min-width: 1025px) { 
  .programs-slider-wrap { overflow: visible; }
  .programs-slider { 
    cursor: default;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .prog-slide { 
    min-width: auto;
    padding: 0;
  }
}
@media(min-width: 641px) and (max-width: 1024px) { 
  .prog-slide { min-width: 50%; }
}

.prog-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(139,154,107,0.4);
  box-shadow: 0 0 20px rgba(139,154,107,0.15), inset 0 0 20px rgba(139,154,107,0.05);
  display: flex; flex-direction: column;
  transition: none;
  position: relative; overflow: hidden;
  height: 100%;
  transform: translateZ(0);
  will-change: transform;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}
@media(min-width: 1025px) {
  .prog-card {
    transition: all 0.3s;
  }
}
.prog-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--olive);
  transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.prog-card:hover { 
  background: var(--card-bg-hover); 
  border-color: var(--border-olive); 
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 32px rgba(139, 154, 107, 0.25);
}
.prog-card:hover::after { transform: scaleX(1); }

/* Отключаем hover на мобильных */
@media(max-width: 1024px) {
  .prog-card:hover {
    transform: none;
    box-shadow: 0 0 20px rgba(139,154,107,0.15), inset 0 0 20px rgba(139,154,107,0.05);
    background: var(--card-bg);
    border-color: rgba(139,154,107,0.4);
  }
  .prog-card:hover::after { transform: scaleX(0); }
}
.prog-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--olive); color: #141414;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 100px;
}
.prog-name { font-family: 'Unbounded', sans-serif; font-size: 20px; font-weight: 800; color: var(--olive); margin-bottom: 6px; }
.prog-subtitle { font-size: 14px; color: var(--text-dim); margin-bottom: 20px; }
.prog-price { font-family: 'Unbounded', sans-serif; font-size: 30px; font-weight: 700; color: var(--text); margin-bottom: 4px; line-height: 1; }
.prog-period { font-size: 12px; color: var(--text-dim); margin-bottom: 24px; }
.prog-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 20px; }
.prog-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.prog-list li { font-size: 13px; color: var(--text-dim); padding-left: 22px; position: relative; line-height: 1.5; }
.prog-list li::before { content: '✓'; position: absolute; left: 0; color: var(--olive); font-weight: 700; }
.prog-list li strong { color: var(--text); }
.prog-btn {
  width: 100%; padding: 14px;
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border); border-radius: 50px;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
}
.prog-btn:hover { background: var(--olive); border-color: var(--olive); color: #141414; }
.prog-card.featured { border-color: var(--border-olive); }
.prog-card.featured .prog-btn { background: var(--olive); border-color: var(--olive); color: #141414; }

/* Programs nav strip */
.prog-nav {
  display: none;
}
@media(max-width: 768px) {
  .prog-nav {
    display: flex;
    gap: 6px;
    margin-bottom: 6px;
    margin-top: auto;
  }
  .prog-nav-item {
    flex: 1;
    padding: 8px 4px;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  }
  .prog-nav-item.active {
    border-color: var(--olive);
    background: rgba(139,154,107,0.15);
    box-shadow: 0 0 12px rgba(139,154,107,0.25), 0 1px 4px rgba(0,0,0,0.2);
  }
  .prog-nav-name {
    display: block;
    font-family: 'Unbounded', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--text);
    transition: color 0.25s;
  }
  .prog-nav-item.active .prog-nav-name {
    color: var(--olive);
  }
  .prog-nav-price {
    display: block;
    font-size: 10px;
    color: var(--text-dim);
    margin-top: 2px;
    opacity: 0.7;
  }
  .prog-nav-item.active .prog-nav-price {
    color: var(--olive);
    opacity: 1;
  }
}
@media(max-width: 390px) {
  .prog-nav { gap: 4px; margin-bottom: 8px; }
  .prog-nav-item { padding: 6px 2px; }
  .prog-nav-name { font-size: 9px; }
  .prog-nav-price { font-size: 8px; }
}
@media(max-width: 320px) {
  .prog-nav-item { padding: 4px 2px; border-radius: 8px; }
  .prog-nav-name { font-size: 8px; }
  .prog-nav-price { display: none; }
}

/* Programs UTP */
.prog-utp {
  display: none;
}
@media(max-width: 768px) {
  .prog-utp {
    display: block;
    text-align: center;
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.04em;
    margin-top: 8px;
    margin-bottom: 0;
  }
}
@media(max-width: 390px) {
  .prog-utp { font-size: 10px; margin-top: 6px; }
}
@media(max-width: 320px) {
  .prog-utp { font-size: 9px; }
}

/* Dots */
.programs-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.programs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
}
.programs-dot.active {
  background: var(--olive);
  transform: scale(1.3);
}
/* Hide dots on desktop */
@media(min-width: 1025px) {
  .programs-dots { display: none; }
}

/* ══════════════════════════════════
   MENU
══════════════════════════════════ */
#menu::before {
  background: url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?w=1600&q=60') center/cover no-repeat;
  filter: blur(4px) brightness(0.18) saturate(0.5);
}
.menu-tabs { display: flex; gap: 4px; background: rgba(255,255,255,0.04); padding: 4px; border-radius: 100px; width: fit-content; }
.tab {
  padding: 9px 22px; border-radius: 100px; border: none;
  background: transparent; color: var(--text-dim);
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all 0.25s;
}
.tab.active { background: var(--olive); color: #141414; font-weight: 700; }

.menu-rotation {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  margin-top: 8px;
  margin-bottom: 0;
  text-align: center;
}
@media(max-width: 768px) {
  .menu-rotation { font-size: 10px; margin-top: 6px; }
}
@media(max-width: 390px) {
  .menu-rotation { font-size: 9px; }
}

/* MENU SLIDER */
.menu-slider-wrap {
  position: relative;
  margin-bottom: 24px;
  overflow: hidden;
  transition: opacity 0.2s ease;
}
.menu-slider {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: grab;
  user-select: none;
}
.menu-slider.grabbing { cursor: grabbing; transition: none; }

.menu-slide {
  min-width: 100%;
  padding: 0 4px;
  box-sizing: border-box;
}
/* Desktop: 5 slides visible */
@media(min-width: 1025px) {
  .menu-slide { min-width: 20%; }
  .menu-slider-wrap { overflow: visible; }
  .menu-slider { cursor: default; }
}
@media(min-width: 641px) and (max-width: 1024px) {
  .menu-slide { min-width: 33.333%; }
}

.menu-day-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: translateZ(0);
  will-change: transform;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}
@media(min-width: 1025px) {
  .menu-day-card {
    transition: all 0.3s;
  }
}
.menu-day-card:hover { 
  border-color: var(--border-olive);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 32px rgba(139, 154, 107, 0.25);
  background: var(--card-bg-hover);
}

/* Отключаем hover на мобильных */
@media(max-width: 1024px) {
  .menu-day-card:hover {
    transform: none;
    box-shadow: none;
    background: var(--card-bg);
    border-color: var(--border);
  }
}

.mdc-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
@media(max-width: 640px) {
  .mdc-img { aspect-ratio: 1/1; height: auto; width: 100%; }
}
.mdc-body { padding: 20px 20px 24px; flex: 1; display: flex; flex-direction: column; }

.mdc-day {
  font-family: 'Unbounded', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.mdc-dish-name {
  font-size: 18px; color: var(--text);
  line-height: 1.4; font-weight: 500;
  margin-bottom: 6px;
}
.mdc-dish-kcal {
  font-size: 13px; color: var(--olive);
  font-weight: 500; margin-bottom: 20px;
}
.mdc-total {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between;
  font-size: 11px;
}
.mdc-total span:first-child { color: var(--text-dim); letter-spacing: 0.08em; text-transform: uppercase; }
.mdc-total span:last-child { color: var(--olive); font-weight: 700; font-family: 'Unbounded', sans-serif; font-size: 13px; }

/* Dots */
.menu-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.menu-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none; cursor: pointer;
  transition: all 0.25s;
  padding: 0;
}
.menu-dot.active { background: var(--olive); transform: scale(1.3); }
/* Hide dots on desktop where all visible */
@media(min-width: 1025px) { .menu-dots { display: none; } }

/* ══════════════════════════════════
   BOXES — slider like menu
══════════════════════════════════ */
.boxes-slider-wrap {
  position: relative;
  margin-bottom: 24px;
  overflow: hidden;
  transition: opacity 0.2s ease;
}
.boxes-slider {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: grab;
  user-select: none;
}
.boxes-slider.grabbing { cursor: grabbing; transition: none; }

.box-slide {
  min-width: 100%;
  padding: 0 4px;
  box-sizing: border-box;
}

/* Desktop: все 6 боксов сразу */
@media(min-width: 1025px) { 
  .box-slide { min-width: 16.666%; }
  .boxes-slider-wrap { overflow: visible; }
  .boxes-slider { cursor: default; }
}
@media(min-width: 641px) and (max-width: 1024px) { .box-slide { min-width: 50%; } }

.box-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; transition: none;
  height: 100%; display: flex; flex-direction: column;
  transform: translateZ(0);
  will-change: transform;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}
@media(min-width: 1025px) {
  .box-card {
    transition: all 0.3s;
  }
}
.box-card:hover { 
  border-color: var(--border-olive); 
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 32px rgba(139, 154, 107, 0.25);
  background: var(--card-bg-hover);
}

/* Отключаем hover на мобильных */
@media(max-width: 1024px) {
  .box-card:hover {
    transform: none;
    box-shadow: none;
    background: var(--card-bg);
    border-color: var(--border);
  }
}

.box-img {
  width: 100%; height: 200px;
  object-fit: cover; display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
@media(max-width: 640px) { .box-img { aspect-ratio: 1/1; height: auto; width: 100%; } }

.box-body { padding: 20px 20px 24px; flex: 1; display: flex; flex-direction: column; }

.box-tag {
  font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--olive); font-weight: 700; margin-bottom: 10px;
}
.box-title {
  font-family: 'Unbounded', sans-serif; font-size: 16px; font-weight: 700;
  margin-bottom: 8px; letter-spacing: 0.01em; line-height: 1.3;
}
.box-desc { font-size: 13px; color: var(--text-dim); line-height: 1.6; flex: 1; margin-bottom: 18px; }
.box-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.box-price { font-family: 'Unbounded', sans-serif; font-size: 20px; font-weight: 800; color: var(--olive); }
.box-btn {
  padding: 10px 20px; background: transparent;
  border: 1.5px solid var(--border); color: var(--text); border-radius: 100px;
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: all 0.25s;
}
.box-btn:hover { background: var(--olive); border-color: var(--olive); color: #141414; }

/* Dots */
.boxes-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 16px;
}
.boxes-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: none;
  cursor: pointer; transition: all 0.25s; padding: 0;
}
.boxes-dot.active { background: var(--olive); transform: scale(1.3); }
/* Hide dots on desktop where all 6 visible */
@media(min-width: 1025px) { .boxes-dots { display: none; } }

/* ══════════════════════════════════
   WEEKEND
══════════════════════════════════ */
#weekend::before {
  background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1600&q=60') center/cover no-repeat;
  filter: blur(4px) brightness(0.14) saturate(0.4);
}
/* Weekend slider для мобильных */
.weekend-slider-wrap {
  position: relative;
  margin-bottom: 24px;
  overflow: hidden;
  transition: opacity 0.2s ease;
}
.weekend-slider {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: grab;
  user-select: none;
}
.weekend-slider.grabbing { cursor: grabbing; transition: none; }

.weekend-slide {
  min-width: 100%;
  padding: 0 4px;
  box-sizing: border-box;
}

/* Desktop: grid 3 колонки */
@media(min-width: 1025px) { 
  .weekend-slider-wrap { overflow: visible; }
  .weekend-slider { 
    cursor: default;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
  }
  .weekend-slide { 
    min-width: auto;
    padding: 0;
  }
}
@media(min-width: 641px) and (max-width: 1024px) { 
  .weekend-slide { min-width: 50%; }
}

.weekend-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: none;
  position: relative;
  overflow: hidden;
  height: 100%;
  transform: translateZ(0);
  will-change: transform;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}
@media(min-width: 1025px) {
  .weekend-card {
    transition: all 0.3s;
  }
}
.weekend-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--olive);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.weekend-card:hover {
  background: var(--card-bg-hover);
  border-color: var(--border-olive);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 32px rgba(139, 154, 107, 0.25);
}
.weekend-card:hover::after { transform: scaleX(1); }

/* Отключаем hover на мобильных */
@media(max-width: 1024px) {
  .weekend-card:hover {
    transform: none;
    box-shadow: none;
    background: var(--card-bg);
    border-color: var(--border);
  }
  .weekend-card:hover::after { transform: scaleX(0); }
}

.wc-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 700;
  margin-bottom: 10px;
}
.wc-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--olive);
  margin-bottom: 6px;
}
.wc-subtitle {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.wc-price {
  font-family: 'Unbounded', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1;
}
.wc-period {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.wc-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 20px;
}
.wc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.wc-list li {
  font-size: 13px;
  color: var(--text-dim);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.wc-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--olive);
  font-weight: 700;
}
.wc-list li strong { color: var(--text); }
.wc-btn {
  width: 100%;
  padding: 14px;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.wc-btn:hover {
  background: var(--olive);
  border-color: var(--olive);
  color: #141414;
}

/* Dots */
.weekend-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.weekend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
}
.weekend-dot.active {
  background: var(--olive);
  transform: scale(1.3);
}
/* Hide dots on desktop */
@media(min-width: 1025px) {
  .weekend-dots { display: none; }
}

/* ══════════════════════════════════
   ORDER FORM
══════════════════════════════════ */
#order::before {
  background: url('https://images.unsplash.com/photo-1567620905732-2d1ec7ab7445?w=1600&q=60') center/cover no-repeat;
  filter: blur(4px) brightness(0.15) saturate(0.5);
}
.order-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  flex: 1;
  align-items: center;
  width: 100%;
}
.order-header {
  text-align: left;
}
form.order-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 28px;
}
.order-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.order-form .form-note {
  text-align: center;
  margin-bottom: 0;
}

/* ── NESTED DROPDOWN ── */
.custom-select { position: relative; }

.custom-select-trigger {
  width: 100%; padding: 15px 18px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  color: var(--text-dim);
  font-family: 'Inter', sans-serif; font-size: 13px;
  cursor: pointer; transition: all 0.25s;
  display: flex; justify-content: space-between; align-items: center;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.custom-select-trigger:hover,
.custom-select.open .custom-select-trigger {
  border-color: var(--border-olive);
  background: rgba(139,154,107,0.05);
  color: var(--text);
}
.custom-select-trigger.has-value { color: var(--text); }
.cs-arrow {
  font-size: 10px; color: var(--text-dim);
  transition: transform 0.25s; flex-shrink: 0;
}
.custom-select.open .cs-arrow { transform: rotate(180deg); }

/* Дропдаун */
.cs-dropdown {
  position: absolute;
  top: calc(100% + 4px); left: 0; right: 0;
  background: rgba(18, 18, 16, 0.99);
  border: 1.5px solid var(--border-olive);
  border-radius: 14px;
  overflow: hidden;
  overflow-y: auto;
  max-height: 280px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  z-index: 50;
}
.custom-select.open .cs-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}

/* Категория */
.cs-category { border-bottom: 1px solid rgba(255,255,255,0.05); }
.cs-category:last-child { border-bottom: none; }

.cs-cat-header {
  padding: 14px 18px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  transition: background 0.2s;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cs-cat-header:hover { background: rgba(255,255,255,0.04); }
.cs-cat-header.open { background: rgba(139,154,107,0.06); }

.cs-cat-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--text);
}
.cs-cat-header.open .cs-cat-name { color: var(--olive); }

.cs-cat-arrow {
  font-size: 9px; color: var(--text-dim);
  transition: transform 0.25s;
}
.cs-cat-header.open .cs-cat-arrow { transform: rotate(180deg); color: var(--olive); }

/* Продукты внутри категории */
.cs-products {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
}
.cs-products.open { max-height: 400px; }

.cs-product {
  padding: 11px 18px 11px 28px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 13px;
  color: var(--text-dim);
  transition: background 0.15s, color 0.15s;
  border-top: 1px solid rgba(255,255,255,0.04);
  -webkit-tap-highlight-color: transparent;
}
.cs-product:hover { background: rgba(139,154,107,0.08); color: var(--text); }
.cs-product.selected { background: rgba(139,154,107,0.12); color: var(--olive); }
.cs-product-price {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px; font-weight: 700;
  color: var(--olive); opacity: 0.7; flex-shrink: 0;
}
.cs-product:hover .cs-product-price,
.cs-product.selected .cs-product-price { opacity: 1; }
input, select, textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,0.05); border: 1.5px solid var(--border);
  border-radius: 12px; color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 13px;
  outline: none; transition: border-color 0.25s, background 0.25s; -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--border-olive); background: rgba(139,154,107,0.05); }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.3); }
select option { background: #1e1e1e; color: var(--text); }
textarea { resize: none; min-height: 52px; }
.form-submit {
  padding: 17px; background: var(--olive); color: #141414; border: none; border-radius: 50px;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: all 0.3s;
}
.form-submit:hover { background: #9DAA7B; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(139,154,107,0.3); }
.form-note { font-size: 11px; color: rgba(255,255,255,0.3); line-height: 1.5; margin-bottom: 24px; }

/* PERF */
.hero-cta, .prog-btn, .box-btn, .wc-btn, .form-submit { will-change: transform; }

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */

/* ── Бургер меню ── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  position: relative;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger span:nth-child(1) { top: 10px; }
.burger span:nth-child(2) { top: 17px; }
.burger span:nth-child(3) { top: 24px; }
.burger.active span:nth-child(1) { transform: translateX(-50%) translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateX(-50%) translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 56px; left: 0; right: 0;
  background: rgba(14,14,12,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px;
  flex-direction: column; gap: 4px;
  z-index: 98;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.25s, opacity 0.25s;
}
.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu a {
  color: var(--text-dim); text-decoration: none;
  padding: 14px 16px;
  font-size: 14px; font-weight: 500;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(242, 240, 232, 0.07);
}
.mobile-menu a:last-of-type:not(.mobile-menu-cta) { border-bottom: none; }
.mobile-menu a:hover { background: rgba(255,255,255,0.04); color: var(--text); }
.mobile-menu a.active { color: var(--olive); }
.mobile-menu-cta {
  margin-top: 12px; padding: 16px 16px;
  background: rgba(242, 240, 232, 0.95); color: #1a1a1a;
  border: none;
  border-radius: 50px; text-align: center;
  font-weight: 700; font-size: 13px; letter-spacing: 0.06em;
  text-decoration: none; text-transform: uppercase;
  transition: all 0.25s;
}
.mobile-menu-cta:hover { background: #ffffff; }

/* ══════════════════════════════════
   SECTION INDICATORS (мобильные)
══════════════════════════════════ */
.section-indicators {
  display: none;
}

@media(max-width: 768px) {
  .section-indicators {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: fixed;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    padding: 12px 0;
  }
  
  .indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .indicator.active {
    background: var(--olive);
    height: 24px;
    border-radius: 3px;
  }
}

/* ── 1280px ── */
@media(max-width: 1280px) {
  section { padding: 60px 32px; }
}

/* ── 1100px: скрываем навбар-ссылки, показываем бургер ── */
@media(max-width: 1100px) {
  .nav-links { display: none; }
  .burger { display: flex; }
}

/* ── 1024px: Планшеты ── */
@media(max-width: 1024px) {
  section { min-height: auto; padding: 80px 24px 32px; }
  #hero { min-height: 100vh; min-height: 100dvh; }
  nav { padding: 14px 16px; gap: 6px; }
  .nav-cta { flex-shrink: 0; padding: 10px 20px; font-size: 11px; }
  .location-btn { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .menu-tabs { flex-wrap: wrap; }
}

/* ── 840px: Планшет портрет ── */
@media(max-width: 840px) {
  section { padding: 72px 14px 28px; }
  #hero { min-height: 100vh; min-height: 100dvh; padding: 90px 20px 40px; }
  nav { padding: 0 16px; height: 56px; }
  .nav-cta { display: flex; }
  nav { justify-content: space-between; }
  .nav-brand { flex: 0 0 auto; }
  .burger { display: flex; }
  .order-inner { grid-template-columns: 1fr; gap: 16px; }
  .prog-card { padding: 24px 20px; }
}

/* ── 640px: Телефоны ── */
@media(max-width: 640px) {
  section { padding: 64px 14px 24px; }
  nav { padding: 0 14px; height: 52px; }
  .mobile-menu { top: 52px; }
  #hero { padding: 72px 14px 32px; min-height: 100svh; min-height: 100dvh; }
  .hero-logo { font-size: clamp(42px, 13vw, 56px); margin-bottom: 16px; }
  .hero-tagline { font-size: 15px; letter-spacing: 0.1em; }
  .hero-description { font-size: 14px; margin-bottom: 28px; }
  .hero-cta { padding: 14px 28px; font-size: 13px; }
  .nav-logo { font-size: 13px; }
  .location-btn { font-size: 11px; padding: 8px 12px; }
  .nav-brand { gap: 8px; }
  .menu-tabs { flex-wrap: wrap; justify-content: center; gap: 4px; width: 100%; }
  .tab { padding: 8px 14px; font-size: 12px; }
  .card { padding: 20px 16px; }
  .card h3 { font-size: 11px; }
  .section-title { font-size: 20px; }
  .section-eyebrow { font-size: 9px; }
  .prog-card { padding: 20px 16px; }
  .prog-name { font-size: 16px; }
  .prog-price { font-size: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-pills { grid-template-columns: 1fr; }
  .wc-price { font-size: 22px; }
  .box-title { font-size: 12px; }
  .box-price { font-size: 16px; }
  .section-footer { font-size: 10px; flex-wrap: wrap; gap: 8px; }

  /* Меню/заголовок — стекаем */
  #menu > div[style] { flex-direction: column; gap: 16px; }

  /* Дропдаун — статичный на мобиле */
  .custom-select { position: static; }
  .cs-dropdown {
    position: static;
    transform: none !important;
    border-radius: 0 0 12px 12px;
    border-top: none;
    margin-top: 0;
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    visibility: hidden;
    transition: grid-template-rows 0.3s ease, opacity 0.3s ease, visibility 0.3s;
  }
  .cs-dropdown-inner { overflow: hidden; }
  .custom-select.open .cs-dropdown {
    grid-template-rows: 1fr;
    opacity: 1;
    visibility: visible;
  }
  .custom-select.open .custom-select-trigger {
    border-radius: 12px 12px 0 0;
    border-bottom-color: transparent;
  }
}

/* ── 390px: iPhone SE и меньше ── */
@media(max-width: 390px) {
  .hero-logo { font-size: 38px; }
  .hero-cta { width: 100%; text-align: center; padding: 12px 24px; font-size: 12px; }
  nav { padding: 0 12px; }
  .location-btn { font-size: 10px; padding: 6px 10px; }
  .nav-logo { font-size: 12px; }
  section { padding: 60px 14px 16px; padding-right: calc(14px + env(safe-area-inset-right, 0px)); }
  .section-eyebrow { font-size: 8px !important; margin-bottom: 6px !important; }
  .section-title { font-size: 16px !important; margin-bottom: 10px !important; }
  .section-footer { font-size: 9px; padding-top: 8px; }
  .nav-cta { padding: 8px 14px; font-size: 10px; }

  /* Cards */
  .card { padding: 14px 12px; }
  .card h3 { font-size: 10px; margin-bottom: 6px; padding-bottom: 6px; }
  .card p { font-size: 11px; line-height: 1.5; }

  /* How grid */
  .how-grid { gap: 6px !important; margin-bottom: 8px !important; }
  .row-plus .card { padding: 12px 12px; }

  /* Programs */
  .prog-card { padding: 16px 14px; }
  .prog-name { font-size: 14px; }
  .prog-subtitle { font-size: 12px; margin-bottom: 12px; }
  .prog-price { font-size: 20px; }
  .prog-period { font-size: 11px; margin-bottom: 16px; }
  .prog-desc { font-size: 11px; }
  .prog-list { gap: 6px; margin-bottom: 16px; }
  .prog-list li { font-size: 11px; }
  .prog-btn { padding: 10px; font-size: 11px; }
  .prog-divider { margin-bottom: 12px; }

  /* Menu */
  .mdc-img { aspect-ratio: 4/3; }
  .mdc-body { padding: 14px 14px 16px; }
  .mdc-day { font-size: 10px; margin-bottom: 10px; padding-bottom: 8px; }
  .mdc-dish-name { font-size: 15px; }
  .mdc-dish-kcal { font-size: 12px; margin-bottom: 12px; }
  .tab { padding: 6px 10px; font-size: 11px; }

  /* Boxes */
  .box-body { padding: 14px 14px 16px; }
  .box-title { font-size: 11px; }
  .box-desc { font-size: 12px; margin-bottom: 12px; }
  .box-price { font-size: 14px; }
  .box-btn { padding: 8px 14px; font-size: 10px; }
  .box-img { aspect-ratio: 4/3; }

  /* Weekend */
  .weekend-card { padding: 12px 14px !important; }
  .wc-title { font-size: 12px !important; }
  .wc-subtitle { font-size: 10px !important; margin-bottom: 6px !important; }
  .wc-price { font-size: 16px !important; }
  .wc-period { font-size: 9px !important; margin-bottom: 8px !important; }
  .wc-list { gap: 3px !important; margin-bottom: 8px !important; }
  .wc-list li { font-size: 10px !important; line-height: 1.3 !important; }
  .wc-btn { padding: 6px 14px !important; font-size: 9px !important; }
  .wc-divider { margin: 6px 0 !important; }

  /* Order form */
  #orderTitle { font-size: 18px !important; }
  .order-form input,
  .order-form .custom-select-trigger { padding: 10px 11px !important; font-size: 12px !important; }
  .order-form textarea { padding: 9px 11px !important; min-height: 36px !important; font-size: 12px !important; }
  .form-submit { padding: 12px !important; font-size: 11px !important; }
  .order-form .form-row { grid-template-columns: 1fr !important; }
}

/* ── 320px: Galaxy Fold и экстремально узкие ── */
@media(max-width: 320px) {
  .hero-logo { font-size: 32px; margin-bottom: 10px; }
  .hero-tagline { font-size: 13px; margin-bottom: 12px; }
  .hero-description { font-size: 12px; margin-bottom: 20px; line-height: 1.5; }
  .hero-cta { padding: 10px 20px; font-size: 11px; }

  nav { padding: 0 8px; height: 48px; }
  .nav-logo { font-size: 11px; }
  .nav-cta { padding: 6px 10px; font-size: 9px; }
  .location-btn { font-size: 9px; padding: 4px 8px; }
  .mobile-menu { top: 48px; }

  section { padding: 52px 10px 14px; }
  .section-eyebrow { font-size: 7px !important; }
  .section-title { font-size: 14px !important; margin-bottom: 8px !important; }
  .section-footer { font-size: 8px; }

  .card { padding: 10px 10px; }
  .card h3 { font-size: 9px; }
  .card p { font-size: 10px; }
  .how-grid { gap: 4px !important; }
  .row-plus .card { padding: 10px; }

  .prog-card { padding: 12px 10px; }
  .prog-name { font-size: 12px; }
  .prog-price { font-size: 18px; }
  .prog-list li { font-size: 10px; }
  .prog-btn { padding: 8px; font-size: 10px; }
  .prog-badge { font-size: 8px; padding: 3px 7px; top: 10px; right: 10px; }

  .mdc-img { aspect-ratio: 3/2; }
  .mdc-body { padding: 10px 10px 12px; }
  .mdc-dish-name { font-size: 13px; }

  .box-body { padding: 10px 10px 12px; }
  .box-title { font-size: 10px; }
  .box-price { font-size: 13px; }
  .box-img { aspect-ratio: 3/2; }

  .weekend-card { padding: 10px 10px !important; }
  .wc-title { font-size: 11px !important; }
  .wc-price { font-size: 14px !important; }
  .wc-list li { font-size: 9px !important; }
  .wc-btn { padding: 5px 10px !important; font-size: 8px !important; }

  #orderTitle { font-size: 16px !important; }
  #orderDesc { font-size: 11px !important; }
  .order-form input,
  .order-form .custom-select-trigger { padding: 9px 10px !important; font-size: 11px !important; }
  .order-form textarea { padding: 8px 10px !important; min-height: 30px !important; font-size: 11px !important; }
  .form-submit { padding: 10px !important; font-size: 10px !important; }
  .form-note { font-size: 8px !important; }
  .cs-dropdown { max-height: 35vh; }
  .tab { padding: 5px 8px; font-size: 10px; }
}

/* ══════════════════════════════════
   MEDIUM-SHORT SCREENS (max-height: 860px)
   Redmi Note 12, most Android phones
══════════════════════════════════ */
@media (max-width: 768px) and (max-height: 860px) {
  section {
    padding-top: 58px !important;
    padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .section-eyebrow { margin-bottom: 5px !important; font-size: 9px !important; }
  .section-title { margin-bottom: 10px !important; font-size: 18px !important; }
  .section-footer { padding-top: 8px !important; font-size: 10px !important; }

  /* How It Works / Философия */
  .how-grid { gap: 5px !important; margin-bottom: 8px !important; }
  .row-plus { gap: 5px !important; }
  .row-plus .card { padding: 10px 12px !important; }
  .card h3 { font-size: 10px !important; margin-bottom: 5px !important; padding-bottom: 5px !important; }
  .card p { font-size: 11px !important; line-height: 1.45 !important; }

  /* Weekend */
  .weekend-slider { gap: 6px !important; }
  .weekend-card { padding: 10px 12px !important; }
  .wc-title { font-size: 12px !important; }
  .wc-subtitle { font-size: 10px !important; margin-bottom: 4px !important; }
  .wc-price { font-size: 16px !important; margin-bottom: 1px !important; }
  .wc-period { font-size: 9px !important; margin-bottom: 4px !important; }
  .wc-divider { margin: 5px 0 !important; }
  .wc-list { gap: 2px !important; margin-bottom: 6px !important; }
  .wc-list li { font-size: 10px !important; line-height: 1.25 !important; }
  .wc-btn { padding: 6px 14px !important; font-size: 9px !important; }

  /* Order */
  #order { padding-top: 54px !important; }
  .order-header { margin-bottom: 8px !important; }
  #orderTitle { font-size: 18px !important; margin-bottom: 5px !important; }
  #orderDesc { font-size: 11px !important; }
  .order-form { gap: 5px !important; }
  .order-form input,
  .order-form .custom-select-trigger { padding: 10px 12px !important; font-size: 12px !important; }
  .order-form textarea { padding: 9px 12px !important; min-height: 36px !important; font-size: 12px !important; }
  .form-submit { padding: 12px !important; font-size: 11px !important; }
  .form-note { font-size: 8px !important; }

  /* Slider wraps */
  .programs-slider-wrap,
  .boxes-slider-wrap,
  .weekend-slider-wrap,
  .menu-slider-wrap {
    padding-bottom: 10px !important;
  }
}

/* ══════════════════════════════════
   SHORT SCREENS (max-height: 700px)
   iPhone SE, Galaxy Fold, etc.
══════════════════════════════════ */
@media (max-width: 768px) and (max-height: 700px) {
  section {
    padding-top: 56px !important;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px)) !important;
  }

  /* Hero */
  .hero-logo { font-size: clamp(32px, 10vw, 42px) !important; margin-bottom: 10px !important; }
  .hero-tagline { font-size: 13px !important; margin-bottom: 10px !important; }
  .hero-description { font-size: 12px !important; margin-bottom: 16px !important; line-height: 1.5 !important; }
  .hero-cta { padding: 10px 24px !important; font-size: 12px !important; }

  /* Section headers */
  .section-eyebrow { margin-bottom: 4px !important; font-size: 8px !important; }
  .section-title { margin-bottom: 8px !important; font-size: 16px !important; }
  .section-footer { padding-top: 6px !important; font-size: 9px !important; }

  /* How It Works */
  .how-grid { gap: 4px !important; margin-bottom: 4px !important; }
  .row-plus { gap: 4px !important; }
  .row-plus .card { padding: 8px 10px !important; }
  .card h3 { font-size: 9px !important; margin-bottom: 4px !important; padding-bottom: 4px !important; }
  .card p { font-size: 10px !important; line-height: 1.4 !important; }

  /* Programs */
  .prog-card { padding: 12px 10px !important; }
  .prog-name { font-size: 13px !important; margin-bottom: 4px !important; }
  .prog-subtitle { font-size: 11px !important; margin-bottom: 8px !important; }
  .prog-price { font-size: 18px !important; }
  .prog-period { font-size: 10px !important; margin-bottom: 10px !important; }
  .prog-divider { margin-bottom: 8px !important; }
  .prog-list { gap: 3px !important; margin-bottom: 10px !important; }
  .prog-list li { font-size: 10px !important; line-height: 1.3 !important; }
  .prog-btn { padding: 8px !important; font-size: 10px !important; }

  /* Boxes */
  .box-img { aspect-ratio: 3/2 !important; }
  .box-body { padding: 10px !important; }
  .box-title { font-size: 10px !important; }
  .box-desc { font-size: 11px !important; margin-bottom: 8px !important; }
  .box-price { font-size: 13px !important; }
  .box-btn { padding: 6px 12px !important; font-size: 9px !important; }

  /* Weekend */
  .weekend-card { padding: 8px 10px !important; }
  .wc-title { font-size: 12px !important; }
  .wc-subtitle { font-size: 9px !important; margin-bottom: 4px !important; }
  .wc-price { font-size: 14px !important; margin-bottom: 1px !important; }
  .wc-period { font-size: 8px !important; margin-bottom: 4px !important; }
  .wc-divider { margin: 4px 0 !important; }
  .wc-list { gap: 2px !important; margin-bottom: 6px !important; }
  .wc-list li { font-size: 9px !important; line-height: 1.2 !important; }
  .wc-btn { padding: 5px 10px !important; font-size: 8px !important; }

  /* Menu */
  .menu-tabs { gap: 2px !important; }
  .tab { padding: 4px 8px !important; font-size: 10px !important; }
  .mdc-img { aspect-ratio: 3/2 !important; }
  .mdc-body { padding: 10px !important; }
  .mdc-day { font-size: 9px !important; margin-bottom: 6px !important; padding-bottom: 6px !important; }
  .mdc-dish-name { font-size: 13px !important; }
  .mdc-dish-kcal { font-size: 11px !important; margin-bottom: 8px !important; }
  #menu > div[style] { margin-bottom: 8px !important; gap: 8px !important; }

  /* Order */
  #order { padding-top: 50px !important; }
  .order-header { margin-bottom: 6px !important; }
  #orderTitle { font-size: 16px !important; margin-bottom: 4px !important; }
  #orderDesc { font-size: 11px !important; }
  .order-form { gap: 5px !important; }
  .order-form input,
  .order-form .custom-select-trigger { padding: 9px 10px !important; font-size: 11px !important; }
  .order-form textarea { padding: 8px 10px !important; min-height: 30px !important; font-size: 11px !important; }
  .form-submit { padding: 11px !important; font-size: 10px !important; }
  .form-note { font-size: 8px !important; margin-bottom: 0 !important; }

  /* Slider wraps tighter */
  .programs-slider-wrap,
  .boxes-slider-wrap,
  .weekend-slider-wrap,
  .menu-slider-wrap {
    padding-bottom: 8px !important;
  }
  .programs-dots,
  .boxes-dots,
  .weekend-dots,
  .menu-dots {
    margin-top: 4px !important;
  }
}

/* ══════════════════════════════════
   VERY SHORT SCREENS (max-height: 600px)
   Galaxy Fold closed, landscape phones
══════════════════════════════════ */
@media (max-width: 768px) and (max-height: 600px) {
  section {
    padding-top: 50px !important;
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .hero-logo { font-size: 28px !important; margin-bottom: 6px !important; }
  .hero-tagline { font-size: 11px !important; margin-bottom: 6px !important; }
  .hero-description { font-size: 11px !important; margin-bottom: 12px !important; }

  .section-eyebrow { margin-bottom: 2px !important; font-size: 7px !important; }
  .section-title { margin-bottom: 6px !important; font-size: 14px !important; }
  .section-footer { padding-top: 4px !important; font-size: 8px !important; }

  .how-grid { gap: 3px !important; }
  .row-plus .card { padding: 6px 8px !important; }
  .card h3 { font-size: 8px !important; margin-bottom: 3px !important; padding-bottom: 3px !important; }
  .card p { font-size: 9px !important; line-height: 1.3 !important; }

  .weekend-card { padding: 6px 8px !important; }
  .wc-list { display: none !important; }
  .wc-divider { display: none !important; }

  /* Order */
  #order { padding-top: 46px !important; }
  .order-header { margin-bottom: 4px !important; }
  #orderTitle { font-size: 14px !important; margin-bottom: 3px !important; }
  #orderDesc { display: none !important; }
  .order-form { gap: 4px !important; }
  .order-form input,
  .order-form .custom-select-trigger { padding: 8px 9px !important; font-size: 11px !important; }
  .order-form textarea { padding: 7px 9px !important; min-height: 26px !important; font-size: 11px !important; }
  .form-submit { padding: 10px !important; font-size: 10px !important; }
  .form-note { display: none !important; }
}
