
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=DM+Sans:wght@400;500;600&display=swap');

:root{
    --forest:#17392c;
    --forest-2:#0f2d21;
    --olive:#59664b;
    --gold:#a27a32;
    --gold-soft:#c8a765;
    --cream:#f5f1e7;
    --ivory:#fffdf8;
    --ink:#17221c;
    --muted:#6b716b;
    --border:#ded7c8;
    --serif:"Cormorant Garamond", Georgia, serif;
    --sans:"DM Sans", Arial, sans-serif;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--ivory);
    color:var(--ink);
    font-family:var(--sans);
    overflow-x:hidden;
}

img{
    display:block;
    width:100%;
}

a{
    color:inherit;
    text-decoration:none;
}

button,input,textarea{
    font:inherit;
}

.container{
    width:min(1240px,89%);
    margin:auto;
}


/* =========================
   TOP STRIP
========================= */

.topbar{
    height:32px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    background:var(--forest-2);
    color:#eee5d1;
    font-size:8px;
    font-weight:500;
    letter-spacing:.32em;
    text-transform:uppercase;
}


/* =========================
   HEADER
========================= */

header{
    height:88px;
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255,253,248,.94);
    border-bottom:1px solid rgba(23,57,44,.08);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
}

.header-inner{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    position:relative;
    display:inline-block;
    color:var(--forest);
    font:700 46px/.72 var(--serif);
    letter-spacing:-.06em;
}

.logo::after{
    content:"™";
    position:absolute;
    top:-7px;
    right:-14px;
    font:500 6px var(--sans);
    letter-spacing:0;
}

.logo small{
    display:block;
    margin:8px 0 0 8px;
    color:var(--gold);
    text-align:center;
    font:500 9px/1 var(--sans);
    letter-spacing:.42em;
}

.nav{
    display:flex;
    align-items:center;
    gap:45px;
    margin-left:100px;
}

.nav a{
    position:relative;
    color:#1b211d;
    font-size:12px;
    transition:.3s ease;
}

.nav a::before{
    content:"";
    position:absolute;
    width:0;
    height:0px;
    left:50%;
    bottom:-13px;
    background:var(--gold);
    transform:translateX(-50%);
    transition:.3s ease;
}

.nav a:hover,
.nav a.active{
    color:var(--forest);
}

.nav a:hover::before,
.nav a.active::before{
    width:100%;
}

.header-btn{
    display:inline-flex;
    align-items:center;
    gap:18px;
    padding:13px 21px;
    border-radius:40px;
    background:var(--forest);
    color:white;
    font-size:10px;
    transition:.3s ease;
}

.header-btn:hover{
    background:var(--forest-2);
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(23,57,44,.15);
}

.menu{
    display:none;
    font-size:22px;
    color:var(--forest);
}





/* =========================
   HERO
========================= */

.hero{
    min-height:690px;
    position:relative;
    display:flex;
    align-items:center;
    background:
        linear-gradient(
            90deg,
            rgba(255,253,248,.99) 0%,
            rgba(255,253,248,.96) 25%,
            rgba(255,253,248,.70) 46%,
            rgba(255,253,248,.10) 72%,
            rgba(255,253,248,0) 100%
        ),
        url("hero-farm.jpg") center right/cover no-repeat;
}

.hero::after{
    content:"";
    position:absolute;
    right:4%;
    bottom:7%;
    width:90px;
    height:1px;
    background:rgba(255,255,255,.75);
}

.hero-content{
    position:relative;
    z-index:2;
    width:600px;
    padding:50px 0;
}

.eyebrow{
    margin-bottom:18px;
    color:var(--gold);
    font-size:9px;
    font-weight:600;
    letter-spacing:.34em;
    text-transform:uppercase;
}

.hero h1{
    color:var(--forest);
    font:600 clamp(70px,7vw,102px)/.77 var(--serif);
    letter-spacing:-.065em;
}

.hero h1 span{
    display:block;
    margin-top:18px;
    color:#202d26;
    font:500 clamp(31px,3vw,43px)/.95 var(--serif);
    letter-spacing:-.025em;
}

.hero p{
    max-width:505px;
    margin:29px 0 31px;
    color:#4d564f;
    font-size:14px;
    line-height:1.8;
}

.hero-buttons{
    display:flex;
    align-items:center;
    gap:8px;
}


/* =========================
   BUTTONS
========================= */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    min-height:45px;
    padding:0 22px;
    border-radius:40px;
    font-size:10px;
    font-weight:500;
    transition:.3s ease;
}

.btn-primary{
    background:var(--forest);
    color:#fff;
    box-shadow:0 8px 22px rgba(23,57,44,.12);
}

.btn-primary:hover{
    background:var(--forest-2);
    transform:translateY(-2px);
    box-shadow:0 13px 30px rgba(23,57,44,.18);
}

.btn-outline{
    border:1px solid #bcae91;
    color:var(--forest);
    background:rgba(255,253,248,.55);
}

.btn-outline:hover{
    background:white;
    border-color:var(--gold);
}


/* =========================
   TRUST BAR
========================= */

.trust{
    position:relative;
    z-index:5;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    background:var(--cream);
    border-top:1px solid rgba(162,122,50,.15);
    border-bottom:1px solid var(--border);
}

.trust-item{
    min-height:104px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:15px;
    color:#6a6d66;
    text-align:center;
    font-size:10px;
    line-height:1.5;
    border-right:1px solid var(--border);
}

.trust-item:last-child{
    border-right:0;
}

.trust-icon{
    height:30px;
    margin-bottom:4px;
    color:var(--gold);
    font-size:23px;
    line-height:1;
}

.trust b{
    margin-bottom:2px;
    color:var(--forest);
    font-size:11px;
    font-weight:600;
}


/* =========================
   GENERAL SECTION
========================= */

section{
    padding:120px 0;
}


/* =========================
   STORY
========================= */

.story{
    background:var(--ivory);
}

.split{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:90px;
}

.photo{
    position:relative;
    padding-right:14px;
    padding-bottom:14px;
}

.photo::after{
    content:"";
    position:absolute;
    z-index:0;
    inset:15px 0 0 15px;
    border:1px solid var(--gold-soft);
}

.photo img{
    position:relative;
    z-index:1;
    height:560px;
    object-fit:cover;
}

.photo-caption{
    position:absolute;
    z-index:3;
    top:28px;
    right:42px;
    color:white;
    text-align:right;
    font:500 24px/1 var(--serif);
    text-shadow:0 2px 15px rgba(0,0,0,.25);
}

.photo-caption small{
    display:block;
    margin-top:12px;
    color:#f2dfb0;
    font:500 7px/1 var(--sans);
    letter-spacing:.24em;
    text-transform:uppercase;
}

h2{
    color:var(--forest);
    font:600 clamp(48px,5vw,70px)/.88 var(--serif);
    letter-spacing:-.055em;
}

.copy{
    max-width:500px;
    margin:23px 0;
    color:var(--muted);
    font-size:13px;
    line-height:1.9;
}

.outline{
    display:inline-flex;
    align-items:center;
    gap:18px;
    margin-top:4px;
    padding:12px 20px;
    border:1px solid var(--gold);
    border-radius:40px;
    color:var(--forest);
    font-size:10px;
    transition:.3s ease;
}

.outline:hover{
    background:var(--forest);
    border-color:var(--forest);
    color:white;
}

.signature{
    margin-top:25px;
    color:var(--forest);
    font:italic 17px var(--serif);
}


/* =========================
   BENEFITS
========================= */

.benefits{
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at 8% 50%,rgba(162,122,50,.06),transparent 25%),
        var(--cream);
    text-align:center;
}

.benefits::before,
.benefits::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border:1px solid rgba(162,122,50,.12);
    border-radius:50%;
}

.benefits::before{
    left:-90px;
    top:80px;
}

.benefits::after{
    right:-90px;
    bottom:70px;
}

.center{
    max-width:600px;
    margin:20px auto 0;
    color:var(--muted);
    font-size:13px;
    line-height:1.8;
}

.benefit-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    margin-top:58px;
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
}

.benefit{
    min-height:190px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:25px;
    border-right:1px solid var(--border);
}

.benefit:last-child{
    border-right:0;
}

.benefit .icon{
    margin-bottom:12px;
    color:var(--gold);
    font-size:31px;
}

.benefit h3{
    color:var(--forest);
    font:600 22px/1 var(--serif);
}

.benefit p{
    max-width:180px;
    margin-top:9px;
    color:var(--muted);
    font-size:10px;
    line-height:1.65;
}


/* =========================
   PRODUCTS
========================= */

.products{
    background:var(--ivory);
}

.product-heading{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:30px;
}

.product-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:26px;
    margin-top:50px;
}

.product{
    position:relative;
    display:grid;
    grid-template-columns:1fr 1fr;
    min-height:360px;
    overflow:hidden;
    background:var(--cream);
    border:1px solid rgba(162,122,50,.13);
}

.product::before{
    content:"";
    position:absolute;
    inset:10px;
    border:1px solid rgba(162,122,50,.12);
    pointer-events:none;
    z-index:3;
}

.product img{
    height:360px;
    object-fit:cover;
    transition:transform .8s cubic-bezier(.2,.7,.2,1);
}

.product:hover img{
    transform:scale(1.06);
}

.product-body{
    position:relative;
    z-index:4;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:40px 31px;
    background:linear-gradient(135deg,#f7f2e7,#f1ebdc);
}

.tag{
    margin-bottom:12px;
    color:var(--gold);
    font-size:8px;
    font-weight:600;
    letter-spacing:.24em;
    text-transform:uppercase;
}

.product h3{
    color:var(--forest);
    font:600 30px/1 var(--serif);
}

.product p{
    margin:13px 0 22px;
    color:var(--muted);
    font-size:11px;
    line-height:1.75;
}

.product a{
    display:inline-flex;
    gap:10px;
    align-items:center;
    width:max-content;
    color:var(--forest);
    font-size:9px;
    font-weight:600;
    letter-spacing:.16em;
    text-transform:uppercase;
}


/* =========================
   FARM BANNER
========================= */

.banner{
    position:relative;
    min-height:500px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:
        linear-gradient(
            90deg,
            rgba(10,39,27,.88) 0%,
            rgba(16,54,37,.68) 45%,
            rgba(16,54,37,.18) 100%
        ),
        url("landscape.jpg") center/cover no-repeat;
}

.banner::after{
    content:"";
    position:absolute;
    right:7%;
    top:50%;
    width:1px;
    height:90px;
    background:rgba(255,255,255,.45);
}

.banner .container{
    position:relative;
    z-index:2;
}

.banner .eyebrow{
    color:#d6b66f;
}

.banner h2{
    max-width:600px;
    color:#fff;
    font-size:clamp(52px,6vw,78px);
}

.banner p{
    max-width:520px;
    margin:22px 0 28px;
    color:rgba(255,255,255,.73);
    font-size:13px;
    line-height:1.85;
}

.banner-btn{
    border:1px solid rgba(255,255,255,.55);
    color:white;
    background:transparent;
}

.banner-btn:hover{
    background:white;
    border-color:white;
    color:var(--forest);
}


/* =========================
   CONTACT
========================= */

.contact{
    background:var(--cream);
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:start;
    gap:90px;
}

.contact-info{
    margin-top:30px;
    border-top:1px solid var(--border);
}

.row{
    padding:17px 0;
    border-bottom:1px solid var(--border);
    color:#414941;
    font-size:12px;
}

.row b{
    display:block;
    margin-bottom:4px;
    color:var(--gold);
    font-size:8px;
    letter-spacing:.2em;
    text-transform:uppercase;
}


/* =========================
   FORM
========================= */

form{
    display:grid;
    gap:13px;
    padding:42px;
    background:rgba(255,253,248,.8);
    border:1px solid rgba(162,122,50,.16);
    box-shadow:0 25px 60px rgba(33,44,36,.06);
}

input,
textarea{
    width:100%;
    padding:15px 16px;
    outline:none;
    border:1px solid #d8d0c0;
    background:#fff;
    color:var(--ink);
    font-size:12px;
    transition:.25s ease;
}

input::placeholder,
textarea::placeholder{
    color:#999b95;
}

input:focus,
textarea:focus{
    border-color:var(--gold);
    box-shadow:0 0 0 3px rgba(162,122,50,.06);
}

textarea{
    min-height:145px;
    resize:vertical;
}

form button{
    width:max-content;
    border:0;
    cursor:pointer;
}


/* =========================
   FOOTER
========================= */

footer{
    position:relative;
    overflow:hidden;
    padding:70px 0 25px;
    background:var(--forest-2);
    color:white;
}

footer::before{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    right:-200px;
    top:-200px;
    border:1px solid rgba(200,167,101,.10);
    border-radius:50%;
}

.footer-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr 1fr;
    gap:50px;
}

.footer-logo{
    color:white;
}

.footer-logo small{
    color:var(--gold-soft);
}

.footer-copy{
    max-width:390px;
    margin-top:18px;
    color:rgba(255,255,255,.52);
    font-size:11px;
    line-height:1.8;
}

.footer-grid h4{
    margin-bottom:17px;
    color:var(--gold-soft);
    font-size:8px;
    font-weight:500;
    letter-spacing:.24em;
    text-transform:uppercase;
}

.footer-grid ul{
    display:grid;
    gap:8px;
    list-style:none;
    color:rgba(255,255,255,.56);
    font-size:11px;
}

.footer-grid li a{
    transition:.25s ease;
}

.footer-grid li a:hover{
    color:white;
}

.copyright{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:space-between;
    margin-top:55px;
    padding-top:18px;
    border-top:1px solid rgba(255,255,255,.10);
    color:rgba(255,255,255,.28);
    font-size:9px;
    letter-spacing:.02em;
}


/* =========================
   SELECTION
========================= */

::selection{
    background:var(--gold);
    color:white;
}


/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#eee9de;
}

::-webkit-scrollbar-thumb{
    background:#9b8a67;
}

::-webkit-scrollbar-thumb:hover{
    background:var(--forest);
}


/* =========================
   TABLET
========================= */

@media(max-width:950px){

    .nav{
        gap:25px;
        margin-left:30px;
    }

    .header-btn{
        padding:12px 16px;
    }

    .hero{
        min-height:650px;
    }

    .hero-content{
        width:55%;
    }

    .split{
        gap:55px;
    }

    .product{
        grid-template-columns:1fr;
    }

    .product img{
        height:300px;
    }

    .product-body{
        min-height:260px;
    }

    .footer-grid{
        gap:35px;
    }
}


/* =========================
   MOBILE
========================= */

@media(max-width:700px){

    .topbar{
        height:29px;
        padding:0 10px;
        gap:7px;
        font-size:6px;
        letter-spacing:.16em;
        text-align:center;
    }

    header{
        height:72px;
    }

    .logo{
        font-size:36px;
    }

    .logo small{
        margin-top:7px;
        font-size:7px;
    }

    .nav,
    .header-btn{
        display:none;
    }

    .menu{
        display:block;
    }

    section{
        padding:75px 0;
    }

    .hero{
        min-height:680px;
        align-items:flex-start;
        background:
            linear-gradient(
                180deg,
                rgba(255,253,248,.97) 0%,
                rgba(255,253,248,.88) 42%,
                rgba(255,253,248,.20) 75%,
                rgba(255,253,248,.05) 100%
            ),
            url("hero-farm.jpg") center/cover no-repeat;
    }

    .hero-content{
        width:100%;
        padding-top:75px;
    }

    .hero h1{
        font-size:64px;
    }

    .hero h1 span{
        margin-top:15px;
        font-size:29px;
    }

    .hero p{
        max-width:460px;
        margin:23px 0;
        font-size:12px;
    }

    .hero-buttons{
        flex-wrap:wrap;
    }

    .trust{
        grid-template-columns:1fr 1fr;
    }

    .trust-item{
        min-height:95px;
        padding:12px 8px;
    }

    .trust-item:nth-child(2){
        border-right:0;
    }

    .trust-item:nth-child(-n+2){
        border-bottom:1px solid var(--border);
    }

    .split,
    .contact-grid{
        grid-template-columns:1fr;
        gap:55px;
    }

    .photo{
        padding-right:9px;
        padding-bottom:9px;
    }

    .photo img{
        height:400px;
    }

    .photo-caption{
        right:25px;
        top:22px;
        font-size:19px;
    }

    h2{
        font-size:47px;
    }

    .copy{
        font-size:12px;
    }

    .benefit-grid{
        grid-template-columns:1fr;
    }

    .benefit{
        min-height:160px;
        border-right:0;
        border-bottom:1px solid var(--border);
    }

    .benefit:last-child{
        border-bottom:0;
    }

    .product-heading{
        align-items:flex-start;
        flex-direction:column;
    }

    .product-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .product{
        grid-template-columns:1fr;
    }

    .product img{
        height:270px;
    }

    .product-body{
        min-height:250px;
        padding:30px;
    }

    .banner{
        min-height:490px;
        background:
            linear-gradient(
                90deg,
                rgba(10,39,27,.90),
                rgba(10,39,27,.48)
            ),
            url("landscape.jpg") center/cover no-repeat;
    }

    .banner h2{
        font-size:50px;
    }

    .banner p{
        font-size:12px;
    }

    .banner::after{
        display:none;
    }

    form{
        padding:25px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .copyright{
        display:block;
        line-height:1.8;
    }

    .copyright span{
        display:block;
    }

    .copyright span+span{
        margin-top:4px;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media(max-width:420px){

    .hero h1{
        font-size:55px;
    }

    .hero h1 span{
        font-size:25px;
    }

    .hero{
        min-height:650px;
    }

    h2{
        font-size:42px;
    }

    .photo img{
        height:350px;
    }

    .btn{
        min-height:42px;
        padding:0 17px;
    }
}


/* =========================================================
   BHOLA GHEE — ENHANCED ABOUT PAGE
   Add this at the END of style_luxury.css
========================================================= */

.about-page {
    background: #fffdf8;
    color: #17221c;
}


/* =========================
   ABOUT HERO
========================= */

.about-hero-new {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;

    background:
        linear-gradient(
            to bottom,
            rgba(8, 35, 24, .05) 0%,
            rgba(8, 35, 24, .12) 38%,
            rgba(7, 29, 20, .90) 100%
        ),
        url("landscape.jpg") center / cover no-repeat;
}

.about-hero-new::before {
    content: "";
    position: absolute;
    inset: 25px;
    border: 1px solid rgba(255,255,255,.25);
    pointer-events: none;
}

.about-hero-content-new {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 90px 0 82px;
}

.about-hero-content-new .eyebrow {
    color: #d9b96f;
}

.about-hero-content-new h1 {
    max-width: 1050px;

    color: #fff;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(70px, 9vw, 125px);
    font-weight: 600;

    line-height: .78;
    letter-spacing: -.065em;
}

.about-hero-content-new h1 span {
    display: block;
    margin-top: 24px;

    color: #e0cb98;

    font-size: .46em;
    line-height: 1;
    letter-spacing: -.025em;
}

.about-hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 50px;
    margin-top: 45px;
}

.about-hero-bottom p {
    max-width: 520px;

    color: rgba(255,255,255,.72);

    font-size: 12px;
    line-height: 1.95;
}

.hero-scroll {
    display: flex;
    align-items: center;
    gap: 12px;

    color: rgba(255,255,255,.68);

    font-size: 8px;
    letter-spacing: .24em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-scroll span {
    width: 48px;
    height: 1px;
    background: #c5a25c;
}


/* =========================
   INTRO
========================= */

.about-statement {
    padding: 155px 0;
    background: #fffdf8;
}

.statement-grid {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    gap: 100px;
    align-items: start;
}

.statement-label {
    color: #a27a32;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.statement-number {
    margin-top: 40px;

    color: #ddd5c5;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 105px;
    line-height: .75;
}

.statement-content h2 {
    max-width: 880px;

    color: #17392c;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(50px, 6vw, 82px);
    font-weight: 600;

    line-height: .90;
    letter-spacing: -.055em;
}

.statement-content h2 em {
    color: #a27a32;
    font-style: normal;
}

.statement-content p {
    max-width: 700px;
    margin-top: 38px;

    color: #687068;

    font-size: 13px;
    line-height: 2;
}

.statement-signature {
    margin-top: 32px;

    color: #17392c;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 22px;
    font-style: italic;
}


/* =========================
   BIG IMAGE
========================= */

.about-wide-image {
    padding-bottom: 155px;
    background: #fffdf8;
}

.wide-image-wrap {
    position: relative;

    width: min(1380px, 94%);
    height: 650px;

    margin: auto;
    overflow: hidden;
}

.wide-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 1.3s cubic-bezier(.2,.65,.25,1);
}

.wide-image-wrap:hover img {
    transform: scale(1.035);
}

.wide-image-wrap::after {
    content: "";
    position: absolute;
    inset: 20px;

    border: 1px solid rgba(255,255,255,.38);

    pointer-events: none;
}

.wide-image-caption {
    position: absolute;

    left: 55px;
    bottom: 52px;

    z-index: 2;

    max-width: 500px;
}

.wide-image-caption .eyebrow {
    color: #dfbd73;
}

.wide-image-caption h3 {
    color: white;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 52px;
    font-weight: 600;

    line-height: .90;
    letter-spacing: -.045em;
}

.wide-image-caption p {
    max-width: 450px;
    margin-top: 18px;

    color: rgba(255,255,255,.70);

    font-size: 11px;
    line-height: 1.8;
}


/* =========================
   HERITAGE
========================= */

.heritage-section {
    padding: 150px 0;
    background: #f3eee3;
}

.heritage-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;
    gap: 115px;

    align-items: center;
}

.heritage-image {
    position: relative;
    padding: 0 18px 18px 0;
}

.heritage-image::after {
    content: "";

    position: absolute;

    top: 18px;
    right: 0;
    bottom: 0;
    left: 18px;

    border: 1px solid #c7a761;
}

.heritage-image img {
    position: relative;
    z-index: 2;

    height: 620px;
    object-fit: cover;
}

.heritage-copy h2 {
    color: #17392c;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(55px, 5.5vw, 78px);
    font-weight: 600;

    line-height: .88;
    letter-spacing: -.055em;
}

.heritage-copy p {
    max-width: 510px;
    margin-top: 25px;

    color: #697069;

    font-size: 13px;
    line-height: 1.95;
}

.heritage-highlight {
    display: flex;
    align-items: center;

    gap: 20px;

    margin-top: 38px;
    padding-top: 25px;

    border-top: 1px solid #d7cfbf;
}

.heritage-highlight strong {
    color: #a27a32;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 44px;
    font-weight: 500;
}

.heritage-highlight span {
    max-width: 280px;

    color: #626961;

    font-size: 10px;
    line-height: 1.7;
}


/* =========================
   VALUES
========================= */

.about-values {
    padding: 150px 0;
    background: #fffdf8;
}

.values-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 60px;

    margin-bottom: 70px;
}

.values-intro h2 {
    color: #17392c;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(50px, 5vw, 70px);
    font-weight: 600;

    line-height: .90;
    letter-spacing: -.05em;
}

.values-intro p {
    max-width: 400px;

    color: #70766f;

    font-size: 12px;
    line-height: 1.9;
}

.luxury-values {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    border-top: 1px solid #ddd5c5;
    border-bottom: 1px solid #ddd5c5;
}

.luxury-value {
    min-height: 350px;
    padding: 35px;

    border-right: 1px solid #ddd5c5;

    transition:
        background .35s ease,
        transform .35s ease;
}

.luxury-value:last-child {
    border-right: 0;
}

.luxury-value:hover {
    background: #f7f2e8;
    transform: translateY(-4px);
}

.luxury-value-number {
    color: #aaa28f;

    font-size: 8px;
    letter-spacing: .20em;
}

.luxury-value-icon {
    margin-top: 65px;

    color: #a27a32;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 38px;
}

.luxury-value h3 {
    margin-top: 12px;

    color: #17392c;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 32px;
    font-weight: 600;

    line-height: 1;
}

.luxury-value p {
    max-width: 280px;

    margin-top: 15px;

    color: #747a73;

    font-size: 11px;
    line-height: 1.8;
}


/* =========================
   CRAFT / PROCESS
========================= */

.craft-section {
    padding: 150px 0;
    background: #17392c;
}

.craft-heading {
    display: grid;

    grid-template-columns: 1fr 1fr;
    gap: 80px;

    align-items: end;

    margin-bottom: 75px;
}

.craft-heading .eyebrow {
    color: #d1ad65;
}

.craft-heading h2 {
    color: white;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(55px, 6vw, 82px);
    font-weight: 600;

    line-height: .86;
    letter-spacing: -.055em;
}

.craft-heading p {
    max-width: 470px;

    color: rgba(255,255,255,.58);

    font-size: 12px;
    line-height: 1.9;
}

.craft-steps {
    display: grid;

    grid-template-columns: repeat(4,1fr);

    border-top: 1px solid rgba(255,255,255,.15);
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.craft-step {
    min-height: 315px;

    padding: 32px 28px;

    border-right: 1px solid rgba(255,255,255,.15);

    transition: background .3s ease;
}

.craft-step:last-child {
    border-right: 0;
}

.craft-step:hover {
    background: rgba(255,255,255,.035);
}

.craft-step-number {
    color: #c6a35e;

    font-size: 9px;
    letter-spacing: .2em;
}

.craft-step h3 {
    margin-top: 90px;

    color: white;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 31px;
    font-weight: 600;

    line-height: 1;
}

.craft-step p {
    max-width: 250px;

    margin-top: 15px;

    color: rgba(255,255,255,.50);

    font-size: 10px;
    line-height: 1.8;
}


/* =========================
   PHILOSOPHY
========================= */

.philosophy {
    padding: 165px 20px;

    background:
        linear-gradient(
            rgba(255,253,248,.90),
            rgba(255,253,248,.90)
        ),
        url("story-farm.jpg") center / cover no-repeat;

    text-align: center;
}

.philosophy-symbol {
    color: #a27a32;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 78px;

    line-height: .4;
}

.philosophy blockquote {
    max-width: 970px;

    margin: 35px auto;

    color: #17392c;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(44px, 5vw, 70px);
    font-weight: 500;

    line-height: .96;
    letter-spacing: -.045em;
}

.philosophy p {
    color: #777a72;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: .28em;
    text-transform: uppercase;
}


/* =========================
   FINAL CTA
========================= */

.about-final {
    padding: 125px 0;
    background: #f3eee3;
}

.final-box {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;

    padding: 75px;

    background: #fffdf8;

    border: 1px solid #d9d1c0;
}

.final-box::before {
    content: "";

    position: absolute;
    inset: 12px;

    border: 1px solid #e8e0d1;

    pointer-events: none;
}

.final-box > div {
    position: relative;
    z-index: 1;
}

.final-box h2 {
    color: #17392c;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(50px, 5vw, 72px);
    font-weight: 600;

    line-height: .88;
    letter-spacing: -.055em;
}

.final-box p {
    max-width: 440px;

    margin-top: 18px;

    color: #727870;

    font-size: 11px;
    line-height: 1.8;
}

.final-box .btn {
    position: relative;
    z-index: 2;

    flex-shrink: 0;
}


/* =========================================================
   ABOUT PAGE ANIMATION
========================================================= */

@keyframes bholaAboutReveal {

    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.about-hero-content-new .eyebrow {
    animation: bholaAboutReveal .8s ease both;
}

.about-hero-content-new h1 {
    animation: bholaAboutReveal 1s .12s ease both;
}

.about-hero-bottom {
    animation: bholaAboutReveal 1s .25s ease both;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .about-hero-new {
        min-height: 680px;
    }

    .statement-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .statement-number {
        display: none;
    }

    .heritage-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .heritage-image {
        max-width: 650px;
    }

    .luxury-values {
        grid-template-columns: 1fr 1fr;
    }

    .luxury-value:nth-child(2) {
        border-right: 0;
    }

    .luxury-value:last-child {
        grid-column: 1 / -1;

        border-top: 1px solid #ddd5c5;
        border-right: 0;
    }

    .craft-heading {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .craft-steps {
        grid-template-columns: 1fr 1fr;
    }

    .craft-step:nth-child(2) {
        border-right: 0;
    }

    .craft-step:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.15);
    }

    .final-box {
        padding: 55px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .about-hero-new {
        min-height: 650px;
    }

    .about-hero-new::before {
        inset: 14px;
    }

    .about-hero-content-new {
        padding: 70px 0 60px;
    }

    .about-hero-content-new h1 {
        font-size: 65px;
        line-height: .80;
    }

    .about-hero-content-new h1 span {
        margin-top: 17px;
        font-size: 28px;
    }

    .about-hero-bottom {
        display: block;
        margin-top: 28px;
    }

    .hero-scroll {
        margin-top: 25px;
    }


    /* INTRO */

    .about-statement {
        padding: 90px 0;
    }

    .statement-content h2 {
        font-size: 51px;
    }

    .statement-content p {
        font-size: 12px;
    }


    /* IMAGE */

    .about-wide-image {
        padding-bottom: 90px;
    }

    .wide-image-wrap {
        width: 92%;
        height: 500px;
    }

    .wide-image-wrap::after {
        inset: 14px;
    }

    .wide-image-caption {
        left: 28px;
        right: 28px;
        bottom: 30px;
    }

    .wide-image-caption h3 {
        font-size: 40px;
    }


    /* HERITAGE */

    .heritage-section {
        padding: 90px 0;
    }

    .heritage-image img {
        height: 450px;
    }

    .heritage-copy h2 {
        font-size: 55px;
    }


    /* VALUES */

    .about-values {
        padding: 90px 0;
    }

    .values-intro {
        display: block;
        margin-bottom: 50px;
    }

    .values-intro h2 {
        font-size: 52px;
    }

    .values-intro p {
        margin-top: 20px;
    }

    .luxury-values {
        grid-template-columns: 1fr;
    }

    .luxury-value {
        min-height: 290px;

        border-right: 0;
        border-bottom: 1px solid #ddd5c5;
    }

    .luxury-value:last-child {
        grid-column: auto;
        border-bottom: 0;
    }

    .luxury-value-icon {
        margin-top: 48px;
    }


    /* CRAFT */

    .craft-section {
        padding: 90px 0;
    }

    .craft-heading h2 {
        font-size: 55px;
    }

    .craft-steps {
        grid-template-columns: 1fr;
    }

    .craft-step {
        min-height: 260px;

        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.15);
    }

    .craft-step:last-child {
        border-bottom: 0;
    }

    .craft-step h3 {
        margin-top: 55px;
    }


    /* PHILOSOPHY */

    .philosophy {
        padding: 100px 20px;
    }

    .philosophy-symbol {
        font-size: 65px;
    }

    .philosophy blockquote {
        font-size: 43px;
    }


    /* CTA */

    .about-final {
        padding: 80px 0;
    }

    .final-box {
        display: block;
        padding: 50px 28px;
    }

    .final-box h2 {
        font-size: 50px;
    }

    .final-box .btn {
        display: inline-flex;
        margin-top: 30px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .about-hero-content-new h1 {
        font-size: 57px;
    }

    .about-hero-content-new h1 span {
        font-size: 25px;
    }

    .statement-content h2 {
        font-size: 45px;
    }

    .heritage-copy h2,
    .values-intro h2,
    .craft-heading h2 {
        font-size: 47px;
    }

    .philosophy blockquote {
        font-size: 38px;
    }

}

/* =========================================================
   BHOLA GHEE — PREMIUM PRODUCT PAGE
   ========================================================= */

.product-page {
    background: var(--cream);
    color: var(--ink);
}

/* ---------------- PRODUCT HERO ---------------- */

.product-hero {
    min-height: 78vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(10, 28, 20, .82), rgba(10, 28, 20, .25)),
        url("landscape.jpg") center/cover no-repeat;
}

.product-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8, 25, 18, .82),
        transparent 55%
    );
}

.product-hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, 92%);
    margin: auto;
    padding: 110px 0 90px;
    color: #fff;
}

.product-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.product-eyebrow::before {
    content: "";
    width: 42px;
    height: 1px;
    background: var(--gold-soft);
}

.product-hero h1 {
    max-width: 800px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(55px, 8vw, 105px);
    font-weight: 500;
    line-height: .88;
    letter-spacing: -3px;
}

.product-hero p {
    max-width: 570px;
    margin: 30px 0 0;
    color: rgba(255,255,255,.82);
    font-size: 17px;
    line-height: 1.8;
}

/* ---------------- INTRO ---------------- */

.product-intro {
    width: min(1000px, 90%);
    margin: auto;
    padding: 115px 0 85px;
    text-align: center;
}

.product-intro span {
    display: block;
    color: var(--gold);
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.product-intro h2 {
    max-width: 760px;
    margin: auto;
    font-family: var(--serif);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 500;
    line-height: .98;
    color: var(--forest);
}

.product-intro p {
    max-width: 680px;
    margin: 28px auto 0;
    color: var(--muted);
    line-height: 1.9;
    font-size: 16px;
}

/* ---------------- PRODUCT GRID ---------------- */

.products-section {
    padding: 40px 0 120px;
}

.products-heading {
    width: min(1180px, 92%);
    margin: 0 auto 45px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
}

.products-heading span {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.products-heading h2 {
    margin: 8px 0 0;
    font-family: var(--serif);
    font-size: 52px;
    font-weight: 500;
    color: var(--forest);
}

.products-heading p {
    max-width: 400px;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.premium-product-grid {
    width: min(1180px, 92%);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ---------------- PRODUCT CARD ---------------- */

.premium-product-card {
    position: relative;
    overflow: hidden;
    background: var(--ivory);
    border: 1px solid var(--border);
    transition: .45s ease;
}

.premium-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(23,57,44,.12);
}

.product-card-image {
    height: 390px;
    overflow: hidden;
    background: #e9e1d2;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.premium-product-card:hover .product-card-image img {
    transform: scale(1.07);
}

.product-card-content {
    padding: 30px 28px 34px;
}

.product-card-number {
    display: block;
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.product-card-content h3 {
    margin: 0;
    font-family: var(--serif);
    font-size: 32px;
    line-height: 1;
    font-weight: 500;
    color: var(--forest);
}

.product-card-content p {
    margin: 18px 0 25px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--forest);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
}

.product-card-link::after {
    content: "→";
    font-size: 17px;
    transition: transform .3s ease;
}

.product-card-link:hover::after {
    transform: translateX(6px);
}

/* ---------------- FEATURED PRODUCT ---------------- */

.featured-product {
    width: min(1180px, 92%);
    margin: 0 auto 130px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    min-height: 650px;
    background: var(--forest);
    color: #fff;
    overflow: hidden;
}

.featured-image {
    min-height: 650px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.featured-product:hover .featured-image img {
    transform: scale(1.04);
}

.product-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 75px;
}

.product-details .label {
    color: var(--gold-soft);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.product-details h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(44px, 5vw, 70px);
    line-height: .95;
    font-weight: 500;
}

.product-details p {
    margin: 28px 0;
    color: rgba(255,255,255,.72);
    line-height: 1.85;
}

.product-details ul {
    list-style: none;
    padding: 0;
    margin: 5px 0 35px;
}

.product-details li {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.85);
    font-size: 14px;
}

.product-details li::before {
    content: "✓";
    color: var(--gold-soft);
    margin-right: 12px;
}

.product-details .btn {
    align-self: flex-start;
}

/* ---------------- WHY BHOLA ---------------- */

.why-bhola {
    padding: 110px 0;
    background: var(--ivory);
}

.why-bhola-inner {
    width: min(1180px, 92%);
    margin: auto;
}

.why-bhola-heading {
    max-width: 720px;
    margin-bottom: 60px;
}

.why-bhola-heading span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.why-bhola-heading h2 {
    margin: 15px 0 0;
    font-family: var(--serif);
    font-size: clamp(44px, 5vw, 65px);
    font-weight: 500;
    line-height: 1;
    color: var(--forest);
}

.why-bhola-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
}

.why-item {
    padding: 38px 30px 30px 0;
    border-right: 1px solid var(--border);
    margin-right: 30px;
}

.why-item:last-child {
    border-right: 0;
    margin-right: 0;
}

.why-item span {
    display: block;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 35px;
    margin-bottom: 20px;
}

.why-item h3 {
    margin: 0 0 12px;
    font-family: var(--serif);
    font-size: 27px;
    font-weight: 500;
    color: var(--forest);
}

.why-item p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

/* ---------------- SERVING IDEAS ---------------- */

.serving-section {
    padding: 120px 0;
}

.serving-heading {
    width: min(1180px, 92%);
    margin: auto auto 55px;
    text-align: center;
}

.serving-heading h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(45px, 5vw, 68px);
    font-weight: 500;
    color: var(--forest);
}

.serving-heading p {
    max-width: 600px;
    margin: 18px auto 0;
    color: var(--muted);
    line-height: 1.8;
}

.serving-grid {
    width: min(1180px, 92%);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.serving-card {
    position: relative;
    min-height: 430px;
    overflow: hidden;
}

.serving-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.serving-card:hover img {
    transform: scale(1.06);
}

.serving-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8,27,19,.78),
        transparent 65%
    );
}

.serving-card-content {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 28px;
    color: #fff;
}

.serving-card-content h3 {
    margin: 0;
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 500;
}

.serving-card-content p {
    margin: 6px 0 0;
    color: rgba(255,255,255,.75);
    font-size: 13px;
}

/* ---------------- FINAL CTA ---------------- */

.product-final {
    padding: 100px 0;
    background: var(--forest);
}

.product-final-inner {
    width: min(900px, 90%);
    margin: auto;
    text-align: center;
    color: #fff;
}

.product-final-inner span {
    color: var(--gold-soft);
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-final-inner h2 {
    margin: 20px auto;
    font-family: var(--serif);
    font-size: clamp(48px, 6vw, 80px);
    line-height: .95;
    font-weight: 500;
}

.product-final-inner p {
    max-width: 600px;
    margin: 0 auto 32px;
    color: rgba(255,255,255,.7);
    line-height: 1.8;
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 950px) {

    .premium-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-product {
        grid-template-columns: 1fr;
    }

    .featured-image {
        min-height: 480px;
    }

    .product-details {
        padding: 55px 45px;
    }

    .why-bhola-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-item:nth-child(2) {
        border-right: 0;
    }

    .serving-grid {
        grid-template-columns: 1fr;
    }

    .serving-card {
        min-height: 500px;
    }
}

@media (max-width: 650px) {

    .product-hero {
        min-height: 70vh;
    }

    .product-hero-content {
        padding: 80px 0 60px;
    }

    .product-hero h1 {
        letter-spacing: -1.5px;
    }

    .product-hero p {
        font-size: 14px;
    }

    .product-intro {
        padding: 80px 0 60px;
    }

    .products-heading {
        display: block;
    }

    .products-heading h2 {
        font-size: 43px;
    }

    .products-heading p {
        margin-top: 20px;
    }

    .premium-product-grid {
        grid-template-columns: 1fr;
    }

    .product-card-image {
        height: 360px;
    }

    .featured-product {
        width: 100%;
        margin-bottom: 80px;
    }

    .featured-image {
        min-height: 400px;
    }

    .product-details {
        padding: 48px 28px;
    }

    .why-bhola {
        padding: 80px 0;
    }

    .why-bhola-grid {
        grid-template-columns: 1fr;
    }

    .why-item,
    .why-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--border);
        margin-right: 0;
    }

    .why-item:last-child {
        border-bottom: 0;
    }

    .serving-section {
        padding: 80px 0;
    }

    .serving-card {
        min-height: 420px;
    }

    .product-final {
        padding: 80px 0;
    }
}

@media (max-width: 390px) {

    .product-hero h1 {
        font-size: 52px;
    }

    .product-card-content {
        padding: 25px 22px 30px;
    }

    .product-details {
        padding: 40px 22px;
    }

    .why-item {
        padding-right: 0;
    }

    .serving-card {
        min-height: 380px;
    }
}

/* =========================
   PREMIUM PROMO BANNER
========================== */

.promo-banner {
    width: 100%;
    min-height: 520px;
    background: #17392c;

    display: grid;
    grid-template-columns: 1fr 1fr;

    overflow: hidden;
    position: relative;
}

.promo-banner-image {
    height: 100%;
    min-height: 520px;
    overflow: hidden;
}

.promo-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    transition: transform .7s ease;
}

.promo-banner:hover .promo-banner-image img {
    transform: scale(1.04);
}

.promo-banner-content {
    padding: 80px 9%;
    display: flex;
    flex-direction: column;
    justify-content: center;

    position: relative;
    z-index: 2;
}

.promo-banner-content::before {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    border: 1px solid rgba(216, 183, 106, .18);
    border-radius: 50%;

    right: -120px;
    bottom: -150px;

    pointer-events: none;
}

.promo-banner-content .eyebrow {
    color: #d8b76a;
}

.promo-banner-content h2 {
    color: #fff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.02;

    font-weight: 400;

    margin: 18px 0 25px;

    letter-spacing: -2px;
}

.promo-banner-content h2 span {
    color: #d8b76a;
    font-style: italic;
}

.promo-banner-content p {
    max-width: 500px;

    color: rgba(255,255,255,.72);

    font-size: 15px;
    line-height: 1.85;

    margin-bottom: 32px;
}

.promo-banner-content .btn {
    width: fit-content;
}


/* =========================
   MOBILE
========================== */

@media (max-width: 768px) {

    .promo-banner {
        grid-template-columns: 1fr;
    }

    .promo-banner-image {
        min-height: 360px;
        height: 360px;
    }

    .promo-banner-content {
        min-height: 430px;
        padding: 60px 25px;
    }

    .promo-banner-content h2 {
        font-size: 48px;
    }

}

@media (max-width: 480px) {

    .promo-banner-image {
        min-height: 300px;
        height: 300px;
    }

    .promo-banner-content {
        min-height: 400px;
        padding: 50px 22px;
    }

    .promo-banner-content h2 {
        font-size: 42px;
    }

}


/* =========================
   ABOUT HERO BANNER
========================= */




/* DARK LUXURY OVERLAY */

.about-hero-banner-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10, 38, 27, .88) 0%,
            rgba(10, 38, 27, .68) 42%,
            rgba(10, 38, 27, .25) 100%
        );

    z-index: 1;
}


/* CONTENT */

.about-hero-banner-content {
    position: relative;
    z-index: 2;

    padding-top: 120px;
    padding-bottom: 100px;

    max-width: 900px;
}


.about-hero-banner-content .eyebrow {
    color: #d8b76a;
    margin-bottom: 22px;
}


.about-hero-banner-content h1 {
    font-family: Georgia, "Times New Roman", serif;

    color: #fff;

    font-size: clamp(55px, 7vw, 100px);

    line-height: .96;

    font-weight: 400;

    letter-spacing: -3px;

    margin: 0 0 30px;
}


.about-hero-banner-content h1 span {
    color: #d8b76a;
    font-style: italic;
}


.about-hero-banner-content p {
    max-width: 570px;

    color: rgba(255,255,255,.82);

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 35px;
}


/* BUTTON */

.about-hero-banner-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .about-hero-banner {
        min-height: 650px;

        background-position: center;
    }

    .about-hero-banner-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(10, 38, 27, .88),
                rgba(10, 38, 27, .60)
            );
    }

    .about-hero-banner-content {
        padding: 140px 25px 80px;
    }

    .about-hero-banner-content h1 {
        font-size: 58px;
        letter-spacing: -2px;
    }

    .about-hero-banner-content p {
        font-size: 15px;
    }

}


@media (max-width: 480px) {

    .about-hero-banner {
        min-height: 0px;
    }

    .about-hero-banner-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-hero-banner-content h1 {
        font-size: 48px;
    }

}


/* =========================
   HERO BANNER
========================== */

.hero-banner {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


/* =========================
   DESKTOP
========================== */

@media (min-width: 769px) {

    .hero-banner-image {
        width: 100%;
        height: 650px;
        object-fit: cover;
        object-position: center;
    }

}


/* =========================
   MOBILE
========================== */

@media (max-width: 768px) {

    .hero-banner-image {
        width: 400px;
        height: 400px;
        object-fit: cover;
        object-position: center;
    }

}

/* =========================
   ABOUT HERO BANNER
========================== */

.about-hero-banner {
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.about-hero-banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


/* DESKTOP */

@media (min-width: 769px) {

    .about-hero-banner-image {
        width: 100%;
        height: 650px;
        object-fit: cover;
        object-position: center;
    }

}


/* MOBILE */

@media (max-width: 768px) {

    .about-hero-banner-image {
        width: 100%;
        height: 510px;
        object-fit: cover;
        object-position: center;
    }

}

/* =================================
   PRODUCT HERO WITH BACKGROUND IMAGE
================================= */

.product-hero {
    min-height: 700px;
    width: 100%;

    position: relative;

    display: flex;
    align-items: center;

    background-image: url("../images/product-banner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}


/* IMAGE OVERLAY */

.product-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(15, 39, 29, 0.88) 0%,
            rgba(15, 39, 29, 0.70) 38%,
            rgba(15, 39, 29, 0.25) 100%
        );

    z-index: 1;
}


/* CONTENT */

.product-hero .container {
    position: relative;
    z-index: 2;

    width: 100%;
}


.product-hero-content {
    max-width: 680px;

    padding-top: 100px;
    padding-bottom: 100px;
}


/* EYEBROW */

.product-hero-content .eyebrow {
    color: #d8b76a;
    margin-bottom: 20px;
}


/* HEADING */

.product-hero-content h1 {
    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(55px, 7vw, 95px);

    font-weight: 400;

    line-height: .96;

    letter-spacing: -3px;

    margin: 0 0 28px;
}


.product-hero-content h1 span {
    display: block;

    color: #d8b76a;

    font-size: .42em;

    line-height: 1.35;

    font-style: italic;

    letter-spacing: 0;

    margin-top: 18px;

    max-width: 520px;
}


/* DESCRIPTION */

.product-hero-content p {
    max-width: 540px;

    color: rgba(255,255,255,.82);

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 35px;
}


/* BUTTON */

.product-hero-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}


/* =================================
   MOBILE
================================= */

@media (max-width: 768px) {

    .product-hero {
        min-height: 650px;

        background-position: center;
    }

    .product-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(15,39,29,.92) 0%,
                rgba(15,39,29,.68) 100%
            );
    }

    .product-hero-content {
        padding: 120px 20px 80px;
    }

    .product-hero-content h1 {
        font-size: 58px;
        letter-spacing: -2px;
    }

    .product-hero-content p {
        font-size: 14px;
    }

}


@media (max-width: 480px) {

    .product-hero {
        min-height: 620px;
    }

    .product-hero-content {
        padding: 110px 15px 70px;
    }

    .product-hero-content h1 {
        font-size: 46px;
    }

    .product-hero-content h1 span {
        font-size: .45em;
    }

}

/* =========================
   CONTACT IMAGE BANNER
========================== */

.contact-image-banner {
    width: 100%;
    height: 550px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.contact-image-banner img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}


/* =========================
   MOBILE
========================== */

@media (max-width: 768px) {

    .contact-image-banner {
        width: 510px;
        height: 270px;
    }

    .contact-main {
        padding: 0px 0px 0px;
    }

}




@media (max-width: 480px) {

    .contact-image-banner {
        height: 280px;
    }

}

/* =========================
   RESPONSIVE HAMBURGER MENU
========================= */

.menu {
    display: none;
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
    color: #3d2a18;
    user-select: none;
}

/* MOBILE */
@media (max-width: 850px) {

    .header-inner {
        position: relative;
    }

    .menu {
        display: block;
        margin-left: auto;
        z-index: 1001;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fffdf8;
        padding: 15px 20px;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 8px 20px rgba(0,0,0,0.10);
        z-index: 1000;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        display: block;
        width: 100%;
        padding: 14px 5px;
        border-bottom: 1px solid #e8e1d6;
    }

    .header-btn {
        display: none;
    }
}

/* EXTRA SMALL MOBILE */
@media (max-width: 480px) {

    .menu {
        font-size: 27px;
    }

    .nav {
        padding: 12px 18px;
    }

    .nav a {
        padding: 13px 5px;
        font-size: 15px;
    }
}


/* ==============================
   RESPONSIVE HAMBURGER MENU
============================== */

.menu {
    display: none;
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
    color: var(--forest);
    user-select: none;
    z-index: 1001;
}

/* TABLET + MOBILE */
@media (max-width: 850px) {

    header .header-inner {
        position: relative;
    }

    .menu {
        display: block;
        margin-left: auto;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fffdf8;
        flex-direction: column;
        gap: 0;
        padding: 12px 20px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.10);
        z-index: 1000;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        width: 100%;
        padding: 14px 5px;
        border-bottom: 1px solid #e5dfd2;
    }

    .header-btn {
        display: none;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

    .menu {
        font-size: 27px;
    }

    .nav {
        padding: 10px 18px;
    }

    .nav a {
        padding: 13px 5px;
        font-size: 15px;
    }
}




/* MOBILE HAMBURGER */

.menu {
    display: none;
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
    color: #17392c;
    user-select: none;
    z-index: 1001;
}

@media (max-width: 850px) {

    header .header-inner {
        position: relative;
    }

    .menu {
        display: block;
        margin-left: auto;
    }

    header .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fffdf8;
        flex-direction: column;
        gap: 0;
        padding: 15px 20px;
        box-shadow: 0 8px 20px rgba(0,0,0,.10);
        z-index: 1000;
    }

    header .nav.active {
        display: flex;
    }

    header .nav a {
        width: 100%;
        padding: 14px 5px;
        border-bottom: 1px solid #ded6c7;
        color: #17392c;
    }

    header .nav a:last-child {
        border-bottom: none;
    }

    header .header-btn {
        display: none;
    }
}


/* =====================================================
   MOBILE HAMBURGER — SAME AS INDEX
===================================================== */

.menu {
    display: none;
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
    color: #17392c;
    user-select: none;
    z-index: 1001;
}

@media (max-width: 850px) {

    header .header-inner {
        position: relative;
    }

    /* HAMBURGER */
    .menu {
        display: block;
        margin-left: auto;
    }

    /* MOBILE NAV */
    header .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;

        background: #fffdf8;

        flex-direction: column;
        gap: 0;

        padding: 15px 20px;

        box-shadow: 0 8px 20px rgba(0,0,0,.10);

        z-index: 1000;
    }

    /* OPEN MENU */
    header .nav.active {
        display: flex;
    }

    /* NAV LINKS */
    header .nav a {
        width: 100%;
        padding: 14px 5px;

        color: #17392c;

        border-bottom: 1px solid #ded6c7;
    }

    header .nav a:last-child {
        border-bottom: none;
    }

    /* HIDE ENQUIRE BUTTON */
    header .header-btn {
        display: none;
    }
}