*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Montserrat',sans-serif;
background:#faf7f2;
color:#333;
line-height:1.7;
overflow-x:hidden;
}

img{
width:100%;
display:block;
}

a{
text-decoration:none;
}

h1,h2,h3{
font-family:'Cormorant Garamond',serif;
font-weight:600;
}

/* HEADER */

.header{
height:100vh;
background:
linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.35)),
url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?w=1800');
background-size:cover;
background-position:center;
}

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 8%;
z-index:999;
transition:.4s;
}

.navbar.scrolled{
background:white;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.logo{
font-size:32px;
font-family:'Cormorant Garamond',serif;
font-weight:700;
letter-spacing:3px;
color:white;
}

.navbar.scrolled .logo{
color:#222;
}

.menu{
display:flex;
list-style:none;
gap:35px;
}

.menu a{
color:white;
font-size:14px;
letter-spacing:1px;
}

.navbar.scrolled .menu a{
color:#222;
}

.btn-nav{
padding:12px 24px;
background:#c9a86a;
color:white;
border-radius:50px;
font-size:14px;
}

/* HERO */

.hero{
height:100vh;
display:flex;
align-items:center;
padding:0 10%;
}

.hero-content{
max-width:700px;
color:white;
}

.subtitle{
letter-spacing:4px;
font-size:13px;
text-transform:uppercase;
}

.hero h1{
font-size:80px;
line-height:1;
margin:20px 0;
}

.hero p{
font-size:18px;
max-width:600px;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.btn-primary{
padding:16px 35px;
background:#c9a86a;
color:white;
border-radius:50px;
}

.btn-secondary{
padding:16px 35px;
border:1px solid white;
color:white;
border-radius:50px;
}

/* ABOUT */

.about{
padding:120px 10%;
background:white;
}

.container{
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
align-items:center;
}

.about-image img{
border-radius:20px;
}

.about-text span{
color:#c9a86a;
letter-spacing:3px;
font-size:12px;
}

.about-text h2{
font-size:55px;
margin:20px 0;
}

.about-text p{
margin-bottom:20px;
}

/* STATS */

.stats{
padding:80px 10%;
display:grid;
grid-template-columns:repeat(4,1fr);
background:#f3ede3;
text-align:center;
}

.stat h3{
font-size:55px;
color:#c9a86a;
}

.stat p{
font-size:15px;
}

/* SERVICES */

.services{
padding:120px 10%;
}

.services h2{
text-align:center;
font-size:60px;
margin-bottom:60px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.service-card{
background:white;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.06);
transition:.4s;
}

.service-card:hover{
transform:translateY(-10px);
}

.service-card img{
height:320px;
object-fit:cover;
}

.service-card h3{
padding:20px 25px 10px;
font-size:32px;
}

.service-card p{
padding:0 25px 30px;
}

/* FOUNDER */

.founder{
padding:120px 10%;
background:white;
}

.founder-content{
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
align-items:center;
}

.founder-image img{
border-radius:20px;
}

.founder-text span{
color:#c9a86a;
letter-spacing:3px;
font-size:12px;
}

.founder-text h2{
font-size:55px;
margin:20px 0;
}

/* TEAM */

.team{
padding:120px 10%;
background:#faf7f2;
}

.team h2{
text-align:center;
font-size:60px;
margin-bottom:60px;
}

.team-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.team-card{
background:white;
padding-bottom:30px;
border-radius:20px;
overflow:hidden;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.team-card img{
height:350px;
object-fit:cover;
}

.team-card h3{
margin-top:20px;
font-size:30px;
}

/* GALLERY */

.gallery{
padding:120px 10%;
background:white;
}

.gallery h2{
text-align:center;
font-size:60px;
margin-bottom:60px;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.gallery-grid img{
height:450px;
object-fit:cover;
border-radius:20px;
}

/* BRANDS */

.brands{
padding:100px 10%;
background:#f3ede3;
text-align:center;
}

.brands h2{
font-size:50px;
margin-bottom:40px;
}

.brand-container{
display:flex;
justify-content:center;
gap:50px;
flex-wrap:wrap;
font-weight:600;
font-size:20px;
}

/* CONTACT */

.contact{
padding:120px 10%;
background:white;
}

.contact-box{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
}

.contact-info span{
color:#c9a86a;
letter-spacing:3px;
font-size:12px;
}

.contact-info h2{
font-size:55px;
margin:20px 0;
}

.contact-form{
display:flex;
flex-direction:column;
gap:20px;
}

.contact-form input,
.contact-form textarea{
padding:18px;
border:1px solid #ddd;
border-radius:12px;
font-size:15px;
}

.contact-form textarea{
height:180px;
resize:none;
}

.contact-form button{
padding:18px;
background:#c9a86a;
color:white;
border:none;
border-radius:50px;
cursor:pointer;
font-size:16px;
}

/* FOOTER */

footer{
background:#111;
color:white;
text-align:center;
padding:80px 20px;
}

footer h2{
font-size:50px;
margin-bottom:10px;
}

/* WHATSAPP */

.whatsapp{
position:fixed;
bottom:25px;
right:25px;
width:65px;
height:65px;
border-radius:50%;
background:#25D366;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
color:white;
z-index:999;
}

/* RESPONSIVE */

@media(max-width:992px){

.container,
.founder-content,
.contact-box{
grid-template-columns:1fr;
}

.services-grid,
.team-grid{
grid-template-columns:1fr;
}

.gallery-grid{
grid-template-columns:1fr;
}

.stats{
grid-template-columns:repeat(2,1fr);
gap:40px;
}

.hero h1{
font-size:55px;
}

.about-text h2,
.founder-text h2,
.contact-info h2{
font-size:42px;
}

.services h2,
.team h2,
.gallery h2,
.brands h2{
font-size:42px;
}

.menu{
display:none;
}
}