/* VistaView SEO Brand · Gold-Frame Editorial · 2026-09-22 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Italiana&display=swap');

:root {
  --vv-forest: #004236;
  --vv-forest-deep: #002820;
  --vv-forest-mid: #0a3d32;
  --vv-forest-card: #0d4a3c;
  --vv-forest-elevated: #125544;
  --vv-gold: #D4AF37;
  --vv-gold-soft: #C5A572;
  --vv-gold-bright: #e8c96a;
  --vv-champagne: #e7d7b1;
  --vv-cream: #f7f3e8;
  --vv-cream-muted: #d8d2c4;
  --vv-line: rgba(212, 175, 55, 0.28);
  --vv-line-soft: rgba(197, 165, 114, 0.18);
  --vv-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --vv-measure: 42rem;
  --vv-radius: 18px;
  --vv-nav-h: 72px;
  --font-display: 'Italiana', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--vv-cream);
  background:
    radial-gradient(1200px 600px at 12% -10%, rgba(212, 175, 55, 0.12), transparent 55%),
    radial-gradient(900px 500px at 88% 8%, rgba(18, 85, 68, 0.55), transparent 50%),
    linear-gradient(180deg, var(--vv-forest-deep) 0%, var(--vv-forest) 42%, #00352c 100%);
  background-attachment: fixed;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(212, 175, 55, 0.03) 42%, transparent 68%),
    radial-gradient(ellipse at 70% 60%, rgba(197, 165, 114, 0.05), transparent 55%);
  animation: vv-gradient-drift 22s ease-in-out infinite alternate;
  opacity: 0.9;
}

@keyframes vv-gradient-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-1.5%, 1.2%, 0) scale(1.04); }
}

@keyframes vv-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes vv-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes vv-gold-line {
  from { transform: scaleX(0); opacity: 0.2; }
  to { transform: scaleX(1); opacity: 1; }
}

a {
  color: var(--vv-champagne);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
a:hover { color: var(--vv-gold-bright); }

img { max-width: 100%; height: auto; display: block; }

.vv-shell { position: relative; z-index: 1; }

/* —— Sticky nav —— */
.vv-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(0, 40, 32, 0.78);
  border-bottom: 1px solid var(--vv-line);
  min-height: var(--vv-nav-h);
}

.vv-nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.vv-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--vv-cream);
}

.vv-brand:hover { color: var(--vv-cream); }

.vv-brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.25));
}

.vv-brand-mark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.vv-brand-word {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  color: var(--vv-cream);
}

.vv-brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vv-gold-soft);
}

.vv-nav-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.vv-nav-links a:not(.vv-btn) {
  color: var(--vv-cream-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}
.vv-nav-links a:not(.vv-btn):hover { color: var(--vv-gold); }

.vv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--vv-gold);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(197, 165, 114, 0.08));
  color: var(--vv-cream) !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}
.vv-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.22);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.32), rgba(197, 165, 114, 0.14));
  border-color: var(--vv-gold-bright);
}
.vv-btn-solid {
  background: linear-gradient(135deg, #d4af37, #c5a572);
  color: #10231c !important;
  border-color: transparent;
}
.vv-btn-solid:hover {
  background: linear-gradient(135deg, #e8c96a, #d4af37);
  color: #0a1a14 !important;
}

/* —— Layout —— */
.vv-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3.5rem;
}

.vv-crumb {
  font-size: 0.86rem;
  color: var(--vv-cream-muted);
  margin: 0.4rem 0 1.2rem;
  animation: vv-fade-up 0.6s ease both;
}
.vv-crumb a { color: var(--vv-gold-soft); text-decoration: none; }
.vv-crumb a:hover { color: var(--vv-gold); }

/* —— Hero —— */
.vv-hero {
  position: relative;
  border: 1px solid var(--vv-line);
  border-radius: calc(var(--vv-radius) + 4px);
  padding: clamp(1.6rem, 4vw, 2.75rem);
  margin: 0 0 1.75rem;
  background:
    linear-gradient(145deg, rgba(18, 85, 68, 0.55), rgba(0, 40, 32, 0.72)),
    linear-gradient(180deg, rgba(212, 175, 55, 0.06), transparent 40%);
  box-shadow: var(--vv-shadow), inset 0 1px 0 rgba(231, 215, 177, 0.08);
  overflow: hidden;
  animation: vv-fade-up 0.75s ease both;
}

.vv-hero::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--vv-line-soft);
  border-radius: var(--vv-radius);
  pointer-events: none;
}

.vv-hero::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--vv-gold), var(--vv-champagne), var(--vv-gold), transparent);
  background-size: 200% 100%;
  animation: vv-shimmer 7s linear infinite;
  opacity: 0.85;
}

.vv-kicker {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--vv-gold);
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.vv-hero h1,
.vv-article h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.15rem);
  line-height: 1.15;
  margin: 0 0 0.9rem;
  color: var(--vv-cream);
  letter-spacing: 0.01em;
}

.vv-gold-rule {
  width: 88px;
  height: 2px;
  margin: 0 0 1.15rem;
  background: linear-gradient(90deg, var(--vv-gold), transparent);
  transform-origin: left center;
  animation: vv-gold-line 0.9s ease 0.15s both;
}

.vv-lede {
  max-width: 44rem;
  font-size: clamp(1.02rem, 2vw, 1.15rem);
  color: var(--vv-cream-muted);
  margin: 0;
}

.vv-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

/* —— Article card —— */
.vv-article {
  position: relative;
  border: 1px solid var(--vv-line);
  border-radius: var(--vv-radius);
  background: linear-gradient(180deg, rgba(13, 74, 60, 0.72), rgba(0, 50, 40, 0.86));
  box-shadow: var(--vv-shadow);
  padding: clamp(1.35rem, 3vw, 2.4rem);
  animation: vv-fade-up 0.8s ease 0.08s both;
}

.vv-article::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid var(--vv-line-soft);
  border-radius: calc(var(--vv-radius) - 6px);
  pointer-events: none;
}

.vv-prose {
  max-width: var(--vv-measure);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.vv-prose > p:first-of-type::first-letter {
  font-family: var(--font-display);
  float: left;
  font-size: 3.4rem;
  line-height: 0.82;
  padding: 0.18rem 0.45rem 0 0;
  color: var(--vv-gold);
}

.vv-prose h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  color: var(--vv-champagne);
  margin: 2.1rem 0 0.75rem;
  letter-spacing: 0.01em;
  position: relative;
  padding-left: 0.85rem;
}
.vv-prose h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  bottom: 0.28em;
  width: 2px;
  background: linear-gradient(180deg, var(--vv-gold), transparent);
  border-radius: 2px;
}

.vv-prose h3 {
  font-size: 1.08rem;
  color: var(--vv-gold-soft);
  margin: 1.4rem 0 0.45rem;
  font-weight: 600;
}

.vv-prose p { margin: 0 0 1rem; color: var(--vv-cream); }
.vv-prose ul, .vv-prose ol { padding-left: 1.2rem; margin: 0 0 1.1rem; }
.vv-prose li { margin: 0.4rem 0; }

.vv-prose strong { color: #fff8e8; font-weight: 600; }

.vv-muted { color: var(--vv-cream-muted); }

figure.vv-figure {
  margin: 1.5rem 0 1.7rem;
  padding: 0.55rem;
  border: 1px solid var(--vv-line);
  border-radius: 14px;
  background: rgba(0, 30, 24, 0.45);
  box-shadow: inset 0 0 0 1px rgba(231, 215, 177, 0.05);
}
figure.vv-figure img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: #04140f;
}
figcaption {
  color: var(--vv-cream-muted);
  font-size: 0.9rem;
  margin-top: 0.55rem;
  font-style: italic;
  padding: 0 0.2rem 0.15rem;
}

/* —— Collection cards —— */
.vv-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
  margin: 1.4rem 0 0.5rem;
}

.vv-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.2rem 1.25rem 1.3rem;
  border-radius: 16px;
  border: 1px solid var(--vv-line);
  background: linear-gradient(160deg, rgba(18, 85, 68, 0.55), rgba(0, 40, 32, 0.75));
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}
.vv-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--vv-gold), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.vv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  color: inherit;
}
.vv-card:hover::after { opacity: 1; }
.vv-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0;
  color: var(--vv-cream);
  font-weight: 400;
  line-height: 1.25;
}
.vv-card p {
  margin: 0;
  color: var(--vv-cream-muted);
  font-size: 0.95rem;
  flex: 1;
}
.vv-card-meta {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vv-gold);
  font-weight: 600;
}

/* —— CTA band —— */
.vv-cta {
  margin: 2rem 0 0;
  padding: 1.4rem 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--vv-line);
  background:
    linear-gradient(120deg, rgba(212, 175, 55, 0.14), rgba(0, 66, 54, 0.35) 45%, rgba(18, 85, 68, 0.5));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.vv-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(212, 175, 55, 0.12);
}
.vv-cta h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 0 0 0.35rem;
  color: var(--vv-cream);
  font-weight: 400;
  padding: 0;
}
.vv-cta h2::before { display: none; }
.vv-cta p { margin: 0; color: var(--vv-cream-muted); max-width: 34rem; }
.vv-cta-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }

/* —— FAQ accordion —— */
.vv-faq { margin: 1.6rem 0 0.4rem; }
.vv-faq details {
  border: 1px solid var(--vv-line-soft);
  border-radius: 12px;
  background: rgba(0, 35, 28, 0.45);
  margin: 0.55rem 0;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.vv-faq details[open] {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(13, 74, 60, 0.55);
}
.vv-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 1.1rem;
  font-weight: 600;
  color: var(--vv-champagne);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.vv-faq summary::-webkit-details-marker { display: none; }
.vv-faq summary::after {
  content: "+";
  color: var(--vv-gold);
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.vv-faq details[open] summary::after {
  content: "–";
  transform: rotate(180deg);
}
.vv-faq .vv-faq-body {
  padding: 0 1.1rem 1.05rem;
  color: var(--vv-cream-muted);
  border-top: 1px solid var(--vv-line-soft);
  animation: vv-fade-up 0.35s ease both;
}
.vv-faq .vv-faq-body p { margin: 0.75rem 0 0; }

/* —— Footer —— */
.vv-footer {
  border-top: 1px solid var(--vv-line);
  background: rgba(0, 30, 24, 0.7);
  margin-top: 2rem;
}
.vv-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.6rem 1.25rem 2.2rem;
  color: var(--vv-cream-muted);
  font-size: 0.9rem;
}
.vv-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}
.vv-footer-brand img { width: 28px; height: 28px; }
.vv-footer-brand span {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  color: var(--vv-cream);
  font-size: 1.15rem;
}
.vv-footer a { color: var(--vv-gold-soft); text-decoration: none; }
.vv-footer a:hover { color: var(--vv-gold); }
.vv-disclaimer {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #b7b1a1;
  max-width: 52rem;
}
.vv-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  margin-top: 0.75rem;
}

/* —— Misc —— */
.vv-live-note {
  font-size: 0.92rem;
  color: var(--vv-cream-muted);
  border-left: 2px solid var(--vv-gold-soft);
  padding: 0.35rem 0 0.35rem 0.85rem;
  margin: 0.9rem 0 1.2rem;
}

@media (max-width: 720px) {
  :root { --vv-nav-h: auto; }
  .vv-nav-inner { flex-direction: column; align-items: flex-start; }
  .vv-nav-links { width: 100%; justify-content: flex-start; }
  .vv-prose > p:first-of-type::first-letter {
    font-size: 2.7rem;
  }
  .vv-cta { padding: 1.15rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  body::before { opacity: 0.4; }
}

.vv-nav.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  background: rgba(0, 34, 28, 0.9);
}

/* —— MAX DRAMA AMP · 2026-09-22 —— */
@keyframes vv-pulse-gold {
  0%, 100% { box-shadow: 0 0 18px rgba(212, 175, 55, 0.22), 0 0 48px rgba(212, 175, 55, 0.08); }
  50% { box-shadow: 0 0 32px rgba(212, 175, 55, 0.45), 0 0 80px rgba(212, 175, 55, 0.18); }
}
@keyframes vv-orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes vv-bar-rise {
  from { transform: scaleY(0.12); opacity: 0.35; }
  to { transform: scaleY(1); opacity: 1; }
}
@keyframes vv-glow-breathe {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.35)); }
  50% { filter: drop-shadow(0 0 22px rgba(232, 201, 106, 0.7)); }
}
@keyframes vv-beam {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes vv-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.vv-brand-logo { animation: vv-glow-breathe 4.5s ease-in-out infinite; }

.vv-hero {
  animation: vv-fade-up 0.75s ease both, vv-pulse-gold 6s ease-in-out infinite;
}
.vv-hero::after {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--vv-gold), #fff8e0, var(--vv-gold-bright), var(--vv-gold), transparent);
  background-size: 200% 100%;
  animation: vv-shimmer 5s linear infinite;
  opacity: 1;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.65);
}

.vv-btn-solid {
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.35);
  animation: vv-pulse-gold 5s ease-in-out infinite;
}
.vv-btn-solid:hover {
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.45);
}

.vv-article {
  box-shadow: var(--vv-shadow), 0 0 60px rgba(212, 175, 55, 0.06);
}
.vv-article::before {
  box-shadow: inset 0 0 40px rgba(212, 175, 55, 0.04);
}

.vv-card {
  box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
}
.vv-card:hover {
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32), 0 0 36px rgba(212, 175, 55, 0.18);
  border-color: rgba(232, 201, 106, 0.7);
}

.vv-cta {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.12);
}
.vv-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 248, 224, 0.08) 45%, transparent 70%);
  background-size: 200% 100%;
  animation: vv-beam 8s linear infinite;
  pointer-events: none;
}

figure.vv-figure {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.12), inset 0 0 0 1px rgba(231, 215, 177, 0.08);
  animation: vv-float 7s ease-in-out infinite;
}
figure.vv-figure img {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 28px rgba(0, 0, 0, 0.35);
}

/* Beauty bombardment strip */
.vv-beauty-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.65rem;
  margin: 1.4rem 0 1.6rem;
}
.vv-beauty-chip {
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.14), rgba(0, 40, 32, 0.55));
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vv-champagne);
  font-weight: 600;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vv-beauty-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.28);
  color: var(--vv-gold-bright);
}

/* Intensity graph panels — decorative, not measured rankings */
.vv-intensity {
  margin: 1.6rem 0 1.8rem;
  padding: 1.25rem 1.3rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(212, 175, 55, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(13, 74, 60, 0.85), rgba(0, 35, 28, 0.92));
  box-shadow: 0 0 48px rgba(212, 175, 55, 0.1), inset 0 1px 0 rgba(255, 248, 224, 0.06);
  position: relative;
  overflow: hidden;
}
.vv-intensity::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -30px;
  top: -30px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  animation: vv-orbit 28s linear infinite;
  pointer-events: none;
}
.vv-intensity-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--vv-cream);
  margin: 0 0 0.35rem;
  letter-spacing: 0.02em;
}
.vv-intensity-cap {
  font-size: 0.78rem;
  color: var(--vv-cream-muted);
  font-style: italic;
  margin: 0 0 1rem;
}
.vv-intensity-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.85rem;
  height: 132px;
  padding: 0 0.2rem;
}
.vv-ibar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  height: 100%;
  justify-content: flex-end;
}
.vv-ibar-fill {
  width: 100%;
  max-width: 52px;
  border-radius: 8px 8px 4px 4px;
  transform-origin: bottom center;
  animation: vv-bar-rise 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  background: linear-gradient(180deg, #fff8e0 0%, var(--vv-gold-bright) 18%, var(--vv-gold) 55%, rgba(0, 66, 54, 0.9) 100%);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  position: relative;
}
.vv-ibar-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  background-size: 200% 100%;
  animation: vv-beam 3.5s linear infinite;
}
.vv-ibar:nth-child(1) .vv-ibar-fill { height: 58%; animation-delay: 0.05s; }
.vv-ibar:nth-child(2) .vv-ibar-fill { height: 78%; animation-delay: 0.15s; }
.vv-ibar:nth-child(3) .vv-ibar-fill { height: 92%; animation-delay: 0.25s; }
.vv-ibar:nth-child(4) .vv-ibar-fill { height: 100%; animation-delay: 0.35s; }
.vv-ibar:nth-child(5) .vv-ibar-fill { height: 86%; animation-delay: 0.45s; }
.vv-ibar-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vv-gold);
  font-weight: 600;
  text-align: center;
}

/* Drama quote / manifesto */
.vv-manifesto {
  margin: 1.5rem 0;
  padding: 1.2rem 1.35rem;
  border-left: 3px solid var(--vv-gold);
  border-radius: 0 14px 14px 0;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.12), transparent 80%);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.4;
  color: var(--vv-champagne);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.06);
}
.vv-manifesto strong { color: #fff8e0; font-weight: 400; }

.vv-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 1.2rem;
}
.vv-tag {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--vv-gold);
  background: rgba(212, 175, 55, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .vv-brand-logo,
  .vv-hero,
  .vv-btn-solid,
  figure.vv-figure,
  .vv-ibar-fill,
  .vv-intensity::before,
  .vv-cta::before,
  .vv-ibar-fill::after { animation: none !important; }
}


/* Hero cinema — above the fold beauty bomb */
.vv-hero-cinema {
  margin: 0 0 1.1rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,.55);
  box-shadow: 0 0 0 1px rgba(0,66,54,.4), 0 18px 50px rgba(0,0,0,.45), 0 0 40px rgba(212,175,55,.18);
  position: relative;
  animation: vv-fade-up 0.7s ease both;
}
.vv-hero-cinema img {
  display: block;
  width: 100%;
  height: clamp(220px, 38vw, 420px);
  object-fit: cover;
  object-position: center;
}
.vv-hero-cinema::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(0,66,54,.55));
  box-shadow: inset 0 0 0 1px rgba(212,175,55,.25);
}
