/* Landing Page v2 Foundation */
:root{
--lp-primary:#ffffff;
--lp-secondary:##8DAB53;
--lp-text:#444;
--lp-radius:18px;
--lp-shadow:0 18px 45px rgba(0,0,0,.12);
--lp-max:1200px;
}
.lp-container{width:min(100%,var(--lp-max));margin:auto;padding-inline:24px;}
.lp-section{padding:clamp(70px,8vw,110px) 0;}
.lp-hero{
position:relative;
min-height:90vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background:var(--lp-primary);
color:#fff;
padding:120px 0;
overflow:hidden;
}
.lp-hero__overlay{
position:absolute;inset:0;
/* 50% opacity = 80 */
background: linear-gradient(#8DAB53, #0F4C5C80);
}
.lp-hero__content{position:relative;z-index:2;}
.lp-eyebrow{
display:inline-block;
text-transform:uppercase;
letter-spacing:3px;
color:var(--lp-secondary);
font-weight:700;
margin-bottom:24px;
}
.lp-hero h1{
font-size:clamp(2.8rem,6vw,5rem);
line-height:1.05;
margin-bottom:18px;
}
.lp-hero h2{font-weight:400;margin-bottom:28px;}
.lp-hero-tagline{font-size:clamp(1.5rem,2vw,2rem);font-weight:700;margin-bottom:18px;}
.lp-hero-subtitle{max-width:760px;margin:0 auto 42px;font-size:1.25rem;}
.lp-btn-group{display:flex;gap:18px;justify-content:center;flex-wrap:wrap;}
.lp-btn{
padding:18px 36px;
border-radius:10px;
text-decoration:none;
font-weight:700;
transition:.25s;
}
.lp-btn--primary{background:var(--lp-secondary);color:#fff;}
.lp-btn--outline{border:2px solid #fff;color:#fff;}
.lp-image{
position:relative;
overflow:hidden;
border-radius:var(--lp-radius);
box-shadow:var(--lp-shadow);
}
.lp-image--hero{
aspect-ratio:16/9;
max-width:1400px;
margin:auto;
background:#eaeaea;
}
.lp-image img{
display:block;
width:100%;
height:100%;
object-fit:cover;
}
.lp-image-placeholder{
border:4px dashed #d33;
background:#fff7f7;
color:#d33;
padding:48px;
text-align:center;
font-weight:700;
}
@media(max-width:768px){
.lp-btn-group{flex-direction:column;}
.lp-btn{width:100%;}
}
.editorial-image{max-width:760px;margin:70px auto;border-radius:18px;overflow:hidden;box-shadow:var(--shadow);background:#f5f5f5}.editorial-image-portrait{aspect-ratio:3/4}.editorial-image img{width:100%;height:100%;display:block;object-fit:cover}.editorial-image .image-placeholder{height:100%;display:flex;flex-direction:column;justify-content:center;align-items:center;padding:40px;border:4px dashed #d33;background:#fff6f6;color:#c62828}
/* Chapter 3 additions */
.editorial-image-landscape{
max-width:1100px;
aspect-ratio:16/10;
margin:60px auto;
}