* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #222;
    background: #f7f4ef;
    line-height: 1.7;
    word-break: keep-all;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.17);
}

.header-inner {
    width: 90%;
    max-width: 1180px;
    height: 90px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 35px;
    font-size: 14px;
}

.nav a {
    color: rgba(255,255,255,.85);
    transition: .2s;
}

.nav a:hover {
    color: #fff;
}

.nav-phone {
    padding: 11px 19px;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 100px;
}


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

.hero {
    position: relative;
    width: 100%;
    height: 92vh;
    min-height: 720px;

    background-image:
        linear-gradient(
            90deg,
            rgba(20, 14, 10, .76) 0%,
            rgba(20, 14, 10, .43) 42%,
            rgba(20, 14, 10, .05) 75%
        ),
        url('/assets/image/main.jpg');

    background-size: cover;
    background-position: center 54%;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    color: #fff;
}

.hero::after {
    content: "";
    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 250px;

    background: linear-gradient(
        to bottom,
        transparent,
        rgba(20,15,10,.42)
    );
}

.hero-inner {
    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 1180px;

    margin: 50px auto 0;
}

.hero-small {
    color: #e7d4bb;
    font-size: 13px;
    letter-spacing: 5px;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(50px, 7vw, 92px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -4px;
    margin-bottom: 28px;
}

.hero h1 span {
    color: #e4c59d;
}

.hero-desc {
    max-width: 590px;

    color: rgba(255,255,255,.84);
    font-size: 18px;
    line-height: 1.9;

    margin-bottom: 38px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    min-width: 165px;
    height: 58px;
    padding: 0 30px;

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

    border-radius: 100px;

    font-size: 15px;

    transition: .3s;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-white {
    background: #fff;
    color: #222;
}

.btn-outline {
    border: 1px solid rgba(255,255,255,.5);
    color: #fff;

    backdrop-filter: blur(5px);
}


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

.section {
    padding: 120px 20px;
}

.section-small {
    color: #9a7d5d;
    font-size: 12px;
    letter-spacing: 4px;
    margin-bottom: 18px;
}

.section-title {
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -2px;
}


/* =========================
   INTRO
========================= */

.intro {
    background: #fff;
}

.intro-content {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: end;
}

.intro-text {
    color: #777;
    font-size: 17px;
    line-height: 2;
}


/* =========================
   STUDIO
========================= */

.studio {
    background: #eee8df;
}

.studio-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.studio-image {
    min-height: 700px;

    background-image: url('/assets/image/main.jpg');
    background-size: cover;
    background-position: center 55%;
}

.studio-content {
    padding: 100px 9%;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.studio-content h2 {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -2px;

    margin-bottom: 30px;
}

.studio-content p {
    max-width: 480px;

    color: #716b64;
    font-size: 17px;
    line-height: 2;
}


/* =========================
   BENEFIT
========================= */

.benefit {
    background: #f7f4ef;
}

.benefit-grid {
    margin-top: 60px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.benefit-card {
    min-height: 285px;
    padding: 48px 34px;

    background: #fff;

    transition: .3s;
}

.benefit-card:hover {
    transform: translateY(-7px);
}

.benefit-num {
    color: #aa8c68;
    font-size: 12px;
    letter-spacing: 2px;

    margin-bottom: 45px;
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 500;

    margin-bottom: 15px;
}

.benefit-card p {
    color: #777;
    font-size: 15px;
    line-height: 1.9;
}


/* =========================
   INFORMATION
========================= */

.info {
    background: #fff;
}

.info-head {
    margin-bottom: 60px;
}

.info-wrap {
    border-top: 1px solid #222;
}

.info-row {
    padding: 28px 10px;

    display: grid;
    grid-template-columns: 190px 1fr;

    border-bottom: 1px solid #e6e6e6;
}

.info-label {
    font-weight: 600;
}

.info-value {
    color: #666;
}

.phone {
    color: #886a4a;
    font-size: 25px;
    font-weight: 600;
}

.time-list {
    display: grid;
    gap: 4px;
}


/* =========================
   CTA
========================= */

.cta {
    position: relative;

    min-height: 550px;

    background-image:
        linear-gradient(
            rgba(26,18,12,.68),
            rgba(26,18,12,.68)
        ),
        url('/assets/image/main.jpg');

    background-size: cover;
    background-position: center 58%;

    display: flex;
    align-items: center;

    color: #fff;
    text-align: center;
}

.cta-inner {
    position: relative;
    z-index: 2;

    max-width: 800px;
    margin: auto;
}

.cta .section-small {
    color: #e5c8a3;
}

.cta h2 {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -3px;

    margin-bottom: 20px;
}

.cta p {
    color: rgba(255,255,255,.75);
    margin-bottom: 35px;
}


/* =========================
   FOOTER
========================= */

.site-footer {
    background: #181512;
    color: #8f8983;

    padding: 55px 20px;
}

.footer-inner {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}

.footer-logo {
    color: #fff;
    font-size: 18px;
    letter-spacing: 3px;

    margin-bottom: 18px;
}

.footer-info {
    font-size: 13px;
    margin-bottom: 7px;
}

.footer-info span {
    padding: 0 10px;
    color: #444;
}

.footer-copy {
    font-size: 12px;
    color: #555;
}


/* =========================
   MOBILE
========================= */

@media(max-width: 768px) {

    .header-inner {
        height: 70px;
    }

    .logo {
        font-size: 16px;
    }

    .nav a:not(.nav-phone) {
        display: none;
    }

    .nav-phone {
        padding: 8px 13px;
        font-size: 12px;
    }


    .hero {
        height: 88vh;
        min-height: 680px;

        align-items: flex-end;

        padding-bottom: 80px;

        background-image:
            linear-gradient(
                to bottom,
                rgba(20,14,10,.15) 0%,
                rgba(20,14,10,.3) 40%,
                rgba(20,14,10,.82) 100%
            ),
            url('/assets/image/main.jpg');

        background-position: center 50%;
    }

    .hero-inner {
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 48px;
        letter-spacing: -3px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .hero-buttons {
        width: 100%;
    }

    .hero-buttons .btn {
        min-width: 130px;
        flex: 1;
    }


    .section {
        padding: 80px 20px;
    }


    .intro-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }


    .studio-wrap {
        grid-template-columns: 1fr;
    }

    .studio-image {
        min-height: 540px;
    }

    .studio-content {
        padding: 70px 25px;
    }


    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        min-height: auto;
    }


    .info-row {
        grid-template-columns: 1fr;
        gap: 8px;

        padding: 22px 0;
    }

    .phone {
        font-size: 22px;
    }


    .cta {
        min-height: 500px;
        background-position: center;
    }


    .footer-info span {
        display: none;
    }

    .footer-info {
        line-height: 1.9;
    }
}
