/* =========================================================
   HOME
========================================================= */

.home-page {
    background: #f1eee7;
    overflow: hidden;
}


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

.hero {
    position: relative;

    min-height: 760px;
    height: 100svh;
    max-height: 1000px;

    overflow: hidden;

    display: flex;
    align-items: center;
}


.hero-background {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background:
        url("/assets/images/hero/hero.jpg")
        center center / cover no-repeat;
}


.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 10, 8, 0.88) 0%,
            rgba(3, 10, 8, 0.58) 34%,
            rgba(3, 10, 8, 0.18) 70%,
            rgba(3, 10, 8, 0.12) 100%
        ),
        linear-gradient(
            0deg,
            rgba(3, 10, 8, 0.80) 0%,
            rgba(3, 10, 8, 0.08) 45%,
            rgba(3, 10, 8, 0.20) 100%
        );
}


.hero-content {
    position: relative;
    z-index: 3;

    width: min(1500px, calc(100% - 100px));

    margin: 70px auto 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.hero-title {
    max-width: 900px;

    margin: 0;

    display: flex;
    flex-direction: column;

    color: #f4f0e8;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(62px, 6.6vw, 104px);

    font-weight: 400;

    line-height: 0.84;

    letter-spacing: -0.025em;
}


.hero-title span {
    display: block;
}


.hero-location {
    margin-top: 38px;

    color: #c5a66a;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 0.11em;

    line-height: 1.5;

    text-transform: uppercase;
}


/* =========================================================
   SCROLL
========================================================= */

.hero-scroll {
    position: absolute;

    z-index: 4;

    left: 50%;
    bottom: 27px;

    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 8px;

    color: rgba(241, 238, 231, 0.68);

    font-size: 9px;

    letter-spacing: 0.15em;

    line-height: 1.4;

    text-decoration: none;

    text-transform: uppercase;

    white-space: nowrap;
}


.scroll-arrow {
    font-size: 18px;
    line-height: 1;

    animation: scrollArrow 2s infinite;
}


/* =========================================================
   FEATURES
========================================================= */

.features {
    position: relative;

    padding: 85px 0 90px;

    background: #f1eee7;

    border-top: 1px solid rgba(24, 34, 29, 0.10);
    border-bottom: 1px solid rgba(24, 34, 29, 0.10);
}


.features-container {
    width: min(1500px, calc(100% - 100px));

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(6, minmax(0, 1fr));

    gap: 0;
}


.feature {
    min-width: 0;
    min-height: 205px;

    padding: 0 28px;

    border-left: 1px solid rgba(24, 34, 29, 0.12);
}


.feature:last-child {
    border-right: 1px solid rgba(24, 34, 29, 0.12);
}


.feature-icon {
    height: 48px;

    display: flex;
    align-items: center;

    color: #a48750;

    font-family: "Cormorant Garamond", serif;

    font-size: 29px;
}


.feature-number {
    display: inline-flex;
    align-items: baseline;

    color: #17211c;

    font-family: "Cormorant Garamond", serif;

    font-size: 54px;
    font-weight: 400;

    line-height: 0.85;
}


.feature-number small {
    margin-left: 4px;

    color: #a48750;

    font-size: 15px;
}


.feature-title {
    margin-top: 9px;

    color: #17211c;

    font-family: "Cormorant Garamond", serif;

    font-size: 18px;
    font-weight: 500;

    line-height: 1;

    text-transform: uppercase;
}


.feature-title-large {
    line-height: 0.9;
}


.feature p {
    max-width: 210px;

    margin: 17px 0 0;

    color: #69716b;

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    padding: 145px 0;

    background: #f1eee7;
}


.about-container {
    width: min(1500px, calc(100% - 100px));

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.08fr 0.92fr;

    gap: clamp(60px, 8vw, 130px);

    align-items: center;
}


.about-image {
    position: relative;

    width: 100%;

    overflow: hidden;
}


.about-image::after {
    content: "";

    position: absolute;

    inset: 0;

    border: 1px solid rgba(164, 135, 80, 0.30);

    pointer-events: none;
}


.about-image img {
    display: block;

    width: 100%;

    aspect-ratio: 4 / 3;

    object-fit: cover;

    transition: transform 0.8s ease;
}


.about-image:hover img {
    transform: scale(1.025);
}


.about-content {
    max-width: 530px;
}


.about-content .section-label {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #a48750;
}


.about-content .section-label::before {
    content: "";

    width: 28px;
    height: 1px;

    flex: 0 0 28px;

    background: #a48750;
}


.about-content h2 {
    margin: 0 0 34px;

    color: #17211c;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(54px, 5vw, 78px);

    font-weight: 400;

    line-height: 0.92;

    letter-spacing: -0.02em;
}


.about-content p {
    max-width: 520px;

    margin: 0 0 19px;

    color: #69716b;

    font-size: 13px;

    line-height: 1.85;
}


/* =========================================================
   BOOKING
========================================================= */

.booking-section {
    position: relative;

    min-height: 560px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 90px 30px;

    text-align: center;

    background:
        linear-gradient(
            rgba(3, 11, 8, 0.70),
            rgba(3, 11, 8, 0.80)
        ),
        url("/assets/images/estate/booking.jpg")
        center center / cover no-repeat;
}


.booking-content {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 700px;
}


.booking-content .section-label {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #c5a66a;
}


.booking-content .section-label::before {
    content: "";

    width: 28px;
    height: 1px;

    flex: 0 0 28px;

    background: #c5a66a;
}


.booking-content h2 {
    margin: 0 0 25px;

    color: #f4f0e8;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(54px, 5vw, 78px);

    font-weight: 400;

    line-height: 0.92;
}


.booking-content p {
    max-width: 500px;

    margin: 0 auto 35px;

    color: #b4bbb5;

    font-size: 13px;

    line-height: 1.85;
}


/* =========================================================
   TABLET — 901–1100px
========================================================= */

@media (max-width: 1100px) {

    .hero-content {
        width: calc(100% - 80px);
    }


    .hero-title {
        max-width: 760px;

        font-size: clamp(58px, 8vw, 84px);
    }


    .features-container {
        width: calc(100% - 80px);

        grid-template-columns: repeat(3, minmax(0, 1fr));
    }


    .feature {
        min-height: 200px;

        padding: 25px 24px;

        border-bottom: 1px solid rgba(24, 34, 29, 0.12);
    }


    .feature:nth-child(3n) {
        border-right: 1px solid rgba(24, 34, 29, 0.12);
    }


    .about-container {
        width: calc(100% - 80px);

        grid-template-columns: 1fr;

        gap: 65px;
    }


    .about-content {
        max-width: 760px;
    }


    .about-content p {
        max-width: 650px;
    }

}


/* =========================================================
   TABLET — 769–900px
========================================================= */

@media (max-width: 900px) {

    .hero {
        min-height: 700px;
    }


    .hero-content {
        width: calc(100% - 60px);

        margin-top: 45px;
    }


    .hero-title {
        max-width: 680px;

        font-size: clamp(56px, 9vw, 76px);
    }


    .hero-location {
        margin-top: 30px;
    }


    .features {
        padding: 70px 0;
    }


    .features-container {
        width: calc(100% - 60px);
    }


    .feature {
        padding: 24px 20px;
    }


    .feature-number {
        font-size: 48px;
    }


    .feature-title {
        font-size: 17px;
    }


    .feature p {
        max-width: 190px;
    }


    .about-section {
        padding: 110px 0;
    }


    .about-container {
        width: calc(100% - 60px);

        gap: 55px;
    }


    .about-content h2 {
        font-size: 68px;
    }


    .booking-section {
        min-height: 520px;
    }

}


/* =========================================================
   MOBILE — 601–768px
========================================================= */

@media (max-width: 768px) {

    .hero {
        min-height: 680px;

        height: 100svh;

        max-height: none;

        align-items: center;
    }


    .hero-background {
        background-position: 58% center;
    }


    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3, 10, 8, 0.88) 0%,
                rgba(3, 10, 8, 0.60) 58%,
                rgba(3, 10, 8, 0.28) 100%
            ),
            linear-gradient(
                0deg,
                rgba(3, 10, 8, 0.90) 0%,
                rgba(3, 10, 8, 0.18) 55%,
                rgba(3, 10, 8, 0.20) 100%
            );
    }


    .hero-content {
        width: calc(100% - 48px);

        margin-top: 25px;
    }


    .hero-title {
        max-width: 100%;

        font-size: clamp(52px, 10vw, 70px);

        line-height: 0.86;
    }


    .hero-location {
        max-width: 320px;

        margin-top: 28px;

        font-size: 9px;

        line-height: 1.6;
    }


    .hero-scroll {
        bottom: 18px;

        font-size: 8px;
    }


    /* FEATURES */

    .features {
        padding: 55px 0;
    }


    .features-container {
        width: calc(100% - 48px);

        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .feature {
        min-height: 185px;

        padding: 22px 17px;
    }


    .feature:nth-child(3n) {
        border-right: 0;
    }


    .feature:nth-child(2n) {
        border-right: 1px solid rgba(24, 34, 29, 0.12);
    }


    .feature-number {
        font-size: 44px;
    }


    .feature-number small {
        font-size: 13px;
    }


    .feature-title {
        font-size: 16px;

        line-height: 1.05;
    }


    .feature p {
        max-width: 100%;

        margin-top: 12px;

        font-size: 10px;

        line-height: 1.65;
    }


    /* ABOUT */

    .about-section {
        padding: 90px 0;
    }


    .about-container {
        width: calc(100% - 48px);

        gap: 45px;
    }


    .about-content {
        max-width: 100%;
    }


    .about-content h2 {
        margin-bottom: 27px;

        font-size: clamp(52px, 10vw, 68px);
    }


    .about-content p {
        font-size: 12px;

        line-height: 1.8;
    }


    /* BOOKING */

    .booking-section {
        min-height: 480px;

        padding: 75px 24px;
    }


    .booking-content {
        max-width: 580px;
    }


    .booking-content h2 {
        font-size: clamp(50px, 10vw, 68px);
    }


    .booking-content p {
        max-width: 440px;

        font-size: 12px;
    }

}


/* =========================================================
   SMALL MOBILE — 600px and below
========================================================= */

@media (max-width: 600px) {

    .hero {
        min-height: 640px;
    }


    .hero-background {
        background-position: 62% center;
    }


    .hero-content {
        width: calc(100% - 36px);

        margin-top: 20px;
    }


    .hero-title {
        font-size: clamp(45px, 13.5vw, 60px);

        line-height: 0.87;

        letter-spacing: -0.02em;
    }


    .hero-location {
        max-width: 290px;

        margin-top: 25px;

        font-size: 8px;

        letter-spacing: 0.09em;
    }


    .hero-scroll {
        bottom: 14px;
    }


    /* FEATURES */

    .features {
        padding: 40px 0;
    }


    .features-container {
        width: calc(100% - 36px);
    }


    .feature {
        min-height: 175px;

        padding: 20px 13px;
    }


    .feature-icon {
        height: 39px;

        font-size: 24px;
    }


    .feature-number {
        font-size: 39px;
    }


    .feature-number small {
        margin-left: 3px;

        font-size: 11px;
    }


    .feature-title {
        margin-top: 8px;

        font-size: 14px;
    }


    .feature-title-large {
        line-height: 0.9;
    }


    .feature p {
        margin-top: 10px;

        font-size: 9px;

        line-height: 1.6;
    }


    /* ABOUT */

    .about-section {
        padding: 70px 0;
    }


    .about-container {
        width: calc(100% - 36px);

        gap: 38px;
    }


    .about-image img {
        aspect-ratio: 1 / 1;
    }


    .about-content .section-label,
    .booking-content .section-label {
        font-size: 9px;

        letter-spacing: 0.16em;
    }


    .about-content h2 {
        margin-bottom: 25px;

        font-size: 50px;

        line-height: 0.92;
    }


    .about-content p {
        font-size: 11px;

        line-height: 1.8;
    }


    /* BOOKING */

    .booking-section {
        min-height: 450px;

        padding: 65px 18px;
    }


    .booking-content h2 {
        margin-bottom: 20px;

        font-size: 49px;
    }


    .booking-content p {
        max-width: 330px;

        margin-bottom: 28px;

        font-size: 11px;

        line-height: 1.75;
    }

}


/* =========================================================
   EXTRA SMALL — 380px and below
========================================================= */

@media (max-width: 380px) {

    .hero {
        min-height: 610px;
    }


    .hero-content {
        width: calc(100% - 30px);
    }


    .hero-title {
        font-size: 43px;
    }


    .hero-location {
        font-size: 7.5px;
    }


    .features-container {
        width: calc(100% - 30px);
    }


    .feature {
        min-height: 165px;

        padding: 18px 11px;
    }


    .feature-number {
        font-size: 36px;
    }


    .feature-title {
        font-size: 13px;
    }


    .feature p {
        font-size: 8.5px;
    }


    .about-container {
        width: calc(100% - 30px);
    }


    .about-content h2 {
        font-size: 44px;
    }


    .booking-content h2 {
        font-size: 43px;
    }

}


/* =========================================================
   ACCESSIBILITY / TOUCH
========================================================= */

@media (hover: none) {

    .about-image:hover img {
        transform: none;
    }

}