* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #fff;
    color: #24251f;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
}

.topbar {
    height: 76px;
    padding: 0 4vw;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border-bottom: 1px solid #e9e7e1;
}

.brand {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    letter-spacing: .19em;
    white-space: nowrap;
}

.menu-button,
.header-tools button {
    border: 0;
    background: transparent;
    padding: 8px;
    color: #30312b;
    cursor: pointer;
    font-size: 20px;
}

.menu-button {
    justify-self: start;
    font-size: 17px;
}

.header-tools {
    justify-self: end;
    display: flex;
    gap: 6px;
}

.nav {
    height: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(22px, 4vw, 55px);
    border-bottom: 1px solid #e9e7e1;
}

.nav a,
.footer-links a {
    color: #34352f;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: .13em;
}

.collection-intro {
    max-width: 850px;
    margin: 0 auto;
    padding: 38px 24px 40px;
    text-align: center;
}

.eyebrow {
    margin: 0 0 15px;
    font-size: 10px;
    letter-spacing: .25em;
    color: #77796f;
}

.collection-intro h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    font-size: clamp(31px, 4vw, 48px);
    line-height: 1.12;
}

.description {
    max-width: 690px;
    margin: 24px auto 0;
    color: #6f7069;
    font-size: 13px;
    line-height: 1.8;
}

main {
    width: min(1400px, 92vw);
    margin: 0 auto;
}

.collection-bar {
    height: 60px;
    border-top: 1px solid #e9e7e1;
    border-bottom: 1px solid #e9e7e1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #77786f;
    font-size: 10px;
    letter-spacing: .12em;
}

.collection-bar button {
    border: 0;
    background: transparent;
    font-size: 10px;
    letter-spacing: .12em;
    color: #34352f;
    cursor: pointer;
}

.collection-bar button span {
    margin-left: 12px;
    font-size: 15px;
}

.products {
    display: grid;
    grid-template-columns: repeat(3, 300px);
    justify-content: center;
    column-gap: 25px;
    row-gap: 40px;
	margin-top:20px;
}

.product-card {
    min-width: 0;
}

.product-image-link {
    display: block;
	    width: 100%;
    max-width: 300px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #f2f1ed;
}

.product-image-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.product-card:hover .product-image-link img {
    transform: scale(1.025);
}

.product-card {
    transition: transform .28s ease;
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-info {
    padding-top: 17px;
}

.product-info h2 {
    margin: 0 0 9px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
}

.price {
    margin-bottom: 13px;
    color: #5e6058;
    font-size: 12px;
}

.view-link {
    display: inline-block;
    color: #30312b;
    text-decoration: none;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    border-bottom: 1px solid #30312b;
    padding-bottom: 4px;
    transition: opacity .2s ease;
}

.view-link:hover {
    opacity: .55;
}



.coming-soon-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.coming-soon-content {
    padding: 40px;
}

.coming-soon-brand {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 5vw, 60px);
    letter-spacing: 0.18em;
    color: #444;
    margin-bottom: 18px;
}

.coming-soon-text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 600;
    letter-spacing: 0.25em;
    color: #666;

}

.coming-soon-text2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(18px, 2.5vw, 20px);
    font-weight: 600;
    letter-spacing: 0.25em;
    color: #666;
		margin-top:40px;
}


footer {
    border-top: 1px solid #e9e7e1;
    text-align: center;
    padding: 55px 20px 35px;
    color: #73746d;
}

.footer-brand {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    letter-spacing: .18em;
    color: #30312b;
}

footer p {
    font-size: 11px;
    margin: 11px 0 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

footer small {
    font-size: 9px;
    color: #999a93;
}

@media (max-width: 700px) {
    .topbar {
        height: 65px;
    }

    .brand {
        font-size: 20px;
    }

    .nav {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 18px;
        gap: 25px;
        white-space: nowrap;
    }

    .collection-intro {
        padding: 45px 20px 35px;
    }

    .description {
        font-size: 12px;
    }

    .products {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 14px;
        row-gap: 38px;
    }

    .product-info h2 {
        font-size: 14px;
    }
}

@media (max-width: 440px) {
    .products {
        grid-template-columns: 1fr;
    }

    .menu-button {
        visibility: hidden;
    }
}
