:root {
    --brand-forest: #2f4f46;
    --brand-forest-dark: #1f342f;
    --brand-clay: #9a624c;
    --brand-gold: #c9a35c;
    --surface-warm: #f7f3ec;
    --surface-mint: #eef5f1;
    --surface-white: #ffffff;
    --text-dark: #202321;
    --text-muted: #5d6761;
    --line: #e1ddd3;
    --shadow: 0 18px 45px rgba(34, 40, 37, 0.1);
    --rating-gold: #f2b705;
    --header-height: 82px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--surface-white);
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    color: var(--brand-forest-dark);
    line-height: 1.1;
    letter-spacing: 0;
}

p {
    margin: 0;
}

.container {
    width: min(100% - 40px, 1180px);
    margin: 0 auto;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: 16px;
    z-index: 2000;
    transform: translateY(-140%);
    padding: 10px 14px;
    border-radius: 6px;
    background: var(--brand-forest-dark);
    color: white;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.site-header.scrolled {
    border-color: var(--line);
    box-shadow: 0 10px 30px rgba(32, 35, 33, 0.08);
}

.header-container {
    min-height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.logo {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 27px;
    font-weight: 700;
    color: var(--brand-forest-dark);
    text-decoration: none;
    white-space: nowrap;
}

.logo span {
    color: var(--brand-clay);
}

nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

nav a {
    position: relative;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: var(--brand-clay);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

nav a:hover,
nav a:focus-visible {
    color: var(--brand-forest);
}

nav a:hover::after,
nav a:focus-visible::after {
    transform: scaleX(1);
}

.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface-white);
    color: var(--brand-forest-dark);
    cursor: pointer;
    font-size: 20px;
}

.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 52px) 0 68px;
    background:
        linear-gradient(120deg, rgba(238, 245, 241, 0.92), rgba(247, 243, 236, 0.82)),
        var(--surface-mint);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
    align-items: center;
    gap: 54px;
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--brand-clay);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 88px;
}

.hero-lede {
    max-width: 610px;
    margin-top: 22px;
    color: var(--text-muted);
    font-size: 19px;
}

.hero-proof {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 30px 0 34px;
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 28px rgba(47, 79, 70, 0.08);
}

.stars,
.stars-large {
    color: var(--rating-gold);
}

.hero-proof span {
    color: var(--text-muted);
    font-size: 14px;
}

.cta-buttons,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 2px solid transparent;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--brand-forest);
    color: white;
    box-shadow: 0 12px 26px rgba(47, 79, 70, 0.22);
}

.btn-primary:hover {
    background: var(--brand-forest-dark);
}

.btn-secondary {
    border-color: var(--brand-forest);
    background: transparent;
    color: var(--brand-forest);
}

.btn-secondary:hover,
.btn-ghost:hover {
    background: rgba(47, 79, 70, 0.07);
}

.btn-ghost {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-dark);
}

.hero-media {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.hero-media img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
}

.store-card {
    position: absolute;
    right: 22px;
    bottom: 22px;
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.store-card span {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

section {
    padding: 86px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading h2 {
    font-size: 50px;
}

.about-section {
    background: var(--surface-white);
}

.about-content {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 58px;
}

.about-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    min-height: 480px;
    object-fit: cover;
}

.about-text h2 {
    margin-bottom: 20px;
    font-size: 46px;
}

.about-text p {
    margin-bottom: 18px;
    color: var(--text-muted);
    font-size: 17px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 26px;
}

.stats-row div {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-warm);
}

.stats-row strong {
    display: block;
    color: var(--brand-forest);
    font-size: 24px;
}

.stats-row span {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
}

.products,
.reviews {
    background: var(--surface-warm);
}

.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}

.category-btn {
    min-height: 42px;
    padding: 9px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
    color: var(--text-dark);
    font-weight: 800;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.category-btn:hover {
    transform: translateY(-1px);
}

.category-btn.active {
    border-color: var(--brand-forest);
    background: var(--brand-forest);
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.product-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: 0 14px 34px rgba(32, 35, 33, 0.08);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 45px rgba(32, 35, 33, 0.12);
}

.product-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--surface-mint);
}

.product-info {
    display: grid;
    gap: 12px;
    padding: 20px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.product-tag {
    color: var(--brand-clay);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.product-price {
    color: var(--brand-forest);
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

.product-info h3 {
    font-size: 22px;
}

.product-info p {
    min-height: 48px;
    color: var(--text-muted);
    font-size: 15px;
}

.product-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    padding-top: 4px;
}

.product-link {
    color: var(--brand-forest);
    font-weight: 800;
    text-decoration: none;
}

.product-link:hover {
    text-decoration: underline;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-card,
.review-card,
.contact-info {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: 0 14px 34px rgba(32, 35, 33, 0.07);
}

.service-card {
    padding: 32px;
}

.service-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 8px;
    background: var(--surface-mint);
    color: var(--brand-forest);
    font-size: 24px;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 25px;
}

.service-card p {
    color: var(--text-muted);
}

.overall-rating {
    width: min(100%, 420px);
    margin: 0 auto 34px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    text-align: center;
}

.rating-large {
    color: var(--brand-forest);
    font-size: 58px;
    font-weight: 800;
    line-height: 1;
}

.stars-large {
    margin: 10px 0;
    font-size: 24px;
}

.overall-rating p,
.review-date {
    color: var(--text-muted);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.review-card {
    padding: 26px;
}

.reviewer-info {
    margin-bottom: 14px;
}

.reviewer-name {
    margin-bottom: 4px;
    font-family: "Inter", Arial, sans-serif;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 800;
}

.review-card .stars {
    margin-bottom: 12px;
}

.review-card p {
    color: var(--text-muted);
}

.contact-container {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 26px;
}

.contact-info {
    padding: 32px;
}

.contact-info > p {
    margin-top: 12px;
    color: var(--text-muted);
}

.contact-details {
    display: grid;
    gap: 20px;
    margin: 28px 0;
}

.contact-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--surface-mint);
    color: var(--brand-forest);
}

.contact-item h4 {
    margin-bottom: 5px;
    font-family: "Inter", Arial, sans-serif;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 800;
}

.contact-item p,
.contact-item a {
    color: var(--text-muted);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--brand-forest);
    text-decoration: underline;
}

.map-container {
    min-height: 520px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

footer {
    padding: 60px 0 28px;
    background: var(--brand-forest-dark);
    color: white;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}

.footer-logo {
    margin-bottom: 16px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 27px;
    font-weight: 700;
}

.footer-logo span {
    color: var(--brand-gold);
}

.footer-about p,
.footer-links,
.copyright {
    color: rgba(255, 255, 255, 0.72);
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: white;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.12);
}

.footer-heading {
    margin-bottom: 18px;
    color: white;
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
}

.footer-links {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

.contact-list li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
}

.copyright {
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    font-size: 14px;
}

:focus-visible {
    outline: 3px solid rgba(201, 163, 92, 0.75);
    outline-offset: 3px;
}

@media (max-width: 1024px) {
    .hero-grid,
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero-media {
        min-height: 440px;
    }

    .hero-media img {
        min-height: 440px;
    }

    .products-grid,
    .services-container,
    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    :root {
        --header-height: 72px;
    }

    .container {
        width: min(100% - 28px, 1180px);
    }

    .mobile-menu-btn {
        display: grid;
        place-items: center;
    }

    nav ul {
        position: fixed;
        top: var(--header-height);
        left: 14px;
        right: 14px;
        display: grid;
        gap: 0;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: white;
        box-shadow: var(--shadow);
        transform: translateY(-18px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition:
            transform 0.2s ease,
            opacity 0.2s ease,
            visibility 0.2s ease;
    }

    nav ul.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    nav a {
        display: block;
        padding: 13px 12px;
        border-radius: 6px;
    }

    nav a:hover,
    nav a:focus-visible {
        background: var(--surface-mint);
    }

    nav a::after {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + 44px) 0 50px;
    }

    .hero h1 {
        font-size: 52px;
    }

    .section-heading h2 {
        font-size: 38px;
    }

    .about-text h2 {
        font-size: 36px;
    }

    .hero-lede {
        font-size: 17px;
    }

    .hero-proof {
        align-items: flex-start;
        border-radius: 8px;
    }

    .cta-buttons,
    .contact-actions {
        display: grid;
    }

    .btn {
        width: 100%;
    }

    section {
        padding: 64px 0;
    }

    .about-image img,
    .hero-media,
    .hero-media img,
    .map-container {
        min-height: 340px;
    }

    .stats-row,
    .products-grid,
    .services-container,
    .reviews-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 430px) {
    .logo {
        font-size: 22px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-proof {
        display: grid;
        gap: 4px;
    }

    .store-card {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
