@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@700;800&display=swap');

:root {
    --primary-dark: #2c1a1d;
    --accent-gold: #d4af37;
    --bg-cream: #f9f5f0;
    --text-dark: #1a1a1a;
    --text-light: #f9f5f0;
    --text-muted: #6d625b;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 18px 45px rgba(0, 0, 0, 0.18);
    --radius: 18px;
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(44, 26, 29, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 1px;
    white-space: nowrap;
    line-height: 1;
}

.logo img {
    width: 34px;
    height: 34px;
    min-width: 34px;
    max-width: 34px;
    min-height: 34px;
    max-height: 34px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color var(--transition);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    color: var(--accent-gold);
    font-size: 1.7rem;
    cursor: pointer;
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
    background:
        linear-gradient(rgba(20, 12, 13, 0.55), rgba(20, 12, 13, 0.55)),
        url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.hero-content {
    max-width: 850px;
    color: var(--text-light);
    animation: fadeUp 0.9s ease;
}

.hero-content h1 {
    color: var(--text-light);
    font-size: clamp(2.7rem, 7vw, 5rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 14px rgba(0, 0, 0, 0.35);
}

.hero-content p {
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    color: rgba(249, 245, 240, 0.92);
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 999px;
    border: none;
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    box-shadow: 0 10px 22px rgba(212, 175, 55, 0.28);
}

.btn:hover {
    transform: translateY(-4px);
    background: #fff;
    box-shadow: 0 14px 28px rgba(212, 175, 55, 0.35);
}

.section {
    padding: 80px 5%;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: var(--accent-gold);
    margin: 14px auto 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.card-content {
    padding: 24px;
    text-align: center;
}

.card-title {
    font-size: 1.45rem;
    margin-bottom: 10px;
}

.card-content p {
    color: var(--text-muted);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-dark);
}

input,
textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

footer {
    background: var(--primary-dark);
    color: var(--text-light);
    text-align: center;
    padding: 40px 20px;
}

footer p {
    opacity: 0.85;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: 70vh;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 6%;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 1.2rem;
        position: absolute;
        top: 72px;
        right: 0;
        width: 100%;
        background: var(--primary-dark);
        padding: 20px 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .section {
        padding: 70px 6%;
    }

    .contact-form {
        padding: 24px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .logo {
        font-size: 1rem;
    }

    .logo img {
        width: 60px;
        height: 60px;
        min-width: 60px;
        max-width: 60px;
        min-height: 60px;
        max-height: 60px;
    }
}