/* ================================================================
   L'Escale de Larcher — Shared design tokens & Variation B styles
   Direction : "Sous les chênes" · Almanach forestier
   Palette   : Forêt (défaut)
   Typographie: Bricolage Grotesque (display) + Newsreader (serif) + JetBrains Mono
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700&family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;1,6..72,400;1,6..72,500&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Tokens ──────────────────────────────────────────────────── */
:root {
  --bg:        #f4f1ea;
  --bg-2:      #ebe6db;
  --ink:       #1a2420;
  --ink-soft:  #3a4540;
  --ink-mute:  #6b6d63;
  --line:      rgba(26, 36, 32, 0.14);
  --line-soft: rgba(26, 36, 32, 0.08);
  --forest:    #2d3a2e;
  --forest-2:  #4a5a48;
  --wood:      #8b6f47;
  --wood-2:    #b8946a;
  --moss:      #5a6b4e;
  --terra:     #c97b3d;

  --font-display: 'Bricolage Grotesque', ui-sans-serif, system-ui, sans-serif;
  --font-body:    'Newsreader', 'Georgia', serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --grain: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1, 0 0 0 0 0.1, 0 0 0 0 0.08, 0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

/* ── Type primitives ─────────────────────────────────────────── */
.serif-italic {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
}
.serif {
  font-family: var(--font-body);
  font-weight: 400;
}
.numtag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  text-transform: uppercase;
  display: block;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 400;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(.2,.7,.3,1);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover { background: var(--forest); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn-link {
  background: transparent;
  padding: 0;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  padding-bottom: 2px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.btn-link:hover { color: var(--forest); border-color: var(--forest); }

/* ── Star ────────────────────────────────────────────────────── */
.star {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--wood);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* ── Image slots ─────────────────────────────────────────────── */
.img-slot {
  position: relative;
  width: 100%;
  background: var(--bg-2);
  color: var(--ink-mute);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.img-slot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grain);
  opacity: 0.35;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.img-slot img {
  display: block;
  width: 100%;
  height: auto;
}
/* Hero only: full-bleed cover */
.vb-hero-bg .img-slot {
  height: 100%;
  overflow: hidden;
}
.vb-hero-bg .img-slot img {
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.img-slot-label { display: none; }

/* ── Divider ─────────────────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--line);
}

/* ================================================================
   VARIATION B — "Sous les chênes"
   ================================================================ */

/* ── Top banner ──────────────────────────────────────────────── */
.vb-bann {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 32px;
  background: var(--ink);
  color: var(--bg);
}
.vb-bann .numtag { color: rgba(244,241,234,0.6); }
.vb-bann-mid .numtag { color: var(--bg); }

/* ── Nav ─────────────────────────────────────────────────────── */
.vb-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 50;
}
.vb-mark {
  display: flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
}
.vb-mark-l, .vb-mark-r {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--ink);
  font-weight: 600;
}
.vb-mark-c { font-size: 22px; color: var(--ink-mute); }
.vb-links {
  display: flex;
  gap: 24px;
}
.vb-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.vb-links a:hover,
.vb-links a.active { color: var(--forest); }
.vb-links a.active { border-bottom: 1px solid var(--forest); padding-bottom: 2px; }

/* Hamburger */
.vb-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.vb-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.25s;
}

/* Mobile menu */
.vb-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.vb-mobile-menu.open { display: flex; }
.vb-mobile-menu a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.2s;
}
.vb-mobile-menu a:hover { background: var(--bg-2); }
.vb-mobile-menu .btn-primary { border-radius: 0; margin: 8px 0 0; justify-content: center; }

/* ── Hero ────────────────────────────────────────────────────── */
.vb-hero {
  position: relative;
  height: 880px;
  overflow: hidden;
  color: var(--bg);
}
.vb-hero-bg {
  position: absolute;
  inset: 0;
}
.vb-hero-bg .img-slot { width: 100%; height: 100%; }
.vb-hero-tint {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(74, 95, 70, 0.35) 0%, transparent 55%),
    linear-gradient(to bottom,
      rgba(28, 50, 36, 0.55) 0%,
      rgba(28, 50, 36, 0.28) 30%,
      rgba(18, 36, 25, 0.94) 100%);
}
.vb-hero-grid {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 56px 64px;
  z-index: 1;
}
.vb-hero-eye {
  display: flex;
  justify-content: space-between;
}
.vb-hero-eye .numtag { color: rgba(244,241,234,0.85); }
.vb-h1 {
  font-family: var(--font-display);
  font-size: clamp(80px, 11vw, 156px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 24px 0;
  align-self: center;
  color: var(--bg);
}
.vb-h1 .serif-italic { color: var(--wood-2); font-size: 0.92em; }
.vb-hero-foot {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: end;
}
.vb-lede {
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1.45;
  margin: 0;
  color: rgba(244,241,234,0.95);
  max-width: 480px;
  font-style: italic;
}
.vb-hero-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  grid-column: 2;
  justify-self: end;
}
.vb-hero-cta .btn-primary {
  background: var(--bg);
  color: var(--ink);
}
.vb-hero-cta .btn-primary:hover { background: var(--wood-2); }
.vb-hero-cta .btn-ghost-l {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bg);
  border-bottom: 1px solid rgba(244,241,234,0.5);
  padding: 4px 0;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: opacity 0.2s;
}
.vb-hero-cta .btn-ghost-l:hover { opacity: 0.75; }
.vb-hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(244,241,234,0.2);
}
.vb-stat { display: flex; flex-direction: column; gap: 4px; }
.vb-stat-n {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  color: var(--bg);
  font-weight: 600;
}
.vb-stat .numtag { color: rgba(244,241,234,0.6); }

/* ── Ticker ──────────────────────────────────────────────────── */
.vb-ticker {
  background: var(--forest);
  color: var(--bg);
  border-bottom: 1px solid rgba(0,0,0,0.15);
  padding: 20px 0;
  overflow: hidden;
}
.vb-ticker-track {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
  width: max-content;
}
.vb-ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.vb-ticker-w {
  font-family: var(--font-display);
  font-size: 52px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--bg);
  font-weight: 600;
  line-height: 1;
}
.vb-ticker-w.serif-italic {
  text-transform: none;
  color: var(--wood-2);
  font-size: 48px;
  font-weight: 400;
}
.vb-ticker .numtag { color: rgba(244,241,234,0.7); font-size: 14px; }

/* ── Section base ────────────────────────────────────────────── */
.vb-section { padding: 120px 64px; }
.vb-section.vb-mani-wrap { padding: 80px 0; background: var(--bg); }

.vb-h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(56px, 7vw, 100px);
  line-height: 0.96;
  letter-spacing: -0.015em;
  margin: 0;
}
.vb-h2 .serif-italic { color: var(--forest); }
.vb-h2-light { color: var(--bg); }
.vb-h2-light .serif-italic { color: var(--wood-2); }

.vb-h2-sm {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.015em;
  margin: 0;
}
.vb-h2-sm .serif-italic { color: var(--forest); }

.vb-body-serif {
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1.5;
  margin: 0;
}
.vb-body-light { color: rgba(244,241,234,0.85); }
.vb-body-sm { font-size: 15px; line-height: 1.55; margin: 0; color: var(--ink-soft); }

/* ── Manifesto ───────────────────────────────────────────────── */
.vb-mani {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  background: var(--forest);
  color: var(--bg);
  margin: 0 64px;
  padding: 100px 80px;
  border-radius: 6px;
  position: relative;
}
.vb-mani .numtag { color: rgba(244,241,234,0.55); }
.vb-mani .vb-h2 { color: var(--bg); }
.vb-mani .vb-h2 .serif-italic { color: var(--wood-2); }
.vb-mani .vb-body-serif { color: rgba(244,241,234,0.92); }
.vb-mani .vb-feat-t { color: var(--wood-2); }
.vb-mani .vb-feat-b { color: rgba(244,241,234,0.78); }
.vb-mani .vb-mani-grid { border-top-color: rgba(244,241,234,0.2); }
.vb-mani-l { display: flex; flex-direction: column; gap: 28px; }
.vb-mani-r { display: flex; flex-direction: column; gap: 32px; padding-top: 24px; }
.vb-mani-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.vb-feat { display: flex; flex-direction: column; gap: 6px; }
.vb-feat-t { font-family: var(--font-body); font-size: 22px; font-style: italic; }
.vb-feat-b { font-size: 14px; line-height: 1.55; color: var(--ink-soft); }

/* ── Hébergements ────────────────────────────────────────────── */
.vb-stays-head { display: flex; flex-direction: column; gap: 24px; margin-bottom: 80px; }
.vb-stay {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 64px;
  align-items: center;
  padding: 60px 0;
  border-top: 1px solid var(--line);
}
.vb-stay-rev .vb-stay-img { order: 2; }
.vb-stay-img {
  position: relative;
}
.vb-stay-img .img-slot { width: 100%; }
.vb-stay-num { display: none; }
.vb-stay-body { display: flex; flex-direction: column; gap: 14px; }
.vb-stay-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin: 0;
  font-weight: 600;
}
.vb-stay-sub { color: var(--ink-mute); }
.vb-stay-text {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.5;
  margin: 0;
}
.vb-stay-tags {
  list-style: none;
  padding: 0;
  margin: 4px 0 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.vb-stay-tags li {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  border: 1px solid var(--line);
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--ink-soft);
}
.vb-stay-cta { display: flex; gap: 16px; align-items: center; margin-top: 8px; }

/* ── Pull quote ──────────────────────────────────────────────── */
.vb-pull {
  text-align: center;
  padding: 140px 64px;
  background: var(--forest);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.vb-pull::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(184,148,106,0.18), transparent 60%);
  pointer-events: none;
}
.vb-pull > * { position: relative; }
.vb-pull .numtag { color: rgba(244,241,234,0.65); }
.vb-pull-mark {
  font-family: var(--font-body);
  font-size: 140px;
  line-height: 0.5;
  color: var(--wood-2);
  margin-bottom: 24px;
}
.vb-pull-text {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 92px);
  line-height: 1.05;
  margin: 0 auto 32px;
  letter-spacing: -0.015em;
  max-width: 1100px;
  color: var(--bg);
  font-weight: 600;
}
.vb-pull-text .serif-italic { color: var(--wood-2); }

/* ── Story dark ──────────────────────────────────────────────── */
.vb-story {
  background: var(--ink);
  color: var(--bg);
  padding: 140px 64px;
}
.vb-story-grid {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 80px;
  align-items: center;
}
.vb-story-l { display: flex; flex-direction: column; gap: 28px; }
.vb-story-l .numtag { color: rgba(244,241,234,0.5); }
.vb-story-sign { margin-top: 16px; display: flex; flex-direction: column; gap: 4px; }
.vb-story-sign .serif-italic { font-size: 36px; color: var(--wood-2); display: block; }
.vb-story-r {
  position: relative;
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 16px;
  align-items: start;
}
.vb-story-img-1 { grid-column: 1; grid-row: 1; }
.vb-story-img-2 { grid-column: 2; grid-row: 1; }
.vb-story-img-4 { grid-column: 1; grid-row: 2; }
.vb-story-card {
  grid-column: 2;
  grid-row: 2;
  background: var(--bg);
  color: var(--ink);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vb-story-r .img-slot { width: 100%; }
.vb-story-meta { display: flex; flex-direction: column; gap: 10px; }
.vb-story-meta div {
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
}
.vb-story-meta b {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
}
.vb-story-meta span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

/* ── Alentours ───────────────────────────────────────────────── */
.vb-around-head { display: flex; flex-direction: column; gap: 20px; margin-bottom: 56px; }
.vb-around-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.vb-around-card {
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  transition: background 0.2s;
}
.vb-around-card:hover { background: var(--bg-2); }
.vb-around-card-h { display: flex; justify-content: space-between; }
.vb-around-card-t {
  font-family: var(--font-body);
  font-size: 36px;
  line-height: 1.1;
  margin: 0;
  color: var(--forest);
  font-style: italic;
}

/* ── Gallery ─────────────────────────────────────────────────── */
.vb-gal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 32px;
}
.vb-gal-grid {
  columns: 3;
  column-gap: 12px;
}
.vb-gal-grid > div {
  break-inside: avoid;
  margin-bottom: 12px;
  overflow: hidden;
}
.vb-gal-grid .img-slot { transition: transform 0.4s cubic-bezier(.2,.7,.3,1); }
.vb-gal-grid > div:hover .img-slot { transform: scale(1.04); }

/* ── Reviews ─────────────────────────────────────────────────── */
.vb-rev-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 64px;
}
.vb-rev-rating { display: flex; align-items: center; gap: 20px; }
.vb-rev-num .serif-italic { font-size: 88px; line-height: 1; color: var(--forest); display: block; }
.vb-stars { display: flex; gap: 4px; }
.vb-rev-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.vb-review {
  background: var(--bg-2);
  padding: 32px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.vb-review:hover {
  border-color: var(--forest);
  box-shadow: 0 4px 20px rgba(26, 36, 32, 0.1);
  cursor: pointer;
}
.vb-rev-h { display: flex; justify-content: space-between; align-items: center; }
.vb-rev-text {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.4;
  margin: 0;
  font-weight: 400;
}
.vb-rev-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.vb-rev-meta .serif { font-size: 18px; }

/* ── Contact dark ────────────────────────────────────────────── */
.vb-contact {
  background: var(--ink);
  color: var(--bg);
  padding: 140px 64px;
}
.vb-contact-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 80px; }
.vb-contact-l { display: flex; flex-direction: column; gap: 28px; }
.vb-contact-l .numtag { color: rgba(244,241,234,0.5); }
.vb-contact-rows {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-top: 1px solid rgba(244,241,234,0.2);
  padding-top: 24px;
}
.vb-contact-rows > div { display: flex; flex-direction: column; gap: 4px; }
.vb-c-val {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.3;
  color: var(--bg);
}
.vb-contact-cta { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.vb-btn-light { background: var(--bg); color: var(--ink); }
.vb-btn-light:hover { background: var(--wood-2); }
.vb-btn-ghost { color: var(--bg); border-color: rgba(244,241,234,0.3); }
.vb-btn-ghost:hover { background: var(--bg); color: var(--ink); }

/* Google Maps embed */
.vb-map {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
}

/* ── Footer ──────────────────────────────────────────────────── */
.vb-foot {
  background: var(--bg);
  padding: 80px 64px 32px;
  border-top: 1px solid var(--line);
}
.vb-foot-mark {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 48px;
}
.vb-foot-big {
  font-family: var(--font-display);
  font-size: clamp(56px, 8.5vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 600;
}
.vb-foot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
.vb-foot-grid div { display: flex; flex-direction: column; gap: 8px; }
.vb-foot-grid a {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--ink-soft);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.vb-foot-grid a:hover { color: var(--ink); }
.vb-foot-grid .numtag { margin-bottom: 8px; }
.vb-foot-bot {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
