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

body{
    font-family:'Inter', sans-serif;
    background:#0b0b0b;
    color:#f5f5f5;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    background:linear-gradient(135deg,#0a0a0a,#111111);
    overflow:hidden;
}

.overlay{
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top right, rgba(176,135,65,0.15), transparent 40%);
}

.hero-content{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    padding:80px 0;
    flex-wrap:wrap;
}

.hero-text{
    flex:1;
    min-width:300px;
}

.badge{
    display:inline-block;
    background:#b08b41;
    color:#111;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.hero-text h1{
    font-family:'Playfair Display', serif;
    font-size:3.5rem;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-text p{
    font-size:1.1rem;
    color:#d0d0d0;
    margin-bottom:30px;
    max-width:600px;
}

.btn-primary{
    display:inline-block;
    background:#b08b41;
    color:#111;
    text-decoration:none;
    padding:16px 30px;
    border-radius:8px;
    font-weight:700;
    transition:0.3s;
}

.btn-primary:hover{
    transform:translateY(-2px);
    opacity:0.9;
}

.oab{
    margin-top:25px;
    color:#b08b41;
    font-weight:600;
}

.hero-image img{
    width:420px;
    max-width:100%;
    border-radius:18px;
    border:3px solid #b08b41;
    box-shadow:0 0 40px rgba(176,139,65,0.25);
}

section{
    padding:90px 0;
}

h2{
    font-family:'Playfair Display', serif;
    font-size:2.5rem;
    margin-bottom:40px;
    color:#b08b41;
    text-align:center;
}

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

.card{
    background:#141414;
    border:1px solid rgba(176,139,65,0.2);
    padding:30px;
    border-radius:16px;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
    border-color:#b08b41;
}

.card h3{
    color:#b08b41;
    margin-bottom:15px;
}

.about{
    background:#101010;
}

.about-content{
    max-width:800px;
    text-align:center;
}

.about p{
    margin-bottom:20px;
    color:#d5d5d5;
}

.cta-final{
    text-align:center;
}

.cta-final p{
    margin-bottom:30px;
    color:#d0d0d0;
}

footer{
    border-top:1px solid rgba(176,139,65,0.15);
    padding:30px 0;
    text-align:center;
    color:#9d9d9d;
    font-size:0.95rem;
}

@media(max-width:768px){

.hero-text h1{
    font-size:2.4rem;
}

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

.hero-text p{
    margin:auto auto 30px auto;
}

}
