.vp-hero {
  min-height: auto;
  padding-bottom: clamp(32px, 4vw, 56px);
}

.vp-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: clamp(80px, 10vw, 140px);
  gap: 16px;
}

.vp-hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 0;
}

.vp-hero-title-top {
  font-family: "IM Fell English SC", serif;
  font-size: clamp(13px, 1.4vw, 18px);
  letter-spacing: 8px;
  color: var(--cream);
  opacity: 0.5;
}

.vp-hero-title-bot {
  font-family: "Cinzel Decorative", cursive;
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--pink) 0%, var(--gold-light) 55%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: clamp(4px, 1vw, 10px);
}

.vp-hero-sub {
  max-width: 480px;
}

.vp-hero-sub p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 2vw, 24px);
  font-style: italic;
  color: var(--cream);
  opacity: 0.55;
  margin: 0;
  line-height: 1.7;
}

.vp-hero-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245, 232, 168, 0.4), transparent);
  margin: 8px 0;
}

.vp-hero-count {
  display: flex;
  justify-content: center;
}

.vp-hero-count-ring {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: clamp(100px, 12vw, 148px);
  height: clamp(100px, 12vw, 148px);
  border: 1px solid rgba(245, 232, 168, 0.18);
  border-radius: 50%;
}

.vp-hero-count-ring::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  border: 1px solid rgba(245, 232, 168, 0.07);
}

.vp-hero-count-ring::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(245, 232, 168, 0.06);
}

.vp-hero-count-num {
  font-family: "Cinzel Decorative", cursive;
  font-size: clamp(30px, 4vw, 48px);
  color: var(--gold-light);
  line-height: 1;
  filter: drop-shadow(0 0 18px rgba(245, 232, 168, 0.35));
}

.vp-hero-count-lbl {
  font-family: "IM Fell English SC", serif;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--cream);
  opacity: 0.35;
  margin-top: 4px;
}

.vp-gold-line {
  padding: clamp(24px, 4vw, 48px) clamp(24px, 6vw, 80px);
}

.vp-gold-line-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vp-gold-line-bar {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245, 232, 168, 0.45), rgba(245, 232, 168, 0.2), transparent);
}

.vp-gold-line--bot .vp-gold-line-bar {
  background: linear-gradient(to right, transparent, rgba(245, 232, 168, 0.2), rgba(245, 232, 168, 0.45), transparent);
}

.vp-gold-diamond {
  font-size: 12px;
  color: var(--gold-light);
  opacity: 0.6;
  flex-shrink: 0;
}

.vp-bubbles-section {
  padding: clamp(16px, 3vw, 40px) clamp(24px, 6vw, 80px);
}

.vp-bubbles-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(24px, 3vw, 48px);
  
  max-width: 900px;
  margin: 0 auto;
}

.vp-bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.vp-bubble.vp-visible {
  opacity: 1;
  transform: translateY(0);
}

.vp-bubble-wrap {
  position: relative;
  width: clamp(170px, 22vw, 260px);
  height: clamp(170px, 22vw, 260px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vp-bubble-bg {
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  background-size: cover;
  background-position: top center;
  filter: blur(14px) saturate(0.8);
  opacity: 0.55;
  transform: scale(1);
  transition: filter 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.vp-bubble:hover .vp-bubble-bg {
  filter: blur(16px) saturate(1.2);
  opacity: 0.85;
  transform: scale(1.18);
}

.vp-bubble-ring {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(245, 232, 168, 0.2);
  padding: 6px;
  transition: border-color 0.3s, transform 0.35s;
  box-sizing: border-box;
  z-index: 1;
  overflow: hidden;
}

.vp-bubble:hover .vp-bubble-ring {
  border-color: rgba(245, 232, 168, 0.6);
  transform: translateY(-4px) scale(1.03);
}

.vp-bubble-ring::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(245, 232, 168, 0.07);
  pointer-events: none;
  z-index: 2;
}

.vp-bubble-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: saturate(0.9);
  transition: filter 0.35s, transform 0.35s;
  position: relative;
  z-index: 1;
}

.vp-bubble:hover .vp-bubble-img {
  filter: saturate(1.15);
  transform: scale(1.06);
}

.vp-bubble-name {
  font-family: "IM Fell English SC", serif;
  font-size: clamp(11px, 1.1vw, 14px);
  letter-spacing: 3px;
  color: var(--cream);
  opacity: 0.7;
  text-align: center;
  transition: opacity 0.3s, color 0.3s;
  position: relative;
  z-index: 1;
}

.vp-bubble:hover .vp-bubble-name {
  opacity: 1;
  color: var(--gold-light);
}

.vp-cta-section {
  padding: clamp(48px, 7vw, 96px) clamp(24px, 6vw, 80px);
  text-align: center;
}

.vp-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 560px;
  margin: 0 auto;
}

.vp-cta-ornament {
  font-size: 20px;
  color: var(--gold);
  opacity: 0.5;
}

.vp-cta-title {
  font-family: "Cinzel Decorative", cursive;
  font-size: clamp(22px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--gold-light);
  margin: 0;
  line-height: 1.2;
  letter-spacing: 2px;
}

.vp-cta-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(14px, 1.2vw, 17px);
  font-style: italic;
  color: var(--cream);
  opacity: 0.6;
  line-height: 1.7;
  margin: 0;
}

.vp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1px solid rgba(245, 232, 168, 0.5);
  background: rgba(245, 232, 168, 0.06);
  font-family: "IM Fell English SC", serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--gold);
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, transform 0.25s;
}

.vp-cta-btn:hover {
  background: rgba(245, 232, 168, 0.14);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.vp-cta-btn svg {
  transition: transform 0.25s;
}

.vp-cta-btn:hover svg {
  transform: translateX(4px);
}

.vp-back-btn {
  font-family: "IM Fell English SC", serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--cream);
  opacity: 0.4;
  text-decoration: none;
  transition: opacity 0.25s;
}

.vp-back-btn:hover {
  opacity: 0.8;
}

.vp-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 6, 4, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(6px);
}

.vp-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.vp-modal {
  position: relative;
  background: rgba(18, 14, 8, 0.95);
  border: 1px solid rgba(245, 232, 168, 0.18);
  max-width: 1000px;
  width: 100%;
  max-height: 92vh;
  transform: scale(0.94) translateY(12px);
  transition: transform 0.3s;
  overflow: hidden;
}

.vp-modal-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  filter: blur(20px) saturate(0.8);
  opacity: 0.4;
  transform: scale(1.15);
  pointer-events: none;
  z-index: 0;
}

.vp-modal-overlay.open .vp-modal {
  transform: scale(1) translateY(0);
}

.vp-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(245, 232, 168, 0.2);
  background: rgba(245, 232, 168, 0.04);
  color: rgba(245, 232, 168, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, color 0.2s;
}

.vp-modal-close:hover {
  background: rgba(245, 232, 168, 0.1);
  color: var(--gold-light);
}

.vp-modal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  position: relative;
  z-index: 1;
}

.vp-modal-img-col {
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.vp-modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  min-height: 460px;
}

.vp-modal-info-col {
  padding: clamp(32px, 4vw, 56px) clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  border-left: 1px solid rgba(245, 232, 168, 0.1);
}

.vp-modal-made {
  font-family: "Cinzel Decorative", cursive;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--gold-light);
  margin: 0;
  letter-spacing: 2px;
}

.vp-modal-credits {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.vp-modal-credit-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vp-modal-credit-label {
  font-family: "IM Fell English SC", serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--cream);
  opacity: 0.45;
}

.vp-modal-credit-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(18px, 2vw, 26px);
  font-style: italic;
  color: var(--gold-light);
  line-height: 1;
  margin: 0;
}

.vp-modal-credit-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "IM Fell English SC", serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(245, 232, 168, 0.5);
  text-decoration: none;
  margin-top: 4px;
  transition: color 0.2s;
}

.vp-modal-credit-link:hover {
  color: var(--gold);
}

.vp-modal-credit-link svg {
  opacity: 0.7;
  flex-shrink: 0;
}


.vp-bubble:nth-child(3) .vp-bubble-img { object-position: 43% 20%; }
.vp-bubble:nth-child(4) .vp-bubble-img { object-position: 44% 20%; }
.vp-bubble:nth-child(5) .vp-bubble-img { object-position: 47% 20%; }
.vp-bubble:nth-child(6) .vp-bubble-img { object-position: 50% 20%; }
.vp-bubble:nth-child(7) .vp-bubble-img { object-position: 43% 20%; }
.vp-bubble:nth-child(8) .vp-bubble-img { object-position: 45% 10%; }