/* ==========================================
   HOMEPAGE STYLES - New Design
   ========================================== */

/* Variables */
.yml-homepage {
    --hp-primary: #EDA86A;
    --hp-secondary: #112A44;
    --hp-sky: #5C8CA7;
    --hp-cream: #FFFEF6;
    --hp-text: #333333;
    --hp-border: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
}

.yml-homepage * {
    box-sizing: border-box;
}

/* Container */
.hp-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Dot prefix */
.hp-dot {
    color: var(--hp-primary);
    font-weight: 800;
}

/* Section headers */
.hp-section-header {
    margin-bottom: 40px;
}

.hp-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--hp-text);
    margin-bottom: 2px;
    line-height: 1.2;
}

.hp-section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--hp-primary);
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.hp-section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--hp-primary);
}

/* Buttons */
.hp-btn-orange {
    background-color: var(--hp-primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.hp-btn-orange:hover {
    background-color: #d89454;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(237, 168, 106, 0.3);
}

.hp-btn-explore {
    background-color: var(--hp-primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hp-btn-explore:hover {
    background-color: #d4944e;
    color: white;
    transform: translateY(-2px);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hp-hero {
    min-height: 68vh; /* trimmed so the Featured Chalets heading + top of the first card row peek above the fold on common screens (encourages scrolling) */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0;
}

.hp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(17, 42, 68, 0.35) 0%,
        rgba(17, 42, 68, 0.15) 40%,
        rgba(17, 42, 68, 0.35) 100%
    );
    z-index: 1;
}

.hp-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hp-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hp-hero-title .hp-dot {
    font-size: 52px;
}

.hp-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    max-width: 600px;
    margin: 14px auto 0;
    line-height: 1.5;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hp-hero-subtitle {
        font-size: 16px;
        margin-top: 10px;
    }
}

/* ==========================================
   SEARCH FORM
   ========================================== */

.hp-search-form {
    max-width: 750px;
    margin: 40px auto 0;
}

.hp-search-container {
    display: flex;
    align-items: flex-end;
    background: white;
    padding: 10px 15px;
    border-radius: 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    gap: 0;
}

.hp-search-field {
    flex: 1;
    padding: 0 15px;
}

.hp-search-field label {
    font-size: 11px;
    font-weight: 600;
    color: var(--hp-text);
    margin-bottom: -2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.hp-search-divider {
    width: 1px;
    height: 40px;
    background-color: var(--hp-border);
    flex-shrink: 0;
}

.hp-search-input {
    border: none !important;
    padding: 6px 0 !important;
    font-size: 13px;
    font-weight: 400;
    color: #999;
    background: transparent !important;
    box-shadow: none !important;
    width: 100%;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    -webkit-appearance: none;
}

.hp-search-input::placeholder {
    color: #bbb;
    font-weight: 400;
    font-size: 12px;
}

.hp-search-btn {
    background-color: var(--hp-primary);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
    font-size: 18px;
    gap: 10px;
}

.hp-search-btn .hp-search-btn-text {
    display: none;
    color: #fff;
    margin-bottom: 0;
    font-weight: 500;
}

.hp-search-btn:hover {
    background-color: #d89454;
    color: white;
    transform: scale(1.05);
}

/* ==========================================
   FEATURED CHALETS
   ========================================== */

.hp-featured {
    background-color: var(--hp-cream);
    padding: 80px 0 60px;
}

.hp-chalets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    overflow: hidden;
}

/* View All Chalets Button */
.hp-view-all-chalets {
    text-align: center;
    margin-top: 40px;
}

.hp-btn-view-all {
    background-color: var(--hp-primary);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.hp-btn-view-all:hover {
    background-color: #d89454;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(237, 168, 106, 0.3);
}

/* Chalet Card */
.hp-chalet-card {
    background: transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    animation: hpFadeIn 0.6s ease forwards;
}

.hp-chalet-card:nth-child(1) { animation-delay: 0.1s; }
.hp-chalet-card:nth-child(2) { animation-delay: 0.2s; }
.hp-chalet-card:nth-child(3) { animation-delay: 0.3s; }
.hp-chalet-card:nth-child(4) { animation-delay: 0.4s; }
.hp-chalet-card:nth-child(5) { animation-delay: 0.5s; }
.hp-chalet-card:nth-child(6) { animation-delay: 0.6s; }
.hp-chalet-card:nth-child(7) { animation-delay: 0.7s; }
.hp-chalet-card:nth-child(8) { animation-delay: 0.8s; }

@keyframes hpFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hp-chalet-image-wrapper {
    position: relative;
    height: 270px;
    overflow: hidden;
    border-radius: 12px;
}

.hp-chalet-image-wrapper .hp-chalet-swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hp-chalet-image-wrapper .swiper-wrapper {
    height: 100%;
}

.hp-chalet-image-wrapper .swiper-slide a {
    display: block;
    height: 100%;
}

.hp-chalet-image-wrapper .swiper-slide img {
    width: 100% !important;
    height: 270px !important;
    object-fit: cover;
    display: block;
    max-width: 100%;
}

/* Swiper nav arrows */
.hp-swiper-prev,
.hp-swiper-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    color: #333;
    opacity: 0;
    transition: opacity 0.2s;
}

.hp-chalet-image-wrapper:hover .hp-swiper-prev,
.hp-chalet-image-wrapper:hover .hp-swiper-next {
    opacity: 1;
}

.hp-swiper-prev:hover,
.hp-swiper-next:hover {
    background: #fff;
}

.hp-swiper-prev { left: 8px; }
.hp-swiper-next { right: 8px; }

/* Slide counter */
.hp-swiper-counter {
    position: absolute;
    bottom: 10px;
    right: 12px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 10px;
    z-index: 3;
    letter-spacing: 0.5px;
}

/* Favorite button */
.hp-btn-favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: white;
    transition: all 0.3s ease;
}

.hp-btn-favorite:hover {
    color: #e74c3c;
    transform: scale(1.1);
}

/* Card info */
.hp-chalet-info {
    padding: 14px 4px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.hp-chalet-info h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--hp-secondary);
    margin-bottom: 2px;
    line-height: 1.4;
}

.hp-chalet-info:hover h5 {
    color: var(--hp-primary);
}

.hp-chalet-location {
    font-size: 13px;
    color: var(--hp-text);
    margin-bottom: 12px;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hp-chalet-amenities {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--hp-text);
    margin-top: auto;
}

.hp-chalet-amenities span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.hp-chalet-amenities svg {
    height: 18px;
    width: 18px;
}

/* ==========================================
   OUR STORY SECTION
   ========================================== */

.hp-story {
    position: relative;
    padding: 100px 0;
    min-height: 550px;
    overflow: visible;
    background-color: var(--hp-cream);
}

.hp-story-bg {
    display: block;
    position: absolute;
    top: 30px;
    right: 40px;
    bottom: 30px;
    width: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.hp-story-bg:hover {
    opacity: 0.9;
}

.hp-story-content {
    max-width: 480px;
    position: relative;
    z-index: 2;
}

.hp-story-content .hp-section-title {
    font-size: 32px;
    color: var(--hp-text);
}

.hp-story-content .hp-section-subtitle {
    font-size: 32px;
}

.hp-story-text {
    font-size: 14px;
    color: var(--hp-text);
    line-height: 1.8;
    margin-bottom: 15px;
    margin-top: 16px;
    font-weight: 600;
}

.hp-story-cta {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 28px;
    background: var(--hp-primary, #EDA86A);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
}

.hp-story-cta:hover {
    background: #d89454;
    transform: translateY(-2px);
    color: #fff;
}

/* ==========================================
   ADVENTURES SECTION - 4 Category Cards
   ========================================== */

.hp-adventures {
    background-color: var(--hp-cream);
    padding: 80px 0;
}

.hp-adventures-header {
    text-align: center;
    margin-bottom: 40px;
}

.hp-adventures-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--hp-primary);
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.hp-adventures-subtitle {
    font-size: 16px;
    color: var(--hp-secondary);
    opacity: 0.7;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.hp-adventures-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hp-adventure-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 3/4;
    display: block;
    text-decoration: none;
}

.hp-adventure-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hp-adventure-card:hover img {
    transform: scale(1.06);
}

.hp-adventure-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(17, 42, 68, 0.65) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px 20px;
}

.hp-adventure-card-overlay h3 {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hp-adventures-cta {
    text-align: center;
    margin-top: 36px;
}

/* ==========================================
   EXPLORE SECTION - Winter & Summer Photos
   ========================================== */

.hp-explore {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background-color: var(--hp-cream);
}

.hp-explore-header {
    text-align: center;
    margin-bottom: 40px;
}

.hp-explore-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--hp-primary);
    line-height: 1.2;
    margin-bottom: 8px;
}

.hp-explore-subtitle {
    font-size: 16px;
    color: var(--hp-secondary);
    opacity: 0.7;
    line-height: 1.6;
    max-width: 550px;
    margin: 0 auto;
}

.hp-explore-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.hp-explore-photo-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16/10;
    display: block;
    text-decoration: none;
}

.hp-explore-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hp-explore-photo-card:hover img {
    transform: scale(1.05);
}

.hp-explore-photo-label {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(17, 42, 68, 0.55) 100%);
    display: flex;
    align-items: flex-end;
    padding: 28px 24px;
}

.hp-explore-photo-label h3 {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hp-explore-cta {
    text-align: center;
    margin-top: 36px;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

.hp-testimonials {
    position: relative;
    padding: 80px 0;
    min-height: 350px;
    overflow: hidden;
    background-color: var(--hp-cream);
}

.hp-testimonials-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: inset(0);
    opacity: 0.5;
}

.hp-testimonials-wrap {
    max-width: 66%;
}

.hp-testimonial-slide {
    padding: 10px 0;
}

.hp-testimonial-stars {
    font-size: 16px;
    color: var(--hp-primary);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.hp-testimonial-text {
    font-size: 14px;
    color: var(--hp-text);
    line-height: 1.8;
    font-style: italic;
}

/* Testimonial Swiper pagination */
.hp-testimonial-swiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
    text-align: left;
}

.hp-testimonial-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--hp-border);
    opacity: 1;
    margin: 0 4px !important;
}

.hp-testimonial-swiper .swiper-pagination-bullet-active {
    background: var(--hp-primary);
}

/* ==========================================
   DISCOVER SECTION
   ========================================== */

.hp-discover {
    background-color: var(--hp-cream);
    padding: 80px 0;
}

.hp-discover-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hp-discover-content .hp-section-title {
    font-size: 28px;
}

.hp-discover-content .hp-section-subtitle {
    font-size: 28px;
}

.hp-discover-text {
    font-size: 14px;
    color: var(--hp-text);
    line-height: 1.8;
    margin-top: 16px;
    margin-bottom: 16px;
}

.hp-discover-links {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.hp-discover-link {
    color: var(--hp-secondary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.hp-discover-link:hover {
    color: var(--hp-primary);
}

.hp-discover-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hp-discover-image img {
    width: 450px;
    height: 450px;
    object-fit: cover;
    border-radius: 50%;
}

/* ==========================================
   NEWSLETTER SECTION
   ========================================== */

.hp-newsletter {
    background-color: var(--hp-primary);
    padding: 30px 0;
}

.hp-newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hp-newsletter-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: white;
    letter-spacing: 3px;
    margin-bottom: 0;
}

.hp-newsletter-subtitle {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
}

.hp-newsletter-form {
    max-width: 550px;
    flex: 1;
}

.hp-newsletter-input-wrap {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    padding: 4px 4px 4px 20px;
}

.hp-newsletter-input-wrap input {
    border: none;
    padding: 12px 10px;
    font-size: 13px;
    color: var(--hp-text);
    background: transparent;
    flex: 1;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
}

.hp-newsletter-input-wrap input::placeholder {
    color: #aaa;
}

.hp-newsletter-send {
    background-color: var(--hp-secondary);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    cursor: pointer;
}

.hp-newsletter-send:hover {
    background-color: #0a1a2e;
    color: white;
    transform: rotate(45deg);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    .hp-chalets-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hp-adventures-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .hp-hero-title {
        font-size: 36px;
    }

    .hp-hero {
        min-height: 55vh;
    }

    .hp-search-container {
        flex-wrap: wrap;
    }

    .hp-search-divider {
        display: none;
    }

    .hp-search-field {
        min-width: 45%;
        margin-bottom: 10px;
    }

    .hp-adventures-title,
    .hp-explore-title {
        font-size: 28px;
    }

    .hp-discover-grid {
        grid-template-columns: 1fr;
    }

    .hp-testimonials-wrap {
        max-width: 100%;
    }

    .hp-chalets-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-story-bg {
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        bottom: 0;
        border-radius: 0;
        opacity: 0.15;
    }

    .hp-story-content {
        max-width: 100%;
        text-align: center;
    }

    .hp-story-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .hp-testimonials-bg {
        width: 100%;
        opacity: 0.15;
    }
}

/* Hide mobile-only elements on desktop */
.hp-hero-subtitle-mobile,
.hp-hero-cta-mobile {
    display: none;
}

@media (max-width: 768px) {
    .hp-hero {
        min-height: 55vh;
        padding: 85px 0 40px;
        display: flex;
        align-items: center;
    }

    /* Hide search form on mobile, show CTA instead */
    .hp-search-form {
        display: none !important;
    }

    /* Old mobile-only subtitle hidden — the universal .hp-hero-subtitle now covers mobile too. */
    .hp-hero-subtitle-mobile {
        display: none;
    }

    .hp-hero-cta-mobile {
        display: inline-block;
        margin-top: 24px;
        padding: 14px 36px;
        background: var(--hp-primary, #EDA86A);
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        border-radius: 50px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: all 0.3s;
    }

    .hp-hero-cta-mobile:hover {
        background: #d89454;
        transform: translateY(-2px);
    }

    .hp-hero-content {
        max-width: 100%;
        padding: 0;
    }

    .hp-hero-title {
        font-size: 28px;
    }

    .hp-search-form {
        max-width: 100%;
        margin-top: 20px;
    }

    /* Frosted-glass card — blends with hero instead of sitting on top */
    .hp-search-container {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
        width: 100%;
        box-sizing: border-box;
        padding: 14px 16px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.18);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.35);
    }

    .hp-search-divider { display: none; }

    .hp-search-field {
        min-width: 0;
        width: 100%;
        padding: 7px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Check-in + Check-out: side by side */
    .hp-search-field:nth-child(3) {
        width: 50%;
        padding-right: 8px;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        box-sizing: border-box;
    }
    .hp-search-field:nth-child(5) {
        width: 50%;
        padding-left: 8px;
        box-sizing: border-box;
    }

    .hp-search-field:last-of-type {
        border-bottom: none;
    }

    .hp-search-btn {
        width: 100%;
    }

    .hp-search-field label {
        font-size: 10px;
        font-weight: 700;
        color: #fff;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
        letter-spacing: 0.8px;
        margin-bottom: 2px;
    }

    .hp-search-input {
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 14px;
        font-weight: 400;
    }

    .hp-search-input::placeholder {
        color: rgba(255, 255, 255, 0.6) !important;
        font-size: 13px;
    }

    /* Select & date inputs */
    .hp-search-field select.hp-search-input {
        color: rgba(255, 255, 255, 0.85) !important;
    }

    .hp-search-field select.hp-search-input option {
        color: #333;
        background: #fff;
    }

    .hp-search-field input[type="date"].hp-search-input {
        color: rgba(255, 255, 255, 0.85) !important;
        color-scheme: dark;
        opacity: 1;
    }

    .hp-search-field input[type="date"].hp-search-input::-webkit-datetime-edit {
        color: rgba(255, 255, 255, 0.6);
    }

    .hp-search-field input[type="date"].hp-search-input::-webkit-calendar-picker-indicator {
        filter: invert(1);
        opacity: 0.7;
    }

    .hp-search-field input[type="number"].hp-search-input {
        color: rgba(255, 255, 255, 0.85) !important;
    }

    .hp-search-btn {
        align-self: stretch;
        width: 100%;
        height: 44px;
        border-radius: 50px;
        margin-top: 8px;
        background: rgba(255, 255, 255, 0.22);
        border: 1px solid rgba(255, 255, 255, 0.4);
        color: #fff;
        font-weight: 600;
        font-size: 15px;
        letter-spacing: 0.3px;
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

    .hp-search-btn:hover {
        background: rgba(255, 255, 255, 0.32);
        transform: none;
    }

    .hp-search-btn svg {
        stroke: #fff;
    }

    .hp-search-btn .hp-search-btn-text {
        display: inline-block;
        color: #fff;
    }

    .hp-section-title {
        font-size: 26px;
    }

    .hp-section-subtitle {
        font-size: 22px;
    }

    .hp-adventures-title,
    .hp-explore-title {
        font-size: 24px;
    }

    .hp-adventures-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .hp-adventure-card {
        aspect-ratio: 1/1;
    }

    .hp-explore-photos {
        gap: 16px;
    }

    .hp-discover-image {
        margin-top: 30px;
    }

    .hp-discover-image img {
        width: 300px;
        height: 300px;
    }

    .hp-featured,
    .hp-adventures,
    .hp-discover {
        padding: 60px 0;
    }

    .hp-story,
    .hp-explore,
    .hp-testimonials {
        padding: 60px 0;
    }

    .hp-story {
        padding: 60px 0;
    }

    .hp-chalet-image-wrapper {
        height: 230px;
    }

    .hp-chalet-image-wrapper .swiper-slide img {
        height: 230px !important;
    }

    .hp-newsletter-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hp-newsletter-form {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hp-hero {
        min-height: 50vh;
        padding: 70px 0 30px;
        display: flex;
        align-items: center;
    }

    .hp-hero-subtitle-mobile {
        font-size: 14px;
    }

    .hp-hero-cta-mobile {
        padding: 12px 30px;
        font-size: 15px;
    }

    .hp-hero-content {
        padding: 0;
    }

    .hp-container {
        padding: 0 14px;
    }

    .hp-hero-title {
        font-size: 22px;
    }

    .hp-hero-title .hp-dot {
        font-size: 26px;
    }

    .hp-search-form {
        margin-top: 14px;
    }

    .hp-search-container {
        padding: 12px 14px;
        border-radius: 14px;
    }

    /* Check-in + Check-out side by side on small screens too */
    .hp-search-field:nth-child(3) {
        width: 50%;
        padding-right: 6px;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        box-sizing: border-box;
    }
    .hp-search-field:nth-child(5) {
        width: 50%;
        padding-left: 6px;
        box-sizing: border-box;
    }

    .hp-search-field {
        padding: 5px 0;
    }

    .hp-search-field label {
        font-size: 8px;
    }

    .hp-search-input {
        font-size: 12px !important;
    }

    .hp-search-btn {
        height: 40px;
        font-size: 13px;
    }

    .hp-section-title {
        font-size: 22px;
    }

    .hp-section-subtitle {
        font-size: 18px;
    }

    .hp-adventures-title {
        font-size: 20px;
    }

    .hp-adventures-cards {
        grid-template-columns: 1fr 1fr;
    }

    .hp-adventure-card-overlay h3 {
        font-size: 14px;
    }

    .hp-explore-photos {
        grid-template-columns: 1fr;
    }

    .hp-explore-photo-label h3 {
        font-size: 18px;
    }

    .hp-newsletter-title {
        font-size: 22px;
    }

    .hp-chalets-grid {
        grid-template-columns: 1fr;
    }
}
