.vg-page {
  --vg-rose: #e8b4b8;
  --vg-plum: #6b4c5c;
  --vg-sand: #faf6f3;
  --vg-dark: #1a1416;
  --vg-muted: #5c5356;
  --vg-gold: #c9a962;
}
.vg-hero-wrap .hero-content { max-width: 580px; }
.vg-hero-card {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 2rem 1.75rem 2.25rem;
  border: 1px solid rgba(255,255,255,0.95);
  box-shadow: 0 24px 80px rgba(26,20,22,0.12);
}
.vg-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vg-plum);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.vg-hero-card h1 {
  font-size: clamp(1.85rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--vg-dark) !important;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}
.vg-hero-sub { color: var(--vg-muted); line-height: 1.65; font-size: 1.02rem; }
.vg-chip {
  display: inline-block;
  border-radius: 100px;
  padding: 0.4rem 0.95rem;
  margin: 0.3rem 0.3rem 0 0;
  font-size: 0.78rem;
  background: linear-gradient(135deg,#fff,var(--vg-sand));
  border: 1px solid rgba(232,180,184,0.45);
}
.vg-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 2rem auto 1.5rem;
  max-width: 900px;
}
.vg-filter-btn {
  border: 1px solid rgba(107,76,92,0.25);
  background: #fff;
  color: var(--vg-dark);
  border-radius: 100px;
  padding: 0.45rem 1.1rem;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.vg-filter-btn.active,
.vg-filter-btn:hover {
  background: var(--vg-plum);
  color: #fff;
  border-color: var(--vg-plum);
}
.vg-section-title {
  text-align: center;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--vg-dark);
  margin: 2.5rem 0 0.5rem;
}
.vg-section-lead {
  text-align: center;
  color: var(--vg-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
  line-height: 1.6;
}
.vg-admin-hint {
  background: linear-gradient(135deg, #fff9f5, var(--vg-sand));
  border: 1px dashed rgba(107,76,92,0.35);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  max-width: 720px;
  margin: 2rem auto;
  font-size: 0.88rem;
  color: var(--vg-muted);
}
.vg-admin-hint a { color: var(--vg-plum); font-weight: 600; }
@media (prefers-reduced-motion: reduce) {
  .vg-marquee { animation: none !important; }
}

.vg-grid-mount {
  max-width: 1180px;
  margin: 0 auto;
}

.vg-grid--masonry {
  position: relative;
  background-color: #f6f0e4;
  background-image:
    radial-gradient(circle at 7% 10%, rgba(214, 59, 59, 0.42) 0 2.5px, transparent 3.5px),
    radial-gradient(circle at 93% 14%, rgba(214, 59, 59, 0.36) 0 2px, transparent 3px),
    radial-gradient(circle at 15% 92%, rgba(214, 59, 59, 0.32) 0 2px, transparent 3px),
    radial-gradient(circle at 84% 78%, rgba(214, 59, 59, 0.38) 0 2.5px, transparent 3.5px),
    radial-gradient(circle at 48% 4%, rgba(214, 59, 59, 0.28) 0 1.8px, transparent 2.8px),
    repeating-linear-gradient(0deg, transparent, transparent 22px, rgba(201, 169, 98, 0.05) 22px, rgba(201, 169, 98, 0.05) 23px),
    repeating-linear-gradient(90deg, transparent, transparent 22px, rgba(201, 169, 98, 0.05) 22px, rgba(201, 169, 98, 0.05) 23px);
  border: 1px dashed rgba(201, 169, 98, 0.35);
  border-radius: 14px;
  padding: 0.75rem 0.55rem 0.35rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  column-count: 3;
  column-gap: 0.75rem;
  column-width: 220px;
}

.vg-card {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  break-inside: avoid;
  margin: 0 0 0.75rem;
  padding: 0.38rem 0.4rem 0.42rem;
  background: #fffdf9;
  border: 2px dotted rgba(201, 169, 98, 0.62);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(26, 20, 22, 0.07);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.vg-card::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  z-index: 2;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle at 32% 30%, #ff8a8a 0%, #d63b3b 52%, #a82828 100%);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.28), inset 0 -1px 1px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.vg-card:nth-child(6n+1) { transform: rotate(-0.65deg); }
.vg-card:nth-child(6n+2) { transform: rotate(0.55deg); }
.vg-card:nth-child(6n+3) { transform: rotate(-0.35deg); }
.vg-card:nth-child(6n+4) { transform: rotate(0.45deg); }
.vg-card:nth-child(6n+5) { transform: rotate(-0.5deg); }
.vg-card:nth-child(6n) { transform: rotate(0.4deg); }

.vg-card:hover {
  transform: translateY(-2px) rotate(0deg);
  box-shadow: 0 8px 18px rgba(26, 20, 22, 0.1);
  z-index: 1;
}

.vg-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.vg-card-media {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px dotted rgba(201, 169, 98, 0.35);
  background: #f0ebe8;
}

.vg-card:nth-child(5n+1) .vg-card-media { aspect-ratio: 4 / 5; }
.vg-card:nth-child(5n+2) .vg-card-media { aspect-ratio: 1 / 1; }
.vg-card:nth-child(5n+3) .vg-card-media { aspect-ratio: 3 / 4; }
.vg-card:nth-child(5n+4) .vg-card-media { aspect-ratio: 5 / 6; }
.vg-card:nth-child(5n) .vg-card-media { aspect-ratio: 16 / 11; }

.vg-card-video,
.vg-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vg-card-shade {
  display: none;
}

.vg-play-badge {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--vg-plum);
  font-size: 0.58rem;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(26, 20, 22, 0.12);
}

.vg-card-tag {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  color: var(--vg-plum);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
}

.vg-card-body {
  padding: 0.55rem 0.15rem 0.1rem;
}

.vg-card-body h3 {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--vg-dark);
  margin: 0 0 0.3rem;
  line-height: 1.28;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vg-card-service {
  font-size: 0.68rem;
  color: #9d6b7a;
  margin: 0 0 0.35rem;
  font-weight: 600;
}

.vg-card-desc {
  font-size: 0.72rem;
  color: var(--vg-muted);
  line-height: 1.45;
  margin: 0 0 0.45rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vg-card-cta {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--vg-plum);
}

@media (min-width: 1200px) {
  .vg-grid--masonry {
    column-count: 4;
    column-width: 200px;
    column-gap: 0.8rem;
    padding: 0.9rem 0.7rem 0.45rem;
  }
}

@media (max-width: 767px) {
  .vg-grid--masonry {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    column-count: 2;
    column-gap: 0.65rem;
    column-width: auto;
  }

  .vg-card {
    display: grid;
    grid-template: 1fr / 1fr;
    min-height: 168px;
    margin-bottom: 0.65rem;
    padding: 0;
    border: none;
    border-radius: 18px;
    overflow: hidden;
    background: #1a1416;
    box-shadow: 0 10px 24px rgba(26, 20, 22, 0.12);
    transform: none !important;
  }

  .vg-card::before {
    display: none;
  }

  .vg-card:hover {
    transform: translateY(-2px) !important;
  }

  .vg-card-link {
    display: grid;
    grid-template: 1fr / 1fr;
    grid-area: 1 / 1;
    min-height: 168px;
  }

  .vg-card-media,
  .vg-card-body {
    grid-area: 1 / 1;
  }

  .vg-card-media {
    align-self: stretch;
    justify-self: stretch;
    min-height: 168px;
    height: 100%;
    aspect-ratio: unset;
    border: none;
    border-radius: 18px;
  }

  .vg-card:nth-child(3n+1) .vg-card-media { min-height: 188px; }
  .vg-card:nth-child(3n+2) .vg-card-media { min-height: 158px; }
  .vg-card:nth-child(3n) .vg-card-media { min-height: 172px; }

  .vg-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.08) 35%, rgba(0, 0, 0, 0.78) 100%);
    pointer-events: none;
  }

  .vg-card-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 168px;
    padding: 0.55rem 0.65rem 0.7rem;
    pointer-events: none;
  }

  .vg-card-body h3 {
    color: #fff;
    font-size: 0.82rem;
    margin-bottom: 0.2rem;
  }

  .vg-card-service {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.62rem;
    margin-bottom: 0.2rem;
  }

  .vg-card-desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.64rem;
    margin-bottom: 0.35rem;
    -webkit-line-clamp: 2;
  }

  .vg-card-cta {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.68rem;
  }

  .vg-card-tag {
    font-size: 0.54rem;
    padding: 0.18rem 0.45rem;
  }

  .vg-play-badge {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.55rem;
  }
}
.vg-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  color: #5c5356;
  max-width: 480px;
  margin: 0 auto;
}
.vg-empty a { color: #6b4c5c; font-weight: 600; }

.vg-show-page { --vg-plum: #6b4c5c; --vg-dark: #1a1416; --vg-muted: #5c5356; max-width: 960px; margin: 0 auto; padding: 5rem 1rem 4rem; }
.vg-show-back { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--vg-plum); font-weight: 600; text-decoration: none; margin-bottom: 1.5rem; font-size: 0.9rem; }
.vg-show-media {
  border-radius: 24px;
  overflow: hidden;
  background: #1a1416;
  box-shadow: 0 24px 60px rgba(26,20,22,0.2);
  margin-bottom: 1.75rem;
}
.vg-show-media video, .vg-show-media img { width: 100%; display: block; max-height: 70vh; object-fit: contain; }
.vg-show-page h1 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--vg-dark); margin-bottom: 0.5rem; }
.vg-show-meta { font-size: 0.85rem; color: var(--vg-muted); margin-bottom: 1.25rem; }
.vg-show-meta span { margin-right: 1rem; }
.vg-show-body { line-height: 1.7; color: var(--vg-dark); margin-bottom: 2rem; }
.vg-show-keywords { font-size: 0.8rem; color: var(--vg-muted); margin-bottom: 2rem; }
.vg-show-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 3rem; }
.vg-related h2 { font-size: 1.25rem; margin-bottom: 1rem; color: var(--vg-dark); }
.vg-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.vg-related-card {
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px rgba(26,20,22,0.08);
}
.vg-related-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.vg-related-card span { display: block; padding: 0.65rem 0.85rem; font-size: 0.85rem; font-weight: 600; }
