:root {
  --ink: #120a0b;          /* тёплый почти-чёрный */
  --ink-2: #1b1012;
  --ruby: #a3202f;         /* рубин */
  --ruby-hot: #d1374a;     /* рубин для текста на тёмном */
  --cream: #f3ead8;
  --cream-dim: rgba(243, 234, 216, .68);
  --line: rgba(243, 234, 216, .18);
  --serif: "Cormorant Garamond", "Noto Serif Georgian", Georgia, serif;
  --serif-ka: "Noto Serif Georgian", "Cormorant Garamond", Georgia, serif;
  --sans: "Noto Sans Georgian", "Noto Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --gutter: 20px;
}

* { box-sizing: border-box; }
/* атрибут hidden всегда побеждает любые display у классов (иначе .agree{display:flex} и т.п. показывали «скрытое») */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--gutter);
  background: linear-gradient(to bottom, rgba(18, 10, 11, .92), rgba(18, 10, 11, .55));
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.brand { text-decoration: none; color: var(--cream); line-height: 1; }
.brand-main { display: block; font-family: var(--serif); font-weight: 600; font-size: 22px; letter-spacing: .14em; }
.brand-paren { color: var(--ruby-hot); }
.brand-sub { display: block; margin-top: 4px; font-size: 9px; letter-spacing: .42em; color: var(--cream-dim); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.lang { display: flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.lang button {
  font: 500 12px/1 var(--sans); letter-spacing: .06em;
  background: none; border: 0; color: var(--cream-dim); padding: 8px 11px; cursor: pointer;
}
.lang button[aria-pressed="true"] { background: var(--cream); color: var(--ink); }

.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  font: 600 15px/1 var(--sans); letter-spacing: .02em;
  color: var(--cream); background: var(--ruby);
  padding: 16px 26px; border-radius: 999px;
  transition: background .2s, transform .2s;
}
.btn:hover { background: var(--ruby-hot); transform: translateY(-1px); }
.btn-small { font-size: 13px; padding: 9px 16px; }
.nav .btn-small { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 96px var(--gutter) 40px;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; background: var(--ink); }
.hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 78% 30%, rgba(163, 32, 47, .34), transparent 70%),
    radial-gradient(70% 60% at 10% 100%, rgba(80, 20, 28, .55), transparent 70%);
}
.contours {
  position: absolute; inset: 0;
  background: var(--ruby);
  opacity: .5;
  -webkit-mask: url("assets/contours.svg") center / cover no-repeat;
          mask: url("assets/contours.svg") center / cover no-repeat;
}
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; opacity: .34; filter: saturate(.85); }
.hero-bg video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .42;
}
.hero-bg::after {          /* затемнение под текстом */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(18,10,11,.55), rgba(18,10,11,.15) 40%, rgba(18,10,11,.75));
}

.hero-inner { width: 100%; max-width: 1180px; margin: 0 auto; display: grid; gap: 28px; }

.statement { margin: 0; font-weight: 600; display: grid; gap: .06em; }
.statement .line {
  display: block;
  font-family: var(--serif-ka);
  font-size: clamp(26px, 6.4vw, 54px);
  line-height: 1.22;
  letter-spacing: -.005em;
}
html[data-lang="en"] .statement .line,
html[data-lang="ru"] .statement .line { font-family: var(--serif); font-weight: 600; font-size: clamp(40px, 11vw, 96px); line-height: 1.02; }
.statement .line-accent {
  color: var(--ruby-hot);
  font-size: clamp(44px, 12.5vw, 104px);
  line-height: 1.1;
  display: inline-block; position: relative; width: fit-content;
}
html[data-lang="en"] .statement .line-accent,
html[data-lang="ru"] .statement .line-accent { font-size: clamp(40px, 11vw, 96px); font-style: italic; }
.statement .line-accent::after {         /* подчёркивание — «ცოტას» точка всей фразы */
  content: ""; position: absolute; left: 0; right: 0; bottom: -.04em; height: 3px;
  background: var(--ruby-hot); border-radius: 2px; transform-origin: left; transform: scaleX(0);
  animation: underline 1s .9s cubic-bezier(.2, .7, .2, 1) forwards;
}
@keyframes underline { to { transform: scaleX(1); } }

.statement-sub {
  margin: 0; color: var(--cream-dim);
  font: 500 clamp(15px, 3.8vw, 20px)/1.5 var(--serif); letter-spacing: .01em;
}

/* ---------- counter ---------- */
.counter {
  width: 100%; max-width: 420px;
  padding: 20px 22px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(27, 16, 18, .62);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.counter-label { font: 600 13px/1 var(--sans); letter-spacing: .12em; color: var(--ruby-hot); text-transform: uppercase; }
.counter-row { display: flex; align-items: baseline; gap: 12px; margin-top: 10px; flex-wrap: wrap; }
.counter-num {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(56px, 16vw, 92px); line-height: .95;
  font-variant-numeric: lining-nums tabular-nums;
}
.counter-unit { font: 500 clamp(18px, 4.6vw, 24px)/1 var(--serif-ka); color: var(--cream-dim); }
.bar { height: 6px; margin-top: 16px; border-radius: 99px; background: var(--line); overflow: hidden; }
.bar-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--ruby), var(--ruby-hot)); border-radius: 99px; transition: width 1.6s cubic-bezier(.2, .7, .2, 1); }
.counter-meta { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 10px; font: 400 12px/1.4 var(--sans); color: var(--cream-dim); }

.hero-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-place { font: 500 12px/1 var(--sans); letter-spacing: .3em; text-transform: uppercase; color: var(--cream-dim); }

/* ---------- desktop ---------- */
@media (min-width: 900px) {
  :root { --gutter: 48px; }
  .nav .btn-small { display: inline-block; }
  .brand-main { font-size: 26px; }
  .hero-inner {
    grid-template-columns: 1.75fr 1fr;
    grid-template-areas: "st ct" "sb ct" "cta cta";
    align-items: center; column-gap: 56px; row-gap: 22px;
  }
  .statement { grid-area: st; }
  .statement-sub { grid-area: sb; }
  .counter { grid-area: ct; justify-self: end; max-width: 400px; }
  .hero-cta { grid-area: cta; margin-top: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bar-fill { transition: none; }
  .statement .line-accent::after { animation: none; transform: none; }
}


/* ---------- nav links ---------- */
.nav-links { display: none; gap: 26px; }
.nav-links a { color: var(--cream-dim); text-decoration: none; font: 500 13px/1 var(--sans); letter-spacing: .04em; transition: color .2s; }
.nav-links a:hover { color: var(--cream); }

/* ---------- content blocks ---------- */
.block { position: relative; padding: 76px var(--gutter); overflow: hidden; }
.block-alt { background: var(--ink-2); }
.wrap { position: relative; width: 100%; max-width: 1180px; margin: 0 auto; }
.wrap.narrow { max-width: 760px; }
.wrap.two { display: grid; gap: 40px; align-items: center; }

.eyebrow { margin: 0 0 14px; font: 600 12px/1 var(--sans); letter-spacing: .28em; text-transform: uppercase; color: var(--ruby-hot); }
.block h2 {
  margin: 0 0 22px; font-family: var(--serif-ka); font-weight: 600;
  font-size: clamp(28px, 6.4vw, 46px); line-height: 1.2; text-wrap: balance;
}
html[data-lang="en"] .block h2, html[data-lang="ru"] .block h2 { font-family: var(--serif); font-size: clamp(34px, 8vw, 58px); line-height: 1.05; }
.lead { margin: 0 0 18px; font-size: clamp(16px, 4vw, 18px); line-height: 1.75; color: var(--cream-dim); }
.source { margin: 26px 0 0; font-size: 12.5px; line-height: 1.6; color: rgba(243, 234, 216, .5); }
.source a, .time a { color: var(--cream-dim); text-underline-offset: 3px; }

/* bottle */
.bottle { margin: 0; justify-self: center; text-align: center; }
.bottle-frame {
  position: relative; width: min(340px, 78vw); margin: 0 auto;
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(209, 55, 74, .55), 0 0 0 1px var(--line);
}
.bottle-frame img { display: block; width: 100%; height: auto; }
.bottle figcaption { margin-top: 16px; font: 500 12px/1.4 var(--sans); letter-spacing: .12em; color: var(--cream-dim); }
.facts { margin: 0; display: grid; }
.facts > div { display: grid; grid-template-columns: 8.5rem 1fr; gap: 16px; padding: 15px 0; border-top: 1px solid var(--line); }
.facts > div:last-child { border-bottom: 1px solid var(--line); }
.facts dt { font: 500 12px/1.6 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--cream-dim); }
.facts dd { margin: 0; font-family: var(--serif-ka); font-size: 18px; line-height: 1.5; }
html[data-lang="en"] .facts dd, html[data-lang="ru"] .facts dd { font-family: var(--serif); font-size: 21px; }

/* grape varieties */
.varieties { list-style: none; margin: 34px 0 0; padding: 0; display: grid; gap: 14px; }
.varieties li { border: 1px solid var(--line); border-radius: 16px; background: rgba(163, 32, 47, .08); transition: border-color .2s, background .2s, transform .2s; }
.varieties li:hover { border-color: var(--ruby-hot); background: rgba(163, 32, 47, .16); transform: translateY(-2px); }
.v-card { display: block; padding: 20px 22px; color: inherit; text-decoration: none; }
.v-name { display: block; font-family: var(--serif-ka); font-weight: 600; font-size: 24px; color: var(--cream); }
html[data-lang="en"] .v-name, html[data-lang="ru"] .v-name { font-family: var(--serif); font-size: 28px; }
.v-note { display: block; margin-top: 6px; font-size: 14px; color: var(--cream-dim); }

/* timeline */
.timeline { list-style: none; margin: 34px 0 0; padding: 0; }
.timeline li { position: relative; display: grid; grid-template-columns: 4.8rem 1fr; column-gap: 22px; padding: 0 0 26px; }
.timeline li::before {           /* вертикальная линия */
  content: ""; position: absolute; left: calc(4.8rem + 11px); top: 12px; bottom: -12px; width: 1px; background: var(--line);
}
.timeline li:last-child::before { display: none; }
.timeline li::after {            /* точка */
  content: ""; position: absolute; left: calc(4.8rem + 7px); top: 9px; width: 9px; height: 9px; border-radius: 50%; background: var(--ruby-hot);
}
.t-year { font-family: var(--serif); font-weight: 600; font-size: 26px; line-height: 1.05; text-align: right; color: var(--cream); }
.timeline p { margin: 0; padding-left: 26px; font-size: 16px; line-height: 1.6; color: var(--cream-dim); }
.t-now .t-year { color: var(--ruby-hot); font-size: 20px; padding-top: 4px; }
.t-now p { color: var(--cream); }

/* microclimate */
.block-contours .contours-soft { position: absolute; inset: 0; opacity: .16; }

/* ---------- плывущий контур винограда (grapefloat.js): золотая линия поверх линий рельефа, под текстом ---------- */
.grape-float { position: absolute; z-index: 0; pointer-events: none; will-change: transform; }
.grape-float img { display: block; width: 100%; height: auto; opacity: .2; transform-origin: 66% 14%; animation: grape-sway 13s ease-in-out infinite alternate; }
.grape-float.still img { animation: none; }
@keyframes grape-sway { from { transform: rotate(-2.4deg) translateY(-6px); } to { transform: rotate(2.4deg) translateY(8px); } }
.g-hero { right: -9%; top: 6%; width: min(52vw, 560px); }
.g-hero img { opacity: .26; }
.g-clim { right: -150px; top: 14%; width: 470px; }
.g-clim2 { left: -130px; top: 60%; width: 330px; }
.g-clim2 img { scale: -1 1; opacity: .16; animation-duration: 17s; animation-direction: alternate-reverse; }
@media (max-width: 720px) {
  .g-hero { right: -16%; top: auto; bottom: -4%; width: 72vw; }
  .g-hero img { opacity: .44; }
  .g-clim { right: -120px; top: 10%; width: 310px; }
  .g-clim img { opacity: .13; }
  .g-clim2 { left: -110px; top: 66%; width: 240px; }
  .g-clim2 img { opacity: .11; }
}
.stats { list-style: none; margin: 34px 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stats li { padding: 18px 16px; border: 1px solid var(--line); border-radius: 14px; background: rgba(18, 10, 11, .55); display: grid; gap: 8px; align-content: start; }
.stats b { font-family: var(--serif); font-weight: 600; font-size: clamp(24px, 6vw, 34px); line-height: 1.05; }
.stats span { font-size: 13px; line-height: 1.45; color: var(--cream-dim); }
.time { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); }
.time .eyebrow { margin-bottom: 10px; }
.time p:not(.eyebrow) { margin: 0 0 8px; font-size: 14.5px; line-height: 1.6; color: var(--cream-dim); }

/* заглушка секции заказа */
.stub { padding: 30px 26px; border: 1px dashed var(--line); border-radius: 16px; color: var(--cream-dim); font-size: 15px; line-height: 1.6; }

/* footer */
.foot { padding: 30px var(--gutter) 40px; border-top: 1px solid var(--line); font: 400 12.5px/1.6 var(--sans); color: var(--cream-dim); }
.foot-in { display: flex; flex-wrap: wrap; gap: 8px 26px; justify-content: space-between; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .block { padding: 110px var(--gutter); }
  .wrap.two { grid-template-columns: .9fr 1.1fr; gap: 80px; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .varieties { grid-template-columns: 1fr 1fr; }
}

/* photos */
.photo { margin: 0; border-radius: 18px; overflow: hidden; box-shadow: 0 30px 80px -40px rgba(0, 0, 0, .8), 0 0 0 1px var(--line); }
.photo img { display: block; width: 100%; height: auto; }
.photo-wide { margin: 34px 0; }
.photo-tall { max-width: 520px; justify-self: center; }

/* ---------- origin / map / villages ---------- */
.block h3.sub { margin: 34px 0 14px; font: 600 13px/1.4 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--cream-dim); }
.map { margin: 30px 0 0; border-radius: 18px; overflow: hidden; box-shadow: 0 0 0 1px var(--line); }
.vmap { height: 340px; background: var(--ink-2); font-family: var(--sans); }
.vmap .leaflet-tile-pane { filter: invert(.92) hue-rotate(180deg) saturate(.6) brightness(.9); }
.vmap .leaflet-bar a { background: var(--ink-2); color: var(--cream); border-color: var(--line); }
.vmap .leaflet-bar a:hover { background: var(--ink); }
.vmap .leaflet-control-attribution { background: rgba(18, 10, 11, .78); color: var(--cream-dim); }
.vmap .leaflet-control-attribution a { color: var(--cream); }
.vy-pin span { display: block; width: 18px; height: 18px; margin: 4px; border-radius: 50%; background: var(--ruby-hot); border: 2px solid var(--cream); box-shadow: 0 0 0 7px rgba(209, 55, 74, .28); }
.leaflet-tooltip.vy-tip { padding: 5px 10px; background: var(--ink); border: 1px solid var(--line); border-radius: 999px; box-shadow: none; color: var(--cream); font: 600 12px/1.3 var(--sans); }
.leaflet-tooltip-top.vy-tip::before { display: none; }
.vmap-off { display: none; }
.vmap-fallback { display: none; }
.map:has(.vmap-off) .vmap-fallback { display: inline; }
.map figcaption { padding: 12px 16px; background: var(--ink-2); font-size: 12.5px; line-height: 1.6; color: var(--cream-dim); }
.map figcaption a { color: var(--cream); margin-left: 8px; white-space: nowrap; }
.story-note { margin: 26px 0 0; padding: 4px 0 4px 18px; border-left: 2px solid var(--ruby-hot); font-size: 15px; line-height: 1.75; color: var(--cream-dim); }
/* ---------- five months / lot check / order form ---------- */
.lead.lim { max-width: 760px; }
.cycle-bar { position: relative; height: 2px; margin: 34px 0 10px; background: linear-gradient(90deg, var(--ruby-hot), rgba(209, 55, 74, .22)); }
.cycle-bar::before, .cycle-bar::after { content: ""; position: absolute; top: -5px; width: 12px; height: 12px; border-radius: 50%; background: var(--ruby-hot); }
.cycle-bar::before { left: 0; }
.cycle-bar::after { right: 0; background: var(--ink); border: 2px solid var(--ruby-hot); }
.cycle-labels { display: flex; justify-content: space-between; margin-bottom: 28px; font: 600 12px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--cream-dim); }
.cycle { counter-reset: c; list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.cycle li { counter-increment: c; position: relative; padding: 18px 20px 18px 66px; border: 1px solid var(--line); border-radius: 14px; background: rgba(163, 32, 47, .07); }
.cycle li::before { content: counter(c); position: absolute; left: 18px; top: 17px; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--ruby); font: 600 14px/1 var(--sans); }
.cycle b { display: block; margin-bottom: 5px; font: 600 18px/1.3 var(--serif-ka); }
.cycle p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--cream-dim); }
@media (min-width: 900px) {
  .cycle { grid-template-columns: repeat(5, 1fr); gap: 14px; }
  .cycle li { padding: 66px 16px 20px; }
  .cycle li::before { left: 16px; top: 18px; }
}
.lotform label { display: block; margin: 26px 0 9px; font: 600 12px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--cream-dim); }
.lotrow { display: flex; flex-wrap: wrap; gap: 10px; }
.lotrow input, .fld input, .fld textarea { min-width: 0; width: 100%; padding: 15px 18px; border: 1px solid var(--line); border-radius: 12px; background: var(--ink-2); color: var(--cream); font: 500 16px/1.4 var(--sans); }
.lotrow input { flex: 1 1 220px; width: auto; text-transform: uppercase; letter-spacing: .06em; }
.lotrow input::placeholder, .fld input::placeholder { text-transform: none; letter-spacing: 0; color: rgba(243, 234, 216, .35); }
.lotrow input:focus, .fld input:focus, .fld textarea:focus { outline: none; border-color: var(--ruby-hot); box-shadow: 0 0 0 3px rgba(209, 55, 74, .25); }
.lotres { margin-top: 18px; }
.lot-card { padding: 20px 22px; border: 1px solid var(--ruby); border-radius: 16px; background: rgba(163, 32, 47, .1); }
.lot-card h3 { margin: 0 0 14px; font: 600 18px/1.3 var(--serif-ka); }
.lot-card dl { display: grid; grid-template-columns: max-content 1fr; gap: 7px 20px; margin: 0; font-size: 15px; }
.lot-card dt { color: var(--cream-dim); }
.lot-card dd { margin: 0; }
.lot-msg { margin: 0; padding: 14px 18px; border: 1px dashed var(--line); border-radius: 12px; color: var(--cream-dim); }
.lot-ex { margin: 14px 0 0; font-size: 12.5px; color: var(--ruby-hot); }
.orderform { display: grid; gap: 16px; margin-top: 26px; }
.fld-row { display: grid; gap: 16px; }
@media (min-width: 640px) { .fld-row { grid-template-columns: 1fr 1fr; } }
.fld { display: grid; gap: 8px; }
.fld > span { font: 600 12px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--cream-dim); }
.fld textarea { resize: vertical; }
.agree { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; line-height: 1.5; color: var(--cream-dim); }
.agree input { flex: none; margin-top: 3px; accent-color: var(--ruby); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-msg { margin: 0; padding: 12px 16px; border-radius: 12px; font-size: 14px; line-height: 1.55; }
.form-msg.ok { border: 1px solid #3f8f5f; color: #93d8ac; }
.form-msg.err { border: 1px dashed var(--ruby-hot); color: var(--ruby-hot); }
.form-msg.wait { border: 1px dashed var(--line); color: var(--cream-dim); }
.form-msg[hidden] { display: none; }
.fld > .idrow { display: flex; gap: 8px; align-items: stretch; font: inherit; letter-spacing: 0; text-transform: none; color: inherit; }
.idrow input { flex: 1 1 auto; }
.idrow .btn { flex: 0 0 auto; white-space: nowrap; }
.idrow .btn:disabled { opacity: .55; cursor: progress; }
.wa-or { margin: 26px 0 12px; font-size: 14px; color: var(--cream-dim); }
.btn-wa { display: inline-flex; align-items: center; gap: 10px; background: #25d366; color: #06281a; }
.btn-wa:hover { background: #3be07b; }
.wa-ico { flex: none; width: 24px; height: 24px; }
.btn-wa .wa-bub { fill: #06281a; }
.btn-wa .wa-tel, .soc-wa .wa-tel { fill: #25d366; }
.socials { display: flex; gap: 12px; margin-top: 26px; }
.soc { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; color: var(--cream); transition: border-color .2s, transform .2s; }
.soc:hover { border-color: var(--cream); transform: translateY(-2px); }
.soc svg { width: 24px; height: 24px; }
.soc-wa { background: #25d366; border-color: #25d366; }
.soc-wa .wa-bub { fill: #06281a; }
.promo { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 14px; padding: 16px var(--gutter); background: linear-gradient(90deg, var(--ruby), #6d1420); color: var(--cream); text-align: center; text-decoration: none; font: 500 15px/1.5 var(--sans); }
.promo b { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.rest-card { padding: 34px 28px; border: 1px solid var(--ruby); border-radius: 20px; background: rgba(163, 32, 47, .08); }
.rest-list { list-style: none; margin: 26px 0 28px; padding: 0; display: grid; gap: 12px; }
.rest-list li { display: grid; gap: 4px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 14px; background: rgba(18, 10, 11, .5); }
.rest-list b { font: 600 17px/1.35 var(--serif-ka); }
.rest-list span { font-size: 14.5px; line-height: 1.6; color: var(--cream-dim); }
.qr-block { display: grid; gap: 22px; align-items: center; margin: 0 0 28px; }
.qr-block h3.sub { margin-top: 0; }
.qr-shot { margin: 0; width: 100%; max-width: 230px; justify-self: center; }
.qr-shot img { display: block; width: 100%; height: auto; border: 7px solid #2b1a1d; border-radius: 30px; box-shadow: 0 0 0 1px var(--line); }
.qr-shot figcaption { margin-top: 8px; font-size: 12px; text-align: center; color: var(--cream-dim); }
.qr-shot.empty { display: grid; place-items: center; min-height: 320px; padding: 16px; border: 1px dashed var(--line); border-radius: 30px; background: rgba(243, 234, 216, .04); }
.qr-shot.empty img { display: none; }
.qr-shot.empty figcaption { margin: 0; font-size: 13px; }
.qr-feats { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.qr-feats li { position: relative; padding-left: 22px; font-size: 15px; line-height: 1.6; color: var(--cream); }
.qr-feats li::before { content: ""; position: absolute; left: 0; top: .6em; width: 9px; height: 9px; border-radius: 50%; background: var(--ruby-hot); }
@media (min-width: 720px) { .qr-block { grid-template-columns: 230px 1fr; gap: 34px; } .qr-shot { justify-self: start; } }
.vy-draft { margin: 12px 0 0; padding: 8px 14px; border: 1px dashed var(--ruby-hot); border-radius: 12px; font-size: 12.5px; line-height: 1.55; color: var(--ruby-hot); }
.tour { margin-top: 26px; }
.tour iframe { display: block; width: 100%; height: 340px; border: 0; border-radius: 18px; box-shadow: 0 0 0 1px var(--line); background: var(--ink-2); }
.tour-open { display: inline-block; margin-top: 10px; font-size: 13px; color: var(--cream-dim); text-underline-offset: 3px; }
.tour-ph { display: grid; place-items: center; min-height: 190px; padding: 24px; border: 1px dashed var(--line); border-radius: 18px; background: rgba(243, 234, 216, .04); color: var(--cream-dim); font-size: 14px; text-align: center; }
.villages { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.village { padding: 7px 13px; border: 1px solid var(--line); border-radius: 999px; font-size: 13.5px; color: var(--cream-dim); }
.village.here { background: var(--ruby); border-color: var(--ruby); color: var(--cream); font-weight: 600; }
.legend-note { display: flex; align-items: center; gap: 10px; margin: 0 0 26px; font-size: 13px; color: var(--cream-dim); }
.legend-note .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--ruby); flex: none; }

/* ---------- where to buy ---------- */
.buy-grid { display: grid; gap: 34px; margin-top: 12px; }
.venues { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.venue { position: relative; display: grid; gap: 4px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 14px; background: rgba(163, 32, 47, .07); }
.v-city { font: 600 11px/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--ruby-hot); }
.v-name2 { font: 600 18px/1.3 var(--serif-ka); }
.v-addr { font-size: 15px; line-height: 1.5; color: var(--cream); }
.v-map { justify-self: start; margin-top: 4px; font-size: 13px; color: var(--cream-dim); text-underline-offset: 3px; }
.v-flag { position: absolute; top: 14px; right: 14px; padding: 3px 9px; border: 1px dashed var(--ruby-hot); border-radius: 999px; font-style: normal; font-size: 11px; color: var(--ruby-hot); }
.online { display: inline-block; margin-top: 18px; font-size: 14px; color: var(--cream); text-underline-offset: 3px; }
@media (min-width: 900px) { .buy-grid { grid-template-columns: 1fr 1fr; gap: 56px; } .vmap { height: 420px; } .tour iframe { height: 420px; } }

/* ---------- sources page ---------- */
.page-top { padding-top: 40px; }
.back { display: inline-block; margin-bottom: 30px; font-size: 13px; color: var(--cream-dim); text-underline-offset: 3px; }
.sources { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.sources li { padding: 18px 20px; border: 1px solid var(--line); border-radius: 14px; }
.sources cite { display: block; font-style: normal; font: 500 15.5px/1.55 var(--sans); color: var(--cream); }
.sources a { display: inline-block; margin-top: 8px; font-size: 13px; color: var(--ruby-hot); text-underline-offset: 3px; }
.sources p { margin: 8px 0 0; font-size: 13.5px; line-height: 1.6; color: var(--cream-dim); }
.foot a { color: var(--cream-dim); }

/* кнопка «Узнать больше» на карточке сорта */
.v-more { display: inline-block; margin-top: 14px; font: 600 13px/1 var(--sans); letter-spacing: .04em; color: var(--ruby-hot); }
.v-more::after { content: " →"; }

/* страница сортов */
.jump { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.jump a { display: inline-block; padding: 10px 18px; border: 1px solid var(--line); border-radius: 999px; color: var(--cream); text-decoration: none; font: 500 14px/1 var(--sans); }
.jump a:hover { border-color: var(--ruby-hot); background: rgba(163, 32, 47, .16); }
.facts dd { font-size: 16px; }
html[data-lang="en"] .facts dd, html[data-lang="ru"] .facts dd { font-size: 18px; }
.facts.wide > div { grid-template-columns: 1fr; gap: 4px; }
.role { margin: 30px 0 0; padding: 20px 22px; border-left: 3px solid var(--ruby-hot); background: rgba(163, 32, 47, .08); border-radius: 0 14px 14px 0; }
.role > span { font: 600 11px/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--ruby-hot); }
.role p { margin: 10px 0 0; font-size: 16px; line-height: 1.7; color: var(--cream); }
#aleksandrouli, #mujuretuli { scroll-margin-top: 20px; }
@media (max-width: 640px) { .facts > div { grid-template-columns: 1fr; gap: 4px; } }

/* ---------- shop / b2b (demo) ---------- */
.deliv { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 6px; padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px; font: 600 13px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--cream); }
.deliv-dot { width: 9px; height: 9px; border-radius: 50%; background: #25d366; box-shadow: 0 0 0 4px rgba(37, 211, 102, .22); }
.shop-grid { display: grid; gap: 16px; margin-top: 26px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .shop-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .shop-grid { grid-template-columns: repeat(5, 1fr); } }
.shop-card { display: flex; flex-direction: column; gap: 6px; padding: 14px 14px 16px; border: 1px solid var(--line); border-radius: 18px; background: rgba(18, 10, 11, .55); }
.shop-pic { position: relative; border-radius: 12px; overflow: hidden; background: var(--ink-2); }
.shop-pic img { display: block; width: 100%; height: auto; }
.demo-badge { position: absolute; top: 8px; left: 8px; padding: 3px 9px; border: 1px dashed var(--ruby-hot); border-radius: 999px; background: rgba(18, 10, 11, .8); font: 600 10px/1.4 var(--sans); letter-spacing: .14em; color: var(--ruby-hot); }
.shop-notincl { margin: 4px 0 0; font: 600 12.5px/1.4 var(--sans); color: var(--cream); }
.shop-serving { margin: 2px 0 0; font-size: 11.5px; line-height: 1.4; font-style: italic; color: rgba(243, 234, 216, .5); }
.shop-card h3 { margin: 8px 0 0; font: 600 17px/1.3 var(--serif-ka); }
.shop-desc { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--cream-dim); }
.shop-unit { margin: 0; font-size: 12.5px; color: rgba(243, 234, 216, .5); }
.shop-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 10px; }
.shop-price { font: 600 20px/1 var(--serif-ka); }
.steps3 { list-style: none; margin: 24px 0 8px; padding: 0; display: grid; gap: 12px; }
.steps3 li { display: grid; gap: 4px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 14px; background: rgba(163, 32, 47, .07); }
.steps3 b { font: 600 17px/1.35 var(--serif-ka); }
.steps3 span { font-size: 14.5px; line-height: 1.6; color: var(--cream-dim); }
.b2b-demo { margin-top: 34px; padding: 22px 22px 26px; border: 1px dashed var(--ruby-hot); border-radius: 18px; }
.b2b-demo[hidden] { display: none; }
.b2b-demo .lotrow-form { display: grid; gap: 14px; margin-top: 6px; }
.corp-table { width: 100%; margin-top: 8px; border-collapse: collapse; font-size: 14.5px; }
.corp-table th { padding: 8px 10px; text-align: left; font: 600 11px/1.2 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--cream-dim); border-bottom: 1px solid var(--line); }
.corp-table td { padding: 12px 10px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.corp-table .num { white-space: nowrap; color: var(--cream-dim); }
.corp-table .corp { color: var(--cream); font-weight: 600; }
@media (max-width: 640px) { .corp-table th:nth-child(2), .corp-table td:nth-child(2) { display: none; } }

/* ---------- онлайн-заказ: липкая плашка + оформление ---------- */
.btn-ghost { background: transparent; border: 1px solid var(--line); color: var(--cream); }
.btn-ghost:hover { background: rgba(243, 234, 216, .08); }
.order-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: flex; align-items: center; justify-content: center; gap: 16px; padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom)); background: rgba(18, 10, 11, .94); border-top: 1px solid var(--ruby); backdrop-filter: blur(8px); }
.order-bar[hidden] { display: none; }
.ob-text { margin: 0; font-size: 14px; line-height: 1.4; color: var(--cream-dim); }
.ob-text b { color: var(--cream); font: 600 16px/1.3 var(--serif-ka); }
.order-bar .btn { flex: none; }
body.has-bar { padding-bottom: 76px; }
.ob-text span { display: block; }
.order-bar .btn { padding: 12px 22px; font-size: 14px; }
@media (min-width: 521px) { .ob-text span { display: inline; } .ob-text span::before { content: " · "; } }
.co { position: fixed; inset: 0; z-index: 60; display: grid; place-items: center; padding: 12px; }
.co[hidden] { display: none; }
body.co-open { overflow: hidden; }
.co-back { position: absolute; inset: 0; background: rgba(0, 0, 0, .72); }
.co-panel { position: relative; width: min(1040px, 100%); max-height: calc(100vh - 24px); display: grid; grid-template-columns: 330px minmax(0, 1fr); overflow: hidden; padding: 0; border: 1px solid var(--line); border-radius: 20px; background: var(--ink); }
.co-main { min-width: 0; max-height: calc(100vh - 26px); overflow-y: auto; padding: 26px 24px 24px; }
.co-panel h2 { margin: 0 34px 12px 0; font: 600 26px/1.2 var(--serif-ka); }
.co-x { position: absolute; top: 12px; right: 14px; width: 38px; height: 38px; border: 0; border-radius: 50%; background: transparent; color: var(--cream); font-size: 28px; line-height: 1; cursor: pointer; }
.co-x:hover { background: rgba(243, 234, 216, .1); }
.co-steps { display: flex; gap: 8px; margin: 14px 0 20px; padding: 0; list-style: none; counter-reset: s; }
.co-steps[hidden] { display: none; }
.co-steps li { flex: 1; counter-increment: s; padding-top: 10px; border-top: 3px solid var(--line); font: 600 12px/1.3 var(--sans); letter-spacing: .1em; text-transform: uppercase; color: rgba(243, 234, 216, .45); }
.co-steps li::before { content: counter(s) ". "; }
.co-steps li.on { border-color: var(--ruby-hot); color: var(--cream); }
.co-steps li.done { border-color: var(--ruby); color: var(--cream-dim); }
.co-view { display: grid; gap: 16px; }
.co-view[hidden] { display: none; }
.co-items { display: grid; gap: 10px; }
.co-item { display: grid; grid-template-columns: 58px minmax(0, 1fr) auto; align-items: center; gap: 12px; padding: 10px 14px 10px 10px; border: 1px solid var(--line); border-radius: 14px; }
.co-thumb { width: 58px; height: 58px; border-radius: 10px; object-fit: cover; background: var(--ink-2); }
.co-info { display: grid; gap: 3px; min-width: 0; }
.co-info b { font: 600 15px/1.3 var(--serif-ka); }
.co-unit { font-size: 12.5px; color: var(--cream-dim); }
.co-price { justify-self: start; font: 600 14px/1.2 var(--sans); color: var(--cream); }
/* вино — главный товар: крупнее и с рубиновой рамкой */
.co-wine { grid-template-columns: 116px minmax(0, 1fr) auto; padding: 14px 16px 14px 14px; border-color: var(--ruby-hot); background: rgba(163, 32, 47, .12); box-shadow: 0 0 0 1px rgba(163, 32, 47, .35), 0 10px 30px rgba(163, 32, 47, .18); }
.co-wine .co-thumb { width: 116px; height: 116px; border-radius: 14px; }
.co-wine .co-info b { font-size: 19px; }
.co-wine .co-price { font-size: 22px; font-family: var(--serif-ka); }
.co-stepper { display: flex; align-items: center; gap: 4px; flex: none; }
.co-q { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--cream); font-size: 20px; line-height: 1; cursor: pointer; }
.co-q:hover { border-color: var(--cream); }
.co-qv { min-width: 30px; text-align: center; font: 600 17px/1 var(--serif-ka); }
.co-total { display: flex; align-items: center; gap: 12px; margin: 0; padding-top: 12px; border-top: 1px solid var(--line); font-size: 15px; color: var(--cream-dim); }
.co-total-l { flex: 1; }
.co-cart { position: relative; display: inline-grid; place-items: center; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; color: var(--cream); }
.co-cart i { position: absolute; top: -5px; right: -5px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px; background: var(--ruby-hot); color: #fff; font: 700 12px/20px var(--sans); font-style: normal; text-align: center; }
.co-cart.bump { animation: co-bump .45s ease; }
@keyframes co-bump { 0% { transform: scale(1); } 35% { transform: scale(1.22); border-color: var(--ruby-hot); } 100% { transform: scale(1); } }
.co-drop { position: fixed; z-index: 70; width: 14px; height: 18px; pointer-events: none; border-radius: 50% 50% 50% 50% / 62% 62% 38% 38%; }
.co-drop-wine { background: radial-gradient(circle at 35% 30%, #ff7a8a, #a3202f 60%, #5a0f1a); box-shadow: 0 0 10px rgba(163, 32, 47, .8); }
.co-drop-gold { background: radial-gradient(circle at 35% 30%, #ffe8a3, #e2a93a 60%, #8a5a10); box-shadow: 0 0 10px rgba(226, 169, 58, .8); }

/* ИИ-ассистент слева в окне заказа */
.co-nodari { display: flex; flex-direction: column; gap: 10px; min-height: 0; padding: 18px 16px 14px; border-right: 1px solid var(--line); background: linear-gradient(180deg, rgba(163, 32, 47, .10), rgba(18, 10, 11, 0) 70%); }
.nd-head { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.nd-ava { width: 84px; height: 84px; flex: none; border-radius: 50%; box-shadow: 0 0 0 3px rgba(226, 169, 58, .6), 0 10px 26px rgba(0, 0, 0, .55); }
.nd-who { display: grid; gap: 2px; min-width: 0; }
.nd-who b { font: 600 22px/1.2 var(--serif-ka); }
/* кнопка «Спросить ассистента» — только на телефоне, где ассистент стоит под заказом */
.nd-ask { display: none; }
.nd-who span { font-size: 12px; line-height: 1.35; color: var(--cream-dim); }
.nd-log { flex: 1; min-height: 120px; overflow-y: auto; display: grid; align-content: start; gap: 8px; padding-right: 2px; }
.nd-msg { max-width: 92%; padding: 9px 12px; border-radius: 14px; font-size: 13.5px; line-height: 1.5; }
.nd-msg p { margin: 0; white-space: pre-wrap; }
.nd-bot { justify-self: start; border-top-left-radius: 4px; background: rgba(243, 234, 216, .09); }
.nd-me { justify-self: end; border-top-right-radius: 4px; background: rgba(163, 32, 47, .55); }
.nd-typing p { opacity: .65; animation: nd-blink 1.1s ease-in-out infinite; }
@keyframes nd-blink { 50% { opacity: .25; } }
@keyframes nd-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(226, 169, 58, 0); } 50% { box-shadow: 0 0 0 5px rgba(226, 169, 58, .35); } }
.nd-adds { display: grid; gap: 6px; margin-top: 8px; }
.nd-add { padding: 7px 10px; border: 1px solid var(--ruby-hot); border-radius: 999px; background: transparent; color: var(--cream); font: 600 12.5px/1.3 var(--sans); text-align: left; cursor: pointer; }
.nd-add:hover:not(:disabled) { background: rgba(163, 32, 47, .3); }
.nd-add:disabled { opacity: .6; cursor: default; }
.nd-wa { display: inline-block; margin-top: 6px; color: #25d366; font-weight: 600; text-decoration: none; }
.nd-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.nd-chip { padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--cream-dim); font: 500 12px/1.3 var(--sans); cursor: pointer; }
.nd-chip:hover { color: var(--cream); border-color: var(--cream-dim); }
.nd-form { display: flex; gap: 6px; }
.nd-form input { flex: 1; min-width: 0; padding: 10px 12px; border: 1px solid var(--line); border-radius: 12px; background: var(--ink-2); color: var(--cream); font: 500 14px/1.3 var(--sans); }
.nd-send { flex: none; width: 42px; border: 0; border-radius: 12px; background: var(--ruby); color: #fff; font-size: 15px; cursor: pointer; }
.nd-send:disabled { opacity: .5; cursor: default; }
.nd-foot { margin: 0; font-size: 11px; line-height: 1.4; color: rgba(243, 234, 216, .45); }
@media (max-width: 820px) {
  .co-panel { grid-template-columns: 1fr; overflow-y: auto; }
  .co-main { max-height: none; overflow: visible; padding: 18px 16px 22px; }
  .co-main { order: 1; }
  .co-nodari { order: 2; border-right: 0; border-top: 1px solid var(--line); padding: 18px 14px 16px; scroll-margin-top: 8px; }
  .nd-head { flex-direction: row; text-align: left; gap: 14px; }
  .nd-ava { width: 68px; height: 68px; }
  .nd-who b { font-size: 24px; }
  .nd-log { flex: none; min-height: 0; max-height: 42vh; }
  .nd-ask { display: flex; align-items: center; gap: 10px; width: 100%; margin: 0 0 14px; padding: 6px 14px 6px 6px; border: 1px solid var(--ruby-hot); border-radius: 999px; background: rgba(163, 32, 47, .16); color: var(--cream); font: 600 15px/1.2 var(--sans); text-align: left; cursor: pointer; }
  .nd-ask img { width: 40px; height: 40px; flex: none; border-radius: 50%; box-shadow: 0 0 0 2px rgba(226, 169, 58, .55); }
  .nd-ask span { flex: 1; }
  .nd-ask i { font-style: normal; font-size: 18px; color: var(--ruby-hot); }
  .nd-ask.new { animation: nd-pulse 1.4s ease-in-out infinite; }
  .co-wine { grid-template-columns: 92px minmax(0, 1fr) auto; }
  .co-wine .co-thumb { width: 92px; height: 92px; }
}
@media (max-width: 480px) {
  .co-item { grid-template-columns: 48px minmax(0, 1fr) auto; }
  .co-thumb { width: 48px; height: 48px; }
  .co-wine { grid-template-columns: 76px minmax(0, 1fr); }
  .co-wine .co-thumb { width: 76px; height: 76px; }
  .co-wine .co-stepper { grid-column: 1 / -1; justify-content: flex-end; }
}
.co-total b { font: 600 24px/1 var(--serif-ka); color: var(--cream); }
.co-nav { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }
.co-when, .co-pay { display: grid; gap: 10px; margin: 0; padding: 0; border: 0; min-width: 0; }
.co-when legend, .co-pay legend { padding: 0; margin-bottom: 8px; font: 600 12px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--cream-dim); }
.co-when input[type="datetime-local"] { padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--ink-2); color: var(--cream); font: 500 15px/1.4 var(--sans); color-scheme: dark; }
.co-when input[hidden] { display: none; }
.co-lines { margin: 0 0 8px; padding-left: 18px; font-size: 14.5px; line-height: 1.7; }
.co-to { margin: 10px 0 0; font-size: 13.5px; color: var(--cream-dim); }
.co-bank { padding: 16px 18px; border: 1px dashed var(--ruby-hot); border-radius: 14px; }
.co-bank[hidden] { display: none; }
.co-bank-h { margin: 0 0 12px; font: 600 12px/1.4 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--ruby-hot); }
.co-bank input[readonly] { opacity: .7; cursor: not-allowed; }
.co .fld input[type="text"], .co .fld input[type="tel"], .co .fld textarea { width: 100%; }

/* ---------- микрозона под охраной + сертификат ---------- */
.cert-block { display: grid; gap: 22px; margin-top: 30px; }
.cert-block h3.sub { margin-top: 0; }
.cert-shot { margin: 0; width: 100%; max-width: 260px; }
.cert-shot img { display: block; width: 100%; height: auto; border: 1px solid var(--line); border-radius: 10px; }
.cert-shot figcaption { margin-top: 8px; font-size: 12px; color: var(--cream-dim); }
.cert-shot.empty { display: grid; place-items: center; min-height: 190px; padding: 16px; border: 1px dashed var(--line); border-radius: 12px; background: rgba(243, 234, 216, .04); }
.cert-shot.empty img { display: none; }
.cert-shot.empty figcaption { margin: 0; font-size: 13px; text-align: center; }
.cert-shot[hidden] { display: none; }
.prot-links { display: flex; flex-wrap: wrap; gap: 10px; }
@media (min-width: 720px) { .cert-block { grid-template-columns: 260px 1fr; gap: 34px; } }

/* ---------- макет телефона с образцом QR-меню ---------- */
.qr-phone { margin: 0; width: 100%; max-width: 230px; justify-self: center; opacity: 0; transform: translate(-46px, 70px) rotate(-7deg); transition: opacity .8s ease, transform 1.1s cubic-bezier(.2, .9, .25, 1); }
.qr-phone.in { opacity: 1; transform: none; }
.ph-frame { position: relative; padding: 7px; border-radius: 34px; background: #2b1a1d; box-shadow: 0 0 0 1px var(--line), 0 24px 50px rgba(0, 0, 0, .55); }
.ph-notch { position: absolute; top: 12px; left: 50%; z-index: 3; width: 62px; height: 16px; margin-left: -31px; border-radius: 10px; background: #120a0b; }
.ph-screen { position: relative; height: 520px; overflow: hidden; border-radius: 28px; background: #f6efe2; color: #251517; }
.ph-scroll { padding: 82px 14px 118px; animation: ph-scroll 11s ease-in-out 1.4s infinite; }
.qr-phone.static .ph-scroll { animation: none; }
@keyframes ph-scroll { 0%, 14% { transform: translateY(0); } 48%, 68% { transform: translateY(-166px); } 100% { transform: translateY(0); } }
/* шапка (не листается): логотип слева, язык + «гамбургер» справа */
.ph-top { position: absolute; top: 0; left: 0; right: 0; z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; padding: 34px 16px 9px; background: #f6efe2; box-shadow: 0 6px 10px -8px rgba(37, 21, 23, .35); }
.ph-logo { display: grid; gap: 3px; line-height: 1; }
.ph-logo b { font: 600 15px/1 var(--serif); letter-spacing: .16em; color: #3a1519; }
.ph-logo span { font: 500 6.5px/1 var(--sans); letter-spacing: .34em; color: #8a6f6f; }
.ph-ctl { display: flex; align-items: center; gap: 11px; }
.ph-lang { display: inline-flex; align-items: center; gap: 4px; font: 700 9px/1 var(--sans); letter-spacing: .05em; color: #3a1519; }
.ph-burger { display: grid; gap: 3px; width: 15px; }
.ph-burger i { display: block; height: 1.6px; border-radius: 2px; background: #3a1519; }
.ph-burger i:nth-child(2) { width: 70%; margin-left: auto; }
/* карточка вина: бутылка слева, название и факты справа */
.ph-hero { display: grid; grid-template-columns: 96px 1fr; gap: 13px; align-items: center; }
.ph-bottle { position: relative; height: 142px; overflow: hidden; border-radius: 14px; background: radial-gradient(90% 70% at 50% 30%, #3a1420, #180a10); box-shadow: 0 8px 18px -10px rgba(37, 21, 23, .7); }
.ph-bottle img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.ph-info { min-width: 0; }
.ph-info em { display: inline-block; padding: 4px 9px; border-radius: 999px; background: var(--ruby); font: 700 7.5px/1 var(--sans); font-style: normal; letter-spacing: .04em; color: #fff; }
.ph-info > b { display: block; margin-top: 8px; font: 700 17px/1.12 var(--serif); color: #251517; }
html[data-lang="ka"] .ph-info > b { font: 700 15px/1.2 var(--serif-ka); }
.ph-info small { display: block; margin-top: 6px; font-size: 9px; line-height: 1.4; color: #8a6f6f; }
.ph-facts { display: flex; flex-wrap: wrap; gap: 5px 12px; margin-top: 10px; }
.ph-facts > span { display: inline-flex; align-items: center; gap: 4px; font: 500 8.5px/1 var(--sans); color: #6a4d4f; white-space: nowrap; }
.ph-facts b { display: inline; margin: 0; font: 700 9.5px/1 var(--sans); color: #3a1519; }
.ph-facts svg, .ph-nav svg { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.ph-facts svg { flex: none; width: 13px; height: 13px; color: var(--ruby); }
.ph-prices { margin-top: 14px; border-top: 1px solid #e3d7c1; }
.ph-add { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 14px; padding: 6px 6px 6px 16px; border: 1px solid #d9c7a4; border-radius: 999px; background: linear-gradient(#f3e7cf, #ead9b9); font: 700 10.5px/1.2 var(--sans); color: #6a1a24; }
.ph-add i { display: grid; place-items: center; flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--ruby); font: 400 17px/1 var(--sans); font-style: normal; color: #fff; }
.ph-pair { margin: 20px 0 2px; font: 700 8.5px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: #8a6f6f; }
html[data-lang="ka"] .ph-pair { text-transform: none; letter-spacing: .03em; font-size: 9.5px; }
.ph-row { display: flex; justify-content: space-between; gap: 8px; padding: 12px 4px; border-bottom: 1px solid #e3d7c1; font-size: 12px; }
.ph-row b { font: 600 12px/1.3 var(--serif-ka); }
.ph-row span { flex: none; font-weight: 700; color: var(--ruby); }
/* нижняя панель */
.ph-nav { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); padding: 9px 8px 13px; background: #1e0f12; }
.ph-nav > span { display: grid; justify-items: center; gap: 4px; font: 500 7.5px/1 var(--sans); color: rgba(243, 234, 216, .6); }
.ph-nav > span.on { color: var(--ruby-hot); }
.ph-nav svg { width: 17px; height: 17px; }
.ph-ai { position: absolute; z-index: 1; left: 10px; right: 10px; bottom: 66px; display: flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 999px; background: #251517; color: #f3ead8; font-size: 9px; line-height: 1.25; opacity: 0; transform: translateY(16px); animation: ph-ai 11s ease-in-out 1.4s infinite; }
.qr-phone.static .ph-ai { animation: none; opacity: 1; transform: none; }
.ph-ai i { flex: none; padding: 3px 6px; border-radius: 6px; background: var(--ruby-hot); font: 700 9px/1 var(--sans); font-style: normal; color: #fff; }
.ph-ai span { min-width: 0; }
@keyframes ph-ai { 0%, 40% { opacity: 0; transform: translateY(16px); } 52%, 90% { opacity: 1; transform: none; } 100% { opacity: 0; transform: translateY(16px); } }
.qr-phone figcaption { margin-top: 12px; font-size: 12px; text-align: center; color: var(--cream-dim); }
@media (min-width: 720px) { .qr-phone { justify-self: start; } }

/* ---------- #restaurants: витрина для ресторанов и отелей (по референсу Васо, 2026-09-20) ---------- */
.rest-sec { isolation: isolate; background: var(--ink); }
.rest-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; background: radial-gradient(70% 40% at 50% 0%, rgba(163, 32, 47, .30), transparent 72%), radial-gradient(45% 35% at 100% 65%, rgba(163, 32, 47, .16), transparent 72%); }
.rest-bg::before { content: ""; position: absolute; top: 0; left: 0; width: min(46%, 520px); height: 430px; background: url(assets/grapes.jpg) center / cover; opacity: .5; filter: saturate(.75) brightness(.7); -webkit-mask-image: radial-gradient(ellipse at 0% 0%, #000 0%, transparent 72%); mask-image: radial-gradient(ellipse at 0% 0%, #000 0%, transparent 72%); }
.rest-head { max-width: 860px; margin: 0 auto 38px; text-align: center; }
.rest-head .eyebrow { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 18px; }
.rest-head .eyebrow::before, .rest-head .eyebrow::after { content: ""; flex: 0 1 70px; height: 1px; background: linear-gradient(90deg, transparent, var(--ruby-hot)); }
.rest-head .eyebrow::after { transform: scaleX(-1); }
.rest-head h2 { margin-bottom: 18px; }
.rest-head .lead { max-width: 660px; margin: 0 auto; }
.rest-cards { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.rest-cards li { display: grid; align-content: start; gap: 8px; padding: 22px 20px; border: 1px solid rgba(163, 32, 47, .55); border-radius: 16px; background: rgba(27, 16, 18, .78); backdrop-filter: blur(6px); }
.rest-cards .ic, .qr-feats .ic { display: grid; place-items: center; flex: none; width: 52px; height: 52px; border: 1.5px solid var(--ruby); border-radius: 50%; background: rgba(163, 32, 47, .14); color: var(--ruby-hot); }
.rest-cards .ic { margin-bottom: 8px; }
.rest-cards .ic svg, .qr-feats .ic svg { width: 26px; height: 26px; }
.rest-cards b { font: 600 17px/1.35 var(--serif-ka); }
.rest-cards li > span { font-size: 14px; line-height: 1.6; color: var(--cream-dim); }
.rest-sec .qr-block { display: grid; gap: 40px; align-items: center; margin: 54px 0 0; }
.rest-sec .qr-phone { max-width: 290px; justify-self: center; }
.rest-sec .qr-side { display: grid; gap: 22px; }
.qr-h { margin: 0; font: 600 clamp(26px, 6vw, 36px)/1.2 var(--serif-ka); }
html[data-lang="en"] .qr-h, html[data-lang="ru"] .qr-h { font-family: var(--serif); font-size: clamp(30px, 7vw, 44px); line-height: 1.1; }
.rest-sec .qr-feats { gap: 18px; }
.rest-sec .qr-feats li { display: flex; align-items: center; gap: 16px; padding-left: 0; font-size: 16px; line-height: 1.5; }
.rest-sec .qr-feats li::before { display: none; }
.rest-sec .btn-wa { justify-content: center; width: 100%; padding: 18px 26px; border-radius: 999px; font-size: 16px; box-shadow: 0 12px 34px -12px rgba(37, 211, 102, .6); }
.rest-sec .source { margin: 0; text-align: center; }
@media (min-width: 640px) { .rest-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .rest-cards { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 860px) {
  .rest-sec .qr-block { grid-template-columns: minmax(280px, 360px) minmax(0, 1fr); gap: 76px; }
  .rest-sec .qr-phone { justify-self: center; }
  .rest-sec .qr-side { position: relative; }
  .rest-sec .qr-side::before { content: ""; position: absolute; left: -38px; top: 4%; bottom: 4%; width: 1px; background: linear-gradient(180deg, transparent, var(--line) 15%, var(--line) 85%, transparent); }
}

/* фото этапов процесса (ИИ-иллюстрации, подписаны на странице) */
.cycle li { padding: 0; overflow: hidden; }
.cycle .cy-img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; background: var(--ink-2); }
.cycle .cy-t { padding: 16px 18px 20px; }
.cycle li::before { left: 14px; top: 14px; z-index: 1; box-shadow: 0 2px 12px rgba(0, 0, 0, .55); }
@media (min-width: 900px) { .cycle li { padding: 0; } .cycle .cy-img { aspect-ratio: 1 / 1; } .cycle li::before { left: 14px; top: 14px; } .cycle .cy-t { padding: 16px 16px 20px; } }
.t-year small { font: inherit; }
html[data-lang="ka"] .t-year small { display: block; margin-top: 3px; font: 600 13px/1.2 var(--serif-ka); white-space: nowrap; }

/* политика конфиденциальности */
.pv-date { margin: 6px 0 0; font-size: 12.5px; color: rgba(243, 234, 216, .5); }
.pv-p { margin: 10px 0 0; font-size: 14.5px; line-height: 1.7; color: var(--cream-dim); }
.pv-list { margin: 10px 0 0; padding-left: 20px; display: grid; gap: 8px; font-size: 14.5px; line-height: 1.65; color: var(--cream-dim); }
.pv-list b { color: var(--cream); font-weight: 600; }
.nd-foot a { color: inherit; text-underline-offset: 3px; }
