    /* Hallmark · macrostructure: Marquee Hero · tone: editorial · anchor hue: clay-warm
     * theme: custom (paper oklch(95% 0.012 85) · accent oklch(48% 0.14 35) · Playfair Display + Inter)
     * genre: editorial · nav: N5 floating-pill · footer: Ft5 statement
     * studied: yes · DNA-source: url (maslennikovapsy.pro + elenacogan.com)
     */

    /* ── Reset ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 72px; }
    section[id] { scroll-margin-top: 72px; }
    body {
      overflow-x: clip;
      background: var(--color-paper);
      color: var(--color-ink);
      font-family: var(--font-body);
      font-size: var(--text-body);
      font-weight: 400;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
    /* iOS Safari зумится когда font-size < 16px в полях ввода */
    @media (max-width: 768px) {
      input, textarea, select { font-size: 16px !important; }
    }

    /* ── Nav ── */
    .nav {
      position: fixed;
      top: var(--space-5);
      left: 50%;
      transform: translateX(-50%) translateY(calc(-100% - 32px));
      z-index: 100;
      display: flex;
      align-items: center;
      gap: 0;
      padding: 10px 20px;
      background: oklch(from var(--color-paper) l c h / 0.9);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: var(--rule-thin);
      border-radius: var(--radius-pill);
      white-space: nowrap;
      transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
    }
    .nav.is-visible {
      transform: translateX(-50%) translateY(0);
    }
    .nav__logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 400;
      font-style: normal;
      letter-spacing: -0.01em;
      line-height: 0.95;
      color: var(--color-ink);
      padding-right: 20px;
    }
    .nav__logo svg {
      width: 44px;
      height: 22px;
      color: var(--color-clay);
      flex-shrink: 0;
      display: block;
    }
    .nav__divider {
      width: 1px;
      height: 18px;
      background: var(--color-ink-20);
      margin-right: 20px;
      flex-shrink: 0;
    }
    .nav__links {
      display: flex;
      align-items: center;
      gap: 20px;
      list-style: none;
      margin-right: 20px;
    }
    .nav__links a {
      font-size: 15px;
      font-weight: 400;
      color: var(--color-ink-60);
      position: relative;
      transition: color var(--dur-fast) var(--ease-out);
    }
    /* Резервируем ширину под bold — nav не прыгает */
    .nav__links a::before {
      content: attr(data-text);
      display: block;
      font-weight: 700;
      height: 0;
      visibility: hidden;
      overflow: hidden;
      pointer-events: none;
    }
    .nav__links a:hover { color: var(--color-ink); font-weight: 700; }
    .nav__links a.is-active { color: var(--color-ink); font-weight: 700; }
    .nav__cta {
      font-size: 15px;
      font-weight: 500;
      color: var(--color-clay);
      border: 1px solid var(--color-clay);
      background: none;
      padding: 9px 22px;
      border-radius: var(--radius-pill);
      transition: background var(--dur-fast) var(--ease-out),
                  color var(--dur-fast) var(--ease-out);
    }
    .nav__cta:hover { background: var(--color-clay); color: var(--color-white); }
    .nav__cta:focus-visible { outline: 2px solid var(--color-focus); outline-offset: 3px; }
    .nav__burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: var(--space-2);
    }
    .nav__burger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--color-ink);
      transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out);
    }

    /* ── Mobile nav ── */
    @media (max-width: 768px) {
      .nav {
        top: var(--space-4);
        padding: var(--space-3) var(--space-4);
        gap: var(--space-4);
      }
      .nav__divider { display: none; }
      .nav__links, .nav__cta { display: none; }
      .nav__burger { display: flex; }
    }

    /* ── Mobile menu overlay ── */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 99;
      background: var(--color-paper);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: var(--space-8);
    }
    .mobile-menu.is-open { display: flex; }
    .mobile-menu__link {
      font-family: var(--font-display);
      font-size: var(--text-h2);
      font-weight: 400;
      color: var(--color-ink);
    }
    .mobile-menu__close {
      position: absolute;
      top: var(--space-6);
      right: var(--space-6);
      font-size: 24px;
      color: var(--color-ink);
    }
    .mobile-menu__cta {
      font-size: var(--text-lead);
      font-weight: 500;
      color: var(--color-white);
      background: var(--color-ink);
      padding: var(--space-4) var(--space-10);
      border-radius: var(--radius-pill);
      position: relative;
      overflow: hidden;
      transition: color var(--dur-base) var(--ease-out);
    }
    .mobile-menu__cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--color-clay);
      transform: translateX(-101%);
      transition: transform var(--dur-base) var(--ease-out);
      border-radius: inherit;
    }
    .mobile-menu__cta:hover::before { transform: translateX(0); }
    .mobile-menu__cta span { position: relative; z-index: 1; }
  

  /* ── Hero ── */
  .hero {
    position: relative;
    height: 100svh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
  }
  .hero__bg {
    position: absolute;
    inset: -15% 0;
    z-index: 0;
    will-change: transform;
  }
  .hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 5%;
    display: block;
    filter: grayscale(12%) brightness(0.78);
  }
  .hero__dim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--color-ink);
    opacity: 0;
    pointer-events: none;
  }
  .hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      to top,
      oklch(from var(--color-ink) l c h / 0.88) 0%,
      oklch(from var(--color-ink) l c h / 0.35) 45%,
      oklch(from var(--color-ink) l c h / 0.05) 75%,
      transparent 100%
    );
  }
  .hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding: 0 var(--space-8) 72px;
  }
  .hero__name {
    font-family: var(--font-display);
    font-size: var(--text-display);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--color-paper);
    margin-bottom: var(--space-6);
    overflow-wrap: anywhere;
    min-width: 0;
  }
  .hero__tagline {
    font-family: var(--font-display);
    font-size: var(--text-h3);
    font-weight: 400;
    font-style: italic;
    color: oklch(from var(--color-paper) l c h / 0.65);
    line-height: 0.95;
    max-width: 44ch;
    margin-bottom: var(--space-8);
  }
  .hero__detail {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-bottom: var(--space-8);
    padding-top: var(--space-5);
    border-top: 1px solid rgba(242, 238, 229, 0.12);
  }
  .hero__detail-item {
    font-size: var(--text-small);
    color: rgba(242, 238, 229, 0.55);
    display: flex;
    align-items: center;
  }
  .hero__detail-item + .hero__detail-item::before {
    content: '·';
    margin-right: 14px;
    color: rgba(242, 238, 229, 0.35);
  }
  .hero__detail-role {
    margin-left: auto;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-clay);
    padding-left: var(--space-5);
  }
  @media (max-width: 480px) {
    /* На узких экранах строим в столбик */
    .hero__detail { flex-direction: column; align-items: flex-start; gap: 4px; }
    .hero__detail-item + .hero__detail-item::before { content: none; }
    .hero__detail-role { margin-left: 0; padding-left: 0; margin-top: 6px; }
    /* Компактный hero на мобиле */
    .hero__content { padding-bottom: 28px; }
    .hero__name { margin-bottom: var(--space-2); }
    .hero__tagline {
      font-size: clamp(18px, 5vw, 22px);
      margin-bottom: var(--space-3);
      max-width: none;
      line-height: 1.15;
    }
    .hero__detail {
      padding-top: var(--space-3);
      margin-bottom: var(--space-4);
      flex-direction: row;
      flex-wrap: wrap;
      gap: 5px 0;
    }
    .hero__detail-item {
      flex: 0 0 50%;
      font-size: 11px;
    }
    /* Разделитель | перед 2-м и 4-м пунктами (чётные позиции) */
    .hero__detail-item:nth-child(even)::before {
      content: '|' !important;
      margin-right: 7px;
      color: rgba(242, 238, 229, 0.25);
    }
    .hero__detail-role { display: none; }
  }
  .hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-ink);
    background: var(--color-paper);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-pill);
    position: relative;
    overflow: hidden;
    transition: color var(--dur-base) var(--ease-out);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
  }
  .hero__cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-clay);
    transform: translateX(-101%);
    transition: transform var(--dur-base) var(--ease-out);
    border-radius: inherit;
  }
  .hero__cta:hover::before { transform: translateX(0); }
  .hero__cta:hover { color: var(--color-white); }
  .hero__cta span { position: relative; z-index: 1; }
  .hero__cta:focus-visible { outline: 2px solid var(--color-focus); outline-offset: 3px; }

  /* ── Hero entrance animation ── */
  @keyframes hero-fade-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes hero-photo-in {
    0%   { opacity: 0; transform: scale(1.1); filter: grayscale(12%) brightness(1.8) saturate(0); }
    40%  { opacity: 1; filter: grayscale(12%) brightness(1.1) saturate(0.3); }
    100% { opacity: 1; transform: scale(1);   filter: grayscale(12%) brightness(0.78); }
  }
  /* Фото */
  .hero__bg img {
    animation: hero-photo-in 1.8s cubic-bezier(0.16,1,0.3,1) both;
  }
  /* Текстовые элементы */
  .hero__name {
    animation: hero-fade-up 1.0s cubic-bezier(0.16,1,0.3,1) 0.7s both;
  }
  .hero__tagline {
    animation: hero-fade-up 1.0s cubic-bezier(0.16,1,0.3,1) 0.95s both;
  }
  .hero__detail {
    animation: hero-fade-up 1.0s cubic-bezier(0.16,1,0.3,1) 1.15s both;
  }
  .hero__cta {
    animation: hero-fade-up 1.0s cubic-bezier(0.16,1,0.3,1) 1.35s both;
  }
  @media (prefers-reduced-motion: reduce) {
    .hero__bg img, .hero__name, .hero__tagline,
    .hero__detail, .hero__cta {
      animation: none;
    }
  }



  /* ── Work-with ── */
  .workwith {
    padding: var(--space-32) var(--space-8);
    background: var(--color-paper-alt);
  }
  .workwith__inner { max-width: 1200px; margin-inline: auto; }
  .workwith__head { margin-bottom: var(--space-12); }
  .workwith__label { font-size: var(--text-small); color: var(--color-clay); letter-spacing: 0.08em; margin-bottom: var(--space-3); }
  .workwith__heading { font-family: var(--font-display); font-size: var(--text-h2); font-weight: 700; letter-spacing: -0.02em; line-height: 0.95; margin-bottom: var(--space-3); overflow-wrap: anywhere; min-width: 0; }
  .workwith__sub { font-size: var(--text-body); color: var(--color-ink-40); }
  .workwith__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: var(--space-4);
  }
  .workwith__card {
    display: flex;
    flex-direction: column;
    background: #f0eae3;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--color-ink-08);
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    transition: border-color var(--dur-base) var(--ease-out),
                transform var(--dur-base) var(--ease-out),
                box-shadow var(--dur-base) var(--ease-out);
  }
  .workwith__card:hover {
    border-color: var(--color-clay);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px oklch(from var(--color-ink) l c h / 0.08);
  }
  .workwith__card:focus-visible { outline: 2px solid var(--color-focus); outline-offset: 3px; }
  .workwith__card-img {
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
  }
  .workwith__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    filter: grayscale(10%);
    transition: transform var(--dur-slow) var(--ease-out);
  }
  .workwith__card:hover .workwith__card-img img { transform: scale(1.04); }
  .workwith__card-body {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-6) var(--space-6);
  }
  .workwith__card-num { font-size: var(--text-label); font-weight: 700; color: var(--color-clay); letter-spacing: 0.08em; flex-shrink: 0; }
  .workwith__card-title { font-family: var(--font-display); font-size: clamp(16px, 1.6vw, 22px); font-weight: 700; line-height: 0.95; flex: 1; overflow-wrap: anywhere; min-width: 0; }
  .workwith__card-arrow {
    font-size: 16px;
    color: var(--color-ink-40);
    flex-shrink: 0;
    transition: transform var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
  }
  .workwith__card:hover .workwith__card-arrow { transform: translateX(4px); color: var(--color-clay); }
  @media (max-width: 900px) {
    .workwith__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  }
  @media (max-width: 480px) {
    .workwith { padding-inline: var(--space-5); }
    .workwith__grid { grid-template-columns: 1fr; }
  }

  /* ── Approach ── */
  .approach {
    padding: var(--space-32) var(--space-8);
    background: var(--color-paper);
  }
  .approach__inner { max-width: 1200px; margin-inline: auto; }
  .approach__head { margin-bottom: var(--space-12); }
  .approach__label { font-size: var(--text-small); color: var(--color-clay); letter-spacing: 0.08em; margin-bottom: var(--space-3); }
  .approach__heading { font-family: var(--font-display); font-size: var(--text-h2); font-weight: 700; letter-spacing: -0.02em; line-height: 0.95; margin-bottom: var(--space-3); overflow-wrap: anywhere; min-width: 0; }
  .approach__sub { font-size: var(--text-body); color: var(--color-ink-40); }
  .approach__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: var(--space-4);
  }
  .approach__card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-10);
    background: var(--color-paper-alt);
    border-radius: 8px;
    border: 1px solid var(--color-ink-08);
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    transition: border-color var(--dur-base) var(--ease-out),
                background var(--dur-base) var(--ease-out),
                transform var(--dur-base) var(--ease-out);
    position: relative;
  }
  .approach__card:hover {
    border-color: var(--color-clay);
    background: var(--color-paper);
    transform: translateY(-3px);
  }
  .approach__card:focus-visible { outline: 2px solid var(--color-focus); outline-offset: 3px; }
  .approach__card-num { font-size: var(--text-label); font-weight: 700; color: var(--color-clay); letter-spacing: 0.08em; }
  .approach__card-title { font-family: var(--font-display); font-size: var(--text-h3); font-weight: 700; line-height: 0.95; color: var(--color-ink); overflow-wrap: anywhere; min-width: 0; }
  .approach__card-desc { font-size: var(--text-body); color: var(--color-ink); line-height: 1.6; flex: 1; }
  .approach__card-arrow {
    font-size: 18px;
    color: var(--color-clay);
    transition: transform var(--dur-fast) var(--ease-out);
    align-self: flex-end;
  }
  .approach__card:hover .approach__card-arrow { transform: translateX(4px); }
  @media (max-width: 900px) {
    .approach__grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  }
  @media (max-width: 600px) {
    .approach__grid { grid-template-columns: 1fr; }
    .approach { padding-inline: var(--space-5); }
  }

  .about {
    padding: var(--space-32) var(--space-8);
    background: var(--color-paper-alt);
  }
  .about__inner {
    max-width: 1200px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--space-20);
    align-items: start;
  }
  .about__photo { padding-top: var(--space-10); }
  .about__photo-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
  }
  .about__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3/2;
    filter: grayscale(10%);
  }
  .about__location {
    margin-top: var(--space-4);
    font-size: var(--text-small);
    color: var(--color-ink-40);
    line-height: 1.5;
  }
  .about__label {
    font-size: var(--text-small);
    color: var(--color-clay);
    letter-spacing: 0.08em;
    margin-bottom: var(--space-5);
  }
  .about__heading {
    font-family: var(--font-display);
    font-size: var(--text-h2);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.02em;
    overflow-wrap: anywhere;
    min-width: 0;
    margin-bottom: var(--space-8);
  }
  .about__body {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    color: var(--color-ink);
    font-size: var(--text-lead);
    line-height: 1.7;
    max-width: 52ch;
    margin-bottom: var(--space-10);
  }
  .about__creds {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    padding-top: var(--space-8);
    border-top: var(--rule-thin);
  }
  .about__cred {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: var(--space-4);
  }
  .about__cred-title {
    font-size: var(--text-small);
    font-weight: 500;
    color: var(--color-ink-40);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding-top: 2px;
  }
  .about__cred-text {
    font-size: var(--text-body);
    color: var(--color-ink);
  }
  @media (max-width: 900px) {
    .about__inner { grid-template-columns: 1fr; gap: var(--space-12); }
    .about__cred { grid-template-columns: 1fr; gap: var(--space-1); }
    /* На мобиле порядок логичнее: сначала текст, потом фото + адрес */
    .about__text  { order: 1; }
    .about__photo { order: 2; padding-top: 0; }
  }
  @media (max-width: 480px) {
    .about { padding-inline: var(--space-5); }
  }


  .requests {
    padding: var(--space-32) var(--space-8);
    background: var(--color-paper);
  }
  .requests__inner { max-width: 1200px; margin-inline: auto; }
  .requests__head {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    gap: var(--space-8);
    align-items: end;
    margin-bottom: var(--space-10);
    padding-bottom: var(--space-10);
    border-bottom: var(--rule-thin);
  }
  .requests__label { font-size: var(--text-small); color: var(--color-clay); letter-spacing: 0.08em; grid-column: 1/-1; margin-bottom: var(--space-3); }
  .requests__heading { font-family: var(--font-display); font-size: var(--text-h2); font-weight: 700; letter-spacing: -0.02em; line-height: 0.95; overflow-wrap: anywhere; min-width: 0; }
  .requests__sub { font-size: var(--text-body); color: var(--color-ink-40); max-width: 40ch; align-self: end; }

  /* Tabs */
  .requests__tabs {
    display: flex;
    gap: var(--space-2);
    margin-bottom: var(--space-8);
  }
  .requests__tab {
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-ink);
    border: 1px solid var(--color-ink-20);
    background: none;
    cursor: pointer;
    transition: background var(--dur-fast) var(--ease-out),
                color var(--dur-fast) var(--ease-out),
                border-color var(--dur-fast) var(--ease-out);
  }
  .requests__tab:hover { border-color: var(--color-ink-40); color: var(--color-ink); }
  .requests__tab.is-active { background: var(--color-ink); border-color: var(--color-ink); color: var(--color-paper); }
  .requests__tab:focus-visible { outline: 2px solid var(--color-focus); outline-offset: 3px; }

  /* Panel */
  .requests__panel { display: none; }
  .requests__panel.is-active { display: block; }

  /* Accordion items */
  .requests__item { border-top: var(--rule-thin); }
  .requests__item:last-child { border-bottom: var(--rule-thin); }
  .requests__summary {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    padding: var(--space-6) 0;
    cursor: pointer;
    list-style: none;
    transition: color var(--dur-fast) var(--ease-out);
  }
  .requests__summary::-webkit-details-marker { display: none; }
  .requests__summary:hover { color: var(--color-clay); }
  .requests__summary:focus-visible { outline: 2px solid var(--color-focus); outline-offset: 2px; border-radius: 2px; }
  .requests__num { font-family: var(--font-display); font-size: var(--text-small); font-weight: 700; color: var(--color-clay); flex-shrink: 0; letter-spacing: 0.04em; }
  .requests__title { font-family: var(--font-display); font-size: var(--text-h3); font-weight: 400; line-height: 0.95; flex: 1; overflow-wrap: anywhere; min-width: 0; }
  .requests__icon {
    flex-shrink: 0; width: 20px; height: 20px; position: relative;
  }
  .requests__icon::before,
  .requests__icon::after {
    content: ''; position: absolute;
    background: var(--color-ink-40); border-radius: 1px;
    transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out);
  }
  .requests__icon::before { width: 12px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
  .requests__icon::after  { width: 1.5px; height: 12px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
  details[open] .requests__icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
  .requests__body {
    padding-bottom: var(--space-8);
    padding-left: calc(var(--text-small) + var(--space-5) + 8px);
  }
  .requests__body p { font-size: var(--text-lead); color: var(--color-ink); line-height: 1.7; max-width: 60ch; }

  @media (max-width: 900px) {
    .requests__head { grid-template-columns: 1fr; }
  }
  @media (max-width: 480px) {
    .requests { padding-inline: var(--space-5); }
    .requests__title { font-size: var(--text-body); }
  }


  .price {
    padding: var(--space-32) var(--space-8);
    background: var(--color-ink);
  }
  .price__inner { max-width: 1200px; margin-inline: auto; }
  .price__head { margin-bottom: var(--space-16); }
  .price__label {
    font-size: var(--text-small);
    color: var(--color-clay);
    letter-spacing: 0.08em;
    margin-bottom: var(--space-3);
  }
  .price__heading {
    font-family: var(--font-display);
    font-size: var(--text-h2);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-paper);
    overflow-wrap: anywhere;
    min-width: 0;
  }
  .price__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
  }
  .price__item {
    padding-inline: var(--space-6);
  }
  .price__item-inner {
    background: var(--color-ink-dark);
    border-radius: 8px;
    padding: var(--space-8) var(--space-10);
    display: grid;
    grid-template-columns: 80px minmax(0,1fr) auto auto;
    gap: var(--space-6) var(--space-8);
    align-items: center;
    transition: background var(--dur-fast) var(--ease-out);
  }
  .price__item-illus { display: flex; align-items: center; justify-content: center; }
  .price__item-illus { background: var(--color-paper); border-radius: 10px; padding: 4px; }
  .price__item-illus img { width: 72px; height: 72px; object-fit: contain; display: block; }
  .price__item--accent .price__item-inner {
    background: var(--color-ink-dark);
    border: 1px solid oklch(from var(--color-clay) l c h / 0.3);
  }
  .price__item-num {
    font-family: var(--font-display);
    font-size: var(--text-small);
    font-weight: 700;
    color: var(--color-clay);
    letter-spacing: 0.04em;
  }
  .price__item-title {
    font-family: var(--font-display);
    font-size: var(--text-h3);
    font-weight: 700;
    color: var(--color-paper);
    margin-bottom: var(--space-2);
    overflow-wrap: anywhere;
    min-width: 0;
  }
  .price__item-desc {
    font-size: var(--text-body);
    color: oklch(from var(--color-paper) l c h / 0.5);
    line-height: 1.6;
    max-width: 48ch;
  }
  .price__item-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--space-1);
    white-space: nowrap;
  }
  .price__item-price {
    font-family: var(--font-display);
    font-size: var(--text-h3);
    font-weight: 700;
    color: var(--color-paper);
    line-height: 0.95;
  }
  .price__item-dur {
    font-size: var(--text-small);
    color: oklch(from var(--color-paper) l c h / 0.4);
  }
  .price__item-cta { white-space: nowrap; }
  .price__footer {
    margin-top: var(--space-8);
    padding-inline: var(--space-6);
  }
  .price__footer-note {
    font-size: var(--text-small);
    color: oklch(from var(--color-paper) l c h / 0.3);
  }
  @media (max-width: 900px) {
    .price__item-inner {
      grid-template-columns: 32px minmax(0,1fr);
      grid-template-rows: auto auto auto;
    }
    .price__item-meta { align-items: flex-start; grid-column: 2; }
    .price__item-cta  { grid-column: 1 / -1; }
  }
  @media (max-width: 480px) {
    .price { padding-inline: 0; }
    .price__head { padding-inline: var(--space-5); }
    .price__footer { padding-inline: var(--space-5); }
    .price__item { padding-inline: var(--space-3); }
    .price__item-inner { padding: var(--space-6); gap: var(--space-4); }
  }

  /* ── Пакеты сессий ── */
  .price__packages-head {
    margin-top: var(--space-16);
    margin-bottom: var(--space-10);
    padding-inline: var(--space-6);
  }
  .price__packages-title {
    font-family: var(--font-display);
    font-size: var(--text-h2);
    font-weight: 700;
    color: var(--color-ink);
    margin-bottom: var(--space-3);
  }
  .price__packages-sub {
    font-size: var(--text-body);
    color: var(--color-ink-60);
    max-width: 56ch;
    line-height: 1.6;
  }
  .price__packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    padding-inline: var(--space-6);
    align-items: center;
  }
  .price__package {
    position: relative;
    background: var(--color-paper);
    border-radius: 12px;
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    border: 1px solid var(--color-ink-20);
    transition: border-color var(--dur-fast) var(--ease-out);
  }

  .price__package-badge {
    position: absolute;
    top: -12px;
    left: var(--space-6);
    background: var(--color-clay);
    color: var(--color-paper);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
  }
  .price__package-illus {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 110px;
    height: 110px;
    pointer-events: none;
  }
  .price__package-illus img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .price__package-num {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    font-style: italic;
    color: var(--color-clay);
    line-height: 0.95;
    letter-spacing: -0.02em;
    font-feature-settings: "lnum" 1;
  }
  .price__package-title {
    font-family: var(--font-display);
    font-size: var(--text-h3);
    font-weight: 700;
    color: var(--color-ink);
  }
  .price__package-desc {
    font-size: var(--text-body);
    color: var(--color-ink-60);
    line-height: 1.6;
  }
  .price__package-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--color-ink-08);
    padding-top: var(--space-4);
  }
  .price__package-features li {
    font-size: 13px;
    color: var(--color-ink-60);
    line-height: 1.4;
    padding-left: 20px;
    position: relative;
  }
  .price__package-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-clay);
    font-size: 12px;
    line-height: 1.4;
  }
  .price__package-meta {
    display: flex;
    flex-direction: column;
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-ink-20);
  }
  .price__package-price {
    font-family: var(--font-display);
    font-size: var(--text-h2);
    font-weight: 700;
    color: var(--color-ink);
    line-height: 0.95;
    white-space: nowrap;
    font-feature-settings: "lnum" 1; /* не переносим рубль */
  }
  .price__package-save {
    display: block;
    font-size: var(--text-small);
    color: var(--color-ink-40);
    margin-top: var(--space-1);
  }
  .price__package-cta { margin-top: var(--space-2); width: 100%; }

  /* Три размера колонок: sm < md < hero */
  .price__package--sm  { min-height: 420px; }
  .price__package--md  { min-height: 500px; }
  .price__package--hero {
    border: none;
    background: transparent;
    padding: 0;
    position: relative;
  }
  /* Переливающаяся рамка через pseudo-element */
  .price__package--hero::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 17px;
    background: linear-gradient(
      135deg,
      var(--color-clay),
      oklch(60% 0.16 50),
      oklch(55% 0.18 25),
      var(--color-clay),
      oklch(52% 0.14 200),
      oklch(60% 0.16 50),
      var(--color-clay)
    );
    background-size: 400% 400%;
    animation: shimmer-border 4s ease infinite;
    z-index: 0;
  }
  @keyframes shimmer-border {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  .price__package--hero > * { position: relative; z-index: 1; }
  .price__package--hero .price__package-inner-wrap {
    position: relative;
    background: var(--color-paper);
    border-radius: 12px;
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    min-height: 580px;
  }
  @media (max-width: 900px) {
    .price__packages { grid-template-columns: 1fr; }
    .price__package--sm,
    .price__package--md  { min-height: unset; }
    .price__packages-head { padding-inline: var(--space-5); }
    .price__packages { padding-inline: var(--space-3); }
    /* Mobile order: 6 → 12 → 24 (по объёму, а не по визуальному hero-первенству) */
    .price__package--sm   { order: 1; }
    .price__package--md   { order: 2; }
    .price__package--hero { order: 3; }
  }
  /* ── Reviews slider ── */
  .reviews {
    padding: var(--space-32) 0;
    background: var(--color-paper-deep);
    overflow: clip;
  }
  .reviews__inner {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--space-8);
  }
  .reviews__head {
    margin-bottom: var(--space-12);
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    align-items: center;
    gap: var(--space-3) var(--space-8);
  }
  .reviews__label, .reviews__heading, .reviews__note { grid-column: 1; }
  .reviews__swipe-hint { grid-column: 2; grid-row: 1 / -1; align-self: center; }
  .reviews__label {
    font-size: var(--text-small);
    color: var(--color-clay);
    letter-spacing: 0.08em;
  }
  .reviews__heading {
    font-family: var(--font-display);
    font-size: var(--text-h2);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 0.95;
    color: var(--color-ink);
    overflow-wrap: anywhere;
    min-width: 0;
  }
  .reviews__note {
    font-size: var(--text-small);
    color: var(--color-ink-40);
  }

  /* Slider track */
  .reviews__slider-wrap {
    position: relative;
  }
  .reviews__track {
    display: flex;
    gap: var(--space-4);
    overflow-x: scroll;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    padding-top: var(--space-6);
    padding-bottom: var(--space-6);
    /* выравниваем первую карточку с заголовком */
    padding-left: max(var(--space-8), calc((100vw - 1200px) / 2 + var(--space-8)));
    padding-right: max(var(--space-8), calc((100vw - 1200px) / 2 + var(--space-8)));
    scroll-padding-left: max(var(--space-8), calc((100vw - 1200px) / 2 + var(--space-8)));
  }
  .reviews__track::-webkit-scrollbar { display: none; }
  .reviews__track.is-dragging { cursor: grabbing; scroll-snap-type: none; }

  /* Cards */
  .review-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    background: #f0eae3;
    border-radius: 8px;
    border: 1px solid var(--color-ink-08);
    padding: var(--space-10);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--space-8);
    cursor: pointer;
    user-select: none;
    transition: border-color var(--dur-base) var(--ease-out),
                transform var(--dur-base) var(--ease-out),
                box-shadow var(--dur-base) var(--ease-out);
  }
  .review-card:hover {
    border-color: var(--color-clay);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px oklch(from var(--color-ink) l c h / 0.08);
  }
  .review-card:focus-visible { outline: 2px solid var(--color-focus); outline-offset: 3px; }
  .review-card__preview {
    font-family: var(--font-body);
    font-size: var(--text-body);
    font-weight: 400;
    font-style: normal;
    line-height: 1.7;
    color: var(--color-ink);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .review-card__preview::before {
    content: '\201C';
    font-size: 1.6em;
    line-height: 0.4;
    vertical-align: -0.35em;
    margin-right: 0.08em;
    color: var(--color-clay);
    font-family: var(--font-display);
  }
  .review-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-6);
    border-top: var(--rule-thin);
  }
  .review-card__meta { display: flex; flex-direction: column; gap: 2px; }
  .review-card__name {
    font-size: var(--text-small);
    font-weight: 500;
    color: var(--color-ink);
  }
  .review-card__tag {
    font-size: var(--text-label);
    color: var(--color-clay);
    letter-spacing: 0.05em;
  }
  .review-card__duration {
    font-size: var(--text-label);
    color: var(--color-ink-40);
  }
  .review-card__more {
    font-size: var(--text-small);
    color: var(--color-ink-40);
    transition: color 150ms;
    white-space: nowrap;
  }
  .review-card:hover .review-card__more { color: var(--color-ink); }

  /* SVG swipe hint */
  .reviews__swipe-hint {
    pointer-events: none;
    opacity: 1;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    white-space: nowrap;
    transition: opacity 600ms;
  }
  .reviews__swipe-hint.is-gone { opacity: 0; }
  .reviews__swipe-hint__label {
    font-size: var(--text-small);
    color: var(--color-ink-40);
    letter-spacing: 0.05em;
  }
  @keyframes swipe-finger {
    0%   { transform: translateX(6px); opacity: 0.3; }
    30%  { transform: translateX(-10px); opacity: 1; }
    60%  { transform: translateX(6px); opacity: 0.3; }
    100% { transform: translateX(6px); opacity: 0.3; }
  }
  .reviews__swipe-hint svg { animation: swipe-finger 2s ease-in-out infinite; }


  @media (max-width: 768px) {
    .review-card { flex: 0 0 300px; }
    .reviews__inner { padding-inline: var(--space-5); }
    .reviews__track { padding-inline: var(--space-5); }
  }
  @media (max-width: 480px) {
    .review-card { flex: 0 0 280px; padding: var(--space-8) var(--space-6); }
    .review-popup__box { padding: var(--space-8) var(--space-6); }
  }


  /* ── Messages ── */
  /* ── Messages (аффирмации) ── */
  .messages {
    position: relative;
    padding: 120px var(--space-8);
    overflow: hidden;
    border-radius: var(--msg-radius, 0px);
    width: var(--msg-width, 100%);
    margin-inline: auto;
    box-shadow: var(--msg-shadow, none);
    transition: border-radius 0.15s ease-out, box-shadow 0.15s ease-out;
    background: var(--color-ink);
  }
  @media (max-width: 768px) {
    .messages { padding: var(--space-20) var(--space-5); }
  }
  .messages__video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    pointer-events: none;
  }
  .messages__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      oklch(14% 0.025 240 / 0.80),
      oklch(26% 0.06 165 / 0.70)
    );
    pointer-events: none;
  }
  .messages__inner {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin-inline: auto;
  }
  .messages__head { margin-bottom: var(--space-10); }
  .messages__label {
    font-size: var(--text-label);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: oklch(from var(--color-paper) l c h / 0.4);
    margin-bottom: var(--space-3);
  }
  .messages__heading {
    font-family: var(--font-display);
    font-size: var(--text-h2);
    font-weight: 700;
    font-style: italic;
    color: var(--color-paper);
    letter-spacing: -0.02em;
    line-height: 0.95;
  }

  /* Кнопки аффирмаций — плавают */
  .messages__grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    align-items: flex-start;
  }
  .messages__word {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border: 1px solid oklch(from var(--color-paper) l c h / 0.4);
    border-radius: var(--radius-pill);
    background: oklch(from var(--color-paper) l c h / 0.18);
    color: var(--color-paper);
    font-family: var(--font-body);
    font-size: var(--text-body);
    font-weight: 400;
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
    animation: float-pill var(--float-dur, 6s) var(--float-delay, 0s) ease-in-out infinite;
    /* рандомный вертикальный сдвиг задаётся JS */
    margin-top: var(--pill-mt, 0px);
  }
  @keyframes float-pill {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(var(--float-y, -6px)); }
  }
  .messages__word:hover {
    border-color: var(--color-clay);
    background: oklch(from var(--color-clay) l c h / 0.25);
    transform: translateY(-4px) !important;
  }
  .messages__word.is-active {
    background: var(--color-clay);
    border-color: var(--color-clay);
    color: var(--color-paper);
    animation: none;
  }
  .messages__word:focus-visible {
    outline: 2px solid var(--color-clay);
    outline-offset: 3px;
  }
  @media (prefers-reduced-motion: reduce) {
    .messages__word { animation: none; }
  }

  /* Попап с текстом аффирмации */
  .messages__popup {
    margin-top: var(--space-10);
    padding: var(--space-8) var(--space-10);
    background: oklch(from var(--color-paper) l c h / 0.22);
    border: 1px solid oklch(from var(--color-paper) l c h / 0.35);
    border-radius: 16px;
    position: relative;
    animation: popup-in 0.4s var(--ease-out) both;
  }
  @keyframes popup-in {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .messages__popup-close {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    color: oklch(from var(--color-paper) l c h / 0.5);
    background: none; border: none; cursor: pointer;
    transition: color 0.2s, background 0.2s;
  }
  .messages__popup-close:hover {
    color: var(--color-paper);
    background: oklch(from var(--color-paper) l c h / 0.1);
  }
  .messages__popup-theme {
    font-size: var(--text-label);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-clay);
    margin-bottom: var(--space-4);
  }
  .messages__popup-text {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.2vw, 26px);
    font-style: italic;
    color: var(--color-paper);
    line-height: 0.95;
  }
  @media (max-width: 600px) {
    .messages { padding: var(--space-20) var(--space-5); }
    .messages__popup { padding: var(--space-6) var(--space-6); }
  }

  .faq {
    padding: var(--space-32) var(--space-8);
    background: var(--color-paper);
  }
  .faq__inner {
    max-width: 1200px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: var(--space-20);
    align-items: start;
  }
  .faq__head { position: sticky; top: calc(var(--space-20) + 60px); }
  .faq__label {
    font-size: var(--text-small);
    color: var(--color-clay);
    letter-spacing: 0.08em;
    margin-bottom: var(--space-3);
  }
  .faq__heading {
    font-family: var(--font-display);
    font-size: var(--text-h2);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 0.95;
    overflow-wrap: anywhere;
    min-width: 0;
  }
  .faq__list { display: flex; flex-direction: column; }
  .faq__item {
    border-top: var(--rule-thin);
  }
  /* removed: .faq__item:last-child border-bottom was causing gray line */
  .faq__question {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-6);
    padding: var(--space-6) 0;
    cursor: pointer;
    list-style: none;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-display);
    font-size: var(--text-h3);
    font-weight: 400;
    line-height: 0.95;
    color: var(--color-ink);
    transition: color var(--dur-fast) var(--ease-out);
    overflow-wrap: anywhere;
    min-width: 0;
  }
  .faq__question::-webkit-details-marker { display: none; }
  .faq__question:hover { color: var(--color-clay); }
  .faq__question:focus-visible {
    outline: 2px solid var(--color-focus);
    outline-offset: 2px;
    border-radius: 2px;
  }
  .faq__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
  }
  .faq__icon::before,
  .faq__icon::after {
    content: '';
    position: absolute;
    background: var(--color-ink-40);
    border-radius: 1px;
    transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out);
  }
  .faq__icon::before { width: 12px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
  .faq__icon::after  { width: 1.5px; height: 12px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
  .faq__item[aria-expanded="true"] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
  .faq__answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.42s ease;
    padding-right: var(--space-10);
  }
  .faq__item[aria-expanded="true"] .faq__answer {
    max-height: 800px;
  }
  .faq__answer-inner {
    padding-bottom: var(--space-8);
  }
  .faq__answer p {
    font-size: var(--text-lead);
    color: var(--color-ink);
    line-height: 1.7;
    max-width: 60ch;
  }
  @media (max-width: 900px) {
    .faq__inner { grid-template-columns: 1fr; gap: var(--space-10); }
    .faq__head { position: static; }
  }
  @media (max-width: 480px) {
    .faq { padding-inline: var(--space-5); }
    .faq__question { font-size: 18px; line-height: 1.35; }
    .faq__answer { padding-right: 0; }
  }


  /* ── Therapy types ── */
  .therapy {
    padding: var(--space-32) var(--space-8);
    background: transparent;
  }
  .therapy__inner {
    max-width: 1200px;
    margin-inline: auto;
  }
  .therapy__head { margin-bottom: var(--space-12); }
  .therapy__label {
    font-size: var(--text-label);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-clay);
    margin-bottom: var(--space-3);
  }
  .therapy__heading {
    font-family: var(--font-display);
    font-size: var(--text-h2);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 0.95;
    margin-bottom: var(--space-3);
  }
  .therapy__sub {
    font-size: var(--text-body);
    color: var(--color-ink-60);
    max-width: 52ch;
  }
  .therapy__card-illus {
    width: 140px;
    height: 140px;
    margin: 0 auto var(--space-4);
    flex-shrink: 0;
  }
  .therapy__card-illus img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .therapy__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }
  .therapy__card {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    padding: var(--space-8);
    border: var(--rule-thin);
    border-radius: 12px;
    background: var(--color-paper);
    position: relative;
    overflow: hidden;
    transition: transform var(--dur-fast) var(--ease-out),
                border-color var(--dur-fast) var(--ease-out),
                box-shadow var(--dur-fast) var(--ease-out);
    text-decoration: none;
    color: inherit;
  }
  .therapy__card:hover {
    transform: translateY(-4px);
    border-color: var(--color-clay);
    box-shadow: 0 8px 28px oklch(14% 0.025 240 / 0.1);
  }
  .therapy__card-num { display: none; }
  .therapy__card-title {
    font-family: var(--font-display);
    font-size: var(--text-h3);
    font-weight: 700;
    line-height: 0.95;
  }
  .therapy__card-for {
    font-size: 12px;
    color: var(--color-ink-60);
    line-height: 1.5;
    font-style: normal;
    letter-spacing: 0.01em;
  }
  .therapy__card-desc {
    font-size: var(--text-body);
    color: var(--color-ink-60);
    line-height: 1.6;
    flex: 1;
  }
  .therapy__card-arrow {
    font-size: var(--text-body);
    color: var(--color-clay);
    transition: transform var(--dur-fast) var(--ease-out);
    margin-top: var(--space-2);
  }
  .therapy__card:hover .therapy__card-arrow { transform: translateX(4px); }
  @media (max-width: 900px) {
    .therapy__grid { grid-template-columns: 1fr; }
    .therapy__inner { padding: var(--space-8); }
  }
  @media (max-width: 480px) {
    .therapy { padding-inline: var(--space-5); }
    .therapy__inner { padding: var(--space-6); }
  }

  /* ── Articles ── */
  .articles {
    padding: var(--space-32) var(--space-8);
    background: var(--color-paper-deep);
  }
  .articles__inner { max-width: 1200px; margin-inline: auto; }
  .articles__head { margin-bottom: var(--space-12); }
  .articles__label {
    font-size: var(--text-label);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-clay);
    margin-bottom: var(--space-3);
  }
  .articles__heading {
    font-family: var(--font-display);
    font-size: var(--text-h2);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 0.95;
    margin-bottom: var(--space-3);
  }
  .articles__sub {
    font-size: var(--text-body);
    color: var(--color-ink-60);
    max-width: 52ch;
  }
  .articles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  /* Article card — shared by homepage + articles.html */
  .article-card {
    display: flex;
    flex-direction: column;
    background: var(--color-paper);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px oklch(14% 0.025 240 / 0.1);
  }
  .article-card__img-wrap {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--color-paper);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 16px 16px 0 0;
  }
  .article-card__img-wrap img {
    width: 100%; height: 100%;
    object-fit: contain; display: block;
  }
  .article-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
  }
  .article-card__tag {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-clay);
  }
  .article-card__title {
    font-family: var(--font-display);
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 700;
    line-height: 0.95;
    flex: 1;
    transition: color 0.2s;
  }
  .article-card:hover .article-card__title { color: var(--color-clay); }
  .article-card__desc {
    font-size: 13px;
    color: var(--color-ink-60);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .article-card__meta {
    font-size: 12px;
    color: var(--color-ink-40);
    margin-top: 4px;
  }
  /* CTA card — 6th slot on homepage */
  .article-card--cta {
    background: var(--color-ink);
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    text-align: center;
    gap: 8px;
  }
  .article-card--cta:hover {
    background: oklch(from var(--color-ink) calc(l + 0.05) c h);
  }
  .article-card__cta-label {
    font-family: var(--font-display);
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    color: var(--color-paper);
    display: block;
    letter-spacing: -0.02em;
  }
  .article-card__cta-count {
    font-size: 14px;
    color: oklch(from var(--color-paper) l c h / 0.55);
    display: block;
    margin-bottom: 6px;
  }
  .article-card__cta-arrow {
    font-size: 28px;
    color: var(--color-clay);
    display: block;
    transition: transform 0.2s;
  }
  .article-card--cta:hover .article-card__cta-arrow { transform: translateX(6px); }

  @media (max-width: 860px) {
    .articles__grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 540px) {
    .articles__grid { grid-template-columns: 1fr; }
    .articles { padding-inline: var(--space-5); }
  }

  /* ── Scroll-to-top ── */
  .scroll-top {
    position: fixed; left: 24px; bottom: 24px;
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--color-ink); color: var(--color-paper);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 990;
    opacity: 0; pointer-events: none; transform: translateY(8px);
    transition: opacity 0.3s, transform 0.3s, background 0.2s;
    box-shadow: 0 4px 20px oklch(14% 0.025 240 / 0.3);
  }
  .scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .scroll-top:hover { background: var(--color-clay); }
  .scroll-top svg { width: 20px; height: 20px; }
  /* Прячем плавающие кнопки когда открыт любой попап/оверлей */
  body:has(.popup-overlay.is-open) .scroll-top,

  body:has(#chatFab.is-open) .scroll-top,
  body:has(#chatWindow.is-open) .scroll-top,
  body:has(.popup-overlay.is-open) .chat-fab,
  body:has(.popup-overlay.is-open) .chat-fab {
    opacity: 0 !important;
    pointer-events: none !important;
  }
  /* Скрываем nav-пилюлю, чат и scroll-top когда открыто мобильное меню */
  body:has(.mobile-menu.is-open) .nav,
  body:has(.mobile-menu.is-open) .chat-fab,
  body:has(.mobile-menu.is-open) .scroll-top {
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.2s !important;
  }

  .booking {
    padding: var(--space-32) var(--space-8);
    background: var(--color-paper-alt);
  }
  .booking__inner {
    max-width: 1200px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--space-20);
    align-items: start;
  }
  .booking__label {
    font-size: var(--text-small);
    color: var(--color-clay);
    letter-spacing: 0.08em;
    margin-bottom: var(--space-3);
  }
  .booking__heading {
    font-family: var(--font-display);
    font-size: var(--text-display-s);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 0.95;
    margin-bottom: var(--space-8);
    overflow-wrap: anywhere;
    min-width: 0;
  }
  .booking__sub {
    font-size: var(--text-lead);
    color: var(--color-ink);
    line-height: 1.6;
    max-width: 38ch;
    margin-bottom: var(--space-10);
  }
  .booking__contacts {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
  }
  .booking__contact {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-lead);
    font-weight: 500;
    color: var(--color-ink);
    transition: color var(--dur-fast) var(--ease-out);
  }
  .booking__contact:hover { color: var(--color-clay); }
  .booking__contact:focus-visible { outline: 2px solid var(--color-focus); outline-offset: 2px; border-radius: 2px; }
  .booking__contact-icon {
    font-size: 18px;
    transition: transform var(--dur-fast) var(--ease-out);
  }
  .booking__contact:hover .booking__contact-icon { transform: translateX(4px); }

  /* Form */
  .booking__form {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
  }
  .form__field { display: flex; flex-direction: column; gap: var(--space-1); }
  .form__label { display: none; } /* лейблы скрыты — placeholder внутри поля */
  .form__optional { display: none; }
  .form__input {
    width: 100%;
    padding: var(--space-4) var(--space-5);
    background: var(--color-paper);
    border: 1px solid var(--color-ink-20);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--color-ink);
    transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
    outline: none;
    -webkit-appearance: none;
  }
  .form__input::placeholder { color: var(--color-ink-40); }
  .form__input:hover { border-color: var(--color-ink-40); }
  .form__input:focus { border-color: var(--color-clay); box-shadow: 0 0 0 3px var(--color-clay-light); }
  .form__input.is-error { border-color: var(--color-error); box-shadow: 0 0 0 3px var(--color-error-light); }
  .form__textarea { resize: vertical; min-height: 80px; }
  .form__error {
    font-size: var(--text-small);
    color: var(--color-error);
    min-height: 14px;
  }
  .form__field--check { flex-direction: column; gap: var(--space-1); }
  .form__check {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    cursor: pointer;
  }
  .form__check input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }
  .form__check-box {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border: 1px solid var(--color-ink-20);
    border-radius: var(--radius-sm);
    background: var(--color-paper);
    margin-top: 1px;
    transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
    position: relative;
  }
  .form__check input:checked + .form__check-box {
    background: var(--color-clay);
    border-color: var(--color-clay);
  }
  .form__check input:checked + .form__check-box::after {
    content: '';
    position: absolute;
    left: 4px; top: 2px;
    width: 6px; height: 9px;
    border: 1.5px solid var(--color-white);
    border-top: none; border-left: none;
    transform: rotate(40deg);
  }
  .form__check input:focus-visible + .form__check-box {
    outline: 2px solid var(--color-focus);
    outline-offset: 2px;
  }
  .form__check-label {
    font-size: var(--text-small);
    color: var(--color-ink);
    line-height: 1.5;
  }
  .form__link { color: var(--color-clay); text-decoration: underline; text-underline-offset: 2px; }
  .form__submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-white);
    background: var(--color-ink);
    padding: var(--space-5) var(--space-10);
    border-radius: var(--radius-pill);
    transition: background var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
    align-self: flex-start;
    overflow: hidden;
  }
  .form__submit:hover:not(:disabled) { background: var(--color-clay); }
  .form__submit:focus-visible { outline: 2px solid var(--color-focus); outline-offset: 3px; }
  .form__submit:disabled { opacity: 0.6; cursor: not-allowed; }
  .form__submit-loading { display: none; }
  .form__submit.is-loading .form__submit-text { display: none; }
  .form__submit.is-loading .form__submit-loading { display: block; }
  .form__success {
    display: none;
    padding: var(--space-6);
    background: var(--color-green-light);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-green);
  }
  .form__success.is-visible { display: block; }
  .form__success-title {
    font-size: var(--text-body);
    font-weight: 600;
    color: var(--color-green);
    margin-bottom: var(--space-2);
  }
  .form__success-text {
    font-size: var(--text-small);
    color: var(--color-ink-60);
    line-height: 1.6;
    margin-bottom: var(--space-4);
  }
  .form__success-links {
    display: flex;
    gap: var(--space-5);
  }
  .form__success-link {
    font-size: var(--text-small);
    color: var(--color-clay);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
  }
  .form__success-link:hover { opacity: 0.7; }
  @media (max-width: 900px) {
    .booking__inner { grid-template-columns: 1fr; gap: var(--space-12); }
  }
  @media (max-width: 480px) {
    .booking { padding-inline: var(--space-5); }
    .form__submit { width: 100%; }
  }

  /* ── Booking CTA ── */
  .booking-cta {
    padding: var(--space-32) var(--space-8);
    background: var(--color-ink);
    color: var(--color-paper);
  }
  .booking-cta__inner {
    max-width: 1200px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: var(--space-16);
    align-items: center;
  }
  .booking-cta__label {
    font-size: var(--text-small);
    color: var(--color-clay);
    letter-spacing: 0.08em;
    margin-bottom: var(--space-3);
  }
  .booking-cta__heading {
    font-family: var(--font-display);
    font-size: var(--text-display-s);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 0.95;
    margin-bottom: var(--space-5);
    overflow-wrap: anywhere;
    min-width: 0;
    color: var(--color-paper);
  }
  .booking-cta__sub {
    font-size: var(--text-lead);
    color: var(--color-ink-60);
    color: oklch(from var(--color-paper) l c h / 0.65);
    line-height: 1.6;
    max-width: 44ch;
  }
  .booking-cta__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-6);
  }
  .booking-cta__contacts {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
  }
  @media (max-width: 900px) {
    .booking-cta__inner { grid-template-columns: 1fr; gap: var(--space-10); }
  }
  @media (max-width: 480px) {
    .booking-cta { padding-inline: var(--space-5); }
    .booking-cta__actions .btn-primary { width: 100%; }
  }

  /* ── Marquee ── */
  .marquee {
    overflow: hidden;
    padding: var(--space-5) 0;
    border-top: var(--rule-thin);
    background: var(--color-paper);
    position: relative;
    z-index: 2;
  }
  .marquee__track {
    display: flex;
    align-items: baseline;
    width: max-content;
    animation: marquee 28s linear infinite;
    will-change: transform;
  }
  .marquee__set { white-space: nowrap; display: inline-flex; align-items: baseline; }
  .marquee em {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(22px, 2.5vw, 30px);
    color: var(--color-ink);
  }
  .marquee strong {
    font-weight: 600;
    font-size: clamp(16px, 1.8vw, 21px);
    color: var(--color-ink);
  }
  .marquee__set > span {
    font-size: clamp(16px, 1.8vw, 21px);
    color: var(--color-ink-60);
  }
  .marquee b {
    font-style: normal; font-weight: 400;
    font-size: clamp(16px, 1.8vw, 21px);
    color: var(--color-ink-20);
    margin: 0 1.8em;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  @media (prefers-reduced-motion: reduce) {
    .marquee__track { animation: none; }
  }

  /* ── Inline CTA ── */
  .reviews, .price { position: relative; z-index: 1; }

  .inline-cta {
    padding: var(--space-32) 0 var(--space-16);
    background: var(--color-ink);
    color: var(--color-paper);
    text-align: center;
  }
  .inline-cta__inner { max-width: 720px; margin-inline: auto; padding-inline: var(--space-8); }
  .inline-cta__label {
    font-size: var(--text-label);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-clay);
    margin-bottom: var(--space-3);
  }
  .inline-cta__heading {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    font-style: italic;
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-4);
    color: var(--color-paper);
  }
  .inline-cta__sub {
    font-size: var(--text-body);
    color: oklch(from var(--color-paper) l c h / 0.6);
    margin-bottom: var(--space-8);
    line-height: 1.6;
  }
  .inline-cta .btn-primary,
  .inline-cta__btn {
    background: var(--color-clay);
    color: var(--color-paper);
    border-color: var(--color-clay);
  }
  .inline-cta .btn-primary:hover,
  .inline-cta__btn:hover {
    background: oklch(from var(--color-clay) calc(l + 0.06) c h);
  }
  .inline-cta__btn::before { display: none; }

  /* ── Howto ── */
  .howto {
    padding: var(--space-32) var(--space-8) var(--space-16);
    background: var(--color-ink);
    color: var(--color-paper);
    position: relative;
    overflow: hidden;
  }
  .howto::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 55%;
    background: url('../photo_web/illus-howto-dark.webp') center right/cover no-repeat;
    opacity: 0.22;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 55%);
    mask-image: linear-gradient(to right, transparent 0%, black 55%);
  }
  .howto__inner { max-width: 1200px; margin-inline: auto; }
  .howto__label {
    font-size: var(--text-label);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-clay);
    margin-bottom: var(--space-4);
  }
  .howto__heading {
    font-family: var(--font-display);
    font-size: var(--text-h2);
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.02em;
    color: var(--color-paper);
    margin-bottom: var(--space-16);
  }
  .howto__steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-12);
    border-top: 1px solid oklch(from var(--color-paper) l c h / 0.12);
    padding-top: var(--space-10);
  }
  .howto__step { display: flex; flex-direction: column; gap: var(--space-4); }
  .howto__num {
    font-family: var(--font-display);
    font-size: clamp(60px, 8vw, 96px);
    font-weight: 700;
    font-style: italic;
    line-height: 0.95;
    color: var(--color-clay);
    letter-spacing: -0.04em;
  }
  .howto__title {
    font-family: var(--font-display);
    font-size: var(--text-h3);
    font-weight: 600;
    color: var(--color-paper);
    margin-bottom: var(--space-2);
  }
  .howto__text {
    font-size: var(--text-body);
    color: oklch(from var(--color-paper) l c h / 0.65);
    line-height: 1.65;
  }
  @media (max-width: 860px) {
    .howto__steps { grid-template-columns: 1fr; gap: var(--space-8); }
    .howto__num { font-size: 56px; }
  }
  @media (max-width: 480px) {
    .howto { padding-inline: var(--space-5); }
    .inline-cta { padding-inline: var(--space-5); }
  }

  .docs {
    padding: var(--space-24) var(--space-8);
    background: var(--color-paper);
    border-top: var(--rule-thin);
  }
  .docs__inner {
    max-width: 1200px;
    margin-inline: auto;
  }
  .docs__label {
    font-size: var(--text-small);
    color: var(--color-clay);
    letter-spacing: 0.08em;
    margin-bottom: var(--space-3);
  }
  .docs__heading {
    font-family: var(--font-display);
    font-size: var(--text-h2);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-4);
    overflow-wrap: anywhere;
    min-width: 0;
  }
  .docs__sub {
    font-size: var(--text-body);
    color: var(--color-ink-40);
    max-width: 52ch;
    margin-bottom: var(--space-12);
  }
  .docs__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 680px;
  }
  .docs__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-5);
    padding: var(--space-6) 0;
    border-top: var(--rule-thin);
  }
  .docs__item:last-child { border-bottom: var(--rule-thin); }
  .docs__icon {
    font-size: 16px;
    color: var(--color-ink-40);
    flex-shrink: 0;
    padding-top: 2px;
  }
  .docs__title {
    font-size: var(--text-body);
    font-weight: 500;
    color: var(--color-ink);
    margin-bottom: var(--space-1);
  }
  .docs__note {
    font-size: var(--text-small);
    color: var(--color-ink-40);
  }
  @media (max-width: 480px) {
    .docs { padding-inline: var(--space-5); }
  }


  .footer {
    background: transparent;
    padding: 0;
  }

  /* Footer — фон совпадает с body, отступ вокруг CTA */
  .footer {
    background: var(--color-paper);
    padding: var(--space-16) 0 var(--space-16);
  }

  /* CTA блок */
  .footer__cta {
    position: relative;
    background: var(--color-ink);
    padding: var(--space-32) var(--space-8);
    overflow: hidden;
    /* shrink-эффект — управляется JS */
    border-radius: var(--cta-radius, 0px);
    width: var(--cta-width, 100%);
    margin-inline: auto;
    /* тень — усиливается JS */
    box-shadow: var(--cta-shadow, none);
    transition: border-radius 0.15s ease-out, box-shadow 0.15s ease-out;
  }
  /* Видео фон */
  .footer__cta-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
  }
  .footer__cta-overlay {
    position: absolute;
    inset: 0;
    /* тёмный оверлей + лёгкий терракотовый тинт */
    background: linear-gradient(
      135deg,
      oklch(14% 0.025 240 / 0.82),
      oklch(20% 0.04 35 / 0.75)
    );
    pointer-events: none;
  }
  .footer__cta-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-inline: auto;
    text-align: center;
  }
  .footer__cta-label {
    font-size: var(--text-label);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: oklch(from var(--color-paper) l c h / 0.4);
    margin-bottom: var(--space-5);
  }
  .footer__cta-heading {
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 96px);
    font-weight: 700;
    font-style: italic;
    color: var(--color-paper);
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-5);
  }
  .footer__cta-heading em {
    font-style: italic;
    color: var(--color-clay);
  }
  .footer__cta-sub {
    font-size: var(--text-body);
    color: oklch(from var(--color-paper) l c h / 0.5);
    margin-bottom: var(--space-10);
  }
  .footer__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: 18px 48px;
    background: var(--color-clay);
    color: var(--color-paper);
    font-family: var(--font-body);
    font-size: var(--text-body);
    font-weight: 500;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: background var(--dur-fast) var(--ease-out),
                transform var(--dur-fast) var(--ease-out);
  }
  .footer__cta-btn:hover {
    background: oklch(from var(--color-clay) calc(l + 0.06) c h);
    transform: translateY(-2px);
  }
  .footer__cta-btn span { position: relative; z-index: 1; }

  /* Нижняя часть футера */
  .footer__body {
    background: transparent;
    padding: 80px var(--space-8) var(--space-8);
    border-top: none;
  }
  .footer__body-inner {
    max-width: 1200px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
    padding-bottom: var(--space-8);
    border-bottom: var(--rule-thin);
    margin-bottom: var(--space-6);
  }
  .footer__brand {
    display: flex;
    align-items: center;
    gap: var(--space-5);
  }
  .footer__logo {
    display: block;
    width: 32px;
    color: var(--color-clay);
    transition: opacity var(--dur-fast) var(--ease-out);
    flex-shrink: 0;
  }
  .footer__logo:hover { opacity: 0.7; }
  .footer__logo svg { width: 100%; height: auto; }
  .footer__tagline {
    font-size: var(--text-small);
    color: var(--color-ink);
    line-height: 1.4;
  }
  .footer__tagline span {
    display: block;
    color: var(--color-ink-40);
  }
  .footer__social {
    display: flex;
    gap: var(--space-6);
  }
  .footer__social-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-small);
    color: var(--color-ink-60);
    transition: color var(--dur-fast) var(--ease-out);
  }
  .footer__social-link:hover { color: var(--color-clay); }
  .footer__bottom {
    max-width: 1200px;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-3);
  }
  .footer__copy {
    font-size: var(--text-small);
    color: var(--color-ink-40);
  }
  .footer__legal-links {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
  }
  .footer__legal-links a {
    font-size: var(--text-small);
    color: var(--color-ink-40);
    transition: color 0.2s;
  }
  .footer__legal-links a:hover { color: var(--color-clay); }
  .footer__age {
    display: inline-block;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    user-select: none;
    vertical-align: middle;
  }
  @media (max-width: 768px) {
    .footer__body-inner { flex-direction: column; align-items: center; text-align: center; }
    .footer__brand { flex-direction: column; align-items: center; }
    .footer__social { justify-content: center; }
    .footer__bottom { flex-direction: column; align-items: center; gap: var(--space-4); }
    .footer__copy { text-align: center; }
    .footer__legal-links { justify-content: center; gap: var(--space-3); }
    .footer__age { display: block; margin: 0 auto; }
  }
  @media (max-width: 480px) {
    .footer { padding-inline: 0 !important; }
    .footer__cta { padding-inline: var(--space-5); }
    .footer__body { padding-inline: var(--space-5); }
  }


  /* ── Scroll reveal ── */
  .will-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--dur-reveal) var(--ease-out),
                transform var(--dur-reveal) var(--ease-out);
  }
  .is-revealed {
    opacity: 1;
    transform: translateY(0);
  }
  @media (prefers-reduced-motion: reduce) {
    .will-reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }

  /* ── Nav active link ── */
  .nav__links a.is-active {
    color: var(--color-ink);
    font-weight: 500;
  }

