/* ============================================================
   MOSCONTAINER — Dark Premium design system
   Cormorant (display serif) + Onest (sans) · graphite + brass
   ============================================================ */

:root {
  --bg: #16140f;        /* warm near-black */
  --bg-2: #1f1c15;      /* coffee panel */
  --bg-3: #2a261d;      /* lighter panel */
  --bg-4: #34301f;      /* hover / raised */
  --ink: #f1ece1;       /* warm off-white */
  --ink-2: #b9b1a0;     /* muted sand */
  --ink-3: #837b6c;     /* faint */
  --line: #332e23;      /* hairline */
  --line-2: #423b2d;    /* stronger hairline */
  --brass: oklch(0.74 0.09 78);    /* brass / warm gold */
  --brass-2: oklch(0.66 0.10 70);  /* deeper brass */
  --brass-ink: #1a1610;            /* text on brass */
  --sage: oklch(0.66 0.05 135);    /* muted sage accent */
  --serif: "Cormorant", Georgia, serif;
  --sans: "Onest", system-ui, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, monospace;
  --maxw: 1240px;
  --r: 3px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* ---------- image placeholders / slots ---------- */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.018) 0 2px, transparent 2px 11px),
    var(--bg-3);
  overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  position: absolute; left: 14px; bottom: 12px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-3);
  background: rgba(22,20,15,0.6);
  padding: 4px 8px; border-radius: 2px; backdrop-filter: blur(2px);
}
/* production photo images (replace prototype image-slot) */
img.ph-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--bg-3);
  border: 1px solid var(--line);
}

/* ---------- typography helpers ---------- */
.eyebrow {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brass); font-weight: 600;
}
.display {
  font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em;
  line-height: 1.0;
}
em.b { font-style: italic; color: var(--brass); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  padding: 13px 24px; border-radius: var(--r); cursor: pointer; border: none;
  transition: transform .15s, background .2s, color .2s, border-color .2s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brass); color: var(--brass-ink); }
.btn-primary:hover { background: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--brass); color: var(--brass); }
.btn-lg { padding: 16px 30px; font-size: 16px; }

/* ---------- header ---------- */
header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 40px; height: 76px; }
.logo { font-family: var(--serif); font-size: 25px; font-weight: 600; letter-spacing: 0.01em; white-space: nowrap; display: flex; align-items: center; }
.logo img { height: 44px; width: auto; display: block; }
.logo span { color: var(--brass); }
.nav-links { display: flex; gap: 30px; margin-left: 8px; }
.nav-links a { font-size: 15px; color: var(--ink-2); transition: color .2s; white-space: nowrap; }
.nav-links a:hover { color: var(--ink); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.nav-phone { font-size: 16px; font-weight: 600; white-space: nowrap; }

/* ---------- section scaffolding ---------- */
.sec { padding: 96px 0; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 48px; }
.sec-head h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(36px, 4.4vw, 60px); line-height: 1.02; letter-spacing: -0.01em; }
.sec-head h2 em { font-style: italic; color: var(--brass); }
.sec-head p { color: var(--ink-2); max-width: 38ch; }

/* ---------- trust strip ---------- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 30px 28px 30px 0; display: flex; gap: 16px; align-items: flex-start; }
.trust-item + .trust-item { padding-left: 32px; border-left: 1px solid var(--line); }
.trust-num { font-family: var(--serif); font-size: 22px; color: var(--brass); line-height: 1.2; }
.trust-item h4 { font-size: 16px; font-weight: 600; }
.trust-item p { font-size: 14px; color: var(--ink-2); margin-top: 3px; }

/* ---------- models grid ---------- */
.models { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.card { background: var(--bg); display: flex; flex-direction: column; transition: background .25s, transform .25s; }
.card:hover { background: var(--bg-2); transform: translateY(-3px); }
.card .media { aspect-ratio: 3 / 2; position: relative; }
.card .media .ph, .card .media img.ph-img { position: absolute; inset: 0; width: 100%; height: 100%; }
.card-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-family: var(--serif); font-size: 27px; font-weight: 600; line-height: 1.05; }
.card-meta { display: flex; gap: 16px; margin-top: 12px; color: var(--ink-3); font-size: 14px; flex-wrap: wrap; }
.card-meta b { color: var(--ink); font-weight: 600; }
.card-foot { margin-top: auto; padding-top: 20px; display: flex; align-items: baseline; justify-content: space-between; }
.price { font-size: 15px; color: var(--ink-2); }
.price b { font-family: var(--serif); font-size: 22px; color: var(--ink); }
.more { font-size: 14px; font-weight: 600; color: var(--brass); }

/* ---------- advantages ---------- */
.adv { background: var(--bg-2); }
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); }
.adv-item { background: var(--bg-2); padding: 38px 34px; }
.adv-item .idx { font-family: var(--serif); font-size: 15px; color: var(--brass); }
.adv-item h4 { font-size: 21px; font-weight: 600; margin: 18px 0 10px; }
.adv-item p { font-size: 15px; color: var(--ink-2); }

/* ---------- CTA + form ---------- */
.cta { background: var(--brass); color: var(--brass-ink); }
.cta-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; padding: 84px 0; }
.cta .eyebrow { color: #4a3c14; }
.cta h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(34px, 4vw, 54px); line-height: 1.03; }
.cta p { color: #3c3011; margin-top: 18px; max-width: 36ch; opacity: 0.88; }
.form { background: var(--bg); color: var(--ink); padding: 36px; border-radius: var(--r); }
.form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.form input {
  width: 100%; font-family: var(--sans); font-size: 16px;
  padding: 14px 16px; border: 1px solid var(--line-2); border-radius: 2px;
  background: var(--bg-2); color: var(--ink); margin-bottom: 18px;
}
.form input::placeholder { color: var(--ink-3); }
.form input:focus { outline: none; border-color: var(--brass); }
.form .btn-primary { width: 100%; justify-content: center; padding: 16px; }
.form .btn-primary.is-loading { opacity: 0.75; cursor: progress; }
.form .note { font-size: 12px; color: var(--ink-3); margin-top: 14px; line-height: 1.5; }

/* form fields, validation, consent */
.form .field { margin-bottom: 16px; }
.form .field input { margin-bottom: 0; }
.form .err-msg { display: block; color: #e0564a; font-size: 12px; line-height: 1.4; margin-top: 6px; }
.form .has-error input,
.form input[aria-invalid="true"] { border-color: #e0564a; }
.form .has-error.consent span { color: #e0564a; }

.form .consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; font-weight: 400; color: var(--ink-2); cursor: pointer; margin: 6px 0; }
.form .consent input { width: auto; flex: none; margin: 2px 0 0; accent-color: var(--brass); }
.form .consent a { color: var(--brass); text-decoration: underline; text-underline-offset: 2px; }

/* honeypot — скрыто от людей, видно ботам */
.form .hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

.form-status { font-size: 13px; margin-top: 12px; line-height: 1.5; }
.form-status.is-error { color: #e0564a; }

/* успешная отправка */
.form-success { text-align: center; padding: 18px 4px; }
.form-success .fs-check { width: 54px; height: 54px; border-radius: 50%; background: var(--brass); color: var(--brass-ink); font-size: 28px; line-height: 54px; margin: 0 auto 16px; }
.form-success h3 { font-family: var(--serif); font-size: 26px; font-weight: 600; }
.form-success p { color: var(--ink-2); margin-top: 10px; font-size: 15px; }
.form-success a { color: var(--brass); }

/* ---------- burger + mobile nav ---------- */
.burger { display: none; appearance: none; background: transparent; border: 0; width: 44px; height: 44px; padding: 11px 9px; cursor: pointer; }
.burger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .2s; }
.burger span + span { margin-top: 5px; }
header.nav-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
header.nav-open .burger span:nth-child(2) { opacity: 0; }
header.nav-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.no-scroll { overflow: hidden; }

/* ---------- footer ---------- */
footer { padding: 64px 0 40px; border-top: 1px solid var(--line); }
.foot-grid { display: flex; gap: 48px; flex-wrap: wrap; align-items: flex-start; }
.foot-grid .logo { font-size: 28px; }
.foot-col { display: flex; flex-direction: column; gap: 6px; font-size: 15px; color: var(--ink-2); }
.foot-col a:hover { color: var(--ink); }
.foot-col .big { font-family: var(--serif); font-size: 26px; color: var(--ink); }
.foot-right { margin-left: auto; text-align: right; font-size: 13px; color: var(--ink-3); }

/* ============================================================
   MODEL PAGE
   ============================================================ */
.crumb { padding: 26px 0 0; font-size: 14px; color: var(--ink-3); display: flex; gap: 10px; align-items: center; }
.crumb a:hover { color: var(--ink); }
.crumb .sep { color: var(--line-2); }

.mhero { padding: 36px 0 80px; }
.mhero-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.mhero .eyebrow { display: block; }
.mhero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(40px, 4.6vw, 64px); line-height: 1.06; letter-spacing: -0.01em; margin: 16px 0 0; }
.mhero h1 em { font-style: italic; color: var(--brass); }
.mhero .lead { font-size: 18px; color: var(--ink-2); margin-top: 22px; max-width: 42ch; }
.mhero .pricebox { margin-top: 32px; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.mhero .pricebox .from { font-size: 14px; color: var(--ink-3); }
.mhero .pricebox .val { font-family: var(--serif); font-size: 44px; line-height: 1; color: var(--ink); white-space: nowrap; }
.mhero .pricebox .unit { font-size: 14px; color: var(--ink-2); }
.mhero-cta { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

/* quick specs under price */
.qspecs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 28px; }
.qspecs div { background: var(--bg); padding: 16px 18px; }
.qspecs .k { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); }
.qspecs .v { font-family: var(--serif); font-size: 24px; color: var(--ink); margin-top: 4px; }

/* media column */
.mhero-media { display: flex; flex-direction: column; gap: 12px; }
.mhero-media .main { width: 100%; aspect-ratio: 4 / 3; border-radius: var(--r); }
.mhero-media .thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mhero-media .thumbs img.ph-img { width: 100%; aspect-ratio: 4 / 3; border-radius: var(--r); cursor: pointer; transition: opacity .2s, outline-color .15s; outline: 2px solid transparent; outline-offset: 2px; }
.mhero-media .thumbs img.ph-img:hover { opacity: 0.82; }
.mhero-media .thumbs img.ph-img:focus-visible { outline-color: var(--brass); }

/* price list on model page */
.pricelist { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); }
.pl-col { background: var(--bg-2); padding: 30px 28px; display: flex; flex-direction: column; }
.pl-col.pl-featured { background: var(--bg-4); }
.pl-tag { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brass); font-weight: 600; margin-bottom: 14px; }
.pl-col h4 { font-family: var(--serif); font-size: 24px; font-weight: 600; line-height: 1.1; }
.pl-price { font-family: var(--serif); font-size: 34px; color: var(--ink); margin: 12px 0 6px; white-space: nowrap; }
.pl-desc { font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.pl-note { margin-top: auto; font-size: 13px; color: var(--ink-3); padding-top: 16px; }
.pl-foot { color: var(--ink-3); font-size: 13px; margin-top: 18px; display: flex; gap: 18px; flex-wrap: wrap; }
.pl-foot span { display: inline-flex; align-items: center; gap: 7px; }
.pl-foot span::before { content: "✓"; color: var(--brass); font-weight: 700; }
@media (max-width: 760px) { .pricelist { grid-template-columns: 1fr; } }

/* photo gallery on model page */
.mgallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.mgallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r); border: 1px solid var(--line); cursor: pointer; transition: opacity .2s, transform .2s; }
.mgallery img:hover { opacity: 0.9; transform: translateY(-2px); }
.mgallery img:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; background: rgba(10,9,6,0.92); padding: 32px; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--r); box-shadow: 0 24px 70px rgba(0,0,0,0.6); }
.lightbox .lb-close, .lightbox .lb-nav { position: absolute; background: color-mix(in srgb, var(--bg) 60%, transparent); border: 1px solid var(--line-2); color: var(--ink); cursor: pointer; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s; }
.lightbox .lb-close { top: 22px; right: 26px; width: 46px; height: 46px; font-size: 26px; }
.lightbox .lb-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 30px; }
.lightbox .lb-prev { left: 24px; }
.lightbox .lb-next { right: 24px; }
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: var(--brass); color: var(--brass-ink); border-color: var(--brass); }
.lightbox .lb-count { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); font-size: 14px; color: var(--ink-2); letter-spacing: 0.05em; }

@media (max-width: 900px) { .mgallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) {
  .mgallery { grid-template-columns: repeat(2, 1fr); }
  .lightbox .lb-nav { width: 44px; height: 44px; font-size: 24px; }
  .lightbox .lb-prev { left: 8px; } .lightbox .lb-next { right: 8px; }
}

/* spec sheet */
.spectable { display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; }
.spectable .row { display: flex; justify-content: space-between; gap: 16px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.spectable .row .k { color: var(--ink-2); }
.spectable .row .v { font-weight: 600; text-align: right; }

/* includes list */
.incl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); }
.incl .col { background: var(--bg-2); padding: 32px 30px; }
.incl .col h4 { font-family: var(--serif); font-size: 22px; font-weight: 600; margin-bottom: 18px; }
.incl .col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.incl .col li { font-size: 15px; color: var(--ink-2); padding-left: 26px; position: relative; }
.incl .col li::before { content: ""; position: absolute; left: 0; top: 8px; width: 12px; height: 7px; border-left: 2px solid var(--brass); border-bottom: 2px solid var(--brass); transform: rotate(-45deg); }

/* plan band */
.planband { background: var(--bg-2); }
.plan-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.plan-grid img.ph-img { width: 100%; aspect-ratio: 16 / 10; border-radius: var(--r); }
.plan-grid h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.05; }
.plan-grid p { color: var(--ink-2); margin-top: 18px; }

/* other models */
.other { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.other a { background: var(--bg); padding: 0; display: flex; flex-direction: column; transition: background .2s; }
.other a:hover { background: var(--bg-2); }
.other a img.ph-img { width: 100%; aspect-ratio: 3 / 2; }
.other .ob { padding: 18px 20px 22px; }
.other .ob h4 { font-family: var(--serif); font-size: 20px; font-weight: 600; }
.other .ob .p { font-size: 14px; color: var(--ink-2); margin-top: 6px; }

@media (max-width: 1024px) {
  .mhero-grid, .plan-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .spectable { grid-template-columns: 1fr; }
  .incl { grid-template-columns: 1fr; }
  .other { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- legal / privacy ---------- */
.legal h1 { font-size: clamp(30px, 4vw, 48px); }
.legal-upd { color: var(--ink-3); font-size: 14px; margin: 12px 0 8px; }
.legal h2 { font-family: var(--serif); font-weight: 600; font-size: 24px; margin: 36px 0 12px; }
.legal p { color: var(--ink-2); max-width: 760px; margin-bottom: 14px; }
.legal ul { color: var(--ink-2); max-width: 760px; margin: 0 0 14px; padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--brass); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: none; }
  .models, .adv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .burger { display: block; }
  .nav { gap: 14px; }
  .nav-right .btn-primary { display: none; }
  /* выезжающая панель меню */
  .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
    background: var(--bg); padding: 8px 0; margin: 0;
    transform: translateX(100%); transition: transform .28s ease;
    z-index: 40; overflow-y: auto;
  }
  header.nav-open .nav-links { transform: translateX(0); }
  .nav-links a { padding: 18px 32px; font-size: 18px; color: var(--ink); border-bottom: 1px solid var(--line); }
  .sec { padding: 64px 0; }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cta-inner { grid-template-columns: 1fr; gap: 36px; padding: 60px 0; }
  .models, .adv-grid, .trust-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-left: none; padding-left: 0; border-top: 1px solid var(--line); }
  .foot-right { margin-left: 0; text-align: left; }
}

/* ============================================================
   BLOG — индекс «20 футов уюта» + страница статьи
   ============================================================ */

/* ---- hero блога ---- */
.bloghero { padding: 56px 0 40px; }
.bloghero .lead { max-width: 720px; margin-top: 16px; }

/* ---- сетка карточек ---- */
.bloggrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.postcard {
  display: flex; flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}
.postcard:hover { border-color: var(--line-2); transform: translateY(-2px); }
.postcard-media { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; }
.postcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.postcard:hover .postcard-media img { transform: scale(1.04); }
.postcard-cat {
  position: absolute; left: 12px; top: 12px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--brass-ink); background: var(--brass);
  padding: 4px 9px; border-radius: 2px;
}
.postcard-body { display: flex; flex-direction: column; gap: 10px; padding: 20px 22px 24px; flex: 1; }
.postcard-meta { font-family: var(--mono); font-size: 12px; color: var(--ink-3); display: flex; gap: 8px; align-items: center; }
.postcard-meta .dot { color: var(--ink-3); }
.postcard-title { font-family: var(--serif); font-size: 23px; line-height: 1.2; font-weight: 600; }
.postcard-title a { transition: color .2s ease; }
.postcard-title a:hover { color: var(--brass); }
.postcard-excerpt { color: var(--ink-2); font-size: 15px; line-height: 1.55; flex: 1; }
.postcard .more { margin-top: 4px; }

/* ---- страница статьи ---- */
.article { padding: 8px 0 8px; }
.article-wrap { max-width: 820px; }
.article-head h1 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(30px, 4.5vw, 46px); line-height: 1.12;
  margin: 12px 0 14px;
}
.article-meta { font-family: var(--mono); font-size: 13px; color: var(--ink-3); display: flex; gap: 8px; align-items: center; }
.article-cover { margin: 28px 0 8px; border-radius: var(--r); overflow: hidden; }
.article-cover img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.article-body { font-size: 18px; line-height: 1.7; color: var(--ink); }
.article-body p { margin: 18px 0; color: var(--ink-2); }
.article-body h2 {
  font-family: var(--serif); font-weight: 600;
  font-size: 28px; line-height: 1.2; color: var(--ink);
  margin: 40px 0 10px;
}
.article-body ul, .article-body ol { margin: 16px 0 16px 4px; padding-left: 22px; color: var(--ink-2); }
.article-body li { margin: 8px 0; }
.article-body li::marker { color: var(--brass); }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body a { color: var(--brass); text-decoration: underline; text-underline-offset: 2px; }
.article-body .callout {
  background: var(--bg-2); border-left: 3px solid var(--brass);
  padding: 14px 18px; border-radius: var(--r);
  font-size: 15px; color: var(--ink-2);
}

/* ---- адаптив блога ---- */
@media (max-width: 980px) {
  .bloggrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .bloggrid { grid-template-columns: 1fr; }
  .article-body { font-size: 17px; }
  .article-body h2 { font-size: 24px; }
}
