/* style/style-index.css */

* {
    box-sizing: border-box;
}

:root {
    --bg: #f6f1e8;
    --surface: #efe6d9;
    --border: rgba(217, 207, 194, 0.7);
    --text: #1f1a17;
    --text-soft: #4f433a;
    --text-muted: #d8c8b6;
    --white: #ffffff;
    --overlay: rgba(20, 13, 9, 0.48);
    --overlay-strong: rgba(20, 13, 9, 0.62);
    --button: #ffffff;
    --button-text: #1f1a17;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #2f221c;
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

.hero-poster-media,
.hero-video-media,
.product-image img {
    display: block;
    width: 100%;
    height: auto;
}

.page-wrap {
    width: 100%;
}

.eyebrow {
    margin: 0 0 14px;
    font-size: 16px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero {
    position: relative;
    min-height: 120dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1b140f;
}

.hero-video {
    display: flex;
    align-items: center;
}

.hero-poster-media,
.hero-video-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-poster-media {
    z-index: 0;
}

.hero-video-media {
    z-index: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-video-media.is-loaded {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(47, 34, 28, 0.15) 0%, rgba(47, 34, 28, 0.25) 20%, rgba(47, 34, 28, 0.65) 100%),
        linear-gradient(90deg, rgba(47, 34, 28, 0.45) 0%, rgba(47, 34, 28, 0.2) 45%, rgba(47, 34, 28, 0.08) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0px 40px 80px;
    display: grid;
    gap: 32px;
    align-items: center;
}

.hero-content-single {
    grid-template-columns: 1fr;
}

.hero-text {
    max-width: 680px;
    color: var(--white);
}

.hero-text h1 {
    margin: 0 0 22px;
    font-size: 64px;
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.hero-description {
    max-width: 620px;
    margin: 0 0 30px;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.86);
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 26px;
    background: var(--button);
    color: var(--button-text);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.2s ease, opacity 0.2s ease;
    border-radius: 8px;
}

.hero-button:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.shop-section {
    padding-top: 0;
}

.site-footer {
    border-top: 1px solid #d9cfc2;
    padding: 24px 40px;
    background: var(--surface);
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #5d4f44;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(47, 34, 28, 0) 0%,
        rgba(47, 34, 28, 0.2) 40%,
        rgba(47, 34, 28, 0.6) 70%,
        rgba(47, 34, 28, 1) 100%
    );
}

@media (max-width: 900px) {
    .hero-content,
    .site-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero {
        min-height: 110dvh;
    }

    .hero-content {
        padding-top: 160px;
        padding-bottom: 0;
    }

    .hero-text h1 {
        font-size: clamp(38px, 13vw, 56px);
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.7;
    }
}

@media (max-width: 560px) {
    .hero-content {
        padding-top: 180px;
        padding-bottom: 32px;
    }

    .hero-button {
        width: 100%;
        max-width: 260px;
    }
}


.hero-text-editorial {
    max-width: 760px;
    color: #ffffff;
}

.hero-kicker-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.hero-kicker-line {
    width: 72px;
    height: 1px;
    background: rgba(255,255,255,0.55);
}

.hero-kicker {
    margin: 0;
    font-size: 13px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.74);
}

.hero-title-editorial {
    margin: 0;
    max-width: 780px;
    font-size: clamp(64px, 9vw, 112px);
    line-height: 0.9;
    font-weight: 500;
    letter-spacing: -0.06em;
    color: #ffffff;
}

.hero-description-editorial {
    max-width: 520px;
    margin-top: 34px;
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,0.78);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-button-editorial {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    min-height: 58px;
    padding: 0 24px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
        background 0.22s ease,
        transform 0.22s ease,
        border-color 0.22s ease;
}

.hero-button-editorial:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.28);
}

.hero-button-editorial span:first-child {
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-button-arrow {
    font-size: 18px;
    transform: translateY(-1px);
}

@media (max-width: 900px) {

    .hero-title-editorial {
        font-size: clamp(44px, 15vw, 72px);
        line-height: 0.94;
    }

    .hero-description-editorial {
        margin-top: 26px;
        font-size: 16px;
        line-height: 1.8;
    }

    .hero-button-editorial {
        width: 100%;
        justify-content: space-between;
    }
}


@media (max-width: 768px) {
    #shop {
        scroll-margin-top: 180px;
    }
}

@media (max-width: 480px) {
    #shop {
        scroll-margin-top: 210px;
    }
}