/*=========================================================
 ANNET & CO. ADVOCATES LLP
 Main Stylesheet
=========================================================*/

/*=========================================================
RESET
=========================================================*/

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

html{
    scroll-behavior:smooth;
}

body{

   font-family:var(--heading-font);

    background:#f8f4ea;

    color:#333;

    line-height:1.7;

    overflow-x:hidden;

}

/*=========================================================
ROOT VARIABLES
=========================================================*/

:root{

    --primary:#111111;

    --secondary:#D8AB4E;

    --secondary-dark:#b98d30;

    --white:#ffffff;

    --light:#faf7f2;

    --text:#444;

    --radius:12px;

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

    --transition:.35s ease;

    --container:1280px;

}

/*=========================================================
GLOBAL ELEMENTS
=========================================================*/

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

}

h1,h2,h3,h4{

    color:#111;

    line-height:1.2;

}

p{

    color:#555;

    margin-top:15px;

}

.wrap{

    width:min(var(--container),92%);

    margin:auto;

    padding:0 18px;

}


.section{

padding:45px 0;

}

.section-title{
 font-family:var(--heading-font);
    font-size:1.55rem;
    font-weight:600;
    line-height:1.25;
    margin-bottom:18px;
    color:#111;
     letter-spacing:0;
}

.section-title.center{

    text-align:center;

}


.section-subtitle{

    max-width:700px;

    margin:0 auto 40px;

    text-align:center;

    font-size:1rem;

    line-height:1.7;

    color:#666;

}

.team-overlay{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

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

    opacity:0;

    transition:.35s ease;

}

.profile-btn{

    transform:translateY(20px);

    opacity:0;

    transition:.35s ease;

}

.team-card:hover .team-overlay{

    opacity:1;

}

.team-card:hover .profile-btn{

    transform:translateY(0);

    opacity:1;

}
/*=========================================================
BUTTONS
=========================================================*/

.btn{

    display:inline-block;

    padding:11px 22px;

    border-radius:8px;

    font-size:.92rem;

    transition:var(--transition);

}

.btn-primary{

    background:#D8AB4E;

    color:#111;

}

.btn-primary:hover{

    background:#b98d30;

    color:#fff;

}

.btn-outline{

    border:2px solid #D8AB4E;

    color:#D8AB4E;

}

.btn-outline:hover{

    background:#D8AB4E;

    color:#111;

}

.btn-directions{
    margin-top:20px;
}

/*=========================================================
CARDS
=========================================================*/

.card{

    background:#fff;

    border-radius:14px;

    padding:28px;

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

    border-top:4px solid #D8AB4E;

}

/*=========================================================
HEADER
=========================================================*/

.site-header{

    position:sticky;

    top:0;

    z-index:9999;

    background:#111;

    border-bottom:3px solid #D8AB4E;

    box-shadow:0 8px 30px rgba(0,0,0,.25);

}

.header-container{

    max-width:1320px;

    margin:auto;

    padding:18px 35px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo-area{

    display:flex;

    align-items:center;

    gap:18px;

}

.logo-area img{

    width:86px;

    height:86px;

    object-fit:contain;

    background:#fff;

    border-radius:12px;

    padding:8px;

}

.logo-text{

    display:flex;

    flex-direction:column;

}

.logo-text h1{

    color:#fff;

    font-size:2.15rem;

    margin:0;

    font-weight:700;

}

.logo-text p{

    color:#eee;

    margin-top:6px;

}

.logo-text .tagline{

    margin-top:8px;

    color:#D8AB4E;

    font-size:.95rem;

    font-weight:600;

}

/*======================
NAVIGATION
======================*/

.main-nav ul{

    display:flex;

    gap:38px;

    align-items:center;

}

.main-nav a{

    color:#fff;

    font-size:.95rem;

    position:relative;

    padding:8px 0;

}


.main-nav a:hover{

    color:#D8AB4E;

}

.main-nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:0;

    height:2px;

    background:#D8AB4E;

    transition:.35s;

}

.main-nav a:hover::after{

    width:100%;

}

/*=========================================================
 HERO SECTION
=========================================================*/

.hero{

    position:relative;

    width:100%;

    height:72vh;

    min-height:560px;

    max-height:700px;

    overflow:hidden;

}

/*==============================
SLIDES
==============================*/

.slides{

    position:relative;

    width:100%;

    height:100%;

}

.slide{

    position:absolute;

    inset:0;

    opacity:0;

    visibility:hidden;

    transition:opacity .9s ease;

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.slide.active{

    opacity:1;

    visibility:visible;

    z-index:2;

}

/*==============================
OVERLAY
==============================*/

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.55)
    );

}

/*==============================
CONTENT
==============================*/

.slide-inner{

    position:relative;

    height:100%;

    display:flex;

    align-items:center;

}

.hero-content h2{

font-size:3.2rem;
font-family:var(--heading-font);

    font-weight:700;

    letter-spacing:.2px;
font-weight:700;

line-height:1.15;

margin-bottom:20px;

color:#fff


}

.hero-tag{

    display:inline-block;

    background:rgba(216,171,78,.18);

    border:1px solid rgba(216,171,78,.45);

    color:#fff;

    padding:10px 18px;

    border-radius:40px;

    margin-bottom:25px;

    font-size:.95rem;

}

.hero-content h2{

font-size:2.7rem;

line-height:1.15;

margin-bottom:16px;

}

.hero-content p{

font-size:.98rem;

line-height:1.7;

max-width:520px;

margin-bottom:25px;

color:#f2f2f2;

}
.hero-content{

max-width:560px;

}

/*==============================
BUTTONS
==============================*/

.hero-actions{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.hero-actions .btn{

    min-width:220px;

    text-align:center;

    padding:12px 22px;

    font-size:.92rem;

}

/*==============================
DOTS
==============================*/

.hero-dots{

position:absolute;

right:35px;

bottom:20px;

left:auto;

transform:none;

display:flex;

gap:10px;

z-index:20;

}

.hero-dots span{

    width:11px;

    height:11px;

    border-radius:50%;

    border:2px solid #fff;

    cursor:pointer;

    transition:.3s;

}

.hero-dots span.active{

    background:#D8AB4E;

    border-color:#D8AB4E;

}

/*=========================================================
ABOUT LAYOUT
=========================================================*/

.two-column{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:40px;

    align-items:start;

}

.content-column{

    display:flex;

    flex-direction:column;

    gap:35px;

}

.sidebar-column{

    display:flex;

    flex-direction:column;

    gap:35px;

    font-size:1.45rem;

}

/*=========================================================
ABOUT CARD
=========================================================*/

.content-column .card{

    padding:45px;

}

.content-column p{

    font-size:1.08rem;

    color:#555;

    line-height:1.9;

}

.content-column strong{

    color:#111;

}

blockquote{

    border-left:5px solid #D8AB4E;

    padding-left:25px;

    margin:25px 0;

    font-size:1.3rem;

    color:#111;

    font-style:italic;

}

/*=========================================================
PRACTICE GRID
=========================================================*/

.practice-grid{

    display:grid;

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

    gap:18px;

    margin-top:25px;

}

.practice-item{

    background:#fafafa;

    padding:18px;

    border-left:5px solid #D8AB4E;

    border-radius:8px;

    transition:.3s;

    font-weight:600;

    font-size:1rem;

}


.practice-item:hover{

    background:#D8AB4E;

    color:#111;

    transform:translateX(8px);

}

/*=========================================================
SIDEBAR
=========================================================*/


.sidebar-column .card{

    position:sticky;

    top:130px;

    background:#f3ede1;

    border-top:4px solid #D8AB4E;

    border-left:5px solid #D8AB4E;

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

}

.feature{

    background:#fff;

    padding:16px 18px;

    border-left:4px solid #D8AB4E;

    border-radius:8px;

    margin-bottom:18px;

}



.feature strong{

display:block;

font-size:1.15rem;

font-weight:700;

color:#222;

margin-bottom:10px;

}

.feature p{

    margin:0;

    color:#666;

}

.sidebar-column hr{

    margin:35px 0;

    border:none;

    border-top:1px solid #e6e6e6;

}

.sidebar-column h2{

    font-family:var(--heading-font);

    margin-top:26px;

    margin-bottom:10px;

    font-size:1.3rem;

    font-weight:500;
    
    line-height:1.2;

    letter-spacing:0;

}


.sidebar-column p{

    line-height:1.8;

}

/*=========================================================
 TEAM
=========================================================*/

.team-gallery{

    display:grid;

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

    gap:25px;

}

.team-card{

    position:relative;

    overflow:hidden;

    border-radius:14px;

    background:#fff;

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

    cursor:pointer;

       transition:.35s ease;

    min-height:280px;

padding:0;

}


.team-card:hover{

    transform:translateY(-5px);

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

}

.card p,
.sidebar-column p{

font-size:.95rem;

line-height:1.75;

color:#555;

}

.team-card img{

    width:100%;

    height:240px;

    padding:0;

    background:#f5f5f5;

    object-fit:cover; 

    object-position:center;

}

.team-info{

    padding:18px;

    text-align:center;

    background:#fff;

}

.team-info h3{

    font-family:var(--heading-font);

    font-size:1.2rem;

    color:#111;

    margin-bottom:6px;

}

.team-info p{

    margin:0;

    color:#666;

    font-size:.9rem;

}

.team-card:hover img{

   transform:scale(1.04);

}

/*=========================================================
 TEAM OVERLAY
=========================================================*/

.team-overlay{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

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

    opacity:0;

    transition:.3s;

}


.team-card:hover .team-overlay{

    transform:translateY(0);

}


.team-overlay h3{

    color:#fff;

    margin-bottom:10px;

    font-size:1.1rem;

}


.team-overlay p{

    color:#ddd;

    margin-bottom:18px;

    padding:18px;

    font-size:.88rem;

}

.profile-btn{

    background:#D8AB4E;

    color:#111;

    border:none;

    padding:8px 18px;

font-size:.85rem;

    border-radius:8px;

    cursor:pointer;

    font-weight:700;

    transition:.3s;

}

.profile-btn:hover{

    background:#fff;

}

/*=========================================================
PROFILE MODAL
=========================================================*/

.profile-modal{

    position:fixed;

    inset:0;

    display:none;

    justify-content:center;

    align-items:center;

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

    z-index:99999;

}

.profile-box{

    background:#fff;

    width:min(700px,92%);

    border-radius:14px;

    padding:45px;

    text-align:center;

    position:relative;

    animation:popup .35s ease;

    max-height:90vh;

    overflow-y:auto;

}

.profile-box img{

    width:180px;

    height:180px;

    object-fit:cover;

    border-radius:50%;

    margin:auto auto 25px;

}

.close-profile{

    position:absolute;

    right:20px;

    top:12px;

    font-size:34px;

    cursor:pointer;

}

@keyframes popup{

from{

opacity:0;

transform:scale(.9);

}

to{

opacity:1;

transform:scale(1);

}

}

/*=========================================================
LEADERSHIP
=========================================================*/

.leadership-card{

display:grid;

grid-template-columns:280px 1fr;

gap:45px;

padding:40px;

background:#fff;

border-radius:16px;

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

align-items:center;

}



.leadership-photo{

    text-align:center;

}

.leadership-photo img{

    width:100%;

    max-width:220px;

    margin:auto;

    border-radius:14px;

    object-fit:cover;

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

}

.leadership-content h2{

    font-family:var(--heading-font);

    font-size:1.35rem;

    font-weight:600;

    line-height:1.25;

    margin-bottom:6px;

}

.leadership-badge{

    display:inline-block;

    width:max-content;

    background:#D8AB4E;

    color:#111;

    padding:8px 18px;

    border-radius:30px;

    font-weight:700;

    margin-bottom:20px;

    font-size:.8rem;

}


.leadership-content h4{

    color:#666;

    margin-bottom:22px;

    font-weight:500;

}

.leadership-content p{

font-size:1rem;

line-height:1.9;

color:#555;

margin-bottom:18px;

max-width:none;

}


/*=========================================================
REPRESENTATIVE PRACTICE
=========================================================*/

.portfolio-grid{

    display:grid;

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

    gap:35px;

}

.portfolio-item{

    overflow:hidden;

    border-radius:14px;

    background:#fff;

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

    transition:.35s;

}

.portfolio-item:hover{

    transform:translateY(-10px);

}

.portfolio-item img{

    width:100%;

    height:180px;

    object-fit:cover;

    transition:.4s;

}

.portfolio-item:hover img{

    transform:scale(1.06);

}

.portfolio-caption{

    padding:22px;

    text-align:center;

    font-weight:700;

    font-size:1.05rem;

}

/*=========================================================
CONTACT
=========================================================*/

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1.3fr;

    gap:40px;

}

.contact-grid h3{

    margin-top:24px;

    margin-bottom:10px;

}

.contact-grid h3:first-child{

    margin-top:0;

}


.contact-grid .card{

    height:100%;
     display:flex;
    flex-direction:column;

}

.contact-grid iframe{

    width:100%;

    height:350px;

    min-height:300px;
    flex:1;

}

.card h3{

font-size:1.25rem;

}

.card h2{
font-family:var(--heading-font);

    font-weight:700;

    letter-spacing:.2px;

}
/*=========================================================
FOOTER
=========================================================*/

.site-footer{

    background:#111;

    color:#eee;

    padding:35px 0 15px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:50px;

}

.site-footer h3,

.site-footer h4{

    color:#D8AB4E;

    margin-bottom:20px;

}

.site-footer p{

    color:#ddd;

}

.site-footer a{

    color:#ddd;

}

.site-footer li{

    margin-bottom:12px;

}

.footer-bottom{

    margin-top:18px;

    padding-top:12px;

    font-size:.92rem;

    text-align:center;

    line-height:1.8;

}
.btn-whatsapp{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    margin-top:18px;

    padding:14px;

    background:#25D366;

    color:#fff;

    border-radius:8px;

    font-weight:600;

}

.btn-whatsapp i{

    font-size:1.2rem;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:1100px){

.two-column{

grid-template-columns:1fr;

}

.portfolio-grid{

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

}

.team-gallery{

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

}

.leadership-card{

grid-template-columns:1fr;

text-align:center;

}

.contact-grid{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.header-container{

flex-direction:column;

gap:25px;

}

.main-nav ul{

flex-wrap:wrap;

justify-content:center;

}

.team-gallery{

grid-template-columns:1fr;

}

.portfolio-grid{

grid-template-columns:1fr;

}

.hero-content h2{

font-size:2.55rem;

}

.hero{

height:62vh;

min-height:500px;

max-height:620px;

}
img{
    user-select:none;
    -webkit-user-select:none;
    -moz-user-select:none;

    -webkit-user-drag:none;
    user-drag:none;
}

}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&display=swap');
