    :root {
      --ink: #070707;
      --paper: #f7f5f0;
      --white: #fff;
      --muted: #66615b;
      --line: #d9d5ce;
      --red: #e22b1a;
      --gold: #b78a35;
      --sage: #a7b09a;
      --cream: #ede6da;
      --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(100% - 56px));
      min-height: 62px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 14px;
      position: relative;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .nav a:hover {
      color: var(--red);
    }

    .nav a,
    .nav-trigger {
      white-space: nowrap;
    }

    .nav.right {
      justify-content: flex-end;
    }

    .nav-item {
      position: static;
    }

    .nav-trigger {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      min-height: 62px;
      padding: 0;
      border: 0;
      background: transparent;
      color: inherit;
      font: inherit;
      text-transform: inherit;
      cursor: pointer;
    }

    .nav-trigger:hover {
      color: var(--red);
    }

    .mega-menu {
      position: absolute;
      top: 100%;
      left: 50%;
      width: calc(100% - 32px);
      gap: 1px;
      padding: 1px;
      background: var(--ink);
      border: 1px solid var(--ink);
      box-shadow: 0 28px 70px rgba(0,0,0,0.22);
      opacity: 0;
      visibility: hidden;
      transform: translate(-50%, 8px);
      transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    }

    .nav-item:hover .mega-menu,
    .nav-item:focus-within .mega-menu {
      opacity: 1;
      visibility: visible;
      transform: translate(-50%, 0);
    }

    .mega-menu.shop-mega,
    .mega-menu.hair-mega {
      grid-template-columns: 1fr;
    }

    .mega-shell {
      display: grid;
      gap: 1px;
      background: var(--ink);
      width: 100%;
    }

    .mega-menu a {
      white-space: normal;
    }

    .shop-shell {
      grid-template-columns: minmax(360px, 0.95fr) minmax(430px, 1.08fr) minmax(220px, 0.48fr);
    }

    .hair-shell {
      grid-template-columns: 1fr;
    }

    .hair-mega .mega-shell,
    .concern-mega .mega-shell {
      width: 100%;
    }

    .mega-list-panel,
    .mega-visual-panel,
    .mega-quick-panel {
      min-height: 360px;
      padding: 24px;
      background: var(--white);
    }

    .mega-panel-head {
      display: grid;
      gap: 6px;
      max-width: 620px;
    }

    .mega-panel-head strong {
      color: var(--red);
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .mega-panel-head h3 {
      margin: 0;
      font-size: clamp(28px, 2.4vw, 42px);
      line-height: 1;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .mega-panel-head p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
      line-height: 1.35;
    }

    .mega-thumb-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin-top: 18px;
    }

    .hair-thumb-list {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 9px;
    }

    .mega-thumb-link,
    .mega-quick-link {
      display: grid;
      align-items: center;
      border: 1px solid var(--ink);
      background: #fbfaf6;
      color: var(--ink);
      overflow: hidden;
      font-size: 11px;
      font-weight: 900;
      line-height: 1.15;
      text-transform: uppercase;
      transition: background 0.22s ease, color 0.22s ease, opacity 0.22s ease, grid-template-columns 0.28s ease, box-shadow 0.22s ease;
    }

    .mega-thumb-link {
      grid-template-columns: 56px minmax(0, 1fr) 18px;
      min-height: 66px;
      gap: 12px;
      padding: 7px;
    }

    .hair-thumb-list .mega-thumb-link {
      grid-template-columns: 50px minmax(0, 1fr);
      min-height: 74px;
      gap: 10px;
    }

    .mega-thumb-link img,
    .mega-quick-link img {
      width: 100%;
      height: 48px;
      object-fit: cover;
      object-position: center;
      filter: saturate(0.96) contrast(1.02);
      overflow: hidden;
      transition: transform 0.35s ease, filter 0.22s ease;
    }

    .hair-thumb-list .mega-thumb-link img {
      height: 56px;
    }

    .mega-thumb-link i,
    .mega-quick-link i {
      width: 17px;
      height: 17px;
      transition: transform 0.22s ease;
    }

    .mega-thumb-list:hover .mega-thumb-link,
    .mega-quick-list:hover .mega-quick-link {
      opacity: 0.66;
    }

    .mega-thumb-list .mega-thumb-link:hover,
    .mega-quick-list .mega-quick-link:hover {
      opacity: 1;
      background: var(--ink);
      color: var(--white);
      box-shadow: inset 0 -4px 0 var(--red);
    }

    .mega-thumb-link:hover {
      grid-template-columns: 92px minmax(0, 1fr) 18px;
    }

    .hair-thumb-list .mega-thumb-link:hover {
      grid-template-columns: 78px minmax(0, 1fr);
    }

    .mega-thumb-link:hover img,
    .mega-quick-link:hover img {
      transform: scale(1.08);
      filter: saturate(1.08) contrast(1.08);
    }

    .mega-thumb-link:hover i,
    .mega-quick-link:hover i {
      transform: translateX(4px);
    }

    .mega-expand-row {
      display: flex;
      min-height: 220px;
      margin-top: 18px;
      border: 1px solid var(--ink);
      background: var(--ink);
      overflow: hidden;
    }

    .mega-expand-card {
      position: relative;
      flex: 1 1 0;
      min-width: 90px;
      overflow: hidden;
      color: var(--white);
      transition: flex 0.38s ease, filter 0.22s ease;
    }

    .hair-shell .mega-expand-card {
      min-width: 118px;
    }

    .mega-expand-row:hover .mega-expand-card {
      flex: 0.74 1 0;
      filter: grayscale(0.45) brightness(0.82);
    }

    .mega-expand-row .mega-expand-card:hover {
      flex: 2.15 1 0;
      filter: none;
    }

    .mega-expand-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      opacity: 0.9;
      transition: transform 0.42s ease;
    }

    .mega-expand-card:hover img {
      transform: scale(1.08);
    }

    .mega-expand-card span {
      position: absolute;
      inset: auto 14px 14px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
      min-width: min(260px, calc(100% - 28px));
      padding: 12px 14px;
      background: var(--white);
      color: var(--ink);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      z-index: 1;
      transition: background 0.22s ease, color 0.22s ease;
    }

    .mega-expand-card:hover span {
      background: var(--red);
      color: var(--white);
    }

    .mega-quick-list {
      display: grid;
      gap: 12px;
      margin-top: 24px;
    }

    .mega-quick-link {
      grid-template-columns: 82px minmax(0, 1fr) 18px;
      min-height: 76px;
      gap: 12px;
      padding: 8px;
    }

    .quiz-list {
      min-height: 220px;
    }

    .mega-quick-link.quiz-card {
      position: relative;
      grid-template-columns: minmax(0, 1fr) 18px;
      align-content: end;
      align-items: end;
      min-height: 220px;
      padding: 14px;
      color: var(--white);
      background: var(--ink);
    }

    .mega-quick-link.quiz-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      opacity: 0.88;
    }

    .mega-quick-link.quiz-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(7,7,7,0.05), rgba(7,7,7,0.78));
    }

    .mega-quick-link.quiz-card span,
    .mega-quick-link.quiz-card i {
      position: relative;
      z-index: 1;
    }

    .mega-quick-link.quiz-card span {
      display: grid;
      gap: 8px;
      font-size: 12px;
    }

    .mega-quick-link.quiz-card b {
      font-size: 17px;
      line-height: 1;
      white-space: nowrap;
    }

    .mega-quick-link.quiz-card small {
      max-width: 190px;
      color: rgba(255,255,255,0.82);
      font-size: 11px;
      font-weight: 800;
      line-height: 1.35;
      text-transform: none;
    }

    .concern-shell {
      grid-template-columns: 1fr;
    }

    .concern-panel {
      min-height: 360px;
    }

    .concern-mega-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 1px;
      margin-top: 18px;
      background: var(--ink);
      border: 1px solid var(--ink);
    }

    .concern-mega-card {
      display: grid;
      grid-template-rows: 132px auto;
      min-height: 236px;
      background: #fbfaf6;
      color: var(--ink);
      overflow: hidden;
      transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
    }

    .concern-mega-card img {
      width: 100%;
      height: 132px;
      object-fit: cover;
      filter: saturate(0.96) contrast(1.02);
      transition: transform 0.35s ease, filter 0.22s ease;
    }

    .concern-mega-card div {
      display: grid;
      align-content: start;
      gap: 7px;
      padding: 13px;
      min-height: 102px;
    }

    .concern-mega-card span {
      color: var(--red);
      font-size: 11px;
      font-weight: 900;
      line-height: 1;
      text-transform: uppercase;
    }

    .concern-mega-card strong {
      font-size: 15px;
      font-weight: 950;
      line-height: 1.04;
      text-transform: uppercase;
    }

    .concern-mega-card small {
      color: var(--muted);
      font-size: 11px;
      font-weight: 800;
      line-height: 1.35;
    }

    .concern-mega-card:hover {
      color: var(--white);
      background: var(--ink);
      transform: translateY(-3px);
      box-shadow: inset 0 -5px 0 var(--red);
    }

    .concern-mega-card:hover span {
      color: var(--white);
    }

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

    .concern-mega-card:hover small {
      color: rgba(255,255,255,0.76);
    }

    @media (max-width: 1280px) {
      .mega-list-panel,
      .mega-visual-panel,
      .mega-quick-panel {
        padding: 24px;
      }

      .shop-shell {
        grid-template-columns: minmax(340px, 0.95fr) minmax(360px, 1fr) minmax(210px, 0.52fr);
      }

      .hair-shell {
        grid-template-columns: 1fr;
      }

      .mega-panel-head h3 {
        font-size: clamp(30px, 3vw, 46px);
      }

      .mega-thumb-link {
        grid-template-columns: 48px minmax(0, 1fr) 16px;
        gap: 9px;
        font-size: 10px;
      }

      .mega-thumb-link:hover {
        grid-template-columns: 74px minmax(0, 1fr) 16px;
      }

      .hair-thumb-list .mega-thumb-link {
        grid-template-columns: 44px minmax(0, 1fr);
        min-height: 70px;
      }

      .hair-thumb-list .mega-thumb-link:hover {
        grid-template-columns: 62px minmax(0, 1fr);
      }

      .mega-expand-row {
        min-height: 220px;
      }
    }

    .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;
      font-size: 10px;
      font-weight: 800;
      color: var(--gold);
      text-transform: uppercase;
    }

    .icon-btn {
      width: 42px;
      height: 42px;
      display: inline-grid;
      place-items: center;
      border: 1px solid transparent;
      border-radius: 0;
      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);
    }

    .mobile-menu {
      display: none;
    }

    .mobile-menu-toggle {
      width: 42px;
      height: 42px;
      display: inline-grid;
      place-items: center;
      border: 1px solid var(--ink);
      background: var(--white);
      color: var(--ink);
      cursor: pointer;
      list-style: none;
      transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    }

    .mobile-menu-toggle::-webkit-details-marker {
      display: none;
    }

    .mobile-menu-toggle span {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0 0 0 0);
    }

    .mobile-menu-toggle svg {
      width: 22px;
      height: 22px;
    }

    .mobile-menu[open] .mobile-menu-toggle,
    .mobile-menu-toggle:hover {
      background: var(--ink);
      color: var(--white);
      box-shadow: 4px 4px 0 var(--red);
    }

    .mobile-menu-panel {
      display: none;
    }

    .hero {
      width: var(--container);
      margin: 0 auto;
      display: grid;
      height: calc(100svh - 90px);
      min-height: 720px;
      max-height: 920px;
      grid-template-columns: 1.05fr 0.95fr;
      border-left: 0;
      border-right: 0;
      overflow: hidden;
    }

    .hero-copy {
      display: grid;
      align-content: end;
      gap: 24px;
      padding: 56px 52px 56px;
      border-right: 1px solid var(--line);
      background: var(--paper);
    }

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

    h1,
    h2,
    h3,
    p {
      margin: 0;
    }

    h1 {
      max-width: 820px;
      font-size: clamp(52px, 6.4vw, 96px);
      line-height: 0.88;
      font-weight: 900;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    h2 {
      font-size: clamp(34px, 4.6vw, 76px);
      line-height: 0.95;
      font-weight: 900;
      text-transform: uppercase;
      overflow-wrap: normal;
    }

    h3 {
      font-size: 28px;
      line-height: 0.95;
      font-weight: 900;
      text-transform: uppercase;
    }

    .lead {
      max-width: 560px;
      color: #35312d;
      font-size: clamp(18px, 2vw, 25px);
      font-weight: 700;
      overflow-wrap: anywhere;
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 6px;
    }

    .btn {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 1px solid var(--ink);
      border-radius: 0;
      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 {
      background: var(--white);
      color: var(--ink);
    }

    .btn.light:hover {
      background: var(--ink);
      color: var(--white);
      border-color: var(--ink);
      box-shadow: 6px 6px 0 var(--red);
    }

    .hero-media {
      position: relative;
      height: 100%;
      min-height: 0;
      overflow: hidden;
      background: var(--white);
    }

    .hero-media img {
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .trust {
      width: var(--container);
      margin: 18px auto 0;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      border: 1px solid var(--ink);
      background: var(--ink);
      overflow: visible;
    }

    .trust div {
      min-height: 118px;
      display: grid;
      grid-template-columns: 42px 1fr;
      align-items: center;
      gap: 16px;
      padding: 20px;
      background: var(--white);
      font-size: 14px;
      font-weight: 900;
      text-transform: uppercase;
      transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
    }

    .trust div:hover {
      transform: translate(-4px, -4px);
      background: var(--ink);
      color: var(--white);
      box-shadow: 8px 8px 0 var(--red);
    }

    .trust svg {
      width: 34px;
      height: 34px;
      color: var(--red);
      transition: transform 0.22s ease;
    }

    .trust div:hover svg {
      transform: rotate(-6deg) scale(1.08);
      color: var(--white);
    }

    .trust strong {
      display: block;
      line-height: 1.15;
    }

    .trust span {
      display: block;
      margin-top: 6px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
      line-height: 1.25;
      text-transform: none;
    }

    .trust div:hover span {
      color: #d8d3cb;
    }

    .trust div:hover strong {
      color: var(--white);
    }

    .section {
      width: var(--container);
      margin: 88px auto 0;
      border-top: 1px solid var(--line);
      border-left: 0;
      border-right: 0;
      border-bottom: 1px solid var(--line);
      background: var(--paper);
    }

    .section-head {
      position: relative;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 24px;
      align-items: start;
      padding: 86px max(40px, 4vw) 46px;
      border-bottom: 1px solid var(--line);
    }

    .section-head .lead {
      max-width: min(520px, 100%);
      color: var(--muted);
      font-size: 17px;
      font-weight: 700;
    }

    .section-head > *,
    .hero-copy,
    .quiz-copy,
    .goal-panel,
    .mission-copy {
      min-width: 0;
    }

    .head-side {
      display: flex;
      justify-content: flex-end;
      align-items: flex-end;
      gap: 12px;
      flex-wrap: nowrap;
    }

    .section-head.compact-head {
      padding-bottom: 24px;
    }

    .section-head.compact-head .head-side {
      align-self: end;
      padding-top: 58px;
    }

    .section-head.instagram-head .head-side {
      align-self: end;
      padding-top: 92px;
      transform: translateY(16px);
    }

    .product-rail {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(270px, 1fr);
      gap: 18px;
      overflow-x: hidden;
      scroll-snap-type: x mandatory;
      padding: 34px max(40px, 4vw) 46px;
      scrollbar-width: none;
    }

    .product-rail::-webkit-scrollbar,
    .insta-grid::-webkit-scrollbar {
      display: none;
    }

    .product-card {
      scroll-snap-align: start;
      min-height: 430px;
      display: grid;
      grid-template-rows: auto 1fr auto;
      gap: 10px;
      padding: 18px;
      background: var(--white);
      border: 1px solid var(--line);
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    }

    .product-card:hover {
      transform: translate(-4px, -4px);
      border-color: var(--ink);
      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 .photo {
      display: grid;
      place-items: center;
      min-height: 285px;
      background: #f1ede6;
      overflow: hidden;
    }

    .product-card .photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      mix-blend-mode: normal;
      transition: transform 0.32s ease, filter 0.22s ease;
    }

    .product-card:hover .photo img {
      transform: scale(1.05);
      filter: saturate(1.08) contrast(1.06);
    }

    .product-card strong {
      display: block;
      margin-top: 8px;
      font-size: 15px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .product-card .meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      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: transform 0.2s ease, background 0.2s ease, color 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);
    }

    .rail-shell,
    .insta-shell {
      position: relative;
    }

    .rail-arrows,
    .insta-arrows {
      position: absolute;
      top: -86px;
      right: max(40px, 4vw);
      display: flex;
      gap: 8px;
    }

    .section-head.compact-head .head-side .rail-arrows,
    .section-head.instagram-head .head-side .insta-arrows {
      position: static;
      right: auto;
      top: auto;
    }

    .section-head.compact-head > .rail-arrows {
      align-self: end;
      margin-top: 64px;
      transform: translateY(10px);
    }

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

    .arrow-btn:hover {
      background: var(--ink);
      color: var(--white);
      transform: translate(-2px, -2px);
      box-shadow: 4px 4px 0 var(--red);
    }

    .marquee {
      width: 100%;
      margin-top: 56px;
      overflow: hidden;
      border-top: 1px solid var(--ink);
      border-bottom: 1px solid var(--ink);
      background: var(--red);
      color: var(--white);
    }

    .marquee-track {
      width: max-content;
      display: flex;
      gap: 34px;
      padding: 14px 0;
      font-size: 18px;
      font-weight: 900;
      text-transform: uppercase;
      white-space: nowrap;
      animation: marquee 26s linear infinite;
    }

    .marquee-track span {
      padding-left: 34px;
    }

    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .story-grid {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      padding: 34px max(40px, 4vw) 0;
    }

    .story-card {
      min-height: 390px;
      display: grid;
      grid-template-rows: 1fr auto;
      border: 1px solid var(--line);
      background: var(--white);
      overflow: hidden;
    }

    .story-card img {
      height: 100%;
      object-fit: cover;
    }

    .story-card div {
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 12px;
      align-items: center;
      padding: 14px;
      border-top: 1px solid var(--line);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .story-card b {
      height: 46px;
      display: grid;
      place-items: center;
      background: var(--red);
      color: var(--white);
      font-size: 18px;
    }

    .editorial-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      background: var(--line);
      gap: 1px;
    }

    .editorial-tile {
      min-height: 520px;
      display: grid;
      align-content: space-between;
      background: var(--white);
      overflow: hidden;
    }

    .editorial-tile.text {
      padding: 24px;
      background: var(--paper);
      grid-template-rows: auto auto 1fr auto;
      gap: 18px;
      align-content: stretch;
    }

    .editorial-tile.text .lead {
      align-self: end;
    }

    .editorial-tile img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .editorial-tile .caption {
      padding: 16px;
      border-top: 1px solid var(--line);
      background: var(--white);
    }

    .caption strong {
      display: block;
      font-size: 20px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .caption span {
      display: block;
      margin-top: 7px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .shop-goals {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      background: var(--line);
      gap: 1px;
    }

    .goal-photo {
      min-height: 620px;
      background: var(--white);
      overflow: hidden;
    }

    .goal-photo img {
      height: 100%;
      object-fit: cover;
    }

    .goal-panel {
      display: grid;
      align-content: center;
      gap: 20px;
      padding: 44px;
      background: var(--white);
    }

    .goal-list {
      display: grid;
      border: 1px solid var(--ink);
    }

    .goal-list a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      min-height: 58px;
      padding: 0 16px;
      border-bottom: 1px solid var(--ink);
      font-size: 15px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .goal-list a:last-child {
      border-bottom: 0;
    }

    .goal-list a:hover {
      background: var(--ink);
      color: var(--white);
    }

    .stars {
      color: var(--gold);
      font-size: 14px;
      font-weight: 900;
    }

    .category-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background: var(--line);
      gap: 1px;
    }

    .category {
      position: relative;
      min-height: 360px;
      overflow: hidden;
      background: var(--ink);
      color: var(--white);
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

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

    .category img {
      height: 100%;
      object-fit: cover;
      opacity: 0.86;
      transition: transform 0.35s ease;
    }

    .category:hover img {
      transform: scale(1.04);
    }

    .category span {
      position: absolute;
      inset: auto 14px 14px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      background: var(--white);
      color: var(--ink);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      transition: background 0.22s ease, color 0.22s ease;
    }

    .category:hover span {
      background: var(--red);
      color: var(--white);
    }

    .concern-strip {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1px;
      padding: 1px;
      background: var(--ink);
      border-top: 1px solid var(--ink);
    }

    .concern-strip a {
      min-height: 168px;
      display: grid;
      grid-template-rows: auto 1fr auto;
      align-content: stretch;
      gap: 12px;
      padding: 18px;
      background: var(--white);
      color: var(--ink);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
    }

    .concern-strip a:hover {
      background: var(--ink);
      color: var(--white);
      transform: translate(-4px, -4px);
      box-shadow: 8px 8px 0 var(--red);
    }

    .concern-strip svg {
      width: 30px;
      height: 30px;
      color: var(--red);
    }

    .concern-strip strong {
      display: block;
      align-self: end;
      font-size: 15px;
      line-height: 1.15;
    }

    .concern-strip small {
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
      line-height: 1.25;
      text-transform: none;
    }

    .concern-strip a:hover svg,
    .concern-strip a:hover small {
      color: var(--white);
    }

    .quiz {
      display: grid;
      grid-template-columns: 1fr 1fr;
      background: var(--line);
      gap: 1px;
    }

    .quiz-copy,
    .quiz-steps {
      padding: 58px;
      background: var(--white);
    }

    .quiz-copy {
      display: grid;
      align-content: space-between;
      gap: 26px;
      min-height: 430px;
    }

    .quiz-copy .lead {
      max-width: 720px;
    }

    .quiz-steps {
      display: grid;
      gap: 1px;
      padding: 0;
      background: var(--line);
    }

    .quiz-step {
      display: grid;
      grid-template-columns: 64px 1fr;
      align-items: center;
      min-height: 112px;
      background: var(--white);
    }

    .quiz-step b {
      height: 100%;
      display: grid;
      place-items: center;
      border-right: 1px solid var(--line);
      color: var(--red);
      font-size: 24px;
    }

    .quiz-step span {
      padding: 18px;
      font-size: 18px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      background: var(--line);
      gap: 1px;
    }

    .blog-card {
      background: var(--white);
    }

    .blog-card img {
      aspect-ratio: 16 / 9;
      object-fit: cover;
    }

    .blog-card div {
      min-height: 132px;
      padding: 18px;
    }

    .blog-card strong {
      display: block;
      max-width: 540px;
      font-size: 24px;
      line-height: 1;
      font-weight: 900;
      text-transform: uppercase;
    }

    .insta-grid {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(260px, 1fr);
      gap: 14px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding: 26px max(40px, 4vw) 44px;
      background: var(--paper);
      scrollbar-width: none;
    }

    .insta-tile {
      scroll-snap-align: start;
      min-height: 320px;
      position: relative;
      overflow: hidden;
      background: var(--white);
      border: 1px solid var(--line);
    }

    .insta-tile img {
      height: 100%;
      object-fit: cover;
      transition: transform 0.35s ease;
    }

    .insta-tile:hover img {
      transform: scale(1.05);
    }

    .insta-tile span {
      position: absolute;
      left: 10px;
      bottom: 10px;
      padding: 6px 9px;
      background: var(--white);
      border: 1px solid var(--ink);
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .mission {
      display: grid;
      grid-template-columns: 0.86fr 1.14fr;
      background: var(--ink);
      color: var(--white);
      border-color: var(--ink);
    }

    .mission-copy {
      display: grid;
      align-content: space-between;
      gap: 18px;
      padding: 64px 54px;
    }

    .mission-copy .lead {
      color: #e6e0d8;
    }

    .mission-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      background: #222;
      gap: 1px;
    }

    .mission-list div {
      min-height: 260px;
      display: grid;
      grid-template-rows: 48px auto 1fr;
      align-content: start;
      gap: 16px;
      padding: 28px;
      background: #0d0d0d;
      font-size: 18px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .mission-list i,
    .mission-list svg {
      align-self: start;
      color: var(--red);
    }

    .mission-list p {
      margin: 0;
      color: #cfc7bb;
      font-size: 14px;
      line-height: 1.45;
      font-weight: 700;
      text-transform: none;
    }

    .mission-media {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr 0.8fr;
      gap: 1px;
      background: #222;
    }

    .mission-media img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      background: #111;
    }

    .footer {
      width: var(--container);
      margin: 88px auto 0;
      padding: 0;
      background: #000;
      color: var(--white);
    }

    .footer-grid {
      width: min(1180px, calc(100vw - 48px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.3fr repeat(4, 0.8fr);
      gap: 34px;
      padding: 46px 0 42px;
    }

    .footer h4 {
      margin: 0 0 12px;
      font-size: 12px;
      text-transform: uppercase;
    }

    .footer-grid > div:first-child h4 {
      font-size: clamp(24px, 2.6vw, 38px);
      line-height: 0.95;
      letter-spacing: 0;
    }

    .footer a,
    .footer p {
      display: block;
      margin: 0 0 8px;
      color: #cfcfcf;
      font-size: 13px;
      font-weight: 700;
    }

    .footer-bottom {
      width: min(1180px, calc(100vw - 48px));
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      border-top: 1px solid #282828;
      padding: 18px 0 28px;
      color: #8c8c8c;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .video-hero {
      position: relative;
      display: block;
      height: calc(100svh - 90px);
      min-height: 720px;
      max-height: 940px;
      overflow: hidden;
      background: var(--ink);
      color: var(--white);
    }

    .video-hero-media {
      position: absolute;
      inset: 0;
    }

    .video-hero-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(0,0,0,0.64), rgba(0,0,0,0.18) 46%, rgba(0,0,0,0.1));
    }

    .video-hero-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      animation: heroMotion 16s ease-in-out infinite alternate;
    }

    @keyframes heroMotion {
      from { transform: scale(1.02); }
      to { transform: scale(1.1) translate3d(-2%, -1%, 0); }
    }

    .video-hero .hero-copy {
      position: relative;
      z-index: 2;
      width: min(760px, calc(100vw - 80px));
      height: 100%;
      border: 0;
      background: transparent;
      padding: 0 0 54px max(52px, 4vw);
    }

    .video-hero .lead {
      color: var(--white);
    }

    .video-hero .btn.light {
      background: rgba(255,255,255,0.9);
    }

    .video-hero .btn.light:hover {
      background: var(--white);
      color: var(--ink);
      border-color: var(--ink);
      box-shadow: 6px 6px 0 var(--red);
    }

    .section-head .rail-arrows,
    .section-head .insta-arrows {
      position: static;
      justify-self: end;
      align-self: end;
    }

    .goal-banner {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      height: 500px;
      min-height: 0;
      background: var(--line);
      gap: 1px;
      overflow: hidden;
    }

    .goal-banner-media {
      position: relative;
      overflow: hidden;
      background: var(--ink);
    }

    .goal-banner-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .goal-banner-copy {
      display: grid;
      grid-template-rows: auto auto 1fr auto;
      align-content: stretch;
      gap: 14px;
      padding: 36px;
      background: var(--white);
    }

    .goal-banner-copy h2 {
      font-size: clamp(34px, 3.7vw, 54px);
    }

    .goal-banner-copy .lead {
      max-width: 680px;
      font-size: 18px;
    }

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

    .goal-links a {
      min-height: 190px;
      display: grid;
      grid-template-rows: 1fr auto;
      border-right: 1px solid var(--ink);
      padding: 0;
      background: var(--white);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      overflow: hidden;
      transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
    }

    .goal-links a::before {
      content: "";
      min-height: 144px;
      display: block;
      background-size: cover;
      background-position: center;
      filter: grayscale(0.2) contrast(1.02);
      transition: transform 0.25s ease, filter 0.25s ease, opacity 0.25s ease;
    }

    .goal-links a:nth-child(1)::before {
      background-image: url("/wp-content/uploads/2026/06/web-salon-color-scaled.jpg");
    }

    .goal-links a:nth-child(2)::before {
      background-image: url("/wp-content/uploads/2026/06/luneva-before-after.jpg");
    }

    .goal-links a:nth-child(3)::before {
      background-image: url("/wp-content/uploads/2026/06/web-hair-rinse-scaled.jpg");
    }

    .goal-links a:nth-child(4)::before {
      background-image: url("/wp-content/uploads/2026/06/web-wet-treatment-scaled.jpg");
    }

    .goal-links a:nth-child(5)::before {
      background-image: url("/wp-content/uploads/2026/06/web-red-mask-scaled.jpg");
    }

    .goal-link-row {
      min-height: 46px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      border-top: 1px solid var(--ink);
      padding: 0 10px;
      font-size: 11px;
      line-height: 1;
      white-space: nowrap;
    }

    .goal-link-row svg {
      width: 18px;
      height: 18px;
      flex: 0 0 auto;
    }

    .goal-links a:last-child {
      border-right: 0;
    }

    .goal-links a:hover {
      background: var(--ink);
      color: var(--white);
      transform: translate(-4px, -4px);
      box-shadow: 8px 8px 0 var(--red);
      z-index: 1;
    }

    .goal-links a:hover::before {
      transform: scale(1.06);
      filter: grayscale(1) contrast(1.12) brightness(0.72);
      opacity: 0.82;
    }

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

    .blog-slider {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(420px, 32vw);
      gap: 16px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding: 26px max(40px, 4vw) 44px;
      scrollbar-width: none;
    }

    .blog-slider::-webkit-scrollbar {
      display: none;
    }

    .blog-slider .blog-card {
      scroll-snap-align: start;
      border: 1px solid var(--line);
    }

    .review-slider {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: calc(100vw - max(80px, 8vw));
      gap: 16px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding: 34px max(40px, 4vw) 48px;
      scrollbar-width: none;
    }

    .review-slider::-webkit-scrollbar {
      display: none;
    }

    .review-slide {
      scroll-snap-align: start;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      height: 520px;
      min-height: 0;
      border: 1px solid var(--line);
      background: var(--white);
      overflow: hidden;
    }

    .review-slide img {
      width: 100%;
      height: 100%;
      max-height: 520px;
      object-fit: cover;
      object-position: center;
    }

    .review-copy {
      display: grid;
      align-content: center;
      gap: 16px;
      padding: 36px;
    }

    .review-copy p {
      font-size: 28px;
      line-height: 1.05;
      font-weight: 900;
      text-transform: uppercase;
    }

    .center-section {
      grid-template-columns: 1fr;
    }

    .center-section .mission-copy {
      grid-template-columns: 1.2fr 0.8fr;
      align-items: start;
      padding: 76px max(48px, 4vw) 54px;
    }

    .center-title {
      display: grid;
      align-content: start;
      gap: 22px;
    }

    .center-title .btn {
      justify-self: start;
    }

    .center-section .btn.light:hover {
      background: var(--red);
      color: var(--white);
      border-color: var(--red);
      box-shadow: 6px 6px 0 var(--white);
    }

    .center-text {
      display: grid;
      align-content: start;
      padding-top: 112px;
    }

    .center-section h2 {
      font-size: clamp(42px, 4.8vw, 68px);
      overflow-wrap: break-word;
    }

    .center-section .mission-copy .lead {
      max-width: 760px;
    }

    .center-section .mission-list div {
      min-height: 230px;
    }

    @media (max-width: 1020px) {
      .nav.left {
        display: none;
      }

      .header-inner {
        grid-template-columns: auto 1fr auto;
      }

      .brand {
        justify-items: start;
      }

      .hero,
      .section-head,
      .shop-goals,
      .quiz,
      .mission {
        grid-template-columns: 1fr;
      }

      .hero-copy {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .product-rail,
      .story-grid,
      .category-grid,
      .concern-strip,
      .editorial-grid,
      .blog-grid,
      .insta-grid,
      .mission-list,
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .product-rail {
        grid-template-columns: none;
        grid-auto-columns: minmax(260px, 48vw);
      }

      .review-slider {
        grid-auto-columns: minmax(660px, 88vw);
      }

      .insta-grid {
        grid-template-columns: none;
        grid-auto-columns: minmax(250px, 42vw);
      }

      .mission-media {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .topbar {
        padding: 8px 12px;
        font-size: 11px;
        line-height: 1.2;
        text-align: center;
      }

      .header-inner {
        width: calc(100vw - 20px);
        min-height: 62px;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px;
      }

      .header .nav.right {
        display: none;
      }

      .brand {
        min-width: 0;
        justify-items: start;
      }

      .brand strong {
        font-size: 19px;
      }

      .brand span {
        font-size: 10px;
      }

      .mobile-menu {
        display: block;
        justify-self: end;
        position: static;
        z-index: 90;
      }

      .mobile-menu-panel {
        position: absolute;
        top: 100%;
        left: 50%;
        z-index: 120;
        width: 100vw;
        height: calc(100dvh - 62px);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: auto;
        border-top: 1px solid var(--ink);
        background: var(--ink);
        color: var(--white);
        transform: translateX(-50%);
        box-shadow: none;
      }

      .mobile-menu-list {
        display: grid;
        gap: 1px;
        background: var(--ink);
      }

      .mobile-menu-panel a,
      .mobile-submenu summary {
        min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        border: 0;
        padding: 0 18px;
        background: var(--white);
        color: var(--ink);
        font-size: 12px;
        font-weight: 900;
        list-style: none;
        text-transform: uppercase;
        cursor: pointer;
      }

      .mobile-submenu summary::-webkit-details-marker {
        display: none;
      }

      .mobile-submenu summary svg,
      .mobile-menu-panel a svg {
        width: 18px;
        height: 18px;
        transition: transform 0.2s ease;
      }

      .mobile-submenu[open] summary {
        background: var(--ink);
        color: var(--white);
        box-shadow: inset 0 -4px 0 var(--red);
      }

      .mobile-submenu[open] summary svg {
        transform: rotate(180deg);
      }

      .mobile-submenu-links {
        display: grid;
        gap: 1px;
        background: var(--line);
      }

      .mobile-submenu-links a {
        min-height: 48px;
        padding-left: 34px;
        background: #fbfaf7;
        color: var(--ink);
        font-size: 11px;
      }

      .mobile-menu-panel a:hover {
        background: var(--ink);
        color: var(--white);
      }

      .mobile-menu-panel a:hover svg {
        transform: translateX(4px);
      }

      .mobile-menu-panel svg {
        width: 18px;
        height: 18px;
        transition: transform 0.2s ease;
      }

      .mobile-menu-bottom {
        display: grid;
        gap: 14px;
        border-top: 1px solid rgba(255,255,255,0.18);
        padding: 16px;
        background: #070707;
      }

      .mobile-locale-label {
        color: #aaa39b;
        font-size: 10px;
        font-weight: 900;
        text-transform: uppercase;
      }

      .mobile-locale-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 8px;
      }

      .mobile-locale-row button,
      .mobile-checkout {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border: 1px solid rgba(255,255,255,0.28);
        background: transparent;
        color: var(--white);
        font-size: 11px;
        font-weight: 900;
        text-transform: uppercase;
      }

      .mobile-locale-row button.is-active,
      .mobile-locale-row button:hover {
        border-color: var(--white);
        background: var(--white);
        color: var(--ink);
      }

      .mobile-checkout {
        min-height: 50px;
        border-color: var(--white);
        background: var(--white);
        color: var(--ink);
      }

      .mobile-checkout:hover {
        background: var(--red);
        border-color: var(--red);
        color: var(--white);
      }

      .hero {
        height: auto;
        min-height: auto;
        border-left: 0;
        border-right: 0;
        overflow: visible;
      }

      .hero-copy {
        padding: 34px 12px 28px;
      }

      .video-hero .hero-copy {
        width: 100%;
        padding: 30px 12px 28px;
      }

      .video-hero-media {
        overflow: hidden;
      }

      .video-hero-media img {
        width: 100%;
        transform: none;
        animation: none;
      }

      .hero-cta {
        display: grid;
        grid-template-columns: 1fr;
      }

      .btn {
        width: 100%;
      }

      h1 {
        font-size: 38px;
        line-height: 0.92;
      }

      h2 {
        font-size: 31px;
        line-height: 0.98;
      }

      .lead {
        max-width: 100%;
        font-size: 16px;
      }

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

      .trust,
      .product-rail,
      .editorial-grid,
      .category-grid,
      .concern-strip,
      .blog-grid,
      .insta-grid,
      .mission-list,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .trust div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .section {
        border-left: 0;
        border-right: 0;
      }

      .section-head {
        padding: 34px 12px 20px;
      }

      .head-side {
        justify-content: flex-start;
        flex-wrap: wrap;
      }

      .section-head.compact-head .head-side,
      .section-head.instagram-head .head-side {
        padding-top: 0;
        transform: none;
      }

      .section-head.compact-head > .rail-arrows {
        margin-top: 0;
        transform: none;
      }

      .hero-copy .lead,
      .hero-cta,
      .section-head h2,
      .section-head .lead,
      .quiz-copy h2,
      .quiz-copy .lead {
        max-width: 360px;
      }

      .section {
        margin-top: 56px;
      }

      .product-rail,
      .story-grid {
        gap: 14px;
        padding: 18px 12px 24px;
      }

      .blog-slider {
        width: 100%;
        max-width: 100vw;
        grid-auto-columns: calc(100vw - 24px);
        gap: 12px;
        padding: 14px 12px 24px;
        overflow-x: auto;
      }

      .blog-slider .blog-card {
        width: 100%;
      }

      #blog .section-head.compact-head {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: end;
        gap: 12px;
      }

      #blog .section-head.compact-head > div:first-child {
        grid-column: 1;
        min-width: 0;
      }

      #blog .section-head.compact-head h2 {
        max-width: 245px;
        font-size: 30px;
      }

      #blog .section-head.compact-head .head-side {
        display: contents;
      }

      #blog .section-head.compact-head .head-side .btn {
        display: none;
      }

      #blog .section-head.compact-head .rail-arrows {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        align-self: end;
        display: inline-flex;
        gap: 8px;
        margin: 0;
      }

      .story-grid {
        grid-template-columns: 1fr;
      }

      .product-rail {
        grid-template-columns: none;
        grid-auto-columns: minmax(250px, 82vw);
      }

      .goal-banner,
      .review-slide {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
      }

      .goal-banner-media,
      .review-slide img {
        height: 260px;
        min-height: 0;
      }

      .goal-banner-copy {
        padding: 28px 12px;
      }

      .goal-links {
        grid-template-columns: 1fr;
      }

      .goal-links a {
        min-height: 132px;
        border-right: 0;
        border-bottom: 1px solid var(--ink);
      }

      .goal-links a::before {
        min-height: 88px;
      }

      .goal-link-row {
        min-height: 44px;
      }

      .goal-links a:last-child {
        border-bottom: 0;
      }

      .concern-strip a {
        min-height: 0;
        grid-template-columns: 36px minmax(0, 1fr);
        grid-template-rows: auto auto;
        align-items: start;
        gap: 4px 14px;
        padding: 16px 18px;
      }

      .concern-strip svg {
        width: 26px;
        height: 26px;
        grid-column: 1;
        grid-row: 1 / span 2;
        margin-top: 2px;
      }

      .concern-strip strong,
      .concern-strip small {
        grid-column: 2;
      }

      .concern-strip strong {
        align-self: start;
        font-size: 14px;
      }

      .concern-strip small {
        font-size: 12px;
        line-height: 1.25;
      }

      .review-slider {
        grid-auto-columns: minmax(275px, 88vw);
        padding: 18px 12px 26px;
      }

      .insta-grid {
        grid-template-columns: none;
        grid-auto-columns: minmax(245px, 78vw);
        padding: 18px 12px 26px;
      }

      .rail-arrows,
      .insta-arrows {
        position: static;
        padding: 0;
      }

      .story-card {
        min-height: 360px;
      }

      .editorial-tile,
      .goal-photo,
      .category {
        min-height: 0;
      }

      .category {
        height: 310px;
      }

      .category img {
        height: 100%;
      }

      .quiz-copy,
      .goal-panel,
      .mission-copy {
        padding: 24px 12px;
      }

      .section-head.compact-head,
      .section-head.instagram-head {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: end;
        gap: 14px;
      }

      .section-head.compact-head > div:first-child,
      .section-head.instagram-head > div:first-child {
        min-width: 0;
      }

      .section-head.compact-head h2,
      .section-head.instagram-head h2 {
        max-width: 250px;
        font-size: 30px;
      }

      .section-head.compact-head .rail-arrows,
      .section-head.instagram-head .insta-arrows,
      .section-head.compact-head > .rail-arrows {
        justify-self: end;
        align-self: end;
        display: inline-flex;
        gap: 8px;
        padding: 0;
        margin: 0;
      }

      #instagram .section-head.instagram-head {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 16px;
      }

      #instagram .section-head.instagram-head h2 {
        max-width: 330px;
      }

      #instagram .section-head.instagram-head .head-side {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 10px;
      }

      #instagram .section-head.instagram-head .head-side .btn {
        width: 100%;
        min-width: 0;
        min-height: 44px;
        padding: 0 14px;
      }

      #instagram .section-head.instagram-head .insta-arrows {
        justify-self: end;
      }

      .arrow-btn {
        width: 42px;
        height: 42px;
        background: var(--white);
      }

      .review-slider {
        grid-auto-columns: calc(100vw - 24px);
        gap: 12px;
        padding: 14px 12px 24px;
      }

      .review-slide {
        height: auto;
        min-height: 0;
        grid-template-rows: 210px auto;
      }

      .review-slide img {
        height: 210px;
        min-height: 0;
        max-height: none;
      }

      .review-copy {
        align-content: start;
        gap: 10px;
        padding: 22px 18px 24px;
      }

      .review-copy p {
        font-size: 20px;
        line-height: 1.08;
      }

      .review-copy small {
        font-size: 12px;
        line-height: 1.35;
      }

      .center-section {
        overflow: hidden;
      }

      .center-section .mission-copy {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 44px 28px;
      }

      .center-title {
        gap: 18px;
      }

      .center-section h2 {
        max-width: 320px;
        font-size: 39px;
        line-height: 0.98;
        overflow-wrap: normal;
        word-break: normal;
      }

      .center-text {
        padding-top: 0;
      }

      .center-section .mission-copy .lead {
        max-width: 320px;
        font-size: 15px;
        line-height: 1.45;
      }

      .center-title .btn {
        width: 100%;
        max-width: 310px;
      }

      .center-section .mission-list {
        grid-template-columns: 1fr;
      }

      .center-section .mission-list div {
        min-height: 0;
        grid-template-rows: auto auto auto;
        gap: 12px;
        padding: 22px 28px;
        font-size: 15px;
      }

      .footer {
        margin-top: 42px;
      }

      .footer-grid {
        width: 100%;
        padding: 26px 12px;
      }

      .footer-bottom {
        width: calc(100% - 24px);
        flex-direction: column;
      }
    }
  
    /* 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%; }
    }
    .header .mega-shell { width: 100%; }
    .header .mega-menu a { white-space: normal; }
    .header .shop-shell { grid-template-columns: minmax(360px, 0.95fr) minmax(430px, 1.08fr) minmax(220px, 0.48fr); }
    .header .hair-shell { grid-template-columns: 1fr; }
    .header .hair-mega .mega-list-panel,
    .header .concern-mega .mega-list-panel { grid-column: 1 / -1; min-height: auto; }
    .header .mega-list-panel,
    .header .mega-visual-panel,
    .header .mega-quick-panel { min-height: 360px; padding: 24px; }
    .header .mega-panel-head { gap: 6px; }
    .header .mega-panel-head h3 { font-size: clamp(28px, 2.4vw, 42px); line-height: 1; white-space: nowrap; }
    .header .mega-thumb-list,
    .header .mega-expand-row,
    .header .mega-quick-list,
    .header .concern-mega-grid { margin-top: 18px; }
    .header .mega-expand-row,
    .header .quiz-list,
    .header .mega-quick-link.quiz-card { min-height: 220px; }
    .header .quiz-panel .mega-quick-list { margin-top: 42px; }
    .header .mega-quick-link.quiz-card { padding: 14px; }
    .header .mega-quick-link.quiz-card b { font-size: 17px; white-space: nowrap; }
    .header .concern-panel { min-height: auto; }
    .header .concern-mega-grid { display: flex; align-items: stretch; }
    .header .concern-mega-grid:hover .concern-mega-card { flex: 0.9 1 0; }
    .header .concern-mega-grid .concern-mega-card:hover { flex: 1.45 1 0; }
    .header .concern-mega-card { flex: 1 1 0; min-width: 0; grid-template-rows: 176px auto; min-height: 0; transition: flex 0.34s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease; }
    .header .concern-mega-card img { height: 176px; }
    .header .concern-mega-card div { gap: 5px; padding: 11px 12px 13px; min-height: 0; }
    .header .concern-mega-card:hover { transform: none; }
    .header .concern-mega-card strong { font-size: 14px; line-height: 1.04; }
    .header .concern-mega-card small { line-height: 1.25; }

/* ── 10 реальних категорій каталогу на головній (було 4) ───────────────── */
/* 5 колонок × 2 ряди; плитка нижча, щоб секція не розтягувала сторінку. */
.category-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.category {
  min-height: 300px;
}

@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category {
    min-height: 220px;
  }
}

/* ── Плитки категорій: фіксована пропорція ─────────────────────────────
   Висота плитки залежала від min-height, а картинка всередині — від
   власного розміру. На вертикальних кадрах ряд роздувало вдвічі, і
   верхній ряд виглядав велетенським поруч із нижнім. Пропорція знімає
   залежність від конкретного файлу: ряди завжди однакові. */

.category-grid .category {
  min-height: 0;
  /* Було 4/3. Стало 1/1, коли на плитки поставили справжні знімки
     товарів: у прямокутнику вертикальний флакон не вміщався навіть із
     object-fit: contain — лишались широкі поля з боків і обрізаний
     верх. Квадрат тримає ряди однаковими так само надійно. */
  aspect-ratio: 1 / 1;
}

.category-grid .category img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 640px) {
  /* Було 16/9 — «в одну колонку квадрат зайвий, робимо смугу». Це мало
     сенс, поки на плитках стояли обрізані стокові кадри. Зараз там
     знімок товару з object-fit: contain, і в смузі вертикальний флакон
     стискається до вузької смужки посередині. Та й сітка тут насправді
     лишається двоколонковою, а не однією. Тримаємо квадрат. */
  .category-grid .category {
    aspect-ratio: 1 / 1;
  }
}

/* ── Відгуки: по два в ряд ─────────────────────────────────────────────
   Слайд займав майже всю ширину екрана (100vw мінус поля), через що
   блок читався як окрема сторінка. Формат картки лишаємо той самий —
   фото зліва, текст справа, — але показуємо два одночасно. */

.review-slider {
  /* Відсоток у grid-auto-columns рахується не від ширини контейнера, а від
     його intrinsic-внеску, і давав ~чверть екрана. Рахуємо від вьюпорта,
     як у вихідному правилі: поля 2 x max(40px, 4vw) плюс gap 16px. */
  /* Без minmax: із minmax(0, X) треки стискаються під ширину контейнера,
     і всі чотири відгуки влазили в екран по 430px замість двох. */
  grid-auto-columns: calc((100vw - max(80px, 8vw) - 16px) / 2);
}

.review-slide {
  height: 400px;
}

.review-slide img {
  max-height: 400px;
}

.review-slide .review-copy {
  padding: 26px;
}

@media (max-width: 900px) {
  /* На вузькому екрані два в ряд не влазять — повертаємо по одному. */
  .review-slider {
    grid-auto-columns: calc(100vw - max(40px, 8vw));
  }
}

/* ── Картка блогу тепер посилання ──────────────────────────────────────
   У макеті це був <article>, клікати не було куди. */

a.blog-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-card div span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Ховер: картка підстрибує, як усі інші картки на сайті.
   Раніше підкреслювався сам заголовок червоною лінією — це читалось як
   посилання всередині картки, хоча клікабельна вся картка цілком. */
a.blog-card {
  position: relative;
  z-index: 0;
  border: 1px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

a.blog-card:hover {
  z-index: 1;
  transform: translate(-4px, -4px);
  border-color: var(--ink);
  box-shadow: 8px 8px 0 var(--red);
}

a.blog-card:hover img {
  filter: saturate(1.06) contrast(1.04);
}

/* ── Бестселери: фото під реальні знімки ───────────────────────────────
   Картка — грід із рядком 1fr під фото, тож знімок розтягувався на всю
   вільну висоту картки. На макеті там були горизонтальні кадри, а
   реальні фото товарів вертикальні («до/після» на повний зріст), і ряд
   виглядав велетенським. Фіксуємо квадрат і показуємо флакон цілком. */

.product-rail .product-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.product-rail .product-card .photo {
  flex: 0 0 auto;
  min-height: 0;
  aspect-ratio: 1 / 1;
}

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

/* Назви товарів із вивантаження довгі — тримаємо три рядки, інакше
   картки в стрічці різної висоти. */
.product-rail .product-card strong {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.2;
}

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

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

/* ── Герой: нижчий і зі зміною кадрів ──────────────────────────────────
   Був на всю висоту екрана (мінімум 720px), через що перший екран
   складався з самого героя і сторінка починалась «нізвідки». */

.hero.video-hero {
  height: calc(76svh - 90px);
  min-height: 520px;
  max-height: 680px;
}

/* Чотири кадри лежать один на одному і по черзі проявляються.
   Кожен видно чверть циклу, переходи — плавні. Затримку рахуємо від
   номера кадру, який PHP кладе в --shot. */
.video-hero-media img {
  position: absolute;
  inset: 0;
  opacity: 0;
}

/* Страхувальний кадр: показується, поки анімація не почалась. */
.video-hero-media img:first-child {
  opacity: 1;
}

.video-hero-media img {
  animation:
    heroFade 32s linear infinite,
    heroMotion 16s ease-in-out infinite alternate;
  animation-delay: calc(var(--shot) * 8s), 0s;
}

/* Кадр видно на початку свого відрізка, а не після проявлення: інакше
   на першій секунді герой порожній, а якщо анімація не запуститься
   (вимкнена, вкладка неактивна) — порожній назавжди. */
@keyframes heroFade {
  0%    { opacity: 1; }
  22%   { opacity: 1; }
  25%   { opacity: 0; }
  100%  { opacity: 0; }
}

/* Якщо людина просила менше руху — лишаємо тільки перший кадр. */
@media (prefers-reduced-motion: reduce) {
  .video-hero-media img {
    animation: none;
    opacity: 0;
  }

  .video-hero-media img:first-child {
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .hero.video-hero {
    height: auto;
    min-height: 0;
    max-height: none;
  }
}

/* Ціна над кнопкою в стрічці бестселерів.

   Було `justify-content: space-between`: ціна ліворуч, кнопка праворуч.
   На товарах зі знижкою ціна займає два рядки (стара закреслена і нова),
   колонка стискається — і в підсумку обом не вистачало місця: ціна
   ламалась, кнопка налазила. Кладемо їх один під одним, кнопка на всю
   ширину картки. */
.product-rail .product-card .meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
}

/* Стара і нова ціна — в один рядок, і крупніше: 13px губились. */
.product-rail .product-card .meta > span {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 17px;
  font-weight: 900;
}

.product-rail .product-card .meta del {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.product-rail .product-card .meta a {
  min-height: 40px;
  width: 100%;
}

/* Смуга довіри: шість карток В ОДИН РЯД.

   Спершу було три картки на всю ширину — кожна розтягувалась до 440px
   при 118px висоти й виглядала порожньою. Я додав ще три, але лишив
   три колонки: вийшло два ряди, а ширина картки не змінилась — тобто
   початкову претензію це не закрило.

   Тепер шість колонок. При ширині ~213px горизонтальна розкладка
   «іконка ліворуч, текст праворуч» не працює, тож картка стала
   вертикальною: іконка згори, під нею назва й пояснення. */
.trust {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  /* Смуга приклеєна до героя: зовнішній відступ згори прибрано. */
  margin-top: 0;
}

.trust div {
  min-height: 0;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  align-content: start;
  gap: 10px;
  padding: 20px 16px 22px;
}

.trust svg {
  width: 26px;
  height: 26px;
}

.trust strong {
  font-size: 12px;
  line-height: 1.2;
}

.trust span {
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.3;
}

/* Картки нічого не відкривають — вони просто інформують. Ховер, який
   піднімає блок, фарбує його в чорне й кидає червону тінь, обіцяє
   перехід, якого не буде. Лишаємо статичними. */
.trust div:hover {
  transform: none;
  background: var(--white);
  color: inherit;
  box-shadow: none;
}

.trust div:hover svg {
  transform: none;
  color: var(--red);
}

.trust div:hover strong {
  color: inherit;
}

.trust div:hover span {
  color: var(--muted);
}

@media (max-width: 1200px) {
  .trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  /* Правило вище (2 колонки) перебивало вихідне однорядкове, і на
     телефоні картка стискалась до 194px: іконка плюс два рядки тексту
     там уже не вміщувались. */
  .trust {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ── Картки категорій на головній: квадрат і товар цілком ───────────
   Тут клас .category, а не .catalog-format-card як у каталозі — саме
   тому квадрат, зроблений раніше, сюди не дійшов.

   Картка була 360px заввишки при довільній ширині, знімок стояв
   object-fit: cover і обрізався: у кадрі лишалась середина флакона без
   кришки й дна. Робимо квадрат і contain. */
.category {
  min-height: 0;
  height: auto;
  background: #f1ede6;
}

.category-grid .category img,
.category img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px 16px 66px;
  opacity: 1;
}

/* Підпис лежить у власній білій плашці, тож притемнювати знімок під
   нього не треба. */
.category:hover img {
  transform: scale(1.03);
}

.category span {
  color: var(--ink);
}

@media (max-width: 900px) {
  /* Нижче — сітка стає двоколонковою, квадрат лишається доречним. */
  .category {
    min-height: 0;
    height: auto;
  }
}

@media (max-width: 560px) {
  .category img {
    padding: 10px 10px 58px;
  }
}

/* ── Фото товару: однаковий блок, товар цілком ──────────────────────
   Блок квадратний і однаковий у всіх картках; знімок вписується
   повністю.

   Картинка позиціюється абсолютно навмисно. У grid-контейнері
   `height: 100%` не мав від чого рахуватись — висота рядка невизначена,
   і браузер брав пропорцію файлу: вертикальний знімок ставав 247x424 у
   блоці 247x247, а різницю зрізав overflow. Флакон втрачав верх і низ.
   inset: 0 дає точний розмір блока, і аж тоді object-fit: contain
   працює як треба. */
.product-card .photo {
  aspect-ratio: 1 / 1;
  min-height: 0;
  height: auto;
  position: relative;
  overflow: hidden;
}

.product-card .photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  padding: 10px;
}

/* ── Опис під заголовком, а не збоку ────────────────────────────────
   `.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 div {
  font-weight: 500;
  text-transform: none;
}

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

.trust span {
  font-weight: 500;
}

/* ── Кнопки в шапці блоку більше не потребують підпірок ──────────────
   `.head-side` мав `padding-top: 92px` в Instagram і 58px у компактних
   блоках плюс `translateY(16px)`. Це були підпірки під стару розкладку,
   де заголовок стояв лівою колонкою у два рядки, а керування треба було
   опустити до його низу.

   Заголовок тепер один рядок і колонка одна, тож ці 92px перетворились
   на голу порожнечу між заголовком і кнопкою «Підписатися». */
.section-head.instagram-head .head-side,
.section-head.compact-head .head-side {
  padding-top: 0;
  transform: none;
}

/* ── Плитки «проблеми волосся»: іконка ближче до тексту ──────────────
   Рядки були `auto 1fr auto` при висоті плитки 168px, а дітей теж три:
   іконка, назва, підпис. Тобто назва потрапляла в рядок 1fr і той
   розтягувався на весь залишок висоти, а `align-self: end` притискав
   її до низу. Порожнеча між іконкою і назвою — це і був той розтягнутий
   рядок, а не відступ.

   Нижче 640px розкладка інша (іконка окремою колонкою ліворуч), тому
   правило діє тільки від 641px. */
@media (min-width: 641px) {
  .concern-strip a {
    min-height: 0;
    grid-template-rows: auto auto auto;
    align-content: start;
    gap: 8px;
  }

  .concern-strip strong {
    align-self: start;
  }
}
