/* Legacy Styles - Keep for compatibility and overrides */

/* Legacy Hero Styles - Keep for compatibility */
.hero{
  background: linear-gradient(135deg, #fff 0%, #faf7f2 50%, #fff3ea 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(182, 58, 43, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.hero__in{
  max-width: 1120px;
  margin: 0 auto;
  padding: 60px 18px 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 960px){ 
  .hero__in{
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 18px 30px;
  } 
}

.hero__content {
  max-width: 500px;
}

.kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(182, 58, 43, 0.08);
  border: 1px solid rgba(182, 58, 43, 0.15);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

h1{
  margin: 0 0 16px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(36px, 5.5vw, 56px);
  line-height: 1.1;
  color: var(--ink-2);
  letter-spacing: -0.02em;
  font-weight: 400;
}

.lead{
  font-size: clamp(17px, 2.5vw, 20px);
  line-height: 1.6;
  color: #4a4641;
  margin: 0 0 28px;
  font-weight: 400;
}

.hero__cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__cta .btn{
  box-shadow: 0 8px 24px rgba(18, 20, 23, 0.08);
}

.hero__cta .btn--ghost{
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(182, 58, 43, 0.2);
  color: var(--accent);
}

.hero__cta .btn--ghost:hover{
  background: rgba(255, 255, 255, 1);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Booking Closed Banner */
.booking-closed-banner{
  background: rgba(182, 58, 43, 0.08);
  border: 1px solid rgba(182, 58, 43, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  margin: 20px 0;
  text-align: center;
}

.booking-closed-text{
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.hero__media img{
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(1.1) contrast(1.05);
}

.media-overlay{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 20px;
}

.location{
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Spring Tour Announcement */
.spring-announcement{
  padding: 40px 18px;
  background: #000;
  position: relative;
}

.spring-announcement::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 99, 132, 0.03) 0%, transparent 70%);
}

.spring-announcement__content{
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 960px){
  .spring-announcement__content{
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
}

/* Coming Soon */
.coming-soon{
  font-family: "Unbounded", sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 400;
  color: #ff636c;
  letter-spacing: 6px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

@media (max-width: 960px){
  .coming-soon{
    writing-mode: horizontal-tb;
    text-orientation: initial;
  }
}

/* Spring Tour Content */
.spring-tour{
  color: #fff;
}

.spring-tour__badge{
  font-family: "Unbounded", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #ff636c;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.spring-tour__title{
  font-family: "Unbounded", sans-serif;
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 900;
  line-height: 0.9;
  margin: 0 0 8px;
  color: #fff;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.spring-tour__subtitle{
  font-family: "Unbounded", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ff636c;
  margin: 0 0 24px;
  letter-spacing: 1px;
}

/* Booking Closed Notice */
.booking-closed-notice{
  background: rgba(217, 119, 66, 0.08);
  border: 1px solid rgba(217, 119, 66, 0.2);
  border-radius: 10px;
  padding: 10px 14px;
  margin: 16px 0;
  text-align: center;
}

.booking-closed-notice-text{
  color: var(--accent-2);
  font-weight: 500;
    font-size: 13px;
  letter-spacing: 0.2px;
  }