@font-face {
    font-family: "Curhaus Serif";
    src: local("Georgia");
}

@font-face {
    font-family: 'FinalSix Book';
    src: url('FinalSix-Book.woff2') format('woff2'),
        url('FinalSix-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


:root {
    --gold: #b29a6c;
    --blue: #338c9e;
    --green: #699070;
    --light-green: #a9c49e;
    --yellow: #f4cc8b;
    --ink: #22231f; //added from my side
    --paper: #f7f2eb; //added from my side
}

* {
    box-sizing: border-box;
}

html {
    background: #f7f2eb;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: 'FinalSix Book';
    background: #f7f2eb;
    font-weight: normal;
}

.page {
    width: min(100%, 1600px);
    margin: 0 auto;
    overflow: hidden;
    background: var(--paper);
    box-shadow: 0 0 38px rgba(67, 54, 39, .11);
}

.hero {
    position: relative;
    min-height: 653px;
    padding-bottom: 50px;
    background: var(--paper);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #f8f3ed 0%, rgba(248, 243, 237, .98) 24%, rgba(248, 243, 237, .72) 39%, rgba(248, 243, 237, .08) 57%, rgba(248, 243, 237, 0) 100%),
        linear-gradient(180deg, rgba(248, 243, 237, .05) 0%, rgba(248, 243, 237, 0) 78%, #f8f3ed 100%);
    pointer-events: none;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0% 0%;
}

.hero-copy {
    position: relative;
    z-index: 1;
    width: 550px;
    padding: 48px 0 0 80px;
}

.brand-logo {
    display: block;
    width: 250px;
    margin: 0 0 76px 0;
}

/*typography*/
h1 {
    font-size: 56px;
    line-height: 1;
    font-weight: 400;
}

h2 {
    font-size: 45px;
    line-height: 1.2;
    font-weight: 400;
}

h3 {
    font-size: 26px;
    line-height: 1.2;
    font-weight: 400;
}

h4 {
    font-size:22px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--gold);
    font-weight: bold;
}

h5 {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 400;
}

h6 {
    font-size:18px;
    line-height: 1.6;
    font-weight: 400;
}

p {
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0px !important;
    margin-bottom: 20px !important;
}


h1,
h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: 0;
}

.hero h1 {
    width: 380px;

    color: var(--gold);
}

.hero h1 span {
    display: block;
}

.hero h1 span:last-child,
.cta span {
    color: var(--green);
}

.hero h1 span:last-child {
    color: var(--green);
}

.rule {
    width: 76px;
    height: 1px;
    margin: 36px 0 25px;
    background: var(--gold);
}

.hero p,
.forest p,
.features p {
    margin: 0;

}



.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 207px;
    height: 49px;
    margin-top: 46px;
    border-radius: 3px;
    background: #b29a6c;
    color: #f7f2eb;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(105, 76, 37, .12);
    transition: all ease-in-out 0.3s;
}

.button:hover,
.button:focus {
    background: #699070;
}



.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;

    padding: 35px 70px;
    background: #fbf8f2;
}

.features article {
    position: relative;
    text-align: center;
    padding: 0 28px;
}

.features article+article::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 100px;
    background: rgba(170, 132, 72, .4);
    transform: translateY(-50%);
}

.features h2 {
    margin-top: 12px;

    color: #211f1e;
}

.features p {
    margin: 11px auto 0;

}

.feature-icon {
    width: 57px;
    height: 57px;
    margin: 0 auto;
    border-radius: 50%;
    display: block;
    object-fit: cover;
    margin-bottom: 15px;
}

.forest {
    position: relative;
    /*height: 381px;*/
    color: #f7f2eb;

}

.forest img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 38% 50%;
    display: block;
}

.forest::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 24, 12, 0) 0%, rgba(14, 25, 13, .04) 41%, rgba(18, 32, 16, .78) 66%, rgba(18, 32, 16, .92) 100%);
}

.forest-copy {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 65px;
    width: 500px;
    transform: translateY(-50%);
}

.forest-copy .rule {
    margin: 0 0 22px;
}

.forest h2 {

    margin-bottom: 22px;
}

.forest p {

    color: #f7f2eb;

}

.gallery {
    height: 290px;
    background: #f7f2eb;
    margin-top: 8px;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.cta {
    position: relative;

    padding: 33px 76px;
    overflow: hidden;
    background: #fbf7ef;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;

}

.cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    opacity: .78;
    filter: saturate(.82);
}

.cta h2,
.cta .button {
    position: relative;
    z-index: 1;
}

  h2 {
    color: var(--gold);

}

.golden-text{
     color: var(--gold);
}

.cta .button {
    min-width: 188px;
    height: 45px;
    margin: 24px 6px 0 0;
}

.footer {
    display: flex;
    align-items: center;
    gap: 31px;
    padding: 25px 60px;
    color: #f7f2eb;
    background: #6f8b70;
    justify-content: space-between;
}

.footer-logo {
    width: 170px;
    filter: brightness(0) invert(1);
    flex: 0 0 auto;
}




.fppter-contact {
    display: flex;
    align-items: flex-end;
}

ul.foot-contact {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    column-gap: 25px;
    align-items: center;
}

.foot-contact svg {
    width: 22px;
    height: 22px;
}

ul.foot-contact li {
    display: flex;
    column-gap: 10px;
    align-items: center;
}

ul.foot-contact li p {
    margin: 0px;
}

ul.foot-contact li p,
ul.foot-contact li a {
    color: #f7f2eb;
    text-decoration: none;
}

ul.foot-contact li a:hover,
ul.foot-contact li a:focus {
    color: #a9c49e;
}

/*================opening-offer=============*/

.opening-offer {
    padding: 50px 50px;
}

.golden-wrapper {
/*    border: 1px solid #b29a6c;
    padding: 35px;
     box-shadow: 1px 2px 10px #b29a6cc2;
        border-radius: 25px;
    background: #f7f2eb;*/
   
 
    width: 100%;
    display: flex;
    column-gap: 50px;
    justify-content: space-between;
}

.golden-wrapper-right {
    padding-left: 50px;
    border-left: 1px solid #b29a6c;
}

.golden-wrapper-left {
    width: 38%;
}

.golden-wrapper-middle , .golden-wrapper-right{
    width: 30%;
}

ul.keypoints {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    text-align: left;
    align-items: flex-start;
    row-gap: 20px;
}

ul.keypoints li {
    display: flex;
    align-items: flex-start;
    column-gap: 15px;
}

ul.keypoints li span.icon img {
    width: 50px;
    height: auto;
}

.keypoint-text {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.verticle-line{
    color: var(--gold);
}

ul.price {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    padding: 0px;
    width: 100%;
    row-gap: 15px;
}

 

ul.price li {
    display: flex;
    width: 100%;
    justify-content: space-between;
    font-weight: bold;
}

.angebot-text {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
}

.angebot-text {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    row-gap: 8px;
}

/*============responsive============*/

@media (max-width: 1250px) { 

.hero-copy {
  padding-left: 15px;
}
.features {
     padding: 35px 15px; 
}
.opening-offer {
    padding: 50px 15px;
}

.cta {
     padding: 33px 15px; 
}
.footer {
    padding: 25px 15px;
}


}

@media (max-width: 991px) { 

.hero::after {
    inset: auto;
}


.golden-wrapper {
    flex-wrap: wrap;
    column-gap: 15px;
}
.golden-wrapper-left {
    width: 100%;
}

.golden-wrapper-middle, .golden-wrapper-right {
    width: 45%;
    margin-top: 25px;
}

.golden-wrapper-right {
    padding-left: 25px;
    
}

.gallery img {
    height: auto;
    aspect-ratio: auto;
}

footer.footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

ul.foot-contact {
    flex-direction: column;
    align-items: center;
    row-gap: 15px;
}

ul.foot-contact {
    flex-direction: column;
    row-gap: 10px;
}

ul.foot-contact li{
  align-items: flex-start;
}

.footer {
  gap: 10px;
}

h1{
  font-size: 45px;
}
h2{
  font-size: 40px;
}

}



@media (max-width: 768px) {
    .page {
        width: 100%;
    }

    .hero {
        min-height: 720px;
    }

    .hero::after {
        background:
            linear-gradient(180deg, rgba(248, 243, 237, .98) 0%, rgba(248, 243, 237, .9) 44%, rgba(248, 243, 237, .24) 71%, rgba(248, 243, 237, .06) 100%),
            linear-gradient(90deg, #f8f3ed 0%, rgba(248, 243, 237, .58) 56%, rgba(248, 243, 237, 0) 100%);
    }

    .hero-image {
        object-position:77% 100%;
    }

    .hero-copy {
        width: auto;
        padding: 36px 15px 0;
    }

    .brand-logo {
        width: 150px;
        margin-bottom: 44px;
    }

    .hero h1 {
        width: min(100%, 360px);

    }

    .hero p {
        width: min(100%, 330px);
    }

    .features {
        height: auto;
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 34px 35px 42px;
    }

    .features article+article::before {
        display: none;
    }

    .forest {
        height: 480px;
    }

    .forest::after {
        background: linear-gradient(180deg, rgba(16, 29, 15, .1) 0%, rgba(16, 29, 15, .75) 50%, rgba(16, 29, 15, .94) 100%);
    }

    .forest-copy {
        top: auto;
        right: auto;
        left: 15px;
        bottom: 50px;
        width:100%;
    }

    .gallery {
        height: auto;
        grid-template-columns: 1fr;
    }

 

    .cta {
        height: auto;
        min-height: 230px;
        padding: 36px 15px;
        flex-direction: column;
        gap: 12px;
    }

    .cta h2 {}

    .cta .button {
        margin: 0;
    }


}


@media (max-width: 515px) { 
h1, h2 {
        font-size: 35px;
    }
    .hero::after {
        inset: 0%;
        opacity: 0.6;
    }


    .forest-copy {
        top: auto;
 
        left: 15px;
        bottom: 35px;
        width: calc(100% - 30px);
        transform: none;
    }

.golden-wrapper-middle, .golden-wrapper-right {
    width: 100%;
}

.golden-wrapper-right {
  padding-left: 0px;
  border-left: 0px;
}

.features article {
      padding: 0px;
}

}