/* Sophie la girafe — французский бэби-бренд с 1961. Палитра из лого/баннера:
   кремовый фон, чернильно-коричневый ink, карамель пятен жирафа как акцент,
   мягкий голубой лагуны для bath-настроения.
   Мотив: ряд карамельных «пятен жирафа» (точечная полоска) вместо жёстких линий. */

/* Шрифты свои (latin-подмножества в assets/fonts/): Baloo 2 — округлая
   display-гарнитура для заголовков и wordmark; Nunito Sans — текст. */
@font-face { font-family: 'Baloo 2'; font-style: normal; font-weight: 400 800; font-display: swap;
  src: url(../fonts/baloo2.woff2) format('woff2'); }
@font-face { font-family: 'Nunito Sans'; font-style: normal; font-weight: 200 1000; font-display: swap;
  src: url(../fonts/nunitosans.woff2) format('woff2'); }

:root {
  --accent: #c9863f;        /* карамель пятен жирафа */
  --accent-dark: #a05f24;
  --accent-deep: #7c4718;   /* тёмный тон для градиентов */
  --lagoon: #7fb5c4;        /* мягкий голубой bath-акцент */
  --lagoon-deep: #4f8b9c;
  --lagoon-ink: #2e5a67;
  --ink: #4a3f3c;           /* тёплый чернильно-коричневый текст */
  --ink-soft: #6b5e58;
  --cream: #faf5ef;         /* кремовый фон сайта */
  --paper: #fffdf9;
  --card: #ffffff;
  --line: #eadfd2;
  --muted: #9b8b80;
  --star: #e8a63c;
  --radius: 16px;
  --shadow: 0 2px 10px rgba(74, 63, 60, .08);
  --shadow-hover: 0 12px 28px rgba(74, 63, 60, .16);
}

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

body {
  font-family: 'Nunito Sans', 'Segoe UI', Arial, sans-serif;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
}

h1, h2, h3, h4 { font-family: 'Baloo 2', 'Comic Sans MS', cursive; font-weight: 700; line-height: 1.2; letter-spacing: .004em; }
img { max-width: 100%; display: block; }
a { color: var(--accent-dark); text-decoration: none; }

.shell { max-width: 1180px; margin: 0 auto; padding: 0 22px; }

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .05em;
  padding: 12px 32px 13px;
  border-radius: 99px;
  border: 0;
  transition: background .18s, transform .18s;
}
.btn:hover { background: var(--ink); transform: translateY(-1px); }

/* пятнистая полоска-мотив: три карамельных пятна жирафа */
.motif {
  display: inline-block;
  position: relative;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  padding-top: 12px;
}
.motif::before {
  content: '';
  position: absolute;
  top: 0; left: 2px;
  width: 52px; height: 8px;
  background-image: radial-gradient(circle at 4px 4px, var(--accent) 3.4px, transparent 4px);
  background-size: 19px 8px;
  background-repeat: repeat-x;
}

/* ---------- header: лента-анонс, белый мастхед с лого-картинкой, тауповая полка навигации ---------- */
.site-crest { position: relative; z-index: 60; }
.ribbon { background: linear-gradient(100deg, var(--accent-dark), var(--accent-deep)); color: #f6e7d4; }
.ribbon-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 10px 24px;
  min-height: 34px;
  font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 11.5px; letter-spacing: .06em;
}
.ribbon-slogan { text-transform: uppercase; letter-spacing: .13em; color: #f0dcc2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ribbon-slogan em { font-family: 'Baloo 2', cursive; font-style: italic; font-size: 13px; letter-spacing: .02em; text-transform: none; color: #ffe1b8; margin-right: 6px; }
.ribbon-links { display: flex; gap: 2px; flex: none; }
.ribbon-links a { color: #fff; padding: 4px 9px; border-radius: 5px; }
.ribbon-links a:hover { background: rgba(255, 255, 255, .16); }
.masthead { background: #fff; }
.masthead-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  min-height: 74px;
}
.brand-lock { display: flex; align-items: center; gap: 12px; }
.brand-img { width: 46px; height: 46px; border-radius: 50%; background: var(--cream); }
.brand-stack { display: flex; flex-direction: column; line-height: 1.05; }
.brand-mark {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .01em;
  color: var(--ink);
  white-space: nowrap;
}
.brand-mark em { font-style: normal; color: var(--accent-dark); }
.brand-sub {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.shelf-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 2px; }
.shelf-nav a {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  color: var(--ink);
  padding: 7px 14px 8px;
  border-radius: 99px;
  position: relative;
}
.shelf-nav a:hover { color: var(--accent-dark); background: rgba(201, 134, 63, .1); }
.shelf-nav a.active { color: var(--accent-dark); }
.shelf-nav a.active::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 1px;
  transform: translateX(-50%);
  width: 34px; height: 6px;
  background-image: radial-gradient(circle at 3px 3px, var(--accent) 2.6px, transparent 3px);
  background-size: 12px 6px;
  background-repeat: repeat-x;
}
/* фестонный край шапки: белые полукруги свисают на кремовый фон */
.crest-scallop {
  height: 12px;
  background-image: radial-gradient(circle at 12px 0, #fff 10px, transparent 10.5px);
  background-size: 24px 12px;
  background-repeat: repeat-x;
}
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 3px; }
.crest-tools { display: flex; align-items: center; gap: 4px; }
.seek-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 1px solid var(--line); cursor: pointer;
  padding: 8px 14px; border-radius: 99px; color: var(--ink);
}
.seek-label { font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: 12.5px; letter-spacing: .05em; }
.seek-toggle:hover { border-color: var(--accent); color: var(--accent-dark); }
.seek-open .seek-toggle { border-color: var(--accent); background: var(--cream); color: var(--accent-dark); }

/* панель поиска под шапкой (клиентский поиск по товарам) */
.seeker { display: none; background: #fff; border-top: 1px solid var(--line); position: absolute; left: 0; right: 0; top: 100%; }
.seek-open .seeker { display: block; box-shadow: var(--shadow-hover); }
.seeker-inner { padding-top: 14px; padding-bottom: 16px; }
.seeker-input {
  width: 100%;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 11px 14px;
  outline: none;
}
.seeker-input::placeholder { color: var(--muted); }
.seeker-results { margin-top: 6px; }
.seeker-results a {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 9px 12px; border-radius: 10px; color: var(--ink); font-size: 15px;
}
.seeker-results a:hover { background: var(--cream); color: var(--accent-dark); }
.sk-p { font-family: 'Nunito Sans', sans-serif; font-weight: 800; white-space: nowrap; }
.sk-none { padding: 9px 12px; color: var(--muted); font-size: 15px; }

/* ---------- meadow: кремовая сцена с карамельными пятнами + рейл мини-карточек ---------- */
.meadow {
  background: linear-gradient(165deg, #fefbf6 0%, #f8efe2 52%, #f1e3cf 100%);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 60px 0 54px;
}
.meadow::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201, 134, 63, .28) 2px, transparent 2.6px);
  background-size: 30px 30px;
  mask-image: linear-gradient(115deg, transparent 42%, #000 80%);
  -webkit-mask-image: linear-gradient(115deg, transparent 42%, #000 80%);
  pointer-events: none;
}
.meadow-core { position: relative; text-align: center; max-width: 880px; }
.meadow-note {
  display: inline-block;
  font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: 12.5px;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--lagoon-ink);
  border: 1px solid rgba(79, 139, 156, .4); border-radius: 99px;
  padding: 6px 17px;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, .6);
}
.meadow h1 { font-size: 52px; line-height: 1.1; margin-bottom: 18px; color: var(--ink); }
.meadow h1 .accent { color: var(--accent-dark); }
.meadow-sub { font-size: 17.5px; color: var(--ink-soft); max-width: 720px; margin: 0 auto 30px; }
.meadow-ctas { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.btn-meadow { background: var(--accent); color: #fff; }
.btn-meadow:hover { background: var(--ink); color: #fff; }
.btn-ghost {
  display: inline-block;
  font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 15px;
  letter-spacing: .05em;
  color: var(--ink); border: 2px solid rgba(74, 63, 60, .4); border-radius: 99px;
  padding: 10px 30px 11px;
  transition: border-color .18s, background .18s, transform .18s;
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(255, 255, 255, .6); transform: translateY(-1px); }
.parade-wrap { position: relative; margin-top: 44px; }
.parade-lead {
  font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: 12px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
  text-align: center; margin-bottom: 14px;
}
.parade { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.parade-card {
  background: #fff; border-radius: var(--radius);
  padding: 14px 14px 15px;
  display: flex; flex-direction: column; gap: 7px;
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(74, 63, 60, .16);
  transition: transform .18s, box-shadow .18s;
}
.parade-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(74, 63, 60, .24); }
.parade-card img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.parade-t {
  font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: 12.5px; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.parade-p { font-family: 'Nunito Sans', sans-serif; font-weight: 900; font-size: 14.5px; color: var(--accent-dark); }
.parade-p em { font-style: normal; font-weight: 600; font-size: 12px; color: var(--muted); margin-left: 5px; }

/* ---------- promise-rail: карамельная лента USP ---------- */
.promise-rail { background: linear-gradient(100deg, var(--accent), var(--accent-dark)); padding: 16px 0; }
.promise-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px 0; }
.promise-it {
  display: flex; align-items: center; gap: 12px;
  color: #fff;
  font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: 13px; line-height: 1.35;
  padding: 4px 16px;
}
.promise-it + .promise-it { border-left: 1px dashed rgba(255, 255, 255, .38); }
.promise-ic {
  flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: #fdf6ec; color: var(--accent-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

/* ---------- stroll-band: быстрые чипы «какой сейчас момент дня» ---------- */
.stroll-band { padding: 34px 0 0; }
.stroll-lead {
  text-align: center;
  font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: 12.5px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 14px;
}
.stroll-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.stroll-grid a {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line); border-radius: 99px;
  padding: 9px 18px;
  font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: 13.5px; color: var(--ink);
  box-shadow: var(--shadow);
  transition: border-color .15s, color .15s, transform .15s;
}
.stroll-grid a:hover { border-color: var(--lagoon-deep); color: var(--lagoon-ink); transform: translateY(-2px); }
.stroll-grid svg { color: var(--lagoon-deep); flex: none; }

/* ---------- nook-shelf: 4 карточки категорий ---------- */
.nook-shelf { padding: 56px 22px 8px; }
.nook-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.nook-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition: box-shadow .18s, transform .18s;
}
.nook-tile:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.nook-img { aspect-ratio: 1; background: #fff; }
.nook-img img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.nook-veil {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(74, 63, 60, .93));
  color: #fff;
  padding: 44px 14px 12px;
}
.nook-veil h3 { font-size: 17px; font-weight: 700; letter-spacing: .01em; }
.nook-veil p { font-size: 12.5px; color: #e6dbd1; }

/* ---------- aisle / cradle-карточки товаров ---------- */
.aisle { padding: 52px 22px; }
.headliner { text-align: center; margin-bottom: 32px; }
.headliner h2 { font-size: 31px; }
.headliner p { color: var(--muted); margin-top: 6px; }
.cradle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cradle {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.cradle:hover { border-color: #ddc6a8; box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.cradle-link { display: flex; flex-direction: column; flex: 1; }
.cradle-img { position: relative; aspect-ratio: 1; background: #fff; padding: 20px; overflow: hidden; border-bottom: 1px solid var(--line); }
.cradle-img img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s ease; }
.cradle:hover .cradle-img img { transform: scale(1.06); }
.cradle-rate {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--ink);
  border-radius: 99px;
  padding: 3px 11px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 12px;
  color: #fff;
}
.cradle-body { padding: 14px 16px 4px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.cradle-cat {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lagoon-deep);
}
.cradle-title { font-size: 15.5px; font-weight: 800; font-family: 'Nunito Sans', sans-serif; color: var(--ink); }
.cradle-short { font-size: 13.5px; color: var(--muted); line-height: 1.45; }
.cradle-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 8px; }
.cradle-price { font-family: 'Nunito Sans', sans-serif; font-weight: 900; font-size: 20px; color: var(--accent-dark); white-space: nowrap; }
.cradle-count { font-size: 12px; color: var(--muted); text-align: right; }
.cradle-foot { padding: 10px 16px 16px; margin-top: 0; }
.btn-cradle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  background: var(--accent);
  color: #fff;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .05em;
  padding: 11px 10px 12px;
  border-radius: 99px;
  box-shadow: 0 4px 12px rgba(201, 134, 63, .32);
  transition: background .18s, transform .18s, box-shadow .18s;
}
.btn-cradle:hover { background: var(--accent-deep); transform: translateY(-1px); box-shadow: 0 7px 16px rgba(201, 134, 63, .42); }
.btn-cradle svg { flex: none; }
.glimmer .spark { color: #ddd2c6; font-size: 14px; }
.glimmer .spark.on { color: var(--star); }
.count-note { color: var(--muted); font-size: 13px; margin-left: 4px; }

/* ---------- twin-band: промо-плитки двух коллекций ---------- */
.twin-band { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding-top: 0; padding-bottom: 52px; }
.twin-tile {
  display: block; border-radius: var(--radius); padding: 34px 34px 30px;
  box-shadow: var(--shadow); transition: box-shadow .18s, transform .18s;
}
.twin-tile:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.twin-cocoa { background: linear-gradient(135deg, #4a3f3c, #6b5e58); color: #f3ece5; }
.twin-lagoon { background: linear-gradient(135deg, var(--lagoon-deep), var(--lagoon-ink)); color: #eaf5f8; }
.twin-note {
  font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: 12px;
  letter-spacing: .18em; text-transform: uppercase; opacity: .78; margin-bottom: 10px;
}
.twin-tile h3 { font-size: 24px; margin-bottom: 10px; }
.twin-tile p { font-size: 15.5px; opacity: .88; margin-bottom: 18px; }
.twin-cta {
  display: inline-block; font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 14.5px;
  letter-spacing: .04em;
  border-bottom: 2px solid currentColor; padding-bottom: 2px;
}

/* ---------- vow-band: три обещания бренда ---------- */
.vow-band { background: var(--ink); color: #fff; padding: 58px 0; }
.vow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.vow-item {
  text-align: left;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
}
.vow-icon {
  margin-bottom: 14px; color: #e6b57e;
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 15px;
  background: rgba(230,181,126,.14); border: 1px solid rgba(230,181,126,.35);
}
.vow-icon svg { display: inline-block; }
.vow-item h3 { font-size: 18.5px; margin-bottom: 8px; }
.vow-item p { color: #d9cfc8; font-size: 15px; }

/* ---------- age-primer: подбор по возрасту и стадии ---------- */
.latest-run { padding-top: 0; }
.age-primer { padding: 58px 0 8px; }
.stage-cols { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 24px; align-items: start; }
.stage-steps, .stage-table { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px 30px; }
.stage-steps h3, .stage-table h3 { position: relative; font-size: 18.5px; margin-bottom: 14px; padding-top: 13px; }
.stage-steps h3::before, .stage-table h3::before {
  content: '';
  position: absolute;
  top: 0; left: 2px;
  width: 52px; height: 8px;
  background-image: radial-gradient(circle at 4px 4px, var(--accent) 3.4px, transparent 4px);
  background-size: 19px 8px;
  background-repeat: repeat-x;
}
.stage-steps ol { margin: 0 0 0 20px; color: var(--ink-soft); }
.stage-steps li { margin-bottom: 13px; font-size: 15.5px; }
.stage-steps b { color: var(--ink); }
.stage-table table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.stage-table th, .stage-table td { border: 1px solid var(--line); padding: 8px 11px; text-align: left; }
.stage-table th { background: var(--cream); font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: 13px; }
.stage-table td:first-child { font-family: 'Nunito Sans', sans-serif; font-weight: 800; white-space: nowrap; }

/* ---------- rituals-band: do / don't уход за каучуком и текстилём ---------- */
.rituals-band { padding: 54px 0 6px; }
.ritual-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ritual-col { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px 30px; border-top: 3px solid #4f9d6b; }
.ritual-dont { border-top-color: #bb5540; }
.ritual-col h3 { display: flex; align-items: center; gap: 10px; font-size: 19px; margin-bottom: 14px; }
.ritual-do h3 svg { color: #4f9d6b; }
.ritual-dont h3 svg { color: #bb5540; }
.ritual-col ul { list-style: none; }
.ritual-col li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 11px;
  color: var(--ink-soft);
  font-size: 15.5px;
}
.ritual-col li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 7px; height: 7px;
  background: #4f9d6b;
  border-radius: 50%;
}
.ritual-dont li::before { background: #bb5540; }

/* ---------- postcard: философия открыткой с баннером ---------- */
.postcard { padding: 58px 22px 6px; }
.postcard-photo img { width: 100%; height: auto; border-radius: var(--radius) var(--radius) 0 0; }
.postcard-note {
  position: relative;
  background: #fff;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 40px 36px;
}
.postcard-note h2 { font-size: 26px; margin: 8px 0 12px; max-width: 720px; }
.postcard-note p { color: var(--ink-soft); max-width: 780px; }
.postcard-stamp {
  position: absolute;
  top: 26px; right: 34px;
  transform: rotate(8deg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 84px; height: 84px;
  border: 2px dashed var(--accent);
  border-radius: 12px;
  color: var(--accent-dark);
  font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: 10.5px;
  letter-spacing: .12em; text-transform: uppercase;
}
.postcard-stamp b { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 22px; line-height: 1.1; }

/* ---------- deepdive: seo-контент ---------- */
.deepdive { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 58px 0; }
.deepdive h2 { font-size: 26px; margin-bottom: 16px; }
.deepdive h3 { font-size: 19px; margin: 26px 0 10px; }
.deepdive p { margin-bottom: 12px; color: var(--ink-soft); }
.deepdive ul { margin: 10px 0 14px 22px; color: var(--ink-soft); }
.deepdive li { margin-bottom: 6px; }
.deepdive table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 15px; }
.deepdive th, .deepdive td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.deepdive th { background: var(--cream); font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: 14px; }

/* ---------- echoes: авторский разбор публичных рейтингов ---------- */
.echoes { padding: 58px 0 70px; }
.echo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.echo-tile { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px 24px; border-top: 3px solid var(--lagoon-deep); }
.echo-stars { color: var(--star); font-size: 16px; letter-spacing: 2px; margin-bottom: 10px; }
.echo-figure { font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: 14.5px; margin-bottom: 8px; }
.echo-tile p { font-size: 15.5px; color: var(--ink-soft); }
.echo-name a { color: var(--accent-dark); border-bottom: 1px solid rgba(160, 95, 36, .35); }
.echo-name a:hover { color: var(--ink); border-bottom-color: var(--ink); }
.echo-name { margin-top: 12px; font-weight: 800; }

/* ---------- page-cap (category / info): тёплый кремово-голубой ---------- */
.page-cap {
  background: linear-gradient(128deg, #e9f2f5, #f6efe4 55%, #fdf8f1);
  color: var(--ink);
  padding: 54px 0 50px;
}
.page-cap h1 { font-size: 36px; letter-spacing: .01em; margin: 8px 0 10px; }
.page-cap .motif { color: var(--accent-dark); }
.page-cap-sub { color: var(--ink-soft); max-width: 640px; }

/* ---------- product page ---------- */
.trail { padding: 16px 22px 0; font-size: 14px; color: var(--muted); }
.trail a { color: var(--muted); }
.trail a:hover { color: var(--accent-dark); }
.piece { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 44px; padding: 30px 22px 50px; }
.piece-media {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  align-self: start;
  position: sticky;
  top: 90px;
}
.piece-media img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.piece-info h1 { font-size: 25px; font-weight: 700; margin: 8px 0 12px; }
.piece-meta { margin-bottom: 12px; }
.piece-price { font-family: 'Nunito Sans', sans-serif; font-weight: 900; font-size: 32px; margin-bottom: 18px; }
.piece-info .btn-claim { padding: 13px 46px 14px; font-size: 16px; }
.glance { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; list-style: none; }
.glance li { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 10px 14px 11px; }
.glance span {
  display: block;
  font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: 10.5px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--lagoon-deep);
  margin-bottom: 2px;
}
.glance b { font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: 14px; color: var(--ink); }
.claim-note { margin-top: 14px; font-size: 13px; color: var(--muted); max-width: 460px; }

/* ---------- dossier: лесенка фактов (уникальные тексты из copy.js) ---------- */
.dossier { padding: 8px 22px 54px; }
.dossier .headliner { margin-bottom: 16px; }
.dossier-lede { max-width: 760px; margin: 0 auto 28px; text-align: center; color: var(--ink-soft); font-size: 16.5px; }
.ladder { list-style: none; max-width: 860px; margin: 0 auto; display: grid; gap: 14px; }
.rung {
  display: flex; align-items: flex-start; gap: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 26px;
}
.rung-num { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 30px; line-height: 1; color: var(--accent); flex: none; padding-top: 2px; }
.rung:nth-child(even) .rung-num { color: var(--lagoon-deep); }
.rung h3 { font-size: 17px; margin-bottom: 5px; }
.rung p { color: var(--ink-soft); font-size: 15.5px; }

/* ---------- scene-band: сценарий дня + карточка ухода ---------- */
.scene-band { background: var(--ink); color: #f3ece5; padding: 54px 0; }
.scene-cols { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 40px; align-items: center; }
.scene .motif { color: #e6b57e; }
.scene .motif::before { background-image: radial-gradient(circle at 4px 4px, #e6b57e 3.4px, transparent 4px); }
.scene h2 { font-size: 25px; margin: 8px 0 12px; }
.scene p { color: #d9cfc8; font-size: 15.5px; max-width: 560px; }
.care-card {
  background: rgba(255, 255, 255, .06);
  border: 1px dashed rgba(230, 181, 126, .5);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.care-card h3 { font-size: 17px; margin-bottom: 10px; color: #fff; }
.care-card p { font-size: 14.5px; color: #d9cfc8; margin-bottom: 7px; }
.care-card b { color: #fff; }
.care-tip { display: flex; align-items: flex-start; gap: 8px; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255, 255, 255, .12); }
.care-tip svg { color: var(--lagoon); flex: none; margin-top: 4px; }

/* ---------- verdict-band: авторский разбор рейтинга ---------- */
.verdict-band { padding: 50px 0 8px; text-align: center; }
.verdict-stars { margin: 10px 0 10px; }
.verdict-stars .spark { font-size: 21px; }
.verdict-text { max-width: 740px; margin: 0 auto; color: var(--ink-soft); font-size: 16.5px; }

/* ---------- info pages ---------- */
.leaflet { padding: 46px 0 64px; }
.leaflet .shell { max-width: 820px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 38px 42px; }
.leaflet h2 { font-size: 21px; margin: 24px 0 10px; }
.leaflet h2:first-child { margin-top: 0; }
.leaflet h3 { font-size: 17px; font-weight: 700; margin: 18px 0 8px; }
.leaflet p { margin-bottom: 12px; color: var(--ink-soft); }
.leaflet ul, .leaflet ol { margin: 10px 0 14px 22px; color: var(--ink-soft); }
.leaflet li { margin-bottom: 6px; }
.leaflet table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 15px; }
.leaflet th, .leaflet td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.leaflet th { background: var(--cream); font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: 14px; }
.leaflet a { color: var(--accent-dark); text-decoration: underline; text-decoration-color: rgba(160, 95, 36, .4); }

/* ---------- primer-shelf: гайды ---------- */
.primer-shelf { padding: 48px 0 64px; }
.primer-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.primer-tile {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 26px 26px 22px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.primer-tile:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(74, 63, 60, .14); }
.primer-tile h2 { font-size: 19px; line-height: 1.3; margin: 10px 0 10px; color: var(--ink); }
.primer-tile p { color: var(--ink-soft); font-size: 14.5px; flex: 1; }
.primer-chip {
  display: inline-block; align-self: flex-start;
  font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: 11.5px;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--lagoon-ink); background: #ecf4f6;
  border-radius: 999px; padding: 5px 12px;
}
.primer-cue {
  margin-top: 14px;
  font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 14px;
  letter-spacing: .03em; color: var(--accent);
}
.primer-tile:hover .primer-cue { color: var(--accent-deep); }
.primer-return { margin-top: 26px; }
.primer-return a { font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: 13.5px; }

/* ---------- era-band: вехи истории на пунктирной линии ---------- */
.era-band { background: linear-gradient(115deg, #fdf4e8 0%, #eef5f7 100%); padding: 48px 0 54px; }
.era-band .headliner { margin-bottom: 24px; }
.era-line { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
.era-line::before {
  content: '';
  position: absolute;
  top: 8px; left: 6%; right: 6%;
  border-top: 2px dashed var(--accent);
  opacity: .55;
}
.era-dot { position: relative; text-align: center; padding: 30px 8px 0; }
.era-dot::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 4px solid #fff;
  box-shadow: var(--shadow);
}
.era-dot b { display: block; font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 26px; line-height: 1.15; color: var(--accent-dark); }
.era-dot span { font-size: 14px; color: var(--ink-soft); }

/* ---------- limelight: товар-звезда ---------- */
.limelight {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 44px; align-items: center;
  margin-top: 58px; margin-bottom: 6px;
}
.lime-media { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; }
.lime-media img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.lime-text h2 { font-size: 28px; margin: 10px 0 10px; }
.lime-rating { margin-bottom: 12px; }
.lime-rating span { color: var(--muted); font-size: 14.5px; margin-left: 6px; }
.lime-text > p:not(.motif):not(.lime-rating) { color: var(--ink-soft); max-width: 560px; }
.lime-row { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 22px; margin-top: 22px; }
.lime-price { font-family: 'Nunito Sans', sans-serif; font-weight: 900; font-size: 30px; color: var(--ink); }
.lime-more {
  font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 14.5px;
  letter-spacing: .03em; color: var(--accent-dark);
}
.lime-more:hover { color: var(--ink); }

.finale-band {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fdf3e7;
  text-align: center;
  padding: 60px 0 64px;
  margin-top: 64px;
}
.finale-band h2 { font-size: 33px; letter-spacing: .01em; margin-bottom: 12px; }
.finale-band p { max-width: 640px; margin: 0 auto 26px; font-size: 16.5px; opacity: .93; }
.btn-cream { background: #fff; color: var(--accent-deep); }
.btn-cream:hover { background: var(--ink); color: #fff; }

/* ---------- footer «burrow»: какао-нора с фестоном, маркой-штампом и марками-плюсами ---------- */
.burrow { background: linear-gradient(to bottom, transparent 12px, #3b322f 12px); color: #d3c8c1; font-size: 14.5px; margin-top: 0; }
.burrow-scallop {
  height: 12px;
  background-image: radial-gradient(circle at 12px 12px, #3b322f 10px, transparent 10.5px);
  background-size: 24px 12px;
  background-repeat: repeat-x;
}
.burrow-top {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 40px;
  padding-top: 40px; padding-bottom: 32px;
}
.burrow-word {
  font-family: 'Baloo 2', cursive; font-size: 24px; font-weight: 800; color: #fff;
  letter-spacing: .01em; white-space: nowrap; line-height: 1.1;
}
.burrow-word em { font-style: normal; color: #e6b57e; }
.burrow-since {
  display: block;
  font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 10px;
  letter-spacing: .34em; text-transform: uppercase; color: #a8988d;
  margin: 4px 0 16px;
}
.burrow-brand p { max-width: 600px; color: #b5a89f; }
.burrow-label {
  display: block;
  font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: 12px;
  letter-spacing: .16em; text-transform: uppercase; color: #e6b57e;
  margin-bottom: 10px;
}
.burrow-card {
  position: relative;
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 26px 28px 24px;
  align-self: start;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .25);
}
.burrow-card .burrow-label { color: var(--accent-dark); }
.burrow-stamp {
  position: absolute;
  top: 18px; right: 22px;
  transform: rotate(8deg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 72px; height: 72px;
  border: 2px dashed var(--accent);
  border-radius: 12px;
  color: var(--accent-dark);
  font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: 9.5px;
  letter-spacing: .12em; text-transform: uppercase;
}
.burrow-stamp b { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 19px; line-height: 1.1; }
.burrow-line {
  display: flex; align-items: center; gap: 9px;
  font-family: 'Nunito Sans', sans-serif; font-weight: 700; font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 7px;
}
.burrow-line svg { color: var(--accent); flex: none; }
.burrow-cta { display: inline-block; margin-top: 8px; font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 14.5px; color: var(--accent-dark); }
.burrow-cta:hover { color: var(--ink); }
.stamp-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding-bottom: 26px; }
.stamp-it {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 2px;
  border: 1px dashed rgba(230, 181, 126, .45);
  border-radius: 12px;
  padding: 14px 10px 12px;
  font-size: 12.5px; color: #b5a89f;
}
.stamp-it svg { color: #e6b57e; margin-bottom: 4px; }
.stamp-it b { color: #fff; font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: 13.5px; }
.burrow-note { padding-bottom: 28px; }
.burrow-note p {
  border: 1px dashed rgba(255, 255, 255, .2);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 13.5px; color: #b5a89f;
}
.burrow-note b { color: #fff; }
.burrow-note a { color: #e6b57e; }
.burrow-note a:hover { color: #fff; }
.burrow-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding-top: 28px; padding-bottom: 34px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.burrow-group ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.burrow-group a { color: #d3c8c1; }
.burrow-group a:hover { color: #fff; }
.burrow-end {
  display: flex; align-items: center; justify-content: space-between; gap: 14px 26px; flex-wrap: wrap;
  padding-top: 16px; padding-bottom: 26px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #9d8f86; font-size: 13px;
}
.burrow-end p { margin-bottom: 4px; }
.top-btn {
  background: none; cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .25); border-radius: 99px;
  color: #d3c8c1; padding: 8px 16px;
  font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: 11.5px;
  letter-spacing: .1em; text-transform: uppercase;
  transition: border-color .15s, color .15s;
}
.top-btn:hover { border-color: var(--accent); color: #fff; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .cradle-grid { grid-template-columns: repeat(2, 1fr); }
  .nook-grid { grid-template-columns: repeat(2, 1fr); }
  .vow-grid, .echo-grid { grid-template-columns: 1fr; }
  .piece { grid-template-columns: 1fr; }
  .piece-media { position: static; }
  .twin-band { grid-template-columns: 1fr; }
  .era-line { grid-template-columns: 1fr 1fr; gap: 22px 14px; }
  .era-line::before { display: none; }
  .limelight { grid-template-columns: 1fr; gap: 26px; margin-top: 46px; }
  .lime-media { max-width: 420px; }
  .scene-cols { grid-template-columns: 1fr; gap: 26px; }
  .burrow-top { grid-template-columns: 1fr; gap: 26px; }
  .stamp-row { grid-template-columns: repeat(2, 1fr); }
  .burrow-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 18px; }
  .stage-cols { grid-template-columns: 1fr; }
  .ritual-cols { grid-template-columns: 1fr; }
  .promise-inner { grid-template-columns: 1fr 1fr; gap: 10px 0; }
  .promise-it + .promise-it { border-left: 0; }
  .promise-it:nth-child(even) { border-left: 1px dashed rgba(255, 255, 255, .38); }
  .primer-flow { grid-template-columns: 1fr 1fr; }
  .meadow { padding: 44px 0 46px; }
  .meadow h1 { font-size: 38px; }
  .parade { display: flex; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
  .parade-card { flex: 0 0 172px; scroll-snap-align: start; }
  .burger { display: block; }
  .shelf-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 10px 16px 16px;
    box-shadow: var(--shadow-hover);
    z-index: 5;
  }
  .menu-open .shelf-nav { display: flex; }
  .shelf-nav a { padding: 11px 10px; font-size: 16px; color: var(--ink); border-radius: 10px; }
  .shelf-nav a:hover { background: var(--cream); color: var(--accent-dark); }
  .shelf-nav a.active { background: var(--cream); color: var(--accent-dark); box-shadow: inset 3px 0 0 var(--accent); }
  .shelf-nav a.active::after { display: none; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .cradle-grid { grid-template-columns: 1fr; }
  .nook-grid { grid-template-columns: 1fr 1fr; }
  .meadow h1 { font-size: 29px; }
  .meadow-sub { font-size: 16.5px; }
  .headliner h2 { font-size: 25px; }
  .page-cap h1 { font-size: 28px; }
  .era-dot b { font-size: 21px; }
  .lime-text h2 { font-size: 23px; }
  .lime-price { font-size: 25px; }
  .finale-band h2 { font-size: 25px; }
  .twin-tile h3 { font-size: 21px; }
  .leaflet .shell { padding: 28px 20px; }
  .primer-flow { grid-template-columns: 1fr; }
  .primer-shelf { padding: 36px 0 52px; }
  .leaflet table { display: block; overflow-x: auto; white-space: nowrap; }
  .leaflet td { white-space: normal; min-width: 150px; }
  .piece-price { font-size: 27px; }
  .brand-mark { font-size: 18px; }
  .brand-sub { letter-spacing: .22em; }
  .brand-img { width: 38px; height: 38px; }
  .ribbon-slogan { display: none; }
  .ribbon-inner { justify-content: center; }
  .seek-label { display: none; }
  .seek-toggle { border: 0; padding: 8px; }
  .masthead-inner { min-height: 62px; }
  .promise-inner { grid-template-columns: 1fr; }
  .promise-it { border-left: 0 !important; }
  .parade-card { flex-basis: 150px; }
  .stroll-grid a { padding: 9px 13px; font-size: 13.5px; }
  .stage-table table { display: block; overflow-x: auto; }
  .stage-table td, .stage-table th { min-width: 110px; }
  .rung { padding: 18px 18px; gap: 14px; }
  .rung-num { font-size: 24px; }
  .postcard-note { padding: 24px 20px 26px; }
  .postcard-stamp { display: none; }
  .glance b { font-size: 13px; }
  .stamp-row { grid-template-columns: 1fr 1fr; }
  .burrow-grid { grid-template-columns: 1fr 1fr; gap: 22px 14px; }
  .burrow-end { flex-direction: column; align-items: flex-start; }
}
