:root {
    --bg: #fbfaf9;
    --accent: #bfa07a;
    --soft: #fff7f0;
    --text: #1a1a1a;
    --muted: #6b6b6b;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Inter,system-ui,Segoe UI,Roboto,'Helvetica Neue',Arial;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem
}

.topbar {
    background: linear-gradient(90deg, rgba(191,160,122,0.06), rgba(255,255,255,0.02));
    backdrop-filter: blur(4px);
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid rgba(0,0,0,0.03)
}

    .topbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between
    }

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem
}

.monogram {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    background: linear-gradient(180deg,var(--accent),#f2d6b3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 6px 18px rgba(191,160,122,0.18)
}

.brand-text h1 {
    margin: 0;
    font-size: 1.25rem;
    letter-spacing: 0.6px
}

.tag {
    display: block;
    font-size: 0.8rem;
    color: var(--muted)
}

.nav a {
    margin-left: 1rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 500
}

.nav .cta {
    background: var(--accent);
    color: #fff;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    text-decoration: none
}

.hero {
    padding: 3rem 0;
    background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
    display: flex;
    align-items: center
}

.hero-inner {
    display: flex;
    gap: 2rem;
    align-items: center
}

.hero-left {
    flex: 1;
    min-width: 260px
}

    .hero-left h2 {
        font-size: 2rem;
        margin: 0 0 0.5rem 0
    }

    .hero-left p {
        color: var(--muted);
        margin: 0 0 1rem 0
    }

.hero-cta {
    display: flex;
    gap: 0.75rem;
    align-items: center
}

.btn {
    border: 0;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600
}

    .btn.primary {
        background: var(--accent);
        color: #fff
    }

    .btn.outline {
        background: transparent;
        border: 1px solid rgba(26,26,26,0.06)
    }

.quick-info {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0 0;
    color: var(--muted)
}

.hero-right img {
    width: 420px;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08)
}

.section {
    padding: 2.25rem 0
}

.alt-bg {
    background: #fffaf6
}

.split {
    display: flex;
    gap: 2rem;
    align-items: flex-start
}

.features {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1rem
}

.feature {
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.03)
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
    gap: 1rem
}

.card {
    background: linear-gradient(180deg,#fff,#fffaf6);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    position: relative;
    min-height: 90px
}

    .card h4 {
        margin: 0 0 0.25rem 0
    }

.price {
    position: absolute;
    right: 16px;
    top: 14px;
    font-weight: 700;
    color: var(--accent)
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.03)
}

    .price-table th, .price-table td {
        padding: 0.8rem;
        border-bottom: 1px solid #f0e9e2;
        text-align: left
    }

    .price-table thead th {
        background: linear-gradient(90deg,rgba(191,160,122,0.06),transparent);
        font-weight: 600
    }

.footer {
    border-top: 1px solid rgba(0,0,0,0.03);
    padding: 1rem 0;
    text-align: center;
    color: var(--muted)
}

@media(max-width:900px) {
    .hero-inner {
        flex-direction: column-reverse
    }

    .split {
        flex-direction: column
    }

    .features {
        grid-template-columns: repeat(2,1fr)
    }

    .hero-right img {
        width: 100%
    }
}

@media(max-width:520px) {
    .nav a {
        display: none
    }

    .monogram {
        width: 44px;
        height: 44px;
        font-size: 16px
    }

    .brand-text h1 {
        font-size: 1rem
    }

    .features {
        grid-template-columns: 1fr
    }
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

    .gallery-grid img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 12px;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .gallery-grid img:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

    .lightbox img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 12px;
    }

    .lightbox:target {
        display: flex;
    }

    .lightbox .close {
        position: absolute;
        top: 2rem;
        right: 2rem;
        color: #fff;
        font-size: 2rem;
        text-decoration: none;
        font-weight: 700;
        z-index: 1001;
    }
