:root {
    --color-ink: #171214;
    --color-muted: #6e6669;
    --color-line: #e6ded9;
    --color-soft: #f7f2ee;
    --color-panel: #fdfbf8;
    --color-accent: #8d2446;
    --color-accent-dark: #571428;
    --color-gold: #b78b43;
    --color-forest: #233c35;
    --shadow-soft: 0 18px 50px rgba(23, 18, 20, .08);
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #fff;
    color: var(--color-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

a {
    color: inherit;
}

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

.skip-link,
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.skip-link:focus {
    z-index: 1000;
    width: auto;
    height: auto;
    clip: auto;
    top: 12px;
    left: 12px;
    background: #fff;
    padding: 10px 14px;
}

.shipping-bar {
    display: flex;
    justify-content: center;
    gap: 24px;
    background: var(--color-forest);
    color: #fff;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--color-line);
    backdrop-filter: blur(12px);
}

.site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
    padding: 18px 24px;
}

.brand {
    text-decoration: none;
}

.brand__name {
    display: block;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.brand__tagline {
    display: block;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.primary-nav .menu {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-nav a {
    display: block;
    padding: 10px 12px;
    color: var(--color-ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

.primary-nav a:hover {
    color: var(--color-accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-form {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-line);
    background: #fff;
}

.search-field {
    width: 150px;
    border: 0;
    padding: 10px;
    font: inherit;
}

.search-form button,
.button,
.single_add_to_cart_button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.cart-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-accent);
    background: var(--color-accent);
    color: #fff;
    padding: 11px 18px;
    text-decoration: none;
    font: inherit;
    font-weight: 850;
    cursor: pointer;
}

.search-form button {
    min-height: 40px;
    padding: 8px 12px;
}

.button:hover,
.single_add_to_cart_button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.cart-link:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    color: #fff;
}

.button--ghost {
    background: transparent;
    color: var(--color-accent);
}

.button--ghost:hover {
    color: #fff;
}

.cart-link {
    gap: 8px;
}

.cart-link__count {
    min-width: 24px;
    border-radius: 99px;
    background: #fff;
    color: var(--color-accent);
    padding: 2px 7px;
    text-align: center;
    font-size: 12px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-line);
    background: #fff;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--color-ink);
}

.hero,
.trust-row,
.section,
.story-band,
.content-wrap,
.shop-layout {
    max-width: var(--container);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 28px;
    padding-top: 44px;
    padding-bottom: 30px;
}

.hero__content {
    display: flex;
    min-height: 480px;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--color-line);
    background: linear-gradient(135deg, var(--color-panel), var(--color-soft));
    padding: 56px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero h1,
.section h2,
.story-band h2,
.page-header h1,
.woocommerce-products-header__title,
.product_title {
    margin: 0;
    color: var(--color-ink);
    font-weight: 900;
    line-height: 1.05;
}

.hero h1 {
    max-width: 760px;
    font-size: 72px;
}

.hero p:not(.eyebrow) {
    max-width: 610px;
    margin: 22px 0 0;
    color: var(--color-muted);
    font-size: 20px;
    line-height: 1.55;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero__visual {
    display: flex;
    min-height: 480px;
    align-items: end;
    background:
        linear-gradient(180deg, rgba(23, 18, 20, 0), rgba(23, 18, 20, .82)),
        radial-gradient(circle at 30% 20%, rgba(183, 139, 67, .55), transparent 30%),
        url("../images/hero-artemisa.webp") center / cover no-repeat,
        linear-gradient(135deg, #291923, #233c35);
    color: #fff;
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.hero__visual span {
    color: #f6d6df;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero__visual strong {
    display: block;
    max-width: 420px;
    margin-top: 10px;
    font-size: 36px;
    line-height: 1.05;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-top: 10px;
    margin-bottom: 38px;
    background: var(--color-line);
}

.trust-row div {
    background: #fff;
    padding: 20px;
}

.trust-row strong,
.trust-row span {
    display: block;
}

.trust-row span {
    margin-top: 4px;
    color: var(--color-muted);
    font-size: 14px;
}

.section {
    padding-top: 36px;
    padding-bottom: 36px;
}

.section__heading {
    margin-bottom: 22px;
}

.section h2,
.story-band h2,
.woocommerce-products-header__title,
.product_title {
    font-size: 42px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.category-grid a {
    min-height: 170px;
    border: 1px solid var(--color-line);
    background: #fff;
    padding: 22px;
    text-decoration: none;
}

.category-grid a:hover {
    border-color: var(--color-accent);
}

.category-grid span,
.category-grid small {
    display: block;
}

.category-grid span {
    font-size: 24px;
    font-weight: 900;
}

.category-grid small {
    margin-top: 8px;
    color: var(--color-muted);
    font-size: 15px;
}

.story-band {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(280px, 1.1fr);
    gap: 28px;
    align-items: center;
    margin-top: 28px;
    margin-bottom: 48px;
    background: var(--color-forest);
    color: #fff;
    padding-top: 42px;
    padding-bottom: 42px;
}

.story-band .eyebrow,
.story-band h2 {
    color: #fff;
}

.story-band p:not(.eyebrow) {
    color: #dfe8e4;
    font-size: 18px;
}

.page-header {
    max-width: var(--container);
    margin: 0 auto;
    padding: 42px 24px 20px;
}

.content-wrap,
.shop-layout {
    padding-top: 24px;
    padding-bottom: 54px;
}

.entry-content {
    max-width: 760px;
}

.site-footer {
    border-top: 1px solid var(--color-line);
    background: var(--color-soft);
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 42px 24px;
}

.site-footer h2 {
    margin: 0 0 12px;
    font-size: 18px;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li + li {
    margin-top: 8px;
}

.site-footer__bottom {
    max-width: var(--container);
    margin: 0 auto;
    border-top: 1px solid var(--color-line);
    padding: 16px 24px;
    color: var(--color-muted);
    font-size: 14px;
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none;
}

.woocommerce ul.products li.product {
    width: auto;
    margin: 0;
    border: 1px solid var(--color-line);
    background: #fff;
    padding: 12px 12px 18px;
    list-style: none;
}

.woocommerce ul.products li.product a {
    text-decoration: none;
}

.woocommerce-loop-product__title {
    min-height: 48px;
    color: var(--color-ink);
    font-size: 16px;
    line-height: 1.25;
}

.price {
    color: var(--color-accent);
    font-weight: 900;
}

.woocommerce-notices-wrapper,
.woocommerce-result-count,
.woocommerce-ordering {
    max-width: var(--container);
}

.woocommerce div.product {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
    gap: 36px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
    width: auto;
    float: none;
}

.woocommerce div.product form.cart {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.quantity input {
    min-height: 44px;
    border: 1px solid var(--color-line);
    padding: 8px;
}

@media (max-width: 980px) {
    .shipping-bar {
        flex-wrap: wrap;
        gap: 8px 18px;
    }

    .site-header__inner {
        grid-template-columns: auto auto;
    }

    .menu-toggle {
        display: block;
        justify-self: end;
    }

    .primary-nav,
    .header-actions {
        grid-column: 1 / -1;
    }

    .primary-nav {
        display: none;
    }

    .primary-nav.is-open {
        display: block;
    }

    .primary-nav .menu,
    .header-actions,
    .search-form {
        align-items: stretch;
        flex-direction: column;
    }

    .search-field {
        width: 100%;
    }

    .hero,
    .story-band,
    .woocommerce div.product {
        grid-template-columns: 1fr;
    }

    .hero__content,
    .hero__visual {
        min-height: auto;
    }

    .trust-row,
    .category-grid,
    .woocommerce ul.products,
    .site-footer__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .hero,
    .trust-row,
    .section,
    .story-band,
    .content-wrap,
    .shop-layout,
    .page-header {
        padding-left: 16px;
        padding-right: 16px;
    }

    .site-header__inner,
    .site-footer__inner,
    .site-footer__bottom {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero {
        padding-top: 24px;
    }

    .hero__content {
        padding: 28px;
    }

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

    .hero p:not(.eyebrow) {
        font-size: 18px;
    }

    .hero__actions,
    .button,
    .trust-row,
    .category-grid,
    .woocommerce ul.products,
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .button {
        width: 100%;
    }

    .section h2,
    .story-band h2,
    .woocommerce-products-header__title,
    .product_title {
        font-size: 32px;
    }
}
