.vf-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  background:transparent;
  transition:background 0.3s ease, box-shadow 0.3s ease;
}

.vf-header.scrolled{
  background:var(--color-surface-elevated);
  box-shadow:var(--shadow-soft);
}

.vf-header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:80px;
  gap:var(--space-3);
}

.vf-header-spacer{
  height:80px;
}

.vf-brand{
  display:flex;
  align-items:center;
  gap:var(--space-2);
  flex-shrink:0;
}

.vf-logo{
  height:44px;
  width:auto;
}

.vf-brand-text{
  font-family:var(--font-heading);
  font-size:1.4rem;
}

.vf-nav{
  display:flex;
  align-items:center;
  gap:var(--space-4);
}

.vf-nav-list{
  display:flex;
  gap:var(--space-3);
  margin:0;
  padding:0;
}

.vf-nav-list li{
  margin:0;
  padding:0;
}

.vf-nav a{
  font-size:var(--fs-small);
  letter-spacing:0.08em;
  text-transform:uppercase;
  position:relative;
}

.vf-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:1px;
  background:var(--color-accent-gold);
  transition:width 0.25s ease;
}

.vf-nav a:hover::after{
  width:100%;
}

.vf-nav-toggle{
  display:none;
  width:48px;
  height:48px;
  align-items:center;
  justify-content:center;
}

.vf-nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:var(--color-text-primary);
}

@media(max-width:900px){
  .vf-nav{
    position:fixed;
    top:0;
    right:0;
    height:100vh;
    width:280px;
    background:var(--color-surface-elevated);
    flex-direction:column;
    align-items:flex-start;
    padding:var(--space-5) var(--space-3);
    transform:translateX(100%);
    transition:transform 0.3s ease;
    box-shadow:var(--shadow-soft);
  }

  .vf-nav.open{
    transform:translateX(0);
  }

  .vf-nav-list{
    flex-direction:column;
    width:100%;
    gap:var(--space-3);
  }

  .vf-nav-cta{
    width:100%;
    margin-top:var(--space-3);
  }

  .vf-nav-toggle{
    display:flex;
    z-index: 1111;
  }
}
