:root {
    --green: #233528;
    --green-2: #2f4535;
    --cream: #f7f2eb;
    --beige: #e8d5bf;
    --gold: #c49a67;
    --text: #263127;
    --muted: #706a60;
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: Montserrat, Arial, sans-serif;
    color: var(--text);
    background: #fbf8f3
}

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

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

.topbar {
    height: 36px;
    background: #1f3324;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 600
}

.site-header {
    height: 108px;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 9.5%;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .05);
    position: relative;
    z-index: 2
}

.nav-left {
    display: flex;
    gap: 32px;
    font-size: 16px;
    color: #333;
    align-items: center
}

.nav-left a {
    padding: 42px 0 22px;
    border-bottom: 1px solid transparent
}

.nav-left a.active {
    border-color: var(--gold)
}

.brand {
    text-align: center;
    line-height: 1;
    position: relative
}

.brand-mark {
    color: var(--gold);
    font-size: 24px;
    position: absolute;
    left: 50%;
    top: -22px;
    transform: translateX(-50%)
}

.brand-name {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 58px;
    font-weight: 600;
    letter-spacing: .02em
}

.brand-subtitle {
    display: block;
    margin-top: 7px;
    font-size: 13px;
    letter-spacing: .55em;
    text-transform: uppercase;
    color: #6d6b65
}

.header-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 28px;
    font-size: 32px
}

.cart {
    position: relative
}

.cart span {
    position: absolute;
    top: -15px;
    right: -14px;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    font-family: Arial
}

.hero {
    min-height: 560px;
    display: grid;
    grid-template-columns: 43% 57%;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 12% 35%, #fff 0, #f8efe4 34%, #ead8c3 100%)
}

.hero-content {
    padding-left: 13.2%;
    padding-right: 20px;
    position: relative;
    z-index: 1
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .34em;
    font-size: 14px;
    margin: 0 0 22px;
    color: #4f574b
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    line-height: .95;
    font-weight: 500;
    margin: 0 0 22px;
    color: #243027;
}

.hero-text {
    font-size: 18px;
    line-height: 1.65;
    max-width: 520px;
    margin: 0 0 30px
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 26px;
    background: var(--green);
    color: #fff;
    padding: 20px 34px;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-weight: 700;
    font-size: 13px
}

.hero-badges{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin-top:34px;
    justify-content:center;
}

.hero-badges article{
    display:flex;
    align-items:center;
    gap:10px;

    padding:0;

    background:transparent;

    border:none;

    box-shadow:none;
}

.hero-badges i{
    font-style:normal;

    color:rgba(196,154,103,.78);

    font-size:12px;

    line-height:1;
}

.hero-badges span{
    font-size:11.5px;

    letter-spacing:.08em;

    text-transform:uppercase;

    color:rgba(79,87,75,.82);

    font-weight:500;

    line-height:1.2;
}

.hero-visual {
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.hero-visual img {
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: contain;
    object-position: center
}

.essentials {
    padding: 40px 5.2% 32px;
    background: #fbf8f3
}

.essentials h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 0 0 34px;
    text-transform: uppercase;
    letter-spacing: .45em;
    font-size: 20px;
    font-weight: 500
}

.essentials h2 span {
    width: 42px;
    height: 1px;
    background: var(--gold)
}

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

.category-card {
    position: relative;
    overflow: hidden;
    background: #ddd;
    aspect-ratio: 2.25/1
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #ead8c3;
    transition: transform .5s ease
}

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

.category-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 34px;
    color: #fff;
    background: linear-gradient(0deg, rgba(67, 48, 30, .55), rgba(150, 119, 83, .2) 70%, transparent)
}

.category-overlay h3 {
    text-transform: uppercase;
    letter-spacing: .22em;
    margin: 0 0 12px;
    font-size: 18px
}

.category-overlay p {
    margin: 0 0 14px;
    font-size: 14px
}

.category-overlay strong {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 13px
}


.home-products {
    margin-top: 46px;
    padding-top: 34px;
    border-top: 1px solid rgba(196, 154, 103, .28);
}

.home-products-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 26px;
}

.home-products-head .eyebrow {
    margin: 0 0 8px;
    font-size: 11px;
    letter-spacing: .32em;
    color: var(--gold);
}

.home-products-head h3 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 500;
    color: var(--green);
}

.home-products-head a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    border: 1px solid rgba(196, 154, 103, .42);
    border-radius: 999px;
    background: rgba(255, 255, 255, .62);
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    white-space: nowrap;
}

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

.home-product-card {
    display: block;
    padding: 14px 14px 18px;
    border: 1px solid rgba(196, 154, 103, .18);
    border-radius: 26px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 18px 42px rgba(72, 52, 30, .07);
    transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.home-product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(196, 154, 103, .42);
    box-shadow: 0 24px 54px rgba(72, 52, 30, .12);
}

.home-product-img {
    display: block;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, #f5eadc, #fffaf4);
    aspect-ratio: 1 / 1;
}

.home-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.home-product-card:hover .home-product-img img {
    transform: scale(1.035);
}

.home-product-name {
    display: block;
    margin: 16px 2px 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--text);
}

.home-product-card strong {
    display: block;
    margin: 0 2px;
    font-size: 14px;
    color: var(--green);
}

.values {
    background: linear-gradient(90deg, #263729 0, #41513a 74%, #5b6145 100%);
    min-height: 250px;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 340px;
    align-items: stretch;
    overflow: hidden
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 46px 5.5%
}

.values article {
    text-align: center
}

.value-icon {
    font-size: 42px;
    color: var(--gold);
    line-height: 1
}

.values h3 {
    text-transform: uppercase;
    letter-spacing: .25em;
    color: var(--gold);
    font-size: 13px;
    margin: 14px 0
}

.values p {
    font-size: 13px;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 220px
}

.values img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #41513a
}

@media(max-width:1100px) {
    .site-header {
        padding: 0 4%;
        height: auto;
        grid-template-columns: 1fr;
        gap: 12px;
        padding-top: 18px;
        padding-bottom: 18px
    }

    .brand {
        order: 1
    }

    .nav-left {
        order: 2;
        justify-content: center;
        flex-wrap: wrap;
        gap: 22px
    }

    .nav-left a {
        padding: 8px 0
    }

    .header-icons {
        position: absolute;
        right: 5%;
        top: 35px;
        font-size: 24px
    }

    .brand-name {
        font-size: 48px
    }

    .hero {
        grid-template-columns: 1fr
    }

     .hero-visual{
        order:-1;
    }

    .hero-content {
        padding: 55px 8% 25px
    }

    .hero-visual {
        min-height: auto;
        height: auto;
        padding: 0 8% 35px
    }

    .hero-visual img {
        max-height: none;
        width: 100%;
        height: auto
    }

    .hero-badges {
        margin-top: 34px
    }

    .category-grid {
        grid-template-columns: 1fr 1fr
    }

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

    .values {
        grid-template-columns: 1fr
    }

    .values img {
        display: none
    }
}

@media(max-width:700px) {
    .topbar {
        height: auto;
        flex-direction: column;
        text-align: center;
        padding: 8px 12px;
        font-size: 12px;
        gap: 4px
    }

    .brand-name {
        font-size: 40px
    }

    .brand-subtitle {
        font-size: 10px;
        letter-spacing: .35em
    }

    .header-icons {
        top: 28px;
        gap: 14px
    }

    .nav-left {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 0 8px
    }

    .hero-content {
        padding: 38px 7% 18px
    }

    .eyebrow {
        font-size: 11px;
        letter-spacing: .28em
    }

.hero h1{
    font-size: 15px;
    line-height: 1.05;
    margin-bottom: 14px;
}
    .hero-text {
        font-size: 15px
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 18px 20px;
        font-size: 12px
    }

    .hero-badges {
        gap: 14px;
        font-size: 12px
    }

    .hero-visual {
        height: auto;
        padding: 0 7% 5px
    }

    .hero-visual img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain
    }

    .essentials {
        padding: 30px 14px
    }

    .essentials h2 {
        font-size: 16px;
        letter-spacing: .32em;
        gap: 12px
    }

    .category-grid {
        grid-template-columns: 1fr
    }

    .home-products-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-products-head a {
        width: 100%;
        justify-content: center;
    }

   .home-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.home-product-card {
    padding: 10px 10px 14px;
    border-radius: 18px;
}

.home-product-name {
    font-size: 13px;
    line-height: 1.35;
    margin: 12px 2px 6px;
}

.home-product-card strong {
    font-size: 13px;
}

.home-product-img {
    border-radius: 14px;
}

    .category-card {
        height: auto;
        aspect-ratio: 2.25/1
    }

    .values-grid {
        grid-template-columns: 1fr;
        padding: 38px 24px;
        gap: 34px
    }
}




.hero-text{
    max-width: 560px;
    color: #4f4a43;
}

.hero-quote{
    display:flex;
    align-items:center;
    gap:18px;
    margin-top:32px;
}

.hero-quote span{
    width:58px;
    height:1px;
    background: var(--gold);
    flex-shrink:0;
}

.hero-quote p{
    margin:0;
    font-family:'Cormorant Garamond', serif;
    font-size:28px;
    font-style:italic;
    color: var(--green);
    line-height:1.2;
}

.hero-badges{
    margin-top:52px;
}

@media(max-width:700px){

    .hero-quote{
        gap:12px;
        margin-top:24px;
    }

    .hero-quote p{
        font-size:22px;
    }
}

@media (max-width: 700px) {
    body main .hero .hero-content h1 {
        font-size: 32px !important;
        line-height: 1.08 !important;
        margin-bottom: 14px !important;
    }
}


@media(max-width:700px){

    .hero{
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
    }

    .hero-visual{
        min-height: 0 !important;
        height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        line-height: 0 !important;
    }

    .hero-visual img{
        display: block !important;
        margin: 0 auto !important;
    }

    .hero-content{
        padding-top: 0 !important;
        margin-top: -50px !important;
    }
}

@media(max-width:700px){

    .hero-badges{
        display:grid;
        justify-content:center;
        gap:12px;
    }

    .hero-badges article{
        display:grid;
        grid-template-columns:18px 1fr;
        width:310px;
        align-items:center;
        column-gap:12px;
    }

    .hero-badges i{
        text-align:center;
    }

    .hero-badges span{
        text-align:left;
    }
}