@font-face {
    font-family: "Coolvetica";
    src: url("assets/fonts/Coolvetica-Rg.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Utendo";
    src: url("assets/fonts/Utendo-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Utendo";
    src: url("assets/fonts/Utendo-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

:root {
    --black: #0D0D0F;
    --graphite: #202024;
    --silver: #B8B8BC;

    --pink: #EDC0C3;
    --pink-bright: #FFB3C1;

    --text-light: #D9D9DD;
}


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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--text-light);

    font-family: "Utendo", sans-serif;

    overflow-x: hidden;
}

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


.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 80px 12%;

    overflow: hidden;

    border: 3px solid #202024;
    margin: 24px;
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 1200px;
}




.brand {
    font-family: "Coolvetica", sans-serif;

    font-size: clamp(3.5rem, 7vw, 6.5rem);

    color: var(--pink);

    line-height: 0.9;

    margin-bottom: 12px;
}




.title {
    font-size: clamp(1.2rem, 2vw, 2rem);

    color: var(--silver);

    margin-bottom: 24px;
}



.hero h1 {
    font-family: "Utendo", sans-serif;

    font-size: clamp(2rem, 4vw, 4.2rem);

    font-weight: 400;

    line-height: 1.08;

    letter-spacing: -0.03em;

    max-width: 1200px;

    color: var(--silver);

    margin-bottom: 38px;
}




.cta {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    font-family: "Coolvetica", sans-serif;

    font-size: clamp(1.4rem, 2.4vw, 2.2rem);

    color: var(--black);

    background: var(--pink);

    padding: 14px 24px;

   transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.cta span {
    transition: transform 0.25s ease;
}

.cta:hover {
    background: var(--pink-bright);

    transform: translateY(-3px);
}

.cta:hover span {
    transform: translateX(5px);
}


.orb {
    position: absolute;

    background: #252124;

    opacity: 0.95;

    z-index: 0;

    pointer-events: none;
}

.orb-one {
    width: 48vw;
    height: 32vw;

    border-radius: 50%;

    top: -18vw;
    left: 5vw;
}

.orb-two {
    width: 24vw;
    height: 24vw;

    border-radius: 50%;

    top: 6vh;
    right: -7vw;
}

.orb-three {
    width: 15vw;
    height: 42vw;

    border-radius: 50%;

    bottom: -18vw;
    left: -7vw;
}

.orb-four {
    width: 48vw;
    height: 22vw;

    border-radius: 50%;

    bottom: -13vw;
    right: -4vw;
}


.needs {
    padding: 150px 12% 180px;

    max-width: 1500px;

    margin: 0 auto;
}




.eyebrow {
    font-size: 0.9rem;

    letter-spacing: 0.16em;

    color: var(--silver);

    margin-bottom: 70px;
}


.service {
    display: grid;

    grid-template-columns: 100px 1fr;

    gap: 30px;

    padding: 45px 0;

    border-bottom: 1px solid var(--graphite);

    transition:
        padding-left 0.3s ease,
        border-color 0.3s ease;
}

.service:last-child {
    border-bottom: 1px solid var(--graphite);
}




.service-number {
    font-family: "Coolvetica", sans-serif;

    font-size: 1.2rem;

    color: var(--pink-bright);

    padding-top: 8px;
}




.service h2 {
    font-family: "Coolvetica", sans-serif;

    font-size: clamp(2.5rem, 5vw, 5rem);

    font-weight: normal;

    line-height: 0.95;

    color: var(--silver);

    margin-bottom: 14px;

    transition: color 0.3s ease;
}




.service-tags {
    color: var(--pink);

    font-size: 0.95rem;

    margin-bottom: 14px;
}



.service-description {
    max-width: 620px;

    color: #99999F;

    font-size: 1rem;

    line-height: 1.6;
}




.service:hover {
    padding-left: 14px;

    border-color: var(--pink);
}

.service:hover h2 {
    color: var(--pink);
}




.contact-placeholder {
    min-height: 30vh;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--graphite);
}




@media (max-width: 700px) {

    .hero {
        min-height: 100svh;

        margin: 12px;

        padding: 60px 28px;

        align-items: center;
    }

    .brand {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    .hero h1 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .cta {
        font-size: 1.3rem;
    }

    .needs {
        padding: 100px 28px 120px;
    }

    .service {
        grid-template-columns: 45px 1fr;

        gap: 10px;

        padding: 35px 0;
    }

    .service h2 {
        font-size: clamp(2.3rem, 11vw, 4rem);
    }

    .service-description {
        font-size: 0.95rem;
    }

    .orb-one {
    width: 420px;
    height: 260px;

    left: -180px;
    top: -100px;
    }

    .orb-two {
    width: 220px;
    height: 220px;

    right: -120px;
    top: 22%;
    }

    .orb-three {
    width: 180px;
    height: 420px;

    left: -120px;
    bottom: -180px;
}

.orb-four {
    width: 420px;
    height: 190px;

    right: -180px;
    bottom: -100px;
}
}


.service {
    position: relative;
}



.service-trigger {
    width: 100%;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 30px;
    padding: 0;
    border: none;
    background: transparent;
    color: inherit;
    text-align: left;
    font-family: inherit;
    cursor: pointer;
}




.service-trigger .service-number {
    padding-top: 8px;
}

.service-trigger .service-content {
    min-width: 0;
}




.service-arrow {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-top: 4px;

    border: 1px solid var(--graphite);

    color: var(--pink);

    font-family: "Coolvetica", sans-serif;

    font-size: 1.6rem;

    line-height: 1;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}




.service.is-open .service-arrow {
    transform: rotate(45deg);

    background: var(--pink);

    border-color: var(--pink);

    color: var(--black);
}




.service-project {
    grid-column: 1 / -1;
    display: block;
    width: 100%;
    max-width: 1100px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;
    transition: max-height 0.6s ease, opacity 0.4s ease, padding 0.5s ease;
}




.service.is-open .service-project {
    max-height: 2000px;
    opacity: 1;
    padding: 55px 0 35px 130px;
}




.project-label {
    font-size: 0.75rem;

    letter-spacing: 0.16em;

    color: var(--pink-bright);

    margin-bottom: 18px;
}


.project-intro h3 {
    font-family: "Coolvetica", sans-serif;

    font-size: clamp(2rem, 4vw, 3.5rem);

    font-weight: normal;

    line-height: 0.95;

    color: var(--silver);

    margin-bottom: 12px;
}


.project-category {
    color: var(--pink);

    font-size: 0.9rem;

    margin-bottom: 22px;
}


.project-description {
    max-width: 480px;

    color: #99999F;

    font-size: 0.95rem;

    line-height: 1.65;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
    width: 100%;
    margin-top: 40px;
}

.project-image {
    width: 100%;
    overflow: hidden;
    cursor: pointer;
}

.project-image img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.project-image:hover img {
    transform: scale(1.03);
}


.project-website img {
    object-fit: contain;
}


.project-image:hover img {
    transform: scale(1.03);
}


/* =========================
   WORKFLOW
   ========================= */

.workflow-visual {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-height: 280px;

    padding: 30px;

    border: 1px solid var(--graphite);
}


.workflow-step {
    display: flex;

    flex-direction: column;

    gap: 8px;

    color: var(--silver);

    font-family: "Coolvetica", sans-serif;

    font-size: 1.1rem;

    letter-spacing: 0.04em;

    text-align: center;
}


.workflow-step span {
    color: var(--pink-bright);

    font-family: "Utendo", sans-serif;

    font-size: 0.7rem;
}


.workflow-line {
    width: 30px;

    height: 1px;

    background: var(--graphite);
}


/* =========================
   SYSTEM PREVIEW
   ========================= */

.system-preview {
    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 280px;

    padding: 25px;

    border: 1px solid var(--graphite);
}


.system-window {
    width: 100%;

    max-width: 480px;

    padding: 25px;

    background: #151518;

    border: 1px solid var(--graphite);
}


.system-header {
    font-family: "Coolvetica", sans-serif;

    font-size: 1.3rem;

    color: var(--pink);

    margin-bottom: 25px;
}


.system-row {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 10px 0;

    border-bottom: 1px solid #29292D;

    font-size: 0.7rem;
}


.system-row span,
.system-incident span {
    color: #77777D;

    letter-spacing: 0.08em;
}


.system-row strong,
.system-incident strong {
    color: var(--silver);

    font-weight: 400;

    text-align: right;
}


.system-divider {
    height: 20px;
}


.system-incident {
    display: flex;

    flex-direction: column;

    gap: 10px;

    font-size: 0.7rem;
}


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

.content-visual {
    display: grid;

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

    gap: 12px;

    min-height: 280px;
}


.content-card {
    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    gap: 8px;

    padding: 25px;

    min-height: 280px;

    border: 1px solid var(--graphite);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}


.content-card:hover {
    transform: translateY(-5px);

    border-color: var(--pink);
}


.content-card span {
    color: var(--pink);

    font-size: 0.7rem;

    letter-spacing: 0.12em;
}


.content-card strong {
    font-family: "Coolvetica", sans-serif;

    font-size: 1.7rem;

    font-weight: normal;

    color: var(--silver);
}



@media (max-width: 700px) {

    .service-trigger {
        grid-template-columns: 45px 1fr auto;

        gap: 10px;
    }


    .service-arrow {
        width: 34px;
        height: 34px;

        font-size: 1.3rem;
    }


    .service.is-open .service-project {
        padding:
            40px
            0
            25px
            55px;
        max-width: 100%;
    }


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

        gap: 35px;
    }


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

.project-image img {
    height: auto;
    max-height: 350px;
}
    }


    .workflow-visual {
        flex-wrap: wrap;

        gap: 18px;

        padding: 20px;
    }


    .workflow-line {
        width: 20px;
    }


    .system-preview {
        padding: 15px;
    }


    .system-window {
        padding: 18px;
    }


    .content-visual {
        grid-template-columns: 1fr;

        min-height: auto;
    }


    .content-card {
        min-height: 160px;
    }

    .ai-disclaimer {
    max-width: 1500px;
    margin: 0 auto;
    padding: 80px 12% 100px;
    border-top: 1px solid var(--graphite);
}

.ai-disclaimer-label {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    color: var(--pink);
    margin-bottom: 25px;
}

.ai-disclaimer-text {
    max-width: 700px;
    color: #77777D;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

@media (max-width: 700px) {

    .ai-disclaimer {
        padding: 60px 28px 80px;
    }

    .ai-disclaimer-text {
        font-size: 0.85rem;
    }
}
    /* IMAGE LIGHTBOX */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(13, 13, 15, 0.92);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: zoom-out;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    display: block;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    border: none;
    background: transparent;
    color: var(--pink);
    font-family: "Utendo", sans-serif;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.lightbox-close:hover {
    color: var(--pink-bright);
}
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    border: none;
    background: transparent;
    color: var(--pink);

    font-family: "Utendo", sans-serif;
    font-size: 3rem;
    line-height: 1;

    cursor: pointer;

    transition: color 0.25s ease, transform 0.25s ease;
}

.lightbox-arrow:hover {
    color: var(--pink-bright);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

@media (max-width: 700px) {
    .lightbox {
        padding: 20px;
    }

    .lightbox img {
        max-width: 94vw;
        max-height: 85vh;
    }

    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 1.8rem;
    }
    .lightbox-arrow {
        font-size: 2.2rem;
    }

    .lightbox-prev {
        left: 12px;
    }

    .lightbox-next {
        right: 12px;
    }
}

/* CONTACT */

.contact {
    max-width: 1500px;
    margin: 0 auto;
    padding: 120px 12% 150px;
}

.contact-intro {
    max-width: 850px;
    margin-bottom: 70px;
}

.contact .contact-intro .contact-heading {
    font-family: "Coolvetica", sans-serif;
    font-size: clamp(2rem, 2vw, 2.8rem);
    color: #EDC0C3;
    line-height: 0.9;
    margin: 0 0 30px 0;
}

.contact-intro p {
    max-width: 650px;
    color: #99999F;
    font-size: 1rem;
    line-height: 1.7;
}

.contact-links {
    border-top: 1px solid var(--graphite);
}

.contact-link {
    display: grid;
    grid-template-columns: 160px 1fr auto;
    align-items: center;
    gap: 30px;

    padding: 30px 0;

    border-bottom: 1px solid var(--graphite);

    transition:
        padding-left 0.3s ease,
        border-color 0.3s ease;
}

.contact-label {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    color: var(--pink);
}

.contact-value {
    font-family: "Coolvetica", sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.8rem);
    color: var(--silver);
    transition: color 0.3s ease;
}

.contact-arrow {
    font-size: 2rem;
    color: var(--pink);
    transition: transform 0.3s ease;
}

.contact-link:hover {
    padding-left: 14px;
    border-color: var(--pink);
}

.contact-link:hover .contact-value {
    color: var(--pink);
}

.contact-link:hover .contact-arrow {
    transform: translateX(6px);
}

@media (max-width: 700px) {

    .contact {
        padding: 90px 28px 110px;
    }

    .contact-intro {
        margin-bottom: 50px;
    }

    .contact-intro h2 {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }

    .contact-link {
        grid-template-columns: 1fr auto;
        gap: 10px;
        padding: 25px 0;
    }

    .contact-label {
        grid-column: 1 / -1;
    }

    .contact-value {
        font-size: 1.6rem;
    }

    .contact-arrow {
        grid-column: 2;
        grid-row: 2;
    }
}
.language-switch {
    position: absolute;
    top: 35px;
    right: 45px;
    z-index: 20;
}

.language-switch button {
    border: 1px solid var(--graphite);
    background: transparent;
    color: var(--silver);
    font-family: "Utendo", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    padding: 10px 14px;
    cursor: pointer;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.language-switch button:hover {
    color: var(--pink);
    border-color: var(--pink);
}

@media (max-width: 700px) {
    .language-switch {
        top: 25px;
        right: 25px;
    }
}

/* DESKTOP TYPOGRAPHY */
@media (min-width: 1000px) {

    /* Large headings */
   .hero h1 {
        font-size: clamp(2.8rem, 3.5vw, 4.2rem);
    }

    .cta {
        font-size: 0.85rem;
    }

    .contact-heading {
    font-size: clamp(2rem, 2vw, 2.8rem);
}

}

    .service h2 {
        font-size: clamp(1.8rem, 2.5vw, 3rem);
    }

    .project-intro h3 {
    font-size: clamp(1.8rem, 2vw, 2.6rem);
}


    /* Normal text */
    .service-tags,
    .project-category,
    .ai-disclaimer-label,
    .contact-label {
        font-size: 0.9rem;
    }

    .service-description,
    .project-description,
    .ai-disclaimer-text,
    .contact-intro > p:last-child {
        font-size: 1.15rem;
        line-height: 1.7;
    }

    .contact-value {
        font-size: 1.4rem;
    }

    .title {
        font-size: 1rem;
    }
