    /* ─── TOKENS ─────────────────────────────────────────────────── */
    :root {
      /* — primitive: природный вектор 01 (green + terra) — */
      --forest:    #1f3d2b;
      --moss:      #2f5d43;
      --sage:      #7c9a73;
      --sand:      #e7dcc7;
      --terra:     #c4633f;
      --sand-lt:   #f2ede4;
      --white:     #ffffff;
      --text-dark: #1a2b1f;
      --text-mid:  #45594b;   /* затемнён для AA на --sand-lt */
      --ph-bg:     #c9d9c2;

      /* — бренд «Апгрейд» (осознанное расхождение): красный ТОЛЬКО на главный CTA — */
      --brand-red:      #e01529;
      --brand-red-deep: #b9101f;

      /* — semantic: поверхности (де-гост: реальные ступени на тёмном) — */
      --card-on-dark:        #244a33;            /* видимая ступень от --forest */
      --card-on-dark-hover:  #2b5a3d;
      --card-on-dark-border: rgba(231,220,199,.18);
      --panel-on-dark:       #1a3324;            /* форма/панель — плотная, не стекло */

      /* — медиа-независимые токены (текст/скрим на фото) — */
      --text-on-media: #ffffff;
      --scrim-media:   linear-gradient(180deg, rgba(13,22,15,.20) 0%, rgba(13,22,15,.04) 38%, rgba(13,22,15,.74) 100%);

      /* — radii: карточки ≤16px (анти over-round), кнопки editorial 10px, пилюли только для чипов — */
      --radius-sm:   8px;
      --radius-md:   12px;
      --radius-lg:   16px;
      --radius-btn:  10px;
      --radius-pill: 50px;

      --shadow-sm: 0 2px 8px rgba(31,61,43,.10);
      --shadow-md: 0 10px 30px rgba(31,61,43,.14);
      --shadow-lg: 0 24px 64px rgba(31,61,43,.18);
      --shadow-cta: 0 6px 22px rgba(224,21,41,.34);
      --gap:       clamp(2rem, 5vw, 4rem);

      --font-serif:   'Playfair Display', 'Georgia', 'Times New Roman', serif;
      --font-sans:    'Manrope', 'Inter', 'Segoe UI', system-ui, sans-serif;
      --font-display: 'Saira Condensed', 'Oswald', 'Arial Narrow', sans-serif;

      /* — easing: гладкая кривая без перелёта (emil/antislop) — */
      --ease-out: cubic-bezier(.22,1,.36,1);
    }

    /* ─── RESET ─────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-sans);
      font-size: clamp(15px, 1.8vw, 17px);
      color: var(--text-dark);
      background: var(--sand-lt);
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button { cursor: pointer; font: inherit; border: none; }
    /* Контекстный focus-ring: тёмный на светлом, светлый на тёмном (AA в обоих регистрах) */
    :focus-visible { outline: 2px solid var(--forest); outline-offset: 2px; border-radius: 3px; }
    .hero :focus-visible, .site-header :focus-visible, .section--dark :focus-visible,
    .section--moss :focus-visible, .cta-section :focus-visible, .site-footer :focus-visible,
    .sticky-bar :focus-visible, .lightbox :focus-visible { outline-color: var(--sand); }

    /* ─── UTILITY ────────────────────────────────────────────────── */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 clamp(1.25rem, 5vw, 2.5rem);
    }
    .sr-only {
      position: absolute; width: 1px; height: 1px;
      overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
    }

    /* ─── SECTION WRAPPER ────────────────────────────────────────── */
    .section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
    .section--dark { background: var(--forest); color: var(--sand); }
    .section--moss { background: var(--moss); color: var(--sand); }
    .section--sand { background: var(--sand); }
    .section--sandlt { background: var(--sand-lt); }

    /* ─── ТЕКСТУРА однотонных блоков (мягкое зерно, чтобы не «плоско») ── */
    .section::after, .site-footer::after {
      content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='170' height='170'%3E%3Cfilter id='t'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23t)'/%3E%3C/svg%3E");
      background-size: 170px 170px;
    }
    .section--dark::after, .section--moss::after, .cta-section::after, .site-footer::after {
      mix-blend-mode: soft-light; opacity: .12;
    }
    .section--sand::after, .section--sandlt::after { mix-blend-mode: multiply; opacity: .045; }
    .section > .container { position: relative; z-index: 1; }
    .site-footer { position: relative; }
    .site-footer .footer-top, .site-footer .footer-bottom { position: relative; z-index: 1; }

    .section__eyebrow {
      font-family: var(--font-sans);
      font-size: .75rem; letter-spacing: .16em; text-transform: uppercase;
      font-weight: 600; color: var(--moss); margin-bottom: 1rem;
    }
    .section--dark  .section__eyebrow { color: var(--sage); }
    .section--moss  .section__eyebrow { color: var(--sand); opacity: .8; }
    .cta-section    .section__eyebrow { color: var(--sand); }

    .section__title {
      font-family: var(--font-serif);
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      font-weight: 700; line-height: 1.15;
      margin-bottom: 1rem;
    }
    .section__lead {
      font-size: clamp(1rem, 2vw, 1.15rem);
      line-height: 1.7; color: var(--text-mid); max-width: 640px;
    }
    .section--dark  .section__lead,
    .section--moss  .section__lead { color: rgba(231,220,199,.75); }

    .section__head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

    /* ─── HEADER (transparent → solid on scroll) ─────────────────── */
    .site-header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: .8rem 0;
      background: rgba(31,61,43,.97);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 2px 24px rgba(0,0,0,.25);
    }
    .site-header__inner {
      display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    }
    .site-header__brand { display: flex; align-items: center; gap: .55rem; }
    .site-header__logo-img {
      height: 40px; width: auto; display: block; flex-shrink: 0;
      filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
    }
    .site-header__wordmark { display: flex; flex-direction: column; line-height: 1; }
    .site-header__name {
      font-family: var(--font-display); font-size: 1.18rem; font-weight: 700;
      letter-spacing: .07em; text-transform: uppercase; color: #fff;
    }
    .site-header__kicker {
      font-size: .54rem; letter-spacing: .24em; text-transform: uppercase;
      color: rgba(255,255,255,.6); font-weight: 600; margin-top: 3px;
    }
    .site-header__actions { display: flex; align-items: center; gap: 1.5rem; }
    .site-header__nav { display: none; }
    .site-header__phone { display: none; }
    @media (min-width: 768px) {
      .site-header__nav { display: flex; gap: 1.75rem; }
      .site-header__nav a {
        color: rgba(255,255,255,.82); font-size: .85rem; font-weight: 500;
        transition: color .2s;
      }
      .site-header__nav a:hover { color: #fff; }
    }
    @media (min-width: 980px) {
      .site-header__phone {
        display: inline-flex; align-items: center; gap: .4rem;
        color: #fff; font-size: .92rem; font-weight: 600; white-space: nowrap;
        transition: color .2s;
      }
      .site-header__phone:hover { color: var(--sand); }
      .site-header__phone svg { width: 15px; height: 15px; opacity: .85; }
    }
    .site-header__cta {
      display: inline-flex; align-items: center; min-height: 44px;
      background: var(--brand-red); color: #fff;
      padding: .62rem 1.3rem; border-radius: var(--radius-btn);
      font-size: .85rem; font-weight: 600; letter-spacing: .01em;
      transition: background .2s, transform .12s var(--ease-out), box-shadow .2s;
    }
    .site-header__cta:hover { background: var(--brand-red-deep); transform: translateY(-1px); box-shadow: var(--shadow-cta); }
    .site-header__cta:active { transform: scale(.97); }

    /* ─── HERO ─────────────────────────────────────────────────── */
    .hero {
      position: relative; min-height: 100svh;
      display: flex; align-items: center;
      overflow: hidden; padding: 100px 0 5rem;
    }
    .hero__bg {
      position: absolute; inset: 0; z-index: 0; overflow: hidden;
      will-change: transform; /* лёгкий параллакс */
    }
    /* Реальное фото с глубиной + кинематографичный «наезд камеры» */
    /* Статичное фото: object-fit cover без оверскана и зума — минимальный кроп, никакого «наезда» */
    .hero__photo {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; object-position: center 50%;
    }
    /* Слои погружения: цветное свечение + вертикальный + диагональный скрим */
    .hero__overlay {
      position: absolute; inset: 0; z-index: 1; pointer-events: none;
      background:
        linear-gradient(100deg, rgba(8,15,10,.84) 0%, rgba(8,15,10,.64) 40%, rgba(8,15,10,.40) 62%, rgba(8,15,10,.16) 82%, rgba(8,15,10,0) 94%),
        linear-gradient(180deg, rgba(8,15,10,.22) 0%, rgba(8,15,10,.08) 24%, rgba(8,15,10,.30) 58%, rgba(8,15,10,.66) 100%),
        radial-gradient(130% 85% at 24% 30%, rgba(196,99,63,.13), transparent 58%);
      /* Лёгкий блюр фото за текстовой зоной (не стекло-панель — атмосферный
         эффект на самом фото, маскирован тем же градиентом, что и затемнение) */
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      -webkit-mask-image: linear-gradient(100deg, #000 0%, #000 48%, transparent 80%);
              mask-image: linear-gradient(100deg, #000 0%, #000 48%, transparent 80%);
    }
    @media (max-width: 767px) {
      .hero__overlay {
        background:
          linear-gradient(180deg, rgba(8,15,10,.52) 0%, rgba(8,15,10,.34) 28%, rgba(8,15,10,.48) 62%, rgba(8,15,10,.78) 100%),
          radial-gradient(130% 70% at 50% 22%, rgba(196,99,63,.11), transparent 60%);
        -webkit-mask-image: none; mask-image: none;
      }
    }
    /* Фактура/зерно — уводит от плоской однотонности */
    .hero__grain {
      position: absolute; inset: 0; z-index: 1; pointer-events: none;
      opacity: .22; mix-blend-mode: overlay;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 150px 150px;
    }
    .hero__vignette {
      position: absolute; inset: 0; z-index: 1; pointer-events: none;
      box-shadow: inset 0 0 200px 0 rgba(6,12,8,.30);
    }
    .hero__content {
      position: relative; z-index: 2;
      max-width: 760px; min-width: 0;
    }
    .hero__eyebrow {
      font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
      color: #d7e0c8; font-weight: 700; margin-bottom: .75rem;
      text-shadow: 0 1px 12px rgba(0,0,0,.55);
    }
    .hero__h1 {
      font-family: var(--font-serif);
      font-size: clamp(2.2rem, 6vw, 4.2rem);
      font-weight: 700; line-height: 1.1; color: #fff;
      margin-bottom: 1.25rem;
      text-shadow: 0 2px 28px rgba(0,0,0,.5), 0 1px 4px rgba(0,0,0,.35);
    }
    .hero__h1 em { font-style: italic; color: var(--sand); }
    .hero__sub {
      font-size: clamp(.95rem, 2vw, 1.15rem);
      color: rgba(255,255,255,.92); line-height: 1.65;
      margin-bottom: 1.3rem; max-width: 560px;
      text-shadow: 0 1px 16px rgba(0,0,0,.5);
    }
    .hero__caps {
      display: flex; flex-wrap: wrap; gap: .45rem;
      margin-bottom: 1.6rem; max-width: 640px;
    }
    .hero__cap {
      background: rgba(20,38,26,.64);
      border: 1px solid rgba(231,220,199,.40);
      color: #f3ecdc; border-radius: var(--radius-pill);
      padding: .34rem .84rem; font-size: .8rem; font-weight: 600;
      letter-spacing: .01em;
      text-shadow: 0 1px 5px rgba(0,0,0,.5);
      backdrop-filter: blur(3px);
    }
    .hero__chips {
      display: flex; flex-wrap: wrap; gap: .5rem;
      margin-bottom: 1.6rem;
    }
    .hero__chip {
      background: rgba(26,45,31,.5); border: 1px solid rgba(231,220,199,.2);
      color: rgba(255,255,255,.9); border-radius: var(--radius-pill);
      padding: .38rem .9rem; font-size: .82rem; font-weight: 500;
    }
    .hero__tagline {
      font-family: var(--font-serif);
      font-size: clamp(1.05rem, 2.4vw, 1.4rem);
      color: #fff; line-height: 1.42; font-weight: 500;
      margin-bottom: 1.85rem; max-width: 560px;
      text-shadow: 0 2px 4px rgba(0,0,0,.7), 0 1px 16px rgba(0,0,0,.55);
    }
    .hero__tagline em { font-style: italic; color: #f0e7d2; }
    .hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: .5rem;
      background: var(--brand-red); color: #fff;
      padding: 1rem 2rem; border-radius: var(--radius-btn);
      font-size: 1rem; font-weight: 600; letter-spacing: .01em;
      transition: background .2s, transform .14s var(--ease-out), box-shadow .2s;
      box-shadow: var(--shadow-cta);
    }
    .btn-primary:hover { background: var(--brand-red-deep); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(224,21,41,.42); }
    .btn-primary:active { transform: scale(.97); }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: .5rem;
      border: 1px solid rgba(255,255,255,.38); color: rgba(255,255,255,.92);
      padding: 1rem 1.75rem; border-radius: var(--radius-btn);
      font-size: .95rem; font-weight: 500;
      transition: border-color .2s, background .2s, transform .14s var(--ease-out);
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); }
    .btn-ghost:active { transform: scale(.97); }

    .hero__scroll-hint {
      position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
      z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .4rem;
      color: rgba(255,255,255,.45); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
    }
    .hero__scroll-hint svg { animation: bounce 2s infinite; }
    @keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

    /* ─── HERO MOBILE (маленькие экраны ≤ 480px — контент не обрезается) ─ */
    @media (max-width: 480px) {
      .hero { align-items: flex-start; padding-top: 76px; padding-bottom: 5.5rem; }
      .hero__h1 { font-size: clamp(1.9rem, 8.5vw, 2.2rem); margin-bottom: 1rem; }
      .hero__sub { margin-bottom: 1rem; }
      .hero__caps { margin-bottom: 1.1rem; gap: .35rem; }
      .hero__cap { padding: .28rem .7rem; font-size: .76rem; }
      .hero__chips { margin-bottom: 1.1rem; gap: .4rem; }
      .hero__chip { padding: .3rem .75rem; font-size: .78rem; }
      .hero__tagline { font-size: clamp(1.05rem, 5.2vw, 1.22rem); margin-bottom: 1.35rem; }
      .hero__actions { flex-direction: column; gap: .6rem; }
      .hero__actions .btn-primary,
      .hero__actions .btn-ghost { width: 100%; justify-content: center; }
    }
    @media (max-height: 680px) and (max-width: 767px) {
      /* Низкие экраны (owner-фидбэк: кнопки срезались снизу) — капсулы и
         чипы в один прокручиваемый ряд вместо переноса на 2-3 строки,
         подсказка под кнопками спрятана, кнопки компактнее. */
      .hero { align-items: flex-start; padding-top: 68px; padding-bottom: 3rem; }
      .hero__caps {
        margin-bottom: .75rem; flex-wrap: nowrap; overflow-x: auto;
        scrollbar-width: none; padding-bottom: .15rem;
      }
      .hero__caps::-webkit-scrollbar { display: none; }
      .hero__cap { flex-shrink: 0; }
      .hero__chips {
        margin-bottom: .75rem; flex-wrap: nowrap; overflow-x: auto;
        scrollbar-width: none;
      }
      .hero__chips::-webkit-scrollbar { display: none; }
      .hero__chip { flex-shrink: 0; }
      .hero__sub { margin-bottom: .7rem; }
      .hero__tagline { margin-bottom: .9rem; }
      .hero__note { display: none; }
      .hero__actions { gap: .5rem; }
      .hero__actions .btn-primary,
      .hero__actions .btn-ghost { padding-top: .8rem; padding-bottom: .8rem; }
    }

    /* ─── WHAT IS / ПЕРЕКЛЮЧЕНИЕ ────────────────────────────────── */
    .switch-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
    }
    .switch-card {
      background: var(--white); border-radius: var(--radius-lg);
      padding: 2rem; box-shadow: var(--shadow-sm);
      border: 1px solid rgba(124,154,115,.15);
      transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
    }
    .switch-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .switch-card__icon {
      width: 48px; height: 48px; border-radius: var(--radius-sm);
      background: linear-gradient(135deg, var(--moss), var(--sage));
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; margin-bottom: 1.25rem;
    }
    .switch-card__title {
      font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700;
      margin-bottom: .5rem; color: var(--forest);
    }
    .switch-card__text { font-size: .9rem; line-height: 1.65; color: var(--text-mid); }

    /* ─── ВЫГОДЫ ─────────────────────────────────────────────────── */
    .benefits-grid {
      display: grid; gap: 1rem;
      grid-template-columns: 1fr;
    }
    @media (min-width: 620px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 980px) {
      .benefits-grid { grid-template-columns: repeat(3, 1fr); grid-auto-flow: dense; }
      .benefit-card--featured { grid-column: span 2; grid-row: span 2; }
    }
    .benefit-card {
      background: var(--card-on-dark); border: 1px solid var(--card-on-dark-border);
      border-radius: var(--radius-lg); padding: 1.6rem;
      display: flex; flex-direction: column;
      transition: background .25s, transform .25s var(--ease-out), border-color .25s;
    }
    .benefit-card__num {
      font-family: var(--font-serif); font-size: 2rem; font-weight: 700;
      color: var(--sage); line-height: 1; margin-bottom: .85rem;
    }
    .benefit-card__title {
      font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600;
      color: var(--sand); margin-bottom: .5rem;
    }
    .benefit-card__text { font-size: .88rem; line-height: 1.65; color: rgba(231,220,199,.78); }
    /* Featured: главная выгода крупнее, ломает «карточка-карточка-карточка» */
    .benefit-card--featured {
      background: linear-gradient(155deg, #2b5a3d 0%, #244a33 70%);
      border-color: rgba(231,220,199,.26); padding: 2.1rem;
      justify-content: flex-end; position: relative; overflow: hidden;
    }
    .benefit-card--featured::after {
      content: ''; position: absolute; top: -30%; right: -10%;
      width: 280px; height: 280px; border-radius: 50%;
      background: radial-gradient(circle, rgba(196,99,63,.16), transparent 68%); pointer-events: none;
    }
    .benefit-card--featured .benefit-card__kicker {
      font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
      font-weight: 700; color: var(--sand); margin-bottom: auto;
    }
    .benefit-card--featured .benefit-card__num { font-size: 2.6rem; color: var(--sand); margin-top: 1.5rem; }
    .benefit-card--featured .benefit-card__title { font-size: clamp(1.35rem, 2.6vw, 1.8rem); }
    .benefit-card--featured .benefit-card__text { font-size: .98rem; max-width: 30ch; }
    @media (hover: hover) and (pointer: fine) {
      .benefit-card:hover { background: var(--card-on-dark-hover); transform: translateY(-3px); border-color: rgba(231,220,199,.3); }
      .benefit-card--featured:hover { background: linear-gradient(155deg, #316247 0%, #285236 70%); transform: translateY(-3px); }
    }

    /* ─── ПРОГРАММА ──────────────────────────────────────────────── */
    .program-timeline {
      position: relative;
      display: grid;
      gap: 0;
    }
    .program-timeline::before {
      content: '';
      position: absolute; left: 28px; top: 0; bottom: 0; width: 2px;
      background: linear-gradient(to bottom, var(--sage), var(--moss));
      border-radius: 1px;
    }
    @media (min-width: 768px) {
      .program-timeline::before { left: 50%; transform: translateX(-1px); }
    }
    .program-item {
      display: flex; gap: 1.5rem; align-items: flex-start;
      padding: 1.5rem 0;
    }
    @media (min-width: 768px) {
      .program-item {
        width: 50%;
        padding-right: 3rem;
      }
      .program-item:nth-child(even) {
        margin-left: 50%; padding-right: 0; padding-left: 3rem;
      }
    }
    .program-item__dot {
      flex-shrink: 0; width: 56px; height: 56px;
      border-radius: 50%;
      background: var(--white);
      border: 2px solid var(--sage);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; box-shadow: var(--shadow-sm);
      position: relative; z-index: 1;
    }
    .program-item__body { padding-top: .75rem; }
    .program-item__name {
      font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700;
      color: var(--forest); margin-bottom: .3rem;
    }
    .program-item__desc { font-size: .88rem; line-height: 1.6; color: var(--text-mid); }

    /* ─── МЕСТО ──────────────────────────────────────────────────── */
    /* Смартфон: секция занимает весь экран (owner-фидбэк — «каждая зона
       попадает на весь смартфон»), контент центрирован по высоте. */
    @media (max-width: 767px) {
      #place { min-height: 100svh; display: flex; align-items: center; }
      #place .container { width: 100%; }
    }
    .place-grid {
      display: grid; gap: 2rem;
      grid-template-columns: 1fr;
    }
    @media (min-width: 768px) {
      .place-grid { grid-template-columns: 1fr 1fr; }
    }
    .place-info { display: flex; flex-direction: column; gap: 1.5rem; }
    .place-info__item { display: flex; gap: 1rem; align-items: flex-start; }
    .place-info__icon {
      width: 40px; height: 40px; border-radius: 50%;
      background: linear-gradient(135deg, var(--forest), var(--moss));
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; flex-shrink: 0;
    }
    .place-info__label {
      font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
      font-weight: 600; color: var(--sage); margin-bottom: .2rem;
    }
    .place-info__text { font-size: .95rem; line-height: 1.5; color: var(--text-dark); }

    /* ─── РЕАЛЬНЫЕ ФОТО (figure) ──────────────────────────────────── */
    .photo {
      position: relative; overflow: hidden; display: block;
      border-radius: var(--radius-md); background: var(--ph-bg);
      width: 100%; height: 100%;
    }
    .photo > img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform .6s var(--ease-out);
    }
    @media (hover: hover) and (pointer: fine) {
      .travel-card .photo:hover > img, #place .photo:hover > img { transform: scale(1.05); }
    }
    .photo__cap {
      position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
      padding: 1.6rem .95rem .8rem; color: var(--text-on-media);
      background: var(--scrim-media);
      font-family: var(--font-serif); font-size: 1.02rem; font-weight: 700; line-height: 1.2;
    }
    .photo__cap small {
      display: block; margin-top: .25rem;
      font-family: var(--font-sans); font-weight: 400; font-size: .72rem;
      color: rgba(255,255,255,.78); letter-spacing: .01em;
    }

    /* ─── ГАЛЕРЕЯ ПРОШЛЫХ ВЫЕЗДОВ (масонри-колонки) ───────────────── */
    .gallery-grid { columns: 2; column-gap: .8rem; }
    @media (min-width: 680px)  { .gallery-grid { columns: 3; } }
    @media (min-width: 1000px) { .gallery-grid { columns: 4; } }
    .gallery-item {
      break-inside: avoid; margin: 0 0 .8rem; padding: 0; width: 100%;
      border: none; background: none; cursor: zoom-in; display: block;
      border-radius: var(--radius-md); overflow: hidden; position: relative;
    }
    .gallery-item > img {
      width: 100%; height: auto; display: block;
      transition: transform .6s var(--ease-out), filter .3s var(--ease-out);
    }
    .gallery-item::after {
      content: ''; position: absolute; inset: 0;
      box-shadow: inset 0 0 0 1px rgba(31,61,43,.12); border-radius: var(--radius-md);
      pointer-events: none;
    }
    @media (hover: hover) and (pointer: fine) {
      .gallery-item:hover > img { transform: scale(1.045); }
    }

    /* ─── ЛАЙТБОКС ────────────────────────────────────────────────── */
    .lightbox {
      position: fixed; inset: 0; z-index: 200;
      display: flex; align-items: center; justify-content: center;
      padding: clamp(1rem, 4vw, 3rem);
      background: rgba(10,18,12,.92);
      opacity: 0; visibility: hidden; transition: opacity .28s var(--ease-out), visibility .28s;
      touch-action: manipulation;
    }
    .lightbox.open { opacity: 1; visibility: visible; }
    .lightbox__img {
      max-width: 100%; max-height: 100%; border-radius: var(--radius-md);
      box-shadow: 0 30px 80px rgba(0,0,0,.5);
      transform: scale(.96); transition: transform .28s var(--ease-out);
      object-fit: contain;
    }
    .lightbox.open .lightbox__img { transform: scale(1); }
    .lightbox__cap {
      position: absolute; bottom: max(1.1rem, 3vw); left: 50%; transform: translateX(-50%);
      max-width: calc(100% - 2.5rem);
      text-align: center; color: #fff; font-size: .85rem; font-weight: 600; line-height: 1.4;
      padding: .5rem 1.15rem; border-radius: var(--radius-pill);
      background: rgba(20,38,26,.72);
      backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
      border: 1px solid rgba(231,220,199,.22);
      text-shadow: 0 1px 4px rgba(0,0,0,.4);
    }
    .lightbox__btn {
      position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
      color: #fff; width: 46px; height: 46px; border-radius: var(--radius-pill);
      display: flex; align-items: center; justify-content: center; font-size: 1.4rem; line-height: 1;
      transition: background .2s, transform .12s var(--ease-out);
    }
    .lightbox__btn:hover { background: rgba(255,255,255,.2); }
    .lightbox__btn:active { transform: scale(.93); }
    .lightbox__close { top: max(1rem, 3vw); right: max(1rem, 3vw); }
    .lightbox__nav { top: 50%; transform: translateY(-50%); }
    .lightbox__nav:active { transform: translateY(-50%) scale(.93); }
    .lightbox__prev { left: max(.5rem, 2vw); }
    .lightbox__next { right: max(.5rem, 2vw); }
    @media (max-width: 560px) {
      .lightbox__prev { left: .4rem; }
      .lightbox__next { right: .4rem; }
      .lightbox__nav { width: 40px; height: 40px; font-size: 1.15rem; }
    }

    /* ─── ПУТЕШЕСТВИЯ ────────────────────────────────────────────── */
    .travel-scroll {
      display: flex; gap: 1rem; overflow-x: auto;
      padding-bottom: 1rem; scroll-snap-type: x mandatory;
      -ms-overflow-style: none; scrollbar-width: none;
      scroll-padding-left: clamp(1.25rem, 5vw, 2.5rem);
    }
    .travel-scroll::-webkit-scrollbar { display: none; }
    .travel-card {
      flex: 0 0 84%; max-width: 340px; scroll-snap-align: start;
      box-shadow: var(--shadow-sm);
    }
    @media (min-width: 560px) { .travel-card { flex-basis: 230px; } }
    @media (min-width: 1024px) { .travel-card { flex-basis: 320px; } }
    .travel-card .photo { aspect-ratio: 3 / 4; }
    .travel-note {
      text-align: center; margin-top: 1.6rem;
      font-size: .85rem; color: rgba(231,220,199,.8);
    }

    /* ─── ТИХИЙ ПЛЕЙСХОЛДЕР (потоки + отзывы — данные позже) ───────── */
    .btn-ghost--dark { border-color: rgba(31,61,43,.32); color: var(--forest); flex-shrink: 0; }
    .btn-ghost--dark:hover { border-color: var(--forest); background: rgba(31,61,43,.05); }
    .soon-band {
      display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
      gap: 1.5rem 2rem;
      background: var(--white); border: 1px solid rgba(124,154,115,.28);
      border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.5rem);
      box-shadow: var(--shadow-sm);
    }
    .soon-band__row { display: flex; gap: 1.1rem; align-items: flex-start; flex: 1 1 320px; }
    .soon-band__icon { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
    .soon-band__title {
      font-family: var(--font-serif); font-size: clamp(1.25rem, 3vw, 1.6rem);
      font-weight: 700; color: var(--forest); margin-bottom: .4rem;
    }
    .soon-band__text { font-size: .94rem; line-height: 1.6; color: var(--text-mid); max-width: 56ch; }

    /* ─── ФОРМА / ФИНАЛЬНЫЙ CTA ─────────────────────────────────── */
    .cta-section {
      background: linear-gradient(135deg, var(--forest) 0%, var(--moss) 60%, #3a6b4e 100%);
      position: relative; overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute; top: -40%; right: -10%;
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(124,154,115,.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-layout {
      display: grid; gap: 4rem;
      grid-template-columns: 1fr;
    }
    @media (min-width: 768px) {
      .cta-layout { grid-template-columns: 1fr 1fr; align-items: start; }
    }
    .cta-text__title {
      font-family: var(--font-serif);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700; color: var(--sand); line-height: 1.15;
      margin-bottom: 1rem;
    }
    .cta-text__sub {
      font-size: 1rem; line-height: 1.7; color: rgba(231,220,199,.88);
      margin-bottom: 2rem;
    }
    .cta-details { display: flex; flex-direction: column; gap: .75rem; }
    .cta-detail {
      display: flex; gap: .75rem; align-items: center;
      font-size: .95rem; color: rgba(231,220,199,.85);
    }
    .cta-detail__icon { font-size: 1.1rem; }

    /* Form */
    .form-box {
      background: var(--panel-on-dark); border: 1px solid rgba(231,220,199,.16);
      border-radius: var(--radius-lg); padding: 2rem;
      box-shadow: var(--shadow-lg);
    }
    .form-box__title {
      font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700;
      color: var(--sand); margin-bottom: 1.5rem;
    }
    .form-group { margin-bottom: 1.1rem; }
    .form-label {
      display: block; font-size: .78rem; font-weight: 600;
      letter-spacing: .06em; text-transform: uppercase;
      color: rgba(231,220,199,.65); margin-bottom: .4rem;
    }
    .form-label .req { color: var(--terra); margin-left: 2px; }
    .form-input, .form-textarea, .form-select {
      width: 100%; padding: .85rem 1rem;
      background: rgba(255,255,255,.09); border: 1px solid rgba(231,220,199,.2);
      border-radius: var(--radius-sm); color: var(--sand); font-family: var(--font-sans);
      font-size: 1rem; outline: none;
      transition: border-color .2s, background .2s;
      appearance: none;
    }
    .form-input::placeholder, .form-textarea::placeholder { color: rgba(231,220,199,.52); }
    .form-input:focus, .form-textarea:focus, .form-select:focus {
      border-color: var(--sage); background: rgba(255,255,255,.13);
    }
    .form-input.error { border-color: var(--terra); }
    .form-textarea { min-height: 90px; resize: vertical; }
    .form-select option { background: var(--forest); }
    .form-hp { display: none; } /* honeypot */
    .form-consent {
      margin-top: 1rem; display: flex; align-items: flex-start; gap: .6rem;
    }
    .form-consent input[type=checkbox] { margin-top: 2px; flex-shrink: 0; accent-color: var(--sage); }
    .form-consent label { font-size: .75rem; color: rgba(231,220,199,.66); line-height: 1.5; }
    .form-consent a { text-decoration: underline; opacity: .8; }
    .btn-submit {
      width: 100%; margin-top: 1.25rem;
      padding: 1.1rem; border-radius: var(--radius-btn);
      background: var(--brand-red); color: #fff;
      font-size: 1rem; font-weight: 700; letter-spacing: .01em;
      transition: background .2s, transform .14s var(--ease-out), box-shadow .2s;
      box-shadow: var(--shadow-cta);
    }
    .btn-submit:hover { background: var(--brand-red-deep); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(224,21,41,.42); }
    .btn-submit:active { transform: scale(.98); }
    .btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; }
    .form-error { font-size: .78rem; color: #f5a695; margin-top: .3rem; display: none; }
    .form-error.visible { display: block; }
    .form-error--submit { text-align: center; margin: .85rem 0 0; font-weight: 600; }

    /* Success state */
    .form-success {
      display: none; text-align: center; padding: 3rem 1.5rem;
    }
    .form-success.visible { display: block; }
    .form-success__icon { font-size: 3.5rem; margin-bottom: 1rem; }
    .form-success__title {
      font-family: var(--font-serif); font-size: 1.6rem; color: var(--sand);
      font-weight: 700; margin-bottom: .75rem;
    }
    .form-success__text { font-size: .95rem; color: rgba(231,220,199,.7); line-height: 1.6; }

    /* ─── STICKY CTA BAR ─────────────────────────────────────────── */
    .sticky-bar {
      position: fixed; bottom: 1rem; left: 50%;
      transform: translateX(-50%) translateY(10px); z-index: 99;
      transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
      opacity: 0; pointer-events: none; max-width: calc(100vw - 1.5rem);
    }
    .sticky-bar.visible { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
    .sticky-bar__inner {
      display: flex; align-items: center; gap: .85rem;
      background: rgba(17,33,23,.9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(231,220,199,.16); border-radius: 14px;
      padding: .4rem .4rem .4rem 1.05rem;
      box-shadow: 0 12px 34px rgba(0,0,0,.42);
    }
    .sticky-bar__text {
      color: rgba(231,220,199,.85); font-size: .82rem; font-weight: 600;
      white-space: nowrap;
    }
    @media (max-width: 560px) {
      .sticky-bar__text { display: none; }
      .sticky-bar__inner {
        background: none; border: none; padding: 0;
        box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none;
      }
    }
    .sticky-bar .btn-primary { padding: .72rem 1.2rem; font-size: .86rem; box-shadow: none; }
    @media (max-width: 560px) {
      .sticky-bar .btn-primary {
        padding: .9rem 1.7rem; font-size: .92rem;
        box-shadow: 0 8px 28px rgba(224,21,41,.44), 0 2px 10px rgba(0,0,0,.32);
      }
    }
    @media (hover: hover) { .sticky-bar .btn-primary:hover { box-shadow: 0 6px 18px rgba(224,21,41,.4); } }

    /* ─── FOOTER ─────────────────────────────────────────────────── */
    .site-footer { background: var(--text-dark); color: var(--sand); }
    .footer-top {
      padding: clamp(3rem, 6vw, 5rem) 0 3rem;
    }
    .footer-grid {
      display: grid; gap: 2.5rem;
      grid-template-columns: 1fr;
    }
    @media (min-width: 768px) {
      .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
    }
    @media (min-width: 1024px) {
      .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; }
    }
    .footer-brand__logo {
      display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem;
    }
    .footer-brand__logo-img {
      height: 48px; width: auto; display: block; flex-shrink: 0;
    }
    .footer-brand__name {
      font-family: var(--font-display); font-size: 1.35rem; font-weight: 700;
      letter-spacing: .07em; text-transform: uppercase; color: var(--sand);
    }
    .footer-contacts a { color: rgba(231,220,199,.84); font-weight: 500; }
    .footer-cta {
      display: inline-flex; align-items: center; gap: .35rem; margin-top: 1.1rem;
      color: var(--sand); font-weight: 600; font-size: .9rem;
      border-bottom: 1px solid rgba(231,220,199,.35); padding-bottom: 2px;
      transition: color .2s, border-color .2s;
    }
    .footer-cta:hover { color: #fff; border-color: var(--terra); }
    .footer-brand__desc {
      font-size: .88rem; line-height: 1.65; color: rgba(231,220,199,.66);
      max-width: 300px;
    }
    .footer-col__title {
      font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
      font-weight: 700; color: var(--sage); margin-bottom: 1rem;
    }
    .footer-col__list { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
    .footer-col__list li { font-size: .88rem; }
    .footer-col__list a { color: rgba(231,220,199,.74); transition: color .2s; }
    .footer-col__list a:hover { color: var(--sand); }
    .footer-col__list span { color: rgba(231,220,199,.62); font-size: .8rem; }


    .footer-socials {
      display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1.25rem;
    }
    .footer-social {
      display: inline-flex; align-items: center; justify-content: center;
      width: 44px; height: 44px; border-radius: 50%;
      border: 1px solid rgba(231,220,199,.15); color: rgba(231,220,199,.6);
      font-size: .82rem; font-weight: 600;
      transition: background .2s, color .2s, border-color .2s;
    }
    .footer-social:hover { background: var(--moss); border-color: var(--moss); color: #fff; }

    .footer-bottom { border-top: 1px solid rgba(231,220,199,.1); }
    .footer-bottom .container {
      padding-top: 1.4rem; padding-bottom: 1.4rem;
      display: flex; flex-wrap: wrap; gap: 1rem;
      align-items: center; justify-content: space-between;
    }
    @media (max-width: 600px) {
      .footer-bottom .container { flex-direction: column; align-items: flex-start; gap: .8rem; }
      .footer-bottom__links { flex-wrap: wrap; gap: 1.25rem; }
    }
    .footer-bottom__text { font-size: .78rem; color: rgba(231,220,199,.6); }
    .footer-bottom__links { display: flex; gap: 1.5rem; }
    .footer-bottom__links a { font-size: .78rem; color: rgba(231,220,199,.6); transition: color .2s; }
    .footer-bottom__links a:hover { color: rgba(231,220,199,.7); }

    /* ─── SCROLL REVEAL ──────────────────────────────────────────── */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-d1 { transition-delay: .1s; }
    .reveal-d2 { transition-delay: .2s; }
    .reveal-d3 { transition-delay: .3s; }
    .reveal-d4 { transition-delay: .4s; }
    .reveal-d5 { transition-delay: .5s; }

    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
      .btn-primary, .btn-ghost, .switch-card, .benefit-card,
      .site-header, .sticky-bar { transition: none !important; }
      .hero__scroll-hint svg { animation: none; }
    }



    /* ─── ГАЛЕРЕЯ: поддержка видео (поток-2) ───────────────────────── */
    .gallery-item > video { width: 100%; height: auto; display: block; transition: transform .6s var(--ease-out), filter .3s var(--ease-out); }
    @media (hover: hover) and (pointer: fine) { .gallery-item:hover > video { transform: scale(1.045); } }
    .gallery-item__play {
      position: absolute; inset: 0; z-index: 1; display: flex; align-items: center; justify-content: center;
      background: linear-gradient(180deg, rgba(26,43,31,0) 55%, rgba(26,43,31,.55) 100%);
    }
    .gallery-item__play svg { width: 40px; height: 40px; filter: drop-shadow(0 2px 10px rgba(0,0,0,.5)); }
    .gallery-item__tag {
      position: absolute; left: .5rem; top: .5rem; z-index: 1;
      background: rgba(26,43,31,.72); border: 1px solid rgba(231,220,199,.35);
      color: var(--sand); font-size: .68rem; font-weight: 600; letter-spacing: .04em;
      text-transform: uppercase; padding: .22rem .55rem; border-radius: 3px;
    }
    .lightbox__video {
      max-width: 100%; max-height: 100%; border-radius: var(--radius-md);
      box-shadow: 0 30px 80px rgba(0,0,0,.5);
      transform: scale(.96); transition: transform .28s var(--ease-out);
      object-fit: contain; display: none; background: #000;
    }
    .lightbox.open .lightbox__video { transform: scale(1); }

    /* ─── ЗАКУПКА / ЗА КУЛИСАМИ (новый блок, поток-2) ──────────────── */
    .market-band { display: grid; gap: clamp(1.5rem, 4vw, 3rem); grid-template-columns: 1fr; align-items: center; }
    @media (min-width: 860px) { .market-band { grid-template-columns: 1.1fr 1fr; } }
    .market-text__title { font-family: var(--font-serif); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; color: var(--sand); margin-bottom: .9rem; }
    .market-text__body { font-size: .98rem; line-height: 1.75; color: rgba(231,220,199,.85); max-width: 56ch; }
    .market-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; }
    .market-photos .photo { aspect-ratio: 1 / 1; }
    .market-photos .photo:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

    /* ─── HERO: дата крупно + плашки активностей крупнее (поток-2, правка владельца 2026-07-13) ── */
    .hero__date { display: flex; flex-direction: column; align-items: flex-start; gap: .3rem; margin-bottom: 1.5rem; }
    .hero__date-num {
      font-family: var(--font-display); font-size: clamp(2.8rem, 7vw, 4.6rem);
      font-weight: 700; color: var(--brand-red); line-height: .9; letter-spacing: -.01em;
      text-shadow: 0 2px 18px rgba(0,0,0,.5);
    }
    .hero__date-num .dot { color: var(--sand); margin: 0 .04em; }
    .hero__date-cap { font-size: .95rem; font-weight: 700; color: #fff; line-height: 1.35; text-shadow: 0 1px 10px rgba(0,0,0,.5); max-width: 17ch; }
    .hero__date-cap small { display: block; margin-top: .1em; font-weight: 400; color: rgba(255,255,255,.8); font-size: .85em; }
    .hero__date-cap small::before { content: "· "; }
    .hero__cap {
      padding: .5rem 1.05rem; font-size: .92rem; font-weight: 700;
      border-width: 1.5px;
    }
    @media (max-width: 480px) {
      .hero__date-num { font-size: clamp(2.4rem, 13vw, 3rem); }
      .hero__cap { padding: .4rem .85rem; font-size: .82rem; }
    }

    /* ─── HERO: сетка герой-контент + aside (композиция concepts/ostrov-56-v5-study) ── */
    .hero__grid {
      display: grid; grid-template-columns: minmax(0, 760px) 260px;
      align-items: end; justify-content: space-between;
      gap: clamp(2rem, 5vw, 4.5rem);
    }
    .hero__aside {
      align-self: end; margin-bottom: .5rem; padding-top: 1.1rem;
      border-top: 1px solid rgba(231,220,199,.35);
    }
    .hero__aside strong {
      font-family: var(--font-serif); font-size: .95rem; font-weight: 700; color: #fff;
    }
    .hero__aside p {
      margin-top: .6rem; color: rgba(255,255,255,.68); font-size: .82rem; line-height: 1.6;
    }
    .hero__note { margin-top: .9rem; color: rgba(255,255,255,.55); font-size: .78rem; }
    @media (max-width: 1040px) {
      .hero__grid { grid-template-columns: 1fr; }
      .hero__aside { display: none; }
    }

    /* ─── HERO H1: единый плотный жирный набор вместо serif+italic ──
       Фикс по прямому сравнению с концептом v5-study (владелец 2026-07-13):
       italic-акцент на Playfair Display выглядел тонким/слабым на фоне
       монолитного жирного заголовка референса. Держим один вес по всей
       строке, различие — только цветом. ── */
    .hero__h1 {
      font-family: var(--font-sans);
      font-size: clamp(2.3rem, 5.2vw, 4.6rem);
      font-weight: 800; line-height: 1.02; letter-spacing: -.02em;
      margin-bottom: 1rem;
      overflow-wrap: break-word;
    }
    .hero__h1 em { font-style: normal; color: var(--sand); }
    .hero__eyebrow { margin-bottom: .6rem; }
    .hero__sub { margin-bottom: .9rem; }
    .hero__date { margin-bottom: 1.1rem; }
    .hero__date-cap { line-height: 1.3; }
    .hero__caps { margin-bottom: 1.1rem; gap: .4rem; }
    .hero__cap { padding: .4rem .85rem; font-size: .82rem; font-weight: 700; border-width: 1px; }
    .hero__chips { margin-bottom: 1.1rem; gap: .4rem; }
    .hero__chip { padding: .32rem .8rem; font-size: .76rem; }
    .hero__tagline { margin-bottom: 1.3rem; }
    @media (max-width: 480px) {
      .hero__h1 { font-size: clamp(2rem, 8vw, 2.4rem); }
    }

    /* ─── ИСТОРИЯ 4 ИЮЛЯ: обзор + фотоистории по активностям
       (композиция concepts/ostrov-56-v5-study §july/§activity) ── */
    .july-head { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 5rem); align-items: end; }
    .july-intro p { margin: 0; font-size: 1.02rem; line-height: 1.7; color: rgba(231,220,199,.8); }
    .july-gallery { display: grid; gap: .75rem; margin-top: clamp(2rem, 4vw, 2.75rem); }
    .july-main { aspect-ratio: 16 / 8.5; }
    .july-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; }
    .july-strip .gallery-item { margin: 0; }
    .july-main .gallery-item > img, .july-main > img,
    .july-strip .gallery-item > img { height: 100%; object-fit: cover; }
    @media (max-width: 820px) {
      .july-head { grid-template-columns: 1fr; gap: 1.25rem; }
    }
    @media (max-width: 640px) {
      /* Один сплошной ряд-«рилс»: july-main + все фото july-strip как
         равные крупные слайды, свайп вбок (owner-фидбэк: карточки
         были слишком мелкими для этого блока). july-strip растворяется
         (display:contents), её фото становятся прямыми flex-детьми.
         Контейнер НЕ full-bleed (owner-фидбэк №2: full-bleed без зазора
         «слепил» фото друг с другом и потерял скругление углов/рамку
         .gallery-item — тот же паттерн зазора+пика следующей карточки,
         что у .reels/.travel-card, просто крупнее и выше. */
      .july-gallery {
        display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
        gap: 1rem; scrollbar-width: none;
      }
      .july-gallery::-webkit-scrollbar { display: none; }
      .july-strip { display: contents; }
      .july-gallery .gallery-item {
        flex: 0 0 84%; max-width: 400px; aspect-ratio: auto;
        height: min(68svh, 520px); scroll-snap-align: start; margin: 0;
      }
    }

    /* ─── РИЛСЫ: горизонтальная карусель видео (портретный исходник —
       все 39 сырых клипов сняты вертикально на телефон, горизонтальных
       нет; формат 4/5 вместо 9/16 сокращает пустое небо/потолок в кадре) */
    .reels {
      display: flex; gap: .9rem; overflow-x: auto; scroll-snap-type: x mandatory;
      padding: 0 clamp(1.5rem, 4vw, 3rem) .6rem 0; scrollbar-width: none;
      -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 56px), transparent 100%);
              mask-image: linear-gradient(to right, #000 calc(100% - 56px), transparent 100%);
    }
    .reels::-webkit-scrollbar { display: none; }
    .reels__item {
      flex: 0 0 clamp(170px, 24vw, 320px); aspect-ratio: 4 / 5;
      margin: 0; scroll-snap-align: start;
    }
    .reels__item > img { height: 100%; object-fit: cover; object-position: center 35%; }
    @media (max-width: 640px) {
      .reels {
        -webkit-mask-image: none; mask-image: none;
        padding-right: clamp(1.25rem, 5vw, 2.5rem);
      }
      /* Крупнее на смартфоне (owner-фидбэк: были «маленькие прямоугольники») —
         один большой кадр в поле зрения, край следующего виден для наводки. */
      .reels__item { flex: 0 0 min(72vw, 320px); }
    }

    /* ─── АКТИВНОСТИ: двухколоночная плавающая (masonry) сетка карточек ──
       Композиция по образцу concepts/ostrov-56-v3-prototype §chapter
       (реальные имена/аккаунты ведущих подтверждены владельцем ранее). ── */
    /* Явные две колонки с ручным распределением по весу карточек — надёжнее,
       чем column-count (тот балансирует по числу элементов, не по высоте,
       и на неравных по высоте карточках даёт разрыв между колонками). */
    /* Строгая сетка 2×3: ряды одной высоты (grid-стретч), одна карточка =
       одна структура (фото + текст), без разносортных доп.-грид — это и
       есть фикс «неровно»: раньше карточки отличались составом (1 фото vs
       фото+2 доп.) и «плавали» по высоте. Теперь состав всегда одинаковый. */
    .activities-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
    @media (min-width: 720px) { .activities-grid { grid-template-columns: 1fr 1fr; } }
    .activity-card {
      display: flex; flex-direction: column; margin: 0;
      background: var(--white); border-radius: var(--radius-lg);
      overflow: hidden; box-shadow: var(--shadow-sm);
    }
    .activity-card__media { flex: 0 0 auto; }
    .activity-card__media .gallery-item { margin: 0; display: block; width: 100%; }
    .activity-card__media .gallery-item > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
    .activity-card__body { flex: 1 1 auto; display: flex; flex-direction: column; padding: 1.4rem 1.5rem 1.6rem; }
    .activity-card__text { flex: 1 1 auto; }
    .activity-card__no {
      display: block; margin-bottom: .5rem; color: var(--terra);
      font-family: var(--font-display); font-size: 1.7rem; font-weight: 700;
    }
    .activity-card__title {
      font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700;
      color: var(--text-dark); margin-bottom: .6rem; line-height: 1.2;
    }
    .activity-card__text { font-size: .93rem; line-height: 1.65; color: var(--text-mid); }
