
@font-face{font-family:'InterCustom';src:url('../fonts/Inter-SemiBold.ttf') format('truetype');font-weight:600;font-style:normal;font-display:swap}
@font-face{font-family:'MontserratCustom';src:url('../fonts/Montserrat-Regular.ttf') format('truetype');font-weight:400;font-style:normal;font-display:swap}
:root{--font-head:'InterCustom', Inter, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; --font-body:'MontserratCustom', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif}
body{font-family:var(--font-body)}
h1,h2,h3,h4,h5,h6,.btn,nav{font-family:var(--font-head)}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial;color:#111;background:#fff}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

/* Header */
header{position:fixed;top:0;left:0;right:0;height:110px;background:#fff;display:flex;align-items:center;justify-content:space-between;padding:16px 32px;box-shadow:0 1px 10px rgba(0,0,0,.06);z-index:50}
.brand{display:flex;align-items:center;gap:22px;margin-right:auto}
.brand img.logo{height:180px}
.brand .lbp-container{background:#fff;padding:6px 8px;border-radius:6px;position:relative;top:0px}
.brand img.lbp{height:74px}
nav{display:flex;gap:28px;font-weight:500;opacity:.95}

/* Hero */
.hero{margin-top:110px;height:86vh;min-height:560px;position:relative;display:flex;align-items:flex-end;background:url('../images/hero-bg.jpg') center/cover no-repeat}
.hero::after{content:'';position:absolute;inset:0;background:rgba(0,0,0,.28)}
.hero .inner{position:relative;z-index:1;color:#fff;padding:0 0 7vh 5vw;max-width:60vw}
.hero h1{font-size:96px;line-height:1.02;margin:0 0 16px;font-weight:600;letter-spacing:0.3px}
.hero p{font-size:32px;margin:0 0 28px;opacity:.98}
.hero .btn{display:inline-block;padding:12px 22px;border:1.5px solid #fff;border-radius:8px;color:#fff;font-weight:600}

/* Sections */
.section{padding:64px 5vw}
.centered{text-align:center}
.lead{max-width:860px;margin:8px auto 40px;color:#555;font-size:18px}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.card{border-radius:12px;overflow:hidden;box-shadow:0 2px 10px rgba(0,0,0,.06);background:#fff}
.card img{height:260px;width:100%;object-fit:cover}

/* Services */
.services .wrap{max-width:1200px;margin:0 auto}
.services h2{font-size:52px;margin:0 0 28px}
.services .row{display:grid;grid-template-columns:1fr auto auto;gap:24px;align-items:center;padding:28px 0;border-bottom:1px solid #ddd}
.services .btn-dark{background:#111;color:#fff;padding:10px 18px;border-radius:6px}

/* Articles (placeholder) */
.articles .cards{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}

/* Footer */
.footer{padding:28px 5vw;color:#555;background:#f7f7f7;border-top:1px solid #e0e0e0;text-align:center}

/* Mobile tweaks */
@media (max-width:900px){
  .brand img.logo{height:150px}
  .brand img.lbp{height:64px}
  .hero h1{font-size:56px}
  .hero p{font-size:20px}
  .grid3,.articles .cards{grid-template-columns:1fr}
  .hero{height:70vh}
}

.btn-primary{background:#111;color:#fff;padding:12px 18px;border-radius:8px;display:inline-block}
