:root{
--red:#ff2b00;
--red2:#cc2200;
--bg:#f4f1ed;
--dark:#111;
--line:#d9d3ca;
--shadow:0 25px 70px rgba(0,0,0,.12);
}

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

body{
font-family:'League Spartan',sans-serif;
background:var(--bg);
color:#111;
overflow-x:hidden;
}

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

a{
text-decoration:none;
color:inherit;
}

.hero{
padding-bottom:90px;
background:
radial-gradient(circle at top right, rgba(255,43,0,.12), transparent 25%),
linear-gradient(135deg,#fbf9f7,#ede8e2);
}

.nav{
width:min(1180px,92%);
margin:auto;
padding:28px 0;
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
}

.logo{
width:260px;
}

.links{
display:flex;
gap:10px;
padding:8px;
background:rgba(255,255,255,.75);
border:1px solid var(--line);
border-radius:999px;
backdrop-filter:blur(12px);
}

.links a{
padding:12px 18px;
border-radius:999px;
font-weight:700;
}

.links a:hover{
background:#111;
color:white;
}

.hero-content,
.company{
width:min(1180px,92%);
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.hero-content{
padding-top:50px;
}

.mini{
display:inline-block;
padding:10px 16px;
border-radius:999px;
background:#ffe1db;
color:#b11f00;
font-size:13px;
font-weight:800;
letter-spacing:.1em;
margin-bottom:18px;
}

h1{
font-size:clamp(60px,8vw,108px);
line-height:.88;
letter-spacing:-.07em;
margin-bottom:24px;
}

h2{
font-size:clamp(42px,6vw,74px);
line-height:.92;
letter-spacing:-.06em;
margin-bottom:20px;
}

p{
font-size:20px;
line-height:1.7;
color:#666;
font-weight:500;
}

.hero-buttons{
display:flex;
gap:14px;
flex-wrap:wrap;
margin:30px 0;
}

.btn{
padding:17px 26px;
border-radius:999px;
font-weight:800;
}

.red{
background:linear-gradient(135deg,var(--red),var(--red2));
color:white;
}

.dark{
background:#111;
color:white;
}

.hero-tags{
display:flex;
gap:10px;
flex-wrap:wrap;
margin-top:24px;
}

.hero-tags span{
background:white;
border:1px solid var(--line);
padding:12px 16px;
border-radius:999px;
font-weight:700;
}

.hero-image,
.company-image{
height:620px;
border-radius:42px;
overflow:hidden;
box-shadow:var(--shadow);
}

.hero-image img,
.company-image img{
width:100%;
height:100%;
object-fit:cover;
}

.floating{
width:min(1180px,92%);
margin:0 auto 110px;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:18px;
}

.floating div{
background:white;
padding:30px;
border-radius:30px;
box-shadow:var(--shadow);
}

.floating strong{
display:block;
font-size:28px;
margin-bottom:8px;
}

.company,
.services{
padding-bottom:120px;
}

.steps{
display:grid;
gap:18px;
margin-top:30px;
}

.step{
display:flex;
gap:20px;
align-items:flex-start;
background:white;
padding:24px;
border-radius:28px;
box-shadow:0 12px 28px rgba(0,0,0,.06);
}

.step b{
min-width:62px;
height:62px;
display:grid;
place-items:center;
background:#ffe1db;
border-radius:20px;
color:#b11f00;
font-size:20px;
}

.step strong{
display:block;
font-size:24px;
margin-bottom:6px;
}

.services{
width:min(1180px,92%);
margin:auto;
}

.cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:40px;
}

.cards article{
background:white;
padding:34px;
border-radius:34px;
min-height:300px;
box-shadow:var(--shadow);
position:relative;
overflow:hidden;
}

.cards article:after{
content:"";
position:absolute;
right:-60px;
top:-60px;
width:180px;
height:180px;
border-radius:50%;
background:radial-gradient(circle, rgba(255,43,0,.15), transparent 70%);
}

.dark-card{
background:#111 !important;
color:white;
}

.dark-card p{
color:#ddd;
}

.red-card{
background:linear-gradient(135deg,#ffffff,#ffe1db) !important;
}

.icon{
width:78px;
height:78px;
display:grid;
place-items:center;
background:#ffe1db;
border-radius:24px;
font-size:36px;
margin-bottom:22px;
}

.cards h3{
font-size:34px;
margin-bottom:16px;
}

.gallery{
width:min(1180px,92%);
margin:0 auto 120px;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
}

.gallery-card{
position:relative;
height:420px;
overflow:hidden;
border-radius:38px;
box-shadow:var(--shadow);
}

.gallery-card img{
width:100%;
height:100%;
object-fit:cover;
transition:.5s;
}

.gallery-card:hover img{
transform:scale(1.05);
}

.gallery-overlay{
position:absolute;
left:0;
right:0;
bottom:0;
padding:34px;
background:linear-gradient(to top, rgba(0,0,0,.75), transparent);
color:white;
}

.gallery-overlay h3{
font-size:34px;
margin-bottom:10px;
}

.contact{
width:min(1180px,92%);
margin:0 auto 120px;
}

.contact-box{
background:#111;
border-radius:42px;
padding:50px;
display:grid;
grid-template-columns:.9fr 1.1fr;
gap:34px;
}

.contact-copy h2,
.contact-copy p{
color:white;
}

.form{
display:grid;
grid-template-columns:1fr 1fr;
gap:14px;
}

.form textarea,
.form button{
grid-column:1/-1;
}

.form input,
.form select,
.form textarea{
padding:16px;
border-radius:18px;
border:1px solid rgba(255,255,255,.12);
background:rgba(255,255,255,.08);
font:inherit;
color:white;
}

.form textarea{
min-height:140px;
resize:none;
}

.form button{
padding:17px;
border-radius:999px;
border:0;
font:inherit;
font-weight:800;
background:linear-gradient(135deg,var(--red),var(--red2));
color:white;
}

footer{
background:#161616;
padding:60px 4%;
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
flex-wrap:wrap;
}

.footer-logo{
width:240px;
}

footer p,
footer a{
color:#d9d9d9;
font-weight:700;
}

.cookie{
position:fixed;
right:24px;
bottom:24px;
width:min(420px,calc(100% - 32px));
background:white;
padding:20px;
border-radius:30px;
box-shadow:var(--shadow);
display:none;
z-index:9999;
}

.cookie.show{
display:block;
}

.cookie-top{
display:flex;
gap:14px;
align-items:flex-start;
margin-bottom:16px;
}

.cookie-icon{
width:54px;
height:54px;
display:grid;
place-items:center;
background:linear-gradient(135deg,var(--red),var(--red2));
border-radius:18px;
font-weight:800;
font-size:22px;
color:white;
}

.cookie p{
font-size:15px;
color:#666;
}

.cookie-actions{
display:grid;
grid-template-columns:1fr 1fr;
gap:10px;
}

.cookie-actions a,
.cookie-actions button{
padding:13px;
border-radius:999px;
border:0;
font:inherit;
font-weight:700;
text-align:center;
cursor:pointer;
}

.cookie-actions a{
grid-column:1/-1;
background:#ffe1db;
color:#b11f00;
}

.cookie-actions button:last-child{
background:linear-gradient(135deg,var(--red),var(--red2));
color:white;
}

.cookie-actions button:nth-child(2){
background:#111;
color:white;
}

@media(max-width:980px){

.hero-content,
.company,
.contact-box{
grid-template-columns:1fr;
}

.cards,
.gallery,
.floating{
grid-template-columns:1fr 1fr;
}
}

@media(max-width:720px){

.links{
display:none;
}

.cards,
.gallery,
.floating,
.form{
grid-template-columns:1fr;
}

h1{
font-size:58px;
}

.hero-image,
.company-image{
height:360px;
}
}


.gallery-overlay p{
color:white !important;
opacity:.95;
font-weight:500;
}

