
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
background:#0d0d0d;
color:#f1f1f1;
font-family:Arial,sans-serif;
line-height:1.65;
overflow-x:hidden;
}

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

.container{
width:min(1150px,92%);
margin:auto;
}

.narrow{
max-width:820px;
}

.center{
text-align:center;
}

.hero{
position:relative;
min-height:74vh;
display:flex;
align-items:center;
justify-content:center;
overflow:hidden;
}

.hero-bg{
position:absolute;
inset:0;
background:
linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.70)),
url('images/background.jpg');
background-size:cover;
background-position:center;
transform:scale(1.05);
}

.hero-content{
position:relative;
z-index:2;
text-align:center;
padding:50px 24px 90px;
max-width:900px;
}

.fade{
position:absolute;
bottom:0;
left:0;
width:100%;
height:120px;
background:linear-gradient(transparent,#151515);
}

.eyebrow,
.mini-title{
font-size:.8rem;
letter-spacing:.32em;
opacity:.7;
margin-bottom:18px;
}

h1{
font-size:clamp(3rem,8vw,6rem);
line-height:.95;
margin-bottom:24px;
}

h2{
font-size:clamp(2rem,4vw,3.4rem);
line-height:1.1;
margin-bottom:24px;
color:#f5efe8;
}

h3{
font-size:1.2rem;
margin-bottom:10px;
}

.subtitle{
font-size:1.1rem;
max-width:650px;
margin:0 auto 32px;
opacity:.9;
}

p{
opacity:.88;
margin-bottom:18px;
}

.cta{
display:inline-flex;
align-items:center;
justify-content:center;
padding:16px 34px;
border-radius:999px;
background:rgba(255,255,255,.10);
border:1px solid rgba(255,255,255,.18);
backdrop-filter:blur(16px);
color:white;
text-decoration:none;
transition:.3s;
}

.cta:hover{
background:#f5efe8;
color:black;
}

.quick-preview{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:18px;
padding:30px 5vw 65px;
background:#151515;
margin-top:-45px;
position:relative;
z-index:4;
}

.preview-card{
position:relative;
overflow:hidden;
border-radius:22px;
height:250px;
}

.preview-card img{
width:100%;
height:100%;
object-fit:cover;
}

.preview-overlay{
position:absolute;
inset:0;
background:linear-gradient(transparent,rgba(0,0,0,.75));
display:flex;
flex-direction:column;
justify-content:flex-end;
padding:22px;
}

.section{
padding:78px 0;
}

.light{
background:#181818;
}

.dark{
background:#101010;
}

.beige{
background:#201b18;
}

.two-col{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.reverse{
direction:rtl;
}

.reverse > *{
direction:ltr;
}

.image-card{
overflow:hidden;
border-radius:24px;
border:1px solid rgba(255,255,255,.08);
}

.before-after-section{
padding:70px 0 90px;
background:#151515;
}

.before-after{
margin-top:35px;
border-radius:24px;
overflow:hidden;
border:1px solid rgba(255,255,255,.08);
}

.faq-item{
padding:24px 0;
border-bottom:1px solid rgba(255,255,255,.08);
}

.final-section{
padding:110px 0;
background:
linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.75)),
url('images/background.jpg');
background-size:cover;
background-position:center;
}

.dark-btn{
background:#f5efe8;
color:black;
}

@media(max-width:900px){

.hero{
min-height:68vh;
}

.quick-preview{
grid-template-columns:1fr;
padding:24px 20px 50px;
}

.preview-card{
height:220px;
}

.two-col{
grid-template-columns:1fr;
gap:35px;
}

.section{
padding:65px 0;
}

}
