@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root{
    --ivory:#f7f3eb;
    --sage:#9aa58d;
    --sage-dark:#66705d;
    --gold:#b49a6a;
    --espresso:#2b2520;
    --charcoal:#333333;
    --line:#ded7cb;
    --white:#ffffff;
    --muted:#77716a;
    --soft:#eee9df;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    background:var(--ivory);
    color:var(--espresso);
    font-family:Inter,Arial,sans-serif;
    line-height:1.6;
}

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

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

/* =========================================
   TOP UTILITY BAR
========================================= */

.topline{
    font-size:10px;
    letter-spacing:1.5px;
    padding:9px 4%;
    background:#6b735f;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    min-height:36px;
}

/* =========================================
   MAIN HEADER
========================================= */

.site-header{
    height:88px;
    padding:0 4%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:var(--ivory);
    position:sticky;
    top:0;
    z-index:20;
    border-bottom:1px solid rgba(180,154,106,.12);
}

/* LOGO */

.site-header .brand{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    flex-shrink:0;
    height:100%;
}

.site-header .brand img{
    display:block;
    width:auto;
    height:44px;
    max-width:125px;
    object-fit:contain;
}

/* NAVIGATION */

.site-header nav{
    display:flex;
    align-items:center;
    gap:28px;
    font-size:12px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.site-header nav a{
    position:relative;
    padding:8px 0;
    transition:color .25s ease;
}

.site-header nav a:hover{
    color:var(--gold);
}

.site-header nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:1px;
    width:0;
    height:1px;
    background:var(--gold);
    transition:width .25s ease;
}

.site-header nav a:hover::after{
    width:100%;
}

/* MOBILE MENU BUTTON */

.menu{
    display:none;
    background:none;
    border:0;
    cursor:pointer;
    padding:10px;
    color:var(--espresso);
}

/* =========================================
   HERO
========================================= */

.hero{
    min-height:78vh;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.hero > img{
    width:100%;
    height:78vh;
    object-fit:cover;
    display:block;
}

.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(25,21,16,.55) 0%,
        rgba(25,21,16,.18) 45%,
        rgba(25,21,16,0) 75%
    );
    pointer-events:none;
}

.hero-copy{
    position:absolute;
    z-index:2;
    left:7%;
    top:50%;
    transform:translateY(-50%);
    color:#fff;
    max-width:570px;
}

.hero-copy small{
    display:block;
    font-size:10px;
    letter-spacing:3px;
    margin-bottom:18px;
    text-transform:uppercase;
}

.hero-copy h1{
    font:600 clamp(48px,7vw,110px)/.82 "Cormorant Garamond",serif;
    margin:0 0 22px;
    letter-spacing:-1px;
}

.hero-copy p{
    max-width:480px;
    line-height:1.7;
    margin:0 0 25px;
    font-size:14px;
}

.btn{
    display:inline-block;
    padding:13px 21px;
    border:1px solid currentColor;
    letter-spacing:1.5px;
    font-size:11px;
    text-transform:uppercase;
    margin-right:8px;
    transition:all .25s ease;
}

.btn:hover{
    background:#fff;
    color:var(--espresso);
    border-color:#fff;
}

/* =========================================
   COLLECTION TILES
========================================= */

.tiles{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:8px;
    padding:8px;
}

.tiles a{
    position:relative;
    height:470px;
    overflow:hidden;
    display:block;
    background:#ddd;
}

.tiles img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .6s ease;
}

.tiles a:hover img{
    transform:scale(1.04);
}

.tiles::after{
    display:none;
}

.tiles span{
    position:absolute;
    left:28px;
    bottom:24px;
    color:#fff;
    font:500 28px "Cormorant Garamond",serif;
    letter-spacing:1px;
    text-shadow:0 2px 10px rgba(0,0,0,.35);
}

/* =========================================
   SECTIONS
========================================= */

.edit,
.product-grid,
.listing{
    padding:80px 6%;
}

.edit{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.edit h2,
.section-title h2,
.appointment h2{
    font:600 clamp(45px,5vw,78px)/.9 "Cormorant Garamond",serif;
    margin:0 0 15px;
}

.edit p{
    max-width:520px;
    line-height:1.8;
    color:#65605a;
}

.edit img{
    width:100%;
    max-height:600px;
    object-fit:cover;
}

/* =========================================
   SECTION TITLES
========================================= */

.section-title{
    text-align:center;
    padding:70px 6% 30px;
}

.section-title h2{
    margin-bottom:10px;
}

.section-title p{
    color:var(--muted);
    font-size:13px;
}

/* =========================================
   PRODUCT GRID
========================================= */

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

.prod{
    display:block;
}

.prod img{
    width:100%;
    aspect-ratio:3/4;
    object-fit:cover;
    background:#e6e0d5;
    display:block;
    transition:transform .4s ease;
}

.prod:hover img{
    transform:scale(1.015);
}

.prod small{
    display:block;
    margin-top:12px;
    font-size:9px;
    letter-spacing:1.5px;
    color:#777;
    text-transform:uppercase;
}

.prod h3{
    font:500 28px "Cormorant Garamond",serif;
    margin:6px 0 2px;
}

.prod p{
    margin:0;
    font-size:12px;
    color:#777;
}

.prod .price{
    display:block;
    margin-top:7px;
    font-size:12px;
    letter-spacing:.5px;
}

/* =========================================
   LISTING / COLLECTION PAGE
========================================= */

.listing{
    padding-top:45px;
}

.listing-head{
    margin-bottom:25px;
}

.listing-head h1{
    font:600 65px "Cormorant Garamond",serif;
    margin:0 0 10px;
}

.listing-head p{
    color:#777;
}

/* =========================================
   PRODUCT PAGE
========================================= */

.product{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:55px;
    padding:50px 6%;
}

.main-photo{
    width:100%;
    aspect-ratio:3/4;
    object-fit:cover;
    background:#ddd;
}

.thumbs{
    display:flex;
    gap:10px;
    margin-top:10px;
    overflow:auto;
}

.thumbs img{
    width:90px;
    height:110px;
    object-fit:cover;
    flex-shrink:0;
}

.product-info{
    padding-top:50px;
}

.product-info h1{
    font:600 70px/.9 "Cormorant Garamond",serif;
    margin:0 0 15px;
}

.product-info p{
    color:#666;
    line-height:1.8;
}

.price{
    margin:20px 0;
    font-size:18px;
    letter-spacing:.5px;
}

.chips{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    margin:18px 0;
}

.chips span{
    border:1px solid var(--line);
    padding:8px 10px;
    font-size:10px;
}

.wa{
    display:block;
    background:#56634c;
    color:#fff;
    padding:16px;
    text-align:center;
    letter-spacing:1px;
    font-size:11px;
    margin:20px 0;
    transition:background .25s ease;
}

.wa:hover{
    background:#424d3b;
}

.share{
    background:transparent;
    border:1px solid var(--line);
    padding:13px;
    letter-spacing:1px;
    font-size:10px;
    cursor:pointer;
    width:100%;
}

/* =========================================
   ACCORDION
========================================= */

.accord{
    margin:30px 0;
}

.accord details{
    border-top:1px solid var(--line);
    padding:15px 0;
}

.accord details:last-child{
    border-bottom:1px solid var(--line);
}

.accord summary{
    cursor:pointer;
    font-size:12px;
    letter-spacing:.5px;
}

.accord p{
    line-height:1.7;
    color:#666;
    margin-top:12px;
}

/* =========================================
   APPOINTMENT
========================================= */

.appointment{
    padding:110px 6%;
    background:#56634c;
    color:#fff;
    text-align:center;
}

.appointment h2{
    margin-bottom:18px;
}

.appointment p{
    max-width:560px;
    margin:0 auto 28px;
    color:rgba(255,255,255,.82);
}

.appointment .btn{
    border-color:rgba(255,255,255,.7);
}

.appointment .btn:hover{
    background:#fff;
    color:#56634c;
}

/* =========================================
   FOOTER
========================================= */

footer{
    background:#24221e;
    color:#eee;
    padding:60px 6%;
}

footer{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:30px;
}

footer img{
    width:130px;
    max-height:80px;
    object-fit:contain;
    object-position:left center;
    filter:brightness(1.1);
}

footer b{
    display:block;
    font-size:10px;
    letter-spacing:2px;
    margin-bottom:15px;
    text-transform:uppercase;
}

footer a{
    display:block;
    color:#bbb;
    font-size:12px;
    margin:8px 0;
    transition:color .2s ease;
}

footer a:hover{
    color:#fff;
}

.copyright{
    grid-column:1/-1;
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:20px;
    color:#777;
    font-size:10px;
    letter-spacing:1px;
    margin-top:10px;
}

/* =========================================
   FORM ELEMENTS
========================================= */

input,
textarea,
select{
    width:100%;
    border:1px solid var(--line);
    background:#fff;
    padding:13px;
    font:inherit;
    color:var(--espresso);
    outline:none;
}

input:focus,
textarea:focus,
select:focus{
    border-color:var(--gold);
}

button{
    font:inherit;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width:900px){

    .site-header{
        height:72px;
        padding:0 5%;
    }

    .site-header .brand img{
        height:38px;
        max-width:108px;
    }

    .site-header nav{
        display:none;
        position:absolute;
        top:72px;
        left:0;
        right:0;
        background:var(--ivory);
        border-top:1px solid var(--line);
        border-bottom:1px solid var(--line);
        padding:18px 5%;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        box-shadow:0 12px 30px rgba(0,0,0,.08);
    }

    .site-header.nav-open nav,
    .site-header.nav-open .menu{
        display:flex;
    }

    .site-header nav a{
        width:100%;
        padding:13px 0;
        border-bottom:1px solid rgba(0,0,0,.06);
    }

    .menu{
        display:block;
    }

    .hero,
    .hero > img{
        min-height:70vh;
        height:70vh;
    }

    .hero-copy{
        left:7%;
        right:7%;
    }

    .hero-copy h1{
        font-size:60px;
    }

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

    .tiles a{
        height:350px;
    }

    .edit{
        grid-template-columns:1fr;
        gap:35px;
        padding:60px 6%;
    }

    .product-grid{
        grid-template-columns:1fr 1fr;
        padding:60px 5%;
        gap:25px;
    }

    .product{
        grid-template-columns:1fr;
        gap:25px;
        padding:35px 5%;
    }

    .product-info{
        padding-top:10px;
    }

    .product-info h1{
        font-size:55px;
    }

    footer{
        grid-template-columns:1fr 1fr;
        padding:50px 6%;
    }
}

@media (max-width:600px){

    .topline{
        font-size:8px;
        letter-spacing:1px;
        padding:8px 5%;
    }

    .site-header{
        height:68px;
    }

    .site-header .brand img{
        height:36px;
        max-width:100px;
    }

    .site-header nav{
        top:68px;
    }

    .hero,
    .hero > img{
        min-height:72vh;
        height:72vh;
    }

    .hero-copy{
        left:6%;
        right:6%;
    }

    .hero-copy h1{
        font-size:52px;
    }

    .hero-copy p{
        font-size:13px;
    }

    .btn{
        padding:12px 16px;
        font-size:10px;
    }

    .tiles{
        grid-template-columns:1fr;
        padding:6px;
    }

    .tiles a{
        height:420px;
    }

    .tiles span{
        left:22px;
        bottom:20px;
        font-size:26px;
    }

    .section-title{
        padding:55px 6% 25px;
    }

    .section-title h2,
    .edit h2,
    .appointment h2{
        font-size:48px;
    }

    .product-grid{
        grid-template-columns:1fr;
        padding:45px 6%;
    }

    .listing{
        padding:40px 6%;
    }

    .listing-head h1{
        font-size:52px;
    }

    .product{
        padding:30px 6%;
    }

    .product-info h1{
        font-size:50px;
    }

    .appointment{
        padding:80px 7%;
    }

    footer{
        grid-template-columns:1fr;
        padding:45px 7%;
    }

    footer img{
        width:115px;
    }

    .copyright{
        grid-column:auto;
    }
}

/* =========================================
   EXTRA LOGO SAFETY
   Prevents the tall PNG from ever becoming huge
========================================= */

.brand img,
.site-header .brand img{
    height:44px !important;
    width:auto !important;
    max-width:125px !important;
    object-fit:contain !important;
}

@media (max-width:900px){
    .brand img,
    .site-header .brand img{
        height:38px !important;
        max-width:108px !important;
    }
}

@media (max-width:600px){
    .brand img,
    .site-header .brand img{
        height:36px !important;
        max-width:100px !important;
    }
}