*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
background:#F6F3EE;
color:#111;
line-height:1.8;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1400px;
margin:auto;
}

/* HEADER */

.header{
padding:25px 0;
background:#F6F3EE;
position:sticky;
top:0;
z-index:100;
}

.header .container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-family:'Cormorant Garamond',serif;
font-size:40px;
font-weight:600;
text-decoration:none;
color:#111;
}

nav ul{
display:flex;
gap:30px;
list-style:none;
}

nav a{
text-decoration:none;
color:#111;
font-size:15px;
}

/* HERO */

.hero{
max-width:1400px;
margin:auto;
padding:40px;
min-height:85vh;

display:flex;
align-items:center;
justify-content:space-between;
gap:80px;
}

.hero-left{
flex:1;
max-width:700px;
}

.hero-top{
font-size:13px;
letter-spacing:3px;
text-transform:uppercase;
color:#777;
}

.hero h1{
font-family:'Cormorant Garamond',serif;
font-size:88px;
line-height:0.95;
font-weight:600;
margin:25px 0;
}

.hero-desc{
font-size:20px;
line-height:1.8;
color:#555;
max-width:650px;
}

.hero-buttons{
display:flex;
gap:15px;
margin-top:35px;
}

.btn-primary{
background:#111;
color:#fff;
padding:15px 30px;
text-decoration:none;
}

.btn-secondary{
border:1px solid #111;
color:#111;
padding:15px 30px;
text-decoration:none;
}

.hero-right{
width:360px;
flex-shrink:0;
}

.hero-right video{
width:100%;
height:620px;
object-fit:cover;
border-radius:20px;
display:block;
box-shadow:0 20px 60px rgba(0,0,0,.12);
}

/* STATS */

.stats{
padding:80px 0;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
text-align:center;
}

.stats-grid div{
background:#fff;
padding:40px 20px;
}

.stats h3{
font-size:48px;
font-family:'Cormorant Garamond',serif;
}

/* ABOUT */

.about{
padding:120px 0;
}

.about h2{
font-size:58px;
line-height:1.1;
max-width:900px;
font-family:'Cormorant Garamond',serif;
margin-bottom:25px;
}

.about p{
max-width:900px;
font-size:20px;
}

/* FOOTER */

.footer{
margin-top:100px;
padding:80px 0;
background:#111;
color:#fff;
text-align:center;
}

.footer h3{
font-family:'Cormorant Garamond',serif;
font-size:40px;
margin-bottom:20px;
}

/* MOBILE */

@media(max-width:768px){

.header .container{
flex-direction:column;
gap:15px;
}

nav ul{
gap:15px;
flex-wrap:wrap;
justify-content:center;
}

.hero{
flex-direction:column;
padding:25px 20px;
gap:25px;
min-height:auto;
}

.hero-right{
width:140px;
order:-1;
}

.hero-right video{
width:140px;
height:210px;
border-radius:14px;
}

.hero h1{
font-size:48px;
line-height:0.95;
}

.hero-desc{
font-size:16px;
}

.hero-buttons{
flex-direction:column;
}

.stats-grid{
grid-template-columns:1fr 1fr;
}

.about{
padding:80px 20px;
}

.about h2{
font-size:38px;
}

.about p{
font-size:16px;
}

}
