    :root {
      --ink: #070707;
      --paper: #f7f5f0;
      --white: #fff;
      --muted: #66615b;
      --line: #d9d5ce;
      --red: #e22b1a;
      --gold: #b78a35;
      --sage: #a7b09a;
      --container: 100vw;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      overflow-x: hidden;
      color: var(--ink);
      background: var(--paper);
      font-family: "Manrope", Arial, sans-serif;
      line-height: 1.35;
    }
    img { display: block; width: 100%; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; }

    .topbar {
      min-height: 28px;
      display: grid;
      place-items: center;
      background: var(--ink);
      color: var(--white);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(14px);
    }

    .header-inner {
      width: min(1320px, calc(100vw - 72px));
      min-height: 62px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 20px;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 18px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
    }
    .nav.right { justify-content: flex-end; }
    .nav a { white-space: nowrap; transition: color 0.2s ease; }
    .nav a:hover,
    .nav a[aria-current="page"] { color: var(--red); }

    .brand {
      display: grid;
      justify-items: center;
      line-height: 1;
      font-weight: 900;
      text-transform: uppercase;
    }
    .brand strong { font-size: 20px; font-weight: 900; }
    .brand span { margin-top: 5px; color: var(--gold); font-size: 10px; font-weight: 800; }

    .icon-btn {
      width: 42px;
      height: 42px;
      display: inline-grid;
      place-items: center;
      border: 1px solid transparent;
      background: transparent;
      color: var(--ink);
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }
    .icon-btn:hover {
      border-color: var(--ink);
      background: var(--red);
      color: var(--white);
      transform: translate(-2px, -2px);
      box-shadow: 4px 4px 0 var(--ink);
    }

    h1, h2, h3, p { margin: 0; }
    h1, h2, h3 {
      line-height: 0.94;
      font-weight: 900;
      letter-spacing: 0;
      text-transform: uppercase;
    }
    h1 { max-width: 920px; font-size: clamp(42px, 5.8vw, 88px); }
    h2 { font-size: clamp(34px, 4.6vw, 72px); }
    h3 { font-size: clamp(24px, 2.5vw, 38px); }

    .eyebrow {
      color: var(--red);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }
    .lead {
      max-width: 660px;
      color: var(--muted);
      font-size: clamp(16px, 1.25vw, 20px);
      font-weight: 800;
    }

    .btn {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 1px solid var(--ink);
      padding: 0 18px;
      background: var(--ink);
      color: var(--white);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      cursor: pointer;
      box-shadow: inset 0 0 0 0 var(--red), 0 0 0 rgba(0,0,0,0);
      transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.24s ease, border-color 0.2s ease;
    }
    .btn:hover {
      transform: translate(-3px, -3px);
      background: var(--ink);
      border-color: var(--ink);
      box-shadow: inset 0 -54px 0 var(--red), 6px 6px 0 var(--ink);
    }
    .btn svg { transition: transform 0.22s ease; }
    .btn:hover svg { transform: translateX(5px); }
    .btn.light {
      border-color: var(--white);
      background: var(--white);
      color: var(--ink);
      box-shadow: 0 0 0 var(--red);
    }
    .btn.light:hover {
      border-color: var(--white);
      background: var(--white);
      color: var(--ink);
      box-shadow: 6px 6px 0 var(--red);
    }
    .btn.secondary {
      background: transparent;
      color: var(--ink);
    }
    .btn.secondary:hover {
      background: var(--ink);
      color: var(--white);
      box-shadow: 6px 6px 0 var(--red);
    }

    .about-main { background: var(--paper); }

    .about-hero {
      width: var(--container);
      height: clamp(440px, 54svh, 560px);
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      border-bottom: 1px solid var(--ink);
      background: var(--ink);
      color: var(--white);
      overflow: hidden;
    }
    .about-hero-copy {
      display: grid;
      align-content: center;
      justify-items: start;
      gap: 16px;
      padding: clamp(38px, 5vw, 72px) max(32px, 4vw);
    }
    .about-hero-copy h1 {
      max-width: 720px;
      font-size: clamp(38px, 3.8vw, 56px);
      line-height: 0.92;
    }
    .about-hero-copy .lead { color: #d8d3cb; font-size: clamp(15px, 1.05vw, 18px); }
    .about-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
    .about-hero .btn.secondary {
      border-color: rgba(255,255,255,0.72);
      color: var(--white);
    }
    .about-hero .btn.secondary:hover {
      border-color: var(--red);
      background: var(--red);
      color: var(--white);
      box-shadow: 6px 6px 0 rgba(255,255,255,0.2);
    }
    .about-hero-media {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(230px, 0.52fr);
      gap: 1px;
      min-height: 0;
      background: var(--ink);
    }
    .about-hero-media img { height: 100%; object-fit: cover; filter: saturate(1.02) contrast(1.05); }
    .hero-stack { display: grid; gap: 1px; background: var(--ink); }
    .hero-note {
      position: absolute;
      right: max(24px, 4vw);
      bottom: max(24px, 4vw);
      width: min(360px, calc(100% - 48px));
      padding: 18px;
      border: 1px solid var(--ink);
      background: var(--white);
      color: var(--ink);
      box-shadow: 6px 6px 0 var(--red);
    }
    .hero-note strong { display: block; margin-bottom: 8px; font-size: 22px; line-height: 0.98; text-transform: uppercase; }
    .hero-note p { color: var(--muted); font-size: 13px; font-weight: 900; }

    .trust-row {
      width: var(--container);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      border-bottom: 1px solid var(--ink);
      background: var(--ink);
    }
    .trust-row div {
      min-height: 94px;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 20px max(18px, 2vw);
      background: var(--white);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
    }
    .trust-row svg { color: var(--red); flex: 0 0 auto; }

    .section-head {
      width: var(--container);
      margin: 0;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
      gap: 28px;
      align-items: end;
      padding: 64px max(28px, 4vw) 28px;
    }

    .founder {
      width: var(--container);
      margin: 0;
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: 1px;
      border: 1px solid var(--ink);
      background: var(--ink);
    }
    .founder-media { position: relative; min-height: 560px; background: var(--white); overflow: hidden; }
    .founder-media img { height: 100%; object-fit: cover; }
    .founder-badge {
      position: absolute;
      left: 22px;
      bottom: 22px;
      padding: 14px 16px;
      border: 1px solid var(--ink);
      background: var(--white);
      color: var(--ink);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      box-shadow: 5px 5px 0 var(--red);
    }
    .founder-copy {
      display: grid;
      align-content: center;
      gap: 18px;
      padding: max(34px, 4vw);
      background: var(--white);
    }
    .founder-list {
      display: grid;
      gap: 1px;
      margin-top: 8px;
      border: 1px solid var(--ink);
      background: var(--ink);
    }
    .founder-list div {
      display: grid;
      grid-template-columns: 42px 1fr;
      align-items: center;
      gap: 14px;
      min-height: 68px;
      padding: 12px 14px;
      background: var(--paper);
      font-size: 13px;
      font-weight: 900;
    }
    .founder-list svg { color: var(--red); }

    .timeline {
      width: var(--container);
      margin: 0;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      border: 1px solid var(--ink);
      background: var(--ink);
    }
    .timeline article {
      min-height: 260px;
      display: grid;
      align-content: space-between;
      gap: 20px;
      padding: 24px;
      background: var(--white);
    }
    .timeline span {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      background: var(--ink);
      color: var(--white);
      font-weight: 900;
    }
    .timeline p { color: var(--muted); font-size: 13px; font-weight: 900; }

    .production {
      width: var(--container);
      margin-top: 72px;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
      gap: 1px;
      border-top: 1px solid var(--ink);
      border-bottom: 1px solid var(--ink);
      background: var(--ink);
    }
    .production-copy {
      display: grid;
      align-content: center;
      gap: 16px;
      padding: max(34px, 4.5vw);
      background: var(--paper);
    }
    .production-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      background: var(--ink);
    }
    .production-card {
      min-height: 230px;
      display: grid;
      align-content: space-between;
      padding: 22px;
      background: var(--white);
    }
    .production-card svg { color: var(--red); }
    .production-card strong {
      display: block;
      margin-top: 18px;
      font-size: 17px;
      line-height: 1;
      text-transform: uppercase;
    }
    .production-card p {
      margin-top: 8px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 900;
    }

    .numbers {
      width: var(--container);
      margin: 72px 0 0;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      border: 1px solid var(--ink);
      background: var(--ink);
    }
    .numbers div {
      min-height: 170px;
      display: grid;
      align-content: center;
      gap: 8px;
      padding: 24px;
      background: var(--white);
    }
    .numbers strong {
      color: var(--red);
      font-size: clamp(36px, 4vw, 58px);
      line-height: 0.9;
      font-weight: 900;
    }
    .numbers span {
      color: var(--muted);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .ngo-band {
      width: var(--container);
      /* Була фіксована height: текст довший за 440px обрізався знизу
         через overflow: hidden. Тепер смуга росте під вміст. */
      min-height: clamp(340px, 34vw, 440px);
      margin-top: 72px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 1px;
      border-top: 1px solid var(--ink);
      background: var(--ink);
      overflow: hidden;
    }
    .ngo-band div {
      display: grid;
      align-content: center;
      justify-items: start;
      gap: 14px;
      padding: max(32px, 4vw);
      background: #0b0b0b;
      color: var(--white);
    }
    .ngo-band .lead { color: #d8d3cb; font-size: 17px; }
    .ngo-band img { height: 100%; object-fit: cover; filter: grayscale(0.25) contrast(1.08); }

    .footer {
      margin-top: 0;
      padding: 48px max(28px, 4vw) 24px;
      background: var(--ink);
      color: var(--white);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr repeat(4, 1fr);
      gap: 28px;
      padding-bottom: 42px;
      border-bottom: 1px solid rgba(255,255,255,0.14);
    }
    .footer h4 { margin: 0 0 14px; font-size: 12px; font-weight: 900; text-transform: uppercase; }
    .footer a { display: block; margin-top: 8px; color: #d8d3cb; font-size: 13px; font-weight: 800; }
    .footer a:hover { color: var(--white); }
    .footer-grid > div:first-child h4 { font-size: 30px; line-height: 0.95; }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding-top: 22px;
      color: #b8b2aa;
      font-size: 12px;
      font-weight: 800;
    }

    @media (max-width: 1120px) {
      .about-hero,
      .founder,
      .production,
      .ngo-band { grid-template-columns: 1fr; }
      .about-hero-media { min-height: 420px; }
      .timeline,
      .numbers,
      .trust-row { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 760px) {
      .topbar { padding: 0 12px; text-align: center; }
      .header-inner {
        width: calc(100vw - 24px);
        grid-template-columns: 1fr auto;
      }
      .nav { display: none; }
      .brand { justify-items: start; }
      .about-hero { height: auto; }
      .about-hero-copy { padding: 46px 12px 54px; }
      .about-hero-copy h1 { max-width: 340px; font-size: 36px; }
      .about-hero-copy .lead { max-width: 340px; font-size: 16px; }
      .about-hero-actions,
      .about-hero-actions .btn { width: 100%; }
      .about-hero-media { display: block; min-height: 0; }
      .about-hero-media > img { height: 360px; }
      .hero-stack { display: none; }
      .hero-note {
        position: relative;
        right: auto;
        bottom: auto;
        width: calc(100% - 24px);
        margin: -44px 12px 18px;
        padding: 18px;
      }
      .trust-row,
      .section-head,
      .timeline,
      .production-grid,
      .numbers,
      .ngo-band { grid-template-columns: 1fr; }
      .section-head,
      .founder,
      .timeline,
      .numbers { width: var(--container); }
      .section-head { padding: 44px 12px 22px; }
      .founder-media { min-height: 360px; }
      .founder-copy,
      .production-copy,
      .ngo-band div { padding: 34px 12px; }
      .production,
      .numbers,
      .ngo-band { margin-top: 44px; }
      .timeline article {
        min-height: 0;
        grid-template-columns: 48px minmax(0, 1fr);
        align-content: start;
        align-items: start;
        gap: 0 16px;
        padding: 18px 14px;
      }
      .timeline span {
        width: 42px;
        height: 42px;
        grid-column: 1;
        grid-row: 1 / span 2;
      }
      .timeline article div {
        grid-column: 2;
      }
      .timeline h3 {
        font-size: 21px;
        line-height: 1;
      }
      .timeline p {
        margin-top: 6px;
        line-height: 1.28;
      }
      .production-card {
        min-height: 0;
        grid-template-columns: 34px minmax(0, 1fr);
        align-content: start;
        align-items: start;
        gap: 0 16px;
        padding: 18px 14px;
      }
      .production-card svg {
        width: 24px;
        height: 24px;
        grid-column: 1;
        grid-row: 1 / span 2;
      }
      .production-card div {
        grid-column: 2;
      }
      .production-card strong {
        margin-top: 0;
        font-size: 16px;
        line-height: 1.05;
      }
      .production-card p {
        margin-top: 6px;
        line-height: 1.28;
      }
      .numbers div {
        min-height: 0;
        grid-template-columns: 82px minmax(0, 1fr);
        align-content: center;
        align-items: center;
        gap: 14px;
        padding: 18px 14px;
      }
      .numbers strong {
        font-size: 34px;
        line-height: 0.95;
      }
      .numbers span {
        font-size: 12px;
        line-height: 1.25;
      }
      .ngo-band { height: auto; }
      .ngo-band img { min-height: 260px; }
      .footer { padding: 38px 12px 22px; }
      .footer-grid,
      .footer-bottom { display: grid; grid-template-columns: 1fr; }
    }
  
    .footer-brand-copy p {
      max-width: 270px;
      margin: 10px 0 0;
      color: #cfc9c0;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.55;
    }
    .footer-locale {
      display: grid;
      gap: 12px;
      margin-top: 20px;
    }
    .footer-locale-group {
      display: grid;
      gap: 8px;
    }
    .footer-locale-label {
      color: #8f887f;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: 0;
      text-transform: uppercase;
    }
    .footer-locale-row {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .footer-pill {
      min-height: 30px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 0;
      padding: 6px 9px;
      background: transparent;
      color: #d8d3cb;
      font-size: 11px;
      font-weight: 900;
      line-height: 1;
      text-transform: uppercase;
      cursor: pointer;
    }
    .footer-pill:hover,
    .footer-pill.is-active {
      background: var(--white);
      color: var(--ink);
    }
    .footer-legal-line {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 8px 14px;
    }
    /* Cookie consent banner */
    .luneva-cookie-consent {
      position: fixed;
      left: max(12px, 2vw);
      right: max(12px, 2vw);
      bottom: 12px;
      z-index: 120;
      display: none;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 16px;
      border: 1px solid var(--ink, #070707);
      padding: 14px;
      background: var(--white, #fff);
      color: var(--ink, #070707);
      box-shadow: 6px 6px 0 var(--ink, #070707);
    }
    body.cookie-consent-visible .luneva-cookie-consent { display: grid; }
    .luneva-cookie-copy {
      display: grid;
      gap: 4px;
    }
    .luneva-cookie-copy strong {
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
    }
    .luneva-cookie-copy span,
    .luneva-cookie-copy a {
      color: var(--muted, #66615b);
      font-size: 12px;
      font-weight: 800;
    }
    .luneva-cookie-copy a {
      color: var(--ink, #070707);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .luneva-cookie-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 8px;
    }
    .luneva-cookie-btn,
    .luneva-cookie-link {
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--ink, #070707);
      padding: 0 13px;
      background: var(--white, #fff);
      color: var(--ink, #070707);
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
      cursor: pointer;
    }
    .luneva-cookie-btn.primary {
      background: var(--ink, #070707);
      color: var(--white, #fff);
    }
    .luneva-cookie-btn:hover,
    .luneva-cookie-link:hover {
      background: var(--red, #e22b1a);
      color: var(--white, #fff);
    }
    @media (max-width: 760px) {
      .luneva-cookie-consent {
        grid-template-columns: 1fr;
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-height: calc(100svh - 24px);
        overflow: auto;
      }
      .luneva-cookie-actions {
        display: grid;
        grid-template-columns: 1fr;
      }
      .luneva-cookie-btn,
      .luneva-cookie-link { width: 100%; }
    }

/* ── Опис під заголовком, а не збоку ────────────────────────────────
   `.section-head` був сіткою у дві колонки: ліворуч надпис і заголовок,
   праворуч пояснювальний абзац. Через це заголовок ламався раніше, ніж
   треба, а текст праворуч висів окремим стовпчиком.

   Тепер одна колонка: опис іде під заголовком.

   Виняток — блоки, де праворуч не текст, а керування: стрілки гортання
   стрічки та посилання «уся категорія». Їх лишаємо в рядку із
   заголовком, інакше вони поїдуть під нього і ряд розсиплеться. */
.section-head {
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.section-head:has(.rail-arrows),
.section-head:has(> .text-link),
.section-head:has(> a),
.section-head.compact-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

/* Опис тепер займає всю ширину рядка. Обмеження 520-610px лишились від
   тих часів, коли він стояв правою колонкою — у ній це був сенс, а під
   заголовком текст просто обривався на середині. */
.section-head > p,
.section-head .lead,
.section-head > div > p.lead {
  max-width: none;
}

/* Блоки з керуванням праворуч (стрілки, посилання) не чіпаємо: там
   ліва колонка вужча навмисно, щоб керування не притискалось. */
.section-head:has(.rail-arrows) > p,
.section-head:has(> .text-link) > p,
.section-head.compact-head > p {
  max-width: 100%;
}

/* Смуга під героєм набрана капсом дев'ятисоткою — те саме правили на
   сторінці навчання. Це підпис, а не заголовок. */
.trust-row div {
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  line-height: 1.4;
}

.trust-row div strong {
  font-weight: 900;
  text-transform: uppercase;
}

/* Lucide підміняє <i> на <svg>, тож правило на `i` не діяло. */
.trust-row i,
.trust-row svg {
  color: var(--red);
}

/* ── Сторінка «Про бренд»: прибрати монотонність ───────────────────────
   Чотири блоки поспіль були однаковими сітками repeat(4, 1fr) із рамкою
   1px на темному тлі: смуга довіри, таймлайн, картки асортименту й цифри.
   Сторінка читалась як один компонент, повторений чотири рази поспіль.

   Нижче кожному дано власний характер. Правила зумисне звужені до
   .about-main: .trust-row і .timeline використовуються ще й на інших
   сторінках, там оформлення лишається як було. */

/* Смуга під першим екраном — легка стрічка, а не третя сітка з комірок. */
.about-main .trust-row {
  gap: 0;
  background: var(--paper);
}
.about-main .trust-row div {
  min-height: 74px;
  padding: 16px max(18px, 2vw);
  background: transparent;
  border-right: 1px solid rgba(7, 7, 7, 0.12);
  font-size: 12px;
}
.about-main .trust-row div:last-child {
  border-right: 0;
}

/* Історія — 2×2 замість смуги з чотирьох, а рік стає типографікою.
   Значок був квадратом 46px під «01»: чотиризначний рік заповнював його
   рівно впритул, без жодного повітря по краях. */
.about-main .timeline {
  grid-template-columns: repeat(2, 1fr);
}
.about-main .timeline article {
  min-height: 0;
  align-content: start;
  gap: 8px;
  padding: 34px max(24px, 2.6vw);
}
.about-main .timeline span {
  width: auto;
  height: auto;
  display: block;
  background: none;
  color: var(--red);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.about-main .timeline h3 {
  margin: 6px 0 0;
}

/* Цифри лишились єдиною смугою з чотирьох комірок, тому вже не читаються
   як повтор. Даємо числам більше ваги й трохи менше висоти. */
.about-main .numbers div {
  min-height: 148px;
}
.about-main .numbers strong {
  font-size: clamp(40px, 4.6vw, 66px);
}

@media (max-width: 900px) {
  .about-main .timeline {
    grid-template-columns: 1fr;
  }
  .about-main .trust-row div {
    border-right: 0;
    border-bottom: 1px solid rgba(7, 7, 7, 0.12);
  }
}

/* ── Відео про бренд ───────────────────────────────────────────────────
   Обкладинка + кнопка; плеєр підставляється лише по кліку (див. скрипт
   у template-about.php). Тому тут стилізується не iframe, а картка. */
.about-video {
  width: var(--container);
  margin-top: 72px;
}
.about-video .video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--ink);
  background: var(--ink);
}
.about-video .video-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--white);
}
.about-video .video-play {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  background: var(--ink);
  cursor: pointer;
  overflow: hidden;
}
.about-video .video-play img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, opacity 0.2s ease;
}
.about-video .video-play:hover img {
  transform: scale(1.04);
  opacity: 0.85;
}
.about-video .video-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--red);
  color: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.about-video .video-play:hover .video-icon {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 8px 8px 0 var(--ink);
}
.about-video .video-play:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: -3px;
}
.about-video .video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}
.about-video .video-card strong {
  padding: 18px max(16px, 1.4vw);
  font-size: 14px;
  line-height: 1.25;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .about-video .video-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Експертиза: без правої колонки ────────────────────────────────────
   Там був блок «Погляд майстра» — другий заголовок і другий лід одразу
   під заголовком та лідом шапки секції. Після його видалення сітка на дві
   колонки лишила б порожнє поле праворуч (align-content: center тримав
   вміст посередині), тому фото займає всю ширину, а факти стали смугою
   під ним. */
.about-main .founder {
  grid-template-columns: 1fr;
}
.about-main .founder-media {
  /* Була тільки min-height, а в картинки — height: 100%. У контейнера без
     заданої висоти ці 100% нікуди не резолвляться, тому браузер малював
     фото в натуральну величину: на всю ширину сторінка отримувала смугу
     заввишки під 1600px. Задаємо висоту явно, а картинку кладемо absolute. */
  position: relative;
  height: clamp(300px, 30vw, 440px);
  min-height: 0;
}
.about-main .founder-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-main .founder-list {
  width: var(--container);
  margin-top: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 0;
}
.about-main .founder-list div {
  min-height: 76px;
}

@media (max-width: 900px) {
  .about-main .founder-list {
    grid-template-columns: 1fr;
  }
}

/* ── Асортимент: картки, які можна натиснути ───────────────────────────
   Були статичні article з іконкою — подивитись і все. Тепер це посилання
   в реальну категорію: фото товару, лічильник, стрілка. Ховер піднімає
   картку і дає червону тінь — той самий жест, що на картках товару. */
/* Секція була у дві колонки: текст ліворуч, а чотири картки тиснулись
   у праву половину — фото товарів виходили дрібними й різного масштабу.
   Тепер текст зверху на всю ширину, картки в один ряд під ним. */
.about-main .production {
  grid-template-columns: 1fr;
}
.about-main .production-copy {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
}
.about-main .production-copy .eyebrow,
.about-main .production-copy h2,
.about-main .production-copy .lead {
  grid-column: 1;
}
.about-main .production-copy .btn {
  grid-column: 2;
  grid-row: 2 / span 2;
  justify-self: end;
}
.about-main .production-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.about-main .production-card {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: stretch;
  gap: 0;
  padding: 0;
  background: var(--white);
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.about-main .production-photo {
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--paper);
  overflow: hidden;
}
.about-main .production-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 12px;
  transition: transform 0.35s ease;
}
.about-main .production-body {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px max(18px, 1.6vw) 18px;
  border-top: 1px solid var(--ink);
}
.about-main .production-body strong {
  font-size: 16px;
  line-height: 1.1;
  text-transform: uppercase;
}
.about-main .production-text {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}
.about-main .production-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
}
.about-main .production-count {
  padding: 6px 10px;
  border: 1px solid var(--ink);
  background: var(--paper);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.about-main .production-meta svg {
  color: var(--red);
  transition: transform 0.22s ease;
}

.about-main .production-card:hover,
.about-main .production-card:focus-visible {
  z-index: 2;
  background: var(--paper);
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 var(--red);
}
.about-main .production-card:hover .production-photo img {
  transform: scale(1.05);
}
.about-main .production-card:hover .production-meta svg {
  transform: translate(3px, -3px);
}
.about-main .production-card:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: -3px;
}

/* Кому важливо менше руху — прибираємо трансформації. */
@media (prefers-reduced-motion: reduce) {
  .about-main .production-card,
  .about-main .production-photo img,
  .about-main .production-meta svg {
    transition: none;
  }
  .about-main .production-card:hover {
    transform: none;
  }
  .about-main .production-card:hover .production-photo img {
    transform: none;
  }
}

@media (max-width: 1180px) {
  .about-main .production-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .about-main .production-grid {
    grid-template-columns: 1fr;
  }
  .about-main .production-copy {
    grid-template-columns: 1fr;
  }
  .about-main .production-copy .btn {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }
}
