.site-header {
  position: relative;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #072a54;
  z-index: 10;
}
.hero-logo {
  height: 100px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  display: block;
}

.site-logo {
  height: 80px;
}

.site-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.site-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
}

.site-nav a:hover {
  color: #ecaf27;
}

.site-cta {
  background-color: #ecaf27;
  color: #072a54;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 300;
  text-decoration: none;
}

.site-cta:hover {
  background-color: #d9a81f;
}

/* Mobile Touch Support */
@media (hover: none) and (pointer: coarse) {
  .site-nav a:active,
  .site-cta:active {
    opacity: 0.8;
  }
  
  .site-nav a:active {
    color: #ecaf27;
  }
  
  .site-cta:active {
    background-color: #d9a81f;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .site-header {
    padding: 16px 24px;
  }
  
  .site-logo {
    height: 60px;
  }
  
  .site-nav ul {
    gap: 1rem;
  }
  
  .site-nav a {
    font-size: 0.9rem;
  }
  
  .site-cta {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 12px 16px;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .site-logo {
    height: 50px;
  }
  
  .site-nav {
    order: 3;
    width: 100%;
  }
  
  .site-nav ul {
    justify-content: center;
    gap: 0.8rem;
  }
  
  .site-nav a {
    font-size: 0.85rem;
  }
}
