*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    color:#14212b;
    background:#fff;
}

a{
    text-decoration:none;
}

button,
input,
select,
textarea{
    font:inherit;
}

:root{
    --navy:#071b2b;
    --navy2:#0c2b40;
    --gold:#c6a15a;
    --cream:#f4f0e7;
    --light:#f6f7f7;
    --line:#dce2e5;
}

.top-strip{
    background:var(--navy);
    color:#fff;
    font-size:11px;
}

.top-inner{
    max-width:1400px;
    margin:auto;
    padding:8px 28px;
    display:flex;
    justify-content:space-between;
    gap:20px;
}

.top-right{
    display:flex;
    gap:8px;
    align-items:center;
    flex-wrap:wrap;
    justify-content:flex-end;
}

.top-right a{
    color:#fff;
    margin-right:14px;
}

.surface-switcher{
    display:inline-flex;
    align-items:center;
    padding:3px;
    border:1px solid rgba(255,255,255,.2);
    border-radius:999px;
    background:rgba(0,0,0,.12);
}

.surface-label{
    display:flex;
    align-items:center;
    gap:7px;
    padding:0 4px;
}

.surface-caption{
    color:rgba(255,255,255,.76);
    font-size:10px;
    font-weight:800;
    white-space:nowrap;
}

.surface-select{
    min-height:26px;
    min-width:145px;
    border:0;
    border-radius:999px;
    padding:5px 24px 5px 9px;
    background:var(--gold);
    color:var(--navy);
    font:800 10px/1.15 Arial,Helvetica,sans-serif;
    cursor:pointer;
}

.surface-select:hover{
    background:#d6b875;
}

.surface-select:focus-visible{
    outline:2px solid #fff;
    outline-offset:2px;
}

.top-right button{
    border:0;
    color:#fff;
    background:none;
    cursor:pointer;
    opacity:.55;
}

.top-right button.active{
    color:var(--gold);
    opacity:1;
    font-weight:800;
}

.main-header{
    min-height:88px;
    background:#fff;
    display:flex;
    align-items:center;
    gap:30px;
    padding:12px 32px;
    position:sticky;
    top:0;
    z-index:40;
    box-shadow:0 4px 20px rgba(0,0,0,.06);
}

.brand-public{
    display:flex;
    align-items:center;
    gap:12px;
    color:var(--navy);
    margin-right:auto;
}

.brand-public img{
    width:72px;
    height:58px;
    object-fit:contain;
}

.brand-public strong{
    display:block;
    font-size:18px;
}

.brand-public small{
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:1.4px;
    color:#6c7880;
}

.main-header nav{
    display:flex;
    gap:25px;
}

.main-header nav a{
    color:var(--navy);
    font-size:12px;
    font-weight:750;
    text-transform:uppercase;
}

.gold-btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    padding:13px 20px;
    background:var(--gold);
    color:#0a1822;
    font-weight:800;
    font-size:11px;
    border-radius:3px;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.borderless{
    border:0;
    cursor:pointer;
}

.hero{
    height:610px;
    position:relative;
    background-image:url("assets/hero-kitchen.jpg");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            90deg,
            rgba(3,18,29,.93) 0%,
            rgba(3,18,29,.75) 38%,
            rgba(3,18,29,.18) 75%
        );
}

.hero-content{
    position:relative;
    z-index:2;
    width:min(1250px,calc(100% - 50px));
    margin:auto;
    color:#fff;
}

.gold-line{
    width:62px;
    height:3px;
    background:var(--gold);
    margin-bottom:17px;
}

.hero-eyebrow{
    color:var(--gold);
    font-size:11px;
    font-weight:800;
    letter-spacing:2px;
}

.hero h1{
    margin:13px 0 14px;
    font-size:63px;
    line-height:.98;
    max-width:700px;
}

.hero h1 span{
    display:block;
    color:#fff;
}

.hero p{
    font-size:18px;
    line-height:1.6;
    opacity:.9;
}

.hero-buttons{
    display:flex;
    gap:12px;
    margin-top:28px;
}

.dark-outline-btn{
    padding:12px 18px;
    color:#fff;
    border:1px solid rgba(255,255,255,.65);
    font-size:11px;
    font-weight:800;
    text-transform:uppercase;
}

.section{
    max-width:1300px;
    margin:auto;
    padding:70px 28px;
}

.section-heading{
    text-align:center;
    max-width:720px;
    margin:0 auto 35px;
}

.center-line{
    margin:0 auto 13px;
}

.section-heading small,
.projects-title small{
    color:var(--gold);
    font-weight:800;
    letter-spacing:1.7px;
    font-size:10px;
}

.section-heading h2,
.projects-title h2{
    font-size:34px;
    color:var(--navy);
    margin:10px 0;
}

.section-heading p{
    color:#66757e;
    line-height:1.7;
}

.visual-services{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:12px;
}

.visual-service-card{
    border-radius:7px;
    overflow:hidden;
    background:var(--navy);
    box-shadow:0 8px 24px rgba(0,0,0,.08);
}

.visual-service-card img{
    width:100%;
    height:190px;
    display:block;
    object-fit:cover;
    transition:.25s;
}

.visual-service-card:hover img{
    transform:scale(1.035);
}

.visual-service-caption{
    min-height:65px;
    padding:16px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:8px;
    color:#fff;
}

.visual-service-caption strong{
    font-size:12px;
    text-transform:uppercase;
}

.visual-service-caption span{
    color:var(--gold);
    font-size:20px;
}

.why-section{
    background:var(--navy);
    color:#fff;
}

.light-heading{
    margin-bottom:30px;
}

.light-heading small{
    color:var(--gold);
}

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

.why-item{
    text-align:center;
    padding:25px;
}

.why-icon{
    width:48px;
    height:48px;
    border:1px solid rgba(198,161,90,.5);
    border-radius:50%;
    display:grid;
    place-items:center;
    color:var(--gold);
    margin:0 auto 14px;
}

.why-item strong{
    color:var(--gold);
    font-size:12px;
    letter-spacing:1px;
}

.why-item p{
    font-size:12px;
    line-height:1.6;
    opacity:.7;
}

.projects-section{
    background:#f4f5f5;
}

.projects-title{
    margin-bottom:25px;
}

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

.projects-grid img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:6px;
}

.cta-band{
    max-width:1300px;
    margin:55px auto;
    background:#edf0f0;
    border-left:5px solid var(--gold);
    padding:30px 35px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.cta-band strong{
    font-size:21px;
    color:var(--navy);
}

.cta-band p{
    margin:7px 0 0;
    color:#6b777c;
}

.estimate-section{
    background:#fff;
}

.quote-builder{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:24px;
}

.picker,
.estimate-summary{
    border:1px solid var(--line);
    border-radius:8px;
    padding:20px;
}

.category-tabs{
    display:flex;
    flex-wrap:wrap;
    gap:7px;
    margin-bottom:16px;
}

.category-tabs button{
    border:1px solid var(--line);
    background:#fff;
    padding:8px 11px;
    border-radius:999px;
    cursor:pointer;
    font-size:11px;
}

.category-tabs button.active{
    background:var(--navy);
    color:#fff;
    border-color:var(--navy);
}

.service-buttons{
    display:grid;
    gap:8px;
}

.service-buttons button{
    border:1px solid var(--line);
    background:#fff;
    border-radius:6px;
    padding:12px;
    text-align:left;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

.service-buttons small{
    display:block;
    color:#7c878d;
    margin-top:5px;
}

.service-buttons b{
    color:var(--gold);
    font-size:23px;
}

.estimate-summary h3{
    color:var(--navy);
    margin-top:0;
}

.estimate-line{
    display:grid;
    grid-template-columns:1fr 85px 120px 34px;
    gap:9px;
    align-items:center;
    padding:10px 0;
    border-bottom:1px solid var(--line);
}

.estimate-line small{
    display:block;
    margin-top:4px;
    color:#7d898e;
}

.estimate-line input{
    width:100%;
    padding:8px;
    border:1px solid var(--line);
}

.estimate-line button{
    border:0;
    background:none;
    font-size:20px;
    cursor:pointer;
}

.empty-estimate{
    color:#7d898e;
    padding:30px 5px;
}

.totals{
    margin:18px 0;
    border-top:1px solid var(--line);
    padding-top:12px;
}

.totals > div{
    display:flex;
    justify-content:space-between;
    padding:7px 0;
}

.grand-total{
    font-size:19px;
    color:var(--navy);
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:9px;
}

.form-grid input,
.form-grid select,
.form-grid textarea{
    width:100%;
    padding:12px;
    border:1px solid var(--line);
    border-radius:4px;
}

.form-grid select,
.form-grid textarea{
    grid-column:1/-1;
}

.form-grid textarea{
    min-height:95px;
}

.submit-btn{
    width:100%;
    margin-top:12px;
}

.disclaimer{
    font-size:10px;
    color:#7c888d;
    line-height:1.5;
}

.success-box{
    max-width:700px;
    margin:auto;
    padding:40px;
    text-align:center;
    border:1px solid var(--line);
}

footer{
    background:var(--navy);
    color:#fff;
}

.footer-inner{
    max-width:1300px;
    margin:auto;
    padding:40px 28px;
    display:flex;
    justify-content:space-between;
    gap:30px;
    align-items:center;
}

.footer-brand{
    display:flex;
    align-items:center;
    gap:13px;
}

.footer-brand img{
    width:70px;
}

.footer-brand strong,
.footer-brand small{
    display:block;
}

.footer-brand small{
    opacity:.6;
    margin-top:5px;
}

.footer-inner > div:last-child{
    display:flex;
    gap:20px;
}

.footer-inner a{
    color:#fff;
    font-size:11px;
}

@media(max-width:1050px){

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

    .main-header nav{
        display:none;
    }

}

@media(max-width:760px){

    .top-inner > span{
        display:none;
    }

    .top-inner{
        justify-content:flex-end;
    }

    .public-surface-switcher{
        flex:1 0 100%;
        width:100%;
        justify-content:space-between;
        order:2;
    }

    .public-surface-switcher .surface-label{
        width:100%;
        justify-content:space-between;
    }

    .public-surface-switcher .surface-select{
        flex:1;
        min-width:0;
    }

    .main-header{
        padding:10px 16px;
    }

    .brand-public img{
        width:55px;
    }

    .main-header > .gold-btn{
        padding:10px;
        font-size:9px;
    }

    .hero{
        height:560px;
    }

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

    .visual-services{
        grid-template-columns:1fr 1fr;
    }

    .visual-service-card img{
        height:155px;
    }

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

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

    .quote-builder{
        grid-template-columns:1fr;
    }

    .cta-band{
        margin:25px 16px;
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-inner{
        align-items:flex-start;
        flex-direction:column;
    }

    .footer-inner > div:last-child{
        flex-wrap:wrap;
    }

}

@media(max-width:500px){

    .visual-services,
    .projects-grid,
    .why-grid{
        grid-template-columns:1fr;
    }

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

    .form-grid select,
    .form-grid textarea{
        grid-column:auto;
    }

    .estimate-line{
        grid-template-columns:1fr 70px;
    }

    .estimate-line > strong{
        text-align:right;
    }

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


/* CRD_PUBLIC_PORTFOLIO_CSS_V1 */

.public-project-filters{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:24px;
}

.public-project-filters button{
    border:1px solid #d7dde0;
    background:#fff;
    color:#071b2b;
    padding:9px 14px;
    border-radius:999px;
    cursor:pointer;
    font-size:11px;
    font-weight:700;
    transition:.2s;
}

.public-project-filters button:hover,
.public-project-filters button.active{
    background:#071b2b;
    color:#fff;
    border-color:#071b2b;
}

.public-project-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.public-project-card{
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    cursor:pointer;
    box-shadow:
        0 8px 28px
        rgba(6,27,43,.09);
    transition:
        transform .2s,
        box-shadow .2s;
}

.public-project-card:hover{
    transform:translateY(-4px);
    box-shadow:
        0 14px 35px
        rgba(6,27,43,.15);
}

.public-project-photo{
    height:260px;
    position:relative;
    overflow:hidden;
    background:#e6e9ea;
}

.public-project-photo img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:transform .35s;
}

.public-project-card:hover
.public-project-photo img{
    transform:scale(1.035);
}

.public-project-category{
    position:absolute;
    top:14px;
    left:14px;
    background:#071b2b;
    color:#c6a15a;
    padding:7px 10px;
    font-size:10px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.5px;
    border-radius:3px;
}

.public-project-count{
    position:absolute;
    right:14px;
    bottom:14px;
    background:rgba(7,27,43,.88);
    color:#fff;
    padding:6px 9px;
    border-radius:3px;
    font-size:10px;
}

.public-project-info{
    padding:20px;
}

.public-project-info h3{
    margin:0 0 8px;
    color:#071b2b;
    font-size:20px;
}

.public-project-location{
    color:#52626c;
    font-size:12px;
    margin-bottom:5px;
}

.public-project-date{
    color:#89949a;
    font-size:10px;
    margin-bottom:12px;
}

.public-project-info p{
    color:#687780;
    font-size:12px;
    line-height:1.65;
    margin:12px 0;
}

.public-project-more{
    display:inline-block;
    margin-top:10px;
    color:#a9813d;
    font-weight:800;
    font-size:11px;
    text-transform:uppercase;
}

.public-project-empty{
    padding:50px 20px;
    text-align:center;
    background:#fff;
    border:1px dashed #d3dade;
    color:#748188;
    border-radius:7px;
}


/* MODAL REALISATION */

.public-project-modal{
    position:fixed;
    inset:0;
    z-index:9999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:25px;
}

.public-project-modal-backdrop{
    position:absolute;
    inset:0;
    background:rgba(3,16,26,.88);
    backdrop-filter:blur(5px);
}

.public-project-modal-box{
    position:relative;
    z-index:2;
    width:min(1200px,100%);
    max-height:92vh;
    overflow:auto;
    background:#fff;
    border-radius:10px;
    padding:28px;
}

.public-project-modal-close{
    position:absolute;
    right:18px;
    top:15px;
    width:38px;
    height:38px;
    border:0;
    border-radius:50%;
    background:#071b2b;
    color:#fff;
    cursor:pointer;
    font-size:23px;
    z-index:3;
}

.public-project-modal-heading{
    max-width:760px;
    margin-bottom:22px;
}

.public-project-modal-heading small{
    color:#b28a45;
    text-transform:uppercase;
    font-weight:800;
    letter-spacing:1px;
}

.public-project-modal-heading h2{
    color:#071b2b;
    font-size:32px;
    margin:8px 0;
}

.public-project-modal-heading p{
    line-height:1.65;
    color:#66757d;
}

.public-project-gallery{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
}

.public-project-gallery img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:6px;
}


/* RESPONSIVE */

@media(max-width:900px){

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

    .public-project-photo{
        height:220px;
    }

    .public-project-gallery img{
        height:300px;
    }
}

@media(max-width:600px){

    .public-project-grid{
        grid-template-columns:1fr;
    }

    .public-project-photo{
        height:240px;
    }

    .public-project-modal{
        padding:10px;
    }

    .public-project-modal-box{
        padding:20px;
    }

    .public-project-modal-heading h2{
        font-size:25px;
    }

    .public-project-gallery{
        grid-template-columns:1fr;
    }

    .public-project-gallery img{
        height:270px;
    }
}

/* CRD_PUBLIC_PORTFOLIO_CSS_V1_END */


/* CRD_PUBLIC_PORTFOLIO_V2_CSS */

.public-featured-badge{
    position:absolute;
    right:14px;
    top:14px;
    background:#c6a15a;
    color:#071b2b;
    padding:7px 10px;
    border-radius:3px;
    font-size:9px;
    font-weight:900;
    text-transform:uppercase;
}

.public-stage-section{
    margin-top:32px;
}

.public-stage-section > h3{
    color:#071b2b;
    font-size:21px;
    border-bottom:2px solid #c6a15a;
    padding-bottom:8px;
    margin-bottom:15px;
}

.public-project-gallery figure{
    margin:0;
}

.public-project-gallery figcaption{
    font-size:11px;
    color:#65737b;
    line-height:1.5;
    padding:8px 3px 15px;
}

/* CRD_PUBLIC_PORTFOLIO_V2_CSS_END */


/* CRD_PUBLIC_PORTFOLIO_V3_CSS */

.visual-service-card{
    position:relative;
}

.crd-service-project-count{
    position:absolute;
    top:12px;
    right:12px;
    z-index:3;

    padding:6px 9px;

    background:
        rgba(7,27,43,.90);

    color:#fff;

    border:
        1px solid
        rgba(198,161,90,.55);

    border-radius:999px;

    font-size:9px;
    font-weight:800;
    text-transform:uppercase;

    backdrop-filter:
        blur(4px);
}

.public-project-share{
    margin-top:18px;

    border:
        1px solid #c6a15a;

    background:#071b2b;

    color:#fff;

    padding:10px 15px;

    border-radius:4px;

    font-size:10px;
    font-weight:800;

    text-transform:uppercase;

    cursor:pointer;
}

.public-project-share:hover{
    background:#c6a15a;
    color:#071b2b;
}

/* CRD_PUBLIC_PORTFOLIO_V3_CSS_END */

/* Professional public information, contact, privacy and footer areas. */
.public-info-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px;
}

.public-info-grid article{
    border:1px solid var(--line);
    border-radius:8px;
    padding:30px;
    background:#fff;
}

.public-info-grid small,
.public-privacy small{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:1.2px;
    font-size:10px;
    font-weight:800;
}

.public-info-grid h2,
.public-privacy h2{
    color:var(--navy);
    margin:10px 0;
    font-size:26px;
}

.public-info-grid p,
.public-privacy p{
    color:#5d6d76;
    line-height:1.7;
}

.public-info-grid a{
    color:var(--navy2);
    text-decoration:underline;
    text-underline-offset:3px;
}

.public-privacy{
    background:var(--cream);
}

.public-privacy .section{
    padding-top:52px;
    padding-bottom:52px;
    max-width:900px;
}

.public-affiliations{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:10px;
    margin-top:18px;
}

.public-chip{
    display:inline-flex;
    align-items:center;
    gap:8px;
    min-height:38px;
    padding:8px 12px;
    border:1px solid var(--line);
    border-radius:4px;
    color:var(--navy);
    font-size:12px;
    font-weight:700;
    background:#fff;
}

.public-chip img{
    max-width:85px;
    max-height:26px;
    object-fit:contain;
}

.public-footer{
    align-items:flex-start;
}

.footer-links,
.social-links{
    display:flex;
    flex-wrap:wrap;
    gap:12px 18px;
}

.footer-legal{
    max-width:1300px;
    margin:auto;
    padding:0 28px 24px;
    color:rgba(255,255,255,.65);
    font-size:10px;
}

.social-links a{
    color:var(--gold);
    font-weight:800;
}

@media(max-width:760px){
    .public-info-grid{
        grid-template-columns:1fr;
    }

    .public-info-grid article{
        padding:23px;
    }
}



/* CRD_PUBLIC_R11_MIN_PRICE_CONTACT_START */

.public-info-grid-single{
    grid-template-columns:1fr;
}

.public-contact-list{
    display:grid;
    gap:9px;
    margin:18px 0 20px;
}

.public-contact-list a,
.public-contact-list span{
    display:block;
    width:max-content;
    max-width:100%;
    color:var(--navy2);
    font-size:14px;
    line-height:1.5;
    overflow-wrap:anywhere;
}

.public-contact-empty{
    margin:16px 0 20px;
}

.public-contact-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:10px 16px;
    border-radius:4px;
    background:var(--navy);
    color:#fff !important;
    text-decoration:none !important;
    font-size:11px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.35px;
}

.public-contact-cta:hover{
    background:var(--gold);
    color:var(--navy) !important;
}

/* CRD_PUBLIC_R11_MIN_PRICE_CONTACT_END */
