 #eleve-hero {
     
     background: #f0eee8;
     width: 100%;
 }

 /* ══════════════════════════
       TOP HERO BLOCK
    ══════════════════════════ */
 .hero-block {
     position: relative;
     width: 100%;
     background: #002AC4;
     overflow: hidden;
     min-height: 580px;
     display: flex;
     align-items: flex-end;
     justify-content: center;
 }

 /* Giant ELEVÉ text behind everything */
 .hero-wordmark {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     text-align: center;
     font-size: clamp(7rem, 22vw, 40rem);
     font-weight: 900;
     color: #d4f542;
     line-height: 0.85;
     letter-spacing: -0.02em;
     text-transform: uppercase;
     z-index: 1;
     user-select: none;
     padding-top: 10px;
     white-space: nowrap;
 }

 /* Product image on top of wordmark */
 .hero-product {
     position: relative;
     z-index: 2;
     width: 100%;
     max-width: 820px;
     display: flex;
     align-items: flex-end;
     justify-content: center;
 }

 .hero-product img {
     width: 100%;
     height: auto;
     display: block;
     object-fit: contain;
     /* image sits at the bottom, overlapping grey area */
     margin-bottom: -60px;
 }

 /* Grey bottom half behind image feet */
 .hero-ground {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 15%;
     background: #e8e5de;
     z-index: 1;
 }

 /* ══════════════════════════
       FEATURES STRIP
    ══════════════════════════ */
 .features-strip {
     background: #f0eee8;
     padding: 60px 40px 50px;
     display: flex;
     align-items: flex-start;
     justify-content: center;
     gap: 40px;
     flex-wrap: wrap;
 }

 .feat-item {
     display: flex;
     align-items: flex-start;
     gap: 18px;
     flex: 1;
     min-width: 240px;
     max-width: 340px;
 }

 .feat-icon-box {
     width: 52px;
     height: 52px;
     background: #111;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .feat-icon-box svg {
     width: 24px;
     height: 24px;
     fill: #fff;
     stroke: none;
 }

 .feat-text {}

 .feat-title {
     font-size: 2.05rem;
     font-weight: 800;
     color: #111;
     margin-bottom: 5px;
     line-height: 1.2;
 }

 .feat-desc {
     font-size: 1.78rem;
     color: #666;
     font-weight: 400;
     line-height: 1.55;
 }

 /* ── RESPONSIVE ── */
 @media (max-width: 700px) {
     .hero-block {
         min-height: 320px;
     }

     .hero-product img {
         margin-bottom: -40px;
     }

     .features-strip {
         padding: 50px 20px 40px;
         gap: 28px;
     }

     .feat-item {
         min-width: 200px;
     }
 }

 @media (max-width: 480px) {
     .hero-wordmark {
         font-size: 18vw;
     }

     .hero-block {
         min-height: 260px;
     }

     .hero-ground {
         height: 30%;
     }

     .hero-product img {
         margin-bottom: -30px;
     }

     .features-strip {
         flex-direction: column;
         align-items: flex-start;
         padding: 40px 20px 32px;
     }

     .feat-item {
         max-width: 100%;
     }
     
 }

.travel-section .hero-bg-text {
    top: 0% !important;
    left: 5% !important;
}
@media (max-width: 1024px){
    .travel-section .hero-bg-text {
    top: 6% !important;
    }
}
@media (min-width: 600px) and (max-width: 992px){
    .travel-section .hero-bg-text {
    top: 10% !important;
    }
}