@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');


:root {
    --black: #10100f;
    --dark: #171715;
    --dark-soft: #20201d;

    --cream: #f4f1eb;
    --cream-dark: #e8e3da;
    --white: #ffffff;

    --wood: #a88762;
    --wood-light: #c3a27c;

    --text: #171715;
    --muted: #77736c;

    --border: rgba(20, 20, 18, 0.12);

    --container: 1280px;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Inter", sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.5;
}


img {
    display: block;
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input {
    font: inherit;
}


.container {
    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin: 0 auto;
}


.section {
    padding: 130px 0;
}


/* HEADER */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.45),
        transparent
    );
}


.header-inner {
    min-height: 108px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 45px;
}


.logo {
    display: flex;
    align-items: center;

    width: 210px;

    flex-shrink: 0;
}


.logo img {
    width: 100%;
    height: 74px;

    object-fit: contain;
    object-position: left center;

    filter:
        brightness(1.12)
        contrast(1.08);

    transform: scale(1.08);
}


.nav {
    display: flex;
    align-items: center;
    gap: 34px;

    margin-left: auto;
}


.nav a {
    color: rgba(255,255,255,.82);

    font-size: 13px;
    font-weight: 500;

    transition: .3s ease;
}


.nav a:hover {
    color: #fff;
}


.header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 24px;

    border: 1px solid rgba(255,255,255,.35);

    color: #fff;

    font-size: 13px;
    font-weight: 600;

    transition: .3s ease;
}


.header-button:hover {
    background: #fff;
    color: var(--black);
}


/* HERO */

.hero {
    position: relative;

    min-height: 900px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #161615;
}


.hero-image {
    position: absolute;
    inset: 0;

    background-image: url(
        "https://images.pexels.com/photos/8134814/pexels-photo-8134814.jpeg?auto=compress&cs=tinysrgb&w=2400"
    );

    background-size: cover;
    background-position: center;
}


.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8,8,7,.92) 0%,
            rgba(8,8,7,.70) 42%,
            rgba(8,8,7,.15) 100%
        );
}


.hero-inner {
    position: relative;
    z-index: 2;

    padding-top: 100px;
}


.hero-content {
    max-width: 720px;
}


.hero-kicker {
    margin-bottom: 28px;

    color: var(--wood-light);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .25em;
}


.hero h1 {
    color: #fff;

    font-family: "Manrope", sans-serif;

    font-size: clamp(
        54px,
        6vw,
        88px
    );

    line-height: .98;

    letter-spacing: -.055em;

    font-weight: 700;
}


.hero h1 em {
    color: var(--wood-light);
    font-style: normal;
}


.hero-description {
    max-width: 530px;

    margin-top: 34px;

    color: rgba(255,255,255,.72);

    font-size: 17px;
    line-height: 1.7;
}


.hero-actions {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-top: 42px;
}


.button {
    min-height: 58px;

    padding: 0 27px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 22px;

    font-size: 13px;
    font-weight: 600;

    transition: .3s ease;
}


.button-primary {
    background: #fff;
    color: var(--black);
}


.button-primary span {
    font-size: 17px;
}


.button-primary:hover {
    background: var(--wood-light);
}


.button-ghost {
    border: 1px solid rgba(255,255,255,.35);
    color: #fff;
}


.button-ghost:hover {
    background: rgba(255,255,255,.1);
}


.hero-bottom {
    display: flex;

    gap: 55px;

    margin-top: 105px;
}


.hero-bottom div {
    display: flex;
    flex-direction: column;

    gap: 4px;
}


.hero-bottom strong {
    color: #fff;

    font-family: "Manrope", sans-serif;

    font-size: 20px;
}


.hero-bottom span {
    color: rgba(255,255,255,.48);

    font-size: 11px;

    text-transform: uppercase;
    letter-spacing: .12em;
}


.hero-scroll {
    position: absolute;

    bottom: 42px;
    right: 70px;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 16px;

    color: rgba(255,255,255,.55);

    font-size: 10px;

    text-transform: uppercase;
    letter-spacing: .18em;
}


.hero-scroll div {
    width: 55px;
    height: 1px;

    background: rgba(255,255,255,.35);
}


/* INTRO */

.intro {
    background: var(--cream);
}


.intro-grid {
    display: grid;

    grid-template-columns:
        220px
        minmax(0, 780px);

    justify-content: space-between;

    gap: 50px;
}


.intro-label {
    color: var(--wood);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .22em;
}


.intro-content h2 {
    max-width: 850px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(
        38px,
        4vw,
        62px
    );

    line-height: 1.08;

    letter-spacing: -.045em;
}


.intro-content p {
    max-width: 680px;

    margin-top: 30px;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.8;
}


/* SECTION TOP */

.section-top {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        390px;

    align-items: end;

    gap: 60px;

    margin-bottom: 65px;
}


.section-label {
    display: block;

    margin-bottom: 20px;

    color: var(--wood);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .22em;
}


.section-top h2,
.about-header h2,
.contacts h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(
        42px,
        5vw,
        68px
    );

    line-height: 1;

    letter-spacing: -.055em;
}


.section-top > p {
    color: var(--muted);

    font-size: 15px;
    line-height: 1.8;
}


/* CATALOG */

.catalog {
    background: #fff;
}


.products {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 28px;
}


.product-card {
    background: var(--cream);

    transition: transform .4s ease;
}


.product-card:hover {
    transform: translateY(-7px);
}


.product-image {
    position: relative;

    height: 430px;

    overflow: hidden;
}


.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}


.product-card:hover .product-image img {
    transform: scale(1.04);
}


.product-number {
    position: absolute;

    top: 24px;
    right: 24px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.45);

    color: #fff;

    font-size: 11px;
}


.product-info {
    padding: 34px 36px 38px;
}


.product-category {
    color: var(--wood);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .17em;
}


.product-info h3 {
    margin-top: 12px;

    font-family: "Manrope", sans-serif;

    font-size: 34px;
    letter-spacing: -.04em;
}


.product-info p {
    max-width: 450px;

    margin-top: 13px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.7;
}


.product-link {
    display: inline-flex;
    align-items: center;

    gap: 18px;

    margin-top: 27px;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .08em;

    border-bottom: 1px solid var(--text);

    padding-bottom: 7px;

    transition: .3s ease;
}


.product-link:hover {
    color: var(--wood);
    border-color: var(--wood);
}


.product-link span {
    font-size: 16px;
}


/* COLORS */

.colors {
    background: var(--dark);
    color: #fff;
}


.colors-top h2 {
    color: #fff;
}


.colors-top > p {
    color: rgba(255,255,255,.55);
}


.palette-card {
    position: relative;

    min-height: 600px;

    overflow: hidden;
}


.palette-card img {
    width: 100%;
    height: 600px;

    object-fit: cover;
}


.palette-card::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.65),
            rgba(0,0,0,.08)
        );
}


.palette-overlay {
    position: absolute;

    left: 55px;
    bottom: 50px;

    z-index: 2;

    display: flex;
    flex-direction: column;

    gap: 15px;
}


.palette-overlay span {
    font-size: 10px;

    letter-spacing: .25em;

    color: var(--wood-light);
}


.palette-overlay strong {
    font-family: "Manrope", sans-serif;

    font-size: 52px;

    line-height: .98;

    letter-spacing: -.05em;
}


/* CALLBACK */

.callback {
    background: var(--cream);
}


.callback-card {
    display: grid;

    grid-template-columns:
        1.1fr
        .9fr;

    background: var(--black);

    color: #fff;
}


.callback-content {
    padding: 80px 75px;
}


.callback-content h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(
        45px,
        5vw,
        70px
    );

    line-height: .98;

    letter-spacing: -.055em;
}


.callback-content > p {
    max-width: 500px;

    margin-top: 30px;

    color: rgba(255,255,255,.58);

    font-size: 15px;

    line-height: 1.8;
}


.callback-details {
    display: flex;

    gap: 38px;

    margin-top: 55px;

    padding-top: 28px;

    border-top: 1px solid rgba(255,255,255,.12);
}


.callback-details div {
    display: flex;
    flex-direction: column;

    gap: 8px;
}


.callback-details span {
    color: var(--wood-light);

    font-size: 11px;
}


.callback-details p {
    color: rgba(255,255,255,.68);

    font-size: 11px;

    line-height: 1.4;
}


.callback-form-wrap {
    padding: 75px 55px;

    background: #20201d;
}


.form-title {
    margin-bottom: 40px;

    font-family: "Manrope", sans-serif;

    font-size: 24px;
    font-weight: 600;
}


.callback-form label {
    display: block;

    margin-bottom: 25px;
}


.callback-form label > span {
    display: block;

    margin-bottom: 10px;

    color: rgba(255,255,255,.45);

    font-size: 10px;

    text-transform: uppercase;
    letter-spacing: .15em;
}


.callback-form input {
    width: 100%;
    height: 58px;

    padding: 0 18px;

    border: 1px solid rgba(255,255,255,.16);
    border-radius: 0;

    outline: none;

    background: rgba(255,255,255,.04);

    color: #fff;

    font-size: 14px;

    transition: .3s ease;
}


.callback-form input::placeholder {
    color: rgba(255,255,255,.28);
}


.callback-form input:focus {
    border-color: var(--wood-light);

    background: rgba(255,255,255,.07);
}


/* PHONE */

.phone-input {
    display: flex;

    border: 1px solid rgba(255,255,255,.16);

    background: rgba(255,255,255,.04);
}


.phone-prefix {
    min-width: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 14px;

    border-right: 1px solid rgba(255,255,255,.12);
}


.phone-input input {
    border: 0;
    background: transparent;
}


.phone-input:focus-within {
    border-color: var(--wood-light);
}


.form-button {
    width: 100%;
    height: 62px;

    margin-top: 8px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 24px;

    border: 0;

    background: #fff;
    color: var(--black);

    cursor: pointer;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .08em;

    transition: .3s ease;
}


.form-button:hover {
    background: var(--wood-light);
}


.form-button:disabled {
    opacity: .5;
    cursor: default;
}


.form-button span {
    font-size: 18px;
}


.form-note {
    margin-top: 15px;

    color: rgba(255,255,255,.28);

    font-size: 10px;

    line-height: 1.5;
}


.success-message {
    min-height: 400px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}


.success-icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border: 1px solid var(--wood-light);

    color: var(--wood-light);

    font-size: 25px;
}


.success-message h3 {
    font-family: "Manrope", sans-serif;

    font-size: 27px;
}


.success-message p {
    max-width: 350px;

    margin-top: 12px;

    color: rgba(255,255,255,.55);

    font-size: 14px;
}


.success-back {
    margin-top: 30px;

    border: 0;
    background: transparent;

    color: var(--wood-light);

    cursor: pointer;

    font-size: 11px;

    text-transform: uppercase;
    letter-spacing: .1em;
}


/* ABOUT */

.about {
    background: #fff;
}


.about-header {
    margin-bottom: 75px;
}


.about-grid {
    display: grid;

    grid-template-columns:
        1fr
        400px;

    gap: 100px;
}


.about-main {
    max-width: 760px;
}


.about-lead {
    font-family: "Manrope", sans-serif;

    font-size: 27px;

    line-height: 1.45;

    letter-spacing: -.02em;

    color: var(--text);
}


.about-main p:not(.about-lead) {
    margin-top: 25px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;
}


.about-stats {
    display: flex;
    flex-direction: column;

    border-top: 1px solid var(--border);
}


.about-stat {
    display: flex;
    align-items: center;

    gap: 25px;

    padding: 28px 0;

    border-bottom: 1px solid var(--border);
}


.about-stat strong {
    min-width: 105px;

    font-family: "Manrope", sans-serif;

    font-size: 42px;

    letter-spacing: -.05em;
}


.about-stat span {
    color: var(--muted);

    font-size: 11px;

    line-height: 1.5;

    text-transform: uppercase;
    letter-spacing: .08em;
}


.about-bottom {
    margin-top: 100px;

    padding-top: 30px;

    border-top: 1px solid var(--border);

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.about-bottom > span {
    font-family: "Manrope", sans-serif;

    font-size: 21px;

    line-height: 1.25;

    letter-spacing: -.03em;
}


.dark-button {
    display: inline-flex;
    align-items: center;

    gap: 30px;

    padding: 0 27px;

    height: 56px;

    background: var(--black);
    color: #fff;

    font-size: 11px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: .08em;

    transition: .3s ease;
}


.dark-button:hover {
    background: var(--wood);
}


.dark-button span {
    font-size: 17px;
}


/* PROJECTS */

.projects {
    background: var(--cream);
}


.projects-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


.project-card {
    position: relative;

    height: 560px;

    overflow: hidden;

    background: #222;
}


.project-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}


.project-card:hover img {
    transform: scale(1.04);
}


.project-overlay {
    position: absolute;

    inset: auto 0 0 0;

    padding: 80px 28px 28px;

    display: flex;
    flex-direction: column;

    gap: 5px;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.8)
        );

    color: #fff;
}


.project-overlay span {
    color: rgba(255,255,255,.55);

    font-size: 10px;

    text-transform: uppercase;
    letter-spacing: .15em;
}


.project-overlay strong {
    font-family: "Manrope", sans-serif;

    font-size: 24px;
}


/* CONTACTS */

.contacts {
    background: var(--dark);

    color: #fff;
}


.contacts-grid {
    display: grid;

    grid-template-columns:
        1fr
        500px;

    gap: 100px;

    align-items: end;
}


.contacts h2 {
    color: #fff;
}


.contacts p {
    max-width: 550px;

    margin-top: 25px;

    color: rgba(255,255,255,.55);

    font-size: 15px;

    line-height: 1.8;
}


.contact-links {
    display: flex;
    flex-direction: column;
}


.contact-link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 28px 0;

    border-top: 1px solid rgba(255,255,255,.13);

    transition: .3s ease;
}


.contact-link:last-child {
    border-bottom: 1px solid rgba(255,255,255,.13);
}


.contact-link:hover {
    padding-left: 10px;
}


.contact-link div {
    display: flex;
    flex-direction: column;

    gap: 6px;
}


.contact-link div span {
    color: rgba(255,255,255,.4);

    font-size: 10px;

    text-transform: uppercase;
    letter-spacing: .15em;
}


.contact-link strong {
    font-family: "Manrope", sans-serif;

    font-size: 20px;
}


.contact-link > span {
    color: var(--wood-light);

    font-size: 22px;
}


/* FOOTER */

.site-footer {
    background: var(--black);

    color: rgba(255,255,255,.45);
}


.footer-inner {
    min-height: 100px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 11px;
}


.footer-logo {
    color: #fff;

    font-family: "Manrope", sans-serif;

    font-size: 18px;
    font-weight: 700;

    letter-spacing: .04em;
}


/* MOBILE */

@media (max-width: 1050px) {

    .nav {
        display: none;
    }

    .header-inner {
        gap: 20px;
    }

    .logo {
        width: 180px;
    }

    .section {
        padding: 95px 0;
    }

    .callback-card {
        grid-template-columns: 1fr;
    }

    .callback-content {
        padding: 65px 55px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

}


@media (max-width: 760px) {

    .container {
        width: min(
            calc(100% - 36px),
            var(--container)
        );
    }

    .section {
        padding: 75px 0;
    }


    .site-header {
        position: absolute;
    }


    .header-inner {
        min-height: 85px;
    }


    .logo {
        width: 155px;
    }


    .logo img {
        height: 60px;
    }


    .header-button {
        min-height: 42px;

        padding: 0 15px;

        font-size: 10px;
    }


    .hero {
        min-height: 760px;
    }


    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(8,8,7,.92),
                rgba(8,8,7,.45)
            );
    }


    .hero h1 {
        font-size: 50px;
    }


    .hero-description {
        font-size: 14px;
    }


    .hero-actions {
        align-items: stretch;
        flex-direction: column;

        max-width: 300px;
    }


    .button {
        width: 100%;
    }


    .hero-bottom {
        margin-top: 60px;
        gap: 30px;
    }


    .hero-scroll {
        display: none;
    }


    .intro-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }


    .section-top {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }


    .section-top h2,
    .about-header h2,
    .contacts h2 {
        font-size: 43px;
    }


    .products {
        grid-template-columns: 1fr;
    }


    .product-image {
        height: 330px;
    }


    .product-info {
        padding: 27px;
    }


    .palette-card,
    .palette-card img {
        min-height: 430px;
        height: 430px;
    }


    .palette-overlay {
        left: 28px;
        bottom: 30px;
    }


    .palette-overlay strong {
        font-size: 39px;
    }


    .callback-content {
        padding: 50px 28px;
    }


    .callback-form-wrap {
        padding: 45px 28px;
    }


    .callback-details {
        flex-direction: column;
        gap: 20px;
    }


    .about-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }


    .projects-grid {
        grid-template-columns: 1fr;
    }


    .project-card {
        height: 450px;
    }


    .contacts-grid {
        gap: 45px;
    }


    .footer-inner {
        min-height: 120px;

        flex-direction: column;

        justify-content: center;

        gap: 10px;

        text-align: center;
    }

}


@media (max-width: 480px) {

    .header-button {
        display: none;
    }


    .logo {
        width: 170px;
    }


    .hero h1 {
        font-size: 43px;
    }


    .hero-bottom {
        flex-direction: column;
        gap: 18px;
    }


    .section-top h2,
    .about-header h2,
    .contacts h2 {
        font-size: 38px;
    }


    .product-info h3 {
        font-size: 30px;
    }

}