/* Hero Section: Editorial Asymmetry & Calm Reveal */
.vt-hero-section {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  background: var(--wp--preset--color--emerald, #1a3a2a);
}

.vt-hero-columns {
  min-height: 90vh;
  margin: 0 !important;
  align-items: stretch;
}

/* Left Panel - Deep Emerald */
.vt-hero-text-panel {
  background-color: var(--wp--preset--color--emerald, #1a3a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--wp--preset--spacing--xxl) var(--wp--preset--spacing--xl);
}

.vt-hero-text-inner {
  width: 100%;
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
}

.vt-hero-title {
  font-family: var(--wp--preset--font-family--playfair-display, 'Playfair Display', serif);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  color: var(--wp--preset--color--ivory, #f5f0e8);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: var(--wp--preset--spacing--large, 2rem);
  letter-spacing: -0.02em;
}

.vt-hero-cta .wp-block-button__link {
  background-color: var(--wp--preset--color--gold, #c9a96e);
  color: var(--wp--preset--color--emerald, #1a3a2a);
  font-family: var(--wp--preset--font-family--inter, 'Inter', sans-serif);
  font-weight: 600;
  padding: 1.1rem 2.8rem;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: none;
}

.vt-hero-cta .wp-block-button__link::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.vt-hero-cta .wp-block-button__link:hover::after {
  left: 100%;
}

.vt-hero-cta .wp-block-button__link:hover,
.vt-hero-cta .wp-block-button__link:focus {
  background-color: var(--wp--preset--color--ivory, #f5f0e8);
  color: var(--wp--preset--color--emerald, #1a3a2a);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
}

/* Right Panel - Image */
.vt-hero-image-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vt-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  opacity: 0;
  transform: scale(1.05);
  animation: heroImageReveal 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s forwards;
  border-left: 1px solid var(--wp--preset--color--gold, #c9a96e);
}

/* Animations */
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroImageReveal {
  to { opacity: 1; transform: scale(1); }
}

/* Mobile - Stacked Layout with Gradient Overlay */
@media (max-width: 1023px) {
  .vt-hero-section { min-height: auto; }
  .vt-hero-columns { flex-direction: column; min-height: auto; }
  .vt-hero-text-panel, .vt-hero-image-panel { flex-basis: 100% !important; width: 100%; }
  
  .vt-hero-image-panel {
    height: 60vh;
    position: relative;
  }
  
  .vt-hero-image-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 58, 42, 0.1) 0%, rgba(26, 58, 42, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
  }
  
  .vt-hero-text-panel {
    padding: var(--wp--preset--spacing--xxl) var(--wp--preset--spacing--medium);
    background: linear-gradient(to bottom, var(--wp--preset--color--cream, #faf8f3) 0%, var(--wp--preset--color--ivory, #f5f0e8) 100%);
  }
  
  .vt-hero-text-inner { text-align: center; padding: 0; }
  .vt-hero-title { font-size: clamp(2.5rem, 8vw, 3.5rem); color: var(--wp--preset--color--emerald, #1a3a2a); }
  .vt-hero-cta .wp-block-button__link { width: 100%; max-width: 320px; }
}
/* Fallback for FSE Cover Block Override */
@media (max-width: 1023px) {
}
/* Fallback for FSE Cover Block Override - Royal Emerald */
.vt-hero-cover {
  min-height: 90vh !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  position: relative !important;
  overflow: hidden !important;
}

.vt-hero-cover .wp-block-cover__image-background,
.vt-hero-cover .wp-block-cover__video-background {
  width: 55% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 56% 50% !important;
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
  border-left: 1px solid #c9a96e !important;
}

.vt-hero-cover .wp-block-cover__video-background {
  left: auto !important;
  display: block !important;
  background: #000 !important;
  transform: scale(1.85) !important;
  transform-origin: center center !important;
}

.vt-hero-cover .wp-block-cover__inner-container {
  width: 45% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  background: #1a3a2a !important;
  padding: 4rem 2rem !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  z-index: 2 !important;
  color: #f5f0e8 !important;
}

.vt-hero-cover .wp-block-cover__background {
  display: none !important;
}

.vt-hero-cover h1 {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(3.5rem, 6vw, 5.5rem) !important;
  color: #f5f0e8 !important;
  font-weight: 700 !important;
  line-height: 1.05 !important;
  margin-bottom: 2rem !important;
  letter-spacing: -0.02em !important;
}

.vt-hero-cover .wp-block-button__link {
  background-color: #c9a96e !important;
  color: #1a3a2a !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  padding: 1.1rem 2.8rem !important;
  border-radius: 2px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  transition: all 0.4s ease !important;
  min-height: 48px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.vt-hero-cover .wp-block-button__link:hover {
  background-color: #f5f0e8 !important;
  color: #1a3a2a !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3) !important;
}

@media (max-width: 1023px) {
  .vt-hero-section {
    padding-top: 1rem !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .vt-hero-cover {
    flex-direction: column !important;
    min-height: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .vt-hero-cover::before,
  .vt-hero-cover::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    width: 1rem !important;
    height: 60vh !important;
    background: #1a3a2a !important;
    z-index: 1 !important;
    pointer-events: none !important;
  }
  .vt-hero-cover::before {
    left: 0 !important;
  }
  .vt-hero-cover::after {
    right: 0 !important;
  }
  .vt-hero-cover .wp-block-cover__image-background,
  .vt-hero-cover .wp-block-cover__video-background {
    width: 100% !important;
    height: 60vh !important;
    object-position: 50% 50% !important;
    position: relative !important;
  }
  .vt-hero-cover .wp-block-cover__video-background {
    transform: scale(1.3) !important;
    transform-origin: center center !important;
  }
  .vt-hero-cover .wp-block-cover__inner-container {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    background: linear-gradient(to bottom, #faf8f3, #f5f0e8) !important;
    text-align: center !important;
    align-items: center !important;
    color: #1a3a2a !important;
    padding: 3rem 1.5rem !important;
  }
  .vt-hero-cover h1 {
    font-size: clamp(2.5rem, 8vw, 3.5rem) !important;
    color: #1a3a2a !important;
  }
}
