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

:root {
    --orange: #f58220;
    --orange-dark: #d86308;
    --black: #111111;
    --black-soft: #181818;
    --charcoal: #242424;
    --white: #ffffff;
    --cream: #f4f2ed;
    --grey: #727272;
    --line: rgba(17,17,17,.12);
    --shadow: 0 24px 70px rgba(0,0,0,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--black);
    background: var(--white);
    font-family: "Manrope", Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    background: var(--black);
    transition: opacity .55s ease, visibility .55s ease;
}
.page-loader span {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: var(--orange);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    animation: loaderPulse 1s infinite alternate;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
@keyframes loaderPulse { to { transform: scale(1.08) rotate(4deg); } }

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
    background: rgba(17,17,17,.96);
    box-shadow: 0 10px 35px rgba(0,0,0,.16);
    backdrop-filter: blur(12px);
}
.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}
.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--orange);
    color: var(--black);
    font-family: "Space Grotesk", sans-serif;
    font-weight: 800;
}
.brand-copy { line-height: 1; }
.brand-copy strong,
.brand-copy small { display: block; }
.brand-copy strong { font-size: .98rem; }
.brand-copy small {
    margin-top: 5px;
    color: var(--orange);
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
}
.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: rgba(255,255,255,.78);
    font-size: .88rem;
    font-weight: 700;
}
.site-nav a { position: relative; }
.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 2px;
    background: var(--orange);
    transition: right .25s ease;
}
.site-nav a:hover { color: var(--white); }
.site-nav a:hover::after { right: 0; }
.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}
.language-switcher {
    color: rgba(255,255,255,.55);
    font-size: .8rem;
    font-weight: 800;
}
.language-switcher a.active { color: var(--orange); }
.header-cta {
    padding: 13px 17px;
    border-radius: 9px;
    background: var(--orange);
    color: var(--black);
    font-size: .82rem;
    font-weight: 800;
}
.nav-toggle {
    display: none;
    padding: 0;
    background: none;
    border: 0;
}
.nav-toggle span {
    width: 27px;
    height: 2px;
    display: block;
    margin: 6px 0;
    background: var(--white);
    transition: transform .25s ease, opacity .25s ease;
}

.hero {
    min-height: 900px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--black);
    color: var(--white);
}
.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .075;
    background-image:
        linear-gradient(rgba(255,255,255,.8) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.8) 1px, transparent 1px);
    background-size: 76px 76px;
}
.hero-glow {
    position: absolute;
    width: 650px;
    height: 650px;
    right: -180px;
    top: 40px;
    border-radius: 50%;
    background: rgba(245,130,32,.22);
    filter: blur(120px);
}
.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 70px;
    padding-top: 110px;
}
.eyebrow,
.section-label {
    margin: 0 0 22px;
    color: var(--orange);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow span { width: 36px; height: 2px; background: var(--orange); }
h1, h2, h3 { font-family: "Space Grotesk", sans-serif; }
h1 {
    margin: 0;
    font-size: clamp(4.6rem, 8.5vw, 8rem);
    line-height: .88;
    letter-spacing: -.075em;
}
h1 em { color: var(--orange); font-style: normal; }
.hero-description {
    max-width: 650px;
    margin: 34px 0 0;
    color: rgba(255,255,255,.68);
    font-size: 1.08rem;
}
.slogan {
    margin: 24px 0 0;
    font-family: "Space Grotesk", sans-serif;
    color: var(--white);
    font-size: 1.06rem;
    font-weight: 700;
}
.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 38px;
    flex-wrap: wrap;
}
.btn {
    min-height: 54px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 1px solid transparent;
    border-radius: 9px;
    cursor: pointer;
    font-weight: 800;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: var(--black); }
.btn-primary:hover { background: #ff963e; }
.btn-secondary { border-color: rgba(255,255,255,.28); color: var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--black); }
.btn-dark { background: var(--black); color: var(--white); }

.hero-visual { position: relative; }
.hero-image {
    position: relative;
    margin-left: auto;
    max-width: 510px;
    border-radius: 170px 18px 18px 18px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,.45);
}
.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.6));
}
.hero-image img { width: 100%; aspect-ratio: .82; object-fit: cover; }
.hero-badge {
    position: absolute;
    z-index: 2;
    right: 24px;
    bottom: 24px;
    width: 174px;
    padding: 20px;
    border-radius: 14px;
    background: var(--orange);
    color: var(--black);
}
.hero-badge strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 2rem;
}
.hero-badge span { display: block; font-size: .76rem; font-weight: 800; }
.scroll-cue {
    position: absolute;
    z-index: 3;
    bottom: 34px;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.55);
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.scroll-cue i { width: 1px; height: 42px; background: var(--orange); }

.section { padding: 125px 0; }
.section-heading { max-width: 900px; margin-bottom: 62px; }
.split-heading {
    max-width: none;
    display: grid;
    grid-template-columns: 1fr .7fr;
    gap: 90px;
    align-items: end;
}
.section-heading h2 {
    margin: 0;
    font-size: clamp(2.8rem, 5.2vw, 5.2rem);
    line-height: .98;
    letter-spacing: -.055em;
}
.section-heading > p,
.split-heading > p {
    margin: 0;
    color: var(--grey);
    font-size: 1.02rem;
}

.about { background: var(--cream); }
.about-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 76px;
    align-items: center;
}
.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow);
}
.about-image img { width: 100%; aspect-ratio: 1.02; object-fit: cover; }
.image-note {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-radius: 12px;
    background: rgba(17,17,17,.9);
    color: var(--white);
}
.image-note span { color: var(--orange); }
.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.value-grid div {
    padding: 20px;
    display: flex;
    gap: 12px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255,255,255,.55);
    font-weight: 700;
}
.value-grid span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--orange);
}
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 44px;
    border-top: 1px solid var(--line);
}
.stats article { padding: 32px 16px 0 0; }
.stats strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: -.06em;
}
.stats span { display: block; color: var(--grey); font-size: .82rem; }

.services {
    background: var(--black);
    color: var(--white);
}
.services .section-heading { max-width: 760px; }
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.service-card {
    min-height: 340px;
    position: relative;
    padding: 30px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    background: var(--black-soft);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--orange);
    background: #202020;
}
.service-top {
    display: flex;
    justify-content: space-between;
    color: var(--orange);
    font-size: .8rem;
    font-weight: 800;
}
.service-top i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: var(--orange);
    color: var(--black);
    font-style: normal;
    font-size: 1.2rem;
}
.service-card h3 {
    margin: 72px 0 16px;
    font-size: 1.45rem;
}
.service-card p { margin: 0; color: rgba(255,255,255,.55); font-size: .92rem; }
.service-card > a {
    position: absolute;
    right: 28px;
    bottom: 26px;
    color: var(--orange);
    font-size: 1.25rem;
}

.projects { background: var(--white); }
.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.project-card {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    border-radius: 14px;
}
.project-card.wide { min-height: 530px; }
.project-card img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    transition: transform .7s ease;
}
.project-card:hover img { transform: scale(1.045); }
.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.82));
}
.project-overlay {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 26px;
    color: var(--white);
}
.project-overlay span { color: var(--orange); font-size: .78rem; font-weight: 800; }
.project-overlay h3 { margin: 8px 0 3px; font-size: 1.65rem; }
.project-overlay p { margin: 0; color: rgba(255,255,255,.62); font-size: .82rem; }

.process { background: var(--cream); }
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
}
.process-step {
    position: relative;
    padding: 34px 26px 10px 0;
}
.process-step:not(:last-child) { border-right: 1px solid var(--line); }
.process-step:not(:first-child) { padding-left: 26px; }
.process-step span { color: var(--orange); font-weight: 800; }
.process-step h3 { margin: 50px 0 12px; font-size: 1.35rem; }
.process-step p { margin: 0; color: var(--grey); font-size: .9rem; }

.cta-band {
    padding: 72px 0;
    background: var(--orange);
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.cta-inner p {
    margin: 0 0 8px;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.cta-inner h2 {
    margin: 0;
    font-size: clamp(2.5rem, 4vw, 4.3rem);
    line-height: 1;
    letter-spacing: -.05em;
}
.cta-inner span { display: block; margin-top: 13px; max-width: 650px; }

.contact { background: var(--white); }
.contact-layout {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 90px;
}
.contact-info h2 {
    margin: 0;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: .98;
    letter-spacing: -.06em;
}
.contact-intro { max-width: 500px; margin: 25px 0 0; color: var(--grey); }
.contact-details { margin-top: 52px; }
.contact-details article {
    padding: 20px 0;
    display: grid;
    grid-template-columns: 150px 1fr;
    border-top: 1px solid var(--line);
}
.contact-details article:last-child { border-bottom: 1px solid var(--line); }
.contact-details span {
    color: var(--grey);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}
.contact-details a,
.contact-details strong { font-size: .94rem; }

.contact-form-wrap {
    padding: 36px;
    border-radius: 16px;
    background: var(--cream);
}
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
form label {
    display: block;
    margin-bottom: 18px;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}
input, textarea {
    width: 100%;
    margin-top: 9px;
    padding: 15px 0;
    border: 0;
    border-bottom: 1px solid rgba(17,17,17,.24);
    border-radius: 0;
    outline: none;
    background: transparent;
    color: var(--black);
    text-transform: none;
}
input:focus, textarea:focus { border-color: var(--orange); }
textarea { resize: vertical; }
.submit-btn { width: 100%; margin-top: 10px; border: 0; }
.honeypot { position: absolute; left: -9999px; }
.form-notice {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 10px;
    font-weight: 700;
}
.form-notice.success { background: #dff5e4; color: #185d28; }
.form-notice.error { background: #ffe0dc; color: #8e2117; }

.site-footer {
    padding: 72px 0 24px;
    background: var(--black);
    color: var(--white);
}
.footer-main {
    display: grid;
    grid-template-columns: 1.2fr .6fr .8fr;
    gap: 70px;
    padding-bottom: 60px;
}
.footer-main p { max-width: 390px; color: rgba(255,255,255,.52); font-size: .9rem; }
.footer-links { display: flex; flex-direction: column; gap: 12px; color: rgba(255,255,255,.7); }
.footer-slogan {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--orange);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    text-align: right;
}
.footer-bottom {
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.42);
    font-size: .76rem;
}

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
    .site-nav { display: none; }
    .nav-toggle { display: block; order: 3; }
    .header-actions { margin-left: auto; }
    .site-nav.open {
        position: fixed;
        inset: 88px 0 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 45px 24px;
        background: var(--black);
        font-size: 1.4rem;
    }
    .hero-content { grid-template-columns: 1fr .78fr; gap: 40px; }
    h1 { font-size: clamp(4.1rem, 8vw, 6.8rem); }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
    .container { width: min(100% - 32px, 680px); }
    .header-cta { display: none; }
    .hero { min-height: auto; padding: 160px 0 110px; }
    .hero-content { grid-template-columns: 1fr; }
    .hero-visual { margin-top: 25px; }
    .hero-image { max-width: 100%; border-radius: 110px 14px 14px 14px; }
    .scroll-cue { display: none; }
    .section { padding: 90px 0; }
    .split-heading,
    .about-layout,
    .contact-layout { grid-template-columns: 1fr; gap: 45px; }
    .section-heading { margin-bottom: 45px; }
    .service-grid { grid-template-columns: 1fr; }
    .project-grid { grid-template-columns: 1fr; }
    .project-card,
    .project-card.wide { min-height: 460px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-step:nth-child(2) { border-right: 0; }
    .process-step:nth-child(n+3) { border-top: 1px solid var(--line); }
    .cta-inner { align-items: flex-start; flex-direction: column; }
    .footer-main { grid-template-columns: 1fr; gap: 35px; }
    .footer-slogan { justify-content: flex-start; text-align: left; }
}

@media (max-width: 560px) {
    .header-inner { min-height: 76px; }
    .site-nav.open { inset: 76px 0 0; }
    .language-switcher { font-size: .72rem; }
    h1 { font-size: 3.55rem; }
    .hero { padding-top: 132px; }
    .hero-image { border-radius: 70px 12px 12px 12px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn { width: 100%; }
    .value-grid, .stats, .form-row { grid-template-columns: 1fr; }
    .stats article { padding-top: 22px; }
    .process-grid { grid-template-columns: 1fr; }
    .process-step,
    .process-step:not(:first-child) { padding: 28px 0; border-right: 0; border-top: 1px solid var(--line); }
    .process-step h3 { margin-top: 22px; }
    .contact-form-wrap { padding: 24px; }
    .contact-details article { grid-template-columns: 1fr; gap: 5px; }
    .footer-bottom { flex-direction: column; }
}

/* Premium V2 */
select {
    width: 100%;
    margin-top: 9px;
    padding: 15px 0;
    border: 0;
    border-bottom: 1px solid rgba(17,17,17,.24);
    outline: none;
    background: transparent;
    color: var(--black);
}
select:focus { border-color: var(--orange); }
.promise-stats article strong { color: var(--orange); font-size: 2.2rem; }
.hero::before {
    content: "NO PROBLEMS / ONLY SOLUTIONS";
    position: absolute;
    left: -45px;
    bottom: 120px;
    color: rgba(255,255,255,.035);
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(5rem, 11vw, 11rem);
    font-weight: 800;
    letter-spacing: -.06em;
    white-space: nowrap;
    transform: rotate(-90deg);
    transform-origin: left bottom;
    pointer-events: none;
}
@media (max-width: 820px) { .hero::before { display: none; } }
