/* ============================================================
   KROPKA SBORKI — design system
   Палитра: молочно-белый / травянисто-зелёный / мокрый асфальт / древесно-коричневый
   ============================================================ */

:root {
  /* фон и поверхности */
  --milk: #FAF6F0;          /* молочно-белый — основной фон */
  --milk-warm: #F3ECE2;     /* чуть теплее — для деликатных градиентов */
  --card: #FFFDFA;          /* карточки */

  /* мокрый асфальт — текст и тёмные блоки */
  --asphalt: #3A3F44;
  --asphalt-deep: #2E3236;
  --asphalt-soft: #6B7076;

  /* травянисто-зелёный — только ключевые действия */
  --grass: #4E8C4A;
  --grass-hover: #41783E;
  --grass-soft: #E4EFE2;

  /* древесно-коричневый — детали, иконки, подписи */
  --wood: #8B6B4F;
  --wood-soft: #D8C9B8;

  --danger: #B4544A;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 6px 24px rgba(58, 63, 68, .08);
  --shadow-hover: 0 10px 32px rgba(58, 63, 68, .13);

  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body: 'Golos Text', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--asphalt);
  background: var(--milk);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

h1, h2, .logo { font-family: var(--font-display); font-weight: 500; line-height: 1.2; }
h1 { font-size: clamp(30px, 5vw, 52px); letter-spacing: -0.01em; }
h2 { font-size: clamp(24px, 3.4vw, 34px); margin-bottom: 28px; }
h3 { font-size: 20px; font-weight: 600; }

.section { padding: 72px 0; }
.section-note { color: var(--wood); font-size: 14px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 10px; }

/* ---------- кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 16px; font-weight: 600;
  text-decoration: none; transition: background .2s, transform .15s, box-shadow .2s;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--grass); color: #fff; box-shadow: 0 4px 14px rgba(78,140,74,.28); }
.btn-primary:hover { background: var(--grass-hover); }
.btn-secondary { background: transparent; color: var(--asphalt); border: 1.5px solid var(--wood-soft); }
.btn-secondary:hover { border-color: var(--wood); color: var(--wood); }
.btn-ghost { background: transparent; color: var(--asphalt-soft); }
.btn-ghost:hover { color: var(--asphalt); }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 240, .88); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139, 107, 79, .14);
}
.header-inner { display: flex; align-items: center; gap: 28px; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 17px; text-decoration: none; color: var(--asphalt-deep); }
.logo-dot {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  background: radial-gradient(circle at 35% 35%, var(--grass) 0 34%, transparent 36%),
              radial-gradient(circle at 50% 50%, transparent 58%, var(--wood) 60% 68%, transparent 70%);
  border: 2px solid var(--asphalt);
}
.logo b { font-weight: 600; }
.nav { display: flex; gap: 22px; margin-left: auto; }
.nav a { text-decoration: none; font-size: 15px; color: var(--asphalt-soft); transition: color .2s; }
.nav a:hover { color: var(--wood); }
.header .btn { flex: none; }
.burger { display: none; margin-left: auto; background: none; border: none; font-size: 26px; color: var(--asphalt); cursor: pointer; }

/* ---------- hero ---------- */
.hero { padding: 84px 0 56px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--milk) 55%, var(--milk-warm) 100%);
  z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero p.lead { font-size: 19px; color: var(--asphalt-soft); margin: 20px 0 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-preview { display: grid; gap: 14px; }
.hero-preview .mini-card {
  background: var(--card); border-radius: var(--radius-sm); box-shadow: var(--shadow);
  padding: 14px 18px; display: flex; align-items: center; gap: 14px;
  cursor: pointer; transition: box-shadow .2s, transform .2s;
}
.hero-preview .mini-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.mini-card .date-chip {
  flex: none; width: 52px; height: 52px; border-radius: 12px; background: var(--grass-soft);
  color: var(--grass-hover); display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-weight: 700; font-size: 17px; line-height: 1.1;
}
.mini-card .date-chip small { font-size: 11px; font-weight: 500; text-transform: uppercase; }
.mini-card .t { font-weight: 600; font-size: 15px; }
.mini-card .s { font-size: 13px; color: var(--wood); }

/* ---------- фильтры ---------- */
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.chip {
  padding: 8px 16px; border-radius: 999px; border: 1.5px solid var(--wood-soft);
  background: transparent; font-size: 14px; color: var(--asphalt-soft);
  cursor: pointer; font-family: var(--font-body); transition: all .2s;
}
.chip:hover { border-color: var(--wood); color: var(--wood); }
.chip.active { background: var(--grass); border-color: var(--grass); color: #fff; }

/* ---------- карточки мастер-классов ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card-cover { height: 180px; object-fit: cover; width: 100%; background: var(--milk-warm); }
.card-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-meta { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--wood); flex-wrap: wrap; }
.badge { padding: 3px 10px; border-radius: 999px; font-size: 12.5px; font-weight: 600; }
.badge-free { background: var(--grass-soft); color: var(--grass-hover); }
.badge-few { background: #F4E8D7; color: var(--wood); }
.badge-full { background: #ECECEC; color: var(--asphalt-soft); }
.badge-format { background: transparent; border: 1px solid var(--wood-soft); color: var(--wood); font-weight: 500; }
/* аудитория дня: мужской / женский / совместный */
.badge-aud-men   { background: #E4E8EB; color: var(--asphalt); }
.badge-aud-women { background: #F2E6DA; color: var(--wood); }
.badge-aud-mixed { background: var(--grass-soft); color: var(--grass-hover); }
.card p.desc { font-size: 14.5px; color: var(--asphalt-soft); flex: 1; }
.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 6px; }
.price { font-weight: 700; font-size: 18px; }

/* ---------- календарь ---------- */
.calendar-wrap { display: grid; grid-template-columns: 380px 1fr; gap: 36px; align-items: start; }
.calendar {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px;
}
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal-head b { font-size: 16px; text-transform: capitalize; }
.cal-nav { background: none; border: none; font-size: 20px; cursor: pointer; color: var(--wood); padding: 4px 10px; border-radius: 8px; }
.cal-nav:hover { background: var(--milk-warm); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; text-align: center; }
.cal-grid .dow { font-size: 12px; color: var(--wood); padding: 6px 0; font-weight: 600; }
.cal-day {
  aspect-ratio: 1; border: none; background: none; border-radius: 10px; cursor: pointer;
  font-family: var(--font-body); font-size: 14.5px; color: var(--asphalt);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  transition: background .15s;
}
.cal-day:hover:not(:disabled) { background: var(--milk-warm); }
.cal-day:disabled { color: #C9C2B8; cursor: default; }
.cal-day .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--grass); }
.cal-day.has-events { font-weight: 700; }
.cal-day.selected { background: var(--grass); color: #fff; }
.cal-day.selected .dot { background: #fff; }
.cal-events h3 { margin-bottom: 16px; }
.cal-events .empty { color: var(--asphalt-soft); background: var(--card); border-radius: var(--radius-sm); padding: 28px; text-align: center; box-shadow: var(--shadow); }
.cal-event {
  background: var(--card); border-radius: var(--radius-sm); box-shadow: var(--shadow);
  padding: 16px 20px; display: flex; align-items: center; gap: 16px; margin-bottom: 12px;
}
.cal-event .time { font-weight: 700; color: var(--grass-hover); min-width: 52px; }
.cal-event .info { flex: 1; }
.cal-event .info .t { font-weight: 600; }
.cal-event .info .s { font-size: 13px; color: var(--wood); }

/* ---------- тёмные секции ---------- */
.dark-section { background: var(--asphalt); color: #EDEAE5; }
.dark-section h2 { color: #fff; }
.dark-section .section-note { color: var(--wood-soft); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.about-grid p { color: #C9C5BF; margin-bottom: 14px; }
.hosts { display: grid; gap: 16px; }
.host { display: flex; gap: 14px; align-items: center; background: rgba(255,255,255,.05); border-radius: var(--radius-sm); padding: 14px 18px; }
.host img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.host .n { font-weight: 600; color: #fff; }
.host .r { font-size: 13.5px; color: var(--wood-soft); }

/* ---------- отзывы ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { background: var(--card); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.review p { font-size: 15px; color: var(--asphalt-soft); margin-bottom: 16px; }
.review .who { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.review .who b { color: var(--asphalt); }
.review .who span { color: var(--wood); }

/* ---------- FAQ ---------- */
.faq { max-width: 720px; }
.faq details {
  background: var(--card); border-radius: var(--radius-sm); box-shadow: var(--shadow);
  margin-bottom: 12px; overflow: hidden;
}
.faq summary {
  padding: 18px 22px; cursor: pointer; font-weight: 600; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::after { content: '+'; color: var(--wood); font-size: 22px; font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 22px 18px; color: var(--asphalt-soft); font-size: 15.5px; }

/* ---------- футер ---------- */
.footer { background: var(--asphalt-deep); color: #B9B5AF; padding: 48px 0 32px; font-size: 14.5px; }
.footer-grid { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: 28px; }
.footer .logo { color: #fff; margin-bottom: 10px; }
.footer a { color: #D8D4CE; text-decoration: none; }
.footer a:hover { color: var(--grass-soft); }
.footer ul { list-style: none; display: grid; gap: 8px; }
.footer .legal { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; font-size: 13px; color: #8A867F; display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- модалки ---------- */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(46, 50, 54, .5); z-index: 100;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  animation: fadeIn .2s;
}
@keyframes fadeIn { from { opacity: 0; } }
.modal {
  background: var(--milk); border-radius: var(--radius); max-width: 640px; width: 100%;
  max-height: 90vh; overflow-y: auto; position: relative;
  animation: slideUp .25s ease-out;
}
@keyframes slideUp { from { transform: translateY(16px); opacity: 0; } }
.modal-close {
  position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%;
  border: none; background: rgba(250,246,240,.92); color: var(--asphalt); font-size: 18px;
  cursor: pointer; z-index: 2;
}
.modal-cover { height: 220px; width: 100%; object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; }
.modal-body { padding: 28px; }
.modal-body h3 { font-size: 24px; margin-bottom: 12px; }
.modal-meta { display: grid; gap: 8px; margin: 18px 0; font-size: 15px; }
.modal-meta div { display: flex; gap: 10px; align-items: baseline; }
.modal-meta .ico { color: var(--wood); flex: none; width: 22px; }
.modal-desc { color: var(--asphalt-soft); font-size: 15.5px; white-space: pre-line; }
.how-it-works { margin-top: 16px; font-size: 13.5px; color: var(--wood); }

/* ---------- шаги бронирования ---------- */
.steps { display: flex; gap: 6px; margin-bottom: 24px; }
.steps .step-bar { height: 4px; flex: 1; border-radius: 2px; background: var(--wood-soft); transition: background .3s; }
.steps .step-bar.done { background: var(--grass); }
.step-label { font-size: 13px; color: var(--wood); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .08em; }

.slot-option {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border: 1.5px solid var(--wood-soft); border-radius: var(--radius-sm); padding: 14px 18px;
  cursor: pointer; margin-bottom: 10px; transition: border-color .2s, background .2s;
}
.slot-option:hover { border-color: var(--grass); }
.slot-option.selected { border-color: var(--grass); background: var(--grass-soft); }
.slot-option .seats { font-size: 13px; color: var(--wood); }
.slot-option.full { opacity: .5; cursor: not-allowed; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.field .hint { font-size: 12.5px; color: var(--asphalt-soft); margin-top: 4px; }
input[type=text], input[type=email], input[type=password], input[type=number],
input[type=url], input[type=datetime-local], textarea, select {
  width: 100%; padding: 12px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--wood-soft); background: var(--card);
  font-family: var(--font-body); font-size: 15.5px; color: var(--asphalt);
  transition: border-color .2s;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--grass); }
textarea { min-height: 110px; resize: vertical; }

.form-error { color: var(--danger); font-size: 14px; margin: 10px 0; min-height: 20px; }
.modal-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 20px; }

/* ---------- success page ---------- */
.success-card {
  max-width: 560px; margin: 64px auto; background: var(--card); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 40px; text-align: center;
}
.success-card .check {
  width: 68px; height: 68px; border-radius: 50%; background: var(--grass-soft);
  color: var(--grass); font-size: 32px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.success-card h1 { font-size: 26px; margin-bottom: 8px; }
.success-details { text-align: left; margin: 24px 0; display: grid; gap: 10px; font-size: 15.5px; }

/* ---------- admin ---------- */
.admin-layout { display: grid; grid-template-columns: 220px 1fr; min-height: 100vh; }
.admin-side { background: var(--asphalt-deep); color: #C9C5BF; padding: 24px 16px; display: flex; flex-direction: column; gap: 4px; }
.admin-side .logo { color: #fff; margin-bottom: 24px; padding: 0 10px; font-size: 15px; }
.admin-side button.navlink {
  text-align: left; background: none; border: none; color: #C9C5BF; padding: 11px 14px;
  border-radius: 10px; cursor: pointer; font-family: var(--font-body); font-size: 15px; transition: all .15s;
}
.admin-side button.navlink:hover { background: rgba(255,255,255,.07); color: #fff; }
.admin-side button.navlink.active { background: var(--grass); color: #fff; }
.admin-side .spacer { flex: 1; }
.admin-main { padding: 36px; max-width: 1000px; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 32px; }
.stat { background: var(--card); border-radius: var(--radius-sm); box-shadow: var(--shadow); padding: 20px; }
.stat .num { font-size: 32px; font-weight: 700; color: var(--grass-hover); font-family: var(--font-display); }
.stat .lbl { font-size: 13.5px; color: var(--asphalt-soft); }
.table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow); }
.table th { text-align: left; font-size: 12.5px; text-transform: uppercase; letter-spacing: .07em; color: var(--wood); padding: 14px 16px; border-bottom: 1px solid var(--milk-warm); }
.table td { padding: 13px 16px; border-bottom: 1px solid var(--milk-warm); font-size: 14.5px; }
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: var(--milk); }
.status-pill { padding: 3px 10px; border-radius: 999px; font-size: 12.5px; font-weight: 600; }
.status-paid { background: var(--grass-soft); color: var(--grass-hover); }
.status-pending { background: #F4E8D7; color: var(--wood); }
.status-cancelled, .status-refunded { background: #ECECEC; color: var(--asphalt-soft); }
.admin-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; gap: 16px; flex-wrap: wrap; }
.slot-row { display: grid; grid-template-columns: 1fr 84px 76px 140px 36px; gap: 8px; margin-bottom: 10px; align-items: center; }
.icon-btn { background: none; border: none; cursor: pointer; font-size: 17px; color: var(--wood); padding: 6px; border-radius: 8px; }
.icon-btn:hover { background: var(--milk-warm); }
.login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; }
.login-card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 40px; width: 100%; max-width: 400px; }
.login-card h1 { font-size: 22px; margin: 14px 0 24px; }
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--asphalt-deep); color: #fff; padding: 12px 24px; border-radius: 999px;
  font-size: 14.5px; z-index: 200; box-shadow: var(--shadow-hover); animation: slideUp .25s;
}

/* ---------- переключатель языка ---------- */
.lang-switch { display: flex; gap: 2px; border: 1.5px solid var(--wood-soft); border-radius: 999px; padding: 3px; flex: none; margin-left: auto; }
.header-inner .nav { margin-left: auto; }
.header-inner .lang-switch { margin-left: 0; }
.lang-switch button {
  border: none; background: none; font-family: var(--font-body); font-size: 12.5px; font-weight: 700;
  color: var(--asphalt-soft); padding: 5px 10px; border-radius: 999px; cursor: pointer; transition: all .15s;
}
.lang-switch button:hover { color: var(--wood); }
.lang-switch button.active { background: var(--grass); color: #fff; }

/* ---------- абонемент ---------- */
.sub-banner { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.sub-cta { text-align: center; }
.sub-price { font-family: var(--font-display); font-size: 34px; color: #fff; margin-bottom: 14px; }
.sub-price small { font-size: 14px; color: var(--wood-soft); font-family: var(--font-body); }

/* ---------- новости ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { background: var(--card); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.news-card .news-date { font-size: 13px; color: var(--wood); margin-bottom: 8px; }
.news-card h3 { margin-bottom: 8px; }
.news-card p { font-size: 14.5px; color: var(--asphalt-soft); white-space: pre-line; }

/* ---------- чат-виджет ---------- */
.chat-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--grass); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(78,140,74,.4); transition: background .2s, transform .15s;
}
.chat-fab:hover { background: var(--grass-hover); transform: scale(1.05); }
.chat-badge {
  position: absolute; top: -4px; right: -4px; min-width: 20px; height: 20px; border-radius: 999px;
  background: var(--danger); color: #fff; font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; padding: 0 5px;
}
.chat-panel {
  position: fixed; right: 22px; bottom: 92px; z-index: 95;
  width: 340px; max-width: calc(100vw - 34px); height: 440px; max-height: 70vh;
  background: var(--milk); border-radius: var(--radius); box-shadow: var(--shadow-hover);
  display: flex; flex-direction: column; overflow: hidden; animation: slideUp .25s ease-out;
}
.chat-head {
  display: flex; align-items: center; gap: 10px; padding: 14px 16px;
  background: var(--asphalt); color: #fff; font-size: 15px;
}
.chat-head .logo-dot { border-color: #fff; }
.chat-close { margin-left: auto; background: none; border: none; color: #C9C5BF; font-size: 16px; cursor: pointer; }
.chat-close:hover { color: #fff; }
.chat-body { flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.chat-intro { font-size: 13.5px; color: var(--asphalt-soft); background: var(--card); border-radius: 12px; padding: 10px 14px; }
.chat-msg { display: flex; }
.chat-msg .bubble {
  max-width: 82%; padding: 9px 14px; border-radius: 14px; font-size: 14.5px; line-height: 1.45;
  white-space: pre-line; word-break: break-word;
}
.chat-msg.from-visitor { justify-content: flex-end; }
.chat-msg.from-visitor .bubble { background: var(--grass); color: #fff; border-bottom-right-radius: 4px; }
.chat-msg.from-admin .bubble { background: var(--card); color: var(--asphalt); box-shadow: var(--shadow); border-bottom-left-radius: 4px; }
.chat-input { display: flex; gap: 8px; padding: 10px; border-top: 1px solid var(--wood-soft); background: var(--card); }
.chat-input input { flex: 1; border-radius: 999px; padding: 10px 16px; font-size: 14.5px; }
.chat-err { font-size: 12.5px; color: var(--danger); padding: 0 14px 8px; background: var(--card); }
.chat-err:empty { display: none; }

/* ---------- кабинет ---------- */
.acc-wrap { max-width: 720px; margin: 48px auto; padding: 0 20px; }
.acc-card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; margin-bottom: 20px; }
.acc-sub-active { display: flex; align-items: center; gap: 12px; color: var(--grass-hover); font-weight: 600; }
.acc-row { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--milk-warm); font-size: 15px; flex-wrap: wrap; }
.acc-row:last-child { border-bottom: none; }
.acc-row .grow { flex: 1; min-width: 180px; }
.acc-row .sub-note { font-size: 13px; color: var(--wood); }

/* ---------- анимация появления ---------- */
.fade-in { animation: appear .5s ease-out both; }
@keyframes appear { from { opacity: 0; transform: translateY(12px); } }

/* ---------- адаптив ---------- */
@media (max-width: 900px) {
  .hero-grid, .calendar-wrap, .about-grid { grid-template-columns: 1fr; }
  .cards, .reviews, .news-grid { grid-template-columns: 1fr 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-side { flex-direction: row; flex-wrap: wrap; align-items: center; padding: 12px 16px; }
  .admin-side .logo { margin: 0 16px 0 0; }
  .admin-side .spacer { display: none; }
  .admin-main { padding: 24px 16px; }
  .stat-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0;
         background: var(--milk); flex-direction: column; padding: 18px 24px; gap: 16px;
         border-bottom: 1px solid var(--wood-soft); box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .burger { display: block; }
  .header .btn { display: none; }
  .cards, .reviews, .news-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 40px; }
  .sub-banner { justify-content: center; text-align: center; }
  .section { padding: 52px 0; }
  .btn { padding: 15px 24px; }  /* крупнее для пальца */
  .modal-body { padding: 20px; }
}
