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

body{
    font-family:'Inter',sans-serif;
    color:#222;
    background:#f8f7f4;
    line-height:1.7;
}

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(99,55,97,.95);
    backdrop-filter:blur(10px);
    border-bottom:1px solid #ddd;
    z-index:100;
}

nav{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 40px;
}

.logo{
    font-family:"Cormorant Garamond",serif;
    font-size:2rem;
    color:white;
}

nav ul{
    display:flex;
    list-style:none;
    gap:35px;
}

nav a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

nav a:hover{
    opacity:.6;
}

.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:120px 30px 60px;
}

.hero-content{
    max-width:700px;
}

.hero h1{
    font-family:"Cormorant Garamond",serif;
    font-size:4.5rem;
    font-weight:500;
    margin-bottom:20px;
}

.hero p{
    font-size:1.15rem;
    color:#555;
    margin-bottom:40px;
}

.button{
    display:inline-block;
    padding:16px 36px;
    background:#222;
    color:white;
    text-decoration:none;
    border-radius:40px;
    transition:.3s;
}

.button:hover{
    background:#444;
}

section{
    max-width:1100px;
    margin:auto;
    padding:100px 30px;
}

h2{
    font-family:"Cormorant Garamond",serif;
    font-size:3rem;
    margin-bottom:25px;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.placeholder{
    background:#ddd;
    aspect-ratio:1;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#777;
    font-size:1.1rem;
}

.contact{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

input,
textarea{
    padding:15px;
    border:1px solid #ccc;
    font-family:inherit;
    background:white;
}

textarea{
    height:180px;
}

button{
    padding:16px;
    border:none;
    background:#222;
    color:white;
    cursor:pointer;
}

footer{
    text-align:center;
    padding:40px;
    border-top:1px solid #ddd;
    color:#666;
}

@media(max-width:800px){

nav{
flex-direction:column;
gap:20px;
}

.hero h1{
font-size:3rem;
}

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

}
