* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Georgia, "Times New Roman", serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f8f7f3;
    color: #222;
    overflow-x: hidden;
}

header {
    background: #111827;
    color: white;
    padding: 25px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo {
    font-size: 30px;
    font-weight: bold;
    color: #d4af37;
    white-space: nowrap;
}

.logo span {
    color: white;
}

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

nav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
}

nav a:hover {
    color: #d4af37;
}

.consult {
    background: #d4af37;
    color: #111827;
    padding: 14px 25px;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    background: #d4af37;
    color: #111827;
    border: none;
    padding: 10px 14px;
    font-size: 22px;
}

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 80px 7%;
    color: white;
    background:
        linear-gradient(rgba(17, 24, 39, .82),
            rgba(17, 24, 39, .82)),
        url('./assets/imgs/large-law.jpeg') center/cover;
}

.hero-content {
    max-width: 800px;
}

.small-text,
.label {
    color: #d4af37;
    letter-spacing: 3px;
    font-size: 13px;
}

.hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.1;
    margin: 30px 0;
}

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

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

.btn,
.outline {
    padding: 17px 35px;
    text-decoration: none;
    font-weight: bold;
}

.btn {
    background: #d4af37;
    color: #111827;
}

.outline {
    border: 1px solid #d4af37;
    color: #d4af37;
}

.trust {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 45px;
    color: #eee;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #d4af37;
}

.stats div {
    padding: 45px 20px;
    text-align: center;
}

.stats h2 {
    font-size: 45px;
}

.stats p {
    color: #333;
}

.practice {
    padding: 110px 7%;
}

.practice>h2 {
    font-size: clamp(40px, 5vw, 60px);
    max-width: 800px;
    margin-top: 20px;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.card {
    background: white;
    padding: 35px;
    border-top: 5px solid #d4af37;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.card h3 {
    color: #111827;
    margin-bottom: 15px;
    font-size: 24px;
}

.card p {
    color: #666;
    line-height: 1.6;
}

.about {
    background: #111827;
    color: white;
    padding: 110px 7%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.about h2 {
    font-size: 60px;
    margin: 25px 0;
}

.about p {
    line-height: 1.8;
    color: #ddd;
    font-size: 18px;
}

.about-list li {
    list-style: none;
    margin: 20px 0;
    font-size: 20px;
    color: #d4af37;
}

.attorneys {
    padding: 110px 7%;
}

.attorneys h2 {
    font-size: 55px;
    margin: 20px 0 50px;
}

.attorney-box {
    display: flex;
    align-items: center;
    gap: 50px;
}

.attorney-box img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
}

.attorney-box h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

.attorney-box p {
    max-width: 600px;
    color: #555;
    line-height: 1.7;
}

.attorney-box a {
    display: inline-block;
    margin-top: 25px;
    color: #111827;
    font-weight: bold;
}

.process {
    background: #111827;
    color: white;
    padding: 110px 7%;
}

.process h2 {
    font-size: 55px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.steps span {
    color: #d4af37;
    font-size: 45px;
}

.steps h3 {
    margin: 20px 0;
}

.steps p {
    color: #ccc;
}

.reviews {
    padding: 100px 7%;
    text-align: center;
}

.reviews h2 {
    font-size: 55px;
}

.review {
    max-width: 650px;
    margin: 30px auto;
    background: white;
    padding: 35px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.review p {
    font-size: 20px;
}

.review strong {
    display: block;
    margin-top: 20px;
    color: #d4af37;
}

.contact {
    background: #eee;
    padding: 100px 7%;
    text-align: center;
}

.contact h2 {
    font-size: 50px;
}

.contact p {
    margin: 20px;
}

form {
    max-width: 550px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
textarea {
    padding: 16px;
    border: 1px solid #ccc;
    font-size: 16px;
}

textarea {
    height: 140px;
}

button {
    background: #111827;
    color: white;
    padding: 16px;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

footer {
    background: #000;
    color: white;
    padding: 40px 7%;
    text-align: center;
}

footer h3 {
    color: #d4af37;
    margin-bottom: 10px;
}

@media(max-width:1000px) {

    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
    }

    nav.open {
        display: flex;
    }

    header {
        flex-wrap: wrap;
    }

    .hero {
        padding: 70px 5%;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .practice-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .attorney-box {
        flex-direction: column;
        text-align: center;
    }

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

}

@media(max-width:1000px) {

    header {
        padding: 20px 5%;
    }

    .logo {
        font-size: 22px;
    }

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

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

    .hero p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn,
    .outline {
        width: 100%;
        text-align: center;
    }

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

    .practice,
    .attorneys,
    .contact,
    .reviews {
        padding: 70px 5%;
    }

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

    .practice h2,
    .about h2,
    .attorneys h2,
    .process h2,
    .reviews h2,
    .contact h2 {
        font-size: 38px;
    }

    .about {
        padding: 70px 5%;
    }

    .attorney-box img {
        width: 180px;
        height: 180px;
    }

}

@media(max-width:350px) {

    .logo {
        font-size: 19px;
    }

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

    .consult {
        font-size: 14px;
    }

}