* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #F8FBFC;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.header {
    padding-top: 34px;
    padding-bottom: 56px;
}

.header .container {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #000000;
}

.hero-top {
    background-image: url('../img/hero-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 12px;
    padding-bottom: 350px;
}

.heading-primary {
    font-family: 'Noto Serif', serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #A8A05B;
}

.hero-bottom {
    background: #A8A05B;
    color: #fff;
    padding-top: 17px;
    padding-bottom: 38px;
}

.hero-bottom .container {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
}

.hero-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 121%;
    letter-spacing: 0%;
}

.hero-title {
    font-family: 'Noto Serif', serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.btn-outline {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    font-size: 22px;
    line-height: 120%;
    text-align: center;
    padding: 24px;
    text-align: center;
    display: block;
    border: 1px solid #F8FBFC;
}

.about-section .container {
    display: flex;
    gap: 80px;
}

img {
    max-width: 100%;
}

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

.heading-secondary {
    font-family: 'Noto Serif', serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #A8A05B;
}

.heading-tertiary {
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.subtitle {
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    margin-bottom: 36px;
    color: #A8A05B;
}

.about-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.about-item {
    padding: 40px 15px;
    border: 1px solid #A8A05B;
}

.text {
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    letter-spacing: 0%;
}

.work-section {
    background: #E6E4D1;
    padding: 80px 0px;
}

.work-title {
    font-family: 'Noto Serif', serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #A8A05B;
}

.work-section .subtitle {
    font-weight: 400;
}

.work-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    row-gap: 40px;
    text-align: center;
}

.work-name {
    font-weight: 400;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    margin-top: 40px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 155px;
}

.why-item .heading-tertiary {
    color: #A8A05B;
}

.why-section {
    padding: 80px 0px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-list .heading-tertiary {
    color: #A8A05B;
}

.faq-section {
    padding-bottom: 80px;
}

.faq-item {
    border: 1px solid #A8A05B;
    padding: 30px 20px;
}

.footer {
    text-align: center;
    color: #fff;
    background: #A8A05B;
    padding: 40px 0px;
}

.footer-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
    margin-bottom: 60px;
}

.footer-item {
    color: #000;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-large {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
}

.footer-nav {
    display: flex;
    gap: 8px;
}

.footer-link {
    text-decoration: none;
    color: #fff;
    padding: 8px;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0px;
    text-align: center;
    text-transform: uppercase;
}

html {
    scroll-behavior: smooth;
}

.contact-section {
    padding: 40px;
    color: #A8A05B;
  }
  
  .contact-form {
    margin-top: 20px;
  }
  
  .contact-label {
    display: block;
    margin-bottom: 5px;
  }
  
  .contact-input,
  .contact-textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #A8A05B;
    color: #A8A05B;
  }
  
  .contact-button {
    background-color: #A8A05B;
    color: #1e1e1e;
    padding: 20px 40px;
    border: none;
    cursor: pointer;
    font-family: 'Noto Serif', serif;
  }

  .burger {
    display: none;
  }

  .fullscreen-nav {
    display: none;
  }

  .main-section {
    padding: 80px 0px;
  }

  .main-title {
    font-family: 'Noto Serif', serif;
    font-weight: 700;
    font-size: 80px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #A8A05B;
  }

  .main-section p {
    line-height: 120%;
  }

  .btn-primary {
    border: none;
    background: #A8A05B;
  }

  .thx-section .container {
    max-width: 560px;
  }

  .thx-section {
    padding: 80px 0px;
  }

  .thx-title {
    font-family: 'Noto Serif', serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 59px;
    letter-spacing: 0%;
    text-align: center;
    color: #A8A05B;
    margin-bottom: 30px;
  }

@media(max-width: 1280px) {
    .container {
        padding: 0px 20px;
    }

    .burger {
        display: block;
        border: none;
        background: none;
    }

    .header .nav-link {
        display: none;
    }

    .header .container {
        justify-content: space-between;
    }

    .logo {
        width: 220px;
    }

    .heading-primary {
        font-weight: 700;
        font-size: 22px;
        line-height: 100%;
        letter-spacing: 0%;
        text-transform: uppercase;
    }

    .hero-top {
        background-image: url('../img/hero-bg-mob.png');
    }

    .hero-bottom .container {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .hero-title {
        text-align: center;
        font-size: 18px;
    }

    .about-section .container {
        flex-direction: column;
        gap: 40px;
    }

    .heading-secondary {
        font-size: 26px;
    }

    .heading-tertiary {
        font-size: 20px;
    }

    .about-list {
        grid-template-columns: repeat(1, 1fr);
        max-width: 240px;
        margin: 0 auto;
    }

    .work-list {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 20px;
    }

    .why-item {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .why-item:nth-child(even) {
        flex-direction: column;
    }

    .contact-section {
        padding: 40px 0px;
    }

    .footer-list {
        flex-direction: column;
        gap: 14px;
    }

    .footer-bottom {
        flex-direction: column-reverse
    }

    .footer-nav {
        flex-direction: column;
        gap: 16px;
    }

    .header {
        padding: 28px 0px;
    }

    .fullscreen-nav {
        flex-direction: column;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #A8A05B;
        padding: 28px 20px;
        gap: 20px;
    }

    .fullscreen-nav.active {
        display: flex;
    }

    .full-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .full-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .nav-link {
        color: #fff;
        font-weight: 600;
        font-size: 32px;
        line-height: 100%;
        letter-spacing: 0%;
        text-transform: uppercase;

    }

    .main-title {
        font-size: 40px;
    }
}
  