/* ===================================================
   FONTS
=================================================== */

@font-face {
    font-family: "General Sans";
    src: url("../fonts/GeneralSans-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "General Sans";
    src: url("../fonts/GeneralSans-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "General Sans";
    src: url("../fonts/GeneralSans-Semibold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "General Sans";
    src: url("../fonts/GeneralSans-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ===================================================
   RESET
=================================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    overflow-x:hidden;
}

img{
    display:block;
    width:100%;
    height:auto;
}

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

ul{
    list-style:none;
}

button{
    border:none;
    background:none;
    cursor:pointer;
    font:inherit;
}

/* ===================================================
   VARIABLES
=================================================== */

:root{

    --bg:#ECE7A7;

    --light:#ECECEC;

    --text:#111111;

    --border:2px solid #111111;

    --radius:4px;

    --container:1280px;

    --transition:.35s ease;

    /* Spacing scale */
    --space-1:0.5rem;
    --space-2:1rem;
    --space-3:1.5rem;
    --space-4:2rem;
    --space-5:3rem;
    --space-6:4rem;
    --space-7:6rem;

}

/* ===================================================
   SPACING UTILITIES
=================================================== */

/* margin-top */
.mt-1{ margin-top:var(--space-1); }
.mt-2{ margin-top:var(--space-2); }
.mt-3{ margin-top:var(--space-3); }
.mt-4{ margin-top:var(--space-4); }
.mt-5{ margin-top:var(--space-5); }
.mt-6{ margin-top:var(--space-6); }
.mt-7{ margin-top:var(--space-7); }

/* margin-bottom */
.mb-1{ margin-bottom:var(--space-1); }
.mb-2{ margin-bottom:var(--space-2); }
.mb-3{ margin-bottom:var(--space-3); }
.mb-4{ margin-bottom:var(--space-4); }
.mb-5{ margin-bottom:var(--space-5); }
.mb-6{ margin-bottom:var(--space-6); }
.mb-7{ margin-bottom:var(--space-7); }

/* margin vertical / horizontal */
.my-1{ margin-block:var(--space-1); }
.my-2{ margin-block:var(--space-2); }
.my-3{ margin-block:var(--space-3); }
.my-4{ margin-block:var(--space-4); }
.my-5{ margin-block:var(--space-5); }
.my-6{ margin-block:var(--space-6); }
.my-7{ margin-block:var(--space-7); }

.mx-auto{ margin-inline:auto; }

/* padding-top */
.pt-1{ padding-top:var(--space-1); }
.pt-2{ padding-top:var(--space-2); }
.pt-3{ padding-top:var(--space-3); }
.pt-4{ padding-top:var(--space-4); }
.pt-5{ padding-top:var(--space-5); }
.pt-6{ padding-top:var(--space-6); }
.pt-7{ padding-top:var(--space-7); }

/* padding-bottom */
.pb-1{ padding-bottom:var(--space-1); }
.pb-2{ padding-bottom:var(--space-2); }
.pb-3{ padding-bottom:var(--space-3); }
.pb-4{ padding-bottom:var(--space-4); }
.pb-5{ padding-bottom:var(--space-5); }
.pb-6{ padding-bottom:var(--space-6); }
.pb-7{ padding-bottom:var(--space-7); }

/* padding vertical / horizontal */
.py-1{ padding-block:var(--space-1); }
.py-2{ padding-block:var(--space-2); }
.py-3{ padding-block:var(--space-3); }
.py-4{ padding-block:var(--space-4); }
.py-5{ padding-block:var(--space-5); }
.py-6{ padding-block:var(--space-6); }
.py-7{ padding-block:var(--space-7); }

.px-1{ padding-inline:var(--space-1); }
.px-2{ padding-inline:var(--space-2); }
.px-3{ padding-inline:var(--space-3); }
.px-4{ padding-inline:var(--space-4); }
.px-5{ padding-inline:var(--space-5); }
.px-6{ padding-inline:var(--space-6); }
.px-7{ padding-inline:var(--space-7); }

/* gap (for flex/grid containers) */
.gap-1{ gap:var(--space-1); }
.gap-2{ gap:var(--space-2); }
.gap-3{ gap:var(--space-3); }
.gap-4{ gap:var(--space-4); }
.gap-5{ gap:var(--space-5); }
.gap-6{ gap:var(--space-6); }
.gap-7{ gap:var(--space-7); }

/* ===================================================
   BASE
=================================================== */

body{

    background:var(--bg);

    color:var(--text);

    font-family:"General Sans",sans-serif;

    font-size:20px;

    font-weight:500;

    line-height:1.6;

}

.container{

    width:min(var(--container),90%);

    margin-inline:auto;

}

section{

    padding:180px 0;

}

/* ===================================================
   TYPOGRAPHY
=================================================== */

h1{
    font-size:71px;
    font-weight:600;
    line-height:1;
}

h2{
    font-size:40px;
    font-weight:500;
    line-height:1;
}

h3{

    font-size:1em;

    font-weight:600;

    margin-bottom:18px;

}

p{

    font-size:1em;

    line-height:1.75;

}

strong{

    font-weight:700;

}

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

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    backdrop-filter:blur(12px);

    background:rgba(236,231,167,.82);

}

.navbar{

    height:92px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo{

    display:flex;

    align-items:center;

    gap:16px;

    font-weight:600;

}

.logo img{

    width:70px;

}

.logo span{
    font-size:26px;
    font-weight:500;
}

.nav-links{

    display:flex;

    align-items:center;

    gap:56px;

}

.nav-links a{

    position:relative;

    font-size:1em;

    font-weight:500;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:#111;

    transition:var(--transition);

}

.nav-links a:hover::after{

    width:100%;

}

.hamburger{

    display:none;

    width:32px;

    height:24px;

    flex-direction:column;

    justify-content:space-between;

}

.hamburger span{

    height:2px;

    background:#111;

    border-radius:999px;

    transition:.35s;

}

.button{

    display:inline-flex;

    align-items:center;

    gap:12px;

    margin-top:34px;

    padding:14px 22px;

    border:2px solid #111;

    border-radius:4px;

    transition:var(--transition);

    font-size:1em;

    font-weight:500;

}

.button:hover{

    background:#111;

    color:var(--bg);

}

.button span{

    font-size:1em;

}

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

.hero{

    min-height:100svh;

    display:flex;

    align-items:center;

    padding-top:220px;

}

.hero-grid{

    display:grid;

    grid-template-columns:0.9fr 1.1fr;

    align-items: center;

}

.hero-content{

    max-width:600px;

}

.hero-description{

    margin-top:34px;

    max-width:600px;

    font-size:1em;

    line-height:1.7;

}

.hero-subtitle{

    margin-top:28px;

    font-size:1em;

    font-weight:600;

}

.hero-image{

    display:flex;

    justify-content:flex-end;

    align-items:center;

}

.hero-image img{

    width:100%;

    max-width:580px;

    object-fit:contain;

}

/* ===================================================
   SERVICES
=================================================== */

.services{

    padding-top:120px;

}

.services-grid{

    display:grid;

    grid-template-columns:320px 1fr;

    align-items:start;

    gap:clamp(60px,8vw,120px);

}

.services-left{

    display:flex;

    flex-direction:column;

}

.truck{

    width:100%;

    max-width:340px;

    margin-top:90px;

}

.services-right{

    display:grid;

    grid-template-columns:repeat(2,minmax(0,1fr));

    gap:60px 90px;

}

.service{

    max-width:300px;

}

.service h3{

    margin-bottom:18px;

}

.service p{

    line-height:1.7;

}

/* ===================================================
   STATEMENT
=================================================== */

.statement{

    padding-top:120px;

    padding-bottom:40px;

}

.statement h1{

    font-size:71px;
    font-weight:600;
    line-height:.95;

}


/* ===================================================
   ADVANTAGES
=================================================== */

.advantages{

    padding-top:140px;

    padding-bottom:180px;

}

.advantages-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:clamp(60px,8vw,120px);

}

.advantages-image{

    display:flex;

    justify-content:left;

}

.handtruck{

    width:100%;

    max-width:380px;

}

.advantages-title{

    font-size:40px;
    font-weight:500;

    margin-bottom:70px;

}

.advantages-stack{

    position:relative;

    width:100%;
    max-width:620px;

    height:390px;

    margin-left:0;

}

.advantage-card{

    position:absolute;

    padding:28px 32px;

    border:2px solid #111;

    border-radius:6px;

    background:var(--bg);

    font-size:40px;

    font-weight:500;

    line-height:1.05;

    letter-spacing:-.02em;

    box-shadow:0 12px 30px rgba(0,0,0,.05);

    transition:.35s ease;

    cursor:default;

}

.advantage-card:hover{

    transform:rotate(0deg) scale(1.04)!important;

    z-index:10;

}

.advantage-card:nth-child(1){

    top:0;

    left:0;

    transform:rotate(-2deg);

}

.advantage-card:nth-child(2){

    top:10px;

    right:0;

    transform:rotate(2deg);

}

.advantage-card:nth-child(3){

    bottom:110px;

    left:20px;

    transform:rotate(2deg);

}

.advantage-card:nth-child(4){

    bottom:100px;

    right:20px;

    transform:rotate(-2deg);

}

/* ===================================
   SO EINFACH GEHT'S
=================================== */

.steps{

    padding-top:70px;
    padding-bottom:140px;

}

.steps-grid{

    display:grid;
    grid-template-columns:320px 1fr;
    gap:180px;

}

.steps-left h2{

    font-size:40px;
    font-weight:500;
    line-height:1.0;

}

.steps-right{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:60px 90px;

}

.step{

    max-width:290px;

}

.step h3{

    font-size:1em;
    font-weight:600;
    margin-bottom:18px;

}

.step p{

    font-size:1em;
    line-height:1.7;

}

/* ===================================================
   ABOUT
=================================================== */

.about{

    padding-top:140px;

}

.about-grid{

    display:grid;

    grid-template-columns:repeat(2,minmax(0,1fr));

    gap:clamp(60px,8vw,120px);

    align-items:start;

}

.about-content{

    max-width:360px;

}

.about-content h2{

    margin-bottom:30px;

}

.about-content p{

    font-size:1em;
    line-height:1.7;

}

.about-images{

    display:grid;

    grid-template-columns:repeat(2, 380px);

    gap:20px;

    justify-content:end;

}

.about-image{

    width:100%;

    aspect-ratio:.82;

    object-fit:cover;

    border-radius:4px;

}

/* ===================================================
   REVIEWS
=================================================== */

.reviews{

    padding-top:80px;

    padding-bottom:220px;

}

.reviews h2{

    text-align:left;

}

.reviews-wrapper{

    display:flex;

    justify-content:center;

    margin-top:200px;

}

.review-stack{

    position:relative;

    width:min(430px,100%);

    height:270px;

}

.review-shadow{

    position:absolute;

    inset:0;

    border:2px solid #111;

    border-radius:4px;

    background:var(--bg);

}

.shadow-one{

    transform:rotate(-2deg);

    top:-10px;

    left:-8px;

}

.shadow-two{

    transform:rotate(2deg);

    top:8px;

    left:8px;

}

.review-card{

    position:absolute;

    inset:0;

    border:2px solid #111;

    border-radius:4px;

    background:var(--bg);

    display:flex;

    justify-content:center;

    align-items:center;

    padding:42px;

    transform:rotate(-1deg);

    transition:.4s ease;

    z-index:5;

}

.review-content{

    max-width:270px;

    text-align:center;

}

.review-text{

    margin-bottom:24px;

    line-height:1.75;

}

.review-name{

    font-weight:600;

}

/* ===================================================
   CONTACT
=================================================== */

.contact{

    padding-top:0px;
    padding-bottom: 0;


}

.contact-body{

    background:var(--light);
    padding:20px 0;

}

.contact-heading{

    margin-bottom:40px;

}

.contact-heading h1{

    font-size:71px;
    font-weight:600;
    line-height:.95;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:40px;

}

.contact-content h3{

    font-size:clamp(1.9rem,4vw,2.5rem);

    line-height:1.15;

    font-weight:500;

    margin-bottom:50px;

    max-width:800px;

}

.contact-information{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.contact-information a{

    font-size:clamp(1.5rem,3vw,2.2rem);

    font-weight:500;

}

.contact-image{

    display:flex;

    justify-content:flex-end;

}

.contact-image img{

    width:100%;

    max-width:400px;

}

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

.footer{

    background:var(--light);

    padding:80px 0 40px;

}

.footer-grid{

    display:grid;

    grid-template-columns:1.4fr 2fr 2fr 1fr;

    gap:120px;

    align-items:start;

}

.footer-logo img{

    max-width:300px;

}

@media (max-width:768px){

    .footer-logo img{

        max-width:220px;

    }

}

@media (max-width:480px){

    .footer-logo img{

        max-width:180px;

    }

}

.footer-address,
.footer-contact,
.footer-links{

    display:flex;

    flex-direction:column;

    gap:20px;

    font-size:0.7em;

    line-height:1.7;

}

.footer-links a{

    position:relative;

    font-size:1em;

    font-weight:500;

}

.footer-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0px;

    width:0;

    height:1px;

    background:#111;

    transition:var(--transition);

}

.footer-links a:hover::after{

    width:60%;

}


/* ===================================================
   LARGE TABLET
=================================================== */

@media (max-width:1200px){

    .hero-grid,
    .services-grid,
    .about-grid,
    .advantages-grid,
    .contact-grid{

        gap:60px;

    }

}


/* ===================================================
   TABLET
=================================================== */

@media (max-width:992px){

    section{

        padding:120px 0;

    }

    .navbar{

        height:82px;

    }

    .hero{

        min-height:auto;

        padding-top:150px;
        padding-bottom:100px;

    }

    .hero-grid,
    .services-grid,
    .about-grid,
    .advantages-grid,
    .contact-grid{

        grid-template-columns:1fr;

    }

    .hero-content,
    .about-content{

        max-width:100%;

    }

    .hero-image,
    .advantages-image,
    .contact-image{

        justify-content:center;

    }

    .hero-image img{

        max-width:520px;

    }

    .truck{

        margin-inline:auto;

    }

    .services-left{

        align-items:flex-start;

    }

    .services-right{

        gap:50px;

    }

    .advantages-content h2{

        text-align:left;

    }

    .advantages-stack{

        margin-left:0;

    }

    .footer-grid{

        grid-template-columns:repeat(2,1fr);

        gap:40px;

    }

}


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

@media (max-width:768px){

    h1{

        font-size:clamp(3.2rem,13vw,4.8rem);

    }

    h2{

        font-size:clamp(2.3rem,9vw,3.8rem);

    }

    p{

        font-size:15px;

    }

    .navbar{

        height:76px;

    }

    .logo img{

        width:52px;

    }

    .logo span{

        font-size:18px;

    }

    .hamburger{

        display:flex;

    }

    .nav-links{

        position:fixed;

        top:76px;
        right:-100%;

        width:100%;

        height:calc(100vh - 76px);

        background:var(--bg);

        flex-direction:column;

        justify-content:center;

        gap:48px;

        transition:.4s ease;

        z-index:999;

    }

    .nav-links.active{

        right:0;

    }

    .hero{

        padding-top:120px;

    }

    .hero-grid{

        gap:60px;

    }

    .hero-description{

        max-width:100%;

    }

    .hero-image img{

        max-width:480px;

    }

    .button{

        width:100%;

        justify-content:center;

    }

    .services{

        padding-top:120px;

    }

    .services-grid{

        gap:50px;

    }

    .services-right{

        grid-template-columns:1fr;

        gap:45px;

    }

    .truck{

        max-width:380px;

        margin-top:40px;

    }

    .statement{

        padding-top:140px;

        padding-bottom:20px;

    }

    .steps-grid{

    grid-template-columns:1fr;
    gap:45px;

}

.steps-right{

    grid-template-columns:1fr;
    gap:35px;

}

    .about{

        padding-top:120px;

    }

    .about-grid{

        gap:50px;

    }

    .about-images{

        grid-template-columns:1fr;

    }

    .advantages{

        padding-top:120px;

        padding-bottom:120px;

    }

    .advantages-stack{

        height:auto;

    }

    .advantage-card{

        position:relative;

        inset:auto !important;

        transform:none !important;

        width:100%;

        margin-bottom:18px;

    }

    .advantage-card:hover{

        transform:none !important;

    }

    .reviews{

        padding-bottom:140px;

    }

    .reviews-wrapper{

        margin-top:60px;

    }

    .review-card{

        padding:28px;

    }

    .contact{

        padding-top:100px;

    }

    .contact-grid{

        gap:60px;

    }

    .contact-content h3{

        margin-bottom:35px;

    }

    .contact-image img{

        max-width:280px;

    }

    .footer{

        padding-top:60px;

    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:35px;

    }

}


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

@media (max-width:480px){

    .container{

        width:min(100%,90%);

    }

    h1{

        font-size:3rem;

    }

    h2{

        font-size:2.4rem;

    }

    .hero-image img{

        max-width:300px;

    }

    .truck{

        max-width:220px;

    }

    .handtruck{

        max-width:260px;

    }

    .contact-image img{

        max-width:150px;

    }

}

