/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', system-ui, sans-serif;
  color: #3a3a3a;
  line-height: 1.7;
  background: #f5f0eb;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; transition: color 0.2s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ========== TOPOGRAPHIC BACKGROUND PATTERN ========== */
.vr-topo-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
}
.vr-topo-bg svg {
  width: 100%;
  height: 100%;
}

/* ========== HEADER ========== */
.vr-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(245,240,235,0.95);
  border-bottom: 1px solid rgba(123,45,95,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.vr-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  background: rgba(245,240,235,0.98);
}
.vr-header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  transition: height 0.4s ease;
}
.vr-header.scrolled .vr-header-inner { height: 68px; }

.vr-logo { display: flex; align-items: center; flex-shrink: 0; }
.vr-logo img { height: 70px; width: auto; transition: height 0.4s ease; }
.vr-header.scrolled .vr-logo img { height: 50px; }

/* Nav */
.vr-nav { display: flex; align-items: center; gap: 4px; }
.vr-nav a {
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
  border-radius: 0;
  transition: all 0.25s ease;
  position: relative;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.vr-nav a:hover { color: #7B2D5F; }
.vr-nav a.active { color: #7B2D5F; font-weight: 700; }
.vr-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 2px;
  background: #7B2D5F;
}

/* CTA */
.vr-nav-cta {
  background: #7B2D5F !important;
  color: #fff !important;
  padding: 10px 26px !important;
  border-radius: 0 !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase !important;
  transition: all 0.3s ease !important;
  margin-left: 10px;
}
.vr-nav-cta:hover {
  background: #5C1E47 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(123,45,95,0.3) !important;
}
.vr-nav-cta::after { display: none !important; }

/* Hamburger */
.vr-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 10;
}
.vr-hamburger span {
  width: 24px;
  height: 2px;
  background: #7B2D5F;
  border-radius: 0;
  transition: all 0.3s ease;
}
.vr-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.vr-hamburger.active span:nth-child(2) { opacity: 0; }
.vr-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== RESPONSIVE HEADER ========== */
@media (max-width: 900px) {
  .vr-hamburger { display: flex; z-index: 2001; position: relative; }
  .vr-nav {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(245,240,235,0.99);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 2000;
  }
  .vr-nav.open { display: flex; }
  .vr-nav a { font-size: 1.1rem; padding: 14px 32px; }
  .vr-nav-cta {
    margin-left: 0 !important;
    margin-top: 16px;
    padding: 14px 36px !important;
    font-size: 1rem !important;
  }
  .vr-logo img { height: 60px; }
  .vr-header-inner { height: 76px; }
  .vr-hamburger span { width: 28px; height: 2.5px; }
  .vr-hamburger { gap: 6px; padding: 10px; }
}

/* ========== HERO ========== */
.vr-hero {
  margin-top: 90px;
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 28px;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.vr-hero-img {
  flex: 0 0 46%;
  position: relative;
  overflow: visible;
  opacity: 0;
  transform: translateX(-40px);
  animation: heroSlideIn 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
  animation-delay: 0.1s;
}
/* Decorative angular frame around hero image (like reference) */
.vr-hero-img::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 4px solid #7B2D5F;
  z-index: -1;
  transition: transform 0.5s ease;
}
.vr-hero-img:hover::before {
  transform: translate(4px, -4px);
}
.vr-hero-img::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 60%;
  height: 60%;
  background: rgba(123,45,95,0.1);
  z-index: -1;
}
.vr-hero-img img { width: 100%; height: auto; display: block; position: relative; z-index: 1; }
.vr-hero-content { flex: 1; }
.vr-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
  animation-delay: 0.25s;
}
.vr-hero-content h1 em {
  font-style: italic;
  font-weight: 400;
  color: #7B2D5F;
  text-transform: none;
  display: block;
  font-size: 1.8rem;
  margin-bottom: 8px;
  letter-spacing: 0;
}
.vr-hero-content p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
  animation-delay: 0.5s;
}
.vr-hero-content .vr-hero-sub {
  font-size: 0.88rem;
  color: #888;
  margin-top: 12px;
  animation-delay: 0.7s;
}

@keyframes heroFadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes heroSlideIn { to { opacity: 1; transform: translateX(0); } }

@media (max-width: 900px) {
  .vr-hero {
    margin-top: 76px;
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
  }
  .vr-hero-img { flex: none; width: 85%; margin: 0 auto; }
  .vr-hero-content { text-align: center; }
  .vr-hero-content h1 { font-size: 2.2rem; }
  .vr-hero-content h1 em { font-size: 1.4rem; }
  .vr-hero-content p { font-size: 1.02rem; }
}

/* ========== SECTION TITLES ========== */
.vr-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #2d2d2d;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.vr-section-subtitle {
  text-align: center;
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 50px;
  letter-spacing: 0.02em;
}

/* ========== SECTION DECORATIVE LINE ========== */
.vr-servizi::before,
.vr-perche::before,
.vr-galleria::before {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: #7B2D5F;
  margin: 0 auto 40px;
}

/* ========== BUTTONS ========== */
.vr-btn-outline {
  display: inline-block;
  border: 2px solid #7B2D5F;
  color: #7B2D5F;
  padding: 12px 30px;
  border-radius: 0;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  margin-top: 24px;
}
.vr-btn-outline:hover {
  background: #7B2D5F;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123,45,95,0.25);
}
.vr-btn-primary {
  display: inline-block;
  background: #7B2D5F;
  color: #fff;
  padding: 14px 34px;
  border-radius: 0;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.vr-btn-primary:hover {
  background: #5C1E47;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123,45,95,0.3);
}
.vr-btn-outline-white {
  border-color: rgba(255,255,255,0.5) !important;
  color: #fff !important;
}
.vr-btn-outline-white:hover {
  background: #fff !important;
  color: #7B2D5F !important;
  border-color: #fff !important;
}

/* ========== CHI SIAMO ========== */
.vr-chi-siamo {
  background: #ece6df;
  padding: 90px 28px;
  position: relative;
}
.vr-chi-siamo-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 56px;
}
.vr-chi-siamo-img {
  flex: 0 0 40%;
  position: relative;
  overflow: visible;
}
/* Decorative frame on chi-siamo image */
.vr-chi-siamo-img::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 100%;
  height: 100%;
  border: 3px solid #7B2D5F;
  z-index: 0;
}
.vr-chi-siamo-img img { width: 100%; height: auto; position: relative; z-index: 1; }
.vr-chi-siamo-text { flex: 1; }
.vr-chi-siamo-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #2d2d2d;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.vr-chi-siamo-text p {
  color: #666;
  line-height: 1.85;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.vr-chi-siamo-text .vr-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #7B2D5F;
  border-left: 3px solid #7B2D5F;
  padding: 16px 18px;
  margin-top: 22px;
  background: rgba(123,45,95,0.04);
}
@media (max-width: 900px) {
  .vr-chi-siamo { padding: 60px 20px; }
  .vr-chi-siamo-inner { flex-direction: column; gap: 28px; }
  .vr-chi-siamo-img { flex: none; width: 80%; margin: 0 auto; }
  .vr-chi-siamo-text { text-align: center; }
  .vr-chi-siamo-text h2 { font-size: 1.8rem; }
  .vr-chi-siamo-text p { font-size: 1.02rem; }
  .vr-chi-siamo-text .vr-quote { text-align: left; }
}

/* ========== SERVIZI ========== */
.vr-servizi {
  padding: 90px 28px;
  background: #f5f0eb;
  position: relative;
}
.vr-servizi-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.vr-servizio-card {
  background: #fff;
  border: 1px solid rgba(123,45,95,0.06);
  padding: 36px 24px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
}
.vr-servizio-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #7B2D5F;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.vr-servizio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.vr-servizio-card:hover::before { transform: scaleX(1); }
.vr-servizio-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: inline-block;
  width: 64px;
  height: 64px;
  line-height: 64px;
  background: #f5f0eb;
}
.vr-servizio-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #2d2d2d;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.vr-servizio-card p {
  font-size: 0.87rem;
  color: #777;
  line-height: 1.7;
}
/* Hover shine effect */
.vr-servizio-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  transition: transform 0.7s ease;
  transform: translateX(-100%);
}
.vr-servizio-card:hover::after {
  transform: translateX(100%);
}
@media (max-width: 900px) {
  .vr-servizi { padding: 60px 20px; }
  .vr-servizi-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .vr-servizio-card { padding: 24px 16px; }
  .vr-servizio-card h3 { font-size: 1.1rem; }
  .vr-servizio-card p { font-size: 0.95rem; }
  .vr-section-title { font-size: 1.9rem; }
  .vr-section-subtitle { font-size: 1.02rem; }
}
@media (max-width: 500px) {
  .vr-servizi-grid { grid-template-columns: 1fr; }
}

/* ========== STAGGERED CARD ENTRANCE ========== */
.vr-servizio-card.vr-fade-in:nth-child(1) { transition-delay: 0s; }
.vr-servizio-card.vr-fade-in:nth-child(2) { transition-delay: 0.15s; }
.vr-servizio-card.vr-fade-in:nth-child(3) { transition-delay: 0.3s; }
.vr-servizio-card.vr-fade-in:nth-child(4) { transition-delay: 0.45s; }
.vr-perche-item.vr-fade-in:nth-child(1) { transition-delay: 0s; }
.vr-perche-item.vr-fade-in:nth-child(2) { transition-delay: 0.12s; }
.vr-perche-item.vr-fade-in:nth-child(3) { transition-delay: 0.24s; }
.vr-perche-item.vr-fade-in:nth-child(4) { transition-delay: 0.36s; }
.vr-perche-item.vr-fade-in:nth-child(5) { transition-delay: 0.48s; }
.vr-perche-item.vr-fade-in:nth-child(6) { transition-delay: 0.6s; }

/* ========== PERCHE SCEGLIERCI ========== */
.vr-perche {
  padding: 90px 28px;
  background: #ece6df;
  position: relative;
}
.vr-perche-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vr-perche-item {
  background: #fff;
  padding: 34px 26px;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  border: 1px solid rgba(123,45,95,0.04);
  position: relative;
  overflow: hidden;
}
.vr-perche-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
/* Corner accents */
.vr-perche-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 30px; height: 30px;
  border-top: 2px solid rgba(123,45,95,0.2);
  border-left: 2px solid rgba(123,45,95,0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.vr-perche-item::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 30px; height: 30px;
  border-bottom: 2px solid rgba(123,45,95,0.2);
  border-right: 2px solid rgba(123,45,95,0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.vr-perche-item:hover::before,
.vr-perche-item:hover::after {
  opacity: 1;
}
.vr-perche-item .vr-perche-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background: #f5f0eb;
}
.vr-perche-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #2d2d2d;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.vr-perche-item p {
  font-size: 0.89rem;
  color: #777;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .vr-perche { padding: 60px 20px; }
  .vr-perche-grid { grid-template-columns: 1fr; gap: 14px; }
  .vr-perche-item { padding: 26px 20px; }
  .vr-perche-item h3 { font-size: 1.1rem; }
  .vr-perche-item p { font-size: 0.96rem; }
}

/* ========== LA NOSTRA GIORNATA ========== */
.vr-giornata { padding: 90px 28px; background: #f5f0eb; }
.vr-giornata-inner { max-width: 900px; margin: 0 auto; }
.vr-giornata-timeline { position: relative; padding-left: 44px; }
.vr-giornata-timeline::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #7B2D5F, rgba(123,45,95,0.1));
}
.vr-giornata-item { position: relative; margin-bottom: 30px; }
.vr-giornata-item::before {
  content: '';
  position: absolute;
  left: -37px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: #7B2D5F;
  box-shadow: 0 0 0 4px #f5f0eb, 0 0 0 5px rgba(123,45,95,0.15);
}
.vr-giornata-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem;
  color: #2d2d2d;
  margin-bottom: 4px;
}
.vr-giornata-item h4 span {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: #7B2D5F;
  background: rgba(123,45,95,0.08);
  padding: 2px 10px;
  margin-right: 10px;
  letter-spacing: 0.04em;
}
.vr-giornata-item p { font-size: 0.9rem; color: #777; line-height: 1.65; }
.vr-giornata-desc {
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
  color: #777;
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ========== GALLERIA ========== */
.vr-galleria {
  padding: 90px 28px;
  background: #ece6df;
  position: relative;
}
.vr-galleria-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.vr-galleria-grid-home { max-width: 920px; }
.vr-galleria-item {
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  position: relative;
}
.vr-galleria-item:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.vr-galleria-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(123,45,95,0);
  transition: background 0.4s ease;
}
.vr-galleria-item:hover::after {
  background: rgba(123,45,95,0.1);
}
.vr-galleria-item img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .vr-galleria { padding: 60px 20px; }
  .vr-galleria-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ========== CTA SECTION ========== */
.vr-cta-section {
  background: #7B2D5F;
  padding: 90px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Subtle topo-like decorative lines */
.vr-cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.vr-cta-inner { position: relative; z-index: 1; }
.vr-cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.vr-cta-inner p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-bottom: 34px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}
.vr-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; }
.vr-cta-buttons .vr-btn-outline { margin-top: 0; padding: 14px 34px; font-size: 0.88rem; }
.vr-cta-buttons .vr-btn-primary {
  background: #fff;
  color: #7B2D5F;
}
.vr-cta-buttons .vr-btn-primary:hover {
  background: #ece6df;
  color: #5C1E47;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ========== CONTATTI ========== */
.vr-contatti { padding: 90px 28px; background: #f5f0eb; }
.vr-contatti-inner { max-width: 1140px; margin: 0 auto; display: flex; gap: 50px; }
.vr-contatti-info { flex: 1; }
.vr-contatti-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #2d2d2d;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.vr-contatto-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 14px 18px;
  transition: background 0.2s ease;
}
.vr-contatto-item:hover { background: rgba(123,45,95,0.04); }
.vr-contatto-item .icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background: #ece6df;
}
.vr-contatto-item .text { font-size: 0.95rem; color: #555; line-height: 1.6; }
.vr-contatto-item .text strong { color: #2d2d2d; }
.vr-contatto-item .text a { color: #7B2D5F; font-weight: 600; }
.vr-contatto-item .text a:hover { color: #5C1E47; }
.vr-contatti-map {
  flex: 1;
  overflow: hidden;
  min-height: 380px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}
.vr-contatti-map iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 900px) {
  .vr-contatti { padding: 60px 20px; }
  .vr-contatti-inner { flex-direction: column; gap: 30px; }
  .vr-contatti-map { min-height: 280px; }
  .vr-contatti-info h2 { font-size: 1.7rem; }
  .vr-contatto-item { padding: 10px 12px; }
  .vr-contatto-item .text { font-size: 1.02rem; }
  .vr-page-content p { font-size: 1.02rem; }
  .vr-page-content h2 { font-size: 1.7rem; }
}

/* ========== PAGE HEADER ========== */
.vr-page-header {
  margin-top: 90px;
  background: #7B2D5F;
  padding: 70px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vr-page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.vr-page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.vr-page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 620px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 900px) {
  .vr-page-header { margin-top: 76px; padding: 50px 20px; }
  .vr-page-header h1 { font-size: 2rem; }
  .vr-page-header p { font-size: 1.05rem; }
}

/* ========== PAGE CONTENT ========== */
.vr-page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 28px;
}
.vr-page-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #2d2d2d;
  margin-bottom: 16px;
  margin-top: 44px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.vr-page-content h2:first-child { margin-top: 0; }
.vr-page-content p {
  color: #666;
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

/* ========== FOOTER ========== */
.vr-footer {
  background: #2d2024;
  color: rgba(255,255,255,0.6);
  padding: 56px 28px 28px;
  text-align: center;
  position: relative;
}
.vr-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: #7B2D5F;
}
.vr-footer-logo {
  height: 48px;
  margin: 0 auto 18px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.vr-footer p { font-size: 0.85rem; margin-bottom: 6px; }
.vr-footer a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.vr-footer a:hover { color: #fff; }
.vr-footer-line {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 28px;
  padding-top: 18px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ========== SCROLL ANIMATIONS ========== */
.vr-fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.vr-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.vr-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.vr-slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.vr-slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.vr-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.vr-scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.vr-scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* ========== IMAGE HOVER ZOOM ========== */
.vr-chi-siamo-img img,
.vr-hero-img img {
  transition: transform 1.2s cubic-bezier(0.16,1,0.3,1);
}
.vr-chi-siamo-img:hover img,
.vr-hero-img:hover img {
  transform: scale(1.04);
}

/* ========== FLOATING FACEBOOK BUTTON ========== */
.vr-float-fb {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 52px;
  height: 52px;
  background: #1877F2;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(24,119,242,0.3);
  z-index: 900;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.vr-float-fb:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(24,119,242,0.4);
}

/* ========== FLOATING REVIEWS BUTTON ========== */
.vr-float-reviews {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #7B2D5F;
  border-radius: 0;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(123,45,95,0.3);
  z-index: 900;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.vr-float-reviews:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(123,45,95,0.4);
}
.vr-float-reviews-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #fbbc04;
  color: #333;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 0;
  line-height: 1;
}

/* ========== REVIEWS PANEL ========== */
.vr-reviews-panel {
  position: fixed;
  bottom: 88px;
  right: 24px;
  width: 360px;
  max-height: 520px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  z-index: 901;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}
.vr-reviews-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.vr-reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: #f5f0eb;
}
.vr-reviews-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #2d2d2d;
  display: flex;
  align-items: center;
}
.vr-reviews-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #999;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.2s;
}
.vr-reviews-close:hover { color: #333; }
.vr-reviews-summary {
  text-align: center;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.vr-reviews-stars {
  font-size: 1.6rem;
  color: #fbbc04;
  letter-spacing: 2px;
}
.vr-reviews-score {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-top: 4px;
}
.vr-reviews-count {
  font-size: 0.78rem;
  color: #999;
  margin-top: 2px;
}
.vr-reviews-list {
  flex: 1;
  overflow-y: auto;
  padding: 12px 20px;
}
.vr-review-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.vr-review-item:last-child { border-bottom: none; }
.vr-review-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.vr-review-avatar {
  width: 36px;
  height: 36px;
  background: #7B2D5F;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.vr-review-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: #2d2d2d;
}
.vr-review-stars-sm {
  font-size: 0.75rem;
  color: #fbbc04;
  letter-spacing: 1px;
}
.vr-review-text {
  font-size: 0.84rem;
  color: #666;
  line-height: 1.6;
  font-style: italic;
}
.vr-reviews-cta {
  display: block;
  text-align: center;
  padding: 14px 20px;
  background: #7B2D5F;
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.vr-reviews-cta:hover { opacity: 0.9; color: #fff; }

@media (max-width: 900px) {
  .vr-float-fb { bottom: 18px; left: 16px; width: 46px; height: 46px; }
  .vr-float-fb svg { width: 20px; height: 20px; }
  .vr-float-reviews { bottom: 18px; right: 16px; width: 46px; height: 46px; }
  .vr-float-reviews svg { width: 18px; height: 18px; }
  .vr-reviews-panel { right: 8px; left: 8px; width: auto; bottom: 74px; max-height: 70vh; }
}

/* ========== POLICY PAGES ========== */
.vr-policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 28px 70px;
}
.vr-policy-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #2d2d2d;
  margin-top: 40px;
  margin-bottom: 14px;
}
.vr-policy-content h2:first-child { margin-top: 0; }
.vr-policy-content p,
.vr-policy-content li {
  color: #555;
  line-height: 1.85;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.vr-policy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.vr-policy-content a { color: #7B2D5F; text-decoration: underline; }
.vr-policy-content a:hover { color: #5C1E47; }

/* ========== FOOTER LINKS ========== */
.vr-footer-links {
  margin-top: 14px;
  font-size: 0.8rem;
}
.vr-footer-links a {
  color: rgba(255,255,255,0.5);
  margin: 0 8px;
}
.vr-footer-links a:hover { color: rgba(255,255,255,0.9); }

/* ========== HIDE FLOATING BUTTONS WHEN MENU OPEN ========== */
body.vr-menu-open .vr-float-fb,
body.vr-menu-open .vr-float-reviews,
body.vr-menu-open .vr-reviews-panel {
  display: none !important;
}

/* ========== WAVE DIVIDERS (kept for compatibility) ========== */
.vr-wave-divider { display: none; }
.vr-wave-divider-flip { display: none; }

/* ========== LEGACY ELEMENTS (hidden) ========== */
.vr-bg-effects { display: none; }
.vr-particles { display: none; }

/* MODERN HERO OVERRIDE */
.vr-hero-modern {
    position: relative;
    width: 100%;
    height: calc(100vh - 90px);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 90px;
    padding: 0 5%;
}
.vr-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}
.vr-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.vr-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(46, 32, 36, 0.9) 0%, rgba(123, 45, 95, 0.6) 100%);
    z-index: 1;
}
.vr-hero-modern-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    color: #fff;
}
.vr-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}
.vr-hero-modern-content h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.vr-hero-modern-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.vr-hero-modern-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}
.vr-btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
    border-radius: 4px;
}
.vr-btn-outline-white {
    border: 2px solid rgba(255,255,255,0.8) !important;
    background: transparent !important;
    color: #fff !important;
    padding: 14px 36px !important;
    font-size: 1.1rem !important;
    border-radius: 4px !important;
    font-weight: 600;
    transition: all 0.3s ease;
}
.vr-btn-outline-white:hover {
    background: #fff !important;
    color: #7B2D5F !important;
}
@media (max-width: 900px) {
    .vr-hero-modern { margin-top: 76px; height: calc(100vh - 76px); }
    .vr-hero-modern-content h1 { font-size: 3.2rem; }
}
@media (max-width: 768px) {
    .vr-hero-modern { min-height: 550px; }
    .vr-hero-modern-content h1 { font-size: 2.5rem; }
    .vr-hero-modern-content p { font-size: 1.1rem; }
    .vr-hero-modern-actions { flex-direction: column; }
}


/* SPLIT HERO CSS */
.vr-hero-split {
    padding: 140px 5% 80px 5%;
    background: #fdfbf7;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.vr-hero-split-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}
.vr-hero-split-left {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
}
.vr-hero-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: visible;
}
.vr-hero-image-wrapper img {
    border-radius: 8px;
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.vr-hero-image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid #7B2D5F;
    border-radius: 8px;
    z-index: 1;
}
.vr-hero-split-right {
    flex: 0 0 50%;
    max-width: 50%;
}
.vr-hero-split-right h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.15;
    color: #2d2d2d;
    margin-bottom: 24px;
}
.vr-hero-split-right p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
}
.vr-hero-badge {
    display: inline-block;
    background: rgba(123, 45, 95, 0.1);
    color: #7B2D5F;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.vr-hero-actions {
    display: flex;
    gap: 16px;
}
@media (max-width: 992px) {
    .vr-hero-split-container {
        flex-direction: column;
        text-align: center;
    }
    .vr-hero-split-left, .vr-hero-split-right {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .vr-hero-image-decoration {
        top: -15px; left: -15px;
    }
    .vr-hero-actions {
        justify-content: center;
    }
    .vr-hero-split-right h1 {
        font-size: 2.8rem;
        margin-top: 30px;
    }
}
@media (max-width: 768px) {
    .vr-hero-split { padding-top: 120px; }
    .vr-hero-actions {
        flex-direction: column;
    }
    .vr-hero-split-right h1 {
        font-size: 2.3rem;
    }
}
