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

:root {
    --bg: #fffaf5;
    --surface: #fff;
    --text: #241b17;
    --muted: #756a63;
    --accent: #c9572c;
    --accent-dark: #a94320;
    --line: #eadfd7;
    --soft: #f7ebe2
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6
}

a {
    text-decoration: none;
    color: inherit
}

.navbar {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6%;
    background: rgba(255, 250, 245, .94);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(12px)
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 19px
}

.logo>span:last-child>span {
    color: var(--accent)
}

.logo-mark {
    width: 37px;
    height: 37px;
    border-radius: 11px;
    background: var(--accent);
    color: white;
    display: grid;
    place-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 22px
}

nav {
    display: flex;
    gap: 34px;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted)
}

nav a:hover,
nav .active {
    color: var(--accent)
}

.nav-button {
    border: 1px solid var(--line);
    padding: 10px 17px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700
}

.nav-button:hover {
    border-color: var(--accent);
    color: var(--accent)
}

.hero {
    max-width: 1240px;
    margin: auto;
    padding: 90px 6% 105px;
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 70px;
    align-items: center
}

.eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 800;
    color: var(--accent);
    display: block;
    margin-bottom: 15px
}

h1,
h2 {
    font-family: 'Playfair Display', serif;
    line-height: 1.08
}

h1 {
    font-size: clamp(46px, 6vw, 76px);
    letter-spacing: -2px
}

h1 em,
h2 em {
    color: var(--accent);
    font-style: normal
}

h2 {
    font-size: 42px;
    letter-spacing: -1px
}

.hero-content>p {
    max-width: 570px;
    color: var(--muted);
    font-size: 17px;
    margin: 24px 0 30px
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    border-radius: 11px;
    font-weight: 700;
    font-size: 14px
}

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

.button.primary:hover {
    background: var(--accent-dark)
}

.button.secondary {
    border: 1px solid var(--line);
    background: #fff
}

.button.secondary:hover {
    border-color: var(--accent);
    color: var(--accent)
}

.mini-info {
    display: flex;
    gap: 30px;
    margin-top: 48px
}

.mini-info div {
    display: flex;
    flex-direction: column
}

.mini-info strong {
    font-size: 14px
}

.mini-info span {
    font-size: 11px;
    color: var(--muted)
}

.photo-card {
    position: relative;
    border-radius: 28px;
    overflow: visible
}

.photo-card>img {
    width: 100%;
    height: 510px;
    object-fit: cover;
    border-radius: 28px;
    display: block
}

.floating-card {
    position: absolute;
    left: -35px;
    bottom: 30px;
    background: #fff;
    padding: 14px 18px;
    border-radius: 15px;
    box-shadow: 0 14px 40px #3c241520;
    display: flex;
    gap: 12px;
    align-items: center
}

.floating-icon {
    width: 37px;
    height: 37px;
    border-radius: 10px;
    background: var(--soft);
    display: grid;
    place-items: center;
    color: var(--accent)
}

.floating-card div {
    display: flex;
    flex-direction: column
}

.floating-card strong {
    font-size: 12px
}

.floating-card small {
    font-size: 11px;
    color: var(--muted)
}


.about {
    max-width: 1100px;
    margin: auto;
    padding: 100px 6%;
    display: grid;
    grid-template-columns: .8fr 1fr;
    gap: 75px;
    align-items: center
}

.about-image img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    border-radius: 22px
}

.about-copy p {
    color: var(--muted);
    margin: 20px 0 25px
}

.text-link {
    color: var(--accent);
    font-weight: 700;
    font-size: 14px
}

.catalog-hero {
    max-width: 1000px;
    margin: auto;
    text-align: center;
    padding: 90px 6% 65px
}

.catalog-hero h1 {
    font-size: 64px
}

.catalog-hero p {
    max-width: 650px;
    margin: 20px auto;
    color: var(--muted)
}

.products-section {
    max-width: 1200px;
    margin: auto;
    padding: 20px 6% 90px
}

.catalog-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px
}

.catalog-toolbar h2 {
    font-size: 34px
}

.filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.filter {
    border: 1px solid var(--line);
    background: #fff;
    padding: 9px 15px;
    border-radius: 9px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    color: var(--muted)
}

.filter.active,
.filter:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent)
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.product-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    transition: .25s
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px #3c241512
}

.product-card.hidden {
    display: none
}

.product-image {
    height: 235px;
    overflow: hidden;
    background: var(--soft)
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s
}

.product-card:hover .product-image img {
    transform: scale(1.04)
}

.product-body {
    padding: 20px
}

.tag {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    color: var(--accent)
}

.product-body h3 {
    font-size: 20px;
    margin: 6px 0
}

.product-body p {
    font-size: 13px;
    color: var(--muted);
    min-height: 43px
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px
}

.product-bottom strong {
    font-size: 18px
}

.order-btn {
    border: 0;
    background: var(--soft);
    color: var(--accent-dark);
    padding: 9px 13px;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer
}

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

.cta {
    max-width: 1100px;
    margin: 0 auto 90px;
    background: #2d211c;
    color: #fff;
    border-radius: 22px;
    padding: 48px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.cta .eyebrow {
    color: #e6a184
}

.cta h2 {
    font-size: 36px
}

.cta p {
    color: #c9bbb4;
    margin-top: 8px;
    font-size: 14px
}

.cta .button {
    white-space: nowrap
}

footer {
    padding: 28px 6%;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--muted)
}

footer div {
    display: flex;
    gap: 15px;
    align-items: center
}

footer strong {
    color: var(--text)
}

footer a {
    color: var(--accent);
    font-weight: 700
}

@media(max-width:850px) {
    .navbar {
        padding: 0 5%
    }

    .navbar nav {
        display: none
    }

    .nav-button {
        padding: 9px 12px
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 55px;
        gap: 45px
    }

    .photo-card>img {
        height: 390px
    }

    .floating-card {
        left: 15px
    }

    .highlight-grid,
    .product-grid {
        grid-template-columns: 1fr 1fr
    }

    .about {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .catalog-toolbar {
        align-items: start;
        flex-direction: column
    }

    .cta {
        margin: 0 5% 60px;
        flex-direction: column;
        align-items: flex-start
    }
}

@media(max-width:560px) {
    .navbar {
        height: 68px
    }

    .navbar .nav-button {
        display: none
    }

    .logo {
        font-size: 17px
    }

    .hero {
        padding: 50px 5% 70px
    }

    .hero h1 {
        font-size: 46px
    }

    .mini-info {
        gap: 15px;
        flex-wrap: wrap
    }

    .highlight {
        padding: 60px 5%
    }

    .highlight-grid,
    .product-grid {
        grid-template-columns: 1fr
    }

    .about {
        padding: 70px 5%
    }

    .catalog-hero {
        padding: 65px 5% 45px
    }

    .catalog-hero h1 {
        font-size: 46px
    }

    .products-section {
        padding-left: 5%;
        padding-right: 5%
    }

    .cta {
        padding: 35px 25px
    }

    .cta h2 {
        font-size: 30px
    }

    footer {
        flex-direction: column;
        gap: 12px;
        text-align: center
    }

    footer div {
        flex-direction: column;
        gap: 2px
    }
}