/* ═══════════════════════════════════════════════════════════════
   ViveMedellín VIBE v4 — Mobile-first app shell
   Mood: night valley / warm city light / electric lime pulse
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,700;12..96,800&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --v4-ink: #0b1220;
  --v4-ink-soft: #1a2438;
  --v4-paper: #f3efe6;
  --v4-paper-2: #ebe4d6;
  --v4-lime: #c8f54a;
  --v4-lime-deep: #9fd10f;
  --v4-coral: #ff6b4a;
  --v4-sky: #7ec8ff;
  --v4-muted: #6b7285;
  --v4-line: rgba(11, 18, 32, 0.08);
  --v4-glass: rgba(11, 18, 32, 0.55);
  --v4-radius: 22px;
  --v4-radius-sm: 14px;
  --v4-nav-h: 68px;
  --v4-top-h: 56px;
  --v4-font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --v4-font-body: 'Manrope', system-ui, sans-serif;
  --v4-shadow: 0 18px 50px rgba(11, 18, 32, 0.18);
  --v4-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--v4-font-body);
  color: var(--v4-ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(200, 245, 74, 0.18), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(126, 200, 255, 0.16), transparent 50%),
    var(--v4-paper);
  overflow-x: hidden;
  padding-bottom: calc(var(--v4-nav-h) + env(safe-area-inset-bottom, 0px));
}

body.v4-ready main { min-height: 60vh; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.v4-container {
  width: min(1120px, calc(100% - 1.5rem));
  margin-inline: auto;
}

/* ── Topbar minimal ── */
.site-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(243, 239, 230, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--v4-line);
  min-height: var(--v4-top-h);
}

.site-topbar__accent { display: none !important; }

.site-topbar__brand {
  font-family: var(--v4-font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.site-topbar__brand strong {
  color: var(--v4-ink);
  background: linear-gradient(120deg, var(--v4-lime), #e8ff9a);
  padding: 0.05em 0.28em;
  border-radius: 0.35em;
  margin-left: 0.05em;
}

/* ── Bottom nav (mobile app) ── */
.v4-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  height: calc(var(--v4-nav-h) + env(safe-area-inset-bottom, 0px));
  padding: 0.45rem 0.75rem calc(0.45rem + env(safe-area-inset-bottom, 0px));
  background: rgba(11, 18, 32, 0.94);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.v4-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.62);
  border-radius: 14px;
  padding: 0.35rem 0.2rem;
  transition: color 0.2s var(--v4-ease), background 0.2s var(--v4-ease), transform 0.2s var(--v4-ease);
}

.v4-bottom-nav a i { font-size: 1.2rem; line-height: 1; }
.v4-bottom-nav a.active,
.v4-bottom-nav a:hover {
  color: var(--v4-ink);
  background: var(--v4-lime);
  transform: translateY(-1px);
}

@media (min-width: 992px) {
  body { padding-bottom: 0; }
  .v4-bottom-nav { display: none; }
}

/* ── Hero reform ── */
.v4-hero {
  position: relative;
  min-height: min(92svh, 760px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.v4-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.v4-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: v4-ken 18s var(--v4-ease) infinite alternate;
}

@keyframes v4-ken {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}

.v4-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,18,32,0.15) 0%, rgba(11,18,32,0.25) 35%, rgba(11,18,32,0.88) 100%),
    radial-gradient(600px 280px at 80% 20%, rgba(200,245,74,0.22), transparent 60%);
}

.v4-hero__inner {
  width: min(1120px, calc(100% - 1.5rem));
  margin: 0 auto;
  padding: 5.5rem 0 calc(1.75rem + var(--v4-nav-h));
}

.v4-brand-mark {
  font-family: var(--v4-font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 12vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 0 0 0.85rem;
  max-width: 11ch;
  text-wrap: balance;
}

.v4-brand-mark span {
  display: inline-block;
  background: var(--v4-lime);
  color: var(--v4-ink);
  padding: 0 0.18em;
  border-radius: 0.18em;
  transform: rotate(-1.5deg);
}

.v4-hero__lead {
  font-size: clamp(1rem, 3.4vw, 1.2rem);
  line-height: 1.45;
  max-width: 28ch;
  color: rgba(255,255,255,0.86);
  margin: 0 0 1.35rem;
}

.v4-cta-row {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.v4-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.2s var(--v4-ease), box-shadow 0.2s var(--v4-ease), background 0.2s;
}

.v4-btn:active { transform: scale(0.98); }
.v4-btn--primary {
  background: var(--v4-lime);
  color: var(--v4-ink);
  box-shadow: 0 12px 30px rgba(200, 245, 74, 0.28);
}
.v4-btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
}

.v4-search-sticky {
  position: sticky;
  top: calc(var(--v4-top-h) - 1px);
  z-index: 30;
  margin-top: -0.35rem;
  padding: 0.65rem 0 0.35rem;
  background: linear-gradient(180deg, rgba(243,239,230,0.96), rgba(243,239,230,0.88) 70%, transparent);
}

.v4-search {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #fff;
  border: 1px solid var(--v4-line);
  border-radius: 999px;
  padding: 0.55rem 0.65rem 0.55rem 1rem;
  box-shadow: var(--v4-shadow);
}

.v4-search i { color: var(--v4-muted); }
.v4-search input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 0.98rem;
  min-width: 0;
}
.v4-search button {
  border: 0;
  border-radius: 999px;
  background: var(--v4-ink);
  color: var(--v4-lime);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

/* ── Sections ── */
.v4-section {
  padding: 1.6rem 0 0.4rem;
}

.v4-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.95rem;
}

.v4-kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--v4-muted);
  margin-bottom: 0.25rem;
}

.v4-section__title {
  font-family: var(--v4-font-display);
  font-size: clamp(1.45rem, 5vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
}

.v4-section__link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--v4-ink);
  white-space: nowrap;
  border-bottom: 2px solid var(--v4-lime);
}

/* Mood chips */
.v4-moods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.v4-mood {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 96px;
  padding: 0.85rem;
  border-radius: var(--v4-radius-sm);
  background: #fff;
  border: 1px solid var(--v4-line);
  transition: transform 0.2s var(--v4-ease), border-color 0.2s;
}
.v4-mood:hover { transform: translateY(-2px); border-color: rgba(11,18,32,0.2); }
.v4-mood__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--v4-ink);
  color: var(--v4-lime);
  font-size: 1rem;
}
.v4-mood__label {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.02em;
}

.v4-mood:nth-child(2) .v4-mood__icon { background: #17324d; color: var(--v4-sky); }
.v4-mood:nth-child(3) .v4-mood__icon { background: #3b1d18; color: #ffb39e; }
.v4-mood:nth-child(4) .v4-mood__icon { background: #1f2a12; color: var(--v4-lime); }
.v4-mood:nth-child(5) .v4-mood__icon { background: #2a1840; color: #d7b3ff; }
.v4-mood:nth-child(6) .v4-mood__icon { background: #402018; color: #ffd29b; }

/* Horizontal rails */
.v4-rail {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  margin-inline: -0.75rem;
  padding-inline: 0.75rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.v4-rail::-webkit-scrollbar { display: none; }

.v4-place {
  flex: 0 0 72%;
  max-width: 280px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--v4-radius);
  overflow: hidden;
  border: 1px solid var(--v4-line);
  transition: transform 0.25s var(--v4-ease);
}
.v4-place:hover { transform: translateY(-3px); }
.v4-place__media {
  position: relative;
  aspect-ratio: 4/3;
  background: #d9d2c4;
  overflow: hidden;
}
.v4-place__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v4-place__rating {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  background: rgba(11,18,32,0.88);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.v4-place__rating i { color: var(--v4-lime); }
.v4-place__body { padding: 0.9rem 0.95rem 1.05rem; }
.v4-place__name {
  font-family: var(--v4-font-display);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.25rem;
  line-height: 1.15;
}
.v4-place__meta {
  color: var(--v4-muted);
  font-size: 0.82rem;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

/* Zone mosaic */
.v4-zones {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 150px 110px;
  gap: 0.65rem;
}
.v4-zone {
  position: relative;
  border-radius: var(--v4-radius-sm);
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: end;
  padding: 0.9rem;
  isolation: isolate;
  min-height: 110px;
}
.v4-zone:first-child { grid-row: 1 / span 2; }
.v4-zone::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
  transition: transform 0.45s var(--v4-ease);
}
.v4-zone:hover::before { transform: scale(1.06); }
.v4-zone::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 20%, rgba(11,18,32,0.82));
}
.v4-zone__name {
  font-family: var(--v4-font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.v4-zone--1::before { background-image: linear-gradient(135deg,#1b3a2a,#0b1220), url('../img/medellin-249403.jpg'); background-blend-mode: soft-light, normal; }
.v4-zone--2::before { background-image: linear-gradient(135deg,#2a1b3a,#0b1220), url('../img/medellin-2343953.jpg'); background-blend-mode: soft-light, normal; }
.v4-zone--3::before { background-image: linear-gradient(135deg,#3a241b,#0b1220), url('../img/juan-saravia-03gVOLHq9ec-unsplash.jpg'); background-blend-mode: soft-light, normal; }

/* Guides */
.v4-guide {
  flex: 0 0 82%;
  max-width: 320px;
  scroll-snap-align: start;
  border-radius: var(--v4-radius);
  padding: 1.15rem 1.15rem 1.25rem;
  background: var(--v4-ink);
  color: #fff;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.v4-guide::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  right: -30px;
  bottom: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,245,74,0.35), transparent 70%);
}
.v4-guide__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--v4-lime);
}
.v4-guide__title {
  font-family: var(--v4-font-display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin: 0.55rem 0 0.35rem;
  max-width: 14ch;
  position: relative;
  z-index: 1;
}
.v4-guide__cta {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  position: relative;
  z-index: 1;
}

/* Hide old home chrome when vibe is on */
body.vibe-v4 .hero-v3,
body.vibe-v4 .intentions-section,
body.vibe-v4 .zonas-pills-section,
body.vibe-v4 .advanced-filters-home,
body.vibe-v4 .home-monetization-zone,
body.vibe-v4 .imperdibles-section,
body.vibe-v4 .zonas-img-section,
body.vibe-v4 .site-footer,
body.vibe-v4 footer.site-footer {
  /* kept if legacy markup still there; new home replaces it */
}

body.vibe-v4 .adsense-fixed-unit--global { margin-bottom: 4.5rem; }

/* Places list soft restyle */
body.vibe-v4 .places-section {
  background: transparent !important;
}
body.vibe-v4 .places-header-card,
body.vibe-v4 .places-main-wrapper > .card,
body.vibe-v4 .place-card,
body.vibe-v4 .place-card-wrapper {
  border-radius: var(--v4-radius) !important;
  border: 1px solid var(--v4-line) !important;
  box-shadow: none !important;
  background: #fff !important;
}
body.vibe-v4 .places-title .title-main,
body.vibe-v4 .detail-title,
body.vibe-v4 h1 {
  font-family: var(--v4-font-display) !important;
  letter-spacing: -0.03em;
}

/* Detail sticky CTA */
.v4-sticky-cta {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: calc(var(--v4-nav-h) + 0.65rem + env(safe-area-inset-bottom, 0px));
  z-index: 45;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.55rem;
}
.v4-sticky-cta a {
  min-height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.v4-sticky-cta a:first-child {
  background: #fff;
  border: 1px solid var(--v4-line);
}
.v4-sticky-cta a:last-child {
  background: var(--v4-ink);
  color: var(--v4-lime);
}

@media (min-width: 768px) {
  .v4-cta-row {
    grid-template-columns: auto auto;
    justify-content: start;
  }
  .v4-moods { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .v4-place { flex-basis: 240px; }
  .v4-zones {
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 220px;
  }
  .v4-zone:first-child { grid-row: auto; }
  .v4-hero__inner { padding: 7rem 0 2.5rem; }
  .v4-sticky-cta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .v4-hero__media img { animation: none; }
}

/* ── Explore list ── */
.v4-explore-head {
  padding: 1.1rem 0 0.35rem;
}
.v4-explore-head h1 {
  font-family: var(--v4-font-display);
  font-size: clamp(1.75rem, 7vw, 2.4rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 0.35rem;
}
.v4-explore-head p {
  margin: 0;
  color: var(--v4-muted);
  font-size: 0.95rem;
  max-width: 34ch;
}
.v4-chips {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.85rem 0 0.35rem;
  margin-inline: -0.75rem;
  padding-inline: 0.75rem;
  scrollbar-width: none;
}
.v4-chips::-webkit-scrollbar { display: none; }
.v4-chip {
  flex: 0 0 auto;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--v4-line);
  background: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}
.v4-chip.is-on {
  background: var(--v4-ink);
  color: var(--v4-lime);
  border-color: var(--v4-ink);
}
.v4-results {
  display: grid;
  gap: 0.85rem;
  padding: 0.75rem 0 1.5rem;
}
.v4-result {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid var(--v4-line);
  border-radius: var(--v4-radius);
  overflow: hidden;
  min-height: 112px;
}
.v4-result__media {
  position: relative;
  background: #d9d2c4;
  min-height: 112px;
  align-self: stretch;
}
.v4-result__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v4-result__body {
  padding: 0.85rem 0.85rem 0.85rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  min-width: 0;
}
.v4-result__name {
  font-family: var(--v4-font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.15;
}
.v4-result__meta {
  color: var(--v4-muted);
  font-size: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.v4-result__row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
}
.v4-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(11,18,32,0.06);
}
.v4-pill--open { background: rgba(200,245,74,0.35); color: #1f2a12; }
.v4-pill--star i { color: var(--v4-lime-deep); }

/* ── Place detail ── */
.v4-detail-hero {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 62svh;
  overflow: hidden;
  background: #1a2438;
}
.v4-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v4-detail-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,18,32,0.15), transparent 35%, rgba(11,18,32,0.85));
}
.v4-detail-back {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(11,18,32,0.55);
  color: #fff;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
}
.v4-detail-panel {
  margin-top: -1.75rem;
  position: relative;
  z-index: 2;
  background: var(--v4-paper);
  border-radius: 28px 28px 0 0;
  padding: 1.35rem 0 7.5rem;
}
.v4-detail-title {
  font-family: var(--v4-font-display);
  font-size: clamp(1.85rem, 7vw, 2.6rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin: 0 0 0.45rem;
}
.v4-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}
.v4-detail-block {
  padding: 1rem 0;
  border-top: 1px solid var(--v4-line);
}
.v4-detail-block h2 {
  font-family: var(--v4-font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.55rem;
}
.v4-detail-block p {
  margin: 0;
  color: #3a4254;
  line-height: 1.55;
  font-size: 0.95rem;
}
.v4-hours {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
}
.v4-hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.v4-hours span:last-child { font-weight: 700; }
.v4-map-fake {
  border-radius: var(--v4-radius-sm);
  overflow: hidden;
  aspect-ratio: 16/9;
  background:
    linear-gradient(135deg, rgba(200,245,74,0.25), transparent 50%),
    url('../img/medellin-2343953.jpg') center/cover;
  position: relative;
}
.v4-map-fake span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--v4-ink);
  color: var(--v4-lime);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
}
@media (min-width: 768px) {
  .v4-result { grid-template-columns: 160px 1fr; }
  .v4-detail-hero { aspect-ratio: 21/9; max-height: 420px; }
}


/* ── Prod shell soft overrides (site-topbar real) ── */
body.vibe-v4 .site-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(243, 239, 230, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--v4-line);
}
body.vibe-v4 .site-topbar__accent { display: none !important; }
body.vibe-v4 .site-topbar__brand {
  font-family: var(--v4-font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
}
body.vibe-v4 .site-topbar__brand strong {
  background: linear-gradient(120deg, var(--v4-lime), #e8ff9a);
  padding: 0.05em 0.28em;
  border-radius: 0.35em;
}
@media (max-width: 991.98px) {
  body.vibe-v4 .site-footer,
  body.vibe-v4 footer.site-footer { display: none; }
  body.vibe-v4 .adsense-fixed-unit--global { margin-bottom: 5.5rem; }
}
