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

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:#0f0f0f;
color:#fff;
overflow-x:hidden;
}

a{
text-decoration:none;
color:inherit;
}

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:22px 6%;
background:rgba(0,0,0,0.55);
backdrop-filter:blur(10px);
z-index:1000;
flex-wrap:wrap;
gap:20px;
}

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

nav{
display:flex;
gap:24px;
align-items:center;
flex-wrap:wrap;
justify-content:flex-end;
max-width:100%;
}

nav a{
font-size:14px;
font-weight:500;
transition:.3s;
white-space:nowrap;
}

nav a:hover{
color:#c8a46b;
}

.hero{
height:100vh;
display:flex;
align-items:center;
padding:160px 8% 80px;
background:
linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=2000')
center/cover no-repeat;
position:relative;
}

.overlay{
position:absolute;
inset:0;
}

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

.hero h1{
font-family:'Playfair Display',serif;
font-size:clamp(3rem,7vw,6rem);
line-height:.95;
margin-bottom:30px;
max-width:1200px;
overflow-wrap:break-word;
}

.hero p{
font-size:1.1rem;
line-height:1.9;
color:#ddd;
max-width:650px;
margin-bottom:40px;
}

.hero-buttons{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.btn-primary,
.btn-secondary,
.pricing-btn,
button{
padding:18px 34px;
border-radius:999px;
font-weight:700;
display:inline-flex;
align-items:center;
justify-content:center;
transition:.3s;
border:none;
cursor:pointer;
min-width:240px;
font-size:14px;
}

.btn-primary,
.pricing-btn,
button{
background:#c8a46b;
color:#111;
}

.btn-secondary{
border:1px solid rgba(255,255,255,0.4);
color:#fff;
background:transparent;
}

.membership{
padding:140px 8%;
background:#111;
}

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

.section-heading span{
color:#c8a46b;
text-transform:uppercase;
letter-spacing:2px;
font-size:13px;
}

.section-heading h2{
font-family:'Playfair Display',serif;
font-size:clamp(2.5rem,5vw,4.5rem);
margin:20px 0;
}

.section-heading p{
color:#ccc;
line-height:1.9;
max-width:700px;
margin:auto;
}

.pricing-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:40px;
}

.pricing-card{
background:#1a1a1a;
padding:50px;
border-radius:28px;
border:1px solid rgba(255,255,255,0.08);
position:relative;
}

.featured{
border:1px solid #c8a46b;
}

.badge{
position:absolute;
top:-12px;
right:30px;
background:#c8a46b;
color:#111;
padding:8px 16px;
border-radius:999px;
font-size:12px;
font-weight:700;
}

.pricing-card h3{
font-family:'Playfair Display',serif;
font-size:2rem;
margin-bottom:20px;
}

.price{
font-size:3rem;
font-weight:700;
margin-bottom:30px;
}

.price span{
font-size:1rem;
color:#999;
}

.pricing-card ul{
list-style:none;
margin-bottom:35px;
}

.pricing-card li{
margin-bottom:14px;
color:#ddd;
line-height:1.7;
}

.refund-note{
margin-top:18px;
font-size:.9rem;
color:#c8a46b;
font-weight:600;
}

.contact-section{
padding:140px 8%;
background:#0d0d0d;
}

.contact-inner{
max-width:700px;
margin:auto;
text-align:center;
}

.contact-inner span{
color:#c8a46b;
text-transform:uppercase;
letter-spacing:2px;
font-size:13px;
}

.contact-inner h2{
font-family:'Playfair Display',serif;
font-size:clamp(2.5rem,5vw,4.5rem);
margin:20px 0 40px;
}

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

input,
textarea{
padding:18px;
border:none;
border-radius:16px;
background:#1c1c1c;
color:#fff;
font-size:1rem;
font-family:inherit;
}

textarea{
min-height:180px;
resize:none;
}

button{
width:auto;
align-self:flex-start;
}

footer{
padding:60px 8%;
background:#080808;
text-align:center;
}

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

.footer-links{
display:flex;
justify-content:center;
gap:24px;
flex-wrap:wrap;
margin-bottom:25px;
}

.footer-links a{
color:#fff;
transition:.3s;
}

.footer-links a:hover{
color:#c8a46b;
}

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

.seller-footer{
margin-top:30px;
font-size:12px;
color:#888;
text-transform:uppercase;
letter-spacing:.08em;
line-height:1.8;
}

@media(max-width:900px){

.navbar{
justify-content:center;
text-align:center;
}

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

nav{
justify-content:center;
}

.hero{
padding:180px 24px 80px;
}

.hero h1{
font-size:clamp(2.5rem,12vw,4rem);
line-height:1;
}

.btn-primary,
.btn-secondary,
.pricing-btn,
button{
width:100%;
min-width:unset;
}

.pricing-card{
padding:40px 30px;
}

}
