* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

    /* border: solid 1px red; */
}

:root {
    --primary-color: #000;
    --secondary-color: #fff;
    --color-light-golden-brown: #C9A97A;
    --color-dark-golden-brown: #4B3A2F;
}


@font-face {
    font-family: 'GTSuperDisplay';
    src: url('Fonts/GTSuperDisplay-Regular.otf') format('opentype');
    font-weight: 500;
}


@font-face {
    font-family: 'AvenirNext';
    src: url('Fonts/AvenirNext-Medium-06.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'AvenirNext';
    src: url('Fonts/AvenirNext-MediumItalic-07.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'AvenirNext';
    src: url('Fonts/AvenirNext-Bold-01.ttf') format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: 'AvenirNext';
    src: url('Fonts/AvenirNext-BoldItalic-02.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    display: block;
}

body {
    color: #fff;
    font-family: 'AvenirNext', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}


.container {
    width: clamp(10%, 98%, 1100px);
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(5rem, 9vw, 9.5rem);
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5.5vw, 65px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 1px;
    font-style: italic;
    margin: 0;
}


.description {
    font-size: clamp(16px, 3.5vw, 36px);
    font-weight: 600;
    font-style: italic;
    line-height: 1.5;
}

.body-text {
    font-family: 'GTSuperDisplay', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 500;
    color: var(--primary-color);
    font-size: clamp(0.3rem, 3.6vw, 22px);
}

/* SECTION 1: HERO */
.hero-section {
    height: 100vh;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    max-width: 600px;

}

.hero-section h1 {
    line-height: 1.1;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.486);
    margin-bottom: 30px;
}

.hero-section .subtitle {
    font-family: "Playfair Display", serif;
    /* font-style: italic; */
    transform: skewX(-12deg);
    font-size: clamp(1.2rem, 3.7rem, 28px);
    font-weight: 400;
    letter-spacing: 0.03em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.523);
}

.text-section {
    color: #fff;
    padding: 2rem 0;
    width: clamp(10%, 95%, 900px);
    margin: auto;
}

.text-section .body-text {
    font-family: 'AvenirNext', sans-serif;

    line-height: 1.8;
    text-align: justify;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    color: #000;
}

.body-text a {
    color: inherit;
    text-decoration: underline;
}

.text-section.hero-intro .body-text {
    text-align: center;
    font-weight: 600;
}

.hero-intro {
    padding: 2rem 0 0;
}

/* SECTION 2: INTERIOR */

.header-top-row,
.header-bottom-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-top-row {
    padding-left: 2.5rem;

}

.header-bottom-row {
    justify-content: flex-end;
    margin-top: 10px;
    padding-right: 2.5rem;

}

.divider-line {
    height: 2px;
    flex-grow: 1;
    background-color: var(--color-light-golden-brown);
}

.section-title {
    margin: 60px auto;
    width: 80%;
}

.section-title h2 {
    text-align: left;
}

.interior-header h2,
.interior-header span {
    color: var(--color-light-golden-brown);
}

.interior-header .description,
.interior-header .description span {
    color: var(--color-dark-golden-brown);
    text-transform: lowercase;
}

.section-title .description {
    display: flex;
    flex-direction: column;

}

.interior-header .description {
    padding-top: 1.5rem;
}


.description .line-1 {
    align-self: flex-start;
}

.description .line-2 {
    align-self: flex-end;
    padding-left: 10rem;
}


.interior-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 5px;
    align-items: start;
    width: 100%;
}

.grid-left {
    grid-column: span 3;
}

.grid-left img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
    border-radius: 150px 0 0 0;
    transform: translateY(-7%);
}

.grid-right {
    grid-column: span 9;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 5px;
}

.grid-right img {
    width: 100%;
    height: 45vh;
    object-fit: cover;
}

.grid-right img:first-child,
.grid-right img:nth-child(2) {
    grid-column: span 5;
}

.grid-right img:last-child {
    border-radius: 0 0 150px 0;
    grid-row: 2;
    grid-column: 1/-1;
}

.interior-grid img {
    transition: transform 0.8s ease;
}

.overlay-wrapper {
    position: relative;
    max-width: 60%;
    margin: 0 auto;
    border-radius: 120px 0 120px 0;
    overflow: hidden;
}

.text-top-right,
.text-bottom-left {
    position: absolute;
    z-index: 2;


    width: 100%;
}

.text-top-right {
    top: 0;
    border-radius: 0 0 0 140px;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.2);
    padding: 3rem 1.5rem 3rem 1rem;
    background: linear-gradient(180deg,
            #EDE8D0 0%,
            #D8BCAB 100%);
}

.text-bottom-left {
    bottom: 0;
    border-radius: 0 140px 100px 0;
    padding: 3rem 1.5rem 3rem 2rem;
    background: linear-gradient(0deg,
            #EDE8D0 0%,
            #D8BCAB 100%);
    /* box-shadow: -10px 10px 30px rgba(0,0,0,0.2); */
}

.text-top-right p,
.text-bottom-left p {
    font-family: 'AvenirNext', sans-serif;
    font-style: italic;
    font-size: clamp(1rem, 4vw, 30px);
    color: #fff;
    line-height: 1.5;
    font-weight: 500;
    width: 90%;
}

.text-top-right p {
    text-align: right;
    margin-left: auto;
}

.text-bottom-left p {
    text-align: left;
    margin-right: auto;
}

.image {
    max-width: 750px;
    margin: 0 auto;
}

.image-bottom,
.image-top {
    width: 100%;
    height: 600px;
    overflow: hidden;
    /* border-radius: 120px 0 120px 0; */
}

.image-bottom {
    margin-top: 80px;
}

.image-top {
    margin-bottom: 80px;
}

.image-bottom img,
.image-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nature-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Khối ảnh lớn */
.main-visual {
    position: relative;
    width: 100%;
    height: 530px;
    border-radius: 40px;
    overflow: hidden;
    background: url(imgs/z7635617429973_d524433ee99e8367b9db22e2d25457eb.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-visual::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.087) 50%,
            rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}


.overlay-content {
    position: absolute;
    top: 0%;
    left: 10%;
    right: 10%;
    pointer-events: none;
    z-index: 2;
    width: 70%;
}

.title-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.nature-section {
    padding-bottom: 20rem;
}

.nature-title {
    color: #FFD59A;
    font-size: clamp(40px, 8.5vw, 70px);
    white-space: nowrap;
}


.subtitle-group {
    text-align: right;
    margin-top: -20px;
    margin-right: 5%;
}

.floating-frame {
    position: absolute;
    bottom: -60%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 350px;
    z-index: 10;
    border-radius: 150px 150px 0 0;
    overflow: hidden;
}

.overlay-bottom {
    position: absolute;
    bottom: -57%;
    left: 50%;
    transform: translateX(-50%);
    width: 72%;
    height: 350px;
    z-index: 10;
    border-radius: 170px 170px 0 0;
    overflow: hidden;
    border: var(--color-light-golden-brown) solid 2px;
}

.floating-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-section {
    position: relative;
    z-index: 3;
}

.section-salon {
    position: relative;
    z-index: 1;
}

.gradient-overlay-absolute {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 450px;
    background: linear-gradient(to bottom, rgba(186, 164, 138, 0) 0%, rgba(186, 164, 138, 0.4) 20%, rgba(186, 164, 138, 0.7) 40%, rgba(186, 164, 138, 0.85) 60%, rgb(194 174 151) 90%, rgb(186 164 138 / 0%) 100%);
    z-index: 2;
    pointer-events: none;
}

.title-overlap {
    margin-top: -100px;
    z-index: 10;
    position: relative;
    text-align: center;
    color: #fff;
    transform: translateY(35%);
}

.title-overlap .section-title {
    width: 70%;
    padding: 0 1rem;
}

.title-overlap .title-gt {
    color: #F1E4D1;
}

.salon-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title-overlap .divider-line {
    background: #F5E9DA;
}

.title-overlap .header-top-row,
.title-overlap .header-bottom-row {
    gap: 0
}

.title-overlap .header-bottom-row {
    padding-right: 0;
}

.title-gt {
    font-size: clamp(36px, 10vw, 90px);
    color: #F5E9DA;
}

.salon-subtitles {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

/* text bên trái */
.text {
    max-width: 600px;
}

.text p {
    font-size: 30px;
    font-weight: 600;
    font-style: italic;
    margin: 5px 0;
    line-height: 1.4;
}

/* line bên phải */
.salon-subtitles .divider-line {
    width: 35%;
    height: 1px;
    background: #f5e9da;
}

.salon-visual-box {
    position: relative;
    z-index: 1;
    margin-top: -20px;


}

.salon-visual-box img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;


    -webkit-mask-image: linear-gradient(to bottom, rgba(186, 164, 138, 0.322) 0%, rgba(186, 164, 138, 0.9) 5%);
    mask-image: linear-gradient(to bottom, rgb(186 164 138 / 0%) 0%, rgb(186 164 138) 5%);
}

.service-lifestyle-section {
    padding: 1rem 0;


}

.container-lifestyle {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}


.lifestyle-border-wrapper {
    position: relative;




}

.lifestyle-overlay {
    position: absolute;
    top: 3%;
    left: 3%;
    right: -2%;
    bottom: -4%;

    height: auto;
    border: 2px solid rgba(197, 160, 89, 0.4);
    border-radius: 80px 0 70px 0;

    z-index: 0;
    pointer-events: none;
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 20px;
    align-items: stretch;
    position: relative;
}

.lifestyle-main,
.lifestyle-side {
    z-index: 2;
}

.lifestyle-main img {
    height: 500px;
    object-fit: cover;
    border-radius: 60px 0 0 0;

}

.lifestyle-side img {
    height: 500px;
    object-fit: cover;
    border-radius: 0 0 60px 0;

}

.footer-section {
    background-color: transparent;
    text-align: center;
}

.footer-subtitle-italic {
    font-family: 'AvenirNext', sans-serif;
    color: #8C6A3C;
    font-style: italic;
    margin-bottom: 5px;
    font-weight: 600;
    text-align: left;
    margin-left: -1rem;
}

.footer-main-title {
    font-family: 'Playfair Display', serif;
    color: var(--color-light-golden-brown);
    /* margin-bottom: 20px; */
    font-weight: 400;
}

.footer-intro-text {
    max-width: 1050px;
    margin: 4rem auto 0;
}

.footer-intro-text .body-text {
    font-family: 'AvenirNext', sans-serif;
    font-size: 1.15rem;
    line-height: 1.9;
    text-align: justify;
    font-weight: 300;
}

.footer-visual {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    background-color: #f3f0e8;
    /* Base light color for mist effect */
}

.gradient-overlay {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 350px;
    background: linear-gradient(to bottom,
            #1a1512 0%,
            rgba(26, 21, 18, 0.9) 10%,
            rgba(255, 255, 255, 0.8) 50%,
            transparent 100%);
    z-index: 2;
}

.footer-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .footer-visual {
        height: 50vh;
    }

    .footer-intro-text .body-text {
        text-align: left;
    }

    .grid-right {
        gap: 0;
    }

    .grid-right img:last-child {
        border-radius: 40px;
    }

    .interior-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .grid-right {
        grid-template-columns: 1fr;
    }

    .grid-left,
    .grid-right {
        width: 100%;
    }

    .grid-left img,
    .grid-right img {
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
        border-radius: 20px;
    }

    .sub-grid {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .nature-section {
        padding-bottom: 8rem;
    }

    .overlay-wrapper {
        max-width: 95%;
    }

    .lifestyle-grid {
        grid-template-columns: 1fr;
    }

    .lifestyle-main img,
    .lifestyle-side img {
        height: 300px;
        border-radius: 30px;
    }

    .lifestyle-border-wrapper {
        padding: 10px;
        border-radius: 40px;
    }

    .interior-header {
        width: 100%;
    }

    .interior-grid {
        display: flex;
        flex-direction: column;
        gap: 0px;
    }

    .grid-left,
    .grid-right {
        width: 100%;
    }

    .grid-left img,
    .grid-right img {
        height: auto;
        transform: none;
        margin-bottom: 10px;
    }

    .sub-grid {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .overlay-bottom {
        bottom: -15%;
        width: 93%;
        height: 250px;
    }

    .footer-subtitle-italic {
        margin-left: 0;

    }

    .gradient-overlay {
        background: none;
    }

    .description .line-2 {
        padding-left: 5rem;
    }

    .text-top-right {
        position: relative;
        width: 100%;
        border-radius: 50px 0 0 0;
        padding: 30px;
    }

    .image-bottom {
        margin-top: 0;
        height: 350px;
    }

    .subtitle-group {
        margin-right: 0;
    }

    .sub-1,
    .sub-2 {
        font-size: 1.5rem;
    }

    .floating-frame {
        width: 90%;
        height: 250px;
        bottom: -100px;
    }

    .line-short {
        display: none;
    }

    .title-overlap .section-title .description .line-2 {
        padding-left: 5rem;

    }
}

@media (max-width: 500px) {


    .divider-line {
        display: none;
    }

    .section-title h2 {
        text-align: center !important;
        width: 100%;
    }

    .header-top-row {
        padding-left: 0 !important;
        justify-content: center !important;
    }

    .header-bottom-row {
        padding-right: 0 !important;
        justify-content: center !important;
    }

    .section-title .description {
        align-items: center;
    }

    .description .line-1,
    .description .line-2 {
        align-self: center !important;
        padding-left: 0 !important;
    }

    .interior-header .description {
        padding-top: 0.4rem;
    }

    .section-title {
        margin: 30px auto;
    }

    .title-overlap .section-title {
        margin: 0 auto;
    }

    .gradient-overlay-absolute {
        height: 350px;
    }

    .overlay-content {
        top: 10%;
    }

    .title-overlap {
        transform: translateY(75%);
    }

    .title-overlap .section-title {
        width: 90%;
    }

    .title-gt {
        font-size: clamp(36px, 15vw, 90px);
    }

    .description {
        font-size: 18px;
    }

    .service-lifestyle-section {
        padding: 0;
    }

    .text-section {
        padding: 1rem 0;
    }
    .hero-intro {
        padding: 1rem 0 0;
    }

}