/* ===== GLOBAL ===== */

*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:'Open Sans', sans-serif;
    color:#2B2B2B;
    line-height:1.75;
    background:white;
}

h1,h2,h3{
    font-family:'Playfair Display', serif;
    letter-spacing:.5px;
}

.container{
    width:88%;
    max-width:1250px;
    margin:auto;
}

.section{
    padding:100px 0;
}

/* ===== STICKY NAV ===== */

nav{
    position:sticky;
    top:0;
    z-index:999;
    background:#2B2B2B;
    padding:20px 0;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

nav .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
     flex-wrap:wrap;
}

.logo{
    color:white;
    font-size:20px;
    font-weight:600;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:30px;
    font-weight:500;
}

nav a:hover{
    color:#B89B5E;
}

/* ===== PREMIUM HERO ===== */

.hero{
    background:linear-gradient(rgba(43,43,43,.92), rgba(43,43,43,.92)),
    url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1950&q=80');
    background-size:cover;
    background-position:center;
    color:white;
    padding:160px 0;
}

.hero h1{
    font-size:52px;
    max-width:800px;
}

.hero p{
    max-width:650px;
    font-size:18px;
}

/* ===== BUTTON ===== */

.button{
    display:inline-block;
    background:#B89B5E;
    color:white;
    padding:16px 32px;
    text-decoration:none;
    margin-top:25px;
    border-radius:3px;
    font-weight:600;
    letter-spacing:.5px;
    transition:.25s;
}

.button:hover{
    background:#a88c50;
    transform:translateY(-2px);
}

/* ===== TRUST BAR ===== */

.trust-bar{
    background:#F7F7F7;
    padding:40px 0;
    text-align:center;
    font-weight:600;
}

/* ===== CARDS ===== */

.cards{
    display:flex;
    gap:60px;
    margin-top:40px;
    flex-wrap:wrap;
}

.card{
    flex:1;
    min-width:280px;
    padding:35px;
    border-radius:6px;
    background:white;
    box-shadow:0 8px 30px rgba(0,0,0,.05);
}

.card h3{
    margin-top:0;
}

/* ===== ATTORNEY ===== */

.attorney{
    display:flex;
    gap:60px;
    align-items:center;
    flex-wrap:wrap;
}

.attorney img{
    width:320px;
    border-radius:6px;
}

/* ===== DARK CTA ===== */

.cta{
    background:#2B2B2B;
    color:white;
    text-align:center;
    padding:90px 0;
}

/* ===== FORM ===== */

form{
    max-width:700px;
}

form input, form textarea{
    width:100%;
    padding:14px;
    margin-bottom:18px;
    border:1px solid #ddd;
    border-radius:3px;
    font-size:16px;
}

form button{
    background:#B89B5E;
    color:white;
    padding:14px 28px;
    border:none;
    font-size:16px;
    cursor:pointer;
}

/* ===== FOOTER ===== */

footer{
    background:#111;
    color:#bbb;
    text-align:center;
    padding:30px 0;
    font-size:14px;
}

/* ===== MOBILE ===== */

/* ===== MOBILE & TABLET ===== */

@media (max-width:1024px){

.container{
    width:92%;
}

/* STACK NAV */
nav .container{
    flex-direction:column;
    gap:15px;
}

/* HERO */
.hero{
    padding:110px 0;
}

.hero h1{
    font-size:36px;
}

.hero p{
    font-size:17px;
}

/* CARDS STACK */
.cards{
    flex-direction:column;
    gap:25px;
}

/* ATTORNEY STACK */
.attorney{
    flex-direction:column;
    text-align:center;
}

.attorney img{
    width:100%;
    max-width:380px;
}

/* FORM FULL WIDTH */
form{
    max-width:100%;
}

}


/* ===== SMALL PHONES ===== */

@media (max-width:600px){

.hero{
    padding:90px 0;
}

.hero h1{
    font-size:30px;
}

.section{
    padding:55px 0;
}

.button{
    width:100%;
    text-align:center;
}

nav a{
    margin-left:15px;
    font-size:14px;
}

.logo{
    text-align:center;
}

}
