@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");

:root {
    --fog: #ebebe6;
    --driftwood: #c0b8ab;
    --stone: #a3a19b;
    --oatmeal: #c9c5bf;
    --umber: #685b4d;
    --dumber: #36271d;
    --background: #f7f5f1;
    --white: #ffffff;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--dumber);
    background-color: var(--background);
}

img {
    max-width: 100%;
    display: block;
}


.section {
    padding: 4rem 1.5rem;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

h1, h2, h3 {
    color: var(--dumber);
    letter-spacing: 0.02em;
}

p {
    line-height: 1.7;
    color: #3b3228;
}


.site-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    background: rgba(198, 187, 173, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.logo {
    width: 42px;
    height: auto;
    object-fit: contain;
}

.brand-text {
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: var(--dumber);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding-bottom: 0.1rem;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-links li a:hover {
    color: var(--umber);
    border-color: var(--umber);
}


.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    height: 2px;
    background: var(--dumber);
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
}

.nav-toggle span:nth-child(1) { width: 100%; }
.nav-toggle span:nth-child(2) { width: 80%; }
.nav-toggle span:nth-child(3) { width: 60%; }

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    width: 100%;
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    width: 100%;
}


.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4.5rem 1.5rem 3rem;
    background: linear-gradient(
            to bottom,
            rgba(40, 32, 24, 0.65),
            rgba(40, 32, 24, 0.75)
        ),
        url("images/stone-background.jpg") center/cover no-repeat;
    color: var(--fog);
}

.hero-inner {
    max-width: 650px;
    text-align: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--oatmeal);
    margin-bottom: 0.75rem;
}

.hero h1 {
    font-size: clamp(2.15rem, 4vw, 2.9rem);
    margin: 0 0 1rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    max-width: 34rem;
    margin: 0 auto 2rem;
    color: var(--fog);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.22s ease, color 0.22s ease, transform 0.16s ease,
        box-shadow 0.22s ease, border-color 0.22s ease;
}

.btn-primary {
    background-color: var(--fog);
    color: var(--dumber);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.btn-secondary {
    background-color: transparent;
    color: var(--fog);
    border-color: var(--fog);
}

.btn-secondary:hover {
    background-color: rgba(235, 235, 230, 0.1);
}


.btn-outline {
    border-color: var(--dumber);
    background-color: transparent;
    color: var(--dumber);
    border-radius: 999px;
    padding-inline: 1.6rem;
}

.btn-outline:hover {
    background-color: var(--dumber);
    color: var(--fog);
}


.about {
    background-color: var(--background);
}

.about h2 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.two-column {
    display: grid;
    gap: 1.75rem;
}

@media (min-width: 768px) {
    .two-column {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


.products {
    background-color: var(--fog);
}

.products-intro {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 900px) {
    .products-intro {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr);
        align-items: start;
    }
}

.products-copy {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.logoprod {
    width: 70px;
    height: auto;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}


.product-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    max-width: 320px;
	
}


@media (max-width: 1024px) {
    .product-card {
        flex: 1 1 calc(50% - 1.5rem);
    }
}


@media (max-width: 640px) {
    .product-card {
        flex: 1 1 100%;
    }
}

.product-card {
    background-color: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.product-card h3 {
    font-size: 1rem;
    margin: 0.85rem 1rem 1rem;
}

.product-card h3 a {
    text-decoration: none;
    color: var(--dumber);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}


.contact-section {
    background-color: var(--background);
}

.contact {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 900px) {
    .contact {
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.4fr);
        align-items: flex-start;
    }
}

.contact-left h2 {
    margin-bottom: 0.75rem;
    font-size: 1.8rem;
}

.contact-intro {
    margin-bottom: 1.75rem;
    max-width: 30rem;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-details {
    padding: 1.25rem 1.5rem;
    background-color: var(--fog);
    border-radius: 14px;
}

.contact-details h3 {
    margin-top: 0;
    margin-bottom: 0.85rem;
    font-size: 1.1rem;
}

.map-wrapper iframe {
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

/* FORM */

form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dumber);
}

.form-group span {
    color: #b03a2e;
    margin-left: 0.1rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 0.9rem;
    border: 1.5px solid var(--stone);
    border-radius: 10px;
    background-color: #f3f0ea;
    color: #333;
    font-size: 0.98rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--umber);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(104, 91, 77, 0.18);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.submit-btn {
    border: none;
    border-radius: 999px;
    background-color: var(--dumber);
    color: var(--fog);
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    max-width: 230px;
    transition: background-color 0.22s ease, transform 0.16s ease, box-shadow 0.22s ease;
}

.submit-btn:hover {
    background-color: var(--umber);
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}


.site-footer {
    padding: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #6d645c;
    background-color: #e0dbd3;
}



@media (max-width: 720px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        inset-inline: 0;
        top: 56px;
        flex-direction: column;
        background-color: rgba(198, 187, 173, 0.98);
        padding: 0.75rem 1.5rem 1rem;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-8px);
        transition: max-height 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
    }

    .nav-links.open {
        max-height: 220px;
        opacity: 1;
        transform: translateY(0);
    }
}