/* =========================================================
   DUTTA'S LAW ASSOCIATES — CLEAN STYLESHEET
   Refactored without changing the final cascade, visual design,
   desktop/mobile layouts, or website functionality.
   ========================================================= */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Times New Roman", Times, serif;
    background:#F6F0E8;
    color:#2B241F;
    overflow-x:visible;
}

.navbar{

    width:100%;
    padding:30px 80px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:#F6F0E8;

    position:fixed;
    top:0;
    left:0;

    z-index:999;

}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
    cursor:pointer;
    color:inherit;
}

.logo-icon{
    width:90px;
    height:auto;
}

.logo-text{
    display:flex;
    flex-direction:column;
}
.logo{
    transition:transform .25s ease;
}

.logo:hover{
    transform:scale(1.02);
}

.logo-line1{
    font-family: "Times New Roman", Times, serif;
    font-size:30px;
    font-weight:700;
    color:#2F241D;
    line-height:1;
}

.logo-line2{
    font-family: "Times New Roman", Times, serif;
    font-size:22px;
    font-weight:400;
    letter-spacing:1px;
    color:#2F241D;
    line-height:1.1;
}
.nav-links{

    list-style:none;

    display:flex;

    gap:40px;

    align-items:center;

}

.nav-links li{

    list-style:none;

}

.nav-links a{

    text-decoration:none;

    color:#3A2D23;

    font-size:14px;

    font-weight:500;

    letter-spacing:1px;

    transition:.3s;

    position:relative;

}

.nav-links a:hover{

    color:#A98252;

}

.nav-links a.active::after{

    content:"";

    position:absolute;

    width:100%;

    height:2px;

    background:#A98252;

    bottom:-8px;

    left:0;

}

.consult-btn{
    background:#1F1B18;
    color:#fff;
    padding:15px 32px;
    text-decoration:none;
    letter-spacing:1px;
    font-size:13px;
    font-weight:600;
    border:1px solid #1F1B18;
    display:inline-block;
    transition:.3s ease;
}

.consult-btn:hover{
    background:#A67C52;
    border-color:#A67C52;
    color:#fff;
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #F7F3ED;
}

.hero-container {
    position: relative;

    width: 100%;
    max-width: none;

    margin: 0;

    min-height: 100vh;

    display: flex;
    align-items: center;

    padding-top: 120px;
    padding-bottom: 60px;

    box-sizing: border-box;
}

.hero-left {
    position: relative;
    z-index: 5;

    width: 48%;
    flex: 0 0 48%;

    margin-left: 9.5%;
}

.hero-right {
    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;

    width: 58vw;
    height: 100%;

    margin: 0;
    padding: 0;

    z-index: 1;

    overflow: hidden;
}

.hero-right img {
    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 100%;

    max-width: none;

    margin: 0;
    padding: 0;

    display: block;

    object-fit: cover;
    object-position: right center;

    transform: none;

    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0,0,0,0.08) 7%,
        rgba(0,0,0,0.35) 15%,
        rgba(0,0,0,0.72) 25%,
        black 38%,
        black 100%
    );

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0,0,0,0.08) 7%,
        rgba(0,0,0,0.35) 15%,
        rgba(0,0,0,0.72) 25%,
        black 38%,
        black 100%
    );
}

.hero-right::after {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    pointer-events: none;

    background: linear-gradient(
        to right,
        #F7F3ED 0%,
        rgba(247,243,237,0.95) 7%,
        rgba(247,243,237,0.70) 15%,
        rgba(247,243,237,0.35) 25%,
        rgba(247,243,237,0.08) 38%,
        transparent 52%
    );
}

.hero-tag{

    display:inline-block;

    color:#A98252;

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:14px;

    margin-bottom:25px;

}

 .hero-left h1 {
    margin: 0;

    font-family: "Times New Roman", Times, serif;

    font-size: 48px;
    line-height: 1.08;

    font-weight: 700;

    color: #241B16;

    letter-spacing: -0.5px;
}

.gold-line{

    width:80px;

    height:2px;

    background:#B18957;

    margin:30px 0;

}

.hero-left p {
    max-width: 430px;

    margin: 22px 0 0;

    font-family: "Times New Roman", Times, serif;

    font-size: 18px;
    line-height: 1.55;

    font-weight: 400;

    color: #4E4338;

    text-align: left;
}
.drop-cap{

    float:left;

    font-family:"Times New Roman", Times, serif;

    font-size:58px;

    line-height:.85;

    margin-right:10px;

    margin-top:6px;

    color:#241B16;

    font-weight:bold;

}

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

.btn-dark{
    background:#1F1B18;
    color:#fff;
    text-decoration:none;
    padding:18px 38px;
    letter-spacing:1px;
    font-size:13px;
    transition:.35s ease;
}

.btn-dark:hover{
    background:#A98252;
    transform:translateY(-3px);
}

.btn-light{
    border:1px solid #1F1B18;
    color:#1F1B18;
    text-decoration:none;
    padding:18px 38px;
    letter-spacing:1px;
    font-size:13px;
    transition:.35s ease;
}

.btn-light:hover{
    background:#1F1B18;
    color:white;
    transform:translateY(-3px);
}

.section-tag{
    display:inline-block;
    color:#A98252;
    letter-spacing:3px;
    font-size:14px;
    margin-bottom:20px;
    text-transform:uppercase;
}

.practice-section{
    max-width:1250px;
    margin:auto;
    padding:80px 60px;
}

.practice-top{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;

}

.practice-heading{
    max-width:700px;
    width:100%;
    margin:0 auto;
    text-align:center;
}

.small-title{
    color:#B19152;
    font-size:14px;
    letter-spacing:2px;
    font-weight:600;
}

.practice-heading h1{
    font-family:"Times New Roman", serif;
    font-size:68px;
    line-height:1.08;
    margin:18px 0 25px;
    color:#2F241D;
    text-align:center;
}

.practice-heading p{
    font-size:20px;
    color:#555;
    line-height:1.8;
    max-width:650px;
    margin:auto;
    text-align:center;
}

.practice-page-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
}

.practice-page-card{
    display:flex;
    align-items:flex-start;
    gap:22px;
    background:#fff;
    padding:32px;
    border-radius:18px;
    box-shadow:0 8px 30px rgba(0,0,0,.05);
    transition:.3s ease;
}

.practice-page-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.10);
}

.practice-page-card .icon{
    width:72px;
    height:72px;
    border-radius:50%;
    border:2px solid #C4A46A;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    color:#B48A3C;
    background:#FFFDF8;
    flex-shrink:0;
}

.practice-page-card h3{
    font-family:"Times New Roman", serif;
    font-size:28px;
    margin-bottom:10px;
    color:#2F241D;
}

.practice-page-card p{
    color:#666;
    line-height:1.8;
    font-size:17px;
}

.practice-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:0;

    width:100%;
    max-width:1150px;
    margin:50px auto 0;

    border-top:1px solid #E5DED5;
    border-bottom:1px solid #E5DED5;
}

.practice-card{
    background:transparent;
    padding:35px 20px 45px;
    text-align:center;

    border-right:1px solid #E5DED5;
    border-radius:0;

    box-shadow:none;
    transition:.3s ease;

    min-height:250px;
}

.practice-card:last-child{
    border-right:none;
}

.practice-card:hover{
    background:#FCFAF7;
    transform:none;
    box-shadow:none;
}

.practice-icon{
    display:block;
    font-size:50px;
    color:#A67C52;
    margin-bottom:25px;
    text-align:center;
}

.practice-card h3{
    font-family:"Times New Roman", serif;
    font-size:24px;
    color:#2F241D;
    margin-bottom:18px;
    text-align:center;
}

.practice-card p{
    font-size:15px;
    color:#666;
    line-height:1.8;
    max-width:180px;
    margin:auto;
    text-align:center;
}

.practice-areas{
    width:100%;
    max-width:1250px;
    margin:0 auto;
    padding:80px 40px;
    box-sizing:border-box;
    text-align:center;
}

.practice-areas > .section-tag{
    display:block;
    text-align:center;
    margin-bottom:12px;
}

.practice-areas > h2{
    text-align:center;
    margin:0 auto 20px;
}

.practice-areas .practice-grid{
    width:100%;
    max-width:1150px;
    margin:50px auto 0;
}

@media(max-width:900px){

    .practice-top{
        flex-direction:column;
        text-align:center;
    }

    .practice-heading p{
        margin:auto;
    }

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

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

    .practice-card:nth-child(2){
        border-right:none;
    }

}

@media(max-width:600px){

    .practice-section{
        padding:60px 25px;
    }

    .practice-heading h1{
        font-size:48px;
    }

    .practice-grid{
        grid-template-columns:1fr;
        max-width:400px;
    }

    .practice-card{
        border-right:none;
        border-bottom:1px solid #E5DED5;
    }

    .practice-card:last-child{
        border-bottom:none;
    }

}

.about{
    display:flex;
    align-items:stretch;
    justify-content:space-between;
    gap:70px;
    padding:120px 8%;
    background:#F6F0E8;
}

.about-image{
    flex:1.5;
}

.about-image img,
.about-video{
    width:100%;
    height:100%;
    border-radius:8px;
    object-fit:cover;
    display:block;
}
.about-video{
    width:100%;
    height:620px;
    object-fit:cover;
    border-radius:8px;
}

.about-content{
    flex:0.9;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.about-content h2{
    font-family:"Times New Roman", Times, serif;
    font-size:52px;
    margin:20px 0;
    color:#241D17;
}

.about-content p{
    color:#5E5146;
    font-size:10px;
    line-height:1.65;
    margin-bottom:14px;
    text-align:justify;
}

.why-us{
    background:#FBF8F3;
    padding:120px 8%;
    text-align:center;
}

.why-us h2{
    font-family:"Times New Roman", Times, serif;
    font-size:48px;
    margin:15px 0 60px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.why-card{
    background:white;
    padding:40px 30px;
    border-radius:8px;
    border:1px solid #E8DED2;
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.why-card h3{
    font-family:"Times New Roman", Times, serif;
    font-size:26px;
    margin-bottom:18px;
    color:#241D17;
}

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

footer{

    transition:0.4s ease;
}
.footer-logo{
    font-family:"Times New Roman", Times, serif;
    font-size:34px;
    margin-bottom:18px;

    transition:.35s ease;
}
.copyright{

    font-size:15px;
    margin-top:10px;
    transition:.35s ease;
}

img{
    transition:.4s;
}

img:hover{
    transform:scale(1.02);
}

@media(max-width:1200px){

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

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

.hero-left h1{
    font-size:60px;
}

}

@media(max-width:900px){

.navbar{
    flex-direction:column;
    gap:20px;
    padding:20px;
}

.nav-links{
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
}

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

.hero-left{
    text-align:center;
}

.hero-left p{
    width:100%;
}

.hero-buttons{
    justify-content:center;
}

.hero-right img{
    height:500px;
}

.about{
    flex-direction:column;
}

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

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

.about-content h2,
.practice-areas h2,
.why-us h2{
    font-size:38px;
}

.hero-left h1{
    font-size:54px;
}

}

@media(max-width:600px){

.hero{
    padding-top:150px;
}

.hero-left h1{
    font-size:38px;
}

.logo{
    font-size:22px;
}

.consult-btn,
.btn-dark,
.btn-light{
    width:100%;
    text-align:center;
}

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

.hero-right img{
    height:380px;
}

}

.practice-page{

}

.consult-page{
    background:#F6F0E8;
    padding:180px 8% 100px;
}

.consult-container{
    display:flex;
    gap:70px;
    align-items:flex-start;
}

.consult-info{
    flex:1;
}

.consult-form{
    flex:1;
    background:#ffffff;
    padding:45px;
    border-radius:8px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.consult-info h1{
    font-family:"Times New Roman", Times, serif;
    font-size:60px;
    line-height:1.1;
    color:#241D17;
    margin:15px 0 30px;
}

.consult-info p{
    color:#5E5146;
    font-size:16px;
    line-height:1.9;
    margin-bottom:25px;
    text-align:justify;
}

.info-block{
    margin-top:35px;
}

.info-block h3{
    font-family:"Times New Roman", Times, serif;
    font-size:26px;
    color:#241D17;
    margin-bottom:10px;
}

.info-block p{
    margin-bottom:0;
}

.consult-info iframe{
    width:100%;
    height:280px;
    margin-top:35px;
    border:none;
    border-radius:8px;
}

.consult-form h2{
    font-family:"Times New Roman", Times, serif;
    font-size:40px;
    color:#241D17;
    margin-bottom:35px;
}

.form-row{
    display:flex;
    gap:20px;
}

.form-row input{
    flex:1;
}

.consult-form input,
.consult-form textarea,
.consult-form select{

    width:100%;

    padding:16px 18px;

    margin-bottom:20px;

    border:1px solid #DDD3C7;

    border-radius:5px;

    font-size:15px;

    font-family:"Poppins",sans-serif;

    background:#fff;

    outline:none;

    transition:.3s;

}

.consult-form input:focus,
.consult-form textarea:focus,
.consult-form select:focus{

    border-color:#A98252;

}

.consult-form textarea{

    resize:vertical;

}

.upload-label{

    display:block;

    margin-bottom:10px;

    font-weight:500;

    color:#444;

}

.consult-submit{

    width:100%;

    background:#1F1B18;

    color:white;

    border:none;

    padding:18px;

    cursor:pointer;

    font-size:15px;

    letter-spacing:1px;

    transition:.35s;

}

.consult-submit:hover{

    background:#A98252;

}

.consult-form input[type=file]{

    padding:12px;

    border:none;

    margin-bottom:30px;

}

@media(max-width:1100px){

.consult-container{

    flex-direction:column;

}

.form-row{

    flex-direction:column;

}

.consult-info h1{

    font-size:48px;

}

.consult-form{

    width:100%;

}

}
.nav-actions{
    display:flex;
    align-items:center;
    gap:18px;
}

.review-btn{

    padding:15px 28px;

    border:1px solid #2B241F;

    color:#2B241F;

    text-decoration:none;

    font-size:13px;

    letter-spacing:1px;

    font-weight:600;

    transition:.3s;

}

.review-btn:hover{

    background:#2B241F;

    color:#fff;

}

.review-hero{

    display:grid;

    grid-template-columns:1fr 520px;

}

.review-left h1{

    font-family:"Times New Roman", Times, serif;

    font-size:72px;

    line-height:1.05;

    color:#241B16;

    margin:25px 0;

}

.review-left p{

    font-size:20px;

    line-height:1.9;

    color:#5A4A3A;

    max-width:620px;

    margin-bottom:45px;

}

.review-highlights{

    display:flex;

    flex-direction:column;

}

.review-highlights div{

    display:flex;

    align-items:center;

    color:#3D3026;

}

.review-highlights i{

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#ECE1D2;

    color:#8C6A44;

}

.review-card{

    background:white;

    border-radius:18px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.review-card h2{

    font-family:"Times New Roman", Times, serif;

    color:#241B16;

}

.review-card form{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.two-column{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

}

.review-card input,
.review-card select,
.review-card textarea{

    width:100%;

    padding:18px;

    border:1px solid #D7C9B7;

    border-radius:10px;

    background:#FCFAF7;

    font-size:16px;

    font-family:"Times New Roman", Times, serif;

    transition:.35s;

}

.review-card input:focus,
.review-card select:focus,
.review-card textarea:focus{

    outline:none;

    border-color:#A67C52;

    box-shadow:0 0 12px rgba(166,124,82,.15);

}

.review-card textarea{

    resize:none;

}

.upload-area{

    border:2px dashed #C8B79E;

    border-radius:16px;

    background:#FBF8F3;

    padding:45px 25px;

    text-align:center;

    transition:.35s;

    cursor:pointer;

}

.upload-area:hover{

    border-color:#A67C52;

    background:#F8F4ED;

    transform:translateY(-3px);

}

.upload-area i{

    font-size:48px;

    color:#A67C52;

    margin-bottom:20px;

}

.upload-area h3{

    font-family:"Times New Roman", Times, serif;

    font-size:28px;

    color:#241B16;

    margin-bottom:12px;

}

.upload-area p{

    color:#7B6A58;

    font-size:15px;

    margin-bottom:20px;

}

.upload-area input{

    border:none;

    background:none;

    cursor:pointer;

}

.price-box{

    background:#F8F4ED;

    border-left:5px solid #A67C52;

    padding:25px;

    border-radius:12px;

}

.price-box h3{

    font-family:"Times New Roman", Times, serif;

    font-size:30px;

    color:#241B16;

    margin-bottom:12px;

}

.price-box p{

    font-size:16px;

    color:#5A4A3A;

    line-height:1.8;

}

.submit-btn{

    background:#241B16;

    color:white;

    border:none;

    padding:20px;

    border-radius:10px;

    font-size:16px;

    letter-spacing:1px;

    cursor:pointer;

    transition:.35s;

}

.submit-btn:hover{

    background:#A67C52;

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(166,124,82,.25);

}

.how-review-works{

    background:#F8F4ED;

    padding:120px 8%;

    text-align:center;

}

.how-review-works h2{

    font-family:"Times New Roman", Times, serif;

    font-size:54px;

    color:#241B16;

    margin-bottom:70px;

}

.steps{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}

.step{

    background:white;

    padding:45px 30px;

    border-radius:16px;

    border:1px solid #E8DED2;

    transition:.35s;

    position:relative;

}

.step:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.step span{

    width:70px;

    height:70px;

    margin:auto;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#A67C52;

    color:white;

    font-size:28px;

    font-weight:bold;

    margin-bottom:25px;

}

.step h3{

    font-family:"Times New Roman", Times, serif;

    font-size:28px;

    color:#241B16;

    margin-bottom:18px;

}

.step p{

    color:#5A4A3A;

    line-height:1.8;

}

.review-faq{

    padding:120px 8%;

    background:white;

}

.review-faq h2{

    text-align:center;

    font-family:"Times New Roman", Times, serif;

    font-size:52px;

    color:#241B16;

    margin-bottom:60px;

}

.faq-item{

    background:#FBF8F3;

    border-left:5px solid #A67C52;

    padding:35px;

    margin-bottom:30px;

    border-radius:12px;

    transition:.3s;

}

.faq-item:hover{

    transform:translateX(10px);

    box-shadow:0 12px 25px rgba(0,0,0,.06);

}

.faq-item h3{

    font-family:"Times New Roman", Times, serif;

    font-size:28px;

    color:#241B16;

    margin-bottom:18px;

}

.faq-item p{

    color:#5A4A3A;

    line-height:1.9;

}

@media(max-width:1100px){

.review-hero{

grid-template-columns:1fr;

}

.review-left{

text-align:center;

}

.review-left p{

margin:auto;

margin-bottom:45px;

}

.review-highlights{

align-items:center;

}

.steps{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:700px){

.two-column{

grid-template-columns:1fr;

}

.steps{

grid-template-columns:1fr;

}

.review-left h1{

font-size:48px;

}

.review-card{

padding:30px;

}

.review-faq h2,
.how-review-works h2{

font-size:38px;

}

}

footer{
    background:#F8F4ED;
    color:#000000;
}

.footer-logo{
    color:#000000;
}

.copyright{
    color:#000000;
}

footer a{
    color:#000000;
    text-decoration:none;
}

footer a:hover{
    color:#000000;
}

footer a:hover,
footer a:focus,
footer a:active,
.footer-logo:hover,
.copyright:hover {
    color: #000000 !important;
}

.mobile-menu-button,
.mobile-menu-overlay,
.mobile-menu,
.mobile-contact-bar,
.mobile-commitment {
    display: none;
}

@media (max-width: 900px) {

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 82px;

        padding: 12px 20px;

        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;

        background: #F6F0E8;

        z-index: 9999;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 9px;

        transform: none !important;
    }

    .logo:hover {
        transform: none !important;
    }

    .logo-icon {
        width: 50px;
        height: 50px;
        object-fit: contain;
    }

    .logo-text {
        display: flex;
        flex-direction: column;
    }

    .logo-line1 {
        font-size: 21px;
        line-height: 1;
    }

    .logo-line2 {
        font-size: 15px;
        line-height: 1.1;
        letter-spacing: .5px;
    }

    .mobile-menu-button {
        display: flex;

        width: 42px;
        height: 42px;

        padding: 8px;

        border: none;
        background: transparent;

        flex-direction: column;
        justify-content: center;
        align-items: center;

        gap: 5px;

        cursor: pointer;
        z-index: 10001;
    }

    .mobile-menu-button span {
        display: block;

        width: 27px;
        height: 2px;

        background: #A98252;

        transition: .3s ease;
    }

    .hero {
        min-height: auto;
        padding-top: 82px;

        overflow: hidden;
    }

    .hero-container {
        width: 100%;
        min-height: auto;

        display: flex;
        flex-direction: column;

        padding: 0;

        margin: 0;
    }

    .hero-left {
        width: 100%;
        flex: none;

        margin: 0;

        padding: 55px 30px 35px;

        text-align: left;

        order: 1;

        z-index: 5;
    }

    .hero-left h1 {
        margin: 0;

        font-family: "Times New Roman", Times, serif;

        font-size: 38px;
        line-height: 1.18;

        font-weight: 700;

        letter-spacing: -0.3px;

        text-align: left;
    }

    .hero-left .gold-line {
        width: 40px;

        margin: 18px 0 20px;
    }

    .hero-left p {
        width: 100%;
        max-width: 310px;

        margin: 0;

        font-size: 16px;
        line-height: 1.65;

        text-align: left;
    }

    .hero-buttons {
        display: flex;

        flex-direction: row;
        align-items: center;

        gap: 22px;

        margin-top: 28px;
    }

    .btn-dark {
        width: auto;

        padding: 13px 18px;

        font-size: 11px;

        white-space: nowrap;
    }

    .btn-light {
        width: auto;

        padding: 0;

        border: none;

        font-size: 12px;

        white-space: nowrap;
    }

    .btn-light:hover {
        background: transparent;
        color: #A98252;

        transform: none;
    }

    .arrow {
        margin-left: 5px;
    }

    .hero-right {
        position: relative;

        top: auto;
        right: auto;
        bottom: auto;

        width: 100%;
        height: 285px;

        margin: 0;

        order: 2;

        overflow: hidden;
    }

    .hero-right img {
        position: absolute;

        top: 0;
        right: 0;
        bottom: 0;
        left: 0;

        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: right center;

        transform: none !important;

        -webkit-mask-image:
            linear-gradient(
                to bottom,
                transparent 0%,
                rgba(0,0,0,.35) 10%,
                black 25%,
                black 100%
            );

        mask-image:
            linear-gradient(
                to bottom,
                transparent 0%,
                rgba(0,0,0,.35) 10%,
                black 25%,
                black 100%
            );
    }

    .hero-right::after {
        display: none;
    }

    .practice-areas {
        width: 100%;

        max-width: none;

        padding: 30px 20px 15px;

        margin: 0;

        text-align: left;

        background: #F6F0E8;
    }

    .practice-areas > .section-tag,
    .mobile-practice-tag {
        display: block;

        text-align: left;

        margin-bottom: 7px;

        font-size: 12px;

        letter-spacing: 2px;

        color: #A98252;
    }

    .practice-areas > h2 {
        margin: 0 0 15px;

        text-align: left;

        font-size: 27px;

        line-height: 1.2;
    }

    .practice-grid {
        width: 100%;

        max-width: none;

        margin: 0;

        display: grid;

        grid-template-columns: repeat(3, 1fr);

        gap: 10px;

        border: none;
    }

    .practice-card {
        min-height: 195px;

        padding: 18px 9px 15px;

        border: 1px solid #E5DED5;
        border-radius: 8px;

        background: rgba(255,255,255,.16);

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .practice-card:last-child {
        border-right: 1px solid #E5DED5;
    }

    .practice-card:nth-child(2) {
        border-right: 1px solid #E5DED5;
    }

    .practice-card:hover {
        background: rgba(255,255,255,.16);

        transform: none;

        box-shadow: none;
    }

    .practice-icon {
        font-size: 30px;

        margin: 0 0 15px;

        color: #A67C52;
    }

    .practice-card h3 {
        font-size: 16px;

        line-height: 1.15;

        margin-bottom: 9px;
    }

    .practice-card p {
        max-width: 130px;

        margin: 0;

        font-size: 11px;

        line-height: 1.45;

        color: #5E5146;
    }

    .about {
        display: none;
    }

    .why-us {
        padding: 0;

        background: #1F1B18;

        text-align: center;
    }

    .mobile-commitment {
        display: block;

        padding: 32px 30px 30px;

        background: #1F1B18;

        color: #F8F4ED;
    }

    .mobile-commitment .commitment-icon {
        margin-bottom: 10px;

        color: #A98252;

        font-size: 20px;
    }

    .mobile-commitment h2 {
        margin: 0 0 18px;

        font-family: "Times New Roman", Times, serif;

        font-size: 27px;

        font-weight: 600;

        color: #F8F4ED;
    }

    .mobile-commitment p {
        margin: 0 auto;

        max-width: 330px;

        color: #E8DED2;

        font-size: 14px;

        line-height: 1.65;

        text-align: center;
    }

    .why-us > .section-tag,
    .why-us > h2,
    .why-us > .why-grid {
        display: none;
    }

    footer {
        padding: 0;

        background: #F6F0E8;

        color: #2B241F;
    }

    .mobile-contact-bar {
        display: grid;

        grid-template-columns: repeat(3, 1fr);

        width: 100%;

        padding: 17px 10px;

        background: #F6F0E8;

        border-top: 1px solid #E5DED5;
    }

    .mobile-contact-item {
        min-width: 0;

        display: flex;

        align-items: center;
        justify-content: center;

        gap: 7px;

        padding: 0 5px;

        border-right: 1px solid #DDD3C7;
    }

    .mobile-contact-item:last-child {
        border-right: none;
    }

    .mobile-contact-item > i {
        flex-shrink: 0;

        color: #A98252;

        font-size: 17px;
    }

    .mobile-contact-item > div {
        min-width: 0;
    }

    .mobile-contact-item span {
        display: block;

        margin-bottom: 3px;

        font-size: 9px;

        color: #6B5A4A;
    }

    .mobile-contact-item strong {
        display: block;

        font-size: 9px;

        line-height: 1.25;

        color: #2B241F;

        word-break: break-word;
    }

    .footer-logo,
    .copyright {
        display: none;
    }

    .mobile-menu-overlay {
        position: fixed;

        inset: 0;

        display: block;

        background: rgba(31,27,24,.52);

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transition: opacity .35s ease;

        z-index: 10000;
    }

    .mobile-menu-overlay.open {
        opacity: 1;

        visibility: visible;

        pointer-events: auto;
    }

    .mobile-menu {
        position: fixed;

        top: 0;
        right: 0;

        width: min(82vw, 360px);
        height: 100vh;

        display: flex;

        flex-direction: column;

        padding: 28px 25px;

        background: #F8F0E7;

        box-shadow: -15px 0 40px rgba(0,0,0,.12);

        transform: translateX(100%);

        transition: transform .4s cubic-bezier(.77,0,.18,1);

        overflow-y: auto;

        z-index: 10001;
    }

    .mobile-menu.open {
        transform: translateX(0);
    }

    .mobile-menu-header {
        display: flex;

        align-items: center;

        justify-content: space-between;

        padding-bottom: 28px;

        border-bottom: 1px solid #DDD3C7;
    }

    .mobile-menu-logo {
        display: flex;

        align-items: center;

        gap: 9px;

        color: #2F241D;

        text-decoration: none;
    }

    .mobile-menu-logo img {
        width: 42px;
        height: 42px;

        object-fit: contain;

        transform: none !important;
    }

    .mobile-menu-logo > div {
        display: flex;

        flex-direction: column;
    }

    .mobile-menu-logo span:first-child {
        font-size: 18px;

        font-weight: 700;

        line-height: 1;
    }

    .mobile-menu-logo span:last-child {
        font-size: 13px;

        line-height: 1.15;

        letter-spacing: .5px;
    }

    .mobile-menu-close {
        width: 38px;
        height: 38px;

        border: none;

        background: transparent;

        color: #A98252;

        font-family: Arial, sans-serif;

        font-size: 31px;

        font-weight: 300;

        line-height: 1;

        cursor: pointer;
    }

    .mobile-menu-links {
        list-style: none;

        margin: 28px 0 0;

        padding: 0;
    }

    .mobile-menu-links li {
        list-style: none;

        margin: 0 0 26px;
    }

    .mobile-menu-links a {
        display: inline-block;

        color: #2F241D;

        text-decoration: none;

        font-size: 15px;

        letter-spacing: 3px;

        font-weight: 500;

        transition: .25s ease;
    }

    .mobile-menu-links a:hover {
        color: #A98252;
    }

    .mobile-menu-actions {
        display: flex;

        flex-direction: column;

        gap: 14px;

        margin-top: 10px;

        padding-top: 25px;

        border-top: 1px solid #DDD3C7;
    }

    .mobile-review-btn,
    .mobile-consult-btn {
        display: block;

        width: 100%;

        padding: 14px 15px;

        text-align: center;

        text-decoration: none;

        font-size: 11px;

        font-weight: 600;

        letter-spacing: 2px;
    }

    .mobile-review-btn {
        border: 1px solid #2B241F;

        color: #2B241F;

        background: transparent;
    }

    .mobile-consult-btn {
        border: 1px solid #1F1B18;

        color: #F8F4ED;

        background: #1F1B18;
    }

    .mobile-menu-quote {
        margin-top: auto;

        padding-top: 35px;

        text-align: center;
    }

    .mobile-menu-quote span,
    .mobile-menu-quote strong {
        display: block;

        color: #A98252;

        letter-spacing: 3px;
    }

    .mobile-menu-quote span {
        font-size: 10px;
    }

    .mobile-menu-quote strong {
        font-size: 10px;

        margin-top: 3px;
    }

    .mobile-menu-quote div {
        width: 40px;
        height: 1px;

        margin: 16px auto;

        background: #A98252;
    }

    .mobile-menu-quote em {
        color: #3A2D23;

        font-size: 13px;
    }
}

@media (max-width: 600px) {

    .navbar {
        height: 76px;

        padding: 10px 18px;
    }

    .hero {
        padding-top: 76px;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
    }

    .logo-line1 {
        font-size: 20px;
    }

    .logo-line2 {
        font-size: 14px;
    }

    .hero-left {
        padding: 48px 30px 30px;
    }

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

        line-height: 1.17;
    }

    .hero-left p {
        font-size: 15px;

        max-width: 300px;
    }

    .hero-right {
        height: 250px;
    }

    .practice-areas {
        padding: 28px 20px 14px;
    }

    .practice-grid {
        gap: 9px;
    }

    .practice-card {
        min-height: 192px;

        padding: 17px 7px 13px;
    }

    .practice-icon {
        font-size: 28px;

        margin-bottom: 13px;
    }

    .practice-card h3 {
        font-size: 15px;

        margin-bottom: 8px;
    }

    .practice-card p {
        font-size: 10.5px;

        line-height: 1.45;
    }

    .mobile-commitment {
        padding: 30px 28px 28px;
    }

    .mobile-commitment h2 {
        font-size: 26px;
    }

    .mobile-commitment p {
        font-size: 13px;

        line-height: 1.6;
    }

    .mobile-contact-bar {
        padding: 15px 7px;
    }

    .mobile-contact-item {
        gap: 5px;

        padding: 0 3px;
    }

    .mobile-contact-item > i {
        font-size: 15px;
    }

    .mobile-contact-item span {
        font-size: 8px;
    }

    .mobile-contact-item strong {
        font-size: 8px;
    }

    .mobile-menu {
        width: 82vw;

        padding: 25px 24px;
    }
}

.mobile-menu-button,
.mobile-menu,
.mobile-menu-overlay,
.mobile-commitment,
.mobile-contact-bar,
.mobile-practice-tag {
    display: none;
}

@media (max-width: 900px) {

    .navbar {
        height: 92px;

        padding: 14px 22px;

        display: flex;
        flex-direction: row;

        justify-content: space-between;
        align-items: center;

        background: #F6F0E8;
    }

    .logo {
        gap: 9px;
    }

    .logo-icon {
        width: 58px;
    }

    .logo-line1 {
        font-size: 22px;
    }

    .logo-line2 {
        font-size: 16px;
        letter-spacing: .7px;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-button {
        display: flex;

        width: 38px;
        height: 38px;

        padding: 6px;

        border: none;
        background: transparent;

        flex-direction: column;
        justify-content: center;
        align-items: center;

        gap: 5px;

        cursor: pointer;

        z-index: 1001;
    }

    .mobile-menu-button span {
        display: block;

        width: 27px;
        height: 2px;

        background: #8F7045;

        transition: .3s ease;
    }

    .mobile-menu-overlay {
        position: fixed;

        inset: 0;

        background: rgba(0,0,0,.55);

        opacity: 0;
        visibility: hidden;

        transition: .35s ease;

        z-index: 1000;
    }

    .mobile-menu-overlay.open {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu {
        display: flex;

        position: fixed;

        top: 0;
        right: 0;

        width: min(78vw, 360px);
        height: 100vh;

        background: #F6F0E8;

        z-index: 1002;

        padding: 28px 26px;

        flex-direction: column;

        transform: translateX(100%);

        transition: transform .4s ease;

        box-shadow: -12px 0 35px rgba(0,0,0,.15);

        overflow-y: auto;
    }

    .mobile-menu.open {
        transform: translateX(0);
    }

    .mobile-menu-header {
        display: flex;

        justify-content: space-between;
        align-items: flex-start;

        margin-bottom: 55px;
    }

    .mobile-menu-logo {
        display: flex;

        align-items: center;

        gap: 9px;

        text-decoration: none;

        color: #2F241D;
    }

    .mobile-menu-logo img {
        width: 47px;
        height: auto;
    }

    .mobile-menu-logo div {
        display: flex;

        flex-direction: column;
    }

    .mobile-menu-logo span:first-child {
        font-size: 20px;
        font-weight: 700;

        line-height: 1;
    }

    .mobile-menu-logo span:last-child {
        font-size: 14px;

        letter-spacing: .5px;

        margin-top: 3px;
    }

    .mobile-menu-close {
        border: none;

        background: transparent;

        color: #A98252;

        font-family: Arial, sans-serif;

        font-size: 34px;

        font-weight: 200;

        line-height: 1;

        cursor: pointer;

        padding: 0;
    }

    .mobile-menu-links {
        list-style: none;

        display: flex;

        flex-direction: column;

        gap: 28px;

        margin: 0;
        padding: 0;
    }

    .mobile-menu-links a {
        text-decoration: none;

        color: #2F241D;

        font-size: 15px;

        letter-spacing: 3px;

        font-weight: 500;

        position: relative;
    }

    .mobile-menu-links li:first-child a {
        color: #A98252;
    }

    .mobile-menu-links li:first-child a::after {
        content: "";

        display: block;

        width: 50px;
        height: 1px;

        background: #A98252;

        margin-top: 12px;
    }

    .mobile-menu-actions {
        display: flex;

        flex-direction: column;

        gap: 14px;

        margin-top: 38px;

        padding-top: 28px;

        border-top: 1px solid #DDD1C3;
    }

    .mobile-review-btn,
    .mobile-consult-btn {
        display: block;

        width: 100%;

        padding: 16px 12px;

        text-align: center;

        text-decoration: none;

        font-size: 12px;

        letter-spacing: 1.5px;
    }

    .mobile-review-btn {
        color: #2F241D;

        border: 1px solid #2F241D;

        background: transparent;
    }

    .mobile-consult-btn {
        color: #fff;

        background: #2B241F;

        border: 1px solid #2B241F;
    }

    .mobile-menu-quote {
        margin-top: auto;

        padding-top: 55px;

        text-align: center;

        color: #A98252;
    }

    .mobile-menu-quote span {
        display: block;

        font-size: 11px;

        letter-spacing: 3px;
    }

    .mobile-menu-quote strong {
        display: block;

        font-size: 11px;

        letter-spacing: 3px;

        font-weight: 400;

        margin-top: 5px;
    }

    .mobile-menu-quote div {
        width: 40px;
        height: 1px;

        background: #A98252;

        margin: 16px auto;
    }

    .mobile-menu-quote em {
        color: #2F241D;

        font-size: 15px;
    }

    .hero {
        min-height: 500px;

        overflow: hidden;

        padding-top: 0;
    }

    .hero-container {
        width: 100%;

        min-height: 500px;

        padding: 120px 0 40px;

        display: block;

        position: relative;
    }

    .hero-left {
        position: relative;

        z-index: 5;

        width: 66%;

        margin-left: 10%;

        text-align: left;
    }

    .hero-left h1 {
        font-size: 34px;

        line-height: 1.13;

        letter-spacing: -.3px;

        margin: 0;
    }

    .hero-tag {
        display: none;
    }

    .gold-line {
        width: 40px;

        margin: 16px 0 0;
    }

    .hero-left p {
        width: 78%;

        max-width: 310px;

        margin: 18px 0 0;

        font-size: 15px;

        line-height: 1.55;

        text-align: left;
    }

    .hero-buttons {
        display: flex;

        flex-direction: row;

        align-items: center;

        gap: 24px;

        margin-top: 27px;

        flex-wrap: nowrap;
    }

    .hero-buttons .btn-dark,
    .hero-buttons .btn-light {
        width: auto;

        white-space: nowrap;

        padding: 12px 17px;

        font-size: 10px;

        letter-spacing: 1px;
    }

    .hero-buttons .btn-light {
        border: none;

        padding-left: 0;
        padding-right: 0;
    }

    .hero-right {
        position: absolute;

        top: 92px;
        right: 0;

        width: 50%;

        height: 408px;

        z-index: 2;

        overflow: hidden;
    }

    .hero-right img {
        position: absolute;

        top: 0;
        right: 0;

        width: 100%;
        height: 100%;

        object-fit: cover;

        object-position: right center;

        transform: none;
    }

    .hero-right::after {
        background: linear-gradient(
            to right,
            #F6F0E8 0%,
            rgba(246,240,232,.95) 12%,
            rgba(246,240,232,.65) 28%,
            rgba(246,240,232,.20) 45%,
            transparent 65%
        );
    }

    .practice-areas {
        width: 100%;

        max-width: none;

        padding: 28px 18px 25px;

        text-align: left;
    }

    .practice-areas > .mobile-practice-tag {
        display: block;

        color: #A98252;

        font-size: 10px;

        letter-spacing: 2px;

        margin-bottom: 5px;
    }

    .practice-areas > h2 {
        text-align: left;

        font-size: 24px;

        margin: 0 0 18px;
    }

    .practice-grid {
        width: 100%;

        max-width: none;

        margin: 0;

        display: grid;

        grid-template-columns: repeat(3, 1fr);

        gap: 5px;

        border: none;
    }

    .practice-card {
        min-height: 190px;

        padding: 20px 8px 15px;

        background: #F9F5EF;

        border: 1px solid #E5DED5;

        border-radius: 8px;

        display: flex;

        flex-direction: column;

        align-items: center;
    }

    .practice-card:nth-child(3),
    .practice-card:nth-child(6) {
        border-right: 1px solid #E5DED5;
    }

    .practice-icon {
        font-size: 36px;

        margin-bottom: 14px;
    }

    .practice-card h3 {
        font-size: 16px;

        line-height: 1.15;

        margin-bottom: 9px;
    }

    .practice-card p {
        font-size: 10px;

        line-height: 1.5;

        max-width: 100%;

        margin: 0;
    }

    .about {
        flex-direction: column;

        gap: 35px;

        padding: 55px 8%;
    }

    .about-video {
        height: 350px;
    }

    .about-content h2 {
        font-size: 36px;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.65;
    }

    .why-us {
        padding: 0;

        background: #2B241F;
    }

    .why-us > .section-tag,
    .why-us > h2,
    .why-us > .why-grid {
        display: none;
    }

    .mobile-commitment {
        display: block;

        padding: 38px 38px 25px;

        text-align: center;

        color: #F6F0E8;
    }

    .commitment-icon {
        color: #A98252;

        font-size: 22px;

        margin-bottom: 10px;
    }

    .mobile-commitment h2 {
        font-family: "Times New Roman", Times, serif;

        font-size: 25px;

        color: #F6F0E8;

        margin-bottom: 18px;
    }

    .mobile-commitment p {
        font-size: 13px;

        line-height: 1.65;

        color: #E5DED5;

        max-width: 400px;

        margin: auto;
    }

    footer {
        padding: 0;

        background: #1F1B18;

        text-align: left;
    }

    footer .footer-logo,
    footer .copyright {
        display: none;
    }

    .mobile-contact-bar {
        display: grid;

        grid-template-columns: repeat(3, 1fr);

        width: 100%;

        background: #F6F0E8;

        color: #2F241D;

        padding: 14px 8px;
    }

    .mobile-contact-item {
        display: flex;

        align-items: center;

        justify-content: center;

        gap: 8px;

        min-width: 0;

        padding: 5px 7px;

        border-right: 1px solid #D8CCBE;
    }

    .mobile-contact-item:last-child {
        border-right: none;
    }

    .mobile-contact-item i {
        color: #A98252;

        font-size: 20px;

        flex-shrink: 0;
    }

    .mobile-contact-item div {
        min-width: 0;
    }

    .mobile-contact-item span {
        display: block;

        font-size: 9px;

        margin-bottom: 3px;
    }

    .mobile-contact-item strong {
        display: block;

        font-size: 8px;

        line-height: 1.35;

        font-weight: 600;

        overflow-wrap: anywhere;
    }

}

@media (max-width: 480px) {

    .navbar {
        height: 86px;

        padding: 12px 18px;
    }

    .logo-icon {
        width: 52px;
    }

    .logo-line1 {
        font-size: 20px;
    }

    .logo-line2 {
        font-size: 14px;
    }

    .hero {
        min-height: 500px;
    }

    .hero-container {
        min-height: 500px;

        padding-top: 112px;
    }

    .hero-left {
        width: 68%;

        margin-left: 10%;
    }

    .hero-left h1 {
        font-size: 32px;
    }

    .hero-left p {
        width: 80%;

        font-size: 14px;
    }

    .hero-buttons {
        gap: 20px;
    }

    .hero-buttons .btn-dark,
    .hero-buttons .btn-light {
        font-size: 9px;

        padding: 11px 14px;
    }

    .hero-right {
        top: 86px;

        width: 52%;

        height: 414px;
    }

    .practice-areas {
        padding-left: 14px;
        padding-right: 14px;
    }

    .practice-card {
        min-height: 190px;

        padding: 18px 6px 12px;
    }

    .practice-icon {
        font-size: 34px;
    }

    .practice-card h3 {
        font-size: 15px;
    }

    .practice-card p {
        font-size: 9px;
    }

    .mobile-commitment {
        padding-left: 30px;
        padding-right: 30px;
    }

    .mobile-contact-item {
        gap: 5px;

        padding-left: 3px;
        padding-right: 3px;
    }

    .mobile-contact-item i {
        font-size: 17px;
    }

    .mobile-contact-item span {
        font-size: 8px;
    }

    .mobile-contact-item strong {
        font-size: 7px;
    }

}

@media (max-width: 900px) {

    .hero {
        position: relative !important;
        width: 100% !important;
        min-height: 590px !important;
        padding-top: 76px !important;
        overflow: hidden !important;
    }

    .hero-container {
        position: relative !important;

        width: 100% !important;
        min-height: 514px !important;

        display: block !important;

        padding: 0 !important;
        margin: 0 !important;
    }

    .hero-left {
        position: relative !important;

        width: 68% !important;
        max-width: 68% !important;

        min-height: 514px !important;

        padding: 60px 0 35px 30px !important;
        margin: 0 !important;

        display: block !important;

        text-align: left !important;

        z-index: 5 !important;
    }

    .hero-left h1 {
        width: 100% !important;
        max-width: 255px !important;

        margin: 0 !important;

        font-size: 34px !important;
        line-height: 1.14 !important;

        letter-spacing: -0.4px !important;

        text-align: left !important;

        position: relative !important;
        z-index: 6 !important;
    }

    .hero-left .gold-line {
        width: 38px !important;

        margin: 18px 0 20px !important;
    }

    .hero-left p {
        width: 100% !important;
        max-width: 245px !important;

        margin: 0 !important;

        font-size: 14px !important;
        line-height: 1.65 !important;

        text-align: left !important;

        position: relative !important;
        z-index: 6 !important;
    }

    .hero-buttons {
        position: relative !important;
        z-index: 7 !important;

        display: flex !important;
        flex-direction: row !important;

        align-items: center !important;

        gap: 17px !important;

        margin-top: 25px !important;

        white-space: nowrap !important;
    }

    .hero-buttons .btn-dark {
        padding: 12px 16px !important;

        font-size: 10px !important;
    }

    .hero-buttons .btn-light {
        padding: 0 !important;

        font-size: 11px !important;

        border: none !important;
    }

    .hero-right {
        position: absolute !important;

        top: 42px !important;
        right: 0 !important;

        left: auto !important;
        bottom: auto !important;

        width: 43% !important;
        height: 365px !important;

        margin: 0 !important;

        z-index: 2 !important;

        overflow: hidden !important;
    }

    .hero-right img {
        position: absolute !important;

        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;

        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
        object-position: 72% center !important;

        transform: none !important;

        -webkit-mask-image:
            linear-gradient(
                to right,
                transparent 0%,
                rgba(0,0,0,.25) 15%,
                black 38%,
                black 100%
            ) !important;

        mask-image:
            linear-gradient(
                to right,
                transparent 0%,
                rgba(0,0,0,.25) 15%,
                black 38%,
                black 100%
            ) !important;
    }

    .hero-right::after {
        display: none !important;
    }

    .practice-areas {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;

        padding: 30px 20px 25px !important;

        box-sizing: border-box !important;

        text-align: left !important;

        background: #F6F0E8 !important;
    }

    .practice-areas > .section-tag {
        margin: 0 0 6px 0 !important;

        font-size: 10px !important;

        line-height: 1.2 !important;

        letter-spacing: 2.2px !important;

        text-align: left !important;
    }

    .practice-areas > h2 {
        margin: 0 0 18px 0 !important;

        font-size: 27px !important;
        line-height: 1.15 !important;

        text-align: left !important;
    }

    .practice-grid {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;

        padding: 0 !important;

        display: grid !important;

        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;

        gap: 8px !important;

        border: none !important;
    }

    .practice-card {
        width: 100% !important;
        min-width: 0 !important;

        min-height: 185px !important;

        padding: 17px 7px 14px !important;

        box-sizing: border-box !important;

        display: flex !important;

        flex-direction: column !important;

        align-items: center !important;
        justify-content: flex-start !important;

        text-align: center !important;

        border: 1px solid #E4DCD2 !important;

        border-radius: 8px !important;

        background: rgba(255,255,255,.18) !important;

        transform: none !important;

        box-shadow: none !important;
    }

    .practice-card:hover {
        transform: none !important;

        background: rgba(255,255,255,.18) !important;

        box-shadow: none !important;
    }

    .practice-icon {
        margin: 0 0 12px 0 !important;

        font-size: 27px !important;

        line-height: 1 !important;

        color: #A98252 !important;
    }

    .practice-card h3 {
        width: 100% !important;

        margin: 0 0 8px 0 !important;

        font-size: 14px !important;

        line-height: 1.15 !important;

        text-align: center !important;
    }

    .practice-card p {
        width: 100% !important;
        max-width: 115px !important;

        margin: 0 auto !important;

        font-size: 9.5px !important;

        line-height: 1.45 !important;

        text-align: center !important;
    }
}

@media (max-width: 600px) {

    .hero {
        min-height: 570px !important;
    }

    .hero-container {
        min-height: 494px !important;
    }

    .hero-left {
        width: 69% !important;
        max-width: 69% !important;

        padding-left: 30px !important;
        padding-top: 58px !important;
    }

    .hero-left h1 {
        max-width: 245px !important;

        font-size: 32px !important;
        line-height: 1.15 !important;
    }

    .hero-left p {
        max-width: 225px !important;

        font-size: 13.5px !important;
    }

    .hero-right {
        top: 42px !important;

        width: 42% !important;
        height: 360px !important;
    }

    .hero-buttons {
        gap: 14px !important;
    }

    .hero-buttons .btn-dark {
        padding: 12px 14px !important;

        font-size: 9.5px !important;
    }

    .hero-buttons .btn-light {
        font-size: 10px !important;
    }

    .practice-areas {
        padding: 27px 17px 22px !important;
    }

    .practice-grid {
        gap: 7px !important;
    }

    .practice-card {
        min-height: 180px !important;

        padding: 15px 5px 12px !important;
    }

    .practice-icon {
        font-size: 25px !important;

        margin-bottom: 11px !important;
    }

    .practice-card h3 {
        font-size: 13px !important;
    }

    .practice-card p {
        max-width: 105px !important;

        font-size: 9px !important;
    }
}

@media (max-width: 900px) {

    .mobile-menu {
        position: fixed !important;

        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;

        width: 100vw !important;
        height: 100vh !important;

        max-width: none !important;

        display: flex !important;
        flex-direction: column !important;

        padding: 32px 38px 40px !important;

        background: rgba(248, 240, 231, 0.88) !important;

        backdrop-filter: blur(1px);
        -webkit-backdrop-filter: blur(1px);

        box-shadow: none !important;

        transform: translateX(100%) !important;

        transition:
            transform .45s cubic-bezier(.77,0,.18,1) !important;

        overflow-y: auto !important;

        z-index: 10002 !important;
    }

    .mobile-menu.open {
        transform: translateX(0) !important;
    }

    .mobile-menu-overlay {
        position: fixed !important;

        inset: 0 !important;

        width: 100vw !important;
        height: 100vh !important;

        background: transparent !important;

        opacity: 0 !important;
        visibility: hidden !important;

        pointer-events: none !important;

        z-index: 10000 !important;

        transition: opacity .35s ease !important;
    }

    .mobile-menu-overlay.open {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .mobile-menu-header {
        width: 100% !important;

        display: flex !important;
        align-items: flex-start !important;
        justify-content: space-between !important;

        padding: 0 !important;
        margin: 0 0 125px !important;

        border: none !important;
    }

    .mobile-menu-logo {
        display: flex !important;

        align-items: center !important;

        gap: 12px !important;

        text-decoration: none !important;

        color: #1F1B18 !important;
    }

    .mobile-menu-logo img {
        width: 58px !important;
        height: 58px !important;

        object-fit: contain !important;

        transform: none !important;
    }

    .mobile-menu-logo > div {
        display: flex !important;
        flex-direction: column !important;
    }

    .mobile-menu-logo span:first-child {
        font-family: "Times New Roman", Times, serif !important;

        font-size: 23px !important;
        font-weight: 700 !important;

        line-height: 1 !important;

        color: #1F1B18 !important;
    }

    .mobile-menu-logo span:last-child {
        font-family: "Times New Roman", Times, serif !important;

        font-size: 16px !important;
        font-weight: 400 !important;

        line-height: 1.1 !important;

        letter-spacing: .5px !important;

        margin-top: 4px !important;

        color: #1F1B18 !important;
    }

    .mobile-menu-close {
        width: 42px !important;
        height: 42px !important;

        padding: 0 !important;
        margin: 0 !important;

        border: none !important;

        background: transparent !important;

        color: #1F1B18 !important;

        font-family: Arial, sans-serif !important;

        font-size: 38px !important;
        font-weight: 200 !important;

        line-height: 38px !important;

        cursor: pointer !important;
    }

    .mobile-menu-links {
        width: 100% !important;

        display: flex !important;
        flex-direction: column !important;

        align-items: center !important;

        gap: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        list-style: none !important;
    }

    .mobile-menu-links li {
        width: 100% !important;

        display: flex !important;
        justify-content: center !important;

        margin: 0 !important;
        padding: 0 !important;

        list-style: none !important;
    }

    .mobile-menu-links a {
        display: block !important;

        width: auto !important;

        padding: 0 !important;

        color: #1F1B18 !important;

        text-decoration: none !important;

        font-family: "Times New Roman", Times, serif !important;

        font-size: 21px !important;

        font-weight: 500 !important;

        letter-spacing: 4px !important;

        line-height: 1.2 !important;

        text-align: center !important;

        transition: color .25s ease !important;
    }

    .mobile-menu-links a:hover {
        color: #A98252 !important;
    }

    .mobile-menu-links li:first-child a {
        color: #1F1B18 !important;
    }

    .mobile-menu-links li:first-child a::after {
        content: "";

        display: block;

        width: 58px;
        height: 1px;

        margin: 14px auto 0;

        background: #1F1B18;
    }

    .mobile-menu-actions {
        width: 100% !important;

        display: flex !important;

        flex-direction: column !important;

        align-items: center !important;

        gap: 0 !important;

        margin: 52px 0 0 !important;

        padding: 0 !important;

        border: none !important;
    }

    .mobile-review-btn,
    .mobile-consult-btn {
        display: block !important;

        width: auto !important;

        padding: 0 !important;

        border: none !important;

        background: transparent !important;

        color: #1F1B18 !important;

        text-decoration: none !important;

        font-family: "Times New Roman", Times, serif !important;

        font-size: 19px !important;

        font-weight: 500 !important;

        letter-spacing: 3px !important;

        line-height: 1.2 !important;

        text-align: center !important;
    }

    .mobile-review-btn:hover,
    .mobile-consult-btn:hover {
        color: #A98252 !important;

        background: transparent !important;
    }

    .mobile-review-btn {
        margin-bottom: 58px !important;
    }

    .mobile-menu-actions::before {
        content: "";

        display: block;

        width: 58px;
        height: 1px;

        background: #1F1B18;

        margin: 0 auto 42px;
    }

    .mobile-menu-quote {
        width: 100% !important;

        margin-top: auto !important;

        padding-top: 45px !important;

        text-align: center !important;
    }

    .mobile-menu-quote span,
    .mobile-menu-quote strong {
        display: block !important;

        color: #A98252 !important;

        letter-spacing: 3px !important;
    }

    .mobile-menu-quote span {
        font-size: 10px !important;
    }

    .mobile-menu-quote strong {
        font-size: 10px !important;

        margin-top: 4px !important;
    }

    .mobile-menu-quote div {
        width: 58px !important;
        height: 1px !important;

        margin: 20px auto !important;

        background: #1F1B18 !important;
    }

    .mobile-menu-quote em {
        color: #1F1B18 !important;

        font-size: 14px !important;
    }
}

@media (max-width: 600px) {

    .mobile-menu {
        padding: 28px 30px 32px !important;
    }

    .mobile-menu-header {
        margin-bottom: 115px !important;
    }

    .mobile-menu-logo img {
        width: 52px !important;
        height: 52px !important;
    }

    .mobile-menu-logo span:first-child {
        font-size: 21px !important;
    }

    .mobile-menu-logo span:last-child {
        font-size: 14px !important;
    }

    .mobile-menu-close {
        font-size: 36px !important;
    }

    .mobile-menu-links a {
        font-size: 20px !important;

        letter-spacing: 3.5px !important;
    }

    .mobile-menu-actions {
        margin-top: 48px !important;
    }

    .mobile-review-btn,
    .mobile-consult-btn {
        font-size: 18px !important;

        letter-spacing: 2.5px !important;
    }

    .mobile-review-btn {
        margin-bottom: 55px !important;
    }

    .mobile-menu-quote {
        padding-top: 35px !important;
    }
}

@media (max-width: 900px) {

    .mobile-menu {
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100vh !important;

        padding: 24px 28px 30px !important;

        background: rgba(248, 240, 231, 0.88) !important;

        box-shadow: none !important;

        overflow: hidden !important;
    }

    .mobile-menu-header {
        margin-bottom: 92px !important;
    }

    .mobile-menu-logo {
        gap: 9px !important;
    }

    .mobile-menu-logo img {
        width: 48px !important;
        height: 48px !important;
    }

    .mobile-menu-logo span:first-child {
        font-size: 20px !important;
    }

    .mobile-menu-logo span:last-child {
        font-size: 14px !important;
    }

    .mobile-menu-close {
        width: 36px !important;
        height: 36px !important;

        font-size: 32px !important;
        line-height: 32px !important;
    }

    .mobile-menu-links {
        gap: 0 !important;
    }

    .mobile-menu-links li {
        margin: 0 0 23px !important;
    }

    .mobile-menu-links a {
        font-size: 18px !important;

        letter-spacing: 3px !important;

        line-height: 1.15 !important;
    }

    .mobile-menu-links li:first-child a::after {
        width: 48px !important;

        height: 1px !important;

        margin: 11px auto 0 !important;
    }

    .mobile-menu-actions {
        margin-top: 28px !important;

        padding: 0 !important;

        gap: 0 !important;

        border: none !important;
    }

    .mobile-menu-actions::before {
        width: 48px !important;

        height: 1px !important;

        margin: 0 auto 32px !important;
    }

    .mobile-review-btn,
    .mobile-consult-btn {
        font-size: 17px !important;

        letter-spacing: 2.5px !important;

        line-height: 1.15 !important;
    }

    .mobile-review-btn {
        margin-bottom: 48px !important;
    }

    .mobile-menu-quote {
        display: none !important;
    }
}

@media (max-width: 600px) {

    .mobile-menu {
        padding: 22px 26px 28px !important;
    }

    .mobile-menu-header {
        margin-bottom: 82px !important;
    }

    .mobile-menu-logo img {
        width: 45px !important;
        height: 45px !important;
    }

    .mobile-menu-logo span:first-child {
        font-size: 19px !important;
    }

    .mobile-menu-logo span:last-child {
        font-size: 13px !important;
    }

    .mobile-menu-close {
        width: 34px !important;
        height: 34px !important;

        font-size: 30px !important;
    }

    .mobile-menu-links li {
        margin-bottom: 21px !important;
    }

    .mobile-menu-links a {
        font-size: 17px !important;

        letter-spacing: 2.8px !important;
    }

    .mobile-menu-links li:first-child a::after {
        width: 45px !important;

        margin-top: 9px !important;
    }

    .mobile-menu-actions {
        margin-top: 24px !important;
    }

    .mobile-menu-actions::before {
        width: 45px !important;

        margin-bottom: 28px !important;
    }

    .mobile-review-btn,
    .mobile-consult-btn {
        font-size: 16px !important;

        letter-spacing: 2.2px !important;
    }

    .mobile-review-btn {
        margin-bottom: 42px !important;
    }

    .mobile-menu-quote,
    .mobile-menu-quote * {
        display: none !important;
    }
}

@media (max-width: 900px) {

    .about {
        display: flex !important;
        flex-direction: column !important;

        width: calc(100% - 30px) !important;
        height: auto !important;
        min-height: 0 !important;

        margin: 15px auto !important;
        padding: 0 !important;

        background: #F6F0E8 !important;

        border-radius: 8px !important;

        overflow: hidden !important;
    }

    .about-image {
        width: 100% !important;

        height: 190px !important;
        min-height: 190px !important;

        margin: 0 !important;

        overflow: hidden !important;
    }

    .about-video {
        display: block !important;

        width: 100% !important;
        height: 190px !important;

        min-height: 190px !important;

        object-fit: cover !important;

        margin: 0 !important;

        border-radius: 0 !important;
    }

    .about-content {
        width: 100% !important;

        height: auto !important;
        min-height: 0 !important;

        padding: 24px 25px 25px !important;

        box-sizing: border-box !important;

        display: flex !important;

        flex-direction: column !important;

        justify-content: flex-start !important;

        align-items: flex-start !important;

        overflow: visible !important;

        background: #F6F0E8 !important;

        text-align: left !important;
    }

    .about-content .section-tag {
        display: block !important;

        margin: 0 0 10px !important;

        font-size: 9px !important;

        line-height: 1.2 !important;

        letter-spacing: 2px !important;

        color: #A98252 !important;
    }

    .about-content h2 {
        margin: 0 !important;

        font-family: "Times New Roman", Times, serif !important;

        font-size: 29px !important;

        line-height: 1.05 !important;

        color: #241D17 !important;
    }

    .about-content .gold-line {
        width: 55px !important;

        height: 2px !important;

        margin: 15px 0 16px !important;

        background: #A98252 !important;

        flex-shrink: 0 !important;
    }

    .about-content p {
        width: 100% !important;

        max-width: none !important;

        margin: 0 0 12px !important;

        font-size: 11px !important;

        line-height: 1.5 !important;

        color: #5E5146 !important;

        text-align: left !important;
    }

    .about-content .btn-dark {
        display: inline-block !important;

        width: auto !important;

        margin-top: 5px !important;

        padding: 11px 17px !important;

        font-size: 8px !important;

        line-height: 1 !important;

        letter-spacing: 1.2px !important;
    }
}

@media (max-width: 600px) {

    .about {
        width: calc(100% - 30px) !important;

        margin: 12px auto !important;
    }

    .about-image {
        height: 175px !important;
        min-height: 175px !important;
    }

    .about-video {
        height: 175px !important;
        min-height: 175px !important;
    }

    .about-content {
        padding: 22px 22px 23px !important;
    }

    .about-content .section-tag {
        font-size: 8px !important;

        margin-bottom: 9px !important;
    }

    .about-content h2 {
        font-size: 27px !important;

        line-height: 1.05 !important;
    }

    .about-content .gold-line {
        width: 48px !important;

        margin: 13px 0 14px !important;
    }

    .about-content p {
        font-size: 10px !important;

        line-height: 1.45 !important;

        margin-bottom: 10px !important;
    }

    .about-content .btn-dark {
        padding: 10px 15px !important;

        font-size: 8px !important;
    }
}

@media (max-width: 900px) {

    .mobile-commitment {
        display: none !important;
    }

    .why-us {
        display: none !important;
    }

}

@media (max-width: 900px) {

    footer {
        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        background: #F6F0E8 !important;

        color: #1F1B18 !important;

        overflow: hidden !important;
    }

    .mobile-contact-bar {
        width: 100% !important;

        box-sizing: border-box !important;

        padding: 17px 10px !important;

        margin: 0 !important;

        background: #F6F0E8 !important;

        border-top: 1px solid #E5DED5 !important;
        border-bottom: 1px solid #E5DED5 !important;
    }

    .footer-logo {
        display: block !important;

        width: 100% !important;

        box-sizing: border-box !important;

        margin: 0 !important;

        padding: 42px 15px 8px !important;

        background: #F6F0E8 !important;

        color: #1F1B18 !important;

        font-family: "Times New Roman", Times, serif !important;

        font-size: 28px !important;

        font-weight: 400 !important;

        line-height: 1.1 !important;

        letter-spacing: 0 !important;

        text-align: center !important;

        white-space: nowrap !important;
    }

    .copyright {
        display: block !important;

        width: 100% !important;

        box-sizing: border-box !important;

        margin: 0 !important;

        padding: 0 15px 38px !important;

        background: #F6F0E8 !important;

        color: #2B241F !important;

        font-family: "Times New Roman", Times, serif !important;

        font-size: 12px !important;

        font-weight: 400 !important;

        line-height: 1.4 !important;

        text-align: center !important;
    }

}

@media (max-width: 600px) {

    .footer-logo {
        padding: 32px 10px 7px !important;

        font-size: 15px !important;

        line-height: 1.1 !important;
    }

    .copyright {
        padding: 0 10px 28px !important;

        font-size: 10px !important;
    }

}

@media (max-width: 600px) {

    .practice-page > h1 {
        display: none !important;
    }

    .practice-page {
        padding-top: 72px !important;
        padding-bottom: 0 !important;

        margin: 0 !important;

        background: #F6F0E8 !important;
    }

    .practice-section {
        width: calc(100% - 20px) !important;
        max-width: 430px !important;

        margin: 8px auto 0 !important;

        padding: 24px 15px 24px !important;

        box-sizing: border-box !important;

        background: #FFFFFF !important;

        border-radius: 20px !important;
    }

    .practice-top {
        margin-bottom: 25px !important;
    }

    .practice-heading .small-title {
        display: block !important;

        font-size: 10px !important;

        letter-spacing: 2px !important;

        line-height: 1.2 !important;

        margin: 0 0 0 !important;
    }

    .practice-heading h1 {
        display: none !important;
    }

    .practice-heading p {
        max-width: 320px !important;

        margin: 12px auto 0 !important;

        font-size: 13px !important;

        line-height: 1.5 !important;
    }

    .practice-page-grid {
        display: grid !important;

        grid-template-columns: 1fr !important;

        gap: 14px !important;

        width: 100% !important;

        margin: 0 !important;
    }

    .practice-page-card {
        width: 100% !important;

        min-height: 0 !important;

        padding: 18px 16px !important;

        gap: 17px !important;

        box-sizing: border-box !important;

        align-items: center !important;

        border-radius: 16px !important;

        box-shadow: 0 4px 16px rgba(0,0,0,.045) !important;

        transform: none !important;
    }

    .practice-page-card .icon {
        width: 62px !important;
        height: 62px !important;

        min-width: 62px !important;

        font-size: 26px !important;
    }

    .practice-page-card h3 {
        font-size: 20px !important;

        line-height: 1.15 !important;

        margin: 0 0 6px !important;
    }

    .practice-page-card p {
        font-size: 13px !important;

        line-height: 1.45 !important;

        margin: 0 !important;
    }

}

.practice-page > h1,
.practice-heading h1 {
    display: none !important;
}

.practice-page {

    padding-bottom: 20px !important;
}

.practice-page .practice-section {
    padding-top: 45px !important;
    padding-bottom: 35px !important;
}

.practice-heading .small-title {
    display: block !important;
    margin: 0 !important;
}

.practice-heading p {
    margin-top: 15px !important;
}

.practice-top {
    margin-bottom: 35px !important;
}

@media (max-width: 600px) {

    .practice-page {
        padding-top: 72px !important;
        padding-bottom: 0 !important;
    }

    .practice-page .practice-section {
        width: calc(100% - 20px) !important;
        margin: 8px auto 0 !important;

        padding: 24px 15px 20px !important;

        border-radius: 20px !important;
    }

    .practice-top {
        margin-bottom: 20px !important;
    }

    .practice-heading .small-title {
        font-size: 10px !important;
        letter-spacing: 2px !important;
    }

    .practice-heading p {
        max-width: 320px !important;
        margin: 12px auto 0 !important;

        font-size: 13px !important;
        line-height: 1.5 !important;
    }
}

.consult-page {

    padding-bottom: 60px !important;
}

.consult-info h1 {
    display: none !important;
}

.consult-info .section-tag {
    display: inline-block !important;
    margin-bottom: 15px !important;
}

.consult-info > p {
    margin-top: 0 !important;
}

@media (max-width: 900px) {

    .consult-page {
        padding: 105px 25px 40px !important;
    }

    .consult-info .section-tag {
        margin-bottom: 10px !important;
        font-size: 11px !important;
        letter-spacing: 2px !important;
    }

    .consult-info > p {
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
    }

}

footer {
    padding: 20px 15px !important;
    text-align: center !important;
}

footer .copyright {
    margin: 0 !important;
    padding: 0 !important;

    font-size: 12px !important;
    line-height: 1.4 !important;
    color: #2B241F !important;
}

.review-left h1 {
    display: none !important;
}

.review-hero {
    width: 92% !important;
    max-width: 1600px !important;

    margin: 125px auto 45px !important;

    gap: 45px !important;

    align-items: start !important;
}

.review-left .section-tag {
    margin-bottom: 12px !important;
}

.review-left .gold-line {
    width: 50px !important;
    height: 2px !important;

    margin: 14px 0 20px !important;
}

.review-left > p {
    font-size: 17px !important;
    line-height: 1.65 !important;

    max-width: 620px !important;

    margin-bottom: 25px !important;
}

.review-highlights {
    gap: 14px !important;
}

.review-highlights div {
    font-size: 16px !important;
    gap: 12px !important;
}

.review-highlights i {
    width: 44px !important;
    height: 44px !important;

    font-size: 17px !important;
}

.review-card {
    padding: 32px !important;
}

.review-card h2 {
    font-size: 30px !important;

    margin-bottom: 25px !important;
}

@media (max-width: 700px) {

    .review-hero {
        width: calc(100% - 30px) !important;

        margin: 100px auto 25px !important;

        gap: 25px !important;

        grid-template-columns: 1fr !important;
    }

    .review-left {
        text-align: center !important;
    }

    .review-left h1 {
        display: none !important;
    }

    .review-left .section-tag {
        font-size: 10px !important;
        letter-spacing: 2px !important;

        margin-bottom: 10px !important;
    }

    .review-left .gold-line {
        margin: 12px auto 18px !important;
    }

    .review-left > p {
        font-size: 14px !important;
        line-height: 1.55 !important;

        max-width: 330px !important;

        margin: 0 auto 20px !important;
    }

    .review-highlights {
        gap: 10px !important;
    }

    .review-highlights div {
        font-size: 13px !important;
    }

    .review-highlights i {
        width: 38px !important;
        height: 38px !important;

        font-size: 15px !important;
    }

    .review-card {
        padding: 22px !important;

        border-radius: 14px !important;
    }

    .review-card h2 {
        font-size: 25px !important;

        margin-bottom: 20px !important;
    }

}

.review-hero {
    padding-top: 80px !important;
}

.contact-page,
.contact-section,
.consultation-page,
.consult-section {
    padding-top: 80px !important;
}

@media (max-width: 700px) {

    .review-hero {
        padding-top: 55px !important;
    }

    .contact-page,
    .contact-section,
    .consultation-page,
    .consult-section {
        padding-top: 55px !important;
    }

}

.consult-page {
    padding-top: 110px !important;
}

.practice-page {
    padding-top: 110px !important;
}

@media (max-width: 700px) {

    .consult-page {
        padding-top: 75px !important;
    }

    .practice-page {
        padding-top: 75px !important;
    }

}

.contact-page {
    padding-top: 140px !important;
}

.practice-section .practice-heading h1 {
    display: none !important;
}

.practice-section .practice-heading p {
    margin-top: 18px !important;
}

@media (max-width: 900px) {

    .contact-page {
        padding-top: 125px !important;
    }

}

@media (max-width: 600px) {

    .contact-page {
        padding-top: 115px !important;
    }

    .contact-page .practice-card {
        margin-top: 0 !important;
    }

    .practice-section {
        padding-top: 35px !important;
    }

    .practice-heading {
        margin-bottom: 20px !important;
    }

}

.practice-areas h2 {
    display: none !important;
}

.practice-page .small-title,
.practice-page .practice-heading .small-title {
    display: inline-block !important;
    color: #B19152 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.practice-page .practice-heading h1 {
    display: none !important;
}

.practice-page > h1 {

}

.practice-page .practice-top {

}

.practice-page > h1 {
    display: none !important;
}

.practice-page .practice-heading .small-title {

    color: #B19152 !important;

    font-size: 12px !important;
    letter-spacing: 3px !important;

    margin: 0 0 18px !important;
}

.practice-page .practice-heading > h1 {
    display: none !important;
}

.practice-page .practice-heading p {
    margin-top: 0 !important;
}

.practice-page .practice-top {
    margin-bottom: 30px !important;
}

@media (max-width: 600px) {

    .practice-page {
        padding-top: 85px !important;
    }

    .practice-page .practice-section {
        padding-top: 28px !important;
    }

    .practice-page .practice-heading .small-title {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;

        font-size: 10px !important;
        letter-spacing: 2px !important;

        margin-bottom: 12px !important;
    }

    .practice-page .practice-top {
        margin-bottom: 20px !important;
    }

}

.practice-page {
    padding-top: 40px;
}

.practice-page-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 60px;
}

.practice-page .practice-heading .small-title {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    font-size: 14px;
    letter-spacing: 4px;
    color: #a67c52;

    margin-bottom: 18px;
}

.practice-page .practice-heading h1,
.practice-page .practice-heading h2,
.practice-page .practice-heading .big-title,
.practice-page .practice-heading .practice-title,
.practice-page .practice-heading .areas-title {
    display: none !important;
}

.practice-page .practice-heading p {
    display: block;
    max-width: 700px;
    margin: 0 auto 45px;

    text-align: center;
    font-size: 17px;
    line-height: 1.8;
}

.practice-page-content {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}@media (max-width: 768px) {

    .practice-page {
        padding-top: 25px;
    }

    .practice-page-content {
        padding: 0 16px 40px;
    }

    .practice-page .practice-heading .small-title {
        font-size: 12px;
        letter-spacing: 3px;
        margin-bottom: 14px;
    }

    .practice-page .practice-heading p {
        max-width: 360px;
        margin-bottom: 30px;

        font-size: 14px;
        line-height: 1.7;
    }
}
/* =========================================
   FINAL REFINEMENT — HOMEPAGE PRACTICE AREA
   Keep golden PRACTICE AREAS
   Remove Areas of Expertise
========================================= */

.practice-areas > .mobile-practice-tag {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    color: #A98252 !important;
}

.practice-areas > h2 {
    display: none !important;
}
/* =========================================
   FINAL REFINEMENT — DOCUMENT REVIEW
   Remove description below ONLINE LEGAL SERVICE
========================================= */

.review-left > p {
    display: none !important;
}
/* =========================================
   FINAL REFINEMENT — CONTACT PAGE NAVBAR GAP
========================================= */

.practice-page.contact-page {
    padding-top: 140px !important;
}

@media (max-width: 700px) {

    .practice-page.contact-page {
        padding-top: 110px !important;
    }

}
/* =========================================================
   FINAL CONTACT PAGE DESIGN
   Desktop + Mobile
   ========================================================= */

/* ---------- CONTACT PAGE ---------- */

.practice-page.contact-page {
    width: 100%;
    min-height: 100vh;
    padding: 145px 6% 70px !important;
    background: #F6F0E8;
}


/* ---------- HERO ---------- */

.contact-page .contact-hero {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 35px;
}

.contact-page .contact-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;

    color: #5A5149;
    text-transform: uppercase;
}

.contact-page .contact-eyebrow span {
    display: block;
    width: 22px;
    height: 1px;
    background: #A98252;
}

.contact-page .contact-hero h1 {
    display: block !important;

    margin: 12px 0 6px !important;

    font-family: "Times New Roman", Times, serif;
    font-size: 46px;
    line-height: 1.1;
    font-weight: 700;

    color: #2B241F;
}

.contact-page .contact-hero p {
    margin: 0 !important;

    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;

    color: #3E3934;
}


/* ---------- CONTACT INFORMATION ---------- */

.contact-page .practice-card.contact-info-grid {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto 24px !important;
    padding: 25px 0 !important;

    display: grid !important;
    grid-template-columns: repeat(3, 1fr);

    background: transparent !important;

    border: none !important;
    border-radius: 0 !important;

    box-shadow: none !important;

    min-height: auto !important;
}


.contact-page .contact-info-item {
    min-height: 245px;

    padding: 5px 45px 10px;

    text-align: center;

    border-right: 1px solid #DDD5CB;
}

.contact-page .contact-info-item:last-child {
    border-right: none;
}


/* ---------- ICONS ---------- */

.contact-page .contact-icon {
    width: 62px;
    height: 62px;

    margin: 0 auto 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #EEE8DF;

    font-size: 29px;
    line-height: 1;

    color: #9A6B32;
}


/* ---------- CONTACT TEXT ---------- */

.contact-page .contact-info-item h2 {
    margin: 0 0 10px !important;

    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;

    letter-spacing: 0.5px;
    text-transform: uppercase;

    color: #2B2B2B;
}

.contact-page .contact-info-item p {
    margin: 0 !important;

    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.55;

    color: #3E3934;

    max-width: 260px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.contact-page .contact-info-item strong {
    font-weight: 700;
}

.contact-page .contact-info-item a {
    color: #3E3934;
    text-decoration: none;
}


/* ---------- LOCATION / MAP ---------- */

.contact-page .contact-location {
    width: 100%;
    max-width: 1080px;

    margin: 0 auto;

    padding: 12px 12px 8px;

    background: #F8F4ED;

    border: 1px solid #DED6CC;
    border-radius: 14px;

    box-shadow: 0 8px 28px rgba(50, 35, 20, 0.04);
}

.contact-page .contact-location h2 {
    margin: 0 0 10px !important;

    text-align: center;

    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;

    letter-spacing: 0.5px;
    text-transform: uppercase;

    color: #2B2B2B;
}

.contact-page .map-container {
    width: 100%;
    height: 235px;

    overflow: hidden;

    border-radius: 8px;
}

.contact-page .map-container iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}


/* =========================================================
   MOBILE CONTACT PAGE
   ========================================================= */

@media (max-width: 700px) {

    .practice-page.contact-page {
        padding: 125px 16px 40px !important;
    }


    /* HERO */

    .contact-page .contact-hero {
        margin-bottom: 26px;
    }

    .contact-page .contact-eyebrow {
        font-size: 14px;
    }

    .contact-page .contact-hero h1 {
        font-size: 42px;
        margin-top: 12px !important;
    }

    .contact-page .contact-hero p {
        max-width: 280px;
        margin-left: auto !important;
        margin-right: auto !important;

        font-size: 16px;
    }


    /* CONTACT CARDS */

    .contact-page .practice-card.contact-info-grid {
        display: flex !important;
        flex-direction: column;

        gap: 10px;

        width: 100%;

        margin-bottom: 10px !important;

        padding: 0 !important;

        background: transparent !important;
    }

    .contact-page .contact-info-item {
        width: 100%;
        min-height: auto;

        padding: 16px 25px 17px;

        background: #F8F4ED;

        border: 1px solid #E3DCD3;
        border-radius: 14px;

        box-shadow: 0 5px 18px rgba(50, 35, 20, 0.05);
    }

    .contact-page .contact-info-item:last-child {
        border-right: 1px solid #E3DCD3;
    }


    /* ICONS */

    .contact-page .contact-icon {
        width: 58px;
        height: 58px;

        margin-bottom: 9px;

        font-size: 27px;
    }


    /* TEXT */

    .contact-page .contact-info-item h2 {
        font-size: 15px;
        margin-bottom: 8px !important;
    }

    .contact-page .contact-info-item p {
        font-size: 14px;
        line-height: 1.55;
    }


    /* MAP */

    .contact-page .contact-location {
        margin-top: 8px;

        padding: 10px;

        border-radius: 14px;
    }

    .contact-page .contact-location h2 {
        font-size: 15px;
        margin-bottom: 9px !important;
    }

    .contact-page .map-container {
        height: 270px;
        border-radius: 8px;
    }

}


/* ---------- SMALL PHONES ---------- */

@media (max-width: 420px) {

    .practice-page.contact-page {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .contact-page .contact-hero h1 {
        font-size: 39px;
    }

    .contact-page .contact-info-item {
        padding-left: 18px;
        padding-right: 18px;
    }

    .contact-page .map-container {
        height: 240px;
    }

}
/* =========================================================
   FINAL DESKTOP CONTACT PAGE TOP FIX
   Prevent CONTACT US heading from being hidden by navbar
   ========================================================= */

@media (min-width: 901px) {

    .practice-page.contact-page {
        padding-top: 180px !important;
    }

}
/* =========================================================
   FINAL FIX — CONSULT NOW MOBILE TOP SPACING
   Prevent "LEGAL CONSULTATION" from being hidden by navbar
   ========================================================= */

@media (max-width: 900px) {
    .consult-page {
        padding-top: 125px !important;
    }
}

@media (max-width: 600px) {
    .consult-page {
        padding-top: 120px !important;
    }
}

@media (max-width: 480px) {
    .consult-page {
        padding-top: 115px !important;
    }
}

/* =========================================================
   DISCLAIMER MODAL — SINGLE FINAL VERSION
   ========================================================= */

.disclaimer-modal {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.58);
    z-index: 99999;
    overflow-y: auto;
}

.disclaimer-modal.disclaimer-hidden {
    display: none !important;
}

.disclaimer-box {
    position: relative;
    width: 730px;
    max-width: 100%;
    max-height: calc(100dvh - 48px);
    margin: auto;
    background: #F8F4ED;
    color: #2F241D;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    border-radius: 0;
    box-shadow: 0 15px 50px rgba(0,0,0,0.25);
    font-family: "Times New Roman", Times, serif;
}

.disclaimer-header {
    text-align: center;
    padding: 25px 45px 0;
    background: #F8F4ED;
}

.disclaimer-box h4 {
    margin: 0;
    padding: 0;
    color: #1F1B18;
    font-family: "Times New Roman", Times, serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 5px;
    text-align: center;
}

.disclaimer-box h2 {
    margin: 8px 0 0;
    padding: 0;
    color: #1F1B18;
    font-family: "Times New Roman", Times, serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    text-align: center;
}

.disclaimer-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 18px auto 25px;
    width: 420px;
    max-width: 100%;
}

.disclaimer-divider span {
    flex: 1;
    height: 1px;
    background: #B19152;
}

.disclaimer-divider i {
    width: 10px;
    height: 10px;
    background: #B19152;
    display: block;
    transform: rotate(45deg);
}

.disclaimer-content {
    padding: 0 35px;
    background: #F8F4ED;
}

.disclaimer-content h3 {
    margin: 0 0 15px;
    padding: 0;
    color: #1F1B18;
    font-family: "Times New Roman", Times, serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .3px;
}

.disclaimer-content p {
    margin: 0 0 20px;
    padding: 0;
    color: #222;
    font-family: "Times New Roman", Times, serif;
    font-size: 15.5px;
    line-height: 1.45;
    text-align: left;
}

.disclaimer-content ul {
    margin: 0 0 20px;
    padding-left: 28px;
}

.disclaimer-content li {
    margin: 0 0 7px;
    padding-left: 3px;
    color: #222;
    font-family: "Times New Roman", Times, serif;
    font-size: 15.5px;
    line-height: 1.4;
}

.disclaimer-content li::marker {
    color: #B19152;
    font-size: 13px;
}

.disclaimer-buttons {
    display: flex;
    gap: 40px;
    padding: 5px 70px 28px;
    background: #F8F4ED;
}

.disclaimer-buttons button {
    flex: 1;
    height: 54px;
    padding: 0;
    border-radius: 0;
    cursor: pointer;
    font-family: "Times New Roman", Times, serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: none;
}

.disclaimer-buttons button:first-child {
    background: #1F1B18;
    color: #F8F4ED;
    border: 1px solid #1F1B18;
}

.disclaimer-buttons button:last-child {
    background: #F8F4ED;
    color: #1F1B18;
    border: 1px solid #1F1B18;
}

@media (max-width: 768px) {
    .disclaimer-modal {
        padding: 20px;
    }

    .disclaimer-box {
        width: min(100%, 620px);
        max-height: calc(100dvh - 40px);
    }

    .disclaimer-header {
        padding: 24px 24px 0;
    }

    .disclaimer-content {
        padding: 0 26px;
    }

    .disclaimer-buttons {
        padding: 8px 26px 26px;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .disclaimer-modal {
        padding: 18px;
    }

    .disclaimer-box {
        width: 100%;
        max-height: calc(100dvh - 36px);
    }

    .disclaimer-header {
        padding: 20px 22px 0;
    }

    .disclaimer-box h4 {
        font-size: 18px;
        letter-spacing: 3px;
    }

    .disclaimer-box h2 {
        font-size: 15px;
        letter-spacing: 2px;
    }

    .disclaimer-content {
        padding: 0 26px;
    }

    .disclaimer-content p,
    .disclaimer-content li {
        font-size: 14px;
        line-height: 1.5;
    }

    .disclaimer-buttons {
        padding: 8px 18px 22px;
        gap: 14px;
    }

    .disclaimer-buttons button {
        height: 54px;
        font-size: 14px;
    }
}
/* =========================================================
   FINAL VISUAL REFINEMENTS
   Contact icon / Consult address / Practice heading /
   Mobile disclaimer / Document review highlights
   ========================================================= */


/* =========================================================
   1. CONTACT PAGE – BRONZE LOCATION ICON
   ========================================================= */

.contact-page .contact-icon {
    color: #A67C52 !important;
}

.contact-page .contact-icon i {
    color: #A67C52 !important;
    font-size: 28px;
    line-height: 1;
}


/* =========================================================
   2. CONSULT NOW – ADDRESS BLOCK
   Match the refined contact-section appearance
   ========================================================= */

.consult-address-block {
    position: relative;
}

.consult-address-block .consult-info-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 16px;

    border-radius: 50%;

    background: rgba(166, 124, 82, 0.08);

    color: #A67C52;
}

.consult-address-block .consult-info-icon i {
    font-size: 24px;
}

.consult-address-block h3 {
    margin-bottom: 12px !important;
}

.consult-address-block p {
    text-align: left !important;
    line-height: 1.75 !important;
}

.consult-address-block p strong {
    color: #2F241D;
}


/* =========================================================
   3. HOMEPAGE PRACTICE AREAS – CENTER THE GOLDEN TITLE
   ========================================================= */

.practice-areas {
    text-align: center !important;
}

.practice-areas > .section-tag,
.practice-areas > .mobile-practice-tag {
    width: 100% !important;

    margin-left: auto !important;
    margin-right: auto !important;

    text-align: center !important;
}


/* Mobile practice area heading */

@media (max-width: 900px) {

    .practice-areas {
        text-align: center !important;
    }

    .practice-areas > .section-tag,
    .practice-areas > .mobile-practice-tag {
        width: 100% !important;

        display: block !important;

        text-align: center !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }

}


/* =========================================================
   4. MOBILE DISCLAIMER – SMALL CENTRAL POPUP
   Homepage remains visible behind dark overlay
   ========================================================= */

@media (max-width: 768px) {

    .disclaimer-modal {
        position: fixed !important;

        inset: 0 !important;

        width: 100% !important;
        height: 100dvh !important;

        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        padding: 20px !important;

        background: rgba(0, 0, 0, 0.62) !important;

        overflow: hidden !important;

        z-index: 99999 !important;
    }


    .disclaimer-modal .disclaimer-box {
        width: 88vw !important;

        max-width: 430px !important;

        height: auto !important;

        max-height: 78dvh !important;

        min-height: 0 !important;

        margin: 0 !important;

        overflow-y: auto !important;

        background: #F8F4ED !important;

        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.40) !important;
    }


    .disclaimer-header {
        padding: 20px 20px 0 !important;
    }


    .disclaimer-content {
        padding: 0 22px !important;
    }


    .disclaimer-box h4 {
        font-size: 18px !important;

        letter-spacing: 3px !important;
    }


    .disclaimer-box h2 {
        font-size: 15px !important;

        letter-spacing: 2px !important;
    }


    .disclaimer-content h3 {
        font-size: 17px !important;
    }


    .disclaimer-content p,
    .disclaimer-content li {
        font-size: 14px !important;

        line-height: 1.55 !important;
    }


    .disclaimer-buttons {
        padding: 18px 22px 22px !important;

        gap: 12px !important;
    }


    .disclaimer-buttons button {
        min-height: 48px !important;

        font-size: 13px !important;
    }

}


/* Extra-small phones */

@media (max-width: 480px) {

    .disclaimer-modal {
        padding: 16px !important;
    }


    .disclaimer-modal .disclaimer-box {
        width: 90vw !important;

        max-height: 76dvh !important;
    }


    .disclaimer-content {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

}


/* =========================================================
   5. DOCUMENT REVIEW – PERFECTLY ALIGNED 3 HIGHLIGHTS
   ========================================================= */

.review-highlights {
    display: flex !important;

    flex-direction: column !important;

    align-items: flex-start !important;
}


.review-highlights div {
    width: 100% !important;

    display: flex !important;

    align-items: center !important;

    justify-content: flex-start !important;
}


/* Every icon starts at exactly the same X-position */

.review-highlights i {
    flex: 0 0 44px !important;

    width: 44px !important;
    height: 44px !important;

    margin: 0 14px 0 0 !important;
}


/* =========================================================
   MOBILE DOCUMENT REVIEW – SAME STRAIGHT ALIGNMENT
   ========================================================= */

@media (max-width: 768px) {

    .review-highlights {
        width: 100% !important;

        align-items: flex-start !important;
    }


    .review-highlights div {
        width: 100% !important;

        justify-content: flex-start !important;

        text-align: left !important;
    }


    .review-highlights i {
        flex: 0 0 44px !important;

        width: 44px !important;
        height: 44px !important;

        margin-right: 14px !important;
    }

}


@media (max-width: 480px) {

    .review-highlights i {
        flex: 0 0 38px !important;

        width: 38px !important;
        height: 38px !important;

        margin-right: 12px !important;
    }

}
/* =========================================
   MOBILE HOMEPAGE HERO - COMPACT VERSION
========================================= */

@media screen and (max-width: 768px) {

    /* Target the main homepage heading */
    .hero h1,
    .hero-content h1,
    .hero-text h1 {
        font-size: 1.65rem !important;
        line-height: 1.05 !important;
        margin: 0 0 22px 0 !important;
    }

    /* Reduce overall vertical space */
    .hero-content,
    .hero-text {
        padding-top: 35px !important;
        padding-bottom: 30px !important;
    }

    /* Reduce space below the heading */
    .hero p,
    .hero-content p,
    .hero-text p {
        font-size: 1rem !important;
        line-height: 1.65 !important;
        margin-bottom: 24px !important;
    }

}
/* MOBILE HERO TEXT - REDUCE LINE SPACING */

@media (max-width: 768px) {

    .hero p,
    .hero-content p,
    .hero-text p {
        line-height: 1.35 !important;
    }

}
/* =========================================================
   FINAL MOBILE HERO TEXT POSITION
   Moves the left-side hero content lower
   ========================================================= */

@media (max-width: 600px) {

    .hero-left {
        min-height: 494px !important;

        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;

        padding: 0 0 35px 30px !important;
    }

}