:root {
    --bg: #fbf7f4;
    --white: #ffffff;
    --text: #544842;
    --muted: #8f8078;
    --line: #eee2d9;
    --accent: #c79a6e;
    --accent-dark: #ae7f55;
    --soft: #f4e6df;
    --soft-2: #f7efe9;
    --danger: #de8c6b;
    --shadow: 0 12px 30px rgba(157, 120, 96, 0.10);
    --radius: 18px;
    --container: 972px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background: #fcfaf8;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
.container {
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto;
}
.topbar {
    height: 31px;
    background: #d9b8aa;
    color: #fffaf6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    font-size: 12px;
    letter-spacing: .02em;
}
.topbar-arrow {
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    opacity: .95;
}
.site-header {
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid #f1e6dd;
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
}
.header-wrap {
    display: grid;
    grid-template-columns: 130px 1fr auto;
    align-items: center;
    gap: 18px;
    min-height: 74px;
}
.logo img { width: 106px; }
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}
.main-nav a {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    color: #4f4642;
    padding: 28px 0 23px;
    position: relative;
}
.main-nav a.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    height: 2px;
    background: var(--accent);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}
.header-actions > a, .search-box button {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4f4642;
}
.search-box {
    width: 248px;
    height: 41px;
    border: 1px solid #ece4dd;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    padding: 0 12px 0 16px;
    gap: 10px;
}
.search-box input {
    border: 0;
    outline: 0;
    width: 100%;
    background: transparent;
    font-size: 12px;
    color: var(--muted);
}
.search-box button {
    border: 0;
    background: transparent;
    cursor: pointer;
}
.cart-btn { position: relative; }
.cart-btn span {
    position: absolute;
    top: -7px;
    right: -8px;
    min-width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #c67466;
    color: white;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-toggle { display: none; }
.hero-section {
    background: radial-gradient(circle at right center, rgba(255,244,236,.95), rgba(249,241,236,.95)), linear-gradient(180deg, #fffdfa, #fbf6f2);
    padding-top: 8px;
}
.hero-grid {
    min-height: 383px;
    display: grid;
    grid-template-columns: 1.04fr 1fr;
    align-items: center;
    gap: 8px;
    position: relative;
}
.hero-copy { padding-left: 63px; }
.eyebrow {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .05em;
    display: inline-block;
    margin-bottom: 14px;
    color: #75675d;
}
.hero-copy h1 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 68px;
    line-height: .95;
    font-weight: 500;
    letter-spacing: -.02em;
    color: #5e4d45;
}
.hero-copy h1 span {
    display: block;
    margin-top: 8px;
    color: #d18e7f;
    font-size: 62px;
    font-style: italic;
    font-weight: 400;
}
.hero-copy p {
    max-width: 340px;
    margin: 20px 0 28px;
    font-size: 14px;
    line-height: 1.75;
    color: #5f534e;
}
.hero-buttons { display: flex; gap: 16px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 45px;
    padding: 0 26px;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
    transition: .25s ease;
}
.btn.small { min-width: 132px; height: 40px; font-size: 12px; }
.btn.block { width: 100%; }
.btn-primary {
    background: var(--accent);
    color: white;
    border: 1px solid var(--accent);
}
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-outline {
    border: 1px solid #d2b8a4;
    color: #a48267;
    background: transparent;
}
.btn-outline:hover { background: #fff4ee; }
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 22px;
}
.hero-visual img { width: 468px; object-fit: contain; }
.hero-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding-bottom: 14px;
}
.hero-dots span {
    width: 8px; height: 8px; border-radius: 999px; background: #dbc5b8;
}
.hero-dots .active { width: 18px; background: #bf9678; }
.benefits-section {
    background: #fbfbfb;
    border-top: 1px solid #f0e7e0;
    border-bottom: 1px solid #f0e7e0;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    min-height: 90px;
    align-items: center;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 14px;
    position: relative;
}
.benefit-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 18px;
    bottom: 18px;
    width: 1px;
    background: #efe5dc;
}
.benefit-item i {
    font-size: 24px;
    color: #be916d;
}
.benefit-item h3 {
    margin: 0 0 4px;
    text-transform: uppercase;
    font-size: 14px;
}
.benefit-item p {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}
.categories-section { padding: 18px 0 8px; }
.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.category-card {
    min-height: 104px;
    border-radius: 10px;
    background: linear-gradient(180deg, #f9efea, #f6eeea);
    border: 1px solid #efe2da;
    padding: 16px 12px;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}
.category-text { position: relative; z-index: 2; }
.category-card h3 {
    margin: 0 0 6px;
    font-size: 13px;
    text-transform: uppercase;
}
.category-card p {
    margin: 0 0 18px;
    font-size: 12px;
    color: var(--muted);
}
.category-text span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #d8c1b2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #b38969;
    font-size: 11px;
}
.category-card img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.featured-section { padding: 10px 0 18px; }
.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.section-head h2,
.testimonials-section h2,
.blog-column h2 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: #5a4d47;
}
.text-link {
    border: 1px solid #d8c0af;
    padding: 8px 16px;
    font-size: 12px;
    color: #aa876a;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 13px;
}
.product-card {
    background: #fff;
    border: 1px solid #efe4dc;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 3px 12px rgba(164, 122, 92, 0.04);
}
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    padding: 4px 8px;
    border-radius: 999px;
    z-index: 2;
}
.product-badge.gold { background: #d3b17d; }
.product-badge.sale { background: #e39171; }
.product-badge.new { background: #caa66b; }
.product-image {
    background: linear-gradient(180deg, #fbf7f4, #f6f0ec);
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.product-image img { max-height: 130px; object-fit: contain; }
.product-content { padding: 14px 13px 12px; }
.product-content h3 {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 500;
}
.product-content p {
    margin: 0 0 10px;
    font-size: 12px;
    color: var(--muted);
    min-height: 32px;
}
.rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 10px;
}
.stars { color: #e2ab43; font-size: 10px; }
.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.price-wrap strong {
    display: block;
    color: #2e2a28;
    font-size: 13px;
    margin-bottom: 4px;
}
.price-wrap s { font-size: 11px; color: #b7a59c; }
.cart-add {
    width: 30px; height: 30px; border-radius: 50%; border: 1px solid #eaded6; background: #fff;
    color: #b18d74; cursor: pointer;
}
.story-section { padding: 0 0 16px; }
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.panel {
    background: linear-gradient(180deg, #faf4ef, #f8efea);
    border: 1px solid #eee2d8;
    border-radius: 10px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 188px;
}
.panel-copy, .about-copy { padding: 26px 22px; }
.mini-label {
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    color: #6d5a4f;
    margin-bottom: 10px;
}
.panel h3, .about-copy h3 {
    margin: 0 0 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
}
.panel p, .about-copy p {
    margin: 0 0 18px;
    font-size: 13px;
    line-height: 1.7;
    color: #6f635d;
}
.collection-card img, .about-card img { width: 100%; height: 100%; object-fit: cover; }
.about-card { grid-template-columns: 1.05fr .95fr; background: #f8f1ec; }
.testimonials-section { padding: 4px 0 16px; }
.testimonials-section h2 { text-align: center; margin-bottom: 12px; }
.testimonial-wrap { position: relative; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.testimonial-card {
    border: 1px solid #ebe0d8;
    border-radius: 10px;
    background: #fff;
    padding: 16px 20px;
    min-height: 132px;
}
.testimonial-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.testimonial-head img {
    width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
}
.testimonial-card p {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.65;
    color: #6e625d;
}
.testimonial-card strong, .testimonial-card span { display: block; font-size: 13px; }
.testimonial-card span { margin-top: 4px; color: var(--muted); }
.arrow-btn {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 30px; height: 30px; border-radius: 50%;
    border: 1px solid #e7d9cf; background: #fff; color: #c09a7e; cursor: pointer;
    z-index: 3;
}
.arrow-btn.left { left: -14px; }
.arrow-btn.right { right: -14px; }
.insights-section { padding: 0 0 18px; }
.insights-grid {
    display: grid;
    grid-template-columns: 1.25fr .95fr;
    gap: 18px;
    align-items: start;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.blog-card img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 8px;
}
.blog-card .date {
    display: inline-block;
    font-size: 10px;
    color: #9e8c82;
    margin-bottom: 8px;
}
.blog-card h3 {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
}
.blog-card a { font-size: 13px; color: #aa8668; }
.newsletter-box {
    background: linear-gradient(180deg, #f7ece6, #f5ebe4);
    border: 1px solid #ece0d7;
    border-radius: 10px;
    min-height: 275px;
    display: grid;
    grid-template-columns: 1fr .9fr;
    overflow: hidden;
}
.newsletter-copy { padding: 30px 20px 20px; }
.newsletter-copy h2 {
    margin: 0 0 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    text-transform: uppercase;
}
.newsletter-copy p {
    margin: 0 0 18px;
    font-size: 13px;
    color: #6d625e;
    line-height: 1.65;
}
.newsletter-form input {
    width: 100%;
    height: 42px;
    border: 1px solid #eaded6;
    background: #fff;
    padding: 0 14px;
    margin-bottom: 12px;
    outline: none;
}
.newsletter-box img { width: 100%; height: 100%; object-fit: cover; }
.site-footer {
    background: #f8f3ef;
    border-top: 1px solid #eaded4;
    padding-top: 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr .8fr .8fr .95fr 1.15fr;
    gap: 26px;
}
.footer-brand img { width: 95px; margin-bottom: 12px; }
.footer-brand p {
    margin: 0 0 18px;
    font-size: 13px;
    color: #6e625c;
    line-height: 1.7;
    max-width: 220px;
}
.socials { display: flex; gap: 16px; }
.socials a { color: #7a6356; }
.site-footer h4 {
    margin: 0 0 14px;
    font-size: 14px;
    text-transform: uppercase;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; font-size: 13px; color: #6b5e58; line-height: 1.55; }
.contact-list i { width: 16px; margin-right: 6px; color: #b48c6f; }
.copyright {
    text-align: center;
    padding: 14px 16px 20px;
    font-size: 12px;
    color: #7b6b62;
}
@media (max-width: 1180px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .header-wrap { grid-template-columns: 120px 1fr auto; }
    .main-nav { gap: 14px; }
}
@media (max-width: 920px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .mobile-toggle {
        display: inline-flex;
        width: 40px; height: 40px;
        border: 1px solid #eaded6; background: #fff; align-items: center; justify-content: center;
        border-radius: 10px; cursor: pointer;
    }
    .header-wrap { grid-template-columns: auto 1fr auto auto; }
    .main-nav {
        position: fixed;
        top: 106px;
        left: 14px;
        right: 14px;
        background: rgba(255,255,255,.98);
        border: 1px solid #ece2db;
        border-radius: 16px;
        padding: 16px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: var(--shadow);
    }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 0; }
    .main-nav a.active::after { display: none; }
    .hero-grid, .story-grid, .insights-grid, .newsletter-box { grid-template-columns: 1fr; }
    .hero-copy { padding: 30px 0 0; text-align: center; }
    .hero-copy p { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; flex-wrap: wrap; }
    .hero-visual { justify-content: center; padding: 0; }
    .benefits-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid, .categories-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .search-box { width: 170px; }
    .arrow-btn { display: none; }
}
@media (max-width: 640px) {
    .header-actions { gap: 10px; }
    .search-box { display: none; }
    .hero-copy h1 { font-size: 48px; }
    .hero-copy h1 span { font-size: 44px; }
    .benefits-grid, .products-grid, .categories-grid, .blog-grid, .testimonials-grid, .footer-grid { grid-template-columns: 1fr; }
    .category-card, .product-image { height: auto; }
    .panel, .about-card { grid-template-columns: 1fr; }
}
