
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
:root{
    --charcoal:#202326;
    --slate:#343a40;
    --graphite:#4b535a;
    --soft-grey:#f1f2f0;
    --mist:#e4e5e2;
    --white:#ffffff;
    --accent:#b7a36a;
    --text:#25282b;
    --muted:#616971;
}
body{
    background:var(--soft-grey);
    color:var(--text);
    line-height:1.65;
}
header{
    background:linear-gradient(135deg,var(--charcoal),var(--slate));
    color:var(--white);
    padding:18px 8%;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 8px 28px rgba(0,0,0,0.16);
    border-bottom:1px solid rgba(255,255,255,0.08);
}
nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;
}
nav h1{
    font-size:28px;
    letter-spacing:2.5px;
    font-weight:700;
}
nav ul{
    display:flex;
    list-style:none;
    gap:26px;
}
nav ul li a{
    color:rgba(255,255,255,0.88);
    text-decoration:none;
    font-weight:500;
    letter-spacing:.3px;
    transition:.25s ease;
}
nav ul li a:hover{
    color:var(--accent);
}
.hero{
    min-height:88vh;
    background:
    linear-gradient(120deg,rgba(32,35,38,.88),rgba(52,58,64,.68),rgba(32,35,38,.72)),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1400&auto=format&fit=crop') center/cover;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:var(--white);
    padding:20px;
}
.hero-content{
    max-width:980px;
}
.hero-content h2{
    font-size:58px;
    line-height:1.08;
    margin-bottom:20px;
    letter-spacing:-1px;
}
.hero-content p{
    font-size:22px;
    max-width:820px;
    margin:0 auto 34px;
    color:rgba(255,255,255,0.88);
}
.btn{
    background:var(--accent);
    color:#161616;
    padding:14px 30px;
    border-radius:999px;
    text-decoration:none;
    font-weight:700;
    display:inline-block;
    box-shadow:0 12px 28px rgba(0,0,0,0.22);
    transition:.25s ease;
}
.btn:hover{
    transform:translateY(-2px);
    background:#c8b777;
}
.section{
    padding:82px 8%;
}
.section-title{
    text-align:center;
    margin-bottom:50px;
}
.section-title h2{
    color:var(--charcoal);
    font-size:38px;
    letter-spacing:-.5px;
    position:relative;
    display:inline-block;
    padding-bottom:14px;
}
.section-title h2:after{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    transform:translateX(-50%);
    width:72px;
    height:3px;
    background:var(--accent);
    border-radius:10px;
}
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}
.card{
    background:rgba(255,255,255,0.92);
    padding:32px;
    border-radius:18px;
    box-shadow:0 12px 32px rgba(32,35,38,0.08);
    border:1px solid rgba(32,35,38,0.08);
    transition:.28s ease;
}
.card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(32,35,38,0.14);
}
.card h3{
    color:var(--slate);
    margin-bottom:15px;
    font-size:22px;
}
.card p,
.about p{
    color:var(--muted);
}
.about{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:44px;
    align-items:center;
}
.about img{
    width:100%;
    border-radius:20px;
    box-shadow:0 18px 44px rgba(32,35,38,0.15);
    filter:grayscale(20%) contrast(1.02);
}
.contact-box{
    background:linear-gradient(135deg,var(--charcoal),var(--graphite));
    color:var(--white);
    padding:42px;
    border-radius:22px;
    box-shadow:0 18px 44px rgba(32,35,38,0.18);
    max-width:850px;
    margin:0 auto;
    border:1px solid rgba(255,255,255,0.08);
}
.contact-box h3{
    letter-spacing:1.5px;
    font-size:24px;
}
.contact-box p{
    color:rgba(255,255,255,0.88);
    margin-bottom:8px;
}
.contact-box a{
    color:var(--accent);
    text-decoration:none;
    font-weight:600;
}
.email-second{
    display:inline-block;
    margin-left:52px;
    margin-top:3px;
}
footer{
    background:#191b1d;
    color:rgba(255,255,255,0.82);
    text-align:center;
    padding:25px;
    border-top:1px solid rgba(255,255,255,0.08);
}
@media(max-width:768px){
    nav{
        flex-direction:column;
        gap:15px;
    }
    nav h1{
        font-size:24px;
        text-align:center;
    }
    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
    }
    .hero-content h2{
        font-size:38px;
    }
    .hero-content p{
        font-size:18px;
    }
    .section{
        padding:60px 6%;
    }
    .about{
        grid-template-columns:1fr;
    }
    .email-second{
        margin-left:0;
    }
}
