    :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: 840px;
      font-size: clamp(42px, 5.8vw, 88px);
    }

    h2 {
      font-size: clamp(34px, 4.6vw, 70px);
    }

    h3 {
      font-size: clamp(24px, 2.4vw, 36px);
    }

    .eyebrow {
      color: var(--red);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .lead {
      max-width: 620px;
      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);
    }

    .goals-hero .btn.secondary {
      border-color: rgba(255,255,255,0.72);
      color: var(--white);
    }

    .goals-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);
    }

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

    .goals-hero {
      width: var(--container);
      height: clamp(430px, 52svh, 560px);
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
      border-bottom: 1px solid var(--ink);
      background: var(--ink);
      color: var(--white);
      overflow: hidden;
    }

    .goals-hero::before {
      display: none;
    }

    .goals-hero-copy {
      display: grid;
      align-content: center;
      justify-items: start;
      gap: 14px;
      padding: clamp(34px, 4vw, 56px) max(32px, 4vw);
    }

    .goals-hero-copy h1 {
      max-width: 760px;
      font-size: clamp(42px, 4.6vw, 72px);
      line-height: 0.96;
    }

    .goals-hero-copy .lead {
      max-width: 690px;
      color: #d8d3cb;
      font-size: clamp(15px, 1.02vw, 18px);
      line-height: 1.42;
    }

    .goals-hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 6px;
    }

    .goals-hero-media {
      position: relative;
      inset: auto;
      display: block;
      background: var(--ink);
      min-height: 0;
    }

    .goals-hero-media img {
      height: 100%;
      object-fit: cover;
      object-position: center center;
      filter: saturate(1.04) contrast(1.04);
    }

    .hero-mini-stack {
      display: none;
    }


    .goal-strip {
      width: var(--container);
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1px;
      border-bottom: 1px solid var(--ink);
      background: var(--ink);
    }

    .goal-strip a {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 18px max(16px, 2vw);
      background: var(--white);
      color: var(--ink);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .goal-strip a:hover {
      background: var(--red);
      color: var(--white);
      transform: translateY(-3px);
    }

    .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;
    }

    .goal-grid {
      width: var(--container);
      margin: 0;
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 1px;
      border: 1px solid var(--ink);
      background: var(--ink);
    }

    .goal-card {
      position: relative;
      min-height: 360px;
      display: grid;
      grid-template-rows: 1fr auto;
      overflow: hidden;
      background: var(--white);
      color: var(--white);
    }

    .goal-card img {
      position: absolute;
      inset: 0;
      height: 100%;
      object-fit: cover;
      transition: transform 0.38s ease, filter 0.22s ease;
    }

    .goal-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.72));
      z-index: 1;
    }

    .goal-card-content {
      position: relative;
      z-index: 2;
      display: grid;
      align-content: end;
      gap: 12px;
      min-height: 100%;
      padding: 22px;
    }

    .goal-card-content span {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,0.72);
      color: var(--white);
    }

    .goal-card h3 {
      max-width: 220px;
      color: var(--white);
      font-size: clamp(24px, 2.6vw, 38px);
    }

    .goal-card p {
      max-width: 240px;
      color: #eee7dc;
      font-size: 13px;
      font-weight: 900;
    }

    .goal-card:hover img {
      transform: scale(1.08);
      filter: saturate(1.08) contrast(1.08);
    }

    .goal-card:hover .goal-card-content span {
      background: var(--red);
      border-color: var(--red);
    }

    .ritual-band {
      width: var(--container);
      margin-top: 72px;
      display: grid;
      grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
      gap: 1px;
      border-top: 1px solid var(--ink);
      border-bottom: 1px solid var(--ink);
      background: var(--ink);
    }

    .ritual-copy {
      display: grid;
      align-content: center;
      gap: 16px;
      padding: max(34px, 4.5vw);
      background: var(--paper);
    }

    .ritual-copy .lead {
      font-size: 17px;
    }

    .ritual-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--ink);
    }

    .ritual-step {
      min-height: 360px;
      display: grid;
      align-content: space-between;
      padding: 24px;
      background: var(--white);
    }

    .ritual-step strong {
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .ritual-step img {
      height: 190px;
      object-fit: cover;
      background: var(--paper);
    }

    .ritual-step div {
      display: grid;
      gap: 8px;
    }

    .ritual-step h3 {
      font-size: 24px;
    }

    .ritual-step p {
      color: var(--muted);
      font-size: 13px;
      font-weight: 900;
    }

    .product-preview {
      width: var(--container);
      margin: 72px 0 0;
      border: 1px solid var(--ink);
      background: var(--white);
    }

    .product-preview-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 24px;
      align-items: end;
      padding: 28px;
      border-bottom: 1px solid var(--ink);
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1px;
      background: var(--ink);
    }

    .product-card {
      min-height: 390px;
      display: grid;
      grid-template-rows: auto 1fr auto;
      gap: 12px;
      padding: 18px;
      background: var(--white);
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

    .product-card:hover {
      transform: translate(-4px, -4px);
      box-shadow: 8px 8px 0 var(--red);
    }

    .product-card .label {
      display: flex;
      justify-content: space-between;
      gap: 8px;
      color: var(--muted);
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .product-card img {
      height: 240px;
      object-fit: cover;
      background: var(--paper);
    }

    .product-card strong {
      display: block;
      font-size: 15px;
      font-weight: 900;
      line-height: 1.05;
      text-transform: uppercase;
    }

    .product-card .meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      padding-top: 10px;
      border-top: 1px solid var(--line);
      font-size: 13px;
      font-weight: 900;
    }

    .product-card .meta a {
      min-height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--ink);
      padding: 0 12px;
      background: var(--ink);
      color: var(--white);
      text-transform: uppercase;
      transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

    .product-card .meta a:hover {
      background: var(--red);
      border-color: var(--red);
      transform: translate(-2px, -2px);
      box-shadow: 4px 4px 0 var(--ink);
    }

    .consult-band {
      width: var(--container);
      min-height: clamp(420px, 34vw, 520px);
      margin-top: 72px;
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
      align-items: stretch;
      gap: 1px;
      border-top: 1px solid var(--ink);
      background: var(--ink);
      overflow: hidden;
    }

    .consult-band div {
      min-height: clamp(420px, 34vw, 520px);
      display: grid;
      align-content: center;
      justify-items: start;
      gap: 18px;
      padding: max(36px, 4.5vw);
      background: #0b0b0b;
      color: var(--white);
    }

    .consult-band h2 {
      max-width: 680px;
      font-size: clamp(36px, 4.4vw, 68px);
    }

    .consult-band .lead {
      max-width: 650px;
      color: #d8d3cb;
      font-size: clamp(15px, 1.08vw, 18px);
      line-height: 1.45;
    }

    .consult-band img {
      height: 100%;
      min-height: clamp(420px, 34vw, 520px);
      object-fit: cover;
    }

    .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) {
      .goal-grid,
      .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .goal-strip {
        grid-template-columns: repeat(3, 1fr);
      }

      .ritual-band,
      .consult-band,
      .goals-hero {
        grid-template-columns: 1fr;
      }

      .goals-hero-media {
        min-height: 420px;
        height: auto;
      }

      .ritual-steps {
        grid-template-columns: 1fr;
      }

      .ritual-step {
        min-height: 0;
      }

      .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;
      }

      .goals-hero {
        height: auto;
        min-height: 0;
      }

      .goals-hero-copy {
        padding: 46px 12px 54px;
      }

      .goals-hero-copy h1 {
        max-width: 340px;
        font-size: 42px;
      }

      .goals-hero-copy .lead {
        max-width: 340px;
        font-size: 16px;
      }

      .goals-hero-actions,
      .goals-hero-actions .btn {
        width: 100%;
      }

      .goals-hero-media {
        display: block;
        min-height: 0;
        height: auto;
      }

      .goals-hero-media > img {
        height: 360px;
      }

      .hero-mini-stack {
        display: none;
      }


      .goal-strip,
      .goal-grid,
      .product-grid,
      .section-head,
      .product-preview-head,
      .consult-band {
        grid-template-columns: 1fr;
      }

      .goal-strip a {
        min-height: 58px;
      }

      .section-head {
        padding: 44px 12px 22px;
      }

      .goal-card {
        min-height: 320px;
      }

      .ritual-band,
      .product-preview,
      .consult-band {
        margin-top: 44px;
      }

      .ritual-copy,
      .consult-band div {
        padding: 34px 12px;
      }

      .ritual-step {
        padding: 18px;
      }

      .product-preview-head {
        padding: 22px 18px;
      }

      .consult-band {
        height: auto;
      }

      .consult-band img {
        min-height: 260px;
      }

      .footer {
        padding: 38px 12px 22px;
      }

      .footer-grid,
      .footer-bottom {
        grid-template-columns: 1fr;
        display: grid;
      }
    }
  
    .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%; }
    }

/* ── Вітрина на реальних товарах ───────────────────────────────────────
   Картки малювались під короткі вигадані назви («Маска Pearl Blonde»,
   18 символів). Справжні назви з каталогу — 90-130 символів, від чого
   заголовок розповзався на чотири рядки, а ціна з кнопкою в сусідніх
   картках опинялись на різній висоті. */

.product-grid .product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-grid .product-card img {
  flex: 0 0 auto;
  height: 240px;
  width: 100%;
  /* cover різав флакону горлечко — знімки товарів вертикальні. */
  object-fit: contain;
  background: #f4f1ec;
  padding: 10px;
}

.product-grid .product-card strong {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.2;
}

.product-grid .product-card .meta {
  margin-top: auto;
}

/* «Акція» червоним — так само, як на головній. Назва категорії
   лишається спокійною, інакше червоним світився б увесь ряд. */
.product-card .label span.is-sale {
  color: var(--red);
}

/* ── Опис під заголовком, а не збоку ────────────────────────────────
   `.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%;
}
