:root {
    --bg: #fffaf8;
    --surface: #ffffff;
    --surface-soft: #f7eee9;
    --text: #201a18;
    --muted: #6c5f5a;
    --line: #eaded8;
    --accent: #9f3f55;
    --accent-dark: #73283a;
    --gold: #c79a42;
    --shadow: 0 18px 45px rgba(66, 38, 30, 0.12);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    z-index: 10;
    background: var(--text);
    color: white;
    padding: 10px 14px;
}

.skip-link:focus {
    left: 12px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 5;
    background: rgba(255, 250, 248, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.navbar {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: white;
    background: var(--accent-dark);
    border-radius: 50%;
    font-size: 0.85rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a,
.filter-bar a,
.mini-links a {
    text-decoration: none;
    color: var(--muted);
    padding: 10px 13px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active,
.filter-bar a:hover,
.filter-bar a.active,
.mini-links a:hover {
    color: var(--accent-dark);
    background: var(--surface-soft);
}

.nav-toggle {
    display: none;
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800;
}

.hero {
    min-height: 620px;
    display: grid;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(32, 26, 24, 0.78), rgba(32, 26, 24, 0.25)),
        url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=1800&q=80') center/cover;
    color: white;
}

.hero-content,
.section,
.page-hero,
.site-footer {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.hero-content {
    padding: 90px 0;
}

.hero h1,
.page-hero h1 {
    max-width: 820px;
    margin: 0;
    line-height: 1.02;
    font-size: clamp(2.55rem, 6vw, 5.8rem);
    letter-spacing: 0;
}

.hero-text,
.page-hero p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border: 0;
    border-radius: 999px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(159, 63, 85, 0.24);
}

.button:hover {
    background: var(--accent-dark);
}

.button-secondary {
    background: white;
    color: var(--accent-dark);
}

.section {
    padding: 72px 0;
}

.no-top-padding {
    padding-top: 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

h2 {
    margin: 0 0 12px;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    line-height: 1.1;
}

h3 {
    margin: 0 0 10px;
    line-height: 1.2;
}

.category-grid,
.product-grid,
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.category-tile,
.product-card,
.article-list article,
.trust-panel,
.contact-form,
.content-page {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.category-tile {
    padding: 24px;
    text-decoration: none;
    min-height: 170px;
}

.category-tile:hover {
    transform: translateY(-3px);
}

.category-tile p,
.product-body p,
.section-heading p,
.content-page p,
.article-list p,
.site-footer p {
    color: var(--muted);
}

.product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--surface-soft);
}

.product-body {
    padding: 18px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.product-body .button {
    margin-top: auto;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 8px 0 18px;
    color: var(--accent-dark);
    font-weight: 800;
    font-size: 0.92rem;
}

.split-section,
.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: start;
}

.article-list {
    display: grid;
    gap: 14px;
}

.article-list article,
.content-page,
.contact-form,
.trust-panel {
    padding: 26px;
}

.page-hero {
    padding: 86px 0 34px;
}

.page-hero,
.page-hero p {
    color: var(--text);
}

.page-hero p {
    color: var(--muted);
}

.compact-hero {
    padding-bottom: 16px;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
}

.mini-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.content-page {
    max-width: 850px;
}

.content-page h2:not(:first-child) {
    margin-top: 30px;
}

.contact-form {
    display: grid;
    gap: 10px;
}

.contact-form label {
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 13px 14px;
    font: inherit;
    background: #fffdfc;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 3px solid rgba(199, 154, 66, 0.25);
    border-color: var(--gold);
}

.site-footer {
    padding: 46px 0 30px;
    border-top: 1px solid var(--line);
}

.footer-grid {
    grid-template-columns: 1.3fr 0.7fr 1fr;
}

.site-footer a {
    display: block;
    color: var(--muted);
    margin: 7px 0;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--accent-dark);
}

.copyright {
    margin-top: 28px;
    font-size: 0.9rem;
}

@media (max-width: 960px) {
    .category-grid,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split-section,
    .contact-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .navbar {
        min-height: 68px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: absolute;
        top: 68px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .nav-links.open {
        display: flex;
    }

    .hero {
        min-height: 560px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 2.7rem;
    }

    .section {
        padding: 50px 0;
    }

    .category-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .filter-bar {
        border-radius: var(--radius);
    }
}