/* --------------------------------
   HERO SECTION
-------------------------------- */

.hero {
    position: relative;
    width: 100%;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    background: #333;
}

/* --------------------------------
   Background
-------------------------------- */

.hero__background {
    position: absolute;
    inset: 0;

    z-index: 0;
}

.hero__background img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}

/* --------------------------------
   Dark overlay
-------------------------------- */

.hero__overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background: rgba(20, 20, 20, 0.75);
}

/* --------------------------------
   Content
-------------------------------- */

.hero__content {
    position: relative;

    z-index: 2;

    width: min(900px, calc(100% - 40px));

    margin: 0 auto;

    text-align: center;
}

/* --------------------------------
   Eyebrow
-------------------------------- */

.hero__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 38px;
    color: var(--primary-color);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero__eyebrow span:not(.hero__eyebrow-dot) {
    display: block;
    width: 34px;
    height: 1px;
    background: var(--primary-color);
}

.hero__eyebrow-dot {
    opacity: 0.6;
}

/* --------------------------------
   Title
-------------------------------- */

.hero__title {
    margin: 0;
    color: #fff;
    font-size: clamp(60px, 7vw, 108px);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -4px;
    font-family: "Playfair Display", serif;
}

.hero__title em {
    display: block;

    margin-top: 8px;

    font-style: italic;
    font-weight: 400;
}

/* --------------------------------
   Description
-------------------------------- */

.hero__description {
    width: min(560px, 100%);
    margin: 38px auto 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.7;
}

/* --------------------------------
   Buttons
-------------------------------- */

.hero__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 44px;
}

.hero__button {
    min-width: 180px;
    text-transform: uppercase;
    padding: 17px 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid transparent;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;

    text-decoration: none;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.hero__button--primary {
    background: #a69d7b;
    border-color: #a69d7b;

    color: #fff;
}

.hero__button--primary:hover {
    background: #b4aa86;
    border-color: #b4aa86;
}

.hero__button--secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.65);

    color: #fff;
}

.hero__button--secondary:hover {
    background: #fff;
    border-color: #fff;

    color: #222;
}

/* --------------------------------
   Scroll indicator
-------------------------------- */

.hero__scroll {
    position: absolute;
    bottom: 18px;
    left: 50%;

    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;

    transform: translateX(-50%);

    color: rgba(255, 255, 255, 0.7);

    font-size: 8px;
    font-weight: 600;
    letter-spacing: 3px;

    text-decoration: none;
}

.hero__scroll-arrow {
    font-size: 16px;
    line-height: 1;

    animation: hero-scroll 2s ease-in-out infinite;
}

@keyframes hero-scroll {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

/* --------------------------------
   Tablet / mobile
-------------------------------- */

@media (max-width: 900px) {

    .hero {
        min-height: 100svh;
    }

    .hero__content {
        width: calc(100% - 32px);
    }

    .hero__eyebrow {
        gap: 8px;

        font-size: 8px;
        letter-spacing: 2.5px;
    }

    .hero__eyebrow span:not(.hero__eyebrow-dot) {
        width: 18px;
    }

    .hero__title {
        font-size: clamp(52px, 14vw, 76px);
        letter-spacing: -2px;
    }

    .hero__description {
        margin-top: 30px;

        font-size: 13px;
    }

}

/* --------------------------------
   ABOUT SECTION
-------------------------------- */

.about-section {
    background: #fff;
    padding: 75px 30px;
    /* Needs to account for the badge extra -20px bottom */
    padding-bottom: 95px;
}

.about-section__inner {
    width: min(1240px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(400px, 520px);
    gap: 90px;

    align-items: center;
}

.about-section__content {
    max-width: 560px;
}

.about-section__eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.about-section__eyebrow span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--primary-color);
}

.about-section__title {
    margin: 40px 0;
    color: #111;
    font-size: clamp(46px, 5vw, 68px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -2px;
    font-family: "Playfair Display", serif;
}

.about-section__text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.45;
}

.about-section__text p {
    margin: 0 0 22px;
}

.about-section__text p:last-child {
    margin-bottom: 0;
}

/* --------------------------------
   Stats
-------------------------------- */

.about-section__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 52px;
    padding-top: 30px;

    border-top: 1px solid #e7e4dd;
}

.about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 22px;
    border-left: 1px solid #e7e4dd;
    text-transform: uppercase;
}

.about-stat:first-child {
    padding-left: 0;
    border-left: 0;
}

.about-stat strong {
    color: #a9a184;
    font-size: 38px;
    font-weight: 400;
    line-height: 1;
}

.about-stat span {
    margin-top: 9px;

    color: #aaa;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* --------------------------------
   Image
-------------------------------- */

.about-section__media {
    position: relative;

    width: 100%;
}

.about-section__image {
    width: 100%;
    aspect-ratio: 0.78;
    overflow: hidden;
}

.about-section__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* --------------------------------
   Vintage badge
-------------------------------- */

.about-section__badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 165px;
    height: 110px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--primary-color);
    text-transform: uppercase;
}

.about-section__badge strong {
    color: #fff;
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
}

.about-section__badge span {
    margin-top: 8px;

    color: #fff;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.5;
}

/*  RETREAT BANNER */

.retreat-banner {
    width: 100%;
}

.retreat-banner__overlay {
    width: 100%;
    height: 500px;
    padding: 70px 30px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.darker-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 5;
}

.retreat-banner__overlay-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
}

.retreat-banner__information {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}

.retreat-banner__information img {
    width: 400px;
}

.retreat-banner__information a {
    padding: 10px 20px;
    border: 2px solid var(--primary-color-contrast);
    color: var(--primary-color-contrast);
    opacity: 0.75;
    font-weight: normal;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity ease 0.3s;
}

.retreat-banner__information a:hover {
   opacity: 1;
}




/* --------------------------------
   ABOUT - Responsive
-------------------------------- */

@media (max-width: 900px) {
    .about-section {
        padding: 75px 30px;
    }

    .about-section__inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-section__content {
        max-width: 700px;
    }

    .about-section__media {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {

    .about-section__title {
        font-size: 44px;
    }

    .about-section__stats {
        margin-top: 40px;
    }

    .about-stat strong {
        font-size: 30px;
    }

    .about-section__badge {
        left: -10px;
        bottom: -15px;

        width: 145px;
        height: 95px;
    }

    .retreat-banner__information img {
    width: 300px;
}
}