/**
 * Versailles Capital — editorial hero (supporting static pages)
 * Brand easing: cubic-bezier(0.16, 1, 0.3, 1)
 */
:root {
  --vc-hero-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes vc-hero-reveal {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .vc-hero__kicker,
  .vc-hero__title,
  .vc-hero__sub,
  .vc-hero__rule,
  .vc-hero__aside {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.vc-hero {
  position: relative;
  min-height: min(78vh, 860px);
  display: flex;
  align-items: center;
  padding: clamp(96px, 15vh, 168px) clamp(24px, 5vw, 56px);
  overflow: hidden;
  background: #1a2744;
}

.vc-hero__canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.vc-hero__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 130% 90% at 50% -25%, rgba(184, 160, 112, 0.18), transparent 58%),
    radial-gradient(ellipse 85% 65% at 105% 40%, rgba(26, 39, 68, 0.55), transparent 52%),
    radial-gradient(ellipse 70% 50% at -5% 80%, rgba(122, 143, 163, 0.08), transparent 45%),
    linear-gradient(180deg, rgba(26, 39, 68, 0.35) 0%, transparent 42%, rgba(0, 0, 0, 0.12) 100%);
}

.vc-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}

.vc-hero__glow--1 {
  width: min(72vw, 560px);
  height: min(72vw, 560px);
  background: rgba(184, 160, 112, 0.14);
  top: -18%;
  right: -20%;
}

.vc-hero__glow--2 {
  width: min(58vw, 440px);
  height: min(58vw, 440px);
  background: rgba(122, 143, 163, 0.1);
  bottom: -25%;
  left: -12%;
}

.vc-hero__script {
  position: absolute;
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(96px, min(26vw, 260px), 280px);
  color: rgba(255, 255, 255, 0.045);
  white-space: nowrap;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  letter-spacing: 0.02em;
  line-height: 1;
}

.vc-hero__frame {
  position: absolute;
  inset: clamp(14px, 2.5vw, 26px);
  border: 0.5px solid rgba(184, 160, 112, 0.28);
  border-radius: 1px;
  pointer-events: none;
  z-index: 1;
  box-shadow: inset 0 0 0 1px rgba(26, 39, 68, 0.15);
}

.vc-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
}

.vc-hero__inner--narrow {
  max-width: 720px;
}

.vc-hero__kicker {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #b8a070;
  margin-bottom: clamp(22px, 3.2vw, 32px);
  padding-bottom: 16px;
  border-bottom: 0.5px solid rgba(184, 160, 112, 0.5);
  animation: vc-hero-reveal 1.25s var(--vc-hero-ease) 0.06s both;
}

.vc-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(40px, 5.8vw, 68px);
  color: #f7f4ef;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: clamp(22px, 3vw, 32px);
  text-wrap: balance;
  animation: vc-hero-reveal 1.4s var(--vc-hero-ease) 0.14s both;
}

.vc-hero__sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.22vw, 18px);
  line-height: 1.92;
  color: rgba(253, 251, 247, 0.74);
  max-width: 560px;
  animation: vc-hero-reveal 1.55s var(--vc-hero-ease) 0.24s both;
}

.vc-hero__rule {
  margin-top: clamp(40px, 5.5vw, 56px);
  width: 80px;
  height: 0.5px;
  background: linear-gradient(90deg, #b8a070, rgba(184, 160, 112, 0.15));
  animation: vc-hero-reveal 1.65s var(--vc-hero-ease) 0.34s both;
}

/* Centered variant (Assessment) */
.vc-hero--center {
  text-align: center;
}

.vc-hero--center .vc-hero__inner {
  margin-left: auto;
  margin-right: auto;
}

.vc-hero--center .vc-hero__kicker {
  border-bottom: none;
  padding-bottom: 0;
}

.vc-hero--center .vc-hero__kicker::after {
  content: '';
  display: block;
  width: 40px;
  height: 0.5px;
  background: #b8a070;
  margin: 16px auto 0;
  opacity: 0.85;
}

.vc-hero--center .vc-hero__sub {
  margin-left: auto;
  margin-right: auto;
  max-width: 580px;
}

.vc-hero--center .vc-hero__rule {
  margin-left: auto;
  margin-right: auto;
}

/* Split variant (Pulse) */
.vc-hero--split .vc-hero__inner {
  max-width: 1120px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: clamp(32px, 5vw, 48px);
}

.vc-hero__main {
  flex: 1 1 320px;
  min-width: min(100%, 320px);
}

.vc-hero__aside {
  flex: 0 0 auto;
  text-align: right;
  padding-bottom: 4px;
  animation: vc-hero-reveal 1.45s var(--vc-hero-ease) 0.2s both;
}

.vc-hero__date-mo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(56px, 9vw, 104px);
  color: rgba(247, 244, 239, 0.42);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.vc-hero__date-yr {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(122, 143, 163, 0.9);
  margin-top: 14px;
}

@media (max-width: 720px) {
  .vc-hero--split .vc-hero__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .vc-hero__aside {
    text-align: left;
    width: 100%;
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding-top: 8px;
    border-top: 0.5px solid rgba(184, 160, 112, 0.2);
  }

  .vc-hero__date-mo {
    font-size: clamp(48px, 14vw, 72px);
  }
}
