.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  text-align: center;
  z-index: 2;
  padding: 12% 8%;
  max-width: 800px;
  width: calc(100% - 4rem);
  position: relative;
  background: linear-gradient(135deg, 
    rgba(171, 100, 41, 0.85) 0%, 
    rgba(171, 100, 41, 0.75) 50%,
    rgba(171, 100, 41, 0.85) 100%);
  backdrop-filter: blur(10px);
  border-radius: clamp(24px, 5vw, 40px);
  margin: clamp(2rem, 4vw, 3rem);
  box-sizing: border-box;
}

@media (min-width: 769px) {
  .hero-content {
    padding: 4rem 3rem;
  }
}

.hero .logo {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  justify-content: center;
}

.hero .wordmark-logo {
  height: auto;
  max-width: min(600px, 85vw);
  width: 100%;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--ivory);
  margin-bottom: 0.5rem;
  font-weight: 300;
  font-style: italic;
}

.subtagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--ivory);
  margin-bottom: 3rem;
  font-weight: 300;
  opacity: 0.95;
}

.cta-button {
  background: transparent;
  border: 2px solid var(--ivory);
  color: var(--ivory);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 50px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--ivory);
  transition: left 0.3s ease;
  z-index: -1;
}

.cta-button:hover {
  color: var(--brown);
  box-shadow: 0 0 25px rgba(247, 233, 209, 0.4);
}

.cta-button:hover::before {
  left: 0;
}

.hero-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, 
    transparent 0%, 
    rgba(248, 229, 193, 0.05) 40%,
    rgba(248, 229, 193, 0.15) 60%,
    rgba(248, 229, 193, 0.3) 75%,
    rgba(248, 229, 193, 0.5) 85%,
    rgba(248, 229, 193, 0.7) 92%,
    rgba(248, 229, 193, 0.85) 96%,
    var(--cream) 100%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
  }
  
  .hero-content {
    padding: 10% 6%;
    width: calc(100% - 2rem);
    margin: 1rem;
  }
}

