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

:root{
    --dark:#1f2022;
    --dark-2:#2b2b2b;
    --light:#f7f4ef;
    --cream:#f3eee8;
    --gold:#b99855;
    --white:#f5f2ed;
    --text:#2b2b2b;
}

*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    padding:env(safe-area-inset);
}

html,
body{
    margin:0;
    padding:0;
    overflow-x:hidden;
    font-family:'Inter',sans-serif;
    color:#666;
    background:var(--light);
}

img{
    max-width:100%;
    height:auto;
}

h1,
h2,
h3,
h4{
    font-family:'Cormorant Garamond',serif;
}

a{
    text-decoration:none;
}

.container{
    max-width:1100px;
}

@media (prefers-reduced-motion:reduce){
    *,
    *::before,
    *::after{
        animation-duration:.01ms!important;
        animation-iteration-count:1!important;
        scroll-behavior:auto!important;
        transition-duration:.01ms!important;
    }
}

/* team-bg-pattern exists in HTML, currently hidden */
.team-bg-pattern{
    display:none;
}

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1050;
}

.main-nav{
    padding:26px 70px;
    background:transparent;
    transition:.35s ease;
}

.site-header.scrolled .main-nav{
    background:rgba(31,32,34,.94);
    backdrop-filter:blur(10px);
    padding:16px 70px;
    box-shadow:0 8px 30px rgba(0,0,0,.18);
}

.navbar .container-fluid{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.navbar-brand img{
    height:72px;
    width:auto !important;
    max-width:none;
    display:block;
    transition:.35s ease;
}

.site-header.scrolled .navbar-brand img{
    height:62px;
}

.nav-right{
    display:flex;
    align-items:center;
    gap:38px;
}

.navbar-collapse{
    flex-grow:0;
}

.navbar-nav{
    display:flex;
    align-items:center;
    gap:34px;
}

.navbar-nav .nav-link{
    position:relative;
    padding:0!important;
    color:#f5f2ed!important;
    font-family:'Inter',sans-serif;
    font-size:.78rem;
    font-weight:600;
    letter-spacing:2.6px;
    text-transform:uppercase;
    transition:.3s ease;
}

.navbar-nav .nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-9px;
    width:0;
    height:1px;
    background:#b99855;
    transition:.35s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:#b99855!important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{
    width:100%;
}

/* LANGUAGE */

.language-switch{
    display:flex;
    align-items:center;
    gap:10px;
    font-family:'Inter',sans-serif;
    font-size:.76rem;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    white-space:nowrap;
}

.language-switch a{
    color:#f5f2ed;
    text-decoration:none;
    transition:.3s ease;
}

.language-switch a:hover,
.language-switch a.active-lang{
    color:#b99855;
}

.language-switch span{
    width:1px;
    height:14px;
    background:rgba(245,242,237,.45);
}

/* HAMBURGER */

.navbar-toggler{
    border:0;
    padding:0;
    width:30px;
    height:24px;
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:7px;
    background:transparent;
    box-shadow:none!important;
}

.navbar-toggler span{
    display:block;
    width:100%;
    height:1.5px;
    background:#f5f2ed;
    transition:transform .35s ease, opacity .25s ease, background .3s ease;
    transform-origin:center;
}

.navbar-toggler:hover span{
    background:#b99855;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1){
    transform:translateY(8.5px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2){
    opacity:0;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3){
    transform:translateY(-8.5px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] span{
    background:#b99855;
}

/* DESKTOP: extra menu content hidden */

.mobile-menu-extra,
.mobile-menu-watermark{
    display:none;
}

/* TABLET */

@media(max-width:1199.98px){
    .main-nav{
        padding:24px 38px;
    }

    .site-header.scrolled .main-nav{
        padding:16px 38px;
    }

    .navbar-brand img{
        height:66px;
    }

    .site-header.scrolled .navbar-brand img{
        height:58px;
    }

    .nav-right{
        gap:30px;
    }

    .navbar-nav{
        gap:26px;
    }
}

/* MOBILE / HAMBURGER MENU */

@media(max-width:991.98px){

    .navbar-toggler{
        display:flex;
    }

    .main-nav{
        padding:22px 24px;
    }

    .site-header.scrolled .main-nav{
        padding:16px 24px;
    }

    .navbar-brand img{
        height:64px;
    }

    .site-header.scrolled .navbar-brand img{
        height:56px;
    }

    .nav-right{
        gap:22px;
    }

    .navbar-collapse{
        position:absolute;
        top:100%;
        left:24px;
        right:24px;
        margin-top:10px;

        background:rgba(31,32,34,.98);
        border:1px solid rgba(185,152,85,.18);
        padding:34px 28px 32px;

        overflow:hidden;
        box-shadow:0 25px 70px rgba(0,0,0,.35);
    }

    .mobile-menu-watermark{
        display:block;
        position:absolute;
        right:-90px;
        bottom:-90px;
        width:330px;
        height:330px;
        background:url('../img/vaga.webp') no-repeat center;
        background-size:contain;
        opacity:.035;
        pointer-events:none;
        transform:rotate(-10deg);
    }

    .navbar-nav{
        position:relative;
        z-index:2;
        align-items:flex-start;
        gap:22px;
    }

    .navbar-nav .nav-link{
        font-size:.9rem;
        letter-spacing:2.8px;
    }

    .mobile-menu-extra{
        display:block;
        position:relative;
        z-index:2;
        margin-top:30px;
    }

    .mobile-menu-line{
        width:100%;
        height:1px;
        background:rgba(185,152,85,.22);
        margin-bottom:26px;
    }

    .mobile-menu-tagline{
        font-family:'Cormorant Garamond',serif;
        color:#f5f2ed;
        font-size:1.55rem;
        line-height:1.25;
        margin-bottom:28px;
    }

    .mobile-menu-contacts{
        display:grid;
        grid-template-columns:1fr;
        gap:18px;
        margin-bottom:28px;
    }

    .mobile-contact-item strong{
        display:block;
        margin-bottom:8px;
        color:#b99855;
        font-family:'Inter',sans-serif;
        font-size:.72rem;
        letter-spacing:2px;
        text-transform:uppercase;
    }

    .mobile-contact-item a{
        display:block;
        color:rgba(245,242,237,.85);
        text-decoration:none;
        font-family:'Inter',sans-serif;
        font-size:.88rem;
        line-height:1.7;
        transition:.3s ease;
    }

    .mobile-contact-item a:hover{
        color:#b99855;
    }

    .mobile-menu-cta{
        display:inline-flex;
        align-items:center;
        position:relative;
        padding-bottom:10px;
        color:#f5f2ed;
        text-decoration:none;
        text-transform:uppercase;
        letter-spacing:2.5px;
        font-family:'Inter',sans-serif;
        font-size:.78rem;
        transition:.35s ease;
    }

    .mobile-menu-cta::after{
        content:"";
        position:absolute;
        left:0;
        bottom:0;
        width:100%;
        height:1px;
        background:#b99855;
    }

    .mobile-menu-cta span{
        margin-left:8px;
        transition:.35s ease;
    }

    .mobile-menu-cta:hover{
        color:#b99855;
    }

    .mobile-menu-cta:hover span{
        transform:translateX(8px);
    }

    /* open animation */
    .navbar-collapse.show .navbar-nav .nav-item,
    .navbar-collapse.show .mobile-menu-extra{
        animation:menuFadeUp .45s ease forwards;
    }

    .navbar-collapse.show .navbar-nav .nav-item:nth-child(1){ animation-delay:.05s; }
    .navbar-collapse.show .navbar-nav .nav-item:nth-child(2){ animation-delay:.10s; }
    .navbar-collapse.show .navbar-nav .nav-item:nth-child(3){ animation-delay:.15s; }
    .navbar-collapse.show .navbar-nav .nav-item:nth-child(4){ animation-delay:.20s; }
    .navbar-collapse.show .mobile-menu-extra{ animation-delay:.25s; }

    @keyframes menuFadeUp{
        from{
            opacity:0;
            transform:translateY(14px);
        }
        to{
            opacity:1;
            transform:translateY(0);
        }
    }
}

/* SMALL MOBILE */

@media(max-width:575.98px){

    .main-nav{
        padding:18px 16px;
    }

    .site-header.scrolled .main-nav{
        padding:14px 16px;
    }

    .navbar-brand img{
        height:58px;
    }

    .site-header.scrolled .navbar-brand img{
        height:52px;
    }

    .nav-right{
        gap:15px;
    }

    .language-switch{
        font-size:.72rem;
        letter-spacing:1.5px;
        gap:8px;
    }

    .navbar-toggler{
        width:28px;
    }

    .navbar-collapse{
        left:16px;
        right:16px;
        padding:30px 24px;
    }

    .mobile-menu-tagline{
        font-size:1.42rem;
    }

    .mobile-menu-watermark{
        width:280px;
        height:280px;
        right:-95px;
        bottom:-80px;
    }
}

.hero-section{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#2b2b2b;
}
.hero-section::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:1px;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(185,152,85,.45),
        transparent
    );
}

.hero-bg{
    position:absolute;
    inset:0;
    background-image:url('../img/hero-law-office.webp');
    background-size:cover;
    background-position:center;
    transform:scale(1.03);
    animation:heroZoom 24s ease-in-out infinite alternate;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(18,20,24,.72),
        rgba(18,20,24,.84)
    );
}

.hero-content{
    position:relative;
    z-index:3;
    padding-top:140px;
    padding-bottom:105px;
}

.hero-display{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(2.85rem,4.9vw,4.35rem);
    line-height:1;
    font-weight:500;
    color:#efe9dd;
    margin-bottom:24px;
    text-shadow:0 4px 28px rgba(0,0,0,.24);
}

.hero-heading{
    font-family:'Inter',sans-serif;
    font-size:.84rem;
    font-weight:600;
    letter-spacing:5px;
    text-transform:uppercase;
    color:#c6a45b;
    margin-bottom:34px;
}

.hero-text{
    max-width:650px;
    margin:0 auto 42px;
    color:rgba(255,255,255,.9);
    font-family:'Inter',sans-serif;
    font-size:1.03rem;
    line-height:1.9;
    font-weight:300;
}

.cta-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    position:relative;
    padding-bottom:10px;
    color:#f5f2ed;
    text-decoration:none;
    text-transform:uppercase;
    font-family:'Inter',sans-serif;
    font-size:.9rem;
    font-weight:500;
    letter-spacing:3px;
    transition:color .35s ease;
}

.cta-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:1px;
    background:#c6a45b;
}

.cta-arrow{
    display:inline-block;
    transition:transform .35s ease;
}

.cta-link:hover{
    color:#c6a45b;
}

.cta-link:hover .cta-arrow{
    transform:translateX(10px);
}

.hero-scroll{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    width:1px;
    height:70px;
    background:rgba(245,242,237,.22);
    overflow:hidden;
    z-index:4;
}

.hero-scroll::before{
    content:"";
    position:absolute;
    left:50%;
    top:-18px;
    transform:translateX(-50%);
    width:5px;
    height:18px;
    border-radius:20px;
    background:#c6a45b;
    box-shadow:0 0 18px rgba(198,164,91,.55);
    animation:scrollDown 2.4s ease-in-out infinite;
}

@keyframes heroZoom{
    from{
        transform:scale(1.03);
    }

    to{
        transform:scale(1.08);
    }
}

@keyframes scrollDown{
    0%{
        top:-18px;
        opacity:0;
    }

    15%{
        opacity:1;
    }

    100%{
        top:70px;
        opacity:0;
    }
}

/* Tablet */
@media(max-width:991.98px){

    .hero-content{
        padding-top:130px;
        padding-bottom:95px;
    }

    .hero-display{
        font-size:clamp(2.9rem,7.5vw,4rem);
        line-height:1;
    }

    .hero-heading{
        font-size:.78rem;
        letter-spacing:4px;
    }

    .hero-text{
        max-width:620px;
    }
}



/* Mobile */
@media(max-width:767.98px){

    .hero-section{
        min-height:100svh;
    }
    
    .hero-bg{
        background-image:url('../img/law_firm_prk_hero_back.webp');
    }

    .hero-content{
        padding-top:125px;
        padding-bottom:95px;
    }

    .hero-display{
        font-size:clamp(2.35rem,11vw,3.15rem);
        line-height:1.03;
        margin-bottom:22px;
    }

    .hero-heading{
        font-size:.64rem;
        letter-spacing:2.6px;
        margin-bottom:28px;
    }

    .hero-text{
        max-width:92%;
        font-size:.92rem;
        line-height:1.75;
        margin-bottom:38px;
    }

    .cta-link{
        font-size:.76rem;
        letter-spacing:2.3px;
    }

    .hero-scroll{
        height:58px;
        bottom:24px;
    }
}

.services-section{
    background:#f5f2ed;
    padding:30px 0;
    border-top:1px solid rgba(185,152,85,.22);
    border-bottom:1px solid rgba(185,152,85,.22);
}

.services-inner{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    max-width:1600px;
    margin:0 auto;
}

.service-item{
    position:relative;
    text-align:center;
    padding:0 32px;
}

.service-item:not(:last-child)::after{
    content:"";
    position:absolute;
    right:0;
    top:0;
    width:1px;
    height:170px;
    background:rgba(185,152,85,.16);
}

.service-trigger{
    cursor:pointer;
}

.service-icon{
    height:74px;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    margin-bottom:26px;
}

.service-icon img{
    max-height:60px;
    max-width:74px;
    object-fit:contain;
}

.service-item h3{
    font-family:'Inter',sans-serif;
    font-size:.82rem;
    line-height:1.55;
    font-weight:600;
    letter-spacing:1.8px;
    text-transform:uppercase;
    color:#2b2b2b;
    margin:0;
    transition:.35s ease;
}

.service-arrow{
    display:block;
    margin-top:18px;
    color:#b99855;
    font-size:1.15rem;
    transition:.35s ease;
}

.service-trigger:hover h3{
    color:#b99855;
}

.service-trigger:hover .service-arrow{
    transform:translateX(6px);
}

/* HOVER PREVIEW */

.service-preview{
    position:absolute;
    left:50%;
    bottom:100%;
    width:270px;

    transform:translateX(-50%) translateY(0);

    background:#2b2b2b;
    color:#f5f2ed;

    padding:24px 22px;

    border:1px solid rgba(185,152,85,.35);

    opacity:0;
    visibility:hidden;

    transition:
    opacity .6s ease,
    transform .6s ease,
    visibility .6s ease;

    transition-delay:.08s;

    z-index:30;
    pointer-events:none;
}

.service-trigger:hover .service-preview{
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(-18px);
}

.service-preview h4{
    color:#f5f2ed;
    font-size:1.35rem;
    line-height:1.2;
    margin-bottom:12px;
}

.service-preview p{
    font-family:'Inter',sans-serif;
    font-size:.9rem;
    line-height:1.65;
    margin:0;
    color:#f5f2ed;
}



/* MODAL */

.service-modal .modal-content{
    background:#f5f2ed;
    border:1px solid rgba(185,152,85,.45);
    border-radius:0;
    padding:50px;
}

.service-modal .modal-body{
    padding:0;
}

.service-modal h2{
    color:#2b2b2b;
    font-size:2.2rem;
    line-height:1.15;
    margin-bottom:18px;
}

.service-modal p{
    color:#2b2b2b;
    font-family:'Inter',sans-serif;
    font-size:1rem;
    line-height:1.8;
    margin:0;
}

.service-close{
    position:absolute;
    top:22px;
    right:22px;
    box-shadow:none!important;
}

/* TABLET: 3 + 2 centered */

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

    .services-inner{
        grid-template-columns:repeat(6,1fr);
        row-gap:48px;
        padding:0 22px;
    }

    .service-item:nth-child(1){
        grid-column:1 / span 2;
    }

    .service-item:nth-child(2){
        grid-column:3 / span 2;
    }

    .service-item:nth-child(3){
        grid-column:5 / span 2;
    }

    .service-item:nth-child(4){
        grid-column:2 / span 2;
    }

    .service-item:nth-child(5){
        grid-column:4 / span 2;
    }

    .service-item::after{
        display:none;
    }

    .service-item{
        padding:0 12px;
    }

    .service-icon{
        height:66px;
        margin-bottom:18px;
    }

    .service-icon img{
        max-height:52px;
        max-width:64px;
    }

    .service-item h3{
        font-size:.68rem;
        letter-spacing:1.1px;
    }

    .service-preview{
        display:none;
    }
}

/* MOBILE: 3 + 2 centered */

@media (max-width:767.98px){

    .services-section{
        padding:20px 0;
    }

    .services-inner{
        grid-template-columns:repeat(6,1fr);
      
        padding:0 12px;
    }

    .service-item:nth-child(1){
        grid-column:1 / span 2;
    }

    .service-item:nth-child(2){
        grid-column:3 / span 2;
    }

    .service-item:nth-child(3){
        grid-column:5 / span 2;
    }

    .service-item:nth-child(4){
        grid-column:2 / span 2;
    }

    .service-item:nth-child(5){
        grid-column:4 / span 2;
    }

    .service-item{
        padding:0 6px;
    }

    .service-item::after,
    .service-preview{
        display:none;
    }

    .service-icon{
        height:58px;
        margin-bottom:14px;
    }

    .service-icon img{
        max-height:44px;
        max-width:54px;
    }

    .service-item h3{
        font-size:.56rem;
        line-height:1.45;
        letter-spacing:.8px;
    }

    .service-arrow{
        margin-top:10px;
        font-size:1rem;
    }

    .service-modal .modal-dialog{
        margin:20px;
    }

    .service-modal .modal-content{
        padding:38px 28px;
    }

    .service-modal h2{
        font-size:1.8rem;
    }
}

/* ==========================
   ABOUT / WHY SECTION
========================== */

.about-why-section{
    width:100%;
    position:relative;
    overflow:hidden;
}

.about-why-section::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:1px;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(185,152,85,.45),
        transparent
    );
}

/* LEFT SIDE */

.about-image-side{
    min-height:390px;
    background-image:url('../img/about_background_prk_law_firm.webp');
    background-size:cover;
    background-position:center;
    position:relative;
}

.about-overlay{
    min-height:390px;
    background:rgba(0,0,0,.72);
    display:flex;
    align-items:center;
}

.about-content{
    max-width:520px;
    margin-left:auto;
    padding:70px 70px 70px 20px;
    color:#f5f2ed;
}

/* RIGHT SIDE */

.why-side{
    min-height:390px;
    background:#f3eee8;
    display:flex;
    align-items:center;
}

.why-content{
    max-width:520px;
    padding:70px;
    color:#2b2b2b;
}

/* COMMON */

.section-label{
    display:block;
    margin-bottom:12px;
    font-family:'Inter',sans-serif;
    font-size:.75rem;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#b99855;
}

.about-seo-title{
    margin-bottom:18px;
    line-height:1.4;
}

.about-visual-title{
    font-family:'Cormorant Garamond',serif;
    font-size:2rem;
    line-height:1.25;
    font-weight:500;
    color:#f5f2ed;
    margin-bottom:18px;
}

.why-content h2{
    font-family:'Cormorant Garamond',serif;
    font-size:2rem;
    line-height:1.25;
    font-weight:500;
    color:#2b2b2b;
    margin-bottom:18px;
}

.gold-line{
    width:45px;
    height:2px;
    background:#b99855;
    margin-bottom:25px;
}

.about-content p{
    font-family:'Inter',sans-serif;
    font-size:1rem;
    line-height:1.7;
    font-weight:300;
    margin-bottom:25px;
    color:#f5f2ed;
}

/* LINK */

.section-link{
    display:inline-flex;
    align-items:center;
    text-decoration:none;
    text-transform:uppercase;
    font-family:'Inter',sans-serif;
    font-size:.82rem;
    font-weight:500;
    letter-spacing:3px;
    color:#f5f2ed;
    transition:color .35s ease;
}

.section-link-arrow{
    display:inline-block;
    margin-left:6px;
    transition:transform .35s ease, color .35s ease;
}

.section-link:hover{
    color:#b99855;
}

.section-link:hover .section-link-arrow{
    transform:translateX(8px);
    color:#b99855;
}

/* WHY LIST */

.why-list{
    list-style:none;
    padding:0;
    margin:0;
}

.why-list li{
    position:relative;
    padding-left:38px;
    margin-bottom:18px;
    font-family:'Inter',sans-serif;
    font-size:1rem;
    line-height:1.5;
    color:#2b2b2b;
}

.why-list li:last-child{
    margin-bottom:0;
}

.why-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:-2px;
    width:24px;
    height:24px;
    border:1px solid #b99855;
    border-radius:50%;
    color:#b99855;
    text-align:center;
    line-height:22px;
    font-size:.8rem;
}

/* ==========================
   ABOUT MODAL
========================== */

.about-modal .modal-dialog{
    max-width:900px;
}

.about-modal .modal-content{
    background:#f7f4ef;
    border:none;
    border-top:4px solid #b99855;
    border-radius:0;
    box-shadow:0 30px 80px rgba(0,0,0,.25);
}

.about-modal .modal-body{
    padding:70px;
}

.about-modal .modal-label{
    display:block;
    margin-bottom:14px;
    font-family:'Inter',sans-serif;
    font-size:.78rem;
    font-weight:600;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#b99855;
}

.about-modal h2{
    font-family:'Cormorant Garamond',serif;
    font-size:3rem;
    font-weight:500;
    color:#2b2b2b;
    line-height:1.1;
    margin-bottom:25px;
}

.about-modal p{
    font-family:'Inter',sans-serif;
    color:#555;
    font-size:1.08rem;
    line-height:1.9;
    font-weight:300;
    margin-bottom:22px;
}

.about-modal p:last-child{
    margin-bottom:0;
}

.custom-close{
    position:absolute;
    right:30px;
    top:30px;
    z-index:20;
    opacity:.8;
    box-shadow:none!important;
    transition:.3s ease;
}

.custom-close:hover{
    opacity:1;
    transform:rotate(90deg);
}

.about-modal.fade .modal-dialog{
    transform:translateY(40px) scale(.98);
    transition:transform .45s ease;
}

.about-modal.show .modal-dialog{
    transform:translateY(0) scale(1);
}

/* TABLET */

@media (min-width:768px) and (max-width:991.98px){
    
    .about-image-side{
        background-image:url('../img/about_background_prk_law_firm-2.webp');
    }

    .about-content{
        max-width:100%;
        padding:60px 40px 60px 25px;
    }

    .why-content{
        max-width:100%;
        padding:60px 40px;
    }

    .about-visual-title,
    .why-content h2{
        font-size:1.8rem;
    }

    .about-content p,
    .why-list li{
        font-size:.95rem;
    }

    .about-modal .modal-body{
        padding:58px 46px;
    }

    .about-modal h2{
        font-size:2.6rem;
    }
}

/* MOBILE */

@media (max-width:767.98px){

    .about-image-side,
    .about-overlay,
    .why-side{
        min-height:auto;
    }

    .about-content,
    .why-content{
        max-width:100%;
        padding:50px 25px;
    }

    .about-content{
        margin-left:0;
    }

    .about-visual-title,
    .why-content h2{
        font-size:1.7rem;
    }

    .about-content p{
        font-size:.94rem;
        line-height:1.75;
    }

    .why-list li{
        font-size:.94rem;
        padding-left:38px;
    }

    .about-modal .modal-dialog{
        margin:18px;
    }

    .about-modal .modal-body{
        padding:46px 28px;
    }

    .about-modal h2{
        font-size:2.25rem;
    }

    .about-modal p{
        font-size:.94rem;
        line-height:1.8;
    }

    .custom-close{
        right:20px;
        top:20px;
    }
}

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

.team-section{
    position:relative;
    overflow:hidden;
    padding:105px 0 115px;
    background:#f7f4ef;
    border-top:1px solid rgba(185,152,85,.22);
    border-bottom:1px solid rgba(185,152,85,.22);
}

.team-section .section-heading{
    margin-bottom:65px;
}

.team-section .section-label{
    display:block;
    margin-bottom:14px;
    font-family:'Inter',sans-serif;
    font-size:.76rem;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#b99855;
}

.team-section h2{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(2.7rem,5vw,4rem);
    line-height:1.08;
    font-weight:500;
    color:#2b2b2b;
    margin-bottom:22px;
}

.team-section .gold-line{
    width:54px;
    height:2px;
    background:#b99855;
    margin-bottom:22px;
}

.team-section .section-intro{
    max-width:560px;
    margin:0 auto;
    font-family:'Inter',sans-serif;
    font-size:1rem;
    line-height:1.7;
    font-weight:300;
    color:#555;
}

/* CARDS */

.team-card{
    height:100%;
    background:#1f2022;
    overflow:hidden;
    border:1px solid rgba(185,152,85,.18);
    box-shadow:0 18px 50px rgba(0,0,0,.10);
    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease;
}

.team-card:hover{
    transform:translateY(-8px);
    border-color:rgba(185,152,85,.55);
    box-shadow:0 30px 80px rgba(0,0,0,.18);
}

.team-image{
    aspect-ratio:4 / 5;
    overflow:hidden;
    background:#2b2b2b;
}

.team-image picture,
.team-image img{
    width:100%;
    height:100%;
    display:block;
}

.team-image img{
    object-fit:cover;
    object-position:center;
    transition:transform .75s ease, filter .75s ease;
}

.team-card:hover .team-image img{
    transform:scale(1.035);
    filter:contrast(1.03);
}

.team-info{
    padding:34px 34px 38px;
    background:
        linear-gradient(
            180deg,
            #24272b 0%,
            #1f2022 100%
        );
}

.team-info h3{
    font-family:'Cormorant Garamond',serif;
    font-size:2rem;
    line-height:1.1;
    font-weight:500;
    color:#f7f4ef;
    margin-bottom:8px;
}

.team-info > span{
    display:block;
    margin-bottom:24px;
    font-family:'Inter',sans-serif;
    font-size:.74rem;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#b99855;
}

.team-info > span::after{
    content:"";
    display:block;
    width:42px;
    height:1px;
    background:#b99855;
    margin-top:15px;
}

.team-info p{
    min-height:82px;
    margin-bottom:30px;
    font-family:'Inter',sans-serif;
    font-size:.94rem;
    line-height:1.75;
    font-weight:300;
    color:rgba(247,244,239,.76);
}

.team-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:0;
    border:0;
    background:transparent;
    font-family:'Inter',sans-serif;
    font-size:.76rem;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#b99855;
    cursor:pointer;
    transition:color .35s ease;
}

.team-link span{
    display:inline-block;
    transition:transform .35s ease;
}

.team-link:hover{
    color:#f7f4ef;
}

.team-link:hover span{
    transform:translateX(8px);
}

/* TABLET */

@media(max-width:991.98px){
    .team-section{
        padding:85px 0 95px;
    }

    .team-section .section-heading{
        margin-bottom:55px;
    }

    .team-info{
        padding:30px 30px 34px;
    }

    .team-info h3{
        font-size:1.85rem;
    }
}

/* MOBILE */

@media(max-width:767.98px){
    .team-section{
        padding:70px 0 80px;
    }

    .team-section h2{
        font-size:2.45rem;
    }

    .team-section .section-intro{
        max-width:90%;
        font-size:.94rem;
    }

    .team-card{
        max-width:430px;
        margin:0 auto;
    }

    .team-info{
        padding:28px 26px 32px;
    }

    .team-info h3{
        font-size:1.75rem;
    }

    .team-info p{
        min-height:auto;
        font-size:.92rem;
    }
}

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

.team-modal .modal-dialog{

    max-width:850px;

}

.team-modal .modal-content{

    border:0;

    border-radius:0;

    background:#fdfbf7;

    box-shadow:
        0 30px 80px rgba(0,0,0,.18);

    overflow:hidden;

}

.team-modal .modal-body{

    padding:60px;

}

.team-close{

    position:absolute;

    top:22px;

    right:22px;

    z-index:10;

    opacity:1;

    box-shadow:none!important;

    transition:.3s;

}

.team-close:hover{

    transform:rotate(90deg);

}

.team-modal h3{

    font-family:'Cormorant Garamond',serif;

    font-size:3rem;

    font-weight:500;

    color:#2b2b2b;

    margin-bottom:10px;

}

.team-modal span{

    display:block;

    margin-bottom:26px;

    font-family:'Inter',sans-serif;

    font-size:.78rem;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

    color:#b99855;

}

.team-modal span::after{

    content:"";

    display:block;

    width:48px;

    height:2px;

    background:#b99855;

    margin-top:16px;

}

.team-modal p{

    margin:0;

    font-family:'Inter',sans-serif;

    font-size:1rem;

    line-height:1.95;

    font-weight:300;

    color:#555;

}

/* Fade animation */

.team-modal.fade .modal-dialog{

    transform:translateY(20px);

    transition:
        transform .35s ease,
        opacity .35s ease;

}

.team-modal.show .modal-dialog{

    transform:translateY(0);

}

/* Mobile */

@media(max-width:767.98px){

    .team-modal .modal-dialog{

        margin:18px;

    }

    .team-modal .modal-body{

        padding:42px 28px;

    }

    .team-modal h3{

        font-size:2.2rem;

    }

    .team-modal p{

        font-size:.95rem;

        line-height:1.8;

    }

}

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

.contact-section{
    background:#f3eee8;
    padding:105px 0 110px;
    border-top:1px solid rgba(185,152,85,.18);
}

/* Heading isti stil kao Team */

.contact-section .section-heading{
    margin-bottom:65px;
}

.contact-section .section-label{
    display:block;
    margin-bottom:14px;

    font-family:'Inter',sans-serif;
    font-size:.76rem;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;

    color:#b99855;
}

.contact-section .section-heading h2{
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(2.7rem,5vw,4rem);
    line-height:1.08;
    font-weight:500;

    color:#2b2b2b;

    margin-bottom:22px;
}

.contact-section .gold-line{
    width:54px;
    height:2px;
    background:#b99855;
    margin-bottom:22px;
}

.contact-section .section-intro{
    max-width:560px;
    margin:0 auto;

    font-family:'Inter',sans-serif;
    font-size:1rem;
    line-height:1.7;
    font-weight:300;

    color:#555;
}

/* Cards */

.contact-card{
    display:flex;
    flex-direction:column;
    justify-content:center;

    height:100%;

    padding:44px 36px;

    background:#ffffff;

    border:none;
    text-align:center;

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

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.contact-card:hover{
    transform:translateY(-6px);
    box-shadow:0 25px 70px rgba(0,0,0,.10);
}

.contact-card h3{
    margin-bottom:8px;

    font-family:'Cormorant Garamond',serif;
    font-size:2rem;
    font-weight:500;
    line-height:1.1;

    color:#2b2b2b;
}

.contact-card span{
    display:block;
    margin-bottom:28px;

    font-family:'Inter',sans-serif;
    font-size:.74rem;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;

    color:#b99855;
}

.contact-card span::after{
    content:"";
    display:block;

    width:42px;
    height:1px;

    margin:16px auto 0;

    background:#b99855;
}

.contact-card a{
    display:block;

    color:#2b2b2b;

    font-family:'Inter',sans-serif;
    font-size:.96rem;
    font-weight:400;

    text-decoration:none;

    margin-bottom:10px;

    transition:color .3s ease;

    word-break:break-word;
}

.contact-card a:last-child{
    margin-bottom:0;
}

.contact-card a:hover{
    color:#b99855;
}

/* Tablet */

@media(max-width:991.98px){

    .contact-section{
        padding:90px 0;
    }

    .contact-section .section-heading{
        margin-bottom:55px;
    }

    .contact-card{
        padding:36px 26px;
    }

    .contact-card h3{
        font-size:1.8rem;
    }

    .contact-card a{
        font-size:.9rem;
    }
}

/* Mobile */

@media(max-width:767.98px){

    .contact-section{
        padding:75px 0 80px;
    }

    .contact-section .section-heading{
        margin-bottom:45px;
    }

    .contact-section .section-heading h2{
        font-size:2.45rem;
    }

    .contact-section .section-intro{
        max-width:90%;
        font-size:.94rem;
    }

    .contact-card{
        max-width:420px;
        margin:0 auto;
        padding:34px 26px;
    }

    .contact-card h3{
        font-size:1.7rem;
    }

    .contact-card a{
        font-size:.92rem;
    }
}

.site-footer{

    position:relative;
    overflow:hidden;

    background:#2b2b2b;

    color:#f5f2ed;

    padding-top:90px;

}

/* WATERMARK */

.footer-watermark{

    position:absolute;

    right:-180px;
    bottom:-120px;

    width:700px;
    height:700px;

    background:url('../img/vaga.webp') no-repeat center;

    background-size:contain;
    transform: rotate(-12deg);
    opacity:.035;

    pointer-events:none;

}

/* CONTENT ABOVE WATERMARK */

.site-footer .container{
    position:relative;
    z-index:2;
}

/* LOGO */

.footer-logo{

    margin-bottom:70px;

}

.footer-logo img{

    width:300px;
    max-width:90%;

}

.footer-divider{

    width:80px;
    height:1px;

    background:#b99855;

    margin:35px auto 0;

}

/* MAIN */

.footer-main{

    text-align:center;

    padding-bottom:55px;

}

.footer-column{

    margin-bottom:30px;

}

.footer-title{

    display:block;

    margin-bottom:18px;

    color:#b99855;

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

    font-family:'Inter',sans-serif;
    font-size:.75rem;

}

.footer-column p{

    margin-bottom:18px;

    line-height:1.8;

    color:#d8d4cf;

}

/* LINKS */

.footer-link{

    display:inline-flex;

    align-items:center;

    color:#f5f2ed;

    text-decoration:none;

    text-transform:uppercase;

    letter-spacing:2px;

    font-family:'Inter',sans-serif;
    font-size:.8rem;

    transition:.35s ease;

}

.footer-link span{

    margin-left:8px;

    transition:.35s ease;

}

.footer-link:hover{

    color:#b99855;

}

.footer-link:hover span{

    transform:translateX(8px);

}

/* BOTTOM */

.footer-bottom{

    border-top:1px solid rgba(185,152,85,.15);

    padding:25px 0;

    color:rgba(245,242,237,.7);

    font-size:.9rem;

    position:relative;
    z-index:2;

}

.footer-bottom a{

    color:#b99855;

    text-decoration:none;

    transition:.3s ease;

}

.footer-bottom a:hover{

    color:#f5f2ed;

}

/* TABLET */

@media (max-width:991.98px){

    .site-footer{

        padding-top:70px;

    }

    .footer-logo{

        margin-bottom:55px;

    }

    .footer-watermark{

        width:550px;
        height:550px;

        right:-150px;
        bottom:-100px;

    }

}

/* MOBILE */

@media (max-width:767.98px){

    .site-footer{

        padding-top:60px;

    }

    .footer-logo img{

        width:230px;

    }

    .footer-main{

        padding-bottom:30px;

    }

    .footer-column{

        margin-bottom:40px;

    }

    .footer-watermark{

        width:400px;
        height:400px;

        right:-120px;
        bottom:-80px;

        opacity:.025;

    }

    .footer-bottom .col-md-6:first-child{

        margin-bottom:10px;

    }

}