:root {
    --cream: #F5EFE0;
    --cream-light: #FAF6EB;
    --paper: #EFE6D2;
    --green: #1F4D2A;
    --green-deep: #143620;
    --green-soft: #2D6A3A;
    --gold: #C8860A;
    --gold-warm: #B8730D;
    --gold-light: #E2A938;
    --ink: #1F1A12;
    --ink-soft: #4A4236;
    --line: #D9CDB1;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  body::before {
    content: "";
    position: fixed; inset: 0;
    background-image: 
      radial-gradient(circle at 20% 30%, rgba(200,134,10,0.04) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(31,77,42,0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
  }

  .container { max-width: 1320px; margin: 0 auto; padding: 0 40px; }

  /* ========= NAV ========= */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(245,239,224,0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    z-index: 100;
    padding: 16px 0;
    transition: padding 0.4s ease, background 0.4s ease;
  }
  nav.scrolled {
    padding: 10px 0;
    background: rgba(245,239,224,0.95);
    box-shadow: 0 2px 20px rgba(31,77,42,0.04);
  }
  .nav-logo img {
    transition: width 0.4s ease;
  }
  nav.scrolled .nav-logo img { width: 64px; }
  nav.scrolled .nav-logo-text { font-size: 22px; }
  nav.scrolled .nav-logo-text span { font-size: 12px; }
  nav .container { display: flex; align-items: center; justify-content: space-between; }
  .nav-logo { display: flex; align-items: center; gap: 16px; }
  .nav-logo img { width: 96px; height: auto; display: block; }
  .nav-logo-text { 
    font-family: 'Fraunces', serif; 
    font-weight: 700; 
    font-size: 26px; 
    color: var(--green); 
    letter-spacing: 1px;
    line-height: 1;
  }
  .nav-logo-text span { 
    display: block;
    color: var(--gold-warm); 
    font-weight: 500; 
    font-size: 14px; 
    letter-spacing: 6px;
    margin-top: 5px;
  }
  .nav-links { display: flex; gap: 34px; list-style: none; }
  .nav-links a { 
    color: var(--ink-soft); 
    text-decoration: none; 
    font-size: 14px; 
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s;
    position: relative;
  }
  .nav-links a:hover { color: var(--green); }
  .nav-links a::after {
    content: "";
    position: absolute; left: 0; bottom: -6px;
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.3s ease;
  }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: var(--green);
    color: var(--cream);
    padding: 11px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: background 0.3s;
  }
  .nav-cta:hover { background: var(--green-deep); }

  /* ========= HERO ========= */
  .hero {
    padding: 160px 0 100px;
    position: relative;
    z-index: 2;
  }
  .hero-grid { 
    display: grid; 
    grid-template-columns: 1.15fr 1fr; 
    gap: 80px; 
    align-items: center;
  }
  
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    color: var(--gold-warm);
    font-size: 12px; font-weight: 500;
    letter-spacing: 4px; text-transform: uppercase;
    margin-bottom: 32px;
    opacity: 0; animation: fadeUp 0.8s ease 0.1s forwards;
  }
  .hero-eyebrow::before {
    content: ""; width: 36px; height: 1px; background: var(--gold);
  }
  
  .hero h1 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(40px, 5.4vw, 78px);
    line-height: 1.02;
    letter-spacing: -0.018em;
    color: var(--green-deep);
    opacity: 0; animation: fadeUp 1s ease 0.3s forwards;
    margin-bottom: 32px;
  }
  .hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-warm);
  }

  .hero-sub {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(18px, 1.6vw, 22px);
    color: var(--ink-soft);
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 540px;
    opacity: 0; animation: fadeUp 1s ease 0.45s forwards;
  }

  .hero-points {
    list-style: none;
    margin-bottom: 48px;
    opacity: 0; animation: fadeUp 1s ease 0.6s forwards;
  }
  .hero-points li {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    color: var(--ink);
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }
  .hero-points li::before {
    content: "";
    flex-shrink: 0;
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 9px;
  }
  .hero-points li:first-child { border-top: 1px solid var(--line); }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    opacity: 0; animation: fadeUp 1s ease 0.75s forwards;
  }
  .btn {
    padding: 16px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    font-family: inherit;
  }
  .btn-primary { background: var(--green); color: var(--cream); }
  .btn-primary:hover { background: var(--green-deep); transform: translateY(-2px); }
  .btn-gold { background: var(--gold-warm); color: var(--cream); }
  .btn-gold:hover { background: var(--gold); transform: translateY(-2px); }
  .btn-outline { background: transparent; color: var(--green); border: 1px solid var(--green); }
  .btn-outline:hover { background: var(--green); color: var(--cream); }
  .btn-outline-gold { background: transparent; color: var(--gold-warm); border: 1px solid var(--gold-warm); }
  .btn-outline-gold:hover { background: var(--gold-warm); color: var(--cream); }

  /* v6.1: контейнер без рамки/тени/тёмного фона — нужен эффект
     «видео растворяется в страницу». Маска вынесена с .photo на сам
     .hero-logo-wrap, чтобы плавно гасить ВСЁ содержимое (видео,
     солнечные блики, шиммер, рамку) в один край. Прозрачные пиксели
     показывают cream-фон body — отсюда «слияние с фоном». */
  .hero-logo-wrap {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    aspect-ratio: 3/4;
    background: transparent;
    overflow: hidden;
    opacity: 0;
    animation: fadeUp 1.2s ease 0.5s forwards;
    isolation: isolate;
    /* мягкая радиальная виньетка: центр чёткий до ~55%, дальше короткий
       плавный градиент в прозрачность — изображение хорошо видно, только
       самые края растворяются в фон страницы. */
    -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 50%,
        #000 55%, rgba(0,0,0,0.5) 82%, transparent 100%);
            mask-image: radial-gradient(ellipse 100% 100% at 50% 50%,
        #000 55%, rgba(0,0,0,0.5) 82%, transparent 100%);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
  }
  .hero-logo-wrap > .photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    /* фон прозрачный — пока видео грузится, видно poster (jpg).
       Маска теперь на родителе — здесь не нужна. */
    background: transparent;
  }
  /* Тёплое солнечное пульсирование — слева где солнце на фото */
  .hero-logo-wrap > .sun-glow {
    position: absolute;
    left: -8%; top: 38%;
    width: 65%; height: 50%;
    background: radial-gradient(ellipse 60% 60% at 35% 50%,
      rgba(255,210,120,0.55) 0%,
      rgba(255,180,80,0.25) 35%,
      transparent 72%);
    filter: blur(14px);
    mix-blend-mode: screen;
    animation: sunBreathe 7s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
  }
  @keyframes sunBreathe {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50%      { opacity: 1.0;  transform: scale(1.10); }
  }
  /* Диагональный световой шиммер (как ветер прошёл по полю) */
  .hero-logo-wrap > .shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg,
      transparent 30%,
      rgba(255,235,180,0.0) 42%,
      rgba(255,235,180,0.22) 50%,
      rgba(255,235,180,0.0) 58%,
      transparent 70%);
    mix-blend-mode: overlay;
    animation: shimmerSweep 11s ease-in-out infinite;
    z-index: 3;
    pointer-events: none;
  }
  @keyframes shimmerSweep {
    0%       { transform: translateX(-25%); opacity: 0; }
    35%, 65% { opacity: 1; }
    100%     { transform: translateX(25%); opacity: 0; }
  }
  /* Лёгкое "дыхание" нижней половины (колосья) — еле заметный warm pulse */
  .hero-logo-wrap > .field-breathe {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 55%;
    background: linear-gradient(180deg,
      transparent 0%,
      rgba(200,134,10,0.0) 40%,
      rgba(180,120,30,0.10) 100%);
    mix-blend-mode: multiply;
    animation: fieldBreathe 9s ease-in-out infinite;
    z-index: 3;
    pointer-events: none;
  }
  @keyframes fieldBreathe {
    0%, 100% { opacity: 0.6; }
    50%      { opacity: 1.0; }
  }
  /* Тонкая золотая внутренняя рамка */
  .hero-logo-wrap > .frame-ornament {
    position: absolute; inset: 14px;
    border: 1px solid rgba(255,253,247,0.32);
    pointer-events: none; z-index: 5;
  }
  .hero-logo-wrap > .frame-ornament::before,
  .hero-logo-wrap > .frame-ornament::after {
    content: ""; position: absolute;
    width: 22px; height: 22px;
    border: 1px solid rgba(255,220,140,0.65);
  }
  .hero-logo-wrap > .frame-ornament::before {
    top: -4px; left: -4px; border-right: none; border-bottom: none;
  }
  .hero-logo-wrap > .frame-ornament::after {
    bottom: -4px; right: -4px; border-left: none; border-top: none;
  }
  /* Тонкая виньетка по краям для глубины */
  .hero-logo-wrap::after {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 90% 100% at 50% 50%,
      transparent 55%,
      rgba(20,15,5,0.25) 100%);
    pointer-events: none;
    z-index: 4;
  }
  /* Логотип уже вшит в фото — скрываем отдельный <img> */
  .hero-logo-wrap img { display: none; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ========= SCROLL PROGRESS BAR ========= */
  .scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    z-index: 1000;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 8px rgba(200,134,10,0.4);
  }

  /* ========= REVEAL ON SCROLL ========= */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: 
      opacity 0.9s cubic-bezier(.2,.7,.2,1),
      transform 0.9s cubic-bezier(.2,.7,.2,1);
    will-change: opacity, transform;
  }
  .reveal.in-view {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition:
      opacity 1s cubic-bezier(.2,.7,.2,1),
      transform 1s cubic-bezier(.2,.7,.2,1);
  }
  .reveal-left.in-view {
    opacity: 1;
    transform: translateX(0);
  }
  .reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition:
      opacity 1s cubic-bezier(.2,.7,.2,1),
      transform 1s cubic-bezier(.2,.7,.2,1);
  }
  .reveal-right.in-view {
    opacity: 1;
    transform: translateX(0);
  }
  .reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition:
      opacity 1s cubic-bezier(.2,.7,.2,1),
      transform 1s cubic-bezier(.2,.7,.2,1);
  }
  .reveal-scale.in-view {
    opacity: 1;
    transform: scale(1);
  }

  /* Section title underline draw-in effect */
  .section-title-line {
    display: block;
    width: 0;
    height: 1px;
    background: var(--gold);
    margin: 24px 0 0;
    transition: width 1.2s cubic-bezier(.2,.7,.2,1) 0.2s;
  }
  .section-title-line.in-view {
    width: 80px;
  }

  /* ========= HERO LOGO FLOAT ========= */
  @keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
  }
  .hero-logo-wrap img {
    animation: floatLogo 6s ease-in-out infinite;
    animation-delay: 1.5s;
  }

  /* ========= HOVER LIFT ON CARDS ========= */
  .direction {
    transition: background 0.5s, transform 0.5s, box-shadow 0.5s;
  }
  .direction:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(31,77,42,0.2);
    z-index: 2;
  }
  .fact {
    transition: background 0.4s, transform 0.4s;
  }
  .fact:hover {
    background: var(--cream);
    transform: translateY(-2px);
  }

  /* ========= COUNTER (numbers tick on appear) ========= */
  .counter {
    display: inline-block;
  }

  /* ========= GENTLE PULSE FOR QR ========= */
  @keyframes qrPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(200,134,10,0); }
    50%      { box-shadow: 0 0 0 6px rgba(200,134,10,0.04); }
  }
  .qr-card.in-view {
    animation: qrPulse 4s ease-in-out infinite;
    animation-delay: 1.5s;
  }

  /* Reduce motion respect */
  @media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right, .reveal-scale,
    .section-title-line, .hero-logo-wrap img, .qr-card.in-view {
      animation: none !important;
      transition: none !important;
      opacity: 1 !important;
      transform: none !important;
      width: 80px !important;
    }
  }

  /* ========= SECTION COMMON ========= */
  .section-label {
    font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold-warm); font-weight: 500;
    display: inline-flex; align-items: center; gap: 12px;
    margin-bottom: 28px;
  }
  .section-label::before {
    content: ""; width: 8px; height: 8px; background: var(--gold);
    border-radius: 50%;
  }
  .section-title {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(36px, 4.2vw, 60px);
    line-height: 1.05;
    color: var(--green-deep);
    letter-spacing: -0.013em;
  }
  .section-title em { font-style: italic; color: var(--gold-warm); }

  /* ========= ABOUT ========= */
  .about {
    padding: 130px 0;
    background: var(--cream-light);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 2;
  }
  .about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 100px; align-items: start; }
  
  .about-text { font-size: 18px; line-height: 1.75; color: var(--ink-soft); }
  .about-text p + p { margin-top: 24px; }
  .about-text strong { color: var(--green); font-weight: 600; }

  .about-facts {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .fact {
    background: var(--cream-light);
    padding: 28px 24px;
  }
  .fact-num {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 36px;
    color: var(--green);
    line-height: 1;
    margin-bottom: 8px;
  }
  .fact-num sup { font-size: 0.55em; color: var(--gold-warm); margin-left: 2px; }
  .fact-label { font-size: 13px; color: var(--ink-soft); line-height: 1.4; }

  /* ========= DIRECTIONS ========= */
  .directions {
    padding: 130px 0;
    position: relative;
    z-index: 2;
  }
  .directions-header { 
    display: flex; justify-content: space-between; align-items: end; 
    margin-bottom: 70px;
    gap: 60px;
  }
  .directions-header p { 
    max-width: 380px; color: var(--ink-soft); 
    font-size: 16px; line-height: 1.6;
  }
  .directions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .direction {
    background: var(--cream);
    padding: 48px 40px;
    transition: background 0.5s, transform 0.5s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
  }
  .direction:hover { background: var(--green-deep); }
  .direction:hover .dir-num,
  .direction:hover .dir-name,
  .direction:hover .dir-desc,
  .direction:hover .dir-list li { color: var(--cream); }
  .direction:hover .dir-list li::before { background: var(--gold-light); }
  .direction:hover .dir-icon { color: var(--gold-light); transform: scale(1.05); }
  
  .dir-icon {
    width: 56px; height: 56px;
    color: var(--gold);
    margin-bottom: 28px;
    transition: color 0.5s, transform 0.5s;
  }
  .dir-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 14px; 
    color: var(--ink-soft);
    margin-bottom: 12px;
    transition: color 0.5s;
  }
  .dir-name {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 26px;
    color: var(--green-deep);
    line-height: 1.15;
    margin-bottom: 18px;
    transition: color 0.5s;
  }
  .dir-desc {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 24px;
    transition: color 0.5s;
    flex-grow: 1;
  }
  .dir-list {
    list-style: none;
    border-top: 1px solid var(--line);
    padding-top: 20px;
  }
  .direction:hover .dir-list { border-top-color: rgba(245,239,224,0.2); }
  .dir-list li {
    font-size: 13px;
    color: var(--ink-soft);
    padding: 5px 0;
    padding-left: 18px;
    position: relative;
    transition: color 0.5s;
  }
  .dir-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 13px;
    width: 8px; height: 1px;
    background: var(--gold);
    transition: background 0.5s;
  }

  /* ========= LAB FEATURE ========= */
  .lab-feature {
    background: var(--green-deep);
    color: var(--cream);
    padding: 130px 0;
    position: relative;
    overflow: hidden;
    z-index: 2;
  }
  .lab-feature::before {
    content: ""; position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 90% 10%, rgba(200,134,10,0.18) 0%, transparent 50%),
      radial-gradient(circle at 10% 90%, rgba(45,106,58,0.4) 0%, transparent 50%);
    pointer-events: none;
  }
  .lab-feature .container { position: relative; z-index: 2; }
  .lab-feature .section-label { color: var(--gold-light); }
  .lab-feature .section-label::before { background: var(--gold-light); }
  .lab-feature h2 {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    max-width: 900px;
  }
  .lab-feature h2 em { font-style: italic; color: var(--gold-light); font-weight: 400; }
  .lab-feature .lab-text {
    font-size: 18px;
    color: rgba(245,239,224,0.85);
    max-width: 720px;
    line-height: 1.65;
    margin-bottom: 24px;
  }
  /* Список культур + ГОСТ — заметная отдельная строка над параметрами */
  .lab-feature .lab-crops {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: center;
    margin: 0 0 48px;
    padding: 14px 20px;
    background: rgba(226,169,56,0.10);
    border-left: 3px solid var(--gold-light);
    border-radius: 4px;
    font-size: 17px;
    color: var(--cream);
    line-height: 1.45;
  }
  .lab-feature .lab-crops .crop {
    font-weight: 600;
    color: var(--gold-light);
  }
  .lab-feature .lab-crops .gost {
    font-size: 15px;
    color: rgba(245,239,224,0.7);
    border-left: 1px solid rgba(245,239,224,0.25);
    padding-left: 14px;
  }
  @media (max-width: 720px) {
    .lab-feature .lab-crops {
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
    }
    .lab-feature .lab-crops .gost {
      border-left: none;
      padding-left: 0;
      font-size: 14px;
    }
  }
  .lab-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: end;
  }
  .lab-params {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(245,239,224,0.2);
  }
  .lab-param {
    padding: 28px 0;
    border-bottom: 1px solid rgba(245,239,224,0.2);
    border-right: 1px solid rgba(245,239,224,0.2);
    padding-right: 24px;
    padding-left: 24px;
  }
  .lab-param:nth-child(3n) { border-right: none; padding-right: 0; }
  .lab-param:nth-child(3n+1) { padding-left: 0; }
  .lab-param-name {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 4px;
  }
  .lab-param-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 13px;
    color: var(--gold-light);
  }

  /* ========= CARRIERS ========= */
  .carriers {
    padding: 130px 0;
    background: var(--paper);
    position: relative;
    z-index: 2;
  }
  .carriers-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .carriers-text { font-size: 17px; line-height: 1.7; color: var(--ink-soft); margin: 24px 0 40px; }
  
  .conditions {
    list-style: none;
    margin-bottom: 40px;
  }
  .conditions li {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    font-size: 15px;
    color: var(--ink);
  }
  .conditions li:first-child { border-top: 1px solid var(--line); }
  .cond-key {
    flex: 0 0 auto;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 500;
    color: var(--gold-warm);
    font-size: 22px;
    line-height: 1;
    min-width: 80px;
  min-width:140px;display:inline-block;text-align:center;}
  .cond-text { flex: 1; line-height: 1.45; padding-top: 4px; }
  
  /* QR card */
  .qr-card {
    background: var(--cream-light);
    border: 1px solid var(--line);
    padding: 32px;
    text-align: center;
    position: relative;
  }
  .qr-card::before {
    content: "";
    position: absolute;
    top: -1px; left: -1px;
    width: 28px; height: 28px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
  }
  .qr-card::after {
    content: "";
    position: absolute;
    bottom: -1px; right: -1px;
    width: 28px; height: 28px;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
  }
  .qr-card img {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
    margin: 0 auto 24px;
  }
  .qr-label {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 16px;
    color: var(--green-deep);
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto 16px;
  }
  .qr-link {
    font-size: 12px;
    color: var(--ink-soft);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    transition: color 0.3s;
  }
  .qr-link:hover { color: var(--gold-warm); }

  /* ========= WHY US ========= */
  .why {
    padding: 130px 0;
    background: var(--cream);
    position: relative;
    z-index: 2;
  }
  .why-header { text-align: center; margin-bottom: 80px; }
  .why-header .section-label { display: inline-flex; }
  .why-header h2 { max-width: 900px; margin: 0 auto; }
  
  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
  }
  .why-item {
    padding: 36px 28px 36px 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background 0.3s;
  }
  .why-item:nth-child(4n) { border-right: none; padding-right: 0; }
  .why-item:nth-child(4n+1) { padding-left: 0; }
  .why-item:not(:nth-child(4n+1)) { padding-left: 28px; }
  .why-item:hover { background: var(--cream-light); }
  
  .why-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--gold-warm);
    margin-bottom: 16px;
  }
  .why-text {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 19px;
    color: var(--green-deep);
    line-height: 1.3;
  }

  /* ========= CONTACT ========= */
  .contact {
    padding: 130px 0;
    background: var(--cream-light);
    border-top: 1px solid var(--line);
    position: relative;
    z-index: 2;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 100px;
    align-items: start;
  }
  .contact-intro p {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-top: 16px;
  }
  .contact-direct {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
  }
  .contact-direct h4 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 17px;
    color: var(--green-deep);
    margin-bottom: 16px;
  }
  .contact-direct a {
    display: block;
    color: var(--ink);
    text-decoration: none;
    font-size: 15px;
    padding: 8px 0;
    transition: color 0.3s;
  }
  .contact-direct a:hover { color: var(--gold-warm); }
  .contact-direct .addr {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 12px;
  }
  .contact-direct .map-link {
    display: inline-flex;
    align-items: center;
    color: var(--gold-warm);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    margin-top: 4px;
    transition: color 0.3s, border-color 0.3s;
  }
  .contact-direct .map-link:hover {
    color: var(--green);
    border-color: var(--green);
  }
  .req-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--gold-warm);
    margin-right: 10px;
    text-transform: uppercase;
  }
  
  /* Form */
  .form { display: grid; gap: 20px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .field { display: flex; flex-direction: column; gap: 8px; }
  .field label {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-warm);
    font-weight: 500;
  }
  .field input,
  .field select,
  .field textarea {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    transition: border-color 0.3s;
    outline: none;
  }
  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    border-color: var(--green);
  }
  .field textarea { resize: vertical; min-height: 120px; }
  /* honeypot — невидимое поле-ловушка для спам-ботов */
  .hp-field { position: absolute !important; left: -9999px; top: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
  .consent { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.5; color: var(--ink-soft); cursor: pointer; }
  .consent input { margin-top: 3px; width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--green); }
  .consent a { color: var(--green); text-decoration: underline; }
  .consent a:hover { color: var(--gold-warm); }
  .form-status { font-size: 14px; line-height: 1.5; margin: 4px 0 0; min-height: 20px; }
  .form-status.ok { color: var(--green-soft); font-weight: 500; }
  .form-status.err { color: #C0392B; }
  .form button { 
    margin-top: 8px;
    justify-self: start;
    padding: 18px 36px;
  }

  /* ========= FOOTER ========= */
  footer {
    background: var(--green-deep);
    color: var(--cream);
    padding: 80px 0 32px;
    position: relative;
    z-index: 2;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  .footer-logo { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
  .footer-logo img { width: 80px; height: auto; filter: brightness(1.05) drop-shadow(0 0 0.5px var(--gold-light)); }
  .footer-logo div { 
    font-family: 'Fraunces', serif; 
    font-weight: 700; 
    font-size: 24px; 
    color: var(--cream); 
    letter-spacing: 1px;
    line-height: 1;
  }
  .footer-logo div span { 
    display: block;
    color: var(--gold-light); 
    font-weight: 500; 
    font-size: 14px; 
    letter-spacing: 5px;
    margin-top: 5px;
  }
  .footer-about p { 
    color: rgba(245,239,224,0.7); 
    font-size: 14px; line-height: 1.6;
    max-width: 280px;
  }
  .footer-col h5 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--gold-light);
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .footer-col a, .footer-col li {
    display: block;
    color: rgba(245,239,224,0.75);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 14px;
    list-style: none;
    transition: color 0.3s;
  }
  .footer-col a:hover { color: var(--cream); }
  .footer-bottom a { color: inherit; text-decoration: underline; opacity: .85; transition: opacity .2s, color .2s; }
  .footer-bottom a:hover { opacity: 1; color: var(--cream); }
  /* cookie-баннер — слим-полоса вплотную к низу окна */
  .cookie-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: center; gap: 12px 20px; flex-wrap: wrap;
    background: var(--green-deep); color: var(--cream);
    padding: 11px 22px;
    box-shadow: 0 -4px 18px rgba(0,0,0,.18);
    font-size: 13px; line-height: 1.45;
  }
  .cookie-bar[hidden] { display: none; }
  .cookie-bar span { flex: 0 1 auto; max-width: 780px; }
  .cookie-bar a { color: var(--gold-light); text-decoration: underline; }
  .cookie-bar button {
    flex: 0 0 auto; cursor: pointer; border: none; border-radius: 8px;
    background: var(--gold); color: #fff; font: inherit; font-size: 13px; font-weight: 600;
    padding: 8px 22px; transition: background .2s, transform .2s;
  }
  .cookie-bar button:hover { background: var(--gold-warm); transform: translateY(-1px); }
  @media (max-width: 560px) { .cookie-bar { gap: 8px; padding: 10px 14px; text-align: center; } }
  .footer-addr {
    color: rgba(245,239,224,0.6) !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
    margin-top: 6px !important;
    margin-bottom: 14px !important;
  }
  .footer-map {
    color: var(--gold-light) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
  }
  .footer-map:hover { color: var(--cream) !important; }
  .footer-bottom {
    border-top: 1px solid rgba(245,239,224,0.15);
    padding-top: 32px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px;
    color: rgba(245,239,224,0.5);
  }

  /* ========= RESPONSIVE ========= */
  @media (max-width: 900px) {
    .container { padding: 0 24px; }
    .nav-links { display: none; }
    .nav-cta { padding: 9px 16px; font-size: 12px; }
    .nav-logo img { width: 72px; }
    .nav-logo-text { font-size: 19px; }
    .nav-logo-text span { font-size: 12px; letter-spacing: 4px; margin-top: 4px; }
    
    .hero { padding: 130px 0 60px; }
    .hero-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero-logo-wrap { order: -1; max-width: 320px; margin: 0 auto; }
    .hero-buttons { grid-template-columns: 1fr; }
    
    .about, .directions, .lab-feature, .carriers, .why, .contact { padding: 80px 0; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-facts { grid-template-columns: 1fr 1fr; }
    
    .directions-header { flex-direction: column; align-items: start; gap: 24px; }
    .directions-grid { grid-template-columns: 1fr; }
    
    .lab-grid { grid-template-columns: 1fr; gap: 50px; }
    .lab-params { grid-template-columns: 1fr 1fr; }
    .lab-param:nth-child(3n) { border-right: 1px solid rgba(245,239,224,0.2); padding-right: 24px; }
    .lab-param:nth-child(3n+1) { padding-left: 24px; }
    .lab-param:nth-child(2n) { border-right: none !important; padding-right: 0 !important; }
    .lab-param:nth-child(2n+1) { padding-left: 0 !important; }
    
    .carriers-grid { grid-template-columns: 1fr; gap: 50px; }
    
    .why-grid { grid-template-columns: 1fr 1fr; }
    .why-item { padding: 28px 16px !important; border-right: 1px solid var(--line) !important; }
    .why-item:nth-child(2n) { border-right: none !important; padding-right: 0 !important; }
    .why-item:nth-child(2n+1) { padding-left: 0 !important; }
    
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  }

  /* Карта погрузок — refined outline button в палитре сайта */
  .btn.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cream-light);
    color: var(--green-deep);
    border: 1px solid var(--green-deep);
    box-shadow: inset 0 0 0 0 var(--gold), 0 1px 0 rgba(20,54,32,0.04);
    transition: background 0.4s ease, color 0.4s ease, transform 0.3s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
  }
  .btn.btn-map .btn-map-logo {
    width: 20px;
    height: 20px;
    display: block;
    transition: transform 0.4s ease;
  }
  .btn.btn-map:hover {
    background: var(--green-deep);
    color: var(--cream-light);
    border-color: var(--green-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -8px rgba(20,54,32,0.45);
  }
  .btn.btn-map:hover .btn-map-logo { transform: rotate(-6deg) scale(1.05); }
  /* ===== scroll-bg video (гибрид Б) ===== */
  .bg-stage { position: fixed; inset: 0; z-index: 0; overflow: hidden; background: #14201a url('/media/poster.jpg') center center / cover no-repeat; }
  .bg-stage .bg-media { position: absolute; inset: 0; width: 100%; height: 100%; display: none; }
  .bg-stage video.bg-media { object-fit: cover; }
  .bg-scrim { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(10,20,12,.16), rgba(10,20,12,.30)); }
  /* секции — полупрозрачные: видео «дышит» сквозь них и ярко видно в hero */
  .hero { background: linear-gradient(90deg, rgba(245,239,224,.93) 0%, rgba(245,239,224,.62) 52%, rgba(245,239,224,.12) 100%); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-grid > div { max-width: 640px; }
  .about { background: rgba(250,246,235,.70); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); }
  .directions { background: rgba(245,239,224,.68); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); }
  .lab-feature { background: rgba(20,54,32,.72); }
  .carriers { background: rgba(239,230,210,.70); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); }
  .contact { background: rgba(250,246,235,.92); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
  @media (max-width: 900px) { .bg-stage canvas.bg-media { display: none !important; } }
  @media (prefers-reduced-motion: reduce) { .bg-stage canvas.bg-media, .bg-stage video.bg-media { display: none !important; } }

/* ===================== LANDING PAGES (Phase 2) ===================== */
.lp-hero { position: relative; min-height: 86vh; display: flex; align-items: center; overflow: hidden; }
.lp-hero-bg { position: absolute; inset: 0; z-index: 0; background: #14201a center center / cover no-repeat; }
.lp-hero::after { content:''; position:absolute; inset:0; z-index:1;
  background: linear-gradient(180deg, rgba(10,20,12,.58) 0%, rgba(10,20,12,.42) 38%, rgba(10,20,12,.74) 100%); }
.lp-hero .container { position: relative; z-index: 2; }
.lp-hero-inner { max-width: 720px; color: var(--cream); padding: 96px 0; }
.lp-eyebrow { display:inline-flex; align-items:center; gap:12px; font-size:13px; letter-spacing:3px;
  text-transform:uppercase; color: var(--gold-light); margin-bottom: 22px; font-weight:600; }
.lp-eyebrow::before { content:''; width:34px; height:1px; background: var(--gold); }
.lp-hero h1 { font-family:'Fraunces',serif; font-weight:700; font-size: clamp(34px,5.4vw,58px);
  line-height:1.08; color:#fff; margin:0 0 20px; }
.lp-hero h1 em { color: var(--gold-light); font-style: italic; }
.lp-hero-sub { font-size: clamp(17px,2vw,20px); line-height:1.6; color: rgba(245,239,224,.92);
  max-width: 600px; margin: 0 0 30px; }
.lp-offer { list-style:none; padding:0; margin:0 0 34px; display:grid; gap:14px; max-width:600px; }
.lp-offer li { position:relative; padding-left: 30px; font-size: 16px; line-height:1.5; color: var(--cream); }
.lp-offer li::before { content:''; position:absolute; left:0; top:7px; width:9px; height:9px;
  background: var(--gold); border-radius:2px; transform: rotate(45deg); }
.lp-cta-row { display:flex; gap:14px; flex-wrap:wrap; }
.lp-steps { padding: 96px 0; background: var(--cream-light); border-top:1px solid var(--line); }
.lp-steps-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 36px; margin-top: 44px; }
.lp-step-num { font-family:'Fraunces',serif; font-size: 42px; color: var(--gold-warm); line-height:1; margin-bottom: 14px; }
.lp-step h3 { font-size: 19px; color: var(--green); margin: 0 0 8px; }
.lp-step p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; margin:0; }
.lp-form-section { padding: 96px 0; background: var(--paper); }
.lp-form-wrap { max-width: 640px; margin: 36px auto 0; }
.lp-back { color: var(--gold-warm); text-decoration:none; font-weight:600; font-size:14px; }
.lp-back:hover { color: var(--gold); }
@media (max-width: 760px){
  .lp-steps-grid{ grid-template-columns:1fr; gap:28px; }
  .lp-hero{ min-height:auto; } .lp-hero-inner{ padding: 130px 0 70px; }
}

/* ===== Квиз «Узнать цену» + Ken-Burns фон ===== */
@keyframes lpKenBurns { 0%{transform:scale(1) translate(0,0);} 100%{transform:scale(1.1) translate(-1.5%,-1%);} }
div.lp-hero-bg { animation: lpKenBurns 24s ease-in-out infinite alternate; will-change: transform; }
.quiz { background: var(--cream-light); border:1px solid var(--line); border-radius:18px; padding: 22px 24px; max-width:500px; }
.quiz-progress { display:flex; align-items:center; gap:14px; margin-bottom: 24px; }
.quiz-progress span { font-size:13px; color:var(--ink-soft); white-space:nowrap; font-weight:600; }
.quiz-bar { flex:1; height:6px; background:var(--line); border-radius:4px; overflow:hidden; }
.quiz-bar i { display:block; height:100%; width:33%; background:linear-gradient(90deg,var(--gold),var(--gold-light)); transition:width .35s ease; }
.quiz-q { font-family:'Fraunces',serif; font-weight:600; font-size:19px; color:var(--green); margin:0 0 16px; }
.quiz-nav { display:flex; justify-content:space-between; gap:12px; margin-top:26px; }
.quiz-pane[hidden]{ display:none; }
.quiz-done { text-align:center; padding: 16px 0; }
.quiz-check { width:64px;height:64px;border-radius:50%;background:var(--green);color:#fff;font-size:30px;line-height:64px;text-align:center;margin:0 auto 18px; }
.quiz-done p { color:var(--ink-soft); max-width:420px; margin:8px auto 0; }
@media (prefers-reduced-motion: reduce){ .lp-hero-bg{ animation:none; } }

video.lp-hero-bg { width: 100%; height: 100%; object-fit: cover; z-index: 0; }

/* ===== Адрес: подсказки (OSM) + карта ===== */
.addr-suggest { position:absolute; left:0; right:0; top:100%; z-index:20; background:#fff; border:1px solid var(--line); border-top:none; border-radius:0 0 10px 10px; max-height:230px; overflow:auto; box-shadow:0 8px 24px rgba(0,0,0,.12); }
.addr-suggest[hidden]{ display:none; }
.addr-opt { padding:9px 14px; font-size:14px; line-height:1.4; cursor:pointer; border-bottom:1px solid var(--line); color:var(--ink); }
.addr-opt:last-child{ border-bottom:none; }
.addr-opt:hover { background:var(--cream-light); }
.addr-map { margin-top:14px; }
.addr-map[hidden]{ display:none; }
.addr-map iframe { width:100%; height:220px; border:0; border-radius:12px; display:block; }

/* ===== Кликабельные карточки направлений (хаб) ===== */
.direction { position: relative; transition: transform .2s ease, box-shadow .2s ease; }
.direction:hover { transform: translateY(-3px); }
.dir-link { display:inline-block; margin-top:20px; color:var(--gold-warm); font-weight:600; text-decoration:none; font-size:15px; position:relative; z-index:2; }
.dir-link::after { content:''; position:absolute; inset:0; z-index:1; }
.direction:hover .dir-link { color: var(--gold); }
