@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --primary:#d6b06a;
    --secondary:black;
    --light:#163F580D;
    --ink:#0f172a;
    --muted:#010101;
    --card:#f6f7f9;
    --radius:10px;
    --shadow:0 6px 24px rgba(0,0,0,.12),0 2px 8px rgba(0,0,0,.06)
}
body{font-family: "Montserrat", sans-serif;color:var(--ink);background:#fbfcfe}

.text-primary{color:var(--primary) !important}
.text-muted{color:var(--muted) !important}
.text-card{color:var(--card)}
.btn-primary{background:var(--primary);color:#111827;border:0}
.btn-primary:hover{filter:brightness(.97);color:#0b1220}
.btn-secondary{background:var(--secondary);border:1px solid var(--primary) ; color:var(--primary)}
.btn-secondary:hover{background:var(--primary);color:var(--secondary)}
.btn-pill{border-radius:999px;border:1px solid #e5e7eb;background:#fff;font-weight:600}
.shadow-soft{box-shadow:var(--shadow)}
.rounded-2xl{border-radius:var(--radius)}
.border-bottom{border-bottom:2px solid var(--primary) !important}
.bg-light{background:var(--light) !important}


    /* NAV */
.navbar-overlay{background-color: rgba(0, 0, 0, 0.7)
}
.navbar .nav-link{color:rgba(255,255,255,.85)}
.navbar .nav-link:hover{color:#fff}

/* HERO */
.hero{position:relative;min-height:86vh;color:#fff;display:grid;place-items:center;text-align:center}
.hero::before{content:"";position:absolute;inset:0;background:url('/front/img/img-index-bg.png') center/cover no-repeat;filter:brightness(.55)}
.hero>*{position:relative}

/* SECTIONS */
section{padding:68px 0}
.section-head{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:14px;margin-bottom:18px}
.section-head h3{margin:10px}
.section-head .line{height:2px;background:var(--primary)}

/* WELCOME */
.welcome .portrait{width:100%;aspect-ratio:1/1;border-radius:50%;object-fit:cover;box-shadow:var(--shadow)}

/* OFFERS */
.offer-card{background:#fff;border:1px solid #e5e7eb; padding:50px !important}
.offer-card .icon{height:64px;margin-bottom: 25px;}
.offer-card ul{padding-left:0;list-style:none}
.offer-card li{position:relative;padding-left:22px}
.offer-card li::before{content:"\2713";color:var(--primary);font-size:1.2rem; margin-right:10px}

/* REVIEWS */
.review-img{height: 38px; margin-bottom: -19px}
.review{background:#fff;border:1px solid black; padding:30px !important;display:flex !important;flex-direction: column !important;
    justify-content: center !important;}

/* SHARE STRIP */
.share-strip{background:#f1f3f6;border:1px solid #e5e7eb}

/* PARTNERS */
.partner-logo{aspect-ratio:1/1;border-radius:10px;background:#fff;display:grid;place-items:center; padding:20px;}
.partner-logo img{}

/* FOOTER */
footer{background:#0f172a;color:#e5e7eb}
footer a{color:#e5e7eb;text-decoration:none}

@media screen and (max-width:768px){
    .hero{place-items:start;padding-top: 6vh}
    .hero::before{background:url('/front/img/img-index-bg-mobile.png') center/cover no-repeat;}
}