@import url('https://fonts.googleapis.com/css2?family=Anton&family=Noto+Serif+Ethiopic:wght@100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Noto+Serif+Ethiopic:wght@100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --dark-blue: #020a0d;
    --navy-blue: #1a2336;
    --light-blue: #3c4b6b;
    --dark-gold: #8d683b;
    --light-gold: #c0ac8b;
    --white: #ffffff;
}

body{
    margin: 0;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Playfair', serif;
    margin: 0;
}

p{
    font-family: 'Noto Serif Ethiopic', serif;
    margin: 0;
}

header nav{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: var(--navy-blue);
    height: 100px;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar-brand img{
    width: 210px;
    height: auto;
}

.nav-column{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.nav-toggle{
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span{
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background-color: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1){
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2){
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
}

.nav .nav-item a{
    color: var(--white);
    text-decoration: none;
    font-family: 'Noto Serif Ethiopic', serif;
    font-size: 16px;
    padding: 5px 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    flex: 1;
}

.nav .nav-item a:hover{
    flex: 2;
    color: var(--light-gold);
}

.nav .nav-item a.active{
    color: var(--navy-blue);
    font-weight: bold;
    background-color: var(--white);
    border-radius: 15px;
}

.hero {
    background-image: url('../images/law01.jpg');
    background-size: cover;
    background-position: top center;
    background-attachment: scroll;
    margin: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    padding: 130px 24px 48px;
    box-sizing: border-box;
}

.hero-inner{
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
}

.hero-card{
    max-width: 600px;
    padding: 34px 32px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(2, 10, 13, 0.72);
    box-shadow: 0 24px 60px rgba(2, 10, 13, 0.28);
}

.hero-eyebrow{
    margin-bottom: 16px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 0.22rem;
    text-transform: uppercase;
    color: var(--light-gold);
}

.hero-card h1{
    max-width: 10ch;
    margin-bottom: 16px;
    font-family: 'Playfair', serif;
    font-size: clamp(38px, 7vw, 60px);
    line-height: 0.98;
    color: var(--white);
}

.hero-copy{
    max-width: 48ch;
    margin-bottom: 22px;
    font-family: 'Noto Serif Ethiopic', serif;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.hero-highlights{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-highlights span{
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(192, 172, 139, 0.45);
    background-color: rgba(255, 255, 255, 0.08);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    color: var(--white);
}

.banner{
    background-color: var(--dark-gold);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-marquee{
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.coming-soon-track{
    display: flex;
    align-items: center;
    width: max-content;
    gap: 3.5rem;
    white-space: nowrap;
    animation: marquee-scroll 30s linear infinite;
}

.coming-soon-track span{
    display: inline-flex;
    align-items: center;
    font-family: 'Playfair', serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.35rem;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 0 12px rgba(2, 10, 13, 0.45);
}

.coming-soon-track span::after{
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 3.5rem;
    border-radius: 50%;
    background-color: var(--dark-blue);
    box-shadow: 0 0 18px rgba(192, 172, 139, 0.65);
}

.about-section{
    position: relative;
    padding: 110px 24px 90px;
    background-color: #f4efe6;
}

.about-shell{
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.4fr);
    gap: 28px;
    align-items: stretch;
}

.about-panel{
    padding: 34px;
    border-radius: 28px;
    border: 1px solid rgba(26, 35, 54, 0.12);
    box-shadow: 0 18px 45px rgba(2, 10, 13, 0.08);
}

.about-intro{
    background-color: var(--navy-blue);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.about-eyebrow,
.about-kicker{
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
}

.about-eyebrow{
    color: var(--light-gold);
}

.about-intro h2,
.about-profile h3{
    font-family: 'Playfair', serif;
    font-size: 20px;
    line-height: 1.3;
}

.about-portrait{
    width: 250px;
    border-radius: 20px;
}

.about-accent{
    width: 72px;
    height: 2px;
    background-color: var(--light-gold);
}

.about-roles{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-roles span{
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.06);
}

.about-profile{
    background-color: var(--white);
    color: var(--navy-blue);
}

.about-kicker{
    margin-bottom: 12px;
    color: var(--dark-gold);
}

.about-profile h3{
    margin-bottom: 18px;
}

.about-copy{
    display: grid;
    gap: 14px;
}

.about-copy p{
    font-family: 'Noto Serif Ethiopic', serif;
    font-size: 16px;
    line-height: 1.85;
    color: var(--dark-blue);
}

.services-section{
    padding: 110px 24px 90px;
    background-color: var(--navy-blue);
}

.services-shell,
.contact-shell{
    max-width: 1120px;
    margin: 0 auto;
}

.services-header{
    max-width: 760px;
    margin-bottom: 34px;
}

.services-eyebrow,
.contact-eyebrow,
.service-card-label,
.contact-info-label,
.contact-detail-heading,
.contact-field span{
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
}

.services-eyebrow,
.contact-eyebrow,
.service-card-label,
.contact-info-label{
    color: var(--dark-gold);
}

.services-section .services-eyebrow,
.services-section .service-card-label{
    color: var(--light-gold);
}

.services-header h2,
.contact-form-panel h2,
.contact-info-panel h3,
.service-card h3{
    font-family: 'Playfair', serif;
    color: var(--navy-blue);
}

.services-section .services-header h2,
.services-section .service-card h3{
    color: var(--white);
}

.special ul li{
    color: var(--navy-blue) !important;
}

.services-header h2,
.contact-form-panel h2{
    margin: 10px 0 14px;
    font-size: 28px;
    line-height: 1.2;
}

.services-copy,
.contact-copy,
.contact-info-copy{
    font-family: 'Noto Serif Ethiopic', serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(2, 10, 13, 0.78);
}

.services-section .services-copy{
    color: var(--light-gold);
}

.services-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-card{
    padding: 28px 24px;
    border: 1px solid rgba(192, 172, 139, 0.28);
    border-radius: 26px;
    background-color: var(--dark-gold);
    box-shadow: 0 18px 42px rgba(2, 10, 13, 0.18);
}

.service-card-featured{
    background-color: var(--white);
    color: var(--dark-blue);
}

.service-card-featured .service-card-label,
.service-card-featured li,
.services-section .service-card-featured h3{
    color: var(--navy-blue);
}

.service-card h3{
    margin-bottom: 14px;
    font-size: 20px;
    line-height: 1.3;
}

.service-list{
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
}

.service-list li{
    font-family: 'Noto Serif Ethiopic', serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--white);
}

.special{
    font-family: 'Noto Serif Ethiopic', serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--navy-blue);
}

.service-list-compact{
    padding-left: 18px;
}

.contact-section{
    padding: 110px 24px 110px;
    background-image: url('../images/law02.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.contact-shell{
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 26px;
    align-items: start;
}

.contact-form-panel,
.contact-info-panel{
    padding: 32px 28px;
    border-radius: 28px;
    border: 1px solid rgba(26, 35, 54, 0.14);
    box-shadow: 0 18px 45px rgba(2, 10, 13, 0.08);
}

.contact-form-panel{
    background-color: rgba(255, 255, 255, 0.94);
}

.contact-info-panel{
    background-color: rgba(26, 35, 54, 0.92);
    color: var(--white);
}

.contact-info-panel h3{
    margin: 10px 0 14px;
    font-size: 20px;
    color: var(--white);
}

.contact-form{
    margin-top: 24px;
}

.contact-form-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-field{
    display: grid;
    gap: 8px;
}

.contact-field-full{
    grid-column: 1 / -1;
}

.contact-field span,
.contact-detail-heading{
    color: var(--navy-blue);
}

.contact-field input,
.contact-field select,
.contact-field textarea{
    width: 100%;
    padding: 14px 15px;
    border: 1px solid rgba(26, 35, 54, 0.14);
    border-radius: 16px;
    background-color: #fcfaf7;
    font-family: 'Noto Serif Ethiopic', serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--dark-blue);
    box-sizing: border-box;
}

.contact-field textarea{
    resize: vertical;
    min-height: 140px;
}

.contact-submit{
    margin-top: 18px;
    padding: 13px 22px;
    border: none;
    border-radius: 999px;
    background-color: var(--navy-blue);
    color: var(--white);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    letter-spacing: 0.16rem;
    text-transform: uppercase;
}

.contact-info-copy{
    color: rgba(255, 255, 255, 0.82);
}

.contact-detail-group + .contact-detail-group{
    margin-top: 24px;
}

.contact-detail-heading{
    margin-bottom: 12px;
    color: var(--light-gold);
}

.contact-detail-list{
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
}

.contact-detail-list li{
    font-family: 'Noto Serif Ethiopic', serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 1.75rem));
    }
}

footer{
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 48px 24px 24px;
}

footer .footer{
    width: min(1120px, 100%);
    margin: 0 auto;
}

footer .footer:first-of-type{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
    padding-bottom: 24px;
}

footer .footer:last-of-type{
    display: block;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
}

footer .footer-inner,
footer .col1,
footer .col2,
footer .col3{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo{
    width: 180px;
    max-width: 100%;
    height: auto;
}

.footer-nav,
.footer-contact{
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-nav{
    display: grid;
    gap: 10px;
}

.footer-nav a,
.footer-contact li,
footer .footer:last-of-type p{
    font-family: 'Noto Serif Ethiopic', serif;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}

.footer-nav a,
footer .footer:last-of-type a{
    color: var(--white);
    text-decoration: none;
}

.footer-nav a:hover,
footer .footer:last-of-type a:hover{
    color: var(--light-gold);
}

@media (max-width: 768px) {
    header nav{
        padding: 16px;
        height: auto;
    }

    header nav .container,
    header nav .row{
        width: 100%;
    }

    header nav .container{
        height: 50px;
    }

    .nav-shell{
        margin-top: -50px !important;
    }

    header nav .row{
        flex-wrap: nowrap;
    }

    .navbar-brand img{
        width: 170px;
    }

    .nav-column{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        min-height: 48px;
    }

    .nav-toggle{
        display: inline-flex;
        flex: 0 0 auto;
    }

    .nav-column .nav-menu{
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        left: auto;
        min-width: 220px;
        padding: 12px;
        border-radius: 20px;
        background-color: var(--navy-blue);
        box-shadow: 0 18px 42px rgba(2, 10, 13, 0.18);
        display: none !important;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        margin: 0;
        z-index: 1001;
    }

    .nav-column .nav-menu.is-open{
        display: flex !important;
    }

    .nav .nav-item,
    .nav .nav-item a{
        width: 100%;
    }

    .nav .nav-item a{
        justify-content: flex-start;
        padding: 10px 14px;
        border-radius: 15px;
    }

    footer .footer:first-of-type{
        grid-template-columns: 1fr;
    }
}