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

body{
font-family:'Montserrat',sans-serif;
background:#fff;
color:#111;
overflow-x:hidden;
}

a{
text-decoration:none;
}

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

.navbar{
height:92px;
padding:0 72px;
display:flex;
align-items:center;
justify-content:space-between;
border-bottom:1px solid #ececec;
position:sticky;
top:0;
background:#fff;
z-index:999;
}

.logo{
font-size:3rem;
letter-spacing:14px;
font-weight:700;
}

.logo-sub,
.footer-sub{
display:flex;
align-items:center;
gap:10px;
font-size:.55rem;
letter-spacing:3px;
margin-top:2px;
}

.logo-sub span,
.footer-sub span{
width:45px;
height:1px;
background:#000;
}

nav{
display:flex;
gap:55px;
}

nav a{
color:#111;
position:relative;
transition:.4s;
}

nav a::after{
content:'';
position:absolute;
left:0;
bottom:-8px;
width:0;
height:1px;
background:#111;
transition:.4s;
}

nav a:hover::after{
width:100%;
}

nav a:hover{
opacity:.7;
}

.order-btn,
.primary-btn,
.secondary-btn,
.cta-btn,
.product-card a{
transition:.4s;
}

.order-btn:hover,
.primary-btn:hover,
.secondary-btn:hover,
.cta-btn:hover,
.product-card a:hover{
transform:translateY(-3px);
}

.order-btn{
background:#000;
color:#fff;
padding:15px 30px;
border-radius:50px;
}

.hero{
display:grid;
grid-template-columns:1fr 1fr;
min-height:650px;
}

.hero-left{
padding:90px 72px;
display:flex;
justify-content:center;
flex-direction:column;
}

.hero-mini{
letter-spacing:6px;
font-size:.85rem;
margin-bottom:30px;
}

.hero h1{
font-family:'Cormorant Garamond',serif;
font-size:6rem;
line-height:.95;
font-weight:500;
margin-bottom:25px;
}

.hero-text{
font-size:1.2rem;
line-height:1.8;
color:#555;
max-width:540px;
}

.hero-buttons{
display:flex;
gap:20px;
margin-top:45px;
}

.primary-btn{
background:#000;
color:#fff;
padding:18px 34px;
border-radius:50px;
}

.secondary-btn{
border:1px solid #111;
padding:18px 34px;
border-radius:50px;
color:#111;
}

.hero-right img{
height:100%;
object-fit:cover;
}


.experiences,
.featured{
padding:90px 72px;
border-top:1px solid #ececec;
}

.experiences{
display:grid;
grid-template-columns:400px 1fr;
gap:50px;
}

.exp-title p,
.featured-head p,
.about-left p{
font-size:.85rem;
letter-spacing:4px;
color:#991919;
margin-bottom:20px;
}

.exp-title h2,
.featured-head h2,
.about-left h2,
.cta h2{
font-family:'Cormorant Garamond',serif;
font-size:4rem;
line-height:1;
font-weight:500;
}

.exp-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:22px;
}

.exp-card{
border:1px solid #ececec;
padding:40px;
border-radius:14px;
transition:.4s;
}

.exp-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,.05);
}

.exp-icon{
font-size:3rem;
color:#991919;
margin-bottom:30px;
}

.exp-card h3{
font-family:'Cormorant Garamond',serif;
font-size:2rem;
font-weight:500;
margin-bottom:18px;
}

.exp-card p{
line-height:1.9;
color:#555;
}

.arrow{
margin-top:40px;
text-align:right;
font-size:1.6rem;
}

.carousel-wrapper{
overflow:hidden;
margin-top:50px;
}

.carousel-track{
display:flex;
gap:22px;
width:max-content;
animation:scrollLoop 120s linear infinite;
}

@keyframes scrollLoop{
0%{transform:translateX(0);}
100%{transform:translateX(-50%);}
}

.product-card{
min-width:320px;
border:1px solid #ececec;
border-radius:14px;
overflow:hidden;
padding-bottom:24px;
background:#fff;
}

.product-card img{
height:240px;
object-fit:cover;
}

.product-card h3{
padding:18px 18px 0;
font-size:1.1rem;
}

.product-card span{
display:block;
padding:10px 18px 20px;
color:#991919;
font-weight:600;
}

.product-card a{
margin-left:18px;
background:#000;
color:#fff;
padding:14px 22px;
border-radius:50px;
display:inline-block;
}

.about{
display:grid;
grid-template-columns:1fr 1fr;
border-top:1px solid #ececec;
}

.about-left{
padding:90px 72px;
}

.about-left h2{
margin-bottom:30px;
}

.about-text{
line-height:2;
color:#555;
max-width:480px;
}

.features{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:50px;
}

.feature div{
font-size:2rem;
color:#991919;
margin-bottom:14px;
}

.feature span{
line-height:1.8;
}

.about-right img{
height:100%;
object-fit:cover;
}

.cta{
padding:70px 72px;
display:flex;
justify-content:space-between;
align-items:center;
background:linear-gradient(90deg,#871111,#b01d1d);
}

.cta h2{
color:#fff;
}

.cta-btn{
background:#fff;
color:#111;
padding:20px 45px;
border-radius:50px;
}

footer{
padding:70px 72px 30px;
}

.footer-grid{
display:grid;
grid-template-columns:1.4fr 1fr 1fr 1fr 1fr;
gap:40px;
}

.footer-logo{
font-size:3rem;
letter-spacing:14px;
font-weight:700;
}

footer h4{
font-size:.85rem;
letter-spacing:3px;
margin-bottom:20px;
}

footer a{
display:block;
margin-bottom:12px;
color:#222;
}

.socials{
display:flex;
gap:18px;
margin-top:20px;
}

.socials a{
width:50px;
height:50px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
transition:.5s;
border:1px solid #ececec;
}

.socials a:hover{
transform:translateY(-6px) scale(1.08);
box-shadow:0 18px 30px rgba(0,0,0,.08);
}

.socials svg{
width:28px;
height:28px;
}

.copy{
margin-top:55px;
padding-top:20px;
border-top:1px solid #ececec;
text-align:center;
color:#888;
}

.modal{
position:fixed;
inset:0;
background:rgba(0,0,0,.5);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}

.modal-content{
background:#fff;
padding:40px;
border-radius:20px;
max-width:500px;
width:90%;
position:relative;
animation:popup .3s ease;
}

@keyframes popup{
from{transform:translateY(20px);opacity:0;}
to{transform:translateY(0);opacity:1;}
}

.close{
position:absolute;
right:20px;
top:10px;
font-size:2rem;
cursor:pointer;
}

.modal-content h3{
margin-bottom:20px;
font-size:1.5rem;
}

.modal-content p{
line-height:1.8;
color:#555;
}

@media(max-width:1100px){

.hero,
.experiences,
.about,
.footer-grid{
grid-template-columns:1fr;
}

.exp-grid,
.features{
grid-template-columns:1fr 1fr;
}

nav{
display:none;
}

.hero h1,
.exp-title h2,
.featured-head h2,
.about-left h2,
.cta h2{
font-size:3rem;
}

.cta{
flex-direction:column;
gap:30px;
}

}


.fade-in{
opacity:0;
transform:translateY(80px);
transition:opacity 1s ease, transform 1s ease;
}

.fade-in.show{
opacity:1;
transform:translateY(0);
}


/* PREMIUM REVEAL */
.fade-in{
opacity:0;
transform:translateY(90px) scale(.98);
transition:opacity 1.2s cubic-bezier(.16,1,.3,1),
transform 1.2s cubic-bezier(.16,1,.3,1);
will-change:transform,opacity;
}

.fade-in.show{
opacity:1;
transform:translateY(0) scale(1);
}

/* PREMIUM NAV */
.navbar{
backdrop-filter:blur(14px);
background:rgba(255,255,255,.92);
}

/* PREMIUM BUTTONS */
.order-btn,
.primary-btn,
.secondary-btn,
.cta-btn,
.product-card a{
box-shadow:0 12px 30px rgba(0,0,0,.06);
}

.order-btn:hover,
.primary-btn:hover,
.secondary-btn:hover,
.cta-btn:hover,
.product-card a:hover{
transform:translateY(-4px);
box-shadow:0 20px 40px rgba(0,0,0,.10);
}

/* PREMIUM CARDS */
.product-card{
transition:transform .5s ease, box-shadow .5s ease;
}

.product-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 50px rgba(0,0,0,.08);
}

/* WHATSAPP FLOAT */
.whatsapp-float{
position:fixed;
right:28px;
bottom:28px;
width:72px;
height:72px;
border-radius:50%;
background:#25D366;
display:flex;
align-items:center;
justify-content:center;
color:white;
z-index:99999;
box-shadow:0 20px 45px rgba(37,211,102,.35);
animation:floatWsp 3s ease-in-out infinite;
transition:.4s;
}

.whatsapp-float:hover{
transform:scale(1.08);
}

.whatsapp-float svg{
width:38px;
height:38px;
}

@keyframes floatWsp{
0%{transform:translateY(0px);}
50%{transform:translateY(-10px);}
100%{transform:translateY(0px);}
}

/* PREMIUM SOCIALS */
.socials a{
overflow:hidden;
position:relative;
}

.socials a::before{
content:'';
position:absolute;
inset:0;
background:linear-gradient(135deg,rgba(255,255,255,.8),rgba(255,255,255,0));
opacity:0;
transition:.5s;
}

.socials a:hover::before{
opacity:1;
}

/* smoother carousel */
.carousel-track{
animation:scrollLoop 180s linear infinite;
}


/* HERO PREMIUM 4:3 */
.hero{
min-height:540px;
border-bottom:1px solid #ececec;
}

.hero-left{
padding:70px 84px;
}

.hero h1{
font-size:5.5rem;
line-height:.92;
letter-spacing:-2px;
margin-bottom:28px;
transition:opacity .8s ease, transform .8s ease;
}

.hero-text{
font-size:1.15rem;
line-height:1.9;
color:#666;
max-width:520px;
margin-top:10px;
transition:opacity .8s ease, transform .8s ease;
}

.hero-right{
position:relative;
display:flex;
align-items:center;
justify-content:center;
overflow:hidden;
background:#f8f8f8;
}

.hero-right img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

.hero-right{
position:relative;
overflow:hidden;
height:100%;
}
/* =========================
MOBILE PREMIUM FIX
========================= */

@media(max-width:768px){

body{
overflow-x:hidden;
}

/* NAVBAR */
.navbar{
height:78px;
padding:0 20px;
}

.logo{
font-size:1.9rem;
letter-spacing:8px;
}

.logo-sub{
font-size:.42rem;
letter-spacing:2px;
gap:6px;
}

.logo-sub span{
width:20px;
}

.order-btn{
padding:12px 18px;
font-size:.8rem;
}

/* HERO */
.hero{
grid-template-columns:1fr;
min-height:auto;
}

.hero-left{
padding:50px 22px 40px;
order:2;
}

.hero-right{
order:1;
height:auto;
}

.hero-right img{
aspect-ratio:4/3;
height:auto;
}

.hero-mini{
font-size:.7rem;
letter-spacing:4px;
margin-bottom:18px;
}

.hero h1{
font-size:3.2rem;
line-height:.92;
letter-spacing:-1px;
margin-bottom:18px;
}

.hero-text{
font-size:1rem;
line-height:1.8;
max-width:100%;
}

.hero-buttons{
flex-direction:column;
gap:14px;
margin-top:30px;
}

.primary-btn,
.secondary-btn{
width:100%;
text-align:center;
padding:16px 20px;
}

/* EXPERIENCES */
.experiences,
.featured,
.about,
footer{
padding:60px 22px;
}

.exp-title h2,
.featured-head h2,
.about-left h2,
.cta h2{
font-size:2.7rem;
line-height:1;
}

.exp-grid{
grid-template-columns:1fr;
}

.exp-card{
padding:30px;
}

/* PRODUCTS */
.product-card{
min-width:260px;
}

.product-card img{
height:220px;
}

/* ABOUT */
.about{
grid-template-columns:1fr;
}

.about-left{
padding:60px 22px;
}

.about-right img{
height:auto;
aspect-ratio:4/5;
}

/* FEATURES */
.features{
grid-template-columns:1fr 1fr;
gap:24px;
}

/* CTA */
.cta{
padding:60px 22px;
text-align:center;
}

.cta-btn{
width:100%;
text-align:center;
}

/* FOOTER */
.footer-grid{
grid-template-columns:1fr;
gap:45px;
}

.footer-logo{
font-size:2rem;
letter-spacing:10px;
}

footer h4{
margin-bottom:14px;
}

/* SOCIALS */
.socials{
gap:12px;
}

.socials a{
width:46px;
height:46px;
}

/* WHATSAPP */
.whatsapp-float{
width:58px;
height:58px;
right:18px;
bottom:18px;
}

.whatsapp-float svg{
width:30px;
height:30px;
}

/* MODAL */
.modal-content{
padding:30px 22px;
}

}
