
:root{
--bg:#0e0f13;
--deep-plum:#311327;
--lavender:#b7aac9;
--olive:#84873a;
--gold:#b89c72;
--emerald:#0e483e;
--rose:#6c455c;
--soft:#f3f1f6;
}

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

body{
font-family:'Inter',sans-serif;
background:linear-gradient(180deg,#0f1117,#171922);
color:white;
overflow-x:hidden;
}

.cursor-glow{
position:fixed;
width:350px;
height:350px;
background:radial-gradient(circle,var(--emerald),transparent 70%);
filter:blur(70px);
opacity:0.25;
pointer-events:none;
z-index:0;
}

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
padding:24px 7%;
display:flex;
justify-content:space-between;
align-items:center;
backdrop-filter:blur(16px);
background:rgba(0,0,0,0.35);
border-bottom:1px solid rgba(255,255,255,0.08);
z-index:999;
}

.logo{
font-size:38px;
font-family:'Cormorant Garamond',serif;
font-weight:700;
color:white;
}

.logo span{
color:var(--gold);
}

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

nav a{
text-decoration:none;
color:#ddd;
font-weight:500;
transition:0.3s;
}

nav a:hover{
color:var(--gold);
}

.cta-btn,.primary-btn{
padding:14px 28px;
border-radius:18px;
background:linear-gradient(135deg,var(--emerald),var(--gold));
color:white;
text-decoration:none;
font-weight:600;
box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.secondary-btn{
padding:14px 28px;
border-radius:18px;
border:1px solid rgba(255,255,255,0.2);
text-decoration:none;
color:white;
}

.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:space-between;
padding:140px 7%;
position:relative;
background:
radial-gradient(circle at top right, rgba(184,156,114,0.25), transparent 30%),
radial-gradient(circle at left, rgba(14,72,62,0.3), transparent 35%),
linear-gradient(145deg,#0d1016,#181b24);
}

.hero-content{
max-width:720px;
position:relative;
z-index:2;
}

.eyebrow,.section-heading span{
letter-spacing:4px;
font-size:12px;
font-weight:700;
color:var(--gold);
}

.hero h1{
font-size:92px;
line-height:0.95;
font-family:'Cormorant Garamond',serif;
margin:24px 0;
}

.hero p{
font-size:21px;
color:#c9c9d3;
max-width:650px;
line-height:1.8;
}

.hero-buttons{
display:flex;
gap:18px;
margin-top:38px;
flex-wrap:wrap;
}

.floating-card{
position:relative;
width:340px;
padding:38px;
background:rgba(255,255,255,0.06);
backdrop-filter:blur(18px);
border:1px solid rgba(255,255,255,0.12);
border-radius:30px;
box-shadow:0 20px 60px rgba(0,0,0,0.4);
animation:float 5s ease-in-out infinite;
}

.mini-title{
color:var(--gold);
letter-spacing:2px;
font-size:12px;
}

.mini-price{
font-size:54px;
font-weight:700;
margin:14px 0;
font-family:'Cormorant Garamond',serif;
}

section{
padding:120px 7%;
position:relative;
z-index:2;
}

.section-heading{
text-align:center;
margin-bottom:70px;
}

.section-heading h2{
font-size:64px;
font-family:'Cormorant Garamond',serif;
margin-top:14px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:28px;
}

.card{
padding:42px;
border-radius:30px;
background:linear-gradient(145deg,rgba(255,255,255,0.05),rgba(255,255,255,0.02));
border:1px solid rgba(255,255,255,0.08);
backdrop-filter:blur(18px);
transition:0.4s;
}

.card:hover{
transform:translateY(-10px);
border-color:rgba(184,156,114,0.4);
}

.card h3{
font-size:34px;
font-family:'Cormorant Garamond',serif;
margin-bottom:18px;
}

.card p{
color:#c5c5d0;
line-height:1.8;
}

.about{
background:linear-gradient(180deg,#151821,#101117);
}

.glass-panel{
max-width:1000px;
margin:auto;
padding:60px;
border-radius:34px;
background:rgba(255,255,255,0.05);
backdrop-filter:blur(18px);
border:1px solid rgba(255,255,255,0.08);
font-size:22px;
line-height:1.9;
color:#d7d7df;
}

.palette-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
margin-top:50px;
}

.palette-grid img{
width:100%;
border-radius:24px;
height:250px;
object-fit:cover;
transition:0.4s;
}

.palette-grid img:hover{
transform:scale(1.04);
}

.contact{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
background:linear-gradient(180deg,#0d1016,#141821);
}

.contact-left h2{
font-size:72px;
font-family:'Cormorant Garamond',serif;
margin:16px 0;
}

.contact-left p{
color:#c7c7d2;
font-size:18px;
}

.contact-card{
margin-top:24px;
padding:28px;
border-radius:26px;
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.08);
}

.contact-card h4{
margin-bottom:10px;
font-size:24px;
}

.contact-form{
padding:40px;
border-radius:34px;
background:rgba(255,255,255,0.05);
backdrop-filter:blur(16px);
border:1px solid rgba(255,255,255,0.08);
display:flex;
flex-direction:column;
gap:18px;
}

.contact-form input,
.contact-form textarea{
padding:18px;
border-radius:18px;
background:rgba(255,255,255,0.06);
border:1px solid rgba(255,255,255,0.08);
color:white;
font-size:16px;
}

.contact-form textarea{
height:180px;
resize:none;
}

.contact-form button{
padding:18px;
border:none;
border-radius:18px;
background:linear-gradient(135deg,var(--emerald),var(--gold));
color:white;
font-size:16px;
font-weight:700;
cursor:pointer;
}

.footer{
padding:60px 7%;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
background:#0b0c10;
border-top:1px solid rgba(255,255,255,0.06);
}

.footer h3{
font-size:34px;
font-family:'Cormorant Garamond',serif;
margin-bottom:16px;
}

.footer h4{
margin-bottom:12px;
}

.footer p{
color:#aeb1bc;
line-height:1.8;
}

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

@media(max-width:1000px){

.hero{
flex-direction:column;
gap:60px;
text-align:center;
}

.hero h1{
font-size:60px;
}

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

.contact-left h2{
font-size:52px;
}

.navbar{
flex-direction:column;
gap:18px;
}

nav{
flex-wrap:wrap;
justify-content:center;
}
}
