/* ═══════════════════════════════════════════════════════════════════
   base-style.css — общие стили сайта gvpitanie.ru
   Версия: v5 «Clean & Gentle»
   Подключается ко всем страницам через partials/head.ejs
   ─────────────────────────────────────────────────────────────────
   Содержит: переменные, reset, типографику, layout, header, footer,
   breadcrumbs, кнопки, секции, nav-grid, hub-card, faq, accordion,
   author/expert, section-label, sticky-nav, status-note
═══════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────
   CSS VARIABLES
───────────────────────────────────────────────────────────────── */
:root {
  /* Фон */
  --bg:        #FFFFFF;
  --bg-warm:   #FDFAF6;
  --surface:   #F7F3EE;
  --paper:     #FFFFFF;

  /* Rose — фирменный */
  --rose:      #B7104C;
  --rose-mid:  #FF8FA3;
  --rose-5:    #FF6B8A;
  --rose-soft: #FFCDD7;
  --rose-bg:   #FFF5F7;
  --rose-1:    #FFF0F3;
  --rose-2:    #FDDDE4;

  /* Sky */
  --sky:       #5BA4CF;
  --sky-deep:  #005895;
  --sky-soft:  #C9E3F5;
  --sky-bg:    #F0F7FC;
  --blue:      #005895;
  --blue-1:    #EEF6FC;
  --blue-2:    #D4EAFA;
  --blue-5:    #3A8CC4;

  /* Mint / Green */
  --mint:      #16A34A;
  --mint-soft: #BBF7D0;
  --mint-bg:   #F0FDF4;
  --mint-text: #15803D;
  --mint-dark: #1F7F6A;
  --green:     #0A6D2A;
  --green-5:   #22c55e;
  --green-mid: #34d399;

  /* Warn */
  --warn:      #D97706;
  --warn-soft: #FDE68A;
  --warn-bg:   #FFFBEB;
  --warn-text: #B45309;

  /* Stop */
  --stop:      #E11D48;
  --stop-soft: #FECDD3;
  --stop-bg:   #FFF1F2;
  --stop-text: #BE123C;

  /* Peach */
  --peach-bg:  #FFF7F0;
  --peach-br:  #F5C4B3;
  --peach:     #D85A30;
  --peach-dk:  #993C1D;

  /* Текст */
  --dark:      #1A2535;
  --mid:       #3D4F66;
  --muted:     #7A8EA8;
  --light:     #F4F7FA;
  --white:     #FFFFFF;
  --border:    rgba(26, 37, 53, 0.08);
  --border-2:  rgba(26, 37, 53, 0.14);

  /* Тени */
  --sh-sm: 0 2px 8px rgba(26,37,53,.06);
  --sh-md: 0 8px 28px rgba(26,37,53,.09);
  --sh-lg: 0 20px 60px rgba(26,37,53,.12);

  /* Радиусы */
  --r-xs:  8px;
  --r-sm:  12px;
  --r-md:  16px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-pill: 999px;

  /* Шрифты */
  --ff-head: 'Lora', Georgia, serif;
  --ff-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Layout */
  --header-h:  64px;
  --content-w: 1200px;

  /* Цвета меню кормящей (mg-) */
  --mg-c1: #0F6E56; --mg-c1-bg: #D8F4DF;
  --mg-c2: #B55A10; --mg-c2-bg: #FFE8D4;
  --mg-c3: #9A6210; --mg-c3-bg: #FFF0BC;
  --mg-c4: #A01848; --mg-c4-bg: #F8D0DF;
  --mg-c5: #4A5568; --mg-c5-bg: #EAECF0;
  --mg-c6: #0E6EA8; --mg-c6-bg: #D0EEFF;
  --mg-c7: #7A4F10; --mg-c7-bg: #F2E4CC;
  --mg-c8: #6030A8; --mg-c8-bg: #EAE0FF;
  --mg-c9: #1A6A40; --mg-c9-bg: #CCF0E0;
  --mg-c10: #5820A0; --mg-c10-bg: #E8D8F8;
  --mg-c11: #1A5070; --mg-c11-bg: #D8EAF4;
}

/* ─────────────────────────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

/* ─────────────────────────────────────────────────────────────────
   ТИПОГРАФИКА
───────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--ff-head);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--dark);
}
h1 { font-size: clamp(26px, 6vw, 44px); }
h2 { font-size: clamp(22px, 4.2vw, 32px); }
h3 { font-size: clamp(18px, 3vw, 22px); }
em { font-style: italic; color: var(--rose); font-weight: 500; }

/* Card-title (совместимость с существующими EJS) */
.card-title {
  font-family: var(--ff-head);
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.25;
}
.card-title em, .card-title .akcent-green { font-style: italic; color: var(--rose); }
.card-subtitle {
  font-size: 15px;
  color: var(--mid);
  margin-bottom: 20px;
  line-height: 1.78;
  font-weight: 300;
}
.card-text p, .prose p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.78;
  font-weight: 300;
  margin-bottom: 12px;
}
.card-text p:last-child, .prose p:last-child { margin-bottom: 0; }

/* Числа с фиксированной шириной */
.num {
  font-family: var(--ff-body);
  font-weight: 700;
  font-feature-settings: "tnum";
  letter-spacing: -0.02em;
}

/* ─────────────────────────────────────────────────────────────────
   SECTION LABEL
───────────────────────────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}
.section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--rose-5);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-label--center {
  display: flex;
  justify-content: center;
}
.section-label--center::after {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--rose-5);
  border-radius: 2px;
}

/* ─────────────────────────────────────────────────────────────────
   LAYOUT
───────────────────────────────────────────────────────────────── */
.site-wrapper { min-height: 100vh; display: flex; flex-direction: column; }
.main-content { flex: 1; }
.wrap { max-width: var(--content-w); margin: 0 auto; padding: 0 16px; }
.page  { max-width: var(--content-w); margin: 0 auto; padding: 0 16px 40px; }
.section { padding: 40px 0; }

/* ─────────────────────────────────────────────────────────────────
   HEADER
───────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  box-shadow: 0 2px 12px rgba(26,37,53,.05);
}
.header-inner {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
/* Логотип */
.logo {
  font-family: var(--ff-head);
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.logo a { display: flex; align-items: center; gap: 8px; color: var(--dark); text-decoration: none; }
.logo img { height: 44px; width: auto; display: block; }
.logo::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--rose);
  border-radius: 50%;
  flex-shrink: 0;
}
/* Если логотип — изображение, скрываем псевдоэлемент */
.logo.logo--img::before { display: none; }

.header-right { display: flex; align-items: center; gap: 8px; }
.login-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 700;
  color: var(--sky-deep);
  transition: background .18s;
}
.login-link:hover { background: var(--sky-bg); }
.login-link svg { width: 22px; height: 22px; stroke-width: 1.6; flex-shrink: 0; }
.login-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: block;
  background-color: var(--sky-deep);
  -webkit-mask-image: url('/icons/google_icons/person.svg');
  mask-image: url('/icons/google_icons/person.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.login-text { line-height: 1; display: none; }
@media (min-width: 640px) { .login-text { display: inline; } }

/* Бургер */
.burger-wrapper { display: flex; align-items: center; }
.burger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--rose-5);
  border: none;
  cursor: pointer;
  transition: all .2s;
  padding: 0;
  flex-shrink: 0;
}
.burger-btn:hover { background: var(--rose); }
.burger-lines { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.burger-lines span {
  display: block;
  border-radius: 2px;
  background: #fff;
  transition: background .2s;
}
.burger-lines span:nth-child(1),
.burger-lines span:nth-child(3) { width: 18px; height: 2px; }
.burger-lines span:nth-child(2) { width: 12px; height: 2px; }

/* ─────────────────────────────────────────────────────────────────
   MOBILE MENU
───────────────────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: var(--white);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(26,37,53,.14);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: var(--header-h);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mobile-menu-logo img { height: 44px; width: auto; vertical-align: middle; }
.close-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  background: var(--white);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: var(--muted);
  padding: 0;
  transition: all .18s;
}
.close-btn:hover { background: var(--rose-bg); border-color: var(--rose-soft); color: var(--rose); }
.mobile-nav {
  flex: 1;
  overflow-y: auto;
  padding: 12px 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--mid);
  text-decoration: none;
  transition: background .18s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a.active { background: var(--rose-bg); color: var(--rose); }
.mobile-nav a.active { font-weight: 700; }
.mobile-nav a::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose-soft);
  flex-shrink: 0;
  transition: background .18s;
}
.mobile-nav a:hover::before, .mobile-nav a.active::before { background: var(--rose); }
.mobile-nav-divider { height: 1px; background: var(--border); margin: 6px 4px; }
.mobile-auth {
  padding: 12px 12px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.mobile-auth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: var(--white);
  transition: opacity .2s;
}
.mobile-auth-btn:hover { opacity: .88; }
.mobile-auth-btn--rose { background: linear-gradient(135deg, var(--rose-5), var(--rose-mid)); }
.mobile-auth-btn--sky  { background: linear-gradient(135deg, var(--sky), #7BBFDF); }
.mobile-auth-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.overlay {
  position: fixed; inset: 0;
  background: rgba(26,37,53,.35);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1050;
  display: none;
}
.overlay.show { display: block; }
#mm-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(10,15,25,.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1500;
  cursor: pointer;
}
body.mm-dropdown-open #mm-overlay { display: block !important; }
body.mm-dropdown-open { overflow: hidden; }

/* ─────────────────────────────────────────────────────────────────
   BREADCRUMBS
───────────────────────────────────────────────────────────────── */
.breadcrumbs {
  padding: 14px 0 4px;
  font-size: 12px;
  color: var(--muted);
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
.breadcrumbs::-webkit-scrollbar { display: none; }
.breadcrumbs ol { display: inline-flex; gap: 8px; align-items: center; }
.breadcrumbs li { display: flex; align-items: center; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; opacity: 0.4; }
.breadcrumbs a { color: var(--rose); font-weight: 600; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs .active { color: var(--dark); font-weight: 600; }

/* ─────────────────────────────────────────────────────────────────
   КНОПКИ
───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--r-pill);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { width: 14px; height: 14px; stroke-width: 2.4; flex-shrink: 0; }
.btn::before { font-style: normal; flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, var(--rose-5), var(--rose-mid));
  color: #fff;
  box-shadow: 0 8px 24px rgba(255,107,138,.35);
}
.btn-primary:hover { box-shadow: 0 12px 32px rgba(255,107,138,.45); }

.btn-secondary {
  background: var(--paper);
  color: var(--dark);
  border-color: var(--border-2);
  box-shadow: var(--sh-sm);
}
.btn-secondary:hover { box-shadow: var(--sh-md); border-color: var(--sky-soft); }

.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-success {
  background: linear-gradient(135deg, var(--green-5), var(--green-mid));
  color: #fff;
  box-shadow: 0 8px 24px rgba(22,163,74,.35);
}
.btn-success:hover { box-shadow: 0 12px 32px rgba(22,163,74,.45); }

.btn-info {
  background: linear-gradient(135deg, #38bdf8, #7dd3fc);
  color: #fff;
  box-shadow: 0 8px 24px rgba(59,130,246,.35);
}

/* Иконки-эмодзи кнопок */
.btn-icon--menu::before   { content: '📅'; }
.btn-icon--broccoli::before { content: '🥦'; }
.btn-icon--carrot::before { content: '🥕'; }
.btn-icon--plan::before   { content: '📋'; }
.btn-icon--herb::before   { content: '🌿'; }
.btn-icon--search::before { content: '🔍'; margin-right: 6px; }
.btn-icon--filter::before { content: '🗂️'; margin-right: 6px; }
.btn-icon--pdf::before    { content: '📥'; margin-right: 6px; }

/* ─────────────────────────────────────────────────────────────────
   HERO (базовый — для страниц основного питания)
───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, #FFF1F4 0%, #FFF8F0 40%, #F0F9FF 100%);
  border: 1px solid var(--border);
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 1fr 300px;
  min-height: 380px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,138,.15) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.hero-body {
  padding: 48px 40px 44px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-aside {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 20px;
  gap: 10px;
  justify-content: center;
}
.hero h1 { font-size: clamp(28px, 5vw, 44px); margin-bottom: 14px; }
.hero h1 em { font-style: italic; color: var(--rose); }
.hero-lead {
  font-size: 14.5px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 300;
  max-width: 520px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--rose-bg);
  border: 1px solid var(--rose-soft);
  font-size: 10px;
  font-weight: 700;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
  width: fit-content;
}
.hero-eyebrow::before { content: '🗓'; font-style: normal; }
.hero-eyebrow--herb-base::before { content: '🌿'; font-style: normal; }

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--mint-dark);
  background: var(--mint-bg);
  border: 1px solid var(--mint-soft);
  border-radius: var(--r-sm);
  padding: 10px 16px;
  margin-bottom: 24px;
  width: fit-content;
}
.hero-tagline::before { content: '✅ '; font-style: normal; flex-shrink: 0; }

/* Мини-карточки в aside */
.hero-stat {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--sh-sm);
  transition: transform .18s;
}
.hero-stat:hover { transform: translateX(3px); }
.hero-stat-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.hero-stat-icon::before { font-style: normal; }
.hero-stat-icon--cal     { background: var(--rose-bg); } .hero-stat-icon--cal::before     { content: '🗓️'; }
.hero-stat-icon--sprout  { background: var(--sky-bg); }  .hero-stat-icon--sprout::before  { content: '🌱'; }
.hero-stat-icon--balance { background: var(--mint-bg); } .hero-stat-icon--balance::before { content: '⚖️'; }
.hero-stat-icon--zen     { background: var(--peach-bg); } .hero-stat-icon--zen::before    { content: '🧘'; }
.hero-stat-icon--check   { background: var(--mint-bg); } .hero-stat-icon--check::before   { content: '✅'; }
.hero-stat-icon--feed    { background: var(--rose-bg); } .hero-stat-icon--feed::before    { content: '🤱'; }
.hero-stat-icon--bowl    { background: var(--sky-bg); }  .hero-stat-icon--bowl::before    { content: '🥣'; }
.hero-stat-icon--drop    { background: var(--mint-bg); } .hero-stat-icon--drop::before    { content: '💧'; }
.hero-stat-icon--herb    { background: var(--peach-bg); } .hero-stat-icon--herb::before   { content: '🌿'; }
.hero-stat-icon--broccoli { background: var(--mint-bg); } .hero-stat-icon--broccoli::before { content: '🥦'; }
.hero-stat-icon--caution { background: var(--peach-bg); } .hero-stat-icon--caution::before { content: '⚠️'; }
.hero-stat-icon--forbid  { background: var(--rose-bg); } .hero-stat-icon--forbid::before  { content: '❌'; }
.hero-stat-label { font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.3; }
.hero-stat-sub   { font-size: 11.5px; color: var(--muted); margin-top: 1px; }

/* ─────────────────────────────────────────────────────────────────
   FAQ
───────────────────────────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.faq-item:hover { box-shadow: var(--sh-md); }
.faq-item.open { border-color: var(--rose-soft); background: var(--rose-bg); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  text-align: left;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  cursor: pointer;
  background: none;
  border: none;
}
.faq-question::before {
  content: "?";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--rose-soft);
  color: var(--rose);
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.faq-item.open .faq-question::before { background: var(--rose); color: #fff; }
.faq-arrow {
  margin-left: auto;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
  transition: background .2s, color .2s;
}
.faq-item.open .faq-arrow { background: var(--rose); color: #fff; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s cubic-bezier(.4,0,.2,1);
}
.faq-item.open .faq-answer { max-height: 800px; }
.faq-answer-inner {
  padding: 0 16px 16px 52px;
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
  font-weight: 300;
}
.faq-answer-inner p { margin-bottom: 8px; }
.faq-answer-inner p:last-child, .faq-answer-inner ul:last-child { margin-bottom: 0; }
.faq-answer-inner ul { padding-left: 18px; margin: 6px 0 10px; list-style: disc; }
.faq-answer-inner li { margin-bottom: 4px; }

/* ─────────────────────────────────────────────────────────────────
   АККОРДЕОН (общий)
───────────────────────────────────────────────────────────────── */
.accordion { display: flex; flex-direction: column; gap: 8px; }
.accordion-item {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.accordion-item:hover { box-shadow: var(--sh-md); }
.accordion-item.is-open { border-color: var(--rose-soft); }
.accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .15s;
  min-height: 56px;
}
.accordion-toggle:hover { background: var(--rose-bg); }
.accordion-item.is-open .accordion-toggle { background: var(--rose-1); }
.accordion-icon { font-size: 20px; flex-shrink: 0; width: 32px; text-align: center; line-height: 1; }
.accordion-title { flex: 1; font-size: 15px; font-weight: 700; color: var(--dark); line-height: 1.3; }
.accordion-chevron {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: transform .3s, background .2s, color .2s;
}
.accordion-chevron svg { width: 14px; height: 14px; transition: transform .3s; }
.accordion-item.is-open .accordion-chevron { background: var(--rose-soft); color: var(--rose); border-color: var(--rose-soft); }
.accordion-item.is-open .accordion-chevron svg { transform: rotate(180deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s cubic-bezier(.4,0,.2,1);
}
.accordion-item.is-open .accordion-content { max-height: 3000px; }
.accordion-content-inner { padding: 24px; }
.acc-subtitle { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 10px; line-height: 1.5; }
.acc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.acc-list li {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
  font-weight: 300;
  padding-left: 18px;
  position: relative;
}
.acc-list li::before { content: '•'; position: absolute; left: 0; top: 0; color: var(--rose-mid); font-weight: 700; }
/* Заблокированный аккордеон */
.accordion-item--lock { opacity: 0.62; pointer-events: none; user-select: none; }
.accordion-item--lock .accordion-icon { filter: grayscale(1); }
.accordion-item--lock .accordion-title { color: var(--muted); }
.accordion-item--lock .accordion-toggle { cursor: not-allowed; }

/* ─────────────────────────────────────────────────────────────────
   AUTHOR / EXPERT BLOCK
───────────────────────────────────────────────────────────────── */
.author {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
}
.author-aside {
  background: var(--rose-bg);
  padding: 28px 22px;
  text-align: center;
  border-right: 1px solid var(--rose-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.author-img {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--paper);
  box-shadow: 0 6px 24px rgba(183,16,76,.18);
  flex-shrink: 0;
}
.author-info { display: flex; flex-direction: column; align-items: center; gap: 4px; width: 100%; }
.author-name { font-family: var(--ff-head); font-size: 18px; font-weight: 600; color: var(--dark); line-height: 1.3; }
.author-role { font-size: 12.5px; color: var(--rose); font-weight: 600; line-height: 1.5; }
.author-meta {
  list-style: none;
  margin-top: 4px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.7);
  border: 1px solid var(--border);
  text-align: left;
}
.author-meta li { font-size: 12.5px; color: var(--mid); line-height: 1.4; display: flex; align-items: flex-start; gap: 8px; }
.author-meta li::before { content: '✦'; font-size: 7px; color: var(--rose-5); flex-shrink: 0; margin-top: 4px; font-style: normal; }
.author-link-wrap { width: 100%; display: flex; flex-direction: column; gap: 6px; align-items: center; margin-top: auto; }
.author-link-hint { font-size: 11px; color: var(--muted); text-align: center; }
.author-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  background: var(--rose);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  width: 100%;
  transition: opacity .2s;
}
.author-link:hover { opacity: .88; }
.author-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  margin-bottom: 16px;
  border-radius: var(--r-pill);
  background: var(--rose);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  width: fit-content;
}
.author-main { padding: 28px 32px; display: flex; flex-direction: column; justify-content: space-between; }
.author-text p { font-size: 15px; color: var(--mid); line-height: 1.78; font-weight: 300; margin-bottom: 10px; }
.author-text p:last-child { margin-bottom: 0; }
.author-footer { margin-top: 20px; padding-top: 16px; border-top: 1px dashed var(--border); display: flex; flex-direction: column; gap: 8px; }
.author-source { font-size: 13px; color: var(--dark); line-height: 1.6; font-weight: 600; }
.author-disclaimer { font-size: 11px; color: var(--muted); line-height: 1.65; font-weight: 300; font-style: italic; }

/* ─────────────────────────────────────────────────────────────────
   СНОСКА СТАТУСА ПРОДУКТА
───────────────────────────────────────────────────────────────── */
.status-note, .prod-status-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  border-left: 3px solid;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 16px;
}
.status-note p, .prod-status-note p { margin: 0; }

.status-note--ok,
.prod-status-note--ok {
  background: var(--mint-bg);
  border-color: var(--mint);
  color: var(--dark);
}
.status-note--warning,
.prod-status-note--warning {
  background: var(--warn-bg);
  border-color: var(--warn);
  color: var(--dark);
}
.status-note--stop,
.prod-status-note--stop {
  background: var(--stop-bg);
  border-color: var(--stop);
  color: var(--dark);
}

/* Иконка статуса через маску */
.status-note__icon,
.prod-status-note__icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: inline-block;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  margin-top: 1px;
}
.status-note--ok    .status-note__icon,
.prod-status-note--ok .prod-status-note__icon {
  background-color: var(--mint);
  -webkit-mask-image: url('/icons/google_icons/check_circle.svg');
  mask-image: url('/icons/google_icons/check_circle.svg');
}
.status-note--warning .status-note__icon,
.prod-status-note--warning .prod-status-note__icon {
  background-color: var(--warn);
  -webkit-mask-image: url('/icons/google_icons/warning.svg');
  mask-image: url('/icons/google_icons/warning.svg');
}
.status-note--stop  .status-note__icon,
.prod-status-note--stop .prod-status-note__icon {
  background-color: var(--stop);
  -webkit-mask-image: url('/icons/google_icons/cancel.svg');
  mask-image: url('/icons/google_icons/cancel.svg');
}

/* ─────────────────────────────────────────────────────────────────
   NAV-GRID (связанные разделы)
───────────────────────────────────────────────────────────────── */
.nav-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 20px;
}
.nav-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: var(--r-lg);
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
  transition: transform .22s, box-shadow .22s;
  min-height: 120px;
}
.nav-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }

/* Иконка nav-card — белый кружок + SVG маска */
.nav-card-icon-wrap,
.nav-card-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-card-icon-img {
  display: block;
  width: 22px; height: 22px;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
}
.nav-card-icon svg { width: 22px; height: 22px; stroke-width: 1.7; }

.nav-card-title { font-family: var(--ff-head); font-size: 17px; font-weight: 500; line-height: 1.3; color: var(--dark); }
.nav-card-cta { margin-top: auto; font-size: 12px; font-weight: 700; display: flex; align-items: center; gap: 4px; }
.nav-card-cta::after { content: '→'; }

/* Варианты карточек */
.nav-card--osnovy  { background: #FAF5FF; border-color: rgba(120,11,245,.06); }
.nav-card--osnovy  .nav-card-icon-img { -webkit-mask-image: url('/icons/google_icons/stacks_light.svg'); mask-image: url('/icons/google_icons/stacks_light.svg'); background-color: #7C3AED; }
.nav-card--osnovy  .nav-card-icon svg { color: #7C3AED; }
.nav-card--osnovy  .nav-card-cta { color: #6d3fbb; }

.nav-card--posle   { background: #FFF1F2; border-color: rgba(239,68,68,.1); }
.nav-card--posle   .nav-card-icon-img { -webkit-mask-image: url('/icons/google_icons/favorite_light.svg'); mask-image: url('/icons/google_icons/favorite_light.svg'); background-color: #fd4848; }
.nav-card--posle   .nav-card-icon svg { color: #fd4848; }
.nav-card--posle   .nav-card-cta { color: #c70000; }

.nav-card--pervyj  { background: #F0F9FF; border-color: rgba(11,161,245,.1); }
.nav-card--pervyj  .nav-card-icon-img { -webkit-mask-image: url('/icons/google_icons/calendar_month_light.svg'); mask-image: url('/icons/google_icons/calendar_month_light.svg'); background-color: #0284C7; }
.nav-card--pervyj  .nav-card-icon svg { color: #0284C7; }
.nav-card--pervyj  .nav-card-cta { color: #0369A1; }

.nav-card--menu    { background: #F9FAFB; border-color: rgba(0,0,0,.06); }
.nav-card--menu    .nav-card-icon-img { -webkit-mask-image: url('/icons/google_icons/skillet_light.svg'); mask-image: url('/icons/google_icons/skillet_light.svg'); background-color: #4B5563; }
.nav-card--menu    .nav-card-icon svg { color: #4B5563; }
.nav-card--menu    .nav-card-cta { color: #374151; }

.nav-card--ogr     { background: #FFFAE7; border-color: rgba(245,158,11,.15); }
.nav-card--ogr     .nav-card-icon-img { -webkit-mask-image: url('/icons/google_icons/warning_light.svg'); mask-image: url('/icons/google_icons/warning_light.svg'); background-color: #d97706; }
.nav-card--ogr     .nav-card-icon svg { color: #d97706; }
.nav-card--ogr     .nav-card-cta { color: var(--warn-text); }

.nav-card--katalog { background: var(--mint-bg); border-color: rgba(34,197,94,.1); }
.nav-card--katalog .nav-card-icon-img { -webkit-mask-image: url('/icons/google_icons/search.svg'); mask-image: url('/icons/google_icons/search.svg'); background-color: #16A34A; }
.nav-card--katalog .nav-card-icon svg { color: #16A34A; }
.nav-card--katalog .nav-card-cta { color: var(--mint-text); }

/* ─────────────────────────────────────────────────────────────────
   HUB GRID & PRODUCT CARDS
───────────────────────────────────────────────────────────────── */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.hub-card {
  display: flex;
  flex-direction: column;
  padding: 14px;
  border-radius: var(--r-lg);
  border: 1px solid;
  min-height: 130px;
  color: inherit;
  text-decoration: none;
  transition: transform .22s, box-shadow .22s;
  position: relative;
}
.hub-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.hub-card.hidden { display: none !important; }

.hub-card--status-1 { background: var(--mint-bg); border-color: rgba(34,197,94,.12); }
.hub-card--status-2 { background: var(--warn-bg); border-color: rgba(245,158,11,.15); }
.hub-card--status-3 { background: var(--stop-bg); border-color: rgba(239,68,68,.12); }

.hub-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }

/* Иконка статуса — белый кружок */
.hub-card-status {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
}
.hub-card--status-1 .hub-card-status { color: var(--mint); }
.hub-card--status-2 .hub-card-status { color: var(--warn); }
.hub-card--status-3 .hub-card-status { color: var(--stop); }
.hub-card-status svg { width: 16px; height: 16px; stroke-width: 2.4; }

/* Иконка статуса — белый кружок + иконка внутри через ::before */
.hub-card-status-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--paper);
  border-radius: 50%;
}
.hub-card-status-icon::before {
  content: "";
  display: block;
  width: 16px; height: 16px;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
}
.hub-card-status-icon--1::before {
  background-color: var(--mint);
  -webkit-mask-image: url('/icons/google_icons/check.svg');
  mask-image: url('/icons/google_icons/check.svg');
}
.hub-card-status-icon--2::before {
  background-color: var(--warn);
  -webkit-mask-image: url('/icons/google_icons/warning.svg');
  mask-image: url('/icons/google_icons/warning.svg');
}
.hub-card-status-icon--3::before {
  background-color: var(--stop);
  -webkit-mask-image: url('/icons/google_icons/cancel.svg');
  mask-image: url('/icons/google_icons/cancel.svg');
}

.hub-card-badge {
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hub-card-badge--1 { background: rgba(220,252,231,.7); color: var(--mint-text); }
.hub-card-badge--2 { background: rgba(254,243,199,.7); color: var(--warn-text); }
.hub-card-badge--3 { background: rgba(254,226,226,.7); color: var(--stop-text); }

/* Совместимость со старым вариантом */
.hub-card-badge--status-1 { background: rgba(220,252,231,.7); color: var(--mint-text); }
.hub-card-badge--status-2 { background: rgba(254,243,199,.7); color: var(--warn-text); }
.hub-card-badge--status-3 { background: rgba(254,226,226,.7); color: var(--stop-text); }

.hub-card-body { flex: 1; display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
.hub-card-name {
  font-family: var(--ff-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}
.hub-card-name-wrap { height: calc(17px * 1.3 * 2); display: flex; align-items: flex-end; overflow: hidden; }
.hub-card-when, .hub-card-intro-text { font-size: 12px; color: var(--mid); }

.hub-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  border-top: 1px dashed rgba(26,37,53,.1);
  margin-top: auto;
}
.hub-card-cat, .hub-card-cat-pill {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.hub-card-arrow {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
}
.hub-card-arrow svg { width: 11px; height: 11px; stroke-width: 2.4; }
/* Стрелка — белый кружок + иконка внутри через ::before */
.hub-card-arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--paper);
  border-radius: 50%;
  transition: background .15s;
}
.hub-card-arrow-icon::before {
  content: "";
  display: block;
  width: 12px; height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A2535' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 5l7 7-7 7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.hub-load-more-wrap { text-align: center; padding: 24px 0; }
.hub-load-more-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 32px;
  border-radius: var(--r-pill);
  border: none;
  background: linear-gradient(135deg, var(--rose-5), var(--rose-mid));
  color: #fff;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255,107,138,.35);
  transition: transform .2s, box-shadow .2s;
}
.hub-load-more-pill-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,138,.45); }
.hub-empty { text-align: center; padding: 40px 20px; color: var(--muted); }
.hub-empty p { margin-bottom: 16px; font-size: 16px; }

/* ─────────────────────────────────────────────────────────────────
   STICKY NAV
───────────────────────────────────────────────────────────────── */
.sticky-nav {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 950;
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 8px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  box-shadow: var(--sh-lg);
  transition: opacity .25s ease, transform .25s ease;
}
.sticky-nav a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  transition: all .2s;
}
.sticky-nav a::before { font-style: normal; flex-shrink: 0; }
.sticky-nav__menu::before    { content: '📅'; }
.sticky-nav__search::before  { content: '🔍'; }
.sticky-nav__broccoli::before { content: '🥦'; }
.sticky-nav__carrot::before  { content: '🥕'; }
.sticky-nav a:first-child {
  background: linear-gradient(135deg, var(--rose-5), var(--rose-mid));
  color: #fff;
  box-shadow: 0 6px 18px rgba(255,107,138,.38);
}
.sticky-nav a:first-child:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(255,107,138,.48); }
.sticky-nav a:last-child { background: var(--sky-bg); border: 1px solid var(--sky-soft); color: var(--blue); }
.sticky-nav a:last-child:hover { background: var(--sky); color: #fff; border-color: transparent; }
.sticky-nav--hidden { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(12px); }

/* ─────────────────────────────────────────────────────────────────
   БАННЕР «МЕНЮ» (pmb)
───────────────────────────────────────────────────────────────── */
.pmb, .pmb-banner {
  display: block;
  background: var(--peach-bg);
  border: 1px solid var(--peach-br);
  border-radius: var(--r-xl);
  padding: 18px;
  text-decoration: none;
  color: inherit;
  transition: background .2s, box-shadow .2s;
}
.pmb:hover, .pmb-banner:hover {
  background: #FFF0E6;
  box-shadow: 0 4px 16px rgba(216,90,48,.08);
}
.pmb-top { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.pmb-img {
  width: 64px; height: 64px;
  background: var(--paper);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,.04);
  overflow: hidden;
}
.pmb-img svg { width: 48px; height: 48px; }
.pmb-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--peach-dk); margin-bottom: 4px; }
.pmb-title { font-family: var(--ff-head); font-size: 17px; font-weight: 500; line-height: 1.3; color: #4A1B0C; }
.pmb-body .pmb-eyebrow { margin-bottom: 8px; }
.pmb-body .pmb-title   { font-size: 20px; margin-bottom: 6px; }
.pmb-sub { font-size: 13px; color: #712B13; line-height: 1.55; margin-bottom: 14px; }
.pmb-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--dark);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 700;
}

/* ─────────────────────────────────────────────────────────────────
   CTA БАННЕР (общий)
───────────────────────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: 48px 40px;
  background: linear-gradient(135deg, var(--rose-2) 0%, var(--blue-2) 100%);
  text-align: center;
}
.cta-banner::before, .cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  pointer-events: none;
}
.cta-banner::before { top: -50px; right: -50px; width: 200px; height: 200px; }
.cta-banner::after  { bottom: -40px; left: 28%; width: 180px; height: 180px; }
.cta-banner-inner { position: relative; z-index: 1; }
.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.8);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--rose-5);
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 18px;
}
.cta-tag::before { content: '🌿'; font-style: normal; }
.cta-banner h2 { font-size: clamp(22px, 3vw, 34px); margin-bottom: 12px; line-height: 1.2; }
.cta-banner h2 em { font-style: italic; color: var(--rose-5); }
.cta-banner p { font-size: 15px; color: var(--mid); line-height: 1.78; max-width: 540px; margin: 0 auto 24px; font-weight: 300; }
.cta-banner-actions { display: flex; flex-direction: column; gap: 10px; align-items: center; margin-bottom: 16px; }
.cta-banner-trust { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.85); }

/* ─────────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────────── */
.gvf {
  background: #1C2333;
  color: rgba(255,255,255,.6);
  padding: 40px 0 0;
  margin-top: 48px;
}
.gvf-inner {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 16px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.gvf .logo { color: #fff; margin-bottom: 10px; }
.gvf .logo::before { background: var(--rose-soft); }
.gvf .logo a { color: #fff; }
.gvf-tagline { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,.6); margin-bottom: 18px; font-weight: 300; }
.gvf-phone { display: block; font-family: var(--ff-head); font-size: 18px; font-weight: 600; color: #fff; }
.gvf-phone-sub, .gvf-email-sub { font-size: 11px; color: rgba(255,255,255,.4); margin-bottom: 8px; }
.gvf-email { display: block; color: var(--sky-soft); font-size: 14px; font-weight: 700; }
.gvf-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sky-soft);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.gvf-nav { display: flex; flex-direction: column; gap: 6px; }
.gvf-nav a { font-size: 13px; color: rgba(255,255,255,.82); padding: 4px 0; transition: color .18s; }
.gvf-nav a:hover { color: #fff; }
.gvf-bottom {
  padding: 14px 16px;
  max-width: var(--content-w);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 11px;
  color: rgba(255,255,255,.5);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ─────────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────────── */
@media (min-width: 640px) {
  body { font-size: 15.5px; }
  .wrap, .page { padding: 0 24px; }
  .section { padding: 52px 0; }
  .header-inner { padding: 0 24px; }

  .hero { grid-template-columns: 1.1fr 280px; }

  .hub-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .nav-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .pmb .pmb-top { margin-bottom: 0; }
  .pmb-banner {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 18px 22px;
  }
  .pmb-banner .pmb-top { display: contents; }
  .pmb-banner .pmb-img { width: 100px; height: 80px; }
  .pmb-banner .pmb-sub { margin-bottom: 0; }

  .cta-banner-actions { flex-direction: row; justify-content: center; }

  .gvf-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
  .gvf-brand { grid-column: 1 / -1; }
  .gvf-bottom { flex-direction: row; justify-content: space-between; flex-wrap: wrap; }
}

@media (min-width: 960px) {
  body { font-size: 16px; }
  .wrap, .page { padding: 0 32px; }
  .section { padding: 64px 0; }
  .header-inner { padding: 0 32px; }

  .hero { min-height: 400px; }

  .author {
    grid-template-columns: 280px 1fr;
  }
  .author-aside { border-right: 1px solid var(--rose-soft); border-bottom: none; }

  .hub-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .nav-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }

  .gvf-inner { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
  .gvf-brand { grid-column: auto; }
}

@media (max-width: 640px) {
  .hero { grid-template-columns: 1fr; }
  .hero-aside { display: none; }
  .author { grid-template-columns: 1fr; }
  .author-aside { border-right: none; border-bottom: 1px solid var(--rose-soft); }
}
