/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-dark: #2C1810;
    --color-brown: #8B5E3C;
    --color-gold: #D4A574;
    --color-cream: #FFF8F0;
    --color-white: #FFFFFF;
    --color-surface: #F5F2EC;
    --color-text: #1A1A1A;
    --color-text-muted: #6B5B4F;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'IBM Plex Sans', -apple-system, sans-serif;

    --container: 1280px;
    --gutter: 80px;
    --radius: 16px;
    --radius-sm: 8px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-cream);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== UTILITIES ===== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-label--light {
    color: var(--color-gold);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-top: 8px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn--primary {
    background: var(--color-brown);
    color: var(--color-white);
}

.btn--primary:hover {
    background: var(--color-dark);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--color-brown);
    border: 2px solid var(--color-brown);
}

.btn--outline:hover {
    background: var(--color-brown);
    color: var(--color-white);
}

.btn--outline-light {
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    padding: 14px 28px;
    font-size: 15px;
}

.btn--outline-light:hover {
    background: var(--color-gold);
    color: var(--color-dark);
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-cream);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.header--scrolled {
    background: rgba(255, 248, 240, 0.95);
    border-bottom-color: rgba(212, 165, 116, 0.15);
    box-shadow: 0 1px 24px rgba(44, 24, 16, 0.06);
}

.header__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-dark);
    transition: var(--transition);
}

.header__logo:hover {
    color: var(--color-brown);
}

.header__logo-icon {
    width: 32px;
    height: 32px;
    color: var(--color-brown);
}

.header__logo span {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.header__nav {
    display: flex;
    gap: 40px;
}

.header__nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: var(--transition);
    position: relative;
}

.header__nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-brown);
    transition: var(--transition);
}

.header__nav a:hover {
    color: var(--color-dark);
}

.header__nav a:hover::after {
    width: 100%;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header__cart {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
}

.header__cart svg {
    width: 24px;
    height: 24px;
    color: var(--color-dark);
}

.header__cart:hover svg {
    color: var(--color-brown);
}

.header__menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.header__menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    gap: 60px;
    height: 680px;
}

.hero__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(212, 165, 116, 0.18);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-brown);
    width: fit-content;
}

.hero__badge svg {
    width: 16px;
    height: 16px;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero__subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 520px;
}

.hero__ctas {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero__image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    height: 520px;
    flex-shrink: 0;
}

.hero__image img {
    transition: transform 0.6s ease;
}

.hero__image:hover img {
    transform: scale(1.03);
}

/* ===== CATEGORIES BENTO ===== */
.categories {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px var(--gutter);
}

.bento-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bento-row {
    display: flex;
    gap: 16px;
}

.bento-row--top {
    height: 320px;
}

.bento-row--bottom {
    height: 260px;
}

.bento-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    cursor: pointer;
    flex: 1;
}

.bento-card--large {
    flex: 1;
}

.bento-card--fixed {
    flex: 0 0 400px;
}

.bento-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bento-card:hover img {
    transform: scale(1.07);
}

.bento-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.bento-card__content {
    position: relative;
    z-index: 2;
}

.bento-card__content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.bento-card__content p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

.bento-card--large .bento-card__content h3 {
    font-size: 28px;
}

.bento-card--large .bento-card__content p {
    font-size: 14px;
}

/* ===== PRODUCTS ===== */
.products {
    background: var(--color-white);
    padding: 80px 0;
}

.products__header,
.products__grid {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.products__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.products__header .section-label {
    text-align: left;
}

.products__view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-brown);
    transition: var(--transition);
}

.products__view-all svg {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.products__view-all:hover svg {
    transform: translateX(4px);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

.product-card__image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    background: var(--color-surface);
}

.product-card__image img {
    transition: transform 0.5s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.07);
}

.product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--color-brown);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

.product-card__info h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
}

.product-card__price {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-brown);
}

/* ===== STORY ===== */
.story {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 80px var(--gutter);
    background: var(--color-dark);
    color: var(--color-cream);
    height: 520px;
}

.story__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.story__title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    color: var(--color-cream);
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.story__text {
    font-size: 16px;
    color: rgba(255, 248, 240, 0.65);
    line-height: 1.7;
}

.story__image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
}

.story__image img {
    transition: transform 0.6s ease;
}

.story__image:hover img {
    transform: scale(1.03);
}

/* ===== PROCESS ===== */
.process {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px var(--gutter);
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.process__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.process__step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-brown);
}

.process__step-icon {
    width: 32px;
    height: 32px;
    color: var(--color-brown);
}

.process__step h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark);
}

.process__step p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 300px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--color-white);
    padding: 80px 0;
}

.testimonials > .section-header,
.testimonials__grid {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--gutter);
}

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

.testimonial-card {
    padding: 32px;
    background: var(--color-cream);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(44, 24, 16, 0.08);
}

.testimonial-card__stars {
    color: var(--color-gold);
    font-size: 18px;
    letter-spacing: 4px;
}

.testimonial-card__quote {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-card__author {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-brown);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 80px 120px;
    background: var(--color-brown);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.cta-banner__title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.5px;
}

.cta-banner__subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    line-height: 1.6;
}

.cta-banner__form {
    display: flex;
    border-radius: var(--radius-sm);
    overflow: hidden;
    height: 52px;
}

.cta-banner__form input {
    width: 360px;
    padding: 0 20px;
    border: none;
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
}

.cta-banner__form input::placeholder {
    color: #9A9A9A;
}

.cta-banner__form button {
    padding: 0 32px;
    background: var(--color-dark);
    color: var(--color-white);
    border: none;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.cta-banner__form button:hover {
    background: #1a0f0a;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-dark);
    padding: 60px var(--gutter);
    color: var(--color-cream);
}

.footer__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer__brand {
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__logo svg {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
}

.footer__logo span {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
}

.footer__brand > p {
    font-size: 14px;
    color: rgba(255, 248, 240, 0.4);
    line-height: 1.6;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.15);
    transition: var(--transition);
}

.footer__social a:hover {
    background: var(--color-gold);
}

.footer__social svg {
    width: 18px;
    height: 18px;
    color: var(--color-gold);
    transition: var(--transition);
}

.footer__social a:hover svg {
    color: var(--color-dark);
}

.footer__nav {
    display: flex;
    gap: 80px;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__col h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.footer__col a,
.footer__col span {
    font-size: 14px;
    color: rgba(255, 248, 240, 0.4);
    transition: var(--transition);
}

.footer__col a:hover {
    color: var(--color-gold);
}

.footer__divider {
    max-width: var(--container);
    margin: 40px auto;
    height: 1px;
    background: rgba(255, 248, 240, 0.08);
}

.footer__copyright {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 248, 240, 0.25);
    max-width: var(--container);
    margin: 0 auto;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    :root {
        --gutter: 40px;
    }

    .header__nav {
        gap: 24px;
    }

    .hero {
        gap: 40px;
    }

    .bento-row--top {
        height: 260px;
    }

    .bento-row--bottom {
        flex-wrap: wrap;
        height: auto;
    }

    .bento-row--bottom .bento-card {
        flex: 1 1 calc(50% - 8px);
        height: 200px;
    }

    .bento-card--fixed {
        flex: 0 0 300px;
    }

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

    .story {
        gap: 40px;
    }

    .footer__nav {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --gutter: 20px;
    }

    .header__inner {
        padding: 0 var(--gutter);
    }

    .header__nav {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--color-cream);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid rgba(212, 165, 116, 0.2);
        box-shadow: 0 12px 40px rgba(44, 24, 16, 0.1);
    }

    .header__nav.active {
        display: flex;
    }

    .header__nav a {
        padding: 16px 0;
        border-bottom: 1px solid rgba(212, 165, 116, 0.1);
        font-size: 17px;
    }

    .header__menu-btn {
        display: flex;
    }

    .hero {
        flex-direction: column;
        padding-top: 40px;
        padding-bottom: 40px;
        height: auto;
        gap: 40px;
    }

    .hero__image {
        height: 320px;
        width: 100%;
    }

    .hero__ctas {
        flex-direction: column;
        width: 100%;
    }

    .hero__ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .bento-row {
        flex-direction: column;
        height: auto !important;
    }

    .bento-card {
        min-height: 200px;
    }

    .bento-card--fixed {
        flex: 1;
    }

    .bento-row--bottom .bento-card {
        flex: 1;
        height: 200px;
    }

    .products__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .story {
        flex-direction: column;
        padding: 60px var(--gutter);
        height: auto;
        overflow: hidden;
    }

    .story__content {
        width: 100%;
    }

    .story__image {
        height: 280px;
        width: 100%;
    }

    .process__steps {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        padding: 60px var(--gutter);
    }

    .cta-banner__form {
        flex-direction: column;
        width: 100%;
        height: auto;
        border-radius: var(--radius-sm);
    }

    .cta-banner__form input {
        width: 100%;
        height: 52px;
        border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    }

    .cta-banner__form button {
        height: 52px;
        border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    }

    .footer__inner {
        flex-direction: column;
    }

    .footer__nav {
        flex-wrap: wrap;
        gap: 32px;
    }

    .footer__brand {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .products__grid {
        grid-template-columns: 1fr;
    }
}
