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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f2ec;
    color: #171717;
    line-height: 1.6;
}

img {
    width: 100%;
    display: block;
    object-fit: contain;
}

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

button {
    font-family: inherit;
}


/* =========================
   GLOBAL
========================= */

.container {
    width: min(1180px, 90%);
    margin: auto;
}

.eyebrow {
    font-size: 12px;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 18px;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 60px;
}

.section-heading.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2 {
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1;
    margin-bottom: 25px;
}

.section-heading p {
    color: #68645d;
}


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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(245, 242, 236, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-container {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 95px;
    height: auto;
    display: block;
}

.logo-number {
    font-style: italic;
}

.navigation {
    display: flex;
    gap: 30px;
}

.navigation a {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.navigation a:hover {
    opacity: 0.55;
}

.nav-button {
    background: #171717;
    color: white;
    padding: 12px 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-button {
    display: none;
    border: 0;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
}


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

.hero {
    min-height: 100vh;
    background-image: url("Images/hero.png");
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero h1 {
    font-size: clamp(52px, 9vw, 110px);
    line-height: 0.88;
    letter-spacing: -5px;
    max-width: 900px;
}

.hero-text {
    font-size: 20px;
    margin-top: 30px;
    color: #eeeeee;
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


/* =========================
   BUTTONS
========================= */

.button {
    display: inline-block;
    padding: 15px 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s;
}

.button-light {
    background: white;
    color: #171717;
}

.button-light:hover {
    background: #dedbd4;
}

.button-outline {
    border: 1px solid white;
    color: white;
}

.button-outline:hover {
    background: white;
    color: #171717;
}

.button-dark {
    background: #171717;
    color: white;
}

.button-dark:hover {
    background: #3a3a3a;
}


/* =========================
   BUILT TO ORDER
========================= */

.built-order {
    padding: 120px 0;
    background: #f5f2ec;
}

.custom-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.option-number {
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #8b8378;
}

.option h3 {
    font-size: 25px;
    margin-bottom: 15px;
}

.option p {
    color: #68645d;
}


/* =========================
   HOW WE WORK
========================= */

.how-we-work {
    padding: 120px 0;
    background: #1a1a1a;
    color: white;
}

.how-we-work .section-heading p {
    color: #bdb9b1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #444;
}

.process-card {
    background: #1a1a1a;
    padding: 40px 30px;
    min-height: 250px;
}

.process-card span {
    font-size: 13px;
    letter-spacing: 2px;
    color: #aaa;
}

.process-card h3 {
    margin: 50px 0 15px;
    font-size: 25px;
}

.process-card p {
    color: #aaa;
}


/* =========================
   COLLECTION
========================= */

.collection {
    padding: 120px 0;
    background: #f5f2ec;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.product-card {
    background: white;
    overflow: hidden;
}

.product-image {
    position: relative;
    height: 500px;
}

.product-image img {
    height: 100%;
}

.product-label {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: white;
    padding: 10px 15px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.product-content {
    padding: 35px;
}

.product-category {
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 700;
    color: #8a837a;
    margin-bottom: 10px;
}

.product-content h3 {
    font-size: 30px;
    margin-bottom: 15px;
}

.product-content > p {
    color: #68645d;
    margin-bottom: 25px;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 600;
}

.product-button {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #171717;
    padding-bottom: 5px;
}


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

.about {
    padding: 120px 0;
    background: #ddd8cf;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    height: 650px;
}

.about-image img {
    height: 100%;
}

.about-content h2 {
    font-size: clamp(40px, 6vw, 70px);
    line-height: 0.95;
    margin-bottom: 30px;
}

.about-content p {
    color: #5d5952;
    margin-bottom: 20px;
    max-width: 520px;
}


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

.cta {
    padding: 130px 0;
    background: #171717;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 850px;
}

.cta h2 {
    font-size: clamp(40px, 7vw, 80px);
    line-height: 0.95;
    margin-bottom: 30px;
}

.cta p:not(.eyebrow) {
    color: #bdbdbd;
    margin-bottom: 35px;
}


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

.footer {
    background: #0e0e0e;
    color: white;
    padding-top: 70px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 70px;
}

.footer-logo {
    font-size: 40px;
    font-weight: 900;
}

.footer p {
    color: #999;
    max-width: 300px;
    margin-top: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4 {
    margin-bottom: 10px;
}

.footer-links a {
    color: #999;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #292929;
    text-align: center;
    padding: 25px;
}

.footer-bottom p {
    max-width: none;
    margin: 0;
    font-size: 12px;
}


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

@media (max-width: 850px) {

    .navigation {
        position: absolute;
        top: 82px;
        left: 0;
        width: 100%;
        background: #f5f2ec;
        display: none;
        flex-direction: column;
        padding: 25px 5%;
        gap: 20px;
        border-bottom: 1px solid #ddd;
    }

    .navigation.active {
        display: flex;
    }

    .nav-button {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .custom-options {
        grid-template-columns: 1fr;
        gap: 45px;
    }

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

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        height: 450px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 550px) {

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

    .hero-text {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .product-image {
        height: 380px;
    }

    .product-content {
        padding: 25px;
    }

    .about-image {
        height: 350px;
    }

}