:root{
    --wine:#54151d;
    --ink:#201a18;
    --cream:#fbfaf7;
    --sand:#eee6df;
    --gold:#a98245;
    --line:#dfd7d1;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    background:var(--cream);
    color:var(--ink);
    font:400 14px/1.65 Arial,sans-serif;
}

body.menu-open{
    overflow:hidden;
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    display:block;
    width:100%;
}

button,
input,
select,
textarea{
    font:inherit;
}


/* =========================================================
   GLOBAL CONTENT
   ========================================================= */

.wrap{
    width:min(90vw,1280px);
    margin:auto;
}

.eyebrow{
    font-size:9px;
    letter-spacing:.18em;
    text-transform:uppercase;
}

.button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:0 24px;
    background:#111;
    color:#fff;
    border-radius:999px;
    font-size:9px;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.button.light{
    background:#fff;
    color:#222;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section{
    padding:72px 0;
}

.section-head{
    display:flex;
    justify-content:space-between;
    align-items:end;
    margin-bottom:30px;
}

.section-head h2{
    font:400 clamp(30px,4vw,52px)/1.05 Georgia,serif;
    color:var(--wine);
    margin:7px 0 0;
}

.section-head a{
    font-size:10px;
    text-transform:uppercase;
    border-bottom:1px solid;
    padding-bottom:5px;
}


/* =========================================================
   HOMEPAGE HERO
   ========================================================= */

.home-hero{
    height:min(69vw,690px);
    min-height:520px;
    position:relative;
    background:#ddd;
    overflow:hidden;
}

.home-hero img{
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(17,10,9,.2),
        transparent 60%
    );
}

.hero-copy{
    position:absolute;
    inset:0;
    display:grid;
    place-content:center;
    text-align:center;
    color:#251b18;
}

.hero-copy h1{
    font:400 clamp(48px,7vw,96px)/.86 Georgia,serif;
    margin:0 0 20px;
    letter-spacing:-.05em;
}

.hero-copy h1 span{
    display:block;
    font-size:.58em;
    font-style:italic;
}

.hero-copy .button{
    justify-self:center;
}


/* =========================================================
   PRODUCT GRID
   ========================================================= */

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:34px 12px;
}

.product-card{
    min-width:0;
}

.product-image{
    aspect-ratio:3/4;
    background:#eee;
    overflow:hidden;
    position:relative;
}

.product-image img{
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.product-card:hover img{
    transform:scale(1.025);
}

.tag{
    position:absolute;
    right:8px;
    top:8px;
    background:#d91f28;
    color:#fff;
    padding:4px 7px;
    font-size:8px;
}

.product-info{
    text-align:center;
    padding:12px 5px;
}

.product-info h3{
    font:400 13px Georgia,serif;
    margin:0 0 6px;
}

.price{
    font-size:10px;
}

.price del{
    color:#999;
    margin-right:6px;
}

.shop-row{
    text-align:center;
    margin-top:28px;
}


/* =========================================================
   MOSAIC
   ========================================================= */

.mosaic{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    grid-template-rows:280px 360px;
    gap:9px;
}

.tile{
    position:relative;
    overflow:hidden;
}

.tile:first-child{
    grid-row:1/3;
}

.tile img{
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.tile:hover img{
    transform:scale(1.025);
}

.tile:after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        0deg,
        rgba(0,0,0,.45),
        transparent 58%
    );
}

.tile-copy{
    position:absolute;
    z-index:2;
    left:25px;
    bottom:23px;
    color:#fff;
}

.tile-copy h3{
    font:400 27px Georgia,serif;
    margin:3px 0 0;
}


/* =========================================================
   STORY
   ========================================================= */

.story-band{
    display:grid;
    grid-template-columns:1fr 1fr;
    background:#f0ebe6;
}

.story-copy{
    padding:8vw;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.story-copy h2{
    font:400 clamp(38px,5vw,66px)/.95 Georgia,serif;
    color:var(--wine);
    margin:12px 0 23px;
}

.story-copy p{
    max-width:520px;
    color:#655b56;
}

.story-image{
    min-height:570px;
}

.story-image img{
    height:100%;
    object-fit:cover;
}


/* =========================================================
   NEWSLETTER
   ========================================================= */

.newsletter{
    padding:65px 0;
    text-align:center;
    border-top:1px solid var(--line);
}

.newsletter h2{
    font:400 38px Georgia,serif;
    color:var(--wine);
    margin:7px 0;
}

.newsletter-form{
    width:min(520px,90vw);
    margin:22px auto 0;
    display:flex;
    border-bottom:1px solid;
}

.newsletter-form input{
    flex:1;
    border:0;
    background:none;
    padding:13px 3px;
    outline:0;
}

.newsletter-form button{
    border:0;
    background:none;
    text-transform:uppercase;
    font-size:9px;
    letter-spacing:.12em;
}


/* =========================================================
   PAGE HERO
   ========================================================= */

.page-hero{
    height:460px;
    position:relative;
    color:#fff;
    overflow:hidden;
}

.page-hero img{
    height:100%;
    object-fit:cover;
}

.page-hero:after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(16,9,8,.62),
        rgba(16,9,8,.08)
    );
}

.page-hero-content{
    position:absolute;
    z-index:2;
    left:7vw;
    top:50%;
    transform:translateY(-50%);
    max-width:590px;
}

.page-hero h1{
    font:400 clamp(52px,7vw,92px)/.9 Georgia,serif;
    margin:8px 0 16px;
}

.page-hero p{
    font-size:16px;
    max-width:500px;
}


/* =========================================================
   CONTENT SPLIT
   ========================================================= */

.content-split{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:8vw;
    padding:85px 0;
}

.content-split h2,
.simple-content h2{
    font:400 clamp(34px,4vw,54px)/1 Georgia,serif;
    color:var(--wine);
    margin:10px 0 22px;
}

.content-split p,
.simple-content p,
.simple-content li{
    color:#655b56;
}

.values{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-top:1px solid var(--line);
    margin-top:50px;
}

.value{
    padding:28px 25px 28px 0;
}

.value h3{
    font:400 23px Georgia,serif;
    color:var(--wine);
    margin:9px 0;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-layout{
    display:grid;
    grid-template-columns:.75fr 1.25fr;
    gap:8vw;
    padding:80px 0;
}

.contact-aside h2{
    font:400 45px Georgia,serif;
    color:var(--wine);
    margin:8px 0 20px;
}

.contact-aside a{
    display:block;
    margin:7px 0;
}

.contact-form{
    background:#f0ebe6;
    padding:45px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    border:1px solid #d4cac3;
    background:#fff;
    padding:15px;
    margin-bottom:12px;
}

.contact-form textarea{
    height:150px;
    resize:vertical;
}

.contact-form button{
    border:0;
}


/* =========================================================
   POLICY
   ========================================================= */

.policy{
    padding:80px 0;
}

.policy-intro{
    display:grid;
    grid-template-columns:.7fr 1.3fr;
    gap:8vw;
    margin-bottom:55px;
}

.policy-intro h2{
    font:400 45px Georgia,serif;
    color:var(--wine);
    margin:8px 0;
}

.policy-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    margin-bottom:70px;
}

.policy-card{
    background:#f0ebe6;
    padding:28px;
}

.policy-card h3{
    font:400 24px Georgia,serif;
    color:var(--wine);
    margin:8px 0;
}

.policy-sections{
    max-width:850px;
    margin:auto;
}

.policy-section{
    padding:35px 0;
    border-top:1px solid var(--line);
}

.policy-section h2{
    font:400 32px Georgia,serif;
    color:var(--wine);
    margin:7px 0 15px;
}


/* =========================================================
   FOOTER CONTENT
   ========================================================= */

.site-footer{
    background:#24130e;
    color:#d9cdc6;
    padding:65px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.4fr repeat(3,1fr);
    gap:55px;
}

.footer-logo{
    width:125px;
    background:#fff;
    padding:6px;
    margin-bottom:15px;
}

.site-footer h3{
    color:#d6ae67;
    margin:0 0 16px;
}

.site-footer a{
    display:block;
    margin:7px 0;
    font-size:12px;
}

.footer-bottom{
    border-top:1px solid #51362e;
    margin-top:45px;
    padding-top:20px;
    font-size:10px;
}


/* =========================================================
   HOMEPAGE SLIDER
   ========================================================= */

.home-hero .hero-slide{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    transition:
        opacity 1s ease,
        visibility 1s ease;
}

.home-hero .hero-slide.active{
    opacity:1;
    visibility:visible;
    z-index:1;
}

.home-hero .hero-slide img{
    height:100%;
    object-fit:cover;
}

.slider-arrow{
    position:absolute;
    z-index:4;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    border:0;
    border-radius:50%;
    background:rgba(255,255,255,.86);
    color:#411117;
    font-size:22px;
    cursor:pointer;
    box-shadow:0 4px 20px rgba(0,0,0,.12);
}

.slider-prev{
    left:22px;
}

.slider-next{
    right:22px;
}

.slider-dots{
    position:absolute;
    z-index:4;
    left:50%;
    bottom:18px;
    transform:translateX(-50%);
    display:flex;
    gap:8px;
}

.slider-dot{
    width:7px;
    height:7px;
    padding:0;
    border:1px solid #fff;
    border-radius:50%;
    background:transparent;
    cursor:pointer;
}

.slider-dot.active{
    background:#fff;
}


/* =========================================================
   BANNER-ONLY HERO
   ========================================================= */

.page-hero.banner-only{
    height:auto;
    aspect-ratio:800/280;
}

.page-hero.banner-only:after,
.page-hero.banner-only .page-hero-content{
    display:none;
}

.page-hero.banner-only img{
    position:absolute;
    inset:0;
    object-fit:cover;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media(max-width:850px){

    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .mosaic{
        grid-template-columns:1fr 1fr;
        grid-template-rows:430px 300px;
    }

    .story-band{
        grid-template-columns:1fr;
    }

    .story-image{
        min-height:500px;
        order:-1;
    }

    .content-split,
    .contact-layout,
    .policy-intro{
        grid-template-columns:1fr;
    }

    .values,
    .policy-cards{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

    .footer-brand{
        grid-column:1/-1;
    }
}


@media(max-width:560px){

    .home-hero{
        min-height:590px;
    }

    .home-hero img{
        object-position:58% center;
    }

    .hero-copy{
        place-content:end center;
        padding-bottom:55px;
        color:#fff;
        text-shadow:0 2px 15px #000;
    }

    .section{
        padding:55px 0;
    }

    .section-head{
        display:block;
    }

    .section-head a{
        display:inline-block;
        margin-top:15px;
    }

    .product-grid{
        gap:28px 7px;
    }

    .product-info h3{
        font-size:12px;
    }

    .mosaic{
        display:block;
    }

    .tile{
        height:430px;
        margin-bottom:7px;
    }

    .tile:not(:first-child){
        height:300px;
    }

    .story-copy{
        padding:65px 6vw;
    }

    .page-hero{
        height:520px;
    }

    .page-hero-content{
        left:6vw;
        right:6vw;
    }

    .page-hero h1{
        font-size:58px;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .contact-form{
        padding:28px 18px;
    }

    .footer-grid{
        gap:30px 18px;
    }

    .footer-bottom{
        line-height:1.8;
    }

    .home-hero{
        height:57vw;
        min-height:230px;
    }

    .slider-arrow{
        width:34px;
        height:34px;
    }

    .slider-prev{
        left:10px;
    }

    .slider-next{
        right:10px;
    }

    .page-hero.banner-only{
        height:auto;
    }
}