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

body {
    font-family: 'Inter', sans-serif;
    color: #2b2b2b;
    background: #faf8f4;
    line-height: 1.6;
}

/* HEADER */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
    background: white;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    height: auto;
    max-height: 100px;
    width: auto;
    display: block;
}

.logo h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    letter-spacing: 3px;
    margin: 0;
    line-height: 1;
}

.logo span {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 20px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #8a6a4d;
}

/* HERO */

.hero {
    position: relative;
    height: 300px;
    background: url('herobanner.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-left: 80px;
}

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

.hero-content {
    position: relative;
    max-width: 500px;
    color: #FFFFE3;
}

.hero-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 17px;
    margin-bottom: 30px;
    max-width: 420px;
}

.btn {
    display: inline-block;
    background: #2d382c;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    letter-spacing: 1px;
    font-size: 14px;
    transition: 0.3s;
}

.btn:hover {
    background: #1f281f;
}

/* PRODUCTS */

.products-section {
    padding: 10px 60px;
    text-align: center;
}

.products-section h3 {
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 15px;
    color: #777;
}

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

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

.productimg {
    width: auto;
    height: 50%;
}

.product-card h4 {
    margin-top: 18px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
}

.product-card .product-image {
    width: 100%;
    height: 150px;       /* pick the height you want */
    overflow: hidden;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.featured-heading::before,
.featured-heading::after {
  content: "";
  flex: 0 0 2in;
  border-top: 2px solid #cfc6b8;
}


/* VALUES */

.values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 20px 60px 80px;
    text-align: center;
}

.value-item h4 {
    margin-bottom: 12px;
    font-size: 18px;
}

.value-item p {
    color: #666;
    font-size: 14px;
}

/* STORY */

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

.story-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.story-text span {
    letter-spacing: 3px;
    font-size: 12px;
    color: #888;
}

.story-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    margin: 15px 0;
}

.story-text p {
    margin-bottom: 25px;
    color: #555;
}

.btn-secondary {
    text-decoration: none;
    color: white;
    background: #2d382c;
    padding: 14px 26px;
    display: inline-block;
}

/* RESPONSIVE */

@media (max-width: 900px) {

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

    .hero {
        padding: 40px;
        height: 420px;
    }

    .hero-content h2 {
        font-size: 44px;
    }

    .header {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
    }
}

.site-footer {
    background: #f4efe8;
    border-top: 1px solid #d8d0c4;
    padding: 30px 20px 18px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin: 0 0 8px;
    letter-spacing: 2px;
}

.footer-brand p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.footer-links a:hover {
    color: #4f694a;
}

.footer-bottom {
    max-width: 1200px;
    margin: 24px auto 0;
    padding-top: 14px;
    border-top: 1px solid #ddd4c8;
    text-align: center;
    color: #777;
    font-size: 13px;
}
