:root {
    --primary: #4a5d23;
    --secondary: #4a5d23;
    --background: #ffffff;
    --surface: #fcf8f8;
    --on-surface: #1c1b1b;
    --footer-bg: #f2eee9;

    /* stone palette */
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-300: #d6d3d1;
    --stone-400: #a8a29e;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --stone-800: #292524;
    --stone-900: #1c1917;
}

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

html {
    font-family: 'Work Sans', sans-serif;
    background: var(--background);
    color: var(--on-surface);
}

body {
    background: var(--background);
    color: var(--on-surface);
    font-family: 'Work Sans', sans-serif;
}

::selection {
    background: rgba(74, 93, 35, 0.2);
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* ── Material Icons ───────────────────────────────────────── */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    font-size: inherit;
    vertical-align: middle;
    color: var(--stone-900);
}

/* ── Reusable helpers ─────────────────────────────────────── */
.hero-card-shadow {
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
}

.category-card-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 50%);
}

/* ── Announcement Bar ─────────────────────────────────────── */
.announcement-bar {
    background: #ffffff;
    padding: 10px 0;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--stone-500);
    text-transform: uppercase;
    border-bottom: 1px solid var(--stone-100);
}

/* ── Header / Nav ─────────────────────────────────────────── */
header.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
}

nav.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    padding: 10px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo a {
    width: 100px;
    display: flex;
    align-items: center;
    gap: 4px;
}


.nav-links {
    display: none;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--stone-500);
    transition: color 0.15s;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--stone-600);
}

.nav-actions a {
    font-size: 20px;
    color: inherit;
    display: flex;
    align-items: center;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    height: 650px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.10);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    padding: 40px;
    border-radius: 8px;
    max-width: 576px;
    width: 100%;
}

.hero-card h1 {
    font-family: 'Noto Serif', serif;
    font-size: 36px;
    color: var(--stone-900);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-card p {
    font-size: 14px;
    color: var(--stone-500);
    margin-bottom: 32px;
    font-weight: 300;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: opacity 0.2s;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-outline {
    border: 1px solid var(--stone-200);
    color: var(--stone-400);
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: background 0.2s;
    background: transparent;
}

.btn-outline:hover {
    background: var(--stone-50);
}

/* ── Featured Categories ──────────────────────────────────── */
.categories-section {
    padding: 80px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Noto Serif', serif;
    font-size: 30px;
    text-align: center;
    color: var(--stone-800);
    margin-bottom: 48px;
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.category-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1.3 / 1;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-card-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.category-card-inner p {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
}

.btn-explore {
    background: rgba(255, 255, 255, 0.9);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 6px 16px;
    border-radius: 9999px;
    align-self: flex-start;
    transition: background 0.15s;
    color: inherit;
}

.btn-explore:hover {
    background: #ffffff;
}

.categories-cta {
    margin-top: 48px;
    text-align: center;
}

.btn-category {
    background: var(--primary);
    color: #ffffff;
    padding: 10px 32px;
    border-radius: 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: opacity 0.2s;
}

.btn-category:hover {
    opacity: 0.9;
}

/* ── New Arrivals ─────────────────────────────────────────── */
.arrivals-section {
    padding: 80px 24px;
    background: rgba(250, 250, 249, 0.5);
}

.arrivals-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.arrivals-section .section-title {
    margin-bottom: 64px;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 40px;
    row-gap: 48px;
}

.product-card {
    display: flex;
    flex-direction: column;
}

.product-image-wrap {
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
    aspect-ratio: 1.4 / 1;
}

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

.product-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    color: var(--primary);
    font-weight: 700;
}

.btn-order {
    background: var(--primary);
    color: #ffffff;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 8px 24px;
    border-radius: 6px;
    transition: opacity 0.2s;
}

.btn-order:hover {
    opacity: 0.9;
}

/* ── Editorial Story ──────────────────────────────────────── */
.editorial-section {
    background: var(--primary);
    color: #ffffff;
    padding: 96px 0;
    overflow: hidden;
}

.editorial-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

.editorial-images {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
}

.editorial-img-main {
    width: 85%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.editorial-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-img-sm1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 45%;
    height: 45%;
    border-radius: 16px;
    overflow: hidden;
    border: 8px solid var(--primary);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.editorial-img-sm1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-img-sm2 {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 30%;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid var(--primary);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    z-index: 20;
}

.editorial-img-sm2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-text .eyebrow {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    opacity: 0.6;
    margin-bottom: 24px;
    display: block;
}

.editorial-text h2 {
    font-family: 'Noto Serif', serif;
    font-size: 36px;
    margin-bottom: 40px;
    line-height: 1.25;
}

.editorial-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
    font-weight: 300;
    max-width: 512px;
}

.editorial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.20);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 14px;
    font-weight: 700;
}

.author-role {
    font-size: 11px;
    opacity: 0.6;
}

/* ── Promo Banner ─────────────────────────────────────────── */
.promo-section {
    padding: 80px 24px;
}

.promo-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    background: var(--stone-900);
}

.promo-inner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 1s ease;
}

.promo-inner:hover img {
    transform: scale(1.05);
}

.promo-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 48px;
    max-width: 672px;
}

.promo-content h2 {
    font-family: 'Noto Serif', serif;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 32px;
    line-height: 1.25;
}

.btn-promo {
    background: #ffffff;
    color: var(--stone-900);
    padding: 12px 40px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, color 0.2s;
}

.btn-promo:hover {
    background: var(--primary);
    color: #ffffff;
}

.btn-promo .material-symbols-outlined {
    font-size: 14px;
}

/* ── Footer ───────────────────────────────────────── */
footer {
    background-color: var(--footer-bg);
    border-top: 1px solid var(--surface-container-low);
    padding-top: 100px;
    padding-bottom: 60px;
}

.footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    width: 120px;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 3rem;
    margin-bottom: 4rem;
}

.footer-links a {
    font-family: 'Work Sans', sans-serif;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #a8a29e;
    /* stone-400 */
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #1c1917;
    /* stone-900 */
}

.footer-social {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
}

.footer-social a {
    color: #a8a29e;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.footer-social a:hover {
    color: var(--secondary);
}

.footer-divider {
    width: 100%;
    border-top: 1px solid var(--surface);
    padding-top: 2rem;
}

.footer-copy {
    font-family: 'Work Sans', sans-serif;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #a8a29e;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .hero-card {
        padding: 56px;
    }

    .hero-card h1 {
        font-size: 48px;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-content {
        padding: 0 96px;
    }

    .promo-content h2 {
        font-size: 48px;
    }

}

@media (min-width: 1024px) {
    .hero-content {
        justify-content: flex-start;
        padding-left: 128px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .editorial-inner {
        grid-template-columns: 1fr 1fr;
    }

    .editorial-text h2 {
        font-size: 48px;
    }
}