@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root{
    --bg:#05090c;
    --bg-soft:#081014;
    --panel:#0c1317;
    --panel-2:#091014;
    --line:#202a30;
    --line-soft:rgba(255,255,255,.09);
    --text:#f4f6f7;
    --muted:#aab2b7;
    --red:#ed1c24;
    --red-bright:#ff282f;
    --max:1480px;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    background:
        radial-gradient(circle at 50% -20%,rgba(18,34,43,.28),transparent 35%),
        var(--bg);
    color:var(--text);
    font-family:Inter,Arial,sans-serif;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
}

body::selection{
    background:var(--red);
    color:#fff;
}

img{
    display:block;
    max-width:100%;
}

a{
    color:inherit;
    text-decoration:none;
}

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

button{
    color:inherit;
}

.container{
    width:min(var(--max),calc(100% - 48px));
    margin:auto;
}


/* HEADER */
.site-header{
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(4,8,11,.92);
    border-bottom:1px solid var(--line-soft);
    backdrop-filter:blur(16px);
}

.nav{
    min-height:84px;
    display:flex;
    align-items:center;
    gap:32px;
}

.brand{
    display:flex;
    flex-direction:column;
    white-space:nowrap;
    flex-shrink:0;
}

.brand-main{
    font-size:25px;
    font-weight:900;
    letter-spacing:-1.3px;
    line-height:1;
}

.brand-bolt{
    color:var(--red);
    font-style:italic;
    margin:0 2px;
}

.brand-sub{
    margin-top:6px;
    font-size:8px;
    font-weight:700;
    letter-spacing:1.4px;
}

.main-menu{
    display:flex;
    align-items:center;
    gap:30px;
    margin-left:auto;
}

.main-menu a{
    position:relative;
    padding:31px 0;
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
}

.main-menu a::after{
    content:"";
    position:absolute;
    left:0;
    right:100%;
    bottom:21px;
    height:2px;
    background:var(--red);
    transition:.25s ease;
}

.main-menu a:hover::after{
    right:0;
}

.menu-toggle{
    display:none;
    background:none;
    border:0;
}

.button{
    min-height:46px;
    padding:0 18px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:16px;
    border:1px solid var(--red);
    text-transform:uppercase;
    font-size:11px;
    font-weight:700;
    letter-spacing:.02em;
    background:transparent;
    transition:.22s ease;
    cursor:pointer;
}

.button:hover{
    background:var(--red);
    transform:translateY(-1px);
}

.button-red{
    background:var(--red);
}

.button-red:hover{
    background:var(--red-bright);
}

.nav-button{
    min-width:178px;
}


/* HERO */
.hero{
    border-bottom:1px solid var(--line);
}

.hero-grid{
    min-height:620px;
    display:grid;
    grid-template-columns:1.07fr 1.34fr .32fr;
}

.hero-copy{
    padding:72px 48px 64px 0;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.eyebrow{
    margin:0 0 18px;
    color:var(--red);
    font-size:11px;
    line-height:1.2;
    font-weight:800;
    letter-spacing:.045em;
}

.hero h1,
.section h2,
.contact h2,
.contact h3{
    margin:0;
    letter-spacing:-.045em;
}

.hero h1{
    font-size:clamp(42px,4.15vw,70px);
    line-height:.98;
    font-weight:800;
}

.hero h1 em,
.contact h2 em{
    font-style:normal;
    color:var(--red);
}

.hero-lead{
    max-width:590px;
    margin:25px 0 42px;
    color:var(--muted);
    font-size:15px;
    line-height:1.75;
}

.trust-row{
    display:flex;
    flex-wrap:wrap;
    gap:34px;
}

.trust-item{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:10px;
    line-height:1.45;
    font-weight:700;
    text-transform:uppercase;
}

.round-icon{
    width:44px;
    height:44px;
    border:1px solid #39464d;
    border-radius:50%;
    display:grid;
    place-items:center;
    color:var(--red);
    font-size:20px;
    flex-shrink:0;
}

.hero-image{
    position:relative;
    min-height:620px;
    overflow:hidden;
    border-left:1px solid var(--line-soft);
}

.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-image-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg,rgba(5,9,12,.08),transparent 22%,transparent 78%,rgba(5,9,12,.20)),
        linear-gradient(0deg,rgba(5,9,12,.16),transparent 35%);
    pointer-events:none;
}

.hero-facts{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:0 24px;
    border-left:1px solid var(--line);
}

.hero-fact{
    padding:30px 0;
    border-bottom:1px solid var(--line);
}

.hero-fact strong{
    display:block;
    color:var(--red);
    font-size:34px;
    line-height:1;
    letter-spacing:-.04em;
}

.hero-fact b{
    display:block;
    font-size:32px;
    font-weight:400;
}

.hero-fact span{
    display:block;
    margin-top:12px;
    font-size:11px;
    line-height:1.55;
}

.hero-fact-last{
    border-bottom:0;
}


/* TICKER */
.ticker{
    overflow:hidden;
    border-bottom:1px solid var(--line);
    background:#070d10;
}

.ticker-track{
    width:max-content;
    min-width:100%;
    padding:11px 24px;
    display:flex;
    justify-content:center;
    gap:42px;
    font-size:10px;
    font-weight:600;
    letter-spacing:.06em;
    text-transform:uppercase;
}

.ticker-track span::first-letter{
    color:var(--red);
}


/* COMMON SECTIONS */
.section{
    border-bottom:1px solid var(--line);
}

.section-intro{
    padding-top:6px;
}

.section-intro h2{
    font-size:34px;
    line-height:1.05;
    font-weight:600;
}

.section-intro > p:not(.eyebrow){
    max-width:275px;
    margin:18px 0 27px;
    color:var(--muted);
    font-size:13px;
    line-height:1.7;
}


/* SERVICES */
.services-layout{
    padding:44px 0;
    display:grid;
    grid-template-columns:320px 1fr;
    gap:38px;
}

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

.service-card{
    min-height:318px;
    padding:28px 24px;
    display:flex;
    flex-direction:column;
    background:
        linear-gradient(150deg,rgba(18,28,34,.96),rgba(8,14,18,.98));
    border:1px solid #202b31;
    border-radius:6px;
    transition:.25s ease;
}

.service-card:hover{
    border-color:#3a474e;
    transform:translateY(-3px);
}

.service-card-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:45px;
}

.service-card-top span{
    color:#cbd0d3;
    font-size:22px;
    font-weight:500;
}

.service-card-top b{
    color:var(--red);
    font-size:30px;
    font-weight:400;
}

.service-card h3{
    margin:0;
    font-size:17px;
    line-height:1.35;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:-.025em;
}

.service-card p{
    margin:17px 0 0;
    color:var(--muted);
    font-size:12px;
    line-height:1.7;
}

.service-line{
    width:37px;
    height:2px;
    margin-top:auto;
    background:var(--red);
}


/* REFERENCES */
.references-layout{
    padding:44px 0;
    display:grid;
    grid-template-columns:220px minmax(0,1fr);
    gap:18px 28px;
    align-items:stretch;
}

.reference-intro{
    grid-row:1;
}

.reference-intro .project-prev{
    margin-top:4px;
}

.project-slider-wrap{
    min-width:0;
    overflow:hidden;
}

.project-slider{
    display:flex;
    width:100%;
    transition:transform .5s cubic-bezier(.22,.61,.36,1);
}

.project-slide{
    flex:0 0 100%;
    min-width:100%;
    display:grid;
    grid-template-columns:1.22fr .95fr .58fr;
    min-height:315px;
    overflow:hidden;
    border:1px solid #1f2930;
    border-radius:7px;
    background:#081015;
}

.project-photo{
    min-height:315px;
    overflow:hidden;
}

.project-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .5s ease;
}

.project-photo:hover img{
    transform:scale(1.025);
}

.project-placeholder{
    width:100%;
    height:100%;
    min-height:315px;
    display:grid;
    place-items:center;
    align-content:center;
    background:
        linear-gradient(135deg,#111b20,#05090c);
}

.project-placeholder span{
    font-size:55px;
    font-weight:900;
}

.project-placeholder b{
    color:var(--red);
    font-size:45px;
}

.project-placeholder small{
    margin-top:8px;
    letter-spacing:.2em;
}

.project-content{
    padding:38px 30px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    border-left:1px solid var(--line);
}

.project-meta{
    margin:0 0 18px;
    color:var(--red);
    font-size:11px;
    line-height:1.5;
}

.project-meta span{
    margin:0 7px;
    color:#858d91;
}

.project-content h3{
    margin:0;
    font-size:27px;
    line-height:1.05;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:-.035em;
}

.project-content > p:not(.project-meta){
    margin:17px 0 24px;
    color:var(--muted);
    font-size:12px;
    line-height:1.7;
}

.project-content .button{
    align-self:flex-start;
}

.project-side{
    position:relative;
    overflow:hidden;
    border-left:1px solid var(--line);
}

.project-side::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(5,9,12,.08),rgba(5,9,12,.48));
}

.project-side img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:saturate(.8) brightness(.55);
    transform:scale(1.15);
}

.project-side-empty{
    width:100%;
    height:100%;
    display:grid;
    place-items:center;
    background:#070d10;
    color:var(--red);
    font-size:24px;
    font-weight:800;
}

.project-controls{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:18px;
    padding-top:13px;
}

.project-dots{
    display:flex;
    gap:7px;
}

.project-dot{
    width:7px;
    height:7px;
    padding:0;
    border:0;
    border-radius:50%;
    background:#596168;
    cursor:pointer;
    transition:.2s ease;
}

.project-dot.active{
    background:var(--red);
    transform:scale(1.15);
}

.project-next{
    width:42px;
    height:38px;
    border:1px solid #29343a;
    background:#091014;
    cursor:pointer;
    font-size:18px;
}

.project-next:hover{
    border-color:var(--red);
    color:var(--red);
}

.empty-projects{
    min-height:315px;
    padding:45px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    border:1px solid var(--line);
    background:linear-gradient(135deg,#0d1519,#060b0e);
}

.empty-projects > span{
    color:var(--red);
    font-size:11px;
    font-weight:800;
}

.empty-projects h3{
    max-width:650px;
    margin:15px 0 28px;
    font-size:32px;
}


/* PROCESS */
.process-layout{
    padding:39px 0 42px;
    display:grid;
    grid-template-columns:230px 1fr;
    gap:38px;
}

.steps{
    position:relative;
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:28px;
}

.steps::before{
    content:"";
    position:absolute;
    top:29px;
    left:28px;
    right:28px;
    height:1px;
    background:var(--red);
}

.step{
    position:relative;
    padding:0 10px;
    background:var(--bg);
}

.step-head{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:24px;
}

.step-head span{
    position:relative;
    z-index:2;
    width:58px;
    height:58px;
    display:grid;
    place-items:center;
    border:2px solid var(--red);
    border-radius:50%;
    background:var(--bg);
    font-size:19px;
}

.step-head i{
    position:relative;
    z-index:2;
    padding-right:8px;
    background:var(--bg);
    font-size:27px;
    font-style:normal;
}

.step h3{
    margin:0;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
}

.step p{
    margin:9px 0 0;
    color:var(--muted);
    font-size:11px;
    line-height:1.6;
}


/* ABOUT */
.about-layout{
    padding:44px 0;
    display:grid;
    grid-template-columns:320px 1fr;
    gap:38px;
    align-items:stretch;
}

.about-layout h2{
    font-size:34px;
    line-height:1.05;
    font-weight:600;
}

.about-text{
    margin:18px 0 0;
    color:var(--muted);
    font-size:13px;
    line-height:1.75;
}

.about-cards{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    border:1px solid var(--line);
    background:
        linear-gradient(135deg,#0d1519,#071014);
}

.about-cards > div{
    min-height:170px;
    padding:28px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    border-right:1px solid var(--line);
}

.about-cards > div:last-child{
    border-right:0;
}

.about-cards span{
    color:var(--red);
    font-size:29px;
    font-weight:700;
    letter-spacing:-.04em;
}

.about-cards small{
    margin-top:13px;
    color:#d3d7d9;
    font-size:10px;
    line-height:1.6;
}


/* CONTACT */
.contact{
    border-bottom:1px solid var(--line);
}

.contact-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
}

.contact-copy{
    padding:45px 40px 45px 0;
}

.contact-copy h2{
    font-size:38px;
    line-height:1.05;
    font-weight:600;
}

.contact-items{
    display:flex;
    flex-wrap:wrap;
    gap:25px 28px;
    margin-top:39px;
}

.contact-item{
    display:grid;
    grid-template-columns:33px auto;
    gap:9px;
    align-items:center;
}

.contact-icon{
    grid-row:1 / 3;
    color:var(--red);
    font-size:25px;
}

.contact-item small,
.contact-item b{
    display:block;
}

.contact-item small{
    color:var(--muted);
    font-size:8px;
    font-weight:600;
}

.contact-item b{
    margin-top:4px;
    font-size:11px;
    font-weight:600;
}

.contact-panel{
    position:relative;
    min-height:285px;
    overflow:hidden;
    border-left:1px solid var(--line);
    background:
        radial-gradient(circle at 92% 55%,rgba(237,28,36,.15),transparent 25%),
        linear-gradient(135deg,#10181d,#070c0f);
}

.contact-panel::before{
    content:"";
    position:absolute;
    right:-50px;
    top:50%;
    width:300px;
    height:300px;
    border:2px solid rgba(237,28,36,.25);
    border-radius:50%;
    transform:translateY(-50%);
    box-shadow:
        0 0 0 32px rgba(237,28,36,.05),
        0 0 0 67px rgba(237,28,36,.04),
        0 0 0 108px rgba(237,28,36,.025);
}

.contact-glow{
    position:absolute;
    right:7%;
    top:50%;
    width:38px;
    height:105px;
    transform:translateY(-50%);
    border:2px solid rgba(255,153,55,.6);
    border-radius:50% 50% 46% 46%;
    box-shadow:
        0 0 25px rgba(255,119,0,.35),
        inset 0 0 22px rgba(255,119,0,.25);
}

.contact-panel-content{
    position:relative;
    z-index:2;
    max-width:560px;
    padding:44px;
}

.contact-panel h3{
    font-size:34px;
    line-height:1.05;
    font-weight:600;
}

.contact-panel-content > p:not(.eyebrow){
    max-width:390px;
    margin:14px 0 24px;
    color:var(--muted);
    font-size:11px;
    line-height:1.7;
}


/* FOOTER */
.site-footer{
    padding:32px 0 38px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.15fr .9fr .9fr 1fr;
    gap:30px;
    align-items:center;
}

.footer-block{
    min-height:56px;
    padding-left:28px;
    border-left:1px solid var(--line);
}

.footer-block small{
    color:#c5cace;
    font-size:8px;
    letter-spacing:.08em;
}

.footer-block p{
    margin:7px 0 0;
    color:var(--muted);
    font-size:10px;
    line-height:1.55;
}

.admin-link{
    display:inline-block;
    margin-top:7px;
    color:var(--red);
    font-size:9px;
    font-weight:700;
}


/* TABLET */
@media (max-width:1180px){

    .main-menu{
        gap:17px;
    }

    .main-menu a{
        font-size:9px;
    }

    .hero-grid{
        grid-template-columns:1fr 1.15fr;
    }

    .hero-facts{
        display:none;
    }

    .services-layout,
    .process-layout,
    .about-layout{
        grid-template-columns:240px 1fr;
    }

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

    .references-layout{
        grid-template-columns:200px minmax(0,1fr);
    }

    .project-slide{
        grid-template-columns:1.22fr .88fr;
    }

    .project-side{
        display:none;
    }
}


/* MOBILE */
@media (max-width:820px){

    .container{
        width:min(var(--max),calc(100% - 28px));
    }

    .nav{
        min-height:70px;
    }

    .brand-main{
        font-size:20px;
    }

    .nav-button{
        display:none;
    }

    .menu-toggle{
        position:relative;
        z-index:102;
        width:37px;
        height:35px;
        margin-left:auto;
        padding:0;
        display:flex;
        flex-direction:column;
        justify-content:center;
        gap:5px;
        cursor:pointer;
    }

    .menu-toggle span{
        display:block;
        width:100%;
        height:2px;
        background:#fff;
        transition:.2s ease;
    }

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

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

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

    .main-menu{
        position:absolute;
        left:0;
        right:0;
        top:70px;
        display:none;
        padding:10px 20px 20px;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        background:#080d10;
        border-bottom:1px solid var(--line);
    }

    .main-menu.open{
        display:flex;
    }

    .main-menu a{
        width:100%;
        padding:14px 0;
        font-size:11px;
    }

    .main-menu a::after{
        bottom:7px;
    }

    .hero-grid{
        display:block;
    }

    .hero-copy{
        padding:54px 0 36px;
    }

    .hero h1{
        font-size:clamp(39px,11vw,62px);
    }

    .hero-lead{
        font-size:13px;
    }

    .hero-image{
        min-height:455px;
        border-left:0;
        border-top:1px solid var(--line);
    }

    .trust-row{
        gap:20px;
    }

    .ticker-track{
        justify-content:flex-start;
    }

    .services-layout,
    .references-layout,
    .process-layout,
    .about-layout{
        display:block;
    }

    .section-intro{
        margin-bottom:32px;
    }

    .section-intro > p:not(.eyebrow){
        max-width:520px;
    }

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

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

    .project-photo{
        min-height:290px;
    }

    .project-content{
        border-left:0;
        border-top:1px solid var(--line);
    }

    .project-side{
        display:none;
    }

    .project-prev{
        display:none;
    }

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

    .steps::before{
        display:none;
    }

    .step{
        padding:20px 0;
        border-top:1px solid var(--line);
    }

    .about-cards{
        grid-template-columns:1fr 1fr;
    }

    .about-cards > div:nth-child(2){
        border-right:0;
    }

    .about-cards > div:nth-child(-n+2){
        border-bottom:1px solid var(--line);
    }

    .contact-grid{
        display:block;
    }

    .contact-copy{
        padding-right:0;
    }

    .contact-panel{
        min-height:300px;
        border-left:0;
        border-top:1px solid var(--line);
    }

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


/* SMALL MOBILE */
@media (max-width:540px){

    .hero-copy{
        padding-top:42px;
    }

    .hero h1{
        font-size:clamp(38px,11.5vw,55px);
    }

    .trust-row{
        display:grid;
        grid-template-columns:1fr 1fr;
    }

    .hero-image{
        min-height:360px;
    }

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

    .service-card{
        min-height:255px;
    }

    .services-layout,
    .references-layout,
    .process-layout,
    .about-layout{
        padding:36px 0;
    }

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

    .project-content{
        padding:28px 22px;
    }

    .project-content h3{
        font-size:24px;
    }

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

    .about-cards{
        grid-template-columns:1fr;
    }

    .about-cards > div{
        min-height:125px;
        border-right:0!important;
        border-bottom:1px solid var(--line)!important;
    }

    .about-cards > div:last-child{
        border-bottom:0!important;
    }

    .contact-copy h2{
        font-size:31px;
    }

    .contact-items{
        display:grid;
        grid-template-columns:1fr;
    }

    .contact-panel-content{
        padding:34px 25px;
    }

    .contact-panel h3{
        font-size:30px;
    }

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

    .footer-block{
        padding:20px 0 0;
        border-left:0;
        border-top:1px solid var(--line);
    }
}
